// https://syzkaller.appspot.com/bug?id=cb731e386d5b0a865a031d5591346e83e0eb52ec // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #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, max_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 void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } 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, 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) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); 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"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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) reset_loop_device(loopname); 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 (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // flags: mount_flags = 0x509 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {64 69 73 63 61 72 64 2c 64 61 74 61 5f 63 68 65 // 63 6b 73 75 6d 3d 78 78 68 61 73 68 2c 62 74 72 65 65 5f 6e 6f 64 // 65 5f 7e 72 65 66 65 74 63 68 2c 73 74 72 5f 68 61 73 68 3d 63 72 // 63 33 32 63 2c 76 65 72 73 69 6f 6e 5f 75 70 67 72 61 64 65 3d 6e // 6f 6e 65 2c 64 6f 6e 74 5f 68 61 73 68 2c 6f 62 6a 5f 75 73 65 72 // 3d 00 2c 73 6d 61 63 6b 66 73 68 61 74 3d 63 72 63 33 32 63 2c 00} // (length 0x7e) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x5b2f (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5b2f) // } // ] // returns fd_dir memcpy((void*)0x20005b00, "bcachefs\000", 9); memcpy((void*)0x20000080, "./file2\000", 8); memcpy((void*)0x20000000, "discard,data_checksum=xxhash,btree_node_~refetch,str_hash=crc32c," "version_upgrade=none,dont_hash,obj_user=\000,smackfshat=crc32c,\000", 126); memcpy( (void*)0x2000b6c0, "\x78\x9c\xec\xdd\x0d\x8c\x5d\x65\x9d\x30\xf0\x73\xee\x9d\x69\x67\x3a\x6d" "\x99\xa2\x40\x2d\x1f\x1d\xa0\xf4\x2d\xbc\x02\x53\x8a\x2f\xd0\x60\x1c\x78" "\x23\xe0\xab\x45\x04\x2d\x2a\x48\x5b\xe9\xb4\x0c\xf6\x03\x3a\xad\x85\x2a" "\xb6\x90\x88\x06\x79\x79\x9b\xbc\x1b\x65\x4d\x24\x84\x68\xc2\x86\x10\xdc" "\x25\xeb\xfa\xb1\xa6\x98\x45\xcc\xca\x1a\x9b\xb8\x6c\x71\x77\x5d\x0c\x68" "\x56\x76\x83\x35\x08\xda\xa5\xc4\x6e\x66\xee\x39\x77\xee\x3d\x73\x9e\x7b" "\xee\xdc\x7b\xa7\xb4\xf0\xfb\x05\xe6\xdc\x73\xee\x73\xff\xcf\xf3\x7f\xce" "\x33\x67\xce\x79\xee\xe9\xbd\x11\x00\x00\x00\x6f\x09\x4f\x7d\x7e\xf4\x0f" "\x57\x2e\x78\xef\x8f\xef\x1a\x7e\x75\xe7\x15\xdf\xdd\x78\x67\xd4\x57\x1e" "\xdf\xde\x93\x16\xe8\x4f\x96\xb7\xbd\x51\x2d\xe4\x70\x9a\xd9\x35\x7f\x7c" "\x99\x1d\x17\xbb\x87\x66\x3c\xf5\x9e\x7b\x3f\xf0\xec\xd7\x3e\xf1\x8d\xe7" "\x5f\x98\xb7\x64\xe9\xd7\x6f\xbe\xec\xe0\xad\xb3\x57\xdc\x73\xcf\xd0\xcf" "\x2e\x38\xf8\x93\x3f\xdd\x51\x14\x37\x1d\x4f\x67\x4e\xac\xc7\x2f\xc5\x51" "\x74\xf2\x4f\x97\x7c\xf9\xee\x1f\x3e\x7d\xc2\xd8\xb6\x38\x8a\xa2\x72\xdc" "\xbf\x2b\x8a\xe6\xc5\xa5\x1f\xcc\x8b\x33\x21\x06\x5f\x8b\xa2\x68\x6d\xb2" "\x32\xab\xab\xfe\xc9\xc7\x5f\x5d\xb6\x6e\x6c\xb9\xeb\x4b\x33\xeb\xb6\x1f" "\x93\x09\x62\xbc\xbf\xb5\xcd\x4e\xc6\xd9\x17\xbe\xbf\xf9\xa4\xdf\x9c\x73" "\xd9\xb3\x7b\x7e\x7e\xe9\xab\x83\x3d\xaf\x6d\xd9\x35\x51\x24\xee\xa9\x19" "\x4f\x51\x34\x77\x75\xed\xeb\xbb\xa3\x28\xea\x8d\x26\x86\x66\x3a\xda\xe6" "\xa7\x2f\x4e\x96\x57\x45\x51\x34\x54\xf3\xba\x0b\x0b\xda\x75\x5a\x93\xed" "\x3f\x3b\xb0\xbe\x20\x59\xce\x48\x96\x7d\x05\x71\xd2\xe7\x4f\xcd\xac\x77" "\x37\xd9\x8e\xae\xcc\xb2\xa7\xc9\xd7\xb5\xaa\x34\xcd\xf1\x53\xe9\xfe\x9b" "\x3d\xcd\xf5\x67\x0f\x6e\xd9\x7a\xe6\x25\xcb\x6f\x25\xcb\x33\xa7\x18\xbf" "\x9c\xfe\x1f\x47\xa5\x38\xea\xaa\x56\xb7\x21\x9e\x18\x23\x51\xcd\x7e\x8b" "\xa3\x78\x7c\xdf\x4f\xac\x97\xea\xc6\x42\x9c\x19\x1b\x71\x14\xc5\x99\xf5" "\x52\x66\xbd\xdc\x9d\xc9\x6b\xbc\xde\x64\xa0\x95\xe3\xb8\x7e\x7b\x5a\x2e" "\xb3\x7d\x20\xd9\xde\x95\x6c\x3f\x35\x67\xdf\xd4\xba\x26\xb0\xfd\x1d\x69" "\xbe\xc9\x2f\xea\x81\x4c\xfe\xd9\x01\xdc\x37\xe9\x41\x35\xaf\x71\x69\xbb" "\x7e\xd9\xa0\x2d\x87\x43\xa9\xe6\x18\x94\xb7\x3d\x6d\x6f\x4f\xb2\x33\xfa" "\x92\x6d\x7d\xf1\xb1\x93\x5e\x73\x28\x47\xfa\xdc\xca\x17\xee\x7b\xec\xf9" "\x1d\x0f\x2c\xea\x0f\xb4\x23\xfe\x66\x9c\xc4\x8f\x5b\x8a\xff\xcc\xc6\x8b" "\xf6\x2d\xde\xf1\x8b\xfd\xf3\x43\xf1\x57\x97\x92\xf8\xa5\x96\xe2\x8f\x9e" "\xf3\xf2\xa3\x2f\x5e\xfd\xa3\x13\x82\xf1\x77\xa7\xf1\xcb\x2d\xc5\x7f\xee" "\xfc\xc5\x5f\xf9\xde\xce\xed\x07\x82\xfd\xf3\xbb\xb4\x7f\xba\x5a\x8a\x5f" "\x5e\x7e\xd6\xc1\xa5\x77\x0d\xae\x0c\xb6\xff\xc1\x34\x7e\x4f\x4b\xf1\x1f" "\xba\xf4\x91\xaf\xce\x7d\xd7\x93\x8f\x06\xdb\x3f\x98\xf6\x4f\x6f\x6b\xfd" "\x33\xb2\xed\xf5\xeb\x1e\x3e\x6e\x7f\x30\x7e\x94\xc6\x9f\xd5\x52\xfc\x4b" "\x5e\x39\xfe\x8c\xe5\x9b\x1f\x59\x1f\x8c\xff\x44\xda\x3f\x7d\x2d\xc5\x7f" "\x7a\x74\x64\xc5\xdd\x37\x2d\xdc\x3e\x10\x8a\xbf\x37\x8d\x3f\xa7\xa5\xf8" "\xa7\xfd\xea\xfa\xeb\xf6\xec\x1b\x7e\x2e\xd8\xfe\xa1\xb4\x7f\xfa\x5b\x8a" "\xff\xee\x45\x97\x5c\xb5\x62\xff\xa6\x7b\x43\x7f\xa7\xe3\x5d\x87\xeb\x2f" "\x2c\xc0\x9b\xd3\xdb\x92\x73\xac\x2f\x26\xeb\xad\x5e\x67\xb6\xab\xe6\x7a" "\xe1\xfe\xfe\xb8\x72\xce\x37\x3b\xf9\x7f\x4e\x27\x2b\xca\x18\xab\x67\x6e" "\xf2\xb8\x6b\x1a\xeb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xe0\xad\xe5\xa1\xfe\xb5\xc3\x7f\xfa\xce\x29\xaf" "\x77\x25\xeb\x33\x93\x07\xa7\x94\x2b\xcb\x74\xfb\x8c\x28\x8a\x7b\xa3\x28" "\x1a\xdd\xba\x66\xcb\xd6\x91\x4d\xeb\x07\x6e\xde\xbc\x6d\xcb\xa6\x35\x1b" "\x06\xd6\x6c\x1d\x18\xde\xb4\x75\xcb\xed\x03\xe7\xbf\x73\x60\xcb\xf0\x2d" "\x1b\xd6\xdc\x3e\xf6\xec\xe0\xd9\xcb\x2a\xaf\x3b\x36\x8a\x2b\xcb\xf8\xe4" "\x49\x75\x1f\x3a\x74\xe8\x50\xa9\xbf\x7e\x5b\x5a\xdf\xa7\x2e\xf8\xff\x8f" "\x0f\x9c\xb2\xef\x9f\xa3\x68\xf0\xb8\x9f\x9d\xd2\x15\x6c\xff\x07\xef\x58" "\xf0\xbf\xe7\xe5\xfc\xcc\x88\x87\x0e\x6d\xf8\x7f\x67\xdc\xf0\xe2\xec\xbf" "\xdf\x56\xd9\xd0\x9f\xb4\xab\x3f\xd0\xae\x28\xd0\xae\x8b\x1f\x7e\x69\xf9" "\x6f\xbe\xdb\xfb\x7f\xa3\x68\xf0\xf8\x46\xed\xfa\xf7\x25\x97\xff\xb0\xae" "\x41\xe3\x1b\x26\xe2\x24\x4a\x33\xa3\xd2\xf8\x83\x99\xf1\xac\xdc\x76\x54" "\x5b\x9d\xb4\x27\xed\xaf\xae\x75\x23\x1b\x86\x07\x8b\xfb\xb7\x1c\xc8\xe3" "\xd7\x07\xfe\xea\x23\xdb\x47\x6f\xdc\x55\xe9\xdf\x9e\x60\x1e\x4d\xf6\x6f" "\xef\xd0\xa1\x3f\x6e\xfa\xf6\x13\x37\x5e\xbc\xe3\xaa\xca\x86\x23\x75\xbf" "\x17\xf5\x77\x9a\x45\xda\xbe\xb4\xff\x7a\x92\xfe\x9e\x9b\xe4\x35\x37\x90" "\x57\x57\x20\xaf\xbb\xcf\x38\xf5\xdf\xfe\xe9\xcf\x37\xbe\xb4\x2b\x1a\xec" "\xfa\xfd\xc2\xc9\x75\x17\xe5\xd5\x9d\x0c\x80\xee\xf8\x1d\x4d\xd5\x9b\xd6" "\x30\x2b\xae\xef\x93\x9e\xa4\x7c\xba\xc7\xd3\xd7\x9d\xbb\x75\xe3\x2d\xe7" "\x8e\xde\xbe\xe3\xec\x91\x8d\x6b\xd6\x0f\xaf\x1f\xde\xb4\x6c\xd9\xb2\x0b" "\xcf\x5f\x76\xde\x05\xe7\xfd\xaf\x73\xc7\x53\xaf\xfc\xec\x58\xfe\x69\xfd" "\xff\xa3\xc9\xfc\x0f\xcf\x78\xda\x7c\xc1\xd0\x48\xfa\xb3\xb9\xf1\x54\xd4" "\xae\xa2\xfe\x18\x6b\x57\x71\x7f\xd4\xb6\x28\xf4\xfb\xf7\xf6\x0f\x5f\xfe" "\x2f\x77\xfe\xf5\xee\xab\x2b\x1b\x8a\xc6\x79\x5a\xba\x7a\x3c\x49\x96\xb3" "\xc6\x76\xf3\xd2\xa8\x66\xbc\x4d\xee\xab\xbc\xbc\x8a\xfa\xa1\x3b\xd0\x0f" "\xeb\xaf\xe9\xfb\x8b\x57\x06\x36\xff\x57\xd1\x71\xa8\x76\xcf\xd4\xfe\xcc" "\x88\x87\x0e\xfd\x7e\xe4\x1f\xde\x33\x7b\xcf\xe9\x37\x54\x36\x1c\x96\xe3" "\x7c\x6d\x83\x5a\x3c\xce\x57\x5b\x9d\xb4\xa7\xbb\xf6\xb8\xb3\xf4\xc8\xed" "\xdf\x99\x51\x39\xc9\xab\x2f\xb7\x5d\xa7\xdf\xf5\xf2\x47\xff\xf1\x3b\xf1" "\x40\xb5\x7d\x33\x66\x44\xb7\xad\xd9\xba\x75\xcb\xd2\xca\xcf\xc3\x94\xd7" "\xdb\xaf\xf9\x6c\x67\xf3\xba\x70\xf1\x7f\xde\xba\x63\xf5\x9d\xf3\x26\xe5" "\x75\x5e\xe5\xe7\xec\xa4\xa5\xb3\xe3\x13\x73\xdb\x95\xdd\x9a\xe6\xb5\x70" "\xfc\x67\x39\x4a\xba\x25\x5d\x44\x3d\xa5\xfc\xfc\xba\xa3\x4a\xfb\xb2\x7f" "\x17\xd2\xd7\x65\x7b\xb5\x2f\x79\xae\x2f\x3e\x36\x37\xaf\xac\xf4\xb9\x95" "\x2f\xdc\xf7\xd8\xf3\x3b\x1e\x58\x14\xea\xe9\xf8\x9b\x95\x1a\x7b\xa3\x39" "\x95\x65\x7c\x52\xa0\xe4\x86\xcc\x0b\xcb\xd5\x06\xe7\xd5\x5f\x34\x3e\xa2" "\x28\x5a\x5d\xbb\x2d\xed\xc7\x27\xbe\xfd\x67\x03\x7b\x7e\x3c\x6f\x63\xe1" "\xf8\xa8\x8c\x8c\x49\x3f\xb3\xe9\x0d\x1d\xfa\xdc\x45\xb3\x7f\x3d\x7a\xed" "\xde\x15\x95\x0d\x87\xe7\xb8\x52\xd3\xa0\x16\x8f\x2b\xd5\x56\x4f\xb4\x67" "\xbc\xbf\xc6\x8f\x2b\xe7\x1d\x39\x79\xbc\x71\xfb\xb9\xee\x17\x2b\x1e\x3a" "\xb4\xe7\xa4\x77\xae\x5f\xf6\xb7\x5b\x93\x5f\xfb\xa2\xfe\xad\x96\xce\xeb" "\xdf\x65\x51\x54\x74\x1c\x58\x98\x59\x9f\xae\xe3\x40\xb6\x9e\x89\xf2\xf9" "\xf1\x06\x32\xeb\x7d\x51\xb9\xa5\xe3\xc6\x73\xe7\x2f\xfe\xca\xf7\x76\x6e" "\x3f\x10\x3c\x6e\xfc\xae\xd9\xe3\xc6\x67\xeb\xd6\xca\x6d\x1e\x37\xe2\xc0" "\x78\xda\xf7\xb9\xbf\xfc\xe3\x67\xf6\x3d\xf3\xbe\xce\x1d\x37\xde\xb7\xb8" "\xfc\xf1\x7f\x5d\xb8\x2c\xe9\xd0\x23\xe5\xf7\xad\x27\x19\xd7\x3d\x81\x71" "\x5d\x6d\x75\xd2\x9e\xb8\x76\x5c\x9f\x73\xe3\xe6\x0d\x6b\x2b\xdb\x8f\xdc" "\xf3\xdf\x64\x59\x70\xfd\x93\xfe\xfd\x1e\xbd\x7d\xc7\xa7\xd6\x6c\xd8\x30" "\xbc\x65\xb4\xb9\xbc\x9a\x3d\x2f\x49\xeb\xc9\xf6\x72\xab\xe7\x25\xe9\x6f" "\xdf\xb1\x05\x79\xa5\xfb\x6b\x22\xaf\xe9\x7b\xd0\x4c\x7f\x35\xfb\xfb\x96" "\xb6\x7f\x6d\xb6\xbf\x5a\xfc\x7d\x83\x3c\x7d\x51\xdc\xd2\xdf\xb3\x67\x36" "\x5e\xb4\x6f\xf1\x8e\x5f\xec\xef\x0f\xc4\x8d\x57\x97\x92\xf8\xa5\x96\xe2" "\x8f\x9e\xf3\xf2\xa3\x2f\x5e\xfd\xa3\x13\x82\xf1\x77\xa7\xf1\xbb\x5a\x8a" "\x5f\x5e\x7e\xd6\xc1\xa5\x77\x0d\xae\x0c\xc6\x7f\x30\x4e\xe2\xf7\xb4\x14" "\xff\xa1\x4b\x1f\xf9\xea\xdc\x77\x3d\xf9\x68\x30\xfe\x60\xda\xfe\xde\xd6" "\xce\x27\x46\xb6\xbd\x7e\xdd\xc3\xc7\x85\xfb\x3f\x4a\xe3\xf7\xb5\x14\xff" "\xe9\xd1\x91\x15\x77\xdf\xb4\x70\x7b\x30\xfe\xde\x38\xa9\x67\xec\xdc\x2e" "\x8a\x1e\x7f\x75\xd9\xba\xca\x7a\x1c\x75\x27\xc7\xe1\xb4\x1d\xdd\x75\xed" "\x8a\xb2\xeb\x71\x66\xbd\x94\x59\x2f\xd7\xae\x97\x2a\x73\xf0\xd5\x0a\xca" "\x71\x5c\xbf\x3d\x2d\x97\x6c\x3f\xb5\xa6\x2d\x79\xae\x0d\x6c\x4f\xcf\x1e" "\x7b\xe6\x57\x96\x07\xd2\xf5\x28\xfb\xa0\xf1\xf6\x23\x4d\xa9\xe6\x9c\x20" "\x6f\x7b\xd1\xf9\x35\x00\xbc\x99\xa4\xef\xff\xa7\xe7\x1a\xe9\xfb\xff\x0b" "\x93\x3f\x88\x35\xef\xff\x57\x96\xf1\x8c\xba\xd7\xcf\x4f\xce\xa7\xe6\x4f" "\x6c\x1a\xbf\xce\xbb\x73\xa0\xf2\x87\x74\xaa\xf3\x7a\x69\x3b\xb2\xf3\x7a" "\x69\xfc\x25\xa7\xd7\xc7\x68\x75\x5e\xaf\x68\x5e\xee\xb4\xcc\x7a\xda\xae" "\x85\x49\xaf\xa4\xed\x69\x70\xde\x30\x3b\x6a\x62\x5e\x6e\x72\x3d\x8d\xe7" "\xe5\x32\xe9\x17\xcf\x9b\x0d\x7c\x31\xb3\xa1\x6b\x7c\x6e\x2f\xb4\xdf\xba" "\x93\x99\x8a\xbc\xf7\x99\x33\xed\x9d\x3d\x16\xa1\xdd\xf3\xec\xf9\xf9\xad" "\xae\x9e\x67\x87\xc6\x5d\x76\xbe\x23\x7d\x9f\x3e\x6e\x72\xdc\x65\xef\x8b" "\x48\xf7\x6f\xf6\xbe\x88\x34\xfe\x82\xcc\x04\x5a\xab\xf7\x45\xb4\x3b\xee" "\xd2\x69\x8d\x06\xe3\x6e\x3c\xb3\xe2\xf9\xd4\xc9\xe3\x22\x6a\xd0\xaf\x13" "\xe3\x22\x3f\x5a\x76\x5c\x4c\x61\x1c\xf5\x57\xc6\xd1\xf4\xbe\x2f\x75\xf4" "\x5f\xef\x4f\xef\xfc\xbb\xf9\x84\x40\xfc\xe4\xef\xc8\x91\x7e\xbd\x9f\x6e" "\x4f\x8f\x0f\x5d\x4d\xce\x03\xac\x0c\x6c\xef\xd4\x3c\x40\x7a\xb8\x48\xdb" "\xf5\xcb\x06\x6d\x39\x1c\xcc\x03\x00\xc0\xc4\xf5\x7f\x7a\x4e\x31\x76\xfd" "\x3f\xf6\xb7\x7a\x20\x73\x9e\x5f\x74\xdd\x92\xbd\xca\x48\xe3\x05\xef\x63" "\x29\xe7\xb7\xa7\xe8\xfa\x77\xf2\xfd\x6c\xb3\x5a\x3a\xef\xbb\xe4\x95\xe3" "\xcf\x58\xbe\xf9\x91\xf5\xc1\xf3\xe2\x27\x9a\xbd\x2f\xe5\x96\xba\xb5\x59" "\x05\xf7\xa5\x14\xf5\xe3\xa2\xcc\x7a\x61\x3f\x06\x6e\x05\x29\x9a\x77\x58" "\x9c\x29\xdf\x17\xcd\x69\xa9\x1f\x4f\xfb\xd5\xf5\xd7\xed\xd9\x37\xfc\x5c" "\xb0\x1f\x87\x2a\x27\x52\xc5\xfd\xb8\xbb\x6e\x6d\x4e\x9b\xfd\xb8\x24\xb3" "\x5e\xd8\x8f\xdd\xf9\xad\x2a\xea\xc7\x6c\x3d\x45\xe3\xf7\xcc\xcc\x7a\x5f" "\x72\x47\xd0\x54\xfb\xfd\xdd\x8b\x2e\xb9\x6a\xc5\xfe\x4d\xf7\x06\xfb\x7d" "\x57\xb3\xfd\xfe\x60\xdd\x5a\x7f\x41\xbf\xbb\x4e\x0f\xc4\x3f\xda\xaf\xd3" "\xbf\x11\x25\xf1\x8f\xee\xeb\xf4\xe9\x9e\x8f\x7c\xc3\xe6\x01\x92\x79\xeb" "\xe9\x9a\x07\xb8\x26\xb0\x7d\xaa\xf3\x00\x7d\x93\x1e\x54\xf3\x1a\x77\xd4" "\xcd\x03\x04\xfe\x2e\x00\xc0\xd1\x2c\xbd\xfe\xaf\xde\x2f\x9f\x5c\xff\xff" "\x5d\xa6\x5c\xbb\xd7\x87\xc1\xf3\xb6\xa1\xce\xdc\xcf\x1a\x3c\x6f\xab\xbe" "\xff\xd4\xde\x79\x79\xb0\xfd\xd5\xf3\xf2\xf6\xae\x8b\x82\xf1\xab\xd7\x45" "\xed\x5d\xb7\x04\xfb\xa7\x7a\xdd\xd2\xde\x75\x57\x30\x7e\xf5\xba\xab\xbd" "\x79\x9a\x60\xff\x3c\x91\xf6\x4f\x7b\xe7\xfd\xa1\x7f\x2e\x90\x9e\xf7\x1f" "\xfd\xd7\x45\xd3\x3b\xcf\xe0\xba\x28\x59\x8f\xb2\x0f\x2a\x5c\x17\x01\x00" "\x70\x24\x48\xaf\xff\xd3\xd3\xd5\xf4\xfe\xff\x27\x93\xf5\xec\xb9\xf1\xf4" "\x5f\xe7\x4e\xf7\x75\xe8\x74\x5f\x47\x4f\xf7\x3c\xc3\x74\xcf\x93\x1c\xed" "\xd7\xb9\x47\xfb\x3c\xc3\x74\xcf\xb3\xbd\x51\xf3\x00\x33\x92\xe7\xcd\x03" "\xd4\x3f\xa8\xe6\x35\xce\x3c\x00\x00\x00\x9d\xf4\xde\x64\x79\x43\x93\xe5" "\xbb\xc6\xef\x21\x8e\xa2\x4f\xde\x78\xd3\x79\xab\xd6\x0e\x7f\x7a\xd5\xba" "\x2d\xc3\xc3\xa3\xb7\xac\xb9\x71\x78\xd5\xc8\xa6\x91\xad\xd5\x72\xdd\xe3" "\x57\x5e\x93\xef\x93\x0e\xd5\x57\x74\x9f\x74\x5e\xf9\x59\x0d\xca\xaf\x0a" "\xc6\xaf\x6f\xcf\x65\x81\xf2\x21\xed\xe6\x1f\xaa\xaf\x28\xff\xbc\xf2\x8d" "\xf2\x5f\x1d\x8c\x5f\xdf\x9e\xcb\x03\xe5\x43\xda\xcd\x3f\x54\x5f\x51\xfe" "\x79\xe5\x1b\xe5\xbf\x26\x18\xbf\xbe\x3d\x57\x04\xca\x87\xb4\x9b\x7f\xa8" "\xbe\xa2\xfc\xf3\xca\x37\xca\xff\x93\xc1\xf8\xf5\xed\x79\x5f\xa0\x7c\x48" "\xbb\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3\xfc\x6f\x0c\xc6\xaf\x6f\xcf\xff" "\x09\x94\x0f\x69\x37\xff\x50\x7d\x45\xf9\xe7\x95\x6f\x94\x7f\xf6\xf3\x32" "\x43\xf9\xbf\x3f\x50\x3e\xa4\xdd\xfc\x43\xf5\x15\xe5\x9f\x57\xbe\x51\xfe" "\xc3\xc1\xf8\xf5\xed\xf9\x40\xa0\x7c\x48\xbb\xf9\x87\xea\x2b\xca\x3f\xaf" "\x7c\xa3\xfc\xd7\x05\xe3\xd7\xb7\x67\x45\xa0\x7c\x48\xbb\xf9\x87\xea\x2b" "\xca\x3f\xaf\x7c\xa3\xfc\xd7\x07\xe3\xd7\xb7\xe7\xca\x40\xf9\x90\x76\xf3" "\x0f\xd5\x57\x94\x7f\x5e\xf9\x46\xf9\xdf\x14\x8c\x5f\xdf\x9e\x0f\x06\xca" "\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\x37\xca\x7f\x24\x18\xbf\xbe\x3d" "\x57\x05\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\xd7\xe5\xdf\x5b\xff" "\xfc\xcd\xc1\xf8\xf5\xed\xf9\x50\xa0\x7c\x48\xbb\xf9\x87\xea\x2b\xca\x3f" "\xaf\x7c\xa3\xfd\xff\xa9\x60\xfc\xfa\xf6\x5c\x1d\x28\x1f\xd2\x6e\xfe\xa1" "\xfa\x8a\xf2\xcf\x2b\xdf\x28\xff\x0d\xc1\xf8\xf5\xed\xb9\x26\x50\x3e\xa4" "\xdd\xfc\x43\xf5\x15\xe5\x9f\x57\xbe\x51\xfe\x1b\x83\xf1\xeb\xdb\xf3\xe1" "\x40\xf9\x90\x76\xf3\x0f\xd5\x57\x94\x7f\x5e\xf9\x46\xf9\x6f\x0a\xc6\xaf" "\x6f\xcf\x47\x02\xe5\x43\xda\xcd\x3f\x54\x5f\x51\xfe\x79\xe5\x1b\xe5\xbf" "\x39\x18\xbf\xbe\x3d\x2b\x03\xe5\x43\x32\xf9\xc7\xc9\xed\x11\x4d\xe7\x1f" "\xaa\xaf\x28\xff\xbc\xf2\x8d\xf2\xbf\x25\x18\xbf\xbe\x3d\xd7\x06\xca\x87" "\xb4\xbb\xff\x43\xf5\x15\xe5\x9f\x57\xbe\x51\xfe\xb7\x06\xe3\xd7\xb7\xe7" "\xa3\x81\xf2\x21\x79\xf9\xa7\x6f\x79\x36\x93\x7f\xa8\xbe\xa2\xfc\xf3\xca" "\x37\xca\x7f\x4b\x30\x7e\x7d\x7b\x3e\x16\x28\x1f\xd2\xee\xfe\x0f\xd5\x57" "\x94\x7f\x5e\xf9\x46\xf9\x8f\x06\xe3\xd7\xb7\xe7\xe3\x81\xf2\x21\xed\xe6" "\x1f\xaa\xaf\x28\xff\xbc\xf2\x8d\xf2\xdf\x1a\x8c\x5f\xdf\x9e\xeb\x02\xe5" "\x43\xda\xcd\x3f\x54\x5f\x51\xfe\x79\xe5\x1b\xe5\xbf\x2d\x18\xbf\xbe\x3d" "\xd7\x07\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\x37\xca\xff\xd3\xc1" "\xf8\xf5\xed\xf9\x44\xa0\x7c\x48\xbb\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3" "\xfc\xb7\x07\xe3\xd7\xb7\xe7\x86\x40\xf9\x90\x76\xf3\x0f\xd5\x57\x94\x7f" "\x5e\xf9\x46\xf9\xdf\x16\x8c\x5f\xdf\x9e\x55\x81\xf2\x21\xd5\xfc\xb7\x6e" "\x19\x1e\x5e\xb5\xed\x96\xb5\x6b\xb6\x0e\xaf\xda\xb4\x79\xed\xf0\xe8\xaa" "\xed\x5b\x46\xb6\x6e\x1d\x4e\x4e\xd4\xda\xbd\x2f\x31\x78\x5f\x59\x72\x5f" "\x62\x77\xd4\xd5\x30\xff\x05\x99\xf5\x63\x92\xcf\x07\x3a\x26\xf0\xf9\x40" "\xd9\xf2\x69\xd8\x13\xc7\x1f\x4c\xfe\x7c\xa0\x6c\xb5\x5d\x05\x9f\x93\x53" "\xb4\xbf\xb2\xf5\x17\x7d\xce\x50\x5e\xf9\xbc\xf1\x16\xda\xbf\x45\xc7\x83" "\x66\xc7\x43\x56\xdd\xef\x47\x65\x90\x8c\x6c\x1a\x1d\xde\x32\xf9\xf8\xdd" "\xdb\xb0\x3f\x6a\xc7\x44\x34\x7e\xdb\x5c\x65\x82\xa3\x27\x3e\xbe\xa9\xf2" "\xd9\x8f\xeb\x0c\x54\x53\xa8\xf9\x7c\x7a\x1a\xe6\x93\xdd\x3c\x33\xb9\x11" "\x70\x66\x7c\x5c\x53\xe5\xa3\xc0\xf7\xc1\x4d\x55\xf3\xf9\xc4\xc1\x7c\xf2" "\xda\x31\xd5\xef\xb1\x4b\xc3\x4e\xe9\x7b\xec\x32\x3f\x26\xc9\xf9\x8c\xd6" "\xba\x7c\xd7\x8d\x8e\x1f\xa4\x47\xd6\x6c\x18\xd9\x31\x3c\xb9\xfd\xb3\x8e" "\x80\xf6\xbf\x31\xfd\x58\x9a\xd4\x8e\xa2\xfd\x1f\x67\xda\x31\x2f\x69\xc9" "\xbc\xd0\xf7\xbd\x05\xda\xbd\xfd\x5b\xff\xf1\xd0\x6f\x7f\xfb\x37\xef\x8f" "\xa2\xc1\xe3\xca\x27\xb5\xd5\x7f\xf1\xd0\xa1\xd5\x07\x8e\xff\xe4\x4f\x2f" "\x9e\x79\xee\x58\xfb\x4b\x0d\xdb\x5f\x2d\x99\x7e\xaf\x72\xc1\xf7\x1f\x66" "\xcb\xa7\xf9\x74\x6d\xd8\x3c\xba\xf5\x7f\xae\xdb\xbc\x6d\x53\xfe\x3b\x68" "\xe9\xfd\xce\xa5\xea\xfa\x34\xdd\xef\x9c\xe4\x59\x6e\xf2\xfe\xe5\xd0\xfd" "\x1e\x53\xbd\x7f\x39\x9e\xf4\xe0\xc8\xd4\xec\xfd\xcb\x00\x00\x00\x6f\x15" "\xe9\xbf\xff\x4f\xaf\x57\xe7\x27\xff\x06\x75\x5e\x66\x8a\xa0\xf9\x79\xe0" "\xf6\xfe\x7d\x74\x70\x1e\x78\x6f\x73\xf3\xc0\xd9\xd9\x88\xa2\x79\xe0\x6c" "\xf9\x34\xed\x66\xe7\x81\xfb\xda\x9c\x07\xce\xd6\x1f\x9a\xa7\x2d\x35\x28" "\xdf\xe8\x7d\x97\x66\xe7\x81\x3f\x1e\x28\x3f\x55\xcd\x8f\x93\xf6\x3e\x07" "\x20\x38\x4e\x92\x9e\x2a\x1a\x27\xd9\x7f\x87\x5f\x34\x4e\xb2\xe5\xa7\x3a" "\x4e\x7a\xdb\x1c\x27\xd9\xfa\x8b\xc6\x49\x5e\xf9\x46\xef\x4f\x37\x3b\x4e" "\xae\x0d\x94\x0f\x69\x7e\x3c\xb4\xf7\xb9\x13\xc1\xf1\x30\xd8\xdc\x78\xc8" "\x7e\xaf\x66\xd1\x78\xc8\x96\x9f\xea\x78\xe8\x69\x73\x3c\x64\xeb\x2f\x1a" "\x0f\x79\xe5\x1b\xdd\xaf\xd3\xec\x78\xf8\x70\xa0\x7c\xb3\x9a\x1f\x1f\xed" "\x7d\x2e\x4c\x70\x7c\xac\x6e\x6e\x7c\x64\xbf\x2f\xa5\x68\x7c\x64\xcb\x4f" "\x75\x7c\xc4\x6d\x8e\x8f\x6c\xfd\x45\xe3\x23\xaf\x7c\xa3\xfb\x19\x9b\x1d" "\x1f\x1f\x0a\x94\x4f\x35\xbf\xff\xdb\xfb\xdc\x9e\xe0\xfe\xdf\xdd\xdc\xfe" "\xcf\x7e\x6f\x4b\xd1\xfe\xcf\x96\x9f\xea\xfe\x2f\xb5\xb9\xff\xb3\xf5\x17" "\xed\xff\xbc\xf2\x8d\xee\xe7\x6e\x76\xff\x5f\x19\x28\x9f\xaa\xdf\xff\x63" "\x3b\x7e\x7c\xbf\x0f\xaf\xda\xbe\x79\x4b\xed\x3d\xd0\x4d\xee\xff\x19\xa1" "\xfd\x5f\xf4\xbd\x2d\x21\xcd\xb7\x6f\x7a\xbf\xb7\xa6\x55\xcd\xb7\x7f\x7a" "\x3f\xf7\x69\xfa\xdb\x3f\xbd\x9f\x2b\x35\xfd\xed\x6f\xef\xba\x29\xd8\xfe" "\xbd\xed\xbd\xd3\xd5\x7c\xfb\xa7\xf7\xfb\x83\x5b\x75\xd8\xde\x8f\x4d\x3e" "\x6c\xaa\xe8\xf3\xa7\x8a\xde\xa7\xfd\x58\x60\xfb\x54\xdf\xa7\x9d\x31\xe9" "\xc1\x91\xc9\xfb\xb4\x00\x00\x00\x30\xfd\xd2\xf7\xff\xd3\xaf\xe3\x4f\x3f" "\x1f\xfe\x4b\xc9\x32\xf0\x35\xfd\x2d\x3b\xfa\xbf\xdf\x7b\x7a\xe7\xb9\x8e" "\xfe\xcf\xdf\x9f\xde\x79\x4c\xf3\x79\x0d\x2a\x3b\x02\x98\xcf\x03\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe8\x8c\x99\x5d\xf3\xc7" "\x97\x4f\x7d\x7e\xf4\x0f\x57\x2e\x78\xef\x8f\xef\x1a\x7e\x75\xe7\x15\xdf" "\xdd\x78\xe7\xee\xa1\x19\x4f\xbd\xe7\xde\x0f\x3c\xfb\xb5\x4f\x7c\xe3\xf9" "\x17\xe6\x2d\x59\xfa\xf5\x9b\x2f\x3b\x78\xeb\xec\x15\xf7\xdc\x33\xf4\xb3" "\x0b\x0e\xfe\xe4\x4f\x77\x14\x06\xee\xaf\x2c\xce\x4c\x56\x7b\xa2\x28\x7e" "\x29\x8e\xa2\x93\x7f\xba\xe4\xcb\x77\xff\xf0\xe9\x13\xc6\xb6\xc5\x51\x14" "\x95\xe3\xfe\x5d\x51\x34\x2f\x2e\xfd\x60\x5e\x9c\x89\x30\xf8\x5a\x14\x45" "\x6b\xab\xed\xac\x7f\xf2\xf1\x57\x97\xad\x1b\x5b\xee\xfa\xd2\xcc\xba\xed" "\xc7\x64\x82\x64\xf3\x8a\xfa\xca\x69\x7b\xea\xda\x19\xdd\x56\x98\x11\x47" "\xa1\x9e\x64\x9c\x7d\xe1\xfb\x9b\x4f\xfa\xcd\x39\x97\x3d\xbb\xe7\xe7\x97" "\xbe\x3a\xd8\xf3\xda\x96\x5d\x13\x45\xe2\x9e\x9a\xf1\x14\x45\x73\x57\xd7" "\xbe\xbe\x3b\x8a\xa2\xde\xe4\xff\x31\xe9\x68\x9b\x9f\xbe\x38\x59\x5e\x15" "\x45\xd1\xac\x9a\xd7\x5d\x58\xd0\xae\xd3\x9a\x6c\xff\xd9\x81\xf5\x05\xc9" "\x72\x46\xb2\xec\x2b\x88\x93\x3e\x7f\x6a\x66\xbd\xbb\xc9\x76\x74\x65\x96" "\x3d\x4d\xbe\xae\x55\xa5\x69\x8e\x9f\x4a\xf7\xdf\xec\x69\xae\x3f\x7b\x70" "\xcb\xd6\x33\x2f\x59\x7e\x2b\x59\x9e\x39\xc5\xf8\xe5\xf4\xff\x38\x2a\xc5" "\x51\x57\xb5\xba\x0d\xf1\xc4\x18\x89\x6a\xf6\x5b\x1c\xc5\xe3\xfb\x7e\x62" "\xbd\x54\x37\x16\xe2\xcc\xd8\x88\xa3\x28\xce\xac\x97\x32\xeb\xe5\xee\x4c" "\x5e\xe3\xf5\x26\x03\xad\x1c\xc7\xf5\xdb\xd3\x72\x99\xed\x03\xc9\xf6\xae" "\x64\xfb\xa9\x05\x63\xed\x9a\xc0\xf6\x77\xa4\xf9\x26\xbf\xa8\x07\x32\xf9" "\x67\x83\xf6\x4d\x7a\x50\xcd\x6b\x5c\xda\xae\x5f\x36\x68\xcb\xe1\x50\xaa" "\x39\x06\xe5\x6d\x4f\xdb\xdb\x93\xec\x8c\xbe\x64\x5b\x5f\x7c\xec\xa4\xd7" "\x1c\xca\x91\x3e\xb7\xf2\x85\xfb\x1e\x7b\x7e\xc7\x03\x8b\xfa\x03\xed\x88" "\xbf\x19\x27\xf1\xe3\x96\xe2\x3f\xb3\xf1\xa2\x7d\x8b\x77\xfc\x62\xff\xfc" "\x50\xfc\xd5\xa5\x24\x7e\xa9\xa5\xf8\xa3\xe7\xbc\xfc\xe8\x8b\x57\xff\xe8" "\x84\x60\xfc\xdd\x69\xfc\x72\x4b\xf1\x9f\x3b\x7f\xf1\x57\xbe\xb7\x73\xfb" "\x81\x60\xff\xfc\x2e\xed\x9f\xae\x96\xe2\x97\x97\x9f\x75\x70\xe9\x5d\x83" "\x2b\x83\xed\x7f\x30\x8d\xdf\xd3\x52\xfc\x87\x2e\x7d\xe4\xab\x73\xdf\xf5" "\xe4\xa3\xc1\xf6\x0f\xa6\xfd\xd3\xdb\x5a\xff\x8c\x6c\x7b\xfd\xba\x87\x8f" "\xdb\x1f\x8c\x1f\xa5\xf1\x67\xb5\x14\xff\x92\x57\x8e\x3f\x63\xf9\xe6\x47" "\xd6\x07\xe3\x3f\x91\xf6\x4f\x5f\x4b\xf1\x9f\x1e\x1d\x59\x71\xf7\x4d\x0b" "\xb7\x0f\x84\xe2\xef\x4d\xe3\xcf\x69\x29\xfe\x69\xbf\xba\xfe\xba\x3d\xfb" "\x86\x9f\x0b\xb6\x7f\x28\xed\x9f\xfe\x96\xe2\xbf\x7b\xd1\x25\x57\xad\xd8" "\xbf\xe9\xde\xd0\xb1\x33\xde\x75\xb8\xfe\xc2\x02\xbc\x39\xbd\x2d\x39\xc7" "\xfa\x62\xb2\xde\xea\x75\x66\xbb\x6a\xae\x17\xee\xef\x8f\x2b\xe7\x7c\xb3" "\x93\xff\xe7\x74\xb2\xa2\x8c\xb1\x7a\xe6\x4e\x63\x7c\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xde\x9c\x86\x2f\xbf\x7f\xe7\xe5\x7b\x57\x5d\xd1\x15\x47\x51\x1c\x28\x73" "\x28\x47\xfa\x5c\x79\xc6\xd0\xd0\x40\x0b\xf5\x96\x97\x9f\x75\x70\xe9\x5d" "\x83\x2b\x6b\xb7\xcd\x6f\x21\x0e\x00\x00\x00\x50\x2c\xbd\x0e\x2f\x55\xb7" "\xf4\x44\xf3\xa3\xed\x71\x6f\x74\x62\x6e\xf9\x74\x8e\xe0\xc4\x74\x2d\xae" "\xdf\x9e\x9d\x43\xe8\x9d\x28\xd9\x91\x38\xa5\x0e\xc5\x29\x77\x28\x4e\x57" "\x87\xe2\x74\x77\x28\xce\x8c\x0e\xc5\x99\xd9\xa1\x38\x3d\x05\x71\x7a\xa2" "\xe6\xe2\xf4\x36\x8c\x53\x6a\xba\x3d\xb3\x3a\x14\xa7\xaf\x43\x71\x66\x77" "\x28\xce\x9c\x0e\xc5\x99\x5b\x18\xa7\x7e\x06\x30\x14\xe7\x98\x0e\xb5\xa7" "\xbf\x61\x9c\xe6\xc7\xe1\xbc\x0e\xc5\x39\xb6\x43\x71\xde\xd6\xa1\x38\x6f" "\xef\x50\x9c\xe3\x3a\x14\xe7\xf8\x0e\xc5\x39\xa1\x43\x71\xb2\x73\xca\x53" "\x1d\x87\x73\x92\x92\x0b\x42\x71\xc6\x1f\x94\x0b\xe3\x74\xc5\xe5\xea\x13" "\x79\xf3\xe9\x69\x3d\x27\x67\x5e\x57\x9a\x62\x3d\x7d\x4d\xd6\x93\x9d\xb3" "\x9f\x6a\x3d\xbd\x4d\xd6\x73\x7a\x9b\xf5\xf4\x34\x59\xcf\xe2\x36\xeb\x89" "\x9b\xac\xe7\xcc\x36\xeb\x29\x15\xd4\x93\x8e\xdb\xdb\xb2\xed\x4b\xeb\x49" "\xd7\x9a\x1c\xff\xb7\x77\x28\xce\x8e\x0e\xc5\xf9\x4c\x87\xe2\x7c\xb6\x43" "\x71\xee\xe8\x50\x9c\xcf\x75\x28\xce\xce\x36\xe3\x00\x34\x2b\xbd\xfe\x9f" "\xb8\x6e\xec\x8f\x66\x76\x5d\x1c\xcd\x4a\x8e\x38\xd9\x59\x80\xf4\x7a\x77" "\x61\xe5\xd5\x93\x8e\x47\x3d\xd9\x0b\xf4\x44\x1a\xef\xa4\xcc\xf6\x19\x45" "\xf1\xb2\x17\xea\x99\x78\x0b\x3b\xdc\xbe\xd3\x32\xdb\xbb\xeb\xe2\x75\x55" "\xcf\x9b\x1a\xc4\xeb\xaf\x8d\xb7\x28\xf3\x64\x61\xbe\xd9\x09\x85\x4c\xfb" "\x96\x4c\x35\x5e\x76\x62\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa6" "\xd1\xf0\xe5\xf7\xef\xbc\x7c\xef\xaa\x2b\xa2\x38\x1a\xfb\x2f\xd7\xa1\x1c" "\xe9\x73\xe5\x19\x43\x43\x03\x2d\xd4\xbb\xf2\x85\xfb\x1e\x7b\x7e\xc7\x03" "\x8b\x6a\xb7\xcd\xec\x6a\x21\x10\x00\x00\x00\x50\x28\xbd\x0e\xef\xae\x6e" "\xe9\x89\x66\x76\x9d\xfb\xdf\xec\xda\x5f\x8c\x5c\x55\x19\x00\xf0\x73\x77" "\x66\x67\x86\x6d\xc1\xa9\x81\x3a\x90\x42\x47\x4a\x57\x8c\x48\x4b\x17\xe5" "\x4f\x6a\xb8\xe8\xc3\x2c\x31\x28\x01\x8c\x06\x4c\x77\x4b\x19\xd6\x0d\xdb" "\x5d\x64\xb7\x29\xac\xc8\x5a\x1f\x88\x0f\x1a\x48\x34\x71\xf5\xc9\xf0\x84" "\x21\x3c\xa8\x41\x51\x49\x96\x07\x8d\x41\x49\xd8\x44\xb1\x89\xa0\xbc\x48" "\x14\x0d\x90\x00\x09\x35\x31\x19\xb3\x3b\xf7\xce\xbf\xce\xec\xac\x23\xda" "\x82\xbf\xdf\xc3\xb9\xf7\x9e\xf3\x9d\xf3\xdd\x33\xdb\x34\xf9\xce\x4c\xc8" "\x45\xb9\xb6\xb8\x42\x72\x0e\x50\x48\x9e\x33\xc5\xfa\x35\x2a\x0f\xad\x5f" "\x47\xa2\x6d\x1b\xc6\x67\x93\xf8\x3d\x0b\x87\xef\xda\x33\x7f\xef\xe2\x87" "\xa7\x0f\x1f\x9c\xaa\x4e\x55\x67\xc7\xc6\xc6\xae\xbc\x7c\x6c\xdf\x15\xfb" "\x3e\xba\xe7\x8e\xe9\x99\xea\xde\x7a\x1b\xf2\x7d\xd6\x1b\x4e\xd6\x9b\xbf" "\x77\xf1\xce\x83\x33\x33\xd5\xbb\xe7\xeb\xcf\x9d\xef\x5d\x4a\xe6\x95\x9a" "\x5d\x93\x6b\xcd\xb1\xe4\xbd\xdf\xdb\x27\x4f\x94\xc4\x37\xf3\xfc\xf7\x6e" "\xfa\xff\xb5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0" "\xd4\xaa\x56\x96\x97\x2a\xab\x13\xe3\x23\x51\x08\x51\x8f\x98\x5a\x17\xe9" "\x58\x26\x17\xc7\xe5\x01\xf2\x5e\xfb\xe6\xf6\xdd\x57\xcf\x3d\x3a\xd5\xda" "\x97\xcf\x0e\xb0\x10\x00\x00\x00\xd0\x57\x5a\x87\x0f\x37\x7a\x0a\x21\x9f" "\xcd\x84\x4c\x38\x77\xfd\xe9\xc2\x66\x68\x31\x84\x66\xdd\x0f\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\xff\xa9\x56\x96\x97\x2a" "\xab\x13\xe3\x5b\xa2\x10\xa2\x1e\x31\xb5\x2e\xd2\xb1\x4c\x2e\x8e\xcb\x03" "\xe4\xfd\xcd\xfc\xf4\xf5\x0f\x7c\x61\xe7\xd1\xd6\xbe\xd2\x00\xeb\x00\x00" "\x00\x00\xfd\xa5\x75\xf8\x50\xa3\xa7\x10\x4a\x61\x57\x18\x8e\xce\x6d\x8b" "\x4b\xcf\x06\xce\xeb\x98\xdf\x19\x97\xae\x73\xfe\x26\xe3\x3a\xcf\x0e\x7a" "\xc5\xed\xda\x64\xdc\xe8\x26\xe3\x3e\xd8\x27\xee\x53\xc9\xf5\x9e\x00\x00" "\x00\x00\xef\x7c\x69\xfd\x9f\x6d\xf4\x14\x43\x3e\x7b\x66\xcf\xfa\xbf\x5f" "\x5d\x9f\xc6\xed\xec\x88\xcb\x24\xd7\x41\x7e\x2b\x00\x00\x00\x00\xfc\x67" "\xd2\xfa\x3f\xd7\xe8\x29\x85\x7c\xb6\xd4\xa8\xd7\x37\x5b\xef\x5f\xd8\x11" "\x97\xce\xef\xf7\xbd\x7d\x3a\xbf\xdf\xf7\xf6\x69\xdc\xc5\x3d\xf2\x74\x7e" "\x9f\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9c\xbe\xaa\x95\xe5\xa5\xca\xea\xc4" "\x78\x26\x0a\x21\xea\x11\x53\xeb\x22\x1d\xcb\xe4\xe2\xb8\x3c\x40\xde\x17" "\x2f\x1f\xfd\xf6\xcf\x97\x8e\x9e\x68\xed\xcb\x67\x07\x58\x08\x00\x00\x00" "\xe8\x2b\xad\xc3\x9b\xa5\x77\x21\xe4\xb3\x23\x61\x38\x6c\x59\xaf\xfb\xaf" "\x1c\xfd\xfb\x17\x17\x27\x8f\x6d\x1b\x2e\x26\xc3\xb9\x5c\xb8\xe7\xe0\xc2" "\xc2\xdd\xfb\xea\x6d\x1a\xb7\xeb\xab\xaf\x7f\xee\x77\x3f\x8d\xca\x27\xc5" "\x5d\x56\x6f\x4f\xc9\xe6\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xb7\x55\xb5\xb2\xbc\x54\x59\x9d\x18\x3f\x23\x0a\x21\xea\x11" "\x53\xeb\x22\x1d\xcb\xe4\xe2\xb8\x3c\x40\xde\x17\xa7\x8f\xfc\xf3\xd6\x47" "\xce\x79\xad\xb5\xaf\x34\xc0\x3a\x00\x00\x00\x40\x7f\x69\x1d\xde\xac\xfd" "\x0b\xa1\x14\x72\x21\x17\xb6\xaf\x3f\xb5\xd6\xfa\x6b\x86\x3a\xe6\xf7\x3a" "\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xde" "\x3d\xe6\xef\x5d\xbc\xf3\xe0\xcc\x4c\xf5\x6e\x37\x6e\xdc\xb8\x69\xdc\x9c" "\xea\xff\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xd3\x45\xb5\xb2\xbc\x54\x59\x9d\x18\x2f\x44\x21\x44\x3d\x62" "\x6a\x5d\xa4\x63\x99\x5c\x1c\x97\x07\xc8\xfb\xf0\xc7\x1f\xfd\xee\x59\x1f" "\xf9\xc5\x63\xad\x7d\xa5\x01\xd6\x01\x00\x00\x00\xfa\x4b\xeb\xf0\x66\xed" "\x5f\x08\xa5\x30\x1c\x86\xc3\x39\xeb\x4f\xdd\xce\x04\xd6\xeb\xff\xe2\xff" "\xf0\x25\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd3" "\x42\xb5\xb2\xbc\x54\x59\x9d\x18\x3f\x33\x0a\x21\xea\x11\x53\xeb\x22\x1d" "\xcb\xe4\xe2\xb8\x3c\x40\xde\x0b\xff\xfc\xf9\x5b\x57\x8e\x57\x5f\x6c\xed" "\xcb\x67\x07\x58\x08\x00\x00\x00\xe8\x2b\xad\xc3\x73\x8d\x9e\x42\xc8\x67" "\x2f\x0b\xf9\xb0\x23\x79\x9e\x69\x9f\x10\x65\x92\x6b\xf7\x73\x81\xe6\xbc" "\xbb\xda\xa6\x8d\x6c\x7a\xde\x7d\x6d\xf3\x32\x9b\x9e\xf7\xb5\x8e\x9d\x65" "\x93\xdd\xd4\xe7\x15\xd2\xf5\x8a\xf5\x6b\x63\x5e\xf9\xe4\x79\xe5\x10\x42" "\x29\x99\x57\x6a\x0e\x4c\xb6\xcd\x0b\x0f\xb5\xcd\x3a\x73\xd3\xef\xf9\xbd" "\xb6\x79\xc5\x3e\xf3\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x9c\x86\xaa\x95\xe5\xa5\xca\xea\xc4\x78\x14\x85\x10\xf5\x88" "\xa9\x75\x91\x8e\x65\x72\x71\x5c\x1e\x20\xef\x73\x87\xaf\x3a\x3e\xba\xf8" "\xc7\xd7\x5a\xfb\x4a\x03\xac\x03\x00\x00\x00\xf4\x97\xd6\xe1\xcd\xda\xbf" "\x10\x4a\xe1\xfc\x70\x56\x38\x7f\xbd\xee\x0f\xc5\xf6\xf8\x34\x6e\xff\x23" "\xaf\x5c\xfd\xd7\x9f\x9d\xf1\x8d\x10\xf6\x6e\xff\xed\x05\xd9\x9e\xeb\xff" "\xe5\xe2\xca\x2f\x3b\x9b\x10\x86\xda\x83\x86\x42\x78\x4f\x92\x2f\xea\x91" "\xef\xe8\x8f\xff\xf6\xf0\xab\xaf\xfe\xe4\x93\x21\xec\x3d\x27\xb3\xe3\xdf" "\xcd\xd7\xbe\x64\x5c\x9b\x3c\xb1\xfd\xb6\x67\xf7\xe7\xf7\x6c\xf0\xc1\x00" "\x00\x00\xc0\xbb\x48\x5a\xff\x0f\x37\x7a\x8a\x21\x9f\x9d\xed\x59\xff\xa7" "\x95\xf7\xc6\xf5\x7f\xf3\x34\x61\xbd\x00\x9f\x3b\xfb\xa6\xfb\xb6\x25\x6d" "\x52\x91\x77\xcc\x18\x2a\x26\xf9\x86\x7a\xe4\xbb\xf3\x8a\x6f\xfe\xa8\x7c" "\xc1\xf1\x3f\xac\xd5\xff\x1b\x9d\x37\x7c\xfa\xcb\xe7\x7d\x62\x5b\x98\xbb" "\x22\x9e\x4e\xdb\x7a\x4f\xe7\x0b\xc6\xb5\x99\x07\x77\x1f\x78\x79\xeb\xd3" "\x47\xd2\x5d\xd7\xf3\x67\x3a\xf2\xa7\x9f\xcb\x4b\x27\x7e\xf8\x99\xa3\xf3" "\x87\xbe\x52\xcf\x5f\x08\x85\xa4\xff\xbc\x6c\xb7\xfc\x27\xb7\x1d\xce\x88" "\x6b\x6f\xcd\x3e\xf1\xd4\xa1\xfd\x8b\x37\xb4\xe7\xcf\xf6\xd8\xff\x03\xbb" "\xdf\xff\xa7\xdf\x7f\xe7\xf0\x2b\x6b\xf9\xdf\xd8\x39\xd2\xc8\xff\x81\x0d" "\xf6\xbf\x71\xfe\xb3\x6f\xae\x3c\x7f\xec\xf1\x87\x6e\x6c\xcf\x3f\xdc\x23" "\xff\xd4\x4d\x5b\xbe\xff\x66\x79\xee\x1f\x9d\xfb\x1f\xe9\x58\x38\xf9\xe4" "\xeb\x7f\xf0\x96\xbf\x42\x87\x28\xae\xbd\x31\xfd\xcc\x35\x5b\x57\x76\x1d" "\x68\xcf\x1f\x42\x98\x6c\x0d\x4c\x3f\xff\xa7\x9e\xf8\x56\x79\xe5\xd7\xdb" "\x0e\xa7\xf9\xd3\xdf\x8a\x5c\xbc\xab\x23\x7f\xcb\x3f\xb5\xd6\xb6\xe3\xcc" "\x29\x8a\x6b\x2b\x3b\x2e\x99\x1a\x7b\x72\x61\x4b\x7b\xfe\xa8\x23\x7f\xba" "\xff\xe3\xf7\xff\xe0\xad\x2f\x1d\x7f\xee\xba\xce\xfd\xdf\xde\xb9\xff\x9e" "\xf9\x3b\xf7\x7f\xdd\x68\xe6\x96\x17\x76\x8e\x0d\xf2\xe3\x19\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x80\x77\x80\x6a\x65\x79\xa9\xb2\x3a\x31\x1e" "\x32\x21\x44\x3d\x62\x6a\x5d\xa4\x63\x99\x5c\x1c\x97\x07\xc8\xfb\xb1\x8b" "\xae\xbd\xe1\xfa\xd7\x66\xbf\xde\xda\x97\xcf\x0e\xb0\x10\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xb6\xa9\x56" "\x96\x97\x2a\xab\x13\xe3\x43\x51\x08\x51\x8f\x98\x5a\x17\xe9\x58\x26\x17" "\xc7\xe5\x01\xf2\xce\x5f\xfa\xfa\x63\x2f\xdf\xf8\xab\xf7\xb5\xf6\x95\x06" "\x58\x07\x00\x00\x00\xe8\x2f\xad\xc3\x9b\xb5\x7f\x21\x94\x42\x2e\xe4\xc2" "\xc8\x7a\xdd\x3f\x79\x62\xfb\x6d\xcf\xee\xcf\xef\x09\xc5\xfa\x68\x94\x5c" "\xb3\x33\x73\xf3\x0b\x1f\xba\x63\xee\xc8\xec\xed\xa7\xe8\xcd\x01\x00\x00" "\x80\xcd\x4a\xeb\xff\x6c\xa3\xa7\x18\xf2\xd9\x8b\xc2\x70\x52\xff\xaf\xec" "\xb8\x64\x6a\xec\xc9\x85\x2d\x69\xfd\x1f\x42\x98\x5c\x6b\x0a\x77\x4c\xcf" "\x54\xc7\x42\xe3\x9c\xe0\xba\xd1\xcc\x2d\x2f\xec\x1c\x2b\x37\xce\x09\x5a" "\xe3\x2e\x3d\x34\x37\x93\x1c\x13\xa4\xeb\xde\x7f\xd5\xd6\x97\xe6\x3f\xbb" "\x7a\x7d\xd7\x75\xf7\x35\xe3\xde\x98\x7e\xe6\x9a\xad\x2b\xbb\x0e\xa4\x71" "\xc3\xc9\x75\x3d\xee\xb2\x66\xdc\xcc\x83\xbb\x0f\xbc\xbc\xf5\xe9\x23\x69" "\xdc\x50\x7a\x4e\xb1\x16\xb7\xb7\x19\xf7\xd6\xec\x13\x4f\x1d\xda\xbf\x78" "\x43\x3a\x9e\x69\x5d\xaf\x25\xee\xec\x9b\x2b\xcf\x1f\x7b\xfc\xa1\x1b\x1b" "\xeb\x24\xd7\x91\x24\x2f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\xbf\xd8\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x7e\x1d\x85\x58\x55\xc4\x71\x00\x9e" "\xb9\x77\x57\xaf\xde\x75\xdb\x2d\xca\x4d\x8a\x54\x4c\x34\x48\x56\x2a\x2a" "\x21\x5a\x85\xa4\x87\x36\xa4\xc0\x17\x0b\x7c\xc8\xca\xc8\xa4\x96\x30\x84" "\x70\x13\xb2\x30\x09\x9f\x2a\x82\x22\xa2\x20\x10\x29\x08\x7a\x28\xc2\x82" "\x32\x48\xa2\x20\x42\x7b\x08\x43\x7b\xa8\x87\xd8\x88\x36\xc4\x8d\x8a\xdd" "\x9d\xd9\xbd\x7b\xf4\xb4\xdb\xa9\x55\x90\xef\x83\xc3\x38\x73\xee\xf9\xcd" "\xff\xcc\x19\xcf\xde\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xf9\x35" "\xb7\xad\x67\xac\x3d\xfc\xf4\xc0\xef\x77\x2e\xba\xed\xf3\xdd\x5b\x86\x77" "\xdd\xfe\xfe\xb6\xa7\xf6\xf7\xcd\x39\x7c\xeb\xbe\x3b\x8e\xbd\x72\xef\x9b" "\x27\x4e\x76\xaf\x58\xfd\xc6\x43\xeb\x47\x1e\xed\xe8\xdf\xbb\xb7\xef\xeb" "\x1b\x47\xbe\xf8\xf3\xc9\x69\x83\x9f\x18\x6f\x56\xa6\x6e\x23\x84\xf8\x73" "\x0c\xe1\xca\x2f\x57\xbc\xb0\xe7\xd3\x23\x0b\x47\xc7\x62\x08\xa1\x1e\xbb" "\x06\x43\xe8\x8e\xb5\x8f\xbb\x63\x21\xa1\xf7\x74\x08\xe1\xbe\x89\x3a\xa7" "\x9e\x7c\x77\xf8\xba\xfb\x47\xdb\xc1\xe7\xe6\x4e\x19\xbf\xa8\x10\x52\xbc" "\xaf\xd0\xac\xe7\x7a\xc6\x75\x4d\xad\x97\x0b\x4b\x23\xed\xb3\x67\x3e\xdc" "\x7e\xc5\x8f\xab\xd6\x1f\x3b\xf4\xed\xba\xe1\xde\xc6\xe9\xc7\x06\x27\x3f" "\x12\x1b\x2d\xfb\x29\x84\xce\xcd\xad\xd7\xb7\x87\x10\xe6\xa5\x63\x54\xde" "\x6d\x3d\xf9\xe2\xd4\x6e\x08\x21\xcc\x6f\xb9\xee\xa6\x69\xea\x5a\x3a\xc3" "\xfa\xaf\x2d\xe9\x2f\x4a\xed\x9c\xd4\x36\xa7\xc9\xc9\xe7\x97\x14\xfa\xed" "\x33\xac\xa3\xad\xd0\x36\x66\x78\x5d\x55\xb5\x59\xce\xcf\xf2\xf3\xeb\x98" "\xe5\xf9\x8b\x2f\xb7\xe2\x3c\xdd\xa9\x7d\x2f\xb5\x2b\xff\x65\x7e\x3d\x1f" "\x31\xd4\x62\x68\x9b\x98\xee\xe1\x38\xb9\x47\x42\xcb\x73\x8b\x21\x8e\x3d" "\xfb\xc9\x7e\x6d\xca\x5e\x88\x85\xbd\x11\x43\x88\x85\x7e\xad\xd0\xaf\xb7" "\x17\xee\x6b\x6c\xde\xb4\xd1\xea\x31\x4e\x1d\xcf\x9f\x2b\x8c\x2f\x4e\xe3" "\x6d\x69\x7c\xc9\x34\x7b\xed\xee\x92\xf1\xcb\xf3\xfd\xa6\xff\xa8\xa7\x0a" "\xf7\x5f\x0c\x6d\x9e\xf1\x8f\x89\xfb\x1a\x93\xeb\xfa\xfe\x1f\x6a\x39\x17" "\x6a\x2d\xef\xa0\xb3\x8d\xe7\x7a\x1b\xe9\x61\x34\xd3\x58\x33\x5e\x7c\xc6" "\x35\x7f\x9d\x45\x3e\xb7\xf1\xe4\xf3\x6f\x9f\xd8\xf9\xea\xb2\xae\x92\x3a" "\xe2\x3b\x31\xe5\xc7\x4a\xf9\xdf\x6c\xbb\xf9\xe8\xf2\x9d\xdf\x0d\xf5\x94" "\xe5\x6f\xae\xa5\xfc\x5a\xa5\xfc\x81\x55\xbf\x1e\xfc\xe9\xae\xcf\x16\x96" "\xe6\xef\xcf\xf9\xf5\x4a\xf9\xc7\xaf\x5f\xfe\xe2\x07\xbb\x76\x9c\x2a\x5d" "\x9f\x5f\xf2\xfa\xb4\x55\xca\xaf\xaf\xb9\x66\x64\xf5\xee\xde\x8d\xa5\xf5" "\xbf\x96\xf3\x1b\x95\xf2\x5f\x5f\x77\xe0\xe5\xce\x1b\x3e\x39\x58\x5a\x7f" "\x6f\x5e\x9f\x79\xd5\xd6\x67\xeb\xe3\x7f\x6c\x7a\xeb\xd2\xa1\xd2\xfc\x90" "\xf3\xe7\x57\xca\x5f\xfb\xdb\x65\x57\xaf\xd9\x7e\xe0\x81\xd2\xfc\x8f\xf2" "\xfa\x34\x2b\xe5\x1f\x19\xd8\xda\xbf\xe7\xc1\xab\x76\x2c\x2e\xcb\xff\x2a" "\xe7\x2f\xa8\x94\xbf\xf4\x87\x7b\x36\x1d\x3a\xba\xe5\x78\x69\xfd\x7d\x79" "\x7d\xba\x2a\xe5\xdf\xb2\x6c\xed\x86\xfe\xa1\x47\xf6\x95\xbd\x3b\xe3\xe0" "\xb9\xfa\x0b\x0b\x70\x61\xba\x24\x7d\xc7\x7a\x36\xf5\xab\xfe\xce\xfc\xaf" "\x5a\x7e\x2f\xbc\xd4\x15\xc7\xbf\xf3\x75\xa4\x63\xc1\xff\x39\x51\xc1\xe8" "\x3c\x9d\xb3\x98\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0" "\x37\x3b\x70\x40\x02\x00\x00\x00\x20\xe8\xff\xeb\x76\x04\x0a\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\x53\x01\x00\x00\xff\xff\x9a\xbc\x57\x67", 23343); syz_mount_image(/*fs=*/0x20005b00, /*dir=*/0x20000080, /*flags=MS_RDONLY|MS_NOEXEC|MS_NOATIME|0x100*/ 0x509, /*opts=*/0x20000000, /*chdir=*/1, /*size=*/0x5b2f, /*img=*/0x2000b6c0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }