// https://syzkaller.appspot.com/bug?id=01abadbd6ae6a08b1f1987aa61554c6b3ac19ff2 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, loopfd = -1, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; memcpy((void*)0x20000080, "jfs\000", 4); memcpy((void*)0x20005e40, "./file0\000", 8); memcpy( (void*)0x2000bc80, "\x78\x9c\xec\xdd\x4d\x6f\x1d\x57\xfd\x07\xf0\xdf\xdc\x27\x3f\xf4\xdf\xd6" "\xea\xa2\xea\x3f\x42\xc8\x4d\xcb\x43\x29\xcd\x63\x09\x81\x02\x6d\x17\xb0" "\x60\xc3\x02\x65\x8b\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\xab\x88\xb8\xf2" "\x86\x05\x2f\x02\x84\xc4\x12\x21\x96\xac\x78\x01\x5d\xb0\x65\xc7\x0b\x20" "\x52\x82\x04\xea\x8a\x41\x63\x9f\x93\x8c\x27\xd7\xb9\x0e\x8e\xef\xd8\x3e" "\x9f\x8f\xe4\xcc\xfc\xe6\xcc\xf8\x9e\xc9\xf7\x3e\x7a\x66\xee\x09\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20\xbe\xff\xbd\x1f\x9e\xad" "\x22\xe2\xf2\x2f\xd2\x82\x95\x88\xff\x8b\x61\xc4\x20\x62\xa9\xa9\x57\x23" "\x62\x69\x75\x25\xaf\x3f\x8a\x88\x97\x62\xab\x39\x5e\x8c\x88\xf1\x42\x44" "\xb3\xfd\xd6\x3f\xcf\x47\xbc\x19\x11\x9f\x3e\x17\x71\xef\xfe\xed\xb5\x66" "\xf1\xb9\x3d\xf6\xe3\xbb\x7f\xfc\xdb\xef\x7e\xf4\xcc\x0f\xfe\xfa\x87\xf1" "\xe9\x7f\xff\xe9\xe6\xf0\xad\xdd\xd6\xbb\x75\xeb\xd7\xff\xfa\xf3\x9d\xfd" "\xed\x33\x00\x00\x00\x94\xa6\xae\xeb\xba\x4a\x1f\xf3\x4f\xa4\xcf\xf7\x83" "\xbe\x3b\x05\x00\xcc\x45\x7e\xfd\xaf\x93\xbc\x5c\xad\x56\xab\xd5\x6a\xf5" "\xf1\xab\xdb\xea\xe9\xee\xb4\x8b\x88\xd8\x68\x6f\xd3\xbc\x67\x70\x38\x1e" "\x00\x8e\x98\x8d\xf8\xac\xef\x2e\xd0\x23\xf9\x17\x6d\x14\x11\xcf\xf4\xdd" "\x09\xe0\x50\xab\xfa\xee\x00\x07\xe2\xde\xfd\xdb\x6b\x55\xca\xb7\x6a\xbf" "\x1e\xac\x6e\xb7\xe7\x73\x41\x76\xe4\xbf\x51\x3d\xb8\xbe\x63\xb7\xe9\x2c" "\xdd\x73\x4c\xe6\x75\xff\xda\x8c\x61\xbc\xb0\x4b\x7f\x96\xe6\xd4\x87\xc3" "\x24\xe7\x3f\xe8\xe6\x7f\x79\xbb\x7d\x92\xd6\x3b\xe8\xfc\xe7\x65\xb7\xfc" "\x27\xdb\x97\x3e\x15\x27\xe7\x3f\xec\xe6\xdf\x71\x7c\xf2\x1f\x4c\xcd\xbf" "\x54\x39\xff\xd1\x13\xe5\x3f\x94\x3f\x00\x00\x00\x00\x00\x1c\x62\xf9\xef" "\xff\x2b\x3d\x1f\xff\x5d\xd8\xff\xae\xec\xc9\xe3\x8e\xff\xae\xce\xa9\x0f" "\x00\x00\x00\x00\x00\x00\x00\xf0\xb4\xed\x77\xfc\xbf\x07\x8c\xff\x07\x00" "\x00\x00\x87\x56\xf3\x59\xbd\xf1\x9b\xe7\x1e\x2e\xdb\xed\xbb\xd8\x9a\xe5" "\x97\xaa\x88\x67\x3b\xeb\x03\x85\x49\x17\xcb\x2c\xf7\xdd\x0f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x28\xc9\x68\xfb\x1c\xde\x4b\x55\xc4\x38\x22" "\x9e\x5d\x5e\xae\xeb\xba\xf9\x69\xeb\xd6\x4f\x6a\xbf\xdb\x1f\x75\xa5\xef" "\x3f\x94\xac\xef\x27\x79\x00\x00\xd8\xf6\xe9\x73\x9d\x6b\xf9\xab\x88\xc5" "\x88\xb8\x94\xbe\xeb\x6f\xbc\xbc\xbc\x5c\xd7\x8b\x4b\xcb\xf5\x72\xbd\xb4" "\x90\xdf\xcf\x4e\x16\x16\xeb\xa5\xd6\xe7\xda\x3c\x6d\x96\x2d\x4c\xf6\xf0" "\x86\x78\x34\xa9\x9b\x5f\xb6\xd8\xda\xae\x6d\xd6\xe7\xe5\x59\xed\xdd\xdf" "\xd7\xdc\xd6\xa4\x1e\xee\xa1\x63\xf3\xd1\x63\xe0\x00\x10\x11\xdb\xaf\x46" "\xf7\xbc\x22\x1d\x33\x75\xfd\x7c\xf4\xfd\x2e\x87\xa3\xc1\xe3\xff\xf8\xf1" "\xf8\x67\x2f\xfa\xbe\x9f\x02\x00\x00\x00\x07\xaf\xae\xeb\xba\x4a\x5f\xe7" "\x7d\x22\x1d\xf3\x1f\xf4\xdd\x29\x00\x60\x2e\xf2\xeb\x7f\xf7\xb8\x80\x5a" "\xad\x56\xab\xd5\xea\xe3\x57\xb7\xd5\xd3\xdd\x69\x17\x11\xb1\xd1\xde\xa6" "\x79\xcf\x60\x38\x7e\x00\x38\x62\x36\xe2\xb3\xbe\xbb\x40\x8f\xe4\x5f\xb4" "\x51\x44\xbc\xd4\x77\x27\x80\x43\xad\xea\xbb\x03\x1c\x88\x7b\xf7\x6f\xaf" "\x55\x29\xdf\xaa\xfd\x7a\x90\xc6\x77\xcf\xe7\x82\xec\xc8\x7f\xa3\xda\xda" "\x2e\x6f\x3f\x6d\x3a\x4b\xf7\x1c\x93\x79\xdd\xbf\x36\x63\x18\x2f\xec\xd2" "\x9f\x17\xe7\xd4\x87\xc3\x24\xe7\x3f\xe8\xe6\x7f\x79\xbb\x7d\x92\xd6\x3b" "\xe8\xfc\xe7\x65\xb7\xfc\x9b\xfd\x5c\xe9\xa1\x3f\x7d\xcb\xf9\x0f\xbb\xf9" "\x77\x1c\x9f\xfc\x07\x53\xf3\x2f\x55\xce\x7f\xf4\x44\xf9\x0f\xe5\x0f\x00" "\x00\x00\x00\x00\x87\x58\xfe\xfb\xff\x8a\xe3\xbf\x79\x97\x01\x00\x00\x00" "\x00\x00\x00\xe0\xc8\xb9\x77\xff\xf6\x5a\xbe\xee\x35\x1f\xff\xff\xdc\x94" "\xf5\x5c\xff\x79\x3c\xe5\xfc\x2b\xf9\x17\x29\xe7\x3f\xe8\xe4\xff\xe5\xce" "\x7a\xc3\xd6\xfc\xdd\x77\x1f\xe6\xff\xcf\xfb\xb7\xd7\x7e\x7f\xf3\x1f\xff" "\x9f\xa7\x7b\xcd\x7f\x21\xcf\x54\xe9\x9e\x55\xa5\x7b\x44\x95\x6e\xa9\x1a" "\xa5\xe9\x7e\xf6\xee\x51\x9b\xe3\xe1\xa4\xb9\xa5\x71\x35\x18\x8e\xd2\x39" "\x3f\xf5\xf8\xfd\xb8\x1a\xd7\x62\x3d\xce\xec\x58\x77\x90\xfe\x3f\x1e\xb6" "\x9f\xdd\xd1\xde\xf4\x74\xbc\xa3\xfd\xdc\x8e\xf6\xd1\x23\xed\xe7\x77\xb4" "\x8f\xd3\xf7\x0e\xd4\x4b\xb9\xfd\x54\xac\xc5\x4f\xe3\x5a\xbc\xb7\xd5\xde" "\xb4\x2d\xcc\xd8\xff\xc5\x19\xed\xf5\x8c\xf6\x9c\xff\xd0\xe3\xbf\x48\x39" "\xff\x51\xeb\xa7\xc9\x7f\x39\xb5\x57\x9d\x69\xe3\xee\x27\x83\x47\x1e\xf7" "\xed\xe9\xb4\xdb\x79\xe7\xea\xe7\x7f\x75\xe6\xe0\x77\x67\xa6\xcd\x18\x3e" "\xd8\xb7\xb6\x66\xff\x4e\xf6\xd0\x9f\xad\xff\x93\x67\x26\xf1\xf3\x1b\xeb" "\xd7\x4f\xdd\xba\x72\xf3\xe6\xf5\xb3\x91\x26\x3b\x96\x9e\x8b\x34\x79\xca" "\x72\xfe\xe3\xf4\xf3\xe0\xf9\xff\x95\xed\xf6\xfc\xbc\xdf\x7e\xbc\xde\xfd" "\x64\xf2\xc4\xf9\x1f\x16\x9b\x31\xda\x35\xff\x57\x5a\xf3\xcd\xfe\xbe\x36" "\xe7\xbe\xf5\x21\xe7\x3f\x49\x3f\x39\xff\xf7\x52\xfb\xf4\xc7\xff\x51\xce" "\x7f\xf7\xc7\xff\xeb\x3d\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x1e\xa7\xae\xeb\xad\x4b\x44\xdf\x89\x88\x0b\xe9\xfa\x9f\xbe\xae" "\xcd\x04\x00\xe6\x2b\xbf\xfe\xd7\x49\x5e\xae\x56\xab\xd5\x6a\xb5\xfa\xf8" "\xd5\x6d\xf5\x74\x6f\xb7\x8b\x88\xf8\x4b\x7b\x9b\xe6\x3d\xc3\x2f\xa7\xfd" "\x32\x00\xe0\x30\xfb\x4f\x44\xfc\xbd\xef\x4e\xd0\x1b\xf9\x17\x2c\x7f\xdf" "\x5f\x33\x7d\xb5\xef\xce\x00\x73\x75\xe3\xa3\x8f\x7f\x7c\xe5\xda\xb5\xf5" "\xeb\x37\xfa\xee\x09\x00\x00\x00\x00\x00\x00\x00\xf0\xbf\xca\xe3\x7f\xae" "\xb6\xc6\x7f\x7e\x35\x22\x56\x3a\xeb\xed\x18\xff\xf5\xdd\x58\xdd\xef\xf8" "\x9f\xa3\x3c\xf3\x60\x80\xd1\xa7\x3c\xd0\xf7\x2e\x36\x07\x93\xe1\xa0\x35" "\xdc\xf8\xcb\xf1\xf8\xf1\xbf\x4f\xc6\xe3\xc7\xff\x1e\xcd\xb8\xbd\xf1\x8c" "\xf6\xc9\x8c\xf6\x85\x19\xed\x8b\x33\xda\xa7\x5e\xe8\xd1\x92\xf3\x7f\xb9" "\x35\xde\x79\x93\xff\x89\xce\xf0\xeb\x25\x8c\xff\xda\x1d\xf3\xbe\x04\x39" "\xff\x93\xad\xfb\x73\x93\xff\x97\x3a\xeb\xb5\xf3\xaf\x7f\x7b\x94\xf3\x1f" "\xec\xc8\xff\xf4\xcd\x0f\x7f\x76\xfa\xc6\x47\x1f\xbf\x71\xf5\xc3\x2b\x1f" "\xac\x7f\xb0\xfe\x93\xf3\x67\xcf\x9e\x39\x7f\xe1\xc2\xc5\x8b\x17\x4f\xbf" "\x7f\xf5\xda\xfa\x99\xed\x7f\x7b\xec\xf1\xc1\xca\xf9\xe7\xb1\xaf\x9d\x07" "\x5a\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x21\xd5\xf2\x2f\x4b\xce\xff" "\x8b\xa9\x96\x7f\x59\x72\xfe\xf9\xfd\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4" "\x5f\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc\xcb\x92\xf3" "\x7f\x3d\xd5\xf2\x2f\x4b\xce\xff\xab\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a" "\xfe\x65\xc9\xf9\x9f\x4a\xb5\xfc\xcb\x92\xf3\x3f\x9d\x6a\xf9\x97\x25\xe7" "\x9f\x8f\x70\xc9\xbf\x2c\x39\xff\x7c\x66\x83\xfc\xcb\x92\xf3\x3f\x97\x6a" "\xf9\x97\x25\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\xcd\x54\xcb\xbf\x2c\x39" "\xff\xaf\xa5\x5a\xfe\x65\xc9\xf9\x5f\x48\xb5\xfc\xcb\x92\xf3\xff\x7a\xaa" "\xe5\x5f\x96\x9c\xff\xc5\x54\xcb\xbf\x2c\x39\xff\x6f\xa4\x5a\xfe\x65\xc9" "\xf9\x7f\x33\xd5\xf2\x2f\x4b\xce\xff\xad\x54\xcb\xbf\x2c\x39\xff\x6f\xa5" "\x5a\xfe\x65\xc9\xf9\x7f\x3b\xd5\xf2\x2f\x4b\xce\xff\x3b\xa9\x96\x7f\x59" "\x72\xfe\x6f\xa7\x5a\xfe\x65\x79\xf8\xfd\xff\x66\xcc\x98\x31\x93\x67\xfa" "\x7e\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\xe6\x71\x3a\x71" "\xdf\xfb\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\x65\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00\x00\x00\x00" "\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb\xbb\x18" "\xb9\xce\xbb\x0c\xe0\x67\xd7\xbb\xf6\xda\x69\x12\xb7\x49\x83\x13\x9c\x64" "\xed\xb8\x8e\xe3\x6c\xb2\xeb\x8f\xf8\xa3\x60\xea\xa6\x69\x1a\x92\x96\x92" "\xaf\xd2\xf0\x11\xdb\x78\xd7\xce\xb6\xfe\x8a\x77\x4d\x93\x10\xc9\xae\xd2" "\xd2\x48\x75\x45\x85\x8a\xc8\x0d\xd0\x56\x11\xe4\x06\xd5\x42\xbd\x28\x28" "\x54\x41\x42\x20\xae\x08\x5c\x94\x0b\x50\x11\x52\x2f\x22\x94\x56\x69\x25" "\x24\x40\x90\x45\x73\xe6\x7d\xdf\x9d\x19\x9f\x9d\xb3\x8e\x27\xee\xcc\x39" "\xbf\x9f\x14\xff\xbd\x33\x67\xe6\x9c\x39\xf3\xce\xec\x3e\xeb\x3e\x53\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x68\xb5\xe1\x23\x33\x5f\x1a\xca\xb2\xac\xf1\x5f\xfe\xc7\xda" "\x2c\x7b\x4f\xe3\xef\xab\xc7\xd7\xe6\x97\x7d\xf0\xa7\x7d\x84\x00\x00\x00" "\xc0\xe5\xfa\xbf\xfc\xcf\xb7\xae\x4d\x17\xec\x5f\xc6\x8d\x5a\xb6\xf9\xbb" "\x5b\xfe\xe1\xdb\x0b\x0b\x0b\x0b\xd9\xa7\x57\xfc\xfe\xe8\xd7\x16\x16\xd2" "\x15\xe3\x59\x36\xba\x2a\xcb\xf2\xeb\xa2\x0b\xff\xfe\xc4\x50\xeb\x36\xc1" "\x0b\xd9\xd8\xd0\x70\xcb\xd7\xc3\x25\xbb\x5f\x51\x72\xfd\x48\xc9\xf5\xa3" "\x25\xd7\xaf\x2c\xb9\x7e\x55\xc9\xf5\x63\x25\xd7\x5f\x74\x02\x2e\xb2\xba" "\xf9\xfb\x98\xfc\xce\x36\xe5\x7f\x5d\xdb\x3c\xa5\xd9\xf5\xd9\x68\x7e\xdd" "\xa6\x82\x5b\xbd\x30\xb4\x6a\x78\x38\xfe\x2e\x27\x37\x94\xdf\x66\x61\xf4" "\x48\x36\x9b\x1d\xcb\x66\xb2\xa9\xb6\xed\x9b\xdb\x0e\xe5\xdb\xbf\xba\xa1" "\xb1\xaf\x07\xb2\xb8\xaf\xe1\x96\x7d\xad\x6f\xac\x90\x1f\x3f\x7f\x38\x1e" "\xc3\x50\x38\xc7\x9b\xda\xf6\xb5\x78\x9f\xd1\x0f\x3f\x9c\x8d\xff\xe4\xc7" "\xcf\x1f\xfe\x93\xf9\x37\x6f\x2c\x9a\xa5\xa7\xa1\xed\xfe\x9a\xc7\xb9\x65" "\x63\xe3\x38\xbf\x10\x2e\x69\x1e\xeb\x50\xb6\x2a\x9d\x93\x78\x9c\xc3\x2d" "\xc7\xb9\xbe\xe0\x39\x59\xd1\x76\x9c\x43\xf9\xed\x1a\x7f\xef\x3c\xce\xb7" "\x96\x79\x9c\x2b\x16\x0f\xf3\x8a\xea\x7c\xce\xc7\xb2\xe1\xfc\xef\xaf\xe7" "\xe7\x69\xa4\xf5\xd7\x7a\xe9\x3c\xad\x0f\x97\xfd\xd7\x6d\x59\x96\x9d\x5b" "\x3c\xec\xce\x6d\x2e\xda\x57\x36\x9c\xad\x69\xbb\x64\x78\xf1\xf9\x19\x6b" "\xae\xc8\xc6\x7d\x34\x96\xd2\xfb\xb2\x91\x4b\x5a\xa7\x1b\x96\xb1\x4e\x1b" "\x73\x7a\x53\xfb\x3a\xed\x7c\x4d\xc4\xe7\x7f\x43\xb8\xdd\xc8\x12\xc7\xd0" "\xfa\x34\xfd\xf0\xf3\x2b\x2f\x7a\xde\x2f\x75\x9d\x46\x8d\x47\xbd\xd4\x6b" "\xa5\x73\x0d\xf6\xfa\xb5\xd2\x2f\x6b\x30\xae\x8b\xd7\xf3\x07\xfd\x62\xe1" "\x1a\xdc\x14\x1e\xff\xf3\x9b\x97\x5e\x83\x85\x6b\xa7\x60\x0d\xa6\xc7\xdd" "\xb2\x06\x37\x96\xad\xc1\xe1\x95\x2b\xf2\x63\x4e\x4f\xc2\x50\x7e\x9b\xc5" "\x35\xb8\xad\x6d\xfb\x15\xf9\x9e\x86\xf2\xf9\xc6\xe6\xee\x6b\x70\x72\xfe" "\xf8\xa9\xc9\xb9\x67\x9f\xbb\x6b\xf6\xf8\xa1\xa3\x33\x47\x67\x4e\xec\xd8" "\xb6\x6d\x6a\xc7\xae\x5d\x7b\xf6\xec\x99\x3c\x32\x7b\x6c\x66\xaa\xf9\xe7" "\x3b\x3c\xdb\xfd\x6f\x4d\x36\x9c\x5e\x03\x1b\xc3\xb9\x8b\xaf\x81\xdb\x3b" "\xb6\x6d\x5d\xaa\x0b\xdf\xe8\xdd\xeb\x70\xac\xcb\xeb\x70\x6d\xc7\xb6\xbd" "\x7e\x1d\x8e\x74\x3e\xb8\xa1\x2b\xf3\x82\xbc\x78\x4d\x37\x5f\x1b\x8f\x35" "\x4e\xfa\xd8\xf9\xe1\x6c\x89\xd7\x58\xfe\xfc\x6c\xbd\xfc\xd7\x61\x7a\xdc" "\x2d\xaf\xc3\x91\x96\xd7\x61\xe1\xf7\x94\x82\xd7\xe1\xc8\x32\x5e\x87\x8d" "\x6d\x4e\x6d\x5d\xde\xcf\x2c\x23\x2d\xff\x15\x1d\xc3\xbb\xf5\xbd\x60\x6d" "\xcb\x1a\xec\xfc\x79\xa4\x73\x0d\xf6\xfa\xe7\x91\x7e\x59\x83\x63\x61\x5d" "\xfc\xeb\xd6\xa5\xbf\x17\xac\x0f\xc7\xfb\xe2\xc4\xa5\xfe\x3c\xb2\xe2\xa2" "\x35\x98\x1e\x6e\x78\xef\x69\x5c\x92\x7e\xde\x1f\xdb\x93\x8f\xa2\x75\x79" "\x53\xe3\x8a\xab\x56\x66\x67\xe6\x66\x4e\xdf\xfd\xcc\xa1\xf9\xf9\xd3\xdb" "\xb2\x30\xae\x88\xeb\x5a\xd6\x4a\xe7\x7a\x5d\xd3\xf2\x98\xb2\x8b\xd6\xeb" "\xf0\x25\xaf\xd7\xfd\xb3\xb7\xbc\x78\x53\xc1\xe5\x6b\xc3\xb9\x1a\xbb\xab" "\xf1\xc7\xd8\x92\xcf\x55\x63\x9b\x9d\x77\x77\x7f\xae\xf2\xef\x6e\xc5\xe7" "\xb3\xed\xd2\xed\x59\x18\x3d\x76\xa5\xcf\x67\xd1\x77\xf3\xc6\xf9\x4c\x59" "\xb2\xcb\xf9\x6c\x6c\xf3\x85\xc9\xcb\xff\x59\x3c\xe5\xd2\x96\xf7\xdf\xd1" "\x25\xde\x7f\x63\xee\x7f\xbb\xb9\xbf\x74\x57\x2f\xac\x18\x1d\x69\xbe\x7e" "\x57\xa4\xb3\x33\xda\xf6\x7e\xdc\xfe\x54\x8d\xe4\xef\x5d\x43\xf9\xbe\xdf" "\x9a\x5c\xde\xfb\xf1\x68\xf8\xef\x4a\xbf\x1f\x5f\xdf\xe5\xfd\x78\x5d\xc7" "\xb6\xbd\x7e\x3f\x1e\xed\x7c\x70\xf1\xfd\x78\xa8\xec\xb7\x1d\x97\xa7\xf3" "\xf9\x1c\x0b\xeb\xe4\xd8\x54\xf7\xf7\xe3\xc6\x36\xeb\xb6\x5f\xea\x9a\x1c" "\xe9\xfa\x7e\x7c\x5b\x98\x43\xe1\xfc\xdf\x11\x92\x42\xca\x45\x2d\x6b\x67" "\xa9\x75\x9b\xf6\x35\x32\x32\x1a\x1e\xd7\x48\xdc\x43\xfb\x3a\xdd\xd1\xb6" "\xfd\x68\xc8\x66\x8d\x7d\xbd\xb2\xfd\x9d\xad\xd3\x2d\xb7\x35\xef\x6b\x45" "\x7a\x74\x8b\xae\xd4\x3a\x1d\xef\xd8\xb6\xd7\xeb\x34\xbd\x5f\x2d\xb5\x4e" "\x87\xca\x7e\xfb\xf6\xce\x74\x3e\x9f\x63\x61\x5d\x5c\xbf\xa3\xfb\x3a\x6d" "\x6c\xf3\xda\xce\xcb\x7f\xef\x5c\x1d\xff\xda\xf2\xde\xb9\xb2\x6c\x0d\x8e" "\xae\x58\xd9\x38\xe6\xd1\xb4\x08\x9b\xef\xf7\x0b\xab\xe3\x1a\xbc\x3b\x3b" "\x9c\x9d\xcc\x8e\x65\xd3\xf9\xb5\x2b\xf3\xf5\x34\x94\xef\x6b\xe2\x9e\xe5" "\xad\xc1\x95\xe1\xbf\x2b\xfd\x5e\xb9\xae\xcb\x1a\xdc\xd2\xb1\x6d\xaf\xd7" "\x60\xfa\x3e\xb6\xd4\xda\x1b\x1a\xb9\xf8\xc1\xf7\x40\xe7\xf3\x39\x16\xd6" "\xc5\x4b\xf7\x74\x5f\x83\x8d\x6d\xee\xdb\xdd\xdb\x9f\x5d\xb7\x84\x4b\xd2" "\x36\x2d\x3f\xbb\x76\xfe\x7e\x6d\xa9\xdf\x79\xdd\xd4\x71\x9a\xde\xcd\xdf" "\x79\x35\x8e\xf3\x6f\x76\x77\xff\xdd\x6c\x63\x9b\x63\x7b\x2e\x35\x67\x76" "\x3f\x4f\x77\x86\x4b\xae\x2a\x38\x4f\x9d\xaf\xdf\xa5\x5e\x53\xd3\xd9\x95" "\x39\x4f\xeb\xc2\x71\xbe\xb9\x67\xe9\xf3\xd4\x38\x9e\xc6\x36\x5f\xdb\xbb" "\xcc\xf5\xb4\x3f\xcb\xb2\xb3\x4f\xdf\x9b\xff\xbe\x37\xfc\xfb\xca\x9f\x9f" "\xf9\xde\xb7\xdb\xfe\xdd\xa5\xe8\xdf\x74\xce\x3e\x7d\xef\x8f\xae\x3e\xf2" "\xb7\x97\x72\xfc\x00\x0c\xbe\xb7\x9b\x63\x4d\xf3\x7b\x5d\xcb\xbf\x4c\x2d" "\xe7\xdf\xff\x01\x00\x00\x80\x81\x10\x73\xff\x70\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\x7f\xfc\x5f\x85\x27\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\x23\x61\x26\x35\xc9\xff\xeb\xee\x7b\x73\xf6\xed\xb3\x59\x6a\xe6\x2f\x04" "\xf1\xfa\x74\x1a\x1e\x6c\x6e\x17\x3b\xae\x53\xe1\xeb\xf1\x85\x45\x8d\xcb" "\xef\x7d\x79\xe6\x3f\xff\xf2\xec\xf2\xf6\x3d\x9c\x65\xd9\xff\x3e\xf8\xdb" "\x85\xdb\xaf\x7b\x30\x1e\x57\xd3\x78\x38\xce\x0b\x1f\x6d\xbf\xfc\xe2\x1b" "\x9e\x5d\xd6\xfe\x0f\x3e\xbe\xb8\x5d\x6b\x7f\xfd\xeb\xe1\xfe\xe3\xe3\x59" "\xee\x32\x28\xaa\xe0\x4e\x65\x59\xf6\xea\xb5\x5f\xc9\xf7\x33\xfe\xc4\xf9" "\x7c\xbe\xf6\xe0\xc1\x7c\x3e\x72\xee\xc5\x17\x1a\xdb\xbc\xb5\xb7\xf9\x75" "\xbc\xfd\x1b\xd7\x35\xb7\xff\xc3\x50\xfe\xdd\x7f\xe4\x50\xdb\xed\xdf\x08" "\xe7\xe1\x07\x61\x4e\x3d\x54\x7c\x3e\xe2\xed\xbe\x75\xfe\x8e\xf5\xbb\x3f" "\xb5\xb8\xbf\x78\xbb\xa1\x8d\xd7\xe4\x0f\xfb\xa5\x27\x9b\xf7\x1b\x3f\x27" "\xe7\xab\x2f\x34\xb7\x8f\xe7\x79\xa9\xe3\xff\xab\x2f\xbf\xf2\xad\xc6\xf6" "\xcf\x7c\xa0\xf8\xf8\xcf\x0e\x17\x1f\xff\x2b\xe1\x7e\x5f\x0e\xf3\xbf\x6f" "\x6e\x6e\xdf\xfa\x1c\x34\xbe\x8e\xb7\xfb\x62\x38\xfe\xb8\xbf\x78\xbb\xbb" "\xbf\xf9\xdd\xc2\xe3\xbf\xf0\xa5\xe6\xf6\xa7\xee\x6f\x6e\x77\x30\xcc\xb8" "\xff\x2d\xe1\xeb\x4d\xf7\xbf\x39\xdb\x7a\xbe\x9e\x19\x3a\xd4\xf6\xb8\xb2" "\x8f\x35\xb7\x8b\xfb\x9f\xfa\xde\xef\xe6\xd7\xc7\xfb\x8b\xf7\xdf\x79\xfc" "\x63\x07\xce\xb7\x9d\x8f\xce\xf5\xf1\xda\x3f\x35\xef\x67\xb2\x63\xfb\x78" "\x79\xdc\x4f\xf4\x17\x1d\xfb\x6f\xdc\x4f\xeb\xfa\x8c\xfb\x7f\xe5\x77\x0e" "\xb6\x9d\xe7\xb2\xfd\x5f\x78\xe4\x8d\x9b\x1b\xf7\xdb\xb9\xff\x3b\x3b\xb6" "\x3b\xf5\xf4\xd6\x7c\xff\x8b\xf7\xd7\xfe\x89\x4d\x7f\xf4\xc5\xaf\x14\xee" "\x2f\x1e\xcf\xfe\x3f\x3b\xd5\xf6\x78\xf6\x3f\x1c\x5e\xc7\x61\xff\x2f\x3d" "\x19\xd6\x63\xb8\xfe\x7f\x2e\x34\xef\xaf\xf3\xd3\x15\x0e\x3e\xdc\xfe\xfe" "\x13\xb7\xff\xfa\xda\xb3\x6d\x8f\x27\x7a\xe0\x27\xcd\xfd\x5f\xf8\xd0\xd1" "\x7c\xae\x1a\x5b\xbd\xe6\xaa\xf7\x5c\x7d\xcd\xb9\x5b\x1b\xe7\x2e\xcb\x5e" "\x7f\xb4\x79\x7f\x65\xfb\x3f\xfa\xc7\x27\xdb\x8e\xff\x1b\x37\x34\xcf\x47" "\xbc\x3e\x76\xf4\x3b\xf7\xbf\x94\xb8\xff\xd3\x9f\x9b\x38\x71\x72\xee\xcc" "\xec\x74\xcb\x59\xcd\x3f\x3b\xe7\xe3\xcd\xe3\x89\xc7\x7b\x6d\x78\x6f\xed" "\xfc\xfa\xc0\xc9\xf9\xa7\x66\x4e\x8f\x4f\x8d\x4f\x65\xd9\x78\x75\x3f\x42" "\xef\x1d\xfb\x66\x98\x3f\x6a\x8e\x73\x97\x7a\xfb\xad\x8f\x87\xe7\xf3\xa6" "\x3f\x78\x75\xcd\xe6\x7f\xfc\x72\xbc\xfc\x9f\x1f\x6b\x5e\x7e\xfe\xa1\xe6" "\xf7\xad\xdb\xc3\x76\x5f\x0d\x97\xaf\x0d\xcf\xdf\xe5\xee\xff\xa5\x0d\x37" "\xe4\xaf\xef\xa1\xd7\x9a\x5f\xb7\xf5\xd8\x7b\x60\xfd\xa6\xff\xd8\xb3\xac" "\x0d\xc3\xe3\xef\xfc\xb9\x20\xae\xf7\x53\xef\x7f\x2a\x3f\x0f\x8d\xeb\xf2" "\xef\x1b\xf1\x75\x7d\x99\xc7\xff\xfd\xe9\xe6\xfd\x7c\x27\x9c\xd7\x85\xf0" "\xc9\xcc\x1b\x6f\x58\xdc\x5f\xeb\xf6\xf1\xb3\x11\xce\x3f\xda\x7c\xbd\x5f" "\xf6\xf9\x0b\x6f\x73\xf1\x79\xfd\xd3\xf0\x7c\x7f\xe2\x07\xcd\xfb\x8f\xc7" "\x15\x1f\xef\xf7\xc3\xcf\x31\xdf\x5d\xd7\xfe\x7e\x17\xd7\xc7\x77\xce\x0e" "\x77\xde\x7f\xfe\x29\x1e\xe7\xc2\xfb\x49\x76\xae\x79\x7d\xdc\x2a\x9e\xef" "\xf3\x6f\xdd\x50\x78\x78\xf1\x73\x48\xb2\x73\x37\xe6\x5f\xff\x5e\xba\x9f" "\x1b\x2f\xe9\x61\x2e\x65\xee\xd9\xb9\xc9\x63\xb3\x27\xce\x3c\x33\x39\x3f" "\x33\x37\x3f\x39\xf7\xec\x73\x07\x8e\x9f\x3c\x73\x62\xfe\x40\xfe\x59\x9e" "\x07\x3e\x53\x76\xfb\xc5\xf7\xa7\x35\xf9\xfb\xd3\xf4\xcc\xae\x9d\x59\xfe" "\x6e\x75\xb2\x39\xde\x65\x3f\xed\xe3\x3f\xf5\xf8\xe1\xe9\xdd\x53\x9b\xa7" "\x67\x8e\x1c\x3a\x73\x64\xfe\xf1\x53\x33\xa7\x8f\x1e\x9e\x9b\x3b\x3c\x33" "\x3d\xb7\xf9\xd0\x91\x23\x33\x9f\x2b\xbb\xfd\xec\xf4\xbe\x6d\xdb\xf7\xee" "\xd8\xbd\x7d\xe2\xe8\xec\xf4\xbe\x3d\x7b\xf7\xee\xd8\x3b\x31\x7b\xe2\x64" "\xe3\x30\x9a\x07\x55\x62\xd7\xd4\x67\x27\x4e\x9c\x3e\x90\xdf\x64\x6e\xdf" "\xce\xbd\xdb\xee\xb9\x67\xe7\xd4\xc4\xf1\x93\xd3\x33\xfb\x76\x4f\x4d\x4d" "\x9c\x29\xbb\x7d\xfe\xbd\x69\xa2\x71\xeb\xdf\x9a\x38\x3d\x73\xec\xd0\xfc" "\xec\xf1\x99\x89\xb9\xd9\xe7\x66\xf6\x6d\xdb\xbb\x6b\xd7\xf6\xd2\x4f\x03" "\x3c\x7e\xea\xc8\xdc\xf8\xe4\xe9\x33\x27\x26\xcf\xcc\xcd\x9c\x9e\x6c\x3e" "\x96\xf1\xf9\xfc\xe2\xc6\xf7\xbe\xb2\xdb\x53\x4d\x73\xff\xd6\xfc\x79\xb6" "\xd3\x50\xf3\x83\xf8\xb2\x4f\xde\xb9\x2b\x7d\x3e\x6b\xc3\xcb\x9f\x5f\xf2" "\xae\x9a\x9b\x74\x7c\x80\xe8\x9b\xe1\xb3\x68\xfe\xfe\xbd\xa7\xf6\x2c\xe7" "\xeb\x98\xfb\x47\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\x5f\x19" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x2a\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\x7f\x2c\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\xbf\x78\xff\xfa\xff\x83\x49\xff\xbf\x3b\xfd\xff\x12\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\x5f\x9d\x65\xb5\xcc\xff" "\x00\x00\x00\x50\x07\x31\xf7\xaf\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xbf\x2a\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x3d\x61\x26\x35" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\x1f\x4c" "\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad" "\xff\x1f\x73\xff\xd5\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x5f" "\x13\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6d\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\xda\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\x0f\x26\xfd\xff\xee\xf4\xff\x4b\xe8\xff" "\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\xbd\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\xba\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xeb\xc3" "\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xf7\xaf\xff" "\x3f\x98\xf4\xff\xbb\xd3\xff\x2f\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f" "\xf5\x5b\xff\x3f\xe6\xfe\xf7\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4" "\xdc\x7f\x43\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xcf\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\xaf\x0b\x33\xa9\x49\xfe\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf" "\x84\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x6f\x0c" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xa6\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\x9f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\x5f\x1f\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x5f\xbc" "\x7f\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x09\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xdf\x1c\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xb7\x86" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x8f\x87\x99\xd4\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x17\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa7" "\xff\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd" "\x1b\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xdf\x18\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xa6\x30\x93\x9a\xe4\x7f\xfd\xff\xcb\xe8\xff\x8f\x2c\xfe\x55\xff" "\xbf\xfd\xf8\xf5\xff\xdb\xe9\xff\x87\xf5\xa0\xff\xaf\xff\x7f\x05\xe8\xff" "\x77\xa7\xff\x5f\x42\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f" "\xcc\xfd\x1f\x08\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x73\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xed\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x5b\xc2\x4c\x6a\x92\xff\xf5\xff\xfd\xff\xff\xeb\xff\xeb" "\xff\xeb\xff\x17\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff\x5f\x42\xff\x5f" "\xff\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x77\x84\x99\xd4\x24" "\xff\x03\x00\x00\x40\x1d\xc4\xdc\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x89\x30\x93" "\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\x0f" "\x26\xfd\xff\xee\xf4\xff\x4b\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd" "\xd6\xff\x8f\xb9\xff\xae\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb" "\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x9f\x0c\x33\x91\xff\x01" "\x00\x00\xa0\x32\x62\xee\x9f\x0a\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\x2f\xde\xbf\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\xb7\x85\x99\xd4" "\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xbf\x3d\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xce\x30" "\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff" "\x0f\x26\xfd\xff\xee\xf4\xff\x4b\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53" "\xfd\xd6\xff\x8f\xb9\xff\x9e\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98" "\xfb\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0e\x33\x91\xff" "\x01\x00\x00\xa0\x32\x62\xee\xdf\x13\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\x5f\xbc\x7f\xfd\xff\xc1\xa4\xff\xdf\x9d\xfe\x7f\x09" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xef\x0d\x33" "\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x83\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x3f\x17\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff" "\xf3\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb" "\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff" "\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xbe\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\x7f\x21\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x43\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xfb\xc3\x4c\x6a\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x8b\xf7\xaf\xff\x3f\x98\xf4\xff\xbb\xd3" "\xff\x2f\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x4f\xf5\x5b\xff\x3f\xe6\xfe" "\x0f\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x6f\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\x47\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xef\x0b\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xbf\x02" "\xfd\xff\x5b\x33\xfd\x7f\xfd\xff\x2b\x44\xff\xbf\x3b\xfd\xff\x12\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xf4\x54\xbf\xf5\xff\x63\xee\xff\x68\x98\x49\x4d" "\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xf7\x87\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x7f\x2c\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x81\x30" "\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xff\xff\xff\xc5\xfb\xd7" "\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7" "\xa7\xfa\xad\xff\x1f\x73\xff\x2f\x86\x99\xd4\x24\xff\x03\x00\x00\x40\x1d" "\xc4\xdc\xff\x60\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x43\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x1f\x0f\x33\xa9\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf\xfe\xff\x60\xd2\xff\xef\x4e\xff" "\xbf\x84\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x98\xfb\x3f" "\x11\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x2f\x85\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\xff\x97\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff\x6b\xd8\xff\x1f\xd6\xff" "\xd7\xff\xd7\xff\xaf\x2e\xfd\xff\xee\xf4\xff\x4b\xe8\xff\xeb\xff\xeb\xff" "\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\xe1\x30\x93\x9a\xe4\x7f\x00\x00" "\x00\xa8\x83\x98\xfb\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f" "\x34\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xb1\x30\x93\x9a\xe4\x7f" "\xfd\x7f\xfd\xff\x1a\xf6\xff\xfd\xff\xff\xeb\xff\xeb\xff\x57\x98\xfe\x7f" "\x77\xfa\xff\x25\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7" "\xdc\xff\x78\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x9f\x0a\x33" "\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x95\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x4f\x87\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xeb\xff\x17\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff\x5f\x42\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\x9e\xea\xb7\xfe\x7f\xcc\xfd\x4f\x84\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\xff\xab\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\xbf\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xeb\x61\x26" "\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\x1f" "\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa" "\xad\xff\x1f\x73\xff\x6f\x84\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc" "\xff\x64\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x81\x30\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\x83\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0" "\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xa1\x30\x93" "\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x7f\x33\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x74" "\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xf5" "\xff\x07\x93\xfe\x7f\x77\xfa\xff\x25\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x79" "\x67\xfe\xe5\xba\xbf\x9e\x2c\xb8\xb8\xdf\xfa\xff\x31\xf7\xcf\x84\x99\xd4" "\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x24\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\x68\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x53\x61" "\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xc5\xfb\xd7\xff" "\x1f\x4c\xfa\xff\xdd\xe9\xff\x97\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7" "\xfa\xad\xff\x1f\x73\xff\x6c\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc" "\xfd\x9f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x6c\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\xb1\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xe2\xfd\xeb\xff\x0f\x26\xfd\xff\xee\xf4\xff\x4b" "\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\x78\x98" "\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x27\xc2\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x4f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x9f" "\x0a\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x2f\xde\xbf" "\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf\x84\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f" "\x3d\xd5\x6f\xfd\xff\x98\xfb\x9f\x0e\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a" "\x88\xb9\xff\x74\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x5c\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x7c\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xf1\xfe\xf5\xff\x07\x93\xfe\x7f\x77\xfa\xff" "\x25\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\x7f\x26" "\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xfe\x9f\xbd\xbb\xf6\xf5\xe5\x48\xe2\x38" "\xba\xef\x9f\x5e\xde\xb7\xcc\xcc\xcc\xcc\xcc\xcc\xcc\xcc\x4c\x6f\x99\x31" "\xb0\x2c\x55\x55\x60\x8d\xa6\x6d\xa9\x2d\xf7\x74\x9d\x93\xd4\x95\x6e\xd0" "\xc9\x2f\xf9\x06\x1f\x4d\x07\xb9\xfb\xef\x1d\xb7\xd8\xff\x00\x00\x00\xb0" "\x8d\xdc\xfd\xf7\x89\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xfb\xc6\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x8f\xdf\xd7\xff\x5f\x93" "\xfe\xff\x9c\xfe\x7f\x40\xff\xaf\xff\xd7\xff\xeb\xff\x99\x6a\xb5\xfe\x3f" "\x77\xff\xfd\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\x7f\xff\xb8\xc5" "\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x40\xdc\x62\xff\x03\x00\x00\xc0\x36" "\x72\xf7\x3f\x30\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f" "\xfc\xbe\xfe\xff\x9a\xf4\xff\xe7\xf4\xff\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xcf\x54\xab\xf5\xff\xb9\xfb\x1f\x14\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x9b\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xe0\xb8\xc5\xfe" "\x07\x00\x00\x80\x6d\xe4\xee\x7f\x48\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\xff\xf8\x7d\xfd\xff\x35\xe9\xff\xcf\xe9\xff\x07\xf4\xff" "\xfa\x7f\xfd\xbf\xfe\x9f\xa9\x56\xeb\xff\x73\xf7\x3f\x34\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8b\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee" "\xfe\x87\xc7\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x23\xe2\x96\x26\xfb" "\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc7\xef\xeb\xff\xaf\x49\xff\x7f" "\x4e\xff\x3f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x4c\xb5\x5a\xff\x9f\xbb\xff" "\x91\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x54\xdc\x62\xff\x03" "\x00\x00\xc0\x36\x72\xf7\x3f\x3a\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb" "\x1f\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x7e\x5f" "\xff\x7f\x4d\xfa\xff\x73\xfa\xff\x01\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xaa" "\xd5\xfa\xff\xdc\xfd\x8f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\xe3\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\xf1\x71\x8b\xfd\x0f\x00" "\x00\x00\xdb\xc8\xdd\xff\x84\xb8\xa5\xc9\xfe\xd7\xff\x2f\xdf\xff\xdf\xb8" "\xfd\x7f\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf\x73\xf4\xff\xe7\xf4\xff" "\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x54\xab\xf5\xff\xb9\xfb\x9f\x18\xb7" "\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x27\xc5\x2d\xf6\x3f\x00\x00\x00" "\x6c\x23\x77\xff\x93\xe3\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x29\x71" "\x4b\x93\xfd\xaf\xff\x5f\xbe\xff\xf7\xfd\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xbf\x0b\xf4\xff\xe7\xf4\xff\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x54\xab" "\xf5\xff\xb9\xfb\x9f\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xa7" "\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\xd3\xe3\x16\xfb\x1f\x00\x00" "\x00\xb6\x91\xbb\xff\x19\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\xe3\xf7\xf5\xff\xd7\xa4\xff\x3f\xa7\xff\x1f\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\xa6\x5a\xad\xff\xcf\xdd\xff\xcc\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\x3f\x2b\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\x9f\x1d" "\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xcf\x89\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\xbf\xaf\xff\xbf\x26\xfd\xff\x39\xfd\xff" "\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xd5\x6a\xfd\x7f\xee\xfe\xe7\xc6\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x79\x71\x8b\xfd\x0f\x00\x00\x00" "\xdb\xc8\xdd\xff\xfc\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x41\xdc" "\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xf8\x7d\xfd\xff\x35" "\xe9\xff\xcf\xe9\xff\x07\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xa9\x56\xeb\xff" "\x73\xf7\xbf\x30\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x2f\x8a\x5b" "\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x17\xc7\x2d\xf6\x3f\x00\x00\x00\x6c" "\x23\x77\xff\x4b\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xc7\xef\xeb\xff\xaf\x49\xff\x7f\x4e\xff\x3f\xa0\xff\xd7\xff\xeb\xff\xf5" "\xff\x4c\xb5\x5a\xff\x9f\xbb\xff\xa5\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\x7f\x59\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xbf\x3c\x6e\xb1" "\xff\x01\x00\x00\x60\x1b\xb9\xfb\x5f\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x3f\x7e\x5f\xff\x7f\x4d\xfa\xff\x73\xfa\xff\x01\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xaa\xd5\xfa\xff\xdc\xfd\xaf\x8c\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\xab\xe2\x16\xfb\x1f\x00\x00\x00\xb6\x91" "\xbb\xff\xd5\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\x9a\xb8\xa5\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf1\xfb\xfa\xff\x6b\xd2\xff" "\x9f\xd3\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x53\xad\xd6\xff\xe7\xee" "\x7f\x6d\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x17\xb7\xd8\xff" "\x00\x00\x00\xb0\x8d\xdc\xfd\xaf\x8f\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee" "\xfe\x37\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x8f\xdf" "\xd7\xff\x5f\x93\xfe\xff\x9c\xfe\x7f\x40\xff\xaf\xff\xd7\xff\xeb\xff\x99" "\x6a\xb5\xfe\x3f\x77\xff\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\x7f\x73\xdc\x62\xff\x03" "\x00\x00\xc0\x36\x72\xf7\xbf\x25\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x7f\xfc\xbe\xfe\xff\x9a\xf4\xff\xe7\xf4\xff\x03\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\x54\xab\xf5\xff\xb9\xfb\xdf\x1a\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\xb7\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff" "\xdb\xe3\x16\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\x1d\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe3\xf7\xf5\xff\xd7\xa4\xff\x3f\xa7" "\xff\x1f\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xa6\x5a\xad\xff\xcf\xdd\xff\xce" "\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2b\x6e\xb1\xff\x01\x00" "\x00\x60\x1b\xb9\xfb\xdf\x1d\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xef" "\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\xbf\xaf\xff" "\xbf\x26\xfd\xff\x39\xfd\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xd5\x6a" "\xfd\x7f\xee\xfe\xf7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x7d" "\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xfe\xb8\xc5\xfe\x07\x00\x00" "\x80\x6d\xe4\xee\xff\x40\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\xff\xf8\x7d\xfd\xff\x35\xe9\xff\xcf\xe9\xff\x07\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\xa9\x56\xeb\xff\x73\xf7\x7f\x30\x6e\x69\xb2\xff\x01\x00\x00" "\xa0\x83\xdc\xfd\x1f\x8a\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x0f\xc7" "\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\x47\xe2\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\xc7\xef\xeb\xff\xaf\x49\xff\x7f\x4e\xff\x3f" "\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x4c\xb5\x5a\xff\x9f\xbb\xff\xa3\x71\x4b" "\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x58\xdc\x62\xff\x03\x00\x00\xc0" "\x36\x72\xf7\x7f\x3c\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\x3f\x11\xb7" "\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x3f\x7e\x5f\xff\x7f\x4d" "\xfa\xff\x73\xfa\xff\x01\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xaa\xd5\xfa\xff" "\xdc\xfd\x9f\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xa7\xe2\x16" "\xfb\x1f\x00\x00\x00\xb6\x91\xbb\xff\xd3\x71\x8b\xfd\x0f\x00\x00\x00\xdb" "\xc8\xdd\xff\x99\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\xf1\xfb\xfa\xff\x6b\xd2\xff\x9f\xd3\xff\x0f\xe8\xff\xf5\xff\xfa\x7f\xfd" "\x3f\x53\xad\xd6\xff\xe7\xee\xff\x6c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x3f\x17\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\x9f\x8f\x5b\xec" "\x7f\x00\x00\x00\xd8\x46\xee\xfe\x2f\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x8f\xdf\xd7\xff\x5f\x93\xfe\xff\x9c\xfe\x7f\x40\xff" "\xaf\xff\xd7\xff\xeb\xff\x99\xea\x1e\xeb\xff\x6f\xdc\xeb\xb0\xff\xcf\xdd" "\xff\xc5\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x29\x6e\xb1\xff" "\x01\x00\x00\x60\x1b\xb9\xfb\xbf\x1c\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc" "\xfd\x5f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\xbf" "\xaf\xff\xbf\x26\xfd\xff\x39\xfd\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x33" "\xd5\x6a\xdf\xff\xcf\xdd\xff\xd5\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72" "\xf7\x7f\x2d\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\xbf\x1e\xb7\xd8\xff" "\x00\x00\x00\xb0\x8d\xdc\xfd\xdf\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff" "\xaf\xff\xd7\xff\x1f\xbf\xaf\xff\xbf\x26\xfd\xff\x39\xfd\xff\x80\xfe\x5f" "\xff\xaf\xff\xd7\xff\x33\xd5\x6a\xfd\x7f\xee\xfe\x6f\xc6\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00\x00\xdb\xc8\xdd" "\xff\xed\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x4e\xdc\xd2\x64\xff" "\xeb\xff\xa7\xf7\xff\xb7\x6e\xc6\x1f\xfa\x7f\xfd\xff\x1d\x7f\x1f\xfa\x7f" "\xfd\xbf\xfe\xff\xee\xa7\xff\x3f\xa7\xff\x1f\xd0\xff\xeb\xff\xf5\xff\xfa" "\x7f\xa6\x5a\xad\xff\xcf\xdd\xff\xdd\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\x7f\x2f\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\xbf\x1f\xb7\xd8" "\xff\x00\x00\x00\xb0\x8d\xdc\xfd\x3f\x88\x5b\x9a\xec\x7f\xfd\xbf\xef\xff" "\xeb\xff\xf5\xff\xfa\xff\xe3\xf7\xf5\xff\xd7\xa4\xff\x3f\xa7\xff\x1f\xd0" "\xff\xeb\xff\xf5\xff\xfa\x7f\xa6\x5a\xad\xff\xcf\xdd\xff\xc3\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x28\x6e\xb1\xff\x01\x00\x00\x60\x1b" "\xb9\xfb\x7f\x1c\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\x3f\x89\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\xbf\xaf\xff\xbf\x26\xfd" "\xff\x39\xfd\xff\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xd5\x6a\xfd\x7f\xee" "\xfe\x9f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x67\x71\x8b\xfd" "\x0f\x00\x00\x00\xdb\xc8\xdd\xff\xf3\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4" "\xee\xff\x45\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xf8" "\x7d\xfd\xff\x35\xe9\xff\xcf\xe9\xff\x07\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f" "\xa9\x56\xeb\xff\x73\xf7\xff\x32\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\xbf\x8a\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\x5f\xc7\x2d\xf6\x3f" "\x00\x00\x00\x6c\x23\x77\xff\x6f\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\xc7\xef\xeb\xff\xaf\x49\xff\x7f\x4e\xff\x3f\xa0\xff\xd7" "\xff\xeb\xff\xf5\xff\x4c\xb5\x5a\xff\x9f\xbb\xff\xb7\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xbf\x15\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd" "\xbf\x8b\x5b\xec\x7f\x00\x00\x00\xd8\x46\xee\xfe\xdf\xc7\x2d\x4d\xf6\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x8f\xdf\xd7\xff\x5f\x93\xfe\xff\x9c" "\xfe\x7f\x40\xff\xaf\xff\xd7\xff\xeb\xff\x99\x6a\xb5\xfe\x3f\x77\xff\x1f" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xc7\xb8\xc5\xfe\x07\x00" "\x00\x80\x6d\xe4\xee\xff\x53\xdc\x62\xff\x03\x00\x00\xc0\x36\x72\xf7\xff" "\x39\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xfc\xbe\xfe" "\xff\x9a\xf4\xff\xe7\xf4\xff\x03\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x54\xab" "\xf5\xff\xb9\xfb\xff\x12\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xbf" "\xc6\x2d\xf6\x3f\x00\x00\x00\x6c\x23\x77\xff\xdf\xe2\x16\xfb\x1f\x00\x00" "\x00\xb6\x91\xbb\xff\xef\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\xff\xe3\xf7\xf5\xff\xd7\xa4\xff\x3f\xa7\xff\x1f\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\xa6\x5a\xad\xff\xcf\xdd\xff\x8f\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\xff\x33\x6e\xb1\xff\x01\x00\x00\x60\x1b\xb9\xfb\xff\x15" "\xb7\xd8\xff\x00\x00\x00\xb0\x8d\xdc\xfd\xff\x8e\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\x1f\xbf\xaf\xff\xbf\x26\xfd\xff\x39\xfd\xff" "\x80\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xd5\x6a\xfd\x7f\xee\xfe\xff\xc4\x2d" "\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xbf\x71\x8b\xfd\x0f\x00\x00\x00" "\xdb\xc8\xdd\xff\xbf\xb8\xc5\xfe\x07\x00\x00\x80\x6d\xe4\xee\xff\x7f\xdc" "\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xf8\x7d\xfd\xff\x35" "\xe9\xff\xcf\xe9\xff\x07\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\xa9\x56\xeb\xff" "\x73\xf7\xdf\x16\x00\x00\xff\xff\x19\xef\x7e\x6c", 24078); syz_mount_image(0x20000080, 0x20005e40, 0x2200810, 0x20000540, 1, 0x5e0e, 0x2000bc80); memcpy((void*)0x20000180, "./bus\000", 6); res = syscall(__NR_open, 0x20000180ul, 0x14937eul, 0ul); if (res != -1) r[0] = res; memcpy((void*)0x200000c0, "FROZEN\000", 7); syscall(__NR_write, r[0], 0x200000c0ul, 0x200000c7ul); memcpy((void*)0x20000040, "freezer.self_freezing\000", 22); res = syscall(__NR_openat, 0xffffff9c, 0x20000040ul, 0x275aul, 0ul); if (res != -1) r[1] = res; syscall(__NR_write, r[1], 0x20000300ul, 0x208e24bul); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); loop(); return 0; }