// https://syzkaller.appspot.com/bug?id=fa933b23fcbf30f6980b61388b3182fa4333113f // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; //% 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; } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*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=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x301c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x11 (1 bytes) // size: len = 0x6077 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6077) // } // ] // returns fd_dir memcpy((void*)0x200000000400, "jfs\000", 4); memcpy((void*)0x200000000000, "./file0\000", 8); memcpy( (void*)0x200000006480, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\x19\x07\xf0\x67\x5f\xbc\x76\x5c\x9a\x46" "\x15\xaa\x42\xc4\x45\x9a\x42\x69\x29\xcd\x7b\x02\xe5\xad\x29\x17\x5c\x00" "\x12\x48\x28\xd7\x24\x72\xdd\x2a\x90\x02\x4a\x02\xa2\x55\x44\x5c\xe5\x02" "\x71\xc1\xcb\x47\x80\x9b\xde\x70\xd1\x2f\x52\xbe\x02\xe2\x03\x10\x29\xe1" "\xaa\x12\x94\x41\xe3\x3d\x27\x19\x4f\xd6\x59\xa7\xb1\x77\x76\x7d\x7e\x3f" "\xc9\x99\x79\xf6\xcc\x78\xcf\xe4\xef\xf1\xec\x7a\x66\xf6\x04\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xdf\xfb\xee\x8f\x4f\xf5\x22" "\xe2\xd2\xaf\xd3\x03\x87\x22\x3e\x13\x83\x88\x7e\xc4\x81\xba\x3e\x1a\xf5" "\xcc\x85\xbc\xfc\x30\x22\x0e\xc7\x66\x73\x3c\x17\x11\x83\xe5\x88\x7a\xfd" "\xcd\x7f\x9e\x89\x38\x1b\x11\x1f\x1d\x8c\xb8\x7b\xef\xe6\x5a\xfd\xf0\xe9" "\x1d\xf6\xe3\xdc\xc9\x1b\xd7\x3e\xf9\xfe\x77\xfe\xf1\xbb\x3f\xdd\x3e\xfc" "\xd3\x37\x7f\xf2\x41\xbb\xfd\x47\x9f\x3d\xf3\xe1\xef\x6f\x45\x1c\xfa\xe1" "\x6b\x1f\x7e\x72\x6b\x77\xb6\x1d\x00\x00\x00\x4a\x51\x55\x55\xd5\x4b\x6f" "\xf3\x8f\xa4\xf7\xf7\xfd\xae\x3b\x05\x00\xcc\x44\x3e\xfe\x57\x49\x7e\x5c" "\xad\x56\xab\xd5\xbb\x5a\xff\xb1\x3f\x5f\xfd\xd9\x79\xbd\x12\xf3\xd5\x1f" "\xf5\x13\xd5\x4d\xd5\x64\xb7\x9a\x45\x44\x6c\x34\xd7\xa9\x5f\x33\x38\x1d" "\x0f\x00\x0b\x66\x23\x3e\xee\xba\x0b\x74\x48\xfe\x45\x1b\x46\xc4\x53\x5d" "\x77\x02\x98\x6b\xbd\xae\x3b\xc0\x9e\xb8\x7b\xef\xe6\x5a\x2f\xe5\xdb\x6b" "\x1e\x0f\x8e\x8e\xdb\xf3\xdf\x29\xb7\xe4\xbf\xd1\xbb\x7f\x7f\xc7\x76\xd3" "\x69\xda\xd7\x98\xcc\xea\xe7\xeb\x76\x0c\xe2\xd9\x6d\xfa\x73\x60\x46\x7d" "\x98\x27\x39\xff\x7e\x3b\xff\x4b\xe3\xf6\x51\x5a\x6e\xaf\xf3\x9f\x95\xed" "\xf2\x1f\x8d\x6f\x7d\x2a\x4e\xce\x7f\xd0\xce\xbf\x65\x4b\xfe\x7f\x8e\x88" "\x85\xcd\xbf\x3f\x31\xff\x52\xe5\xfc\x87\x8f\x93\xff\xc6\x60\x81\xf7\x7f" "\xf9\x03\x00\x00\x00\x00\xb0\xff\xe5\xbf\xff\x1f\xea\xf8\xfc\xef\xf2\x93" "\x6f\xca\x8e\x3c\xea\xfc\xef\xd1\x19\xf5\x01\x00\x00\x00\x00\x00\x00\x00" "\x76\xdb\x93\x8e\xff\x77\x9f\xf1\xff\x00\x00\x00\x60\x6e\xd5\xef\xd5\x6b" "\x7f\x39\xf8\xe0\xb1\xe6\xb5\xfe\xed\xf9\x8b\xbd\x88\xa7\x5b\xcb\x03\x85" "\x49\x37\xcb\xac\x76\xdd\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28" "\xc9\x70\x7c\x0d\xef\xc5\x5e\xc4\x52\x44\x3c\xbd\xba\x5a\x55\x55\xfd\xd5" "\xd4\xae\x1f\xd7\x93\xae\xbf\xe8\x4a\xdf\x7e\x28\x59\xd7\xbf\xe4\x01\x00" "\x60\xec\xa3\x83\xad\x7b\xf9\x7b\x11\x2b\x11\x71\x31\x7d\xd6\xdf\xd2\xea" "\x6a\x1e\xaa\xaf\x3a\xb0\x9c\x5f\xcf\x8e\x96\x57\xaa\x03\x8d\xf7\xb5\x79" "\x5a\x3f\xb6\x3c\xda\xc1\x0b\xe2\xe1\xa8\xaa\xbf\xd9\x4a\x63\xbd\xa6\x69" "\xef\x97\xa7\xb5\xb7\xbf\x5f\xfd\x5c\xa3\x6a\xb0\x83\x8e\xcd\x46\x47\x61" "\x03\x40\x32\x3e\x1a\xdd\x75\x44\xda\x67\xaa\xea\x99\xe8\xfa\x55\x0e\x8b" "\xc1\xfe\xbf\xff\xd8\xff\xd9\x89\xae\x7f\x4e\x01\x00\x00\x80\xbd\x57\x55" "\x55\xd5\x4b\x1f\xe7\x7d\x24\x9d\xf3\xef\x77\xdd\x29\x00\x60\x16\x56\xf2" "\xf1\xbf\x7d\x5e\x40\xad\x56\xab\xd5\x6a\xf5\xfe\xab\x9b\xaa\xc9\x6e\x35" "\x8b\x88\xd8\x68\xae\x53\xbf\x66\x30\x1c\x3f\x00\x2c\x98\x8d\xf8\xb8\xeb" "\x2e\xd0\x21\xf9\x17\x6d\x18\x11\x87\xbb\xee\x04\x30\xd7\x7a\x5d\x77\x80" "\x3d\x71\xf7\xde\xcd\xb5\x5e\xca\xb7\xd7\x3c\x1e\xa4\xf1\xdd\xf3\xb5\x20" "\x5b\xf2\xdf\xe8\x6d\xae\x97\xd7\x9f\x34\x9d\xa6\x7d\x8d\xc9\xac\x7e\xbe" "\x6e\xc7\x20\x9e\xdd\xa6\x3f\xcf\xcd\xa8\x0f\xf3\x24\xe7\xdf\x6f\xe7\x7f" "\x69\xdc\x3e\x4a\xcb\xed\x75\xfe\xb3\xb2\x5d\xfe\xf5\x76\x1e\xea\xa0\x3f" "\x5d\xcb\xf9\x0f\xda\xf9\xb7\xec\x9f\xfc\xfb\x13\xf3\x2f\x55\xce\x7f\xf8" "\x58\xf9\x0f\x9e\x38\xff\xae\xf6\x35\xf9\x03\x00\x00\x00\x00\x50\x82\xfc" "\xf7\xff\x43\xce\xff\xe6\x4d\x06\x00\x00\x00\x00\x00\x00\x80\x85\x73\xf7" "\xde\xcd\xb5\x7c\x2f\x5e\x3e\xff\xff\xf9\x09\xcb\xf5\x9a\x73\xee\xff\xdc" "\x37\x72\xfe\xbd\x1d\xe7\xef\xfe\xdf\xfd\x24\xe7\xdf\x6f\xe7\xdf\xba\x20" "\x67\xd0\x98\xbf\xf3\xc6\x83\xfc\xff\x7d\xef\xe6\xda\x07\x37\xfe\xf5\xb9" "\x3c\x9d\xfb\xfc\x97\x06\xa3\xfa\xb9\x97\x7a\xfd\xc1\x30\x5d\xf3\x53\x2d" "\xbd\x15\x57\xe2\x6a\xac\xc7\xc9\x87\x96\x1f\x6e\x69\x3f\xf5\x50\xfb\xd2" "\x96\xf6\xd3\x53\xda\xcf\x3c\xd4\x3e\xaa\xdb\x0f\xe4\xf6\xe3\xb1\x16\xbf" "\x88\xab\xf1\xe6\xfd\xf6\xe5\x29\x17\x46\xad\x4c\x69\xaf\xa6\xb4\xe7\xfc" "\x07\xf6\xff\x22\xe5\xfc\x87\x8d\xaf\x3a\xff\xd5\xd4\xde\x6b\x4d\x6b\x77" "\xde\xef\x3f\xb4\xdf\x37\xa7\x93\x9e\xe7\xc2\xdf\xfe\xfb\xe2\xc3\x7b\xd7" "\xec\xdd\x8e\xc1\xfd\x6d\x6b\xaa\xb7\xef\x58\x07\xfd\xd9\xfc\x3f\x79\x6a" "\x14\xbf\xba\xbe\x7e\xed\xf8\x6f\x2e\xdf\xb8\x71\xed\x54\xa4\xc9\x96\x47" "\x4f\x47\x9a\xec\xb2\x9c\xff\x52\xfa\xca\xf9\xbf\xf4\xc2\xb8\x3d\xff\xde" "\x6f\xee\xaf\x77\xde\x1f\x3d\x76\xfe\xf3\xe2\x76\x0c\xb7\xcd\xff\x85\xc6" "\x7c\xbd\xbd\x2f\xcf\xb8\x6f\x5d\xc8\xf9\x8f\xd2\x57\xce\x3f\x1f\x81\x26" "\xef\xff\x8b\x9c\xff\xf6\xfb\xff\x2b\x1d\xf4\x07\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x1e\xa5\xaa\xaa\xcd\x5b\x44\x2f\x44\xc4\xf9\x74" "\xff\x4f\x57\xf7\x66\x02\x00\x33\xf5\x87\x1f\xa4\x99\x2a\x09\xf5\xb8\xee" "\xc5\x7c\xf5\x47\xad\x56\xab\xd5\xea\x5d\xa8\x9b\xaa\xc9\x5e\x6f\x16\xb1" "\xb2\x75\x9d\xf3\x11\xf1\xdb\x49\xdf\x0c\x00\x98\x67\xff\x8b\x88\x7f\x76" "\xdd\x09\x3a\x23\xff\x82\xe5\xcf\xfb\xab\xa7\x5f\xe8\xba\x33\xc0\x4c\x5d" "\x7f\xf7\xbd\x9f\x5d\xbe\x7a\x75\xfd\xda\xf5\xae\x7b\x02\x00\x00\x00\x00" "\x00\x00\x00\x7c\x5a\x79\xfc\xcf\xa3\x8d\xf1\x9f\x37\xaf\x03\x6a\x8d\x1b" "\xbd\x65\xfc\xd7\x37\xe2\xe8\xc2\x8e\xff\xd9\x1f\x0d\x36\xc7\x3a\x4f\x1b" "\xf4\x7c\x3c\x7a\xfc\xef\x63\xf1\xe8\xf1\xbf\x87\x53\x9e\x6f\x69\x4a\xfb" "\x68\x4a\xfb\xf2\x94\xf6\x95\x29\xed\x13\x6f\xf4\x68\xc8\xf9\x3f\x9f\x32" "\xce\xf9\x1f\x49\x1b\x56\xd2\xf8\xaf\x2f\x75\xd0\x9f\xae\xe5\xfc\x8f\xa5" "\xb1\x9e\x73\xfe\x5f\x6a\x2d\xd7\xcc\xbf\xfa\xeb\x22\xe7\xdf\xdf\x92\xff" "\x89\x1b\xef\xfc\xf2\xc4\xf5\x77\xdf\x7b\xf5\xca\x3b\x97\xdf\x5e\x7f\x7b" "\xfd\xe7\xa7\x4e\x9e\x3f\x7b\xe6\xdc\xd9\x33\xe7\xce\x9d\x78\xeb\xca\xd5" "\xf5\x93\xe3\x7f\x3b\xec\xf1\xde\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c" "\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\xc5\x54\xcb" "\xbf\x2c\x39\xff\xfc\x7a\x4f\xfe\x65\xc9\xf9\xe7\xf7\x3e\xf2\x2f\x4b\xce" "\xff\xe5\x54\xcb\xbf\x2c\x39\xff\x2f\xa7\x5a\xfe\x65\xc9\xf9\xbf\x92\x6a" "\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39\xff\x57\x53\x2d\xff\xb2\xe4" "\xfc\x8f\xa7\x5a\xfe\x65\xc9\xf9\x9f\x48\xb5\xfc\xcb\x92\xf3\xcf\x67\xb8" "\xe4\x5f\x96\x9c\x7f\xbe\xb2\x41\xfe\x65\xc9\xf9\x9f\x4e\xb5\xfc\xcb\x92" "\xf3\x3f\x93\x6a\xf9\x97\x25\xe7\x7f\x36\xd5\xf2\x2f\x4b\xce\xff\x5c\xaa" "\xe5\x5f\x96\x9c\xff\xf9\x54\xcb\xbf\x2c\x39\xff\xaf\xa6\x5a\xfe\x65\xc9" "\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c\x39\xff\xaf\xa7" "\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x9b\xa9\x96\x7f\x59" "\x72\xfe\xdf\x4a\xb5\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96\x9c\xff\xeb" "\xa9\x96\x7f\x59\x1e\x7c\xfe\xbf\x99\x19\xcf\xfc\xe7\xef\x11\x73\xd0\x0d" "\x33\x66\x26\xcd\x74\xfd\x9b\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9b\xc5\xe5\xc4\x5d\x6f\x23\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x7f\x76\xe0\x40\x00\x00\x00" "\x00\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x03" "\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x85\xbd\xbb\x8b\x91\xeb\xac\xef\x07\x7e\xf6\xd5\xeb\x24\x10\xff" "\x49\x08\x21\x18\xb2\x76\x9c\x60\xc8\xc6\xbb\xeb\xb7\xc4\x04\x83\x79\xfd" "\xa7\xa1\xa5\x69\x20\xb4\xb4\x50\xc7\xd8\xeb\x17\xf0\x5b\xbd\x6b\x48\x10" "\x6a\x96\x86\xb6\x20\x90\x1a\xb5\xbd\xa0\x17\xa5\x80\x28\x42\x6a\xab\x44" "\x08\xa9\x54\xa2\x28\x52\x91\xda\xbb\x72\x05\xca\x0d\x6a\x25\xa4\x5a\x6a" "\xa8\x4c\x04\x95\x68\x81\xad\xce\x9c\xe7\x79\x76\x66\x76\x76\x66\x77\xbd" "\x9b\x3d\x73\xce\xe7\x13\x25\xbf\x78\xe7\xcc\xcc\x33\x67\xce\xcc\xee\x77" "\xad\xef\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x9a\xed\x78\xdb\xcc\x1f\x0f\x64\x59\x96\xff\xdb" "\xf8\xcf\xb6\x2c\xbb\x21\xff\xff\xad\xd9\x91\xfc\x8f\xf3\x07\x37\x7b\x85" "\x00\x00\x00\xc0\xb5\xfa\x45\xe3\xbf\x7f\x7b\x63\xfa\xc2\x91\x15\x5c\xa9" "\x69\x9b\x7f\x7e\xcd\xbf\x7e\x63\x61\x61\x61\x21\xfb\xd0\x0b\x57\x7e\xf9" "\x67\x0b\x0b\xe9\x82\xf1\x2c\x1b\xda\x92\x65\x8d\xcb\xa2\x7f\xf9\xd9\x4f" "\x17\x9a\xb7\x09\x9e\xcc\xc6\x06\x06\x9b\xfe\x3c\xd8\xe3\xee\x87\x7a\x5c" "\x3e\xdc\xe3\xf2\x91\x1e\x97\x8f\xf6\xb8\x7c\x4b\x8f\xcb\xc7\x7a\x5c\xbe" "\x64\x07\x2c\xb1\xb5\xf8\x7d\x4c\xe3\xc6\x76\x35\xfe\x77\x5b\xb1\x4b\xb3" "\x9b\xb3\x91\xc6\x65\xbb\x3a\x5c\xeb\xc9\x81\x2d\x83\x83\xf1\x77\x39\x0d" "\x03\x8d\xeb\x2c\x8c\x9c\xcc\xce\x64\x67\xb3\x99\x6c\x6a\xc9\x75\x06\x1a" "\xff\x64\xd9\xb7\x76\xe4\xf7\xf5\x40\x16\xef\x6b\xb0\xe9\xbe\xb6\x67\x59" "\x76\xf5\xc7\x9f\x38\x1e\xd7\x30\x10\xf6\xf1\xae\xac\xe5\xce\x1a\x9a\x9f" "\xbb\x1f\xbd\x25\x1b\x7f\xe1\xc7\x9f\x38\xfe\xd5\xb9\xe7\x5f\xd9\x69\xf6" "\xdc\x0d\x4b\x56\x9a\x65\xbb\x77\xe6\xeb\xfc\x54\x96\x2d\xfe\xba\x2a\x1b" "\xc8\xb6\xa4\x7d\x12\xd7\x39\xd8\xb4\xce\xed\x1d\xd6\x39\xd4\xb2\xce\x81" "\xc6\xf5\xf2\xff\x6f\x5f\xe7\xd5\x15\xae\x33\x3e\xee\xb1\xb0\xce\xef\x76" "\x59\xe7\xf6\xf0\xb5\xc7\xee\xc8\xb2\x6c\x3e\x5b\x76\x9b\x76\x4f\x66\x83" "\xd9\x75\x6d\xf7\x9a\xf6\xf7\x58\x71\x44\xe4\xb7\x91\x3f\x95\x2f\xcb\x86" "\x57\x75\x9c\xec\x58\xc1\x71\x92\x5f\xe7\x87\x77\xb4\x1e\x27\xed\xc7\x64" "\xdc\xff\x3b\xc2\x3e\x19\x5e\x66\x0d\xcd\x4f\xc7\x8f\x3e\x39\xba\x64\xbf" "\xaf\xf5\x38\xc9\x1f\x75\x19\x8e\xd5\xfc\xb6\x1f\xca\xef\x74\x6c\xac\xf9" "\x57\xab\x2d\xc7\x6a\xbe\xcd\x27\xee\x5c\xfe\x18\xe8\xf8\xdc\x75\x38\x06" "\xd2\xb1\xdc\x74\x0c\xec\xec\x75\x0c\x0c\x8e\x0e\x35\x8e\x81\xc1\xc5\x35" "\xef\x6c\x39\x06\xa6\x97\x5c\x67\x30\x1b\x68\xdc\xd7\x95\x3b\xbb\x1f\x03" "\x93\x73\xe7\x2e\x4e\xce\x3e\xfe\xf1\x7b\xce\x9c\x3b\x76\x6a\xe6\xd4\xcc" "\xf9\xe9\xa9\x83\xfb\xf7\x1d\xd8\xbf\xef\xc0\x81\xc9\x93\x67\xce\xce\x4c" "\x15\xff\x5d\xdd\x2e\xed\x23\xd7\x65\x83\xe9\x18\xdc\x19\xde\x6b\xe2\x31" "\xf8\xda\xb6\x6d\x9b\x0f\xc9\x85\x2f\xad\xdf\xeb\x60\xac\x24\xaf\x83\xfc" "\xb1\xbf\xf7\xae\x7c\x41\x37\x0c\x66\xcb\x1c\xe3\xf9\x36\x9f\xda\x7d\xed" "\xaf\x83\xf4\x7d\xbf\xe9\x75\x30\xdc\xf4\x3a\xe8\xf8\x9e\xda\xe1\x75\x30" "\xbc\x82\xd7\x41\xbe\xcd\xd5\xdd\x2b\xfb\x9e\x39\xdc\xf4\x6f\xa7\x35\x6c" "\xd4\x7b\xe1\xb6\xa6\x63\x60\x33\xbf\x1f\xe6\xf7\xf9\x81\xd7\x2d\xff\x5e" "\xb8\x3d\xac\xeb\xd3\xaf\x5f\xed\xf7\xc3\xa1\x25\xc7\x40\x7c\x58\x03\xe1" "\xb5\x97\x7f\x25\xfd\xbc\x37\x76\x5f\xd8\x2f\x4b\x8f\x8b\xdb\xf2\x0b\xae" "\x1f\x6d\xfc\x6c\xb7\xe7\xb1\x63\x73\x73\x97\xa6\xb3\x30\x5e\x14\x37\x35" "\x3d\x57\xed\xc7\xcb\x75\x4d\x8f\x29\x5b\x72\xbc\x0c\xae\xfa\x78\x39\xf2" "\x37\x3f\xbf\xeb\xb6\x0e\x5f\xdf\x16\xf6\xd5\xd8\xdd\xdd\x9f\xab\x7c\x9b" "\xfd\x13\xdd\x9f\xab\xc6\xbb\xfb\xf5\xa3\xd9\xe5\xd9\x99\x4b\x61\x7f\x8e" "\x66\xc5\xfe\x6c\xf9\xea\xde\x2c\x8c\x75\xf6\x62\xef\xcf\x4e\xdf\xcd\xf2" "\xfd\x99\xb2\x44\x97\xfd\x99\x6f\xf3\xa9\x7b\xae\xfd\x67\xc1\x94\x4b\x9a" "\xde\xff\x46\x7a\xbd\xff\x0d\x8d\x0c\x17\xef\x7f\x43\x69\x6f\x8c\xb4\xbc" "\xff\x2d\x7d\x6a\x86\x1a\x2b\xcb\xb2\xab\xf7\xac\xec\xfd\x6f\x24\xfc\xfb" "\x62\xbf\xff\xdd\x5c\x92\xf7\xbf\x7c\x5f\x7d\x60\x4f\xf7\x63\x20\xdf\xe6" "\xd3\x93\xab\x3d\x06\x86\xbb\xbe\xff\xdd\x11\xe6\x40\x58\xcf\xeb\x42\x62" "\x18\x6b\xca\xfd\xbf\x6c\x5c\x3e\x5f\x1c\xa6\x4d\xcf\x65\xcf\xe3\x66\x78" "\x78\x24\x1c\x37\xc3\xf1\x1e\x5b\x8f\x9b\x7d\x4b\xae\x93\xdf\x5a\x7e\xdf" "\xbb\xa7\xd6\x76\xdc\xec\xbe\xa3\xf5\xb9\x6a\xf9\xb9\x65\xe5\xc7\x4d\xaf" "\x5f\x1f\x94\xe6\xb8\xc9\xf7\xd5\x9f\x4f\x75\x3f\x6e\xf2\x6d\x9e\x9d\xbe" "\xf6\xf7\x8e\xad\xf1\x7f\x9b\xde\x3b\x46\x7b\x1d\x03\x23\x43\xa3\xf9\x7a" "\x47\xd2\x41\x50\xbc\xdf\x2d\x6c\x8d\xc7\xc0\x9e\xec\x78\x76\x21\x3b\x9b" "\x9d\x48\xd7\xc9\x9f\xe5\xfc\xbe\x26\xf6\xae\xec\x18\x18\x0d\xff\xbe\xd8" "\xef\x1d\xb7\x96\xe4\x18\xc8\xf7\xd5\xe7\xf7\x76\x3f\x06\xf2\x6d\xbe\xb3" "\x6f\x7d\x7f\x76\xda\x1d\xbe\x92\xb6\x69\xfa\xd9\xa9\xfd\xf7\x0b\xcb\x65" "\xfe\xdb\x86\x17\x6f\xaf\x7d\xb7\xad\x77\xe6\xcf\xd7\xf9\xf6\xef\xbd\x3b" "\x7d\xad\x53\x86\xc8\xb7\x79\x7e\xff\x6a\x73\x46\xf7\xfd\x74\x77\xf8\xca" "\xf5\x1d\xf6\x53\xfb\xeb\x67\xb9\x63\xfa\x44\xf6\xe2\xec\xa7\x5b\xc3\x3a" "\xcf\x1e\xe8\xfe\xbb\xa9\x7c\x9b\x9b\x0f\xae\xf0\x78\x3a\x92\x65\xd9\x73" "\xd3\xcf\x35\x7e\xdf\x15\x7e\xbf\xfb\xf5\xcb\xdf\xfb\x46\xcb\xef\x7d\x3b" "\xfd\x4e\xf9\xb9\xe9\xe7\x1e\x9c\x7c\xf8\xfb\xab\x59\x3f\x00\x00\x6b\xf7" "\xcb\xc6\x7f\xe7\x47\x8b\x9f\x35\x9b\xfe\xc6\x7a\x25\x7f\xff\x0f\x00\x00" "\x00\xf4\x85\x98\xfb\x07\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x87" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x87\xc3\x4c\x6a\x92\xff\x4f" "\xdf\x77\xe8\xe9\x5f\x3c\x91\xa5\x4f\x03\x5c\x08\xe2\xe5\x71\x37\x3c\xf4" "\xa6\x62\xbb\xd8\xf1\x9e\x0f\x7f\x1e\x5f\x58\x94\x7f\xfd\xad\x5f\x19\x79" "\xfa\x33\x4f\xac\xec\xbe\x07\xb3\x2c\xfb\xf9\x83\xaf\xea\xb8\xfd\xe9\x37" "\xc5\x75\x15\x2e\xc6\x75\xbe\xa1\xf5\xeb\x4b\xdc\x7a\xfb\x8a\xee\xff\xd1" "\x47\x16\xb7\x6b\xfe\xfc\x84\xab\x87\x8a\xdb\x8f\x8f\x67\xa5\x87\x41\xec" "\x2a\x7f\x6b\x72\x6f\xe3\x76\xc7\x1f\x9f\x6e\xcc\x67\x1f\xcc\x1a\xf3\xe1" "\xf9\x4f\x3f\x59\xdc\x7e\xf1\xe7\xb8\xfd\x95\x7d\xc5\xf6\x7f\x19\x3e\xb4" "\xe4\xc8\xc9\x81\x96\xeb\xef\x0e\xeb\xd9\x15\xe6\x78\xf8\x4c\x99\x87\x8e" "\x2c\xee\x87\x7c\xc6\xeb\x3d\xbd\xfd\x35\xff\x74\xd3\xfb\x16\xef\x2f\x5e" "\x6f\x60\xe7\x4b\x1b\x0f\xf3\xf3\xbf\x5f\xdc\x6e\xfc\x8c\xa8\xa7\x6e\x2a" "\xb6\x8f\x8f\x7b\xb9\xf5\xff\xe3\x67\xbf\xf6\x74\xbe\xfd\x63\x77\x76\x5e" "\xff\x13\x83\x9d\xd7\x7f\x25\xdc\xee\x0f\xc3\xfc\xd9\xe1\x62\xfb\xe6\x7d" "\xfe\x99\xa6\xf5\xff\x61\x58\x7f\xbc\xbf\x78\xbd\x3d\x5f\xfe\x76\xc7\xf5" "\x3f\xf3\x8a\x62\xfb\x67\xc2\x71\xf1\xc5\x30\xdb\xd7\xff\x96\x3f\x79\xf5" "\x2f\x3a\x3d\x5f\xf1\x7e\x8e\xdc\x5f\x5c\x2f\xde\xff\xd4\x7f\xef\x6f\x5c" "\x2f\xde\x5e\xbc\xfd\xf6\xf5\x8f\x3d\x31\xdd\xb2\x3f\xda\x6f\xff\xd9\x17" "\x8a\xdb\x39\xfc\xd1\x9f\x0c\x35\x6f\x1f\xbf\x1e\xef\x27\x7a\xf4\xfe\xd6" "\xe3\x7b\x20\x3c\xbf\x2d\x3d\xf2\x2c\xcb\xbe\xf6\x47\x59\xcb\x7e\xce\xde" "\x58\x5c\xef\x1f\xda\xd6\x1f\x6f\xef\xe2\xfd\x9d\xd7\x7f\x77\xdb\x3a\x2f" "\x0e\xdc\xde\xb8\xfe\xe2\xe3\xd9\xd6\xf2\xb8\xbe\xf0\xd7\x7b\x3b\x3e\xde" "\xb8\x9e\x23\x7f\xb7\xad\xe5\xf1\x3c\xf5\x8e\xb0\xff\x5e\x98\xfc\x4e\x7e" "\xbb\x57\x1e\x0e\xc7\x63\xb8\xfc\x7f\xbe\x5b\xdc\x5e\xfb\x87\x91\x3c\xf3" "\x8e\xd6\xf7\x9b\xb8\xfd\x17\xb7\x15\xaf\xdb\x78\x7b\x93\x6d\xeb\x7f\xaa" "\x6d\xfd\xf3\xb7\xe7\xfb\xae\xf7\xfa\x1f\x78\xa1\x58\xff\x33\x6f\xde\xd2" "\xb2\xfe\x23\xef\x0c\xc7\xd3\x03\xc5\xec\xb5\xfe\x53\x7f\x75\x63\xcb\xf5" "\xbf\xf4\xd5\xe2\xf9\xb8\xf4\xb1\x89\xf3\x17\x66\x2f\x9f\x39\xd1\xb4\x57" "\x9b\x5f\xc7\x5b\xc6\xb6\x5e\x77\xfd\x0d\x2f\x79\xe9\x8d\xe1\xbd\xb4\xfd" "\xcf\x47\x2f\xcc\x9d\x9e\xb9\x34\x3e\x35\x3e\x95\x65\xe3\x7d\xf8\x91\x81" "\x1b\xbd\xfe\x2f\x87\xf9\x5f\xc5\x98\x5f\xff\x7b\x28\x7c\xff\x27\xc5\x71" "\xf7\xb9\x77\x15\xdf\xb7\x5e\xfb\xd3\xe2\xcf\x4f\x85\xaf\x3f\x1a\x9e\xcf" "\xf8\xfd\xf1\x0b\x7f\x31\xd2\x72\xbc\xb6\x3f\xef\xf3\x6f\x2e\xe6\xb5\xae" "\xff\xf5\x61\x1d\x2b\xf5\x8a\xcf\xfe\xfb\xed\x2b\xda\xf0\xca\x07\xbf\x75" "\xf9\xef\xff\xe0\xf9\xf6\x9f\x0b\xe2\xe3\xb9\xf8\xf2\xb1\xc6\xe3\xfb\xfc" "\x8e\x5b\x1a\x97\x0d\x3c\x5b\x5c\xde\xfe\x7e\xd5\xcb\xbf\xbd\xbc\xf5\x75" "\xfd\x83\xe1\xa9\xc6\xfc\x66\xd8\xaf\x0b\xe1\x93\x99\x77\xde\x52\xdc\x5f" "\xfb\xed\xc7\xcf\x26\xf9\xdc\x7b\x8a\xd7\x6f\xfc\x49\x2e\x5e\x3f\x6b\xfb" "\x3c\x91\x6d\x43\xad\x8f\xe3\x5a\xd7\xff\x83\xf0\x73\xcc\xb7\x6f\x6d\x7d" "\xff\x8b\xc7\xc7\x37\x9f\x68\xfb\x34\xe7\x6d\xd9\x40\xbe\x84\xf9\xf0\xfe" "\x90\xcd\x17\x97\xc7\xad\xe2\xfe\xfe\xdc\xd5\x5b\x3a\xde\x5f\xfc\x1c\x9e" "\x6c\xfe\x95\xab\x59\xe6\xb2\x66\x1f\x9f\x9d\x3c\x7b\xe6\xfc\xe5\xc7\x26" "\xe7\x66\x66\xe7\x26\x67\x1f\xff\xf8\xd1\x73\x17\x2e\x9f\x9f\x3b\xda\xf8" "\xec\xd2\xa3\x1f\xee\x75\xfd\xc5\xd7\xf7\x75\x8d\xd7\xf7\x89\x99\x83\xfb" "\xb3\xc6\xab\xfd\x42\x31\x36\xd8\x66\xaf\xff\xe2\x23\xc7\x4f\xdc\x3b\x75" "\xd7\x89\x99\x93\xc7\x2e\x9f\x9c\x7b\xe4\xe2\xcc\xa5\x53\xc7\x67\x67\x8f" "\xcf\x9c\x98\xbd\xeb\xd8\xc9\x93\x33\x1f\xeb\x75\xfd\x33\x27\x0e\x4f\xef" "\x3d\xb4\xef\xde\xbd\x13\xa7\xce\x9c\x38\x7c\xdf\xa1\x43\xfb\x0e\x4d\x9c" "\x39\x7f\x21\x5f\x46\xb1\xa8\x1e\x0e\x4e\x7d\x64\xe2\xfc\xa5\xa3\x8d\xab" "\xcc\x1e\xde\x7f\x68\xfa\xc0\x81\xfd\x53\x13\xe7\x2e\x9c\x98\x39\x7c\xef" "\xd4\xd4\xc4\xe5\x5e\xd7\x6f\x7c\x6f\x9a\xc8\xaf\xfd\xd1\x89\x4b\x33\x67" "\x8f\xcd\x9d\x39\x37\x33\x31\x7b\xe6\xe3\x33\x87\xa7\x0f\x1d\x3c\xb8\xb7" "\xe7\xa7\x3f\x9e\xbb\x78\x72\x76\x7c\xf2\xd2\xe5\xf3\x93\x97\x67\x67\x2e" "\x4d\x16\x8f\x65\x7c\xae\xf1\xe5\xfc\x7b\x5f\xaf\xeb\x53\x0f\xb3\x17\xc2" "\xfb\x5d\x9b\x81\xf0\xd3\xf9\xfb\xef\x3e\x98\x3e\x1f\x37\xf7\x95\x4f\x2e" "\x7b\x53\xc5\x26\xad\x3f\x9e\x66\x3f\x0a\x9f\x05\x15\xbf\xbf\xf5\xfa\x73" "\xcc\xfd\x23\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x87\x0f\xfe" "\x5f\xbc\x40\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x4b\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\x7f\x91\xfc\xc7\xd2\xe9\xdf\xeb\x92\xff\xd7\xab\xff" "\xff\x49\xfd\xff\x06\xfd\x7f\xfd\xff\x4c\xff\x3f\xd1\xff\xd7\xff\xcf\xf4" "\xff\xf5\xff\x7b\xd0\xff\x2f\x45\xff\xff\xb4\xfe\xbf\xfe\xbf\xfe\x3f\x1b" "\xa5\x6c\xfd\xff\x90\xfb\xb3\xad\x59\xe6\xef\xff\x01\x00\x00\xa0\xa2\x62" "\xee\xbf\x2e\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xfa\x30\x13\xf9" "\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x1b\xc2\x4c\x6a\x92\xff\x9d\xff\x5f\xff" "\x5f\xff\xbf\x5b\xff\x3f\x6e\x5b\xab\xfe\xff\xf0\xe2\x3d\xe9\xff\x97\xac" "\xff\xbf\xeb\x3f\xf5\xff\x97\xd0\xff\xd7\xff\xcf\xf4\xff\xd7\x6c\xb3\xfb" "\xf3\xfd\xbe\xfe\x12\xf6\xff\xb7\xea\xff\x53\x36\x65\xeb\xff\xc7\xdc\xff" "\x92\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x5f\x1a\x66\x22\xff" "\x03\x00\x00\x40\xa9\x6d\x59\xc5\xb6\x31\xf7\xdf\x18\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xbf\x2d\xcc\xa4\x26\xf9\x7f\xf3\xfa\xff\xa3\xfa\xff" "\xfa\xff\x0d\xe5\xee\xff\x3b\xff\x7f\x33\xfd\xff\x4d\xef\xff\x3b\xff\x7f" "\x07\xfa\xff\xfa\xff\x59\x6d\xfa\xff\xc5\x0f\x0b\xfa\xff\xe5\x59\xff\xc6" "\xf7\xff\xff\xb4\xeb\xf5\x9d\xff\x9f\x7e\x50\xb6\xfe\x7f\xcc\xfd\xff\x2f" "\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x97\x85\x99\xc8\xff\x00" "\x00\x00\x50\x19\x31\xf7\xdf\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\x7f\x73\x98\x49\x4d\xf2\x7f\x3d\xcf\xff\xff\xc3\x2c\xcb\xf4\xff\x33\xfd" "\x7f\xfd\xff\xb6\x75\xea\xff\xeb\xff\x6f\x04\xfd\x7f\xfd\xff\x6e\x36\xb7" "\xff\x9f\xff\xec\xd3\x4f\xfd\x7f\xe7\xff\x2f\xdb\xfa\x4b\x78\xfe\x7f\xfd" "\x7f\x4a\xa7\x6c\xfd\xff\x98\xfb\x5f\x1e\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xaf\x08" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x35\xcc\xa4\x26\xf9\xbf\x9e" "\xfd\x7f\xe7\xff\xd7\xff\x2f\x6c\x40\xff\x7f\x60\x58\xff\x3f\xd1\xff\xd7" "\xff\xcf\xf4\xff\xf5\xff\x7b\x70\xfe\x7f\xfd\xff\x7e\x5e\xbf\xfe\xbf\xfe" "\x3f\xbd\x95\xad\xff\x1f\x73\xff\x2b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x55\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb\xc3\x4c\x6a\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\x9d\xff\x5f\xff\x5f\xff\x7f\x23\xf5\x57\xff\x7f\x70\xd9" "\x4b\xf4\xff\x0b\xfa\xff\xad\xd6\xaf\xff\x3f\xbf\xb8\x00\xfd\xff\xbe\x59" "\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\xab\xc3\x4c\x6a\x92\xff" "\x01\x00\x00\xa0\x0e\x62\xee\x7f\x4d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\xed\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xe3\x61\x26\x35" "\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x1b\xa9\xbf\xfa" "\xff\xcb\xd3\xff\x2f\xe8\xff\xb7\x72\xfe\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba" "\x2b\x5b\xff\x3f\xe6\xfe\x1d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x23\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\x7f\x57\x98\x49\x4d\xf2\x7f\x49\xfb\xff\x8f" "\xea\xff\xeb\xff\x67\xfa\xff\xfa\xff\x6d\xfb\x53\xff\x5f\xff\xbf\x13\xfd" "\x7f\xfd\xff\x4c\xff\x7f\xcd\x36\xbb\x3f\xdf\xef\xeb\xd7\xff\xd7\xff\xa7" "\xb7\xb2\xf5\xff\x63\xee\xbf\x33\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20" "\xe6\xfe\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x5f\x1b\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x3b\xcc\xa4\x26\xf9\xbf\xa4\xfd\x7f" "\xe7\xff\xd7\xff\xd7\xff\x5f\x49\xff\x7f\x48\xff\x3f\xd3\xff\x2f\xbd\x1e" "\xeb\xff\xdf\xb6\x6f\x3b\xab\xa6\xff\xaf\xff\x9f\xe9\xff\xaf\xd9\x66\xf7" "\xe7\xfb\x7d\xfd\xfa\xff\xfa\xff\xf4\x56\xb6\xfe\x7f\xcc\xfd\xaf\x0b\x33" "\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xf5\x61\x26\xf2\x3f\x00\x00" "\x00\x54\x46\xcc\xfd\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x4f" "\x84\x99\x54\x38\xff\x37\x57\x2a\x2a\xde\xff\x7f\xfe\x3f\x96\xd9\x4c\xff" "\xbf\xa0\xff\xdf\xe7\xfd\x7f\xe7\xff\x6f\x59\xbf\xfe\x7f\x39\x39\xff\xbf" "\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff" "\x3f\xe6\xfe\x7b\xc2\x4c\x2a\x9c\xff\x01\x00\x00\xa0\x6e\x62\xee\xdf\x13" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f\x19\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\x3f\x15\x66\x52\x93\xfc\x5f\xf1\xfe\xff\xb2\xf4\xff\x0b" "\xfa\xff\x5f\x7b\x7a\xe1\x46\xfd\x7f\xfd\x7f\xfd\xff\x8d\xa4\xff\xaf\xff" "\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xde\xca\xd6\xff\x8f" "\xb9\x7f\x3a\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xbd\x61\x26" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xfb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\xf7\x87\x99\xd4\x24\xff\xf7\x49\xff\x7f\x4f\x2a\x40\xe9\xff" "\xeb\xff\x3b\xff\xbf\xfe\xbf\xfe\x7f\x5f\xd1\xff\xaf\x68\xff\x3f\x7f\x23" "\xd1\xff\xd7\xff\xbf\x30\x97\x76\xb0\xfe\xbf\xfe\xbf\xfe\x3f\x83\x1d\xbe" "\x56\xb6\xfe\x7f\xcc\xfd\x07\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x6f\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\x7d\x61\x26\x35\xc9\xff\x7d\xd2\xff\x77" "\xfe\x7f\xfd\x7f\xfd\xff\x26\xfa\xff\xfa\xff\xfd\x44\xff\xbf\xa2\xfd\x7f" "\xe7\xff\x6f\xd0\xff\x77\xfe\x7f\xfd\x7f\xfd\x7f\xba\x2b\x5b\xff\x3f\xe6" "\xfe\x43\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x21\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xfe\x30\x13\xf9\x1f\x00\x00\x00\xfa" "\x4a\xa7\xf3\x10\x46\x31\xf7\xbf\x31\xcc\xa4\x26\xf9\x5f\xff\xbf\xea\xfd" "\xff\x85\x2d\xfa\xff\xfa\xff\xfa\xff\xdd\xd7\xaf\xff\xbf\xb1\xf4\xff\xf5" "\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff" "\x31\xf7\x1f\x0e\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x4d\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f\x0e\x33\x91\xff\x01\x00\x00" "\xa0\x32\x62\xee\x3f\x12\x66\x52\x93\xfc\xaf\xff\x5f\xf5\xfe\xbf\xf3\xff" "\xeb\xff\xeb\xff\xf7\x5a\xbf\xfe\xff\xc6\xd2\xff\xd7\xff\xef\xa6\x92\xfd" "\xff\x2d\xd5\xef\xff\x87\x1f\x5b\xf4\xff\x4b\xd4\xff\xcf\x8f\x21\xfd\x7f" "\xca\xa8\x6c\xfd\xff\x98\xfb\xdf\x12\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\x5b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x16\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xf6\x30\x93\x9a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x8d\xa4\xff\xbf\x61\xfd\xff\xc6" "\x5b\xa1\xfe\x7f\xa1\x54\xfd\x7f\xe7\xff\xd7\xff\x77\xfe\x7f\xfd\x7f\x92" "\xb2\xf5\xff\x63\xee\x7f\x47\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc" "\xfd\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\xff\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x0f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x6f\x24\xfd\xff\x35\xf5\xff\xdb\xbf\x1d" "\x2f\x4b\xff\xbf\xa0\xff\xbf\x36\x9b\xdd\x9f\xef\xf7\xf5\xeb\xff\xeb\xff" "\xd3\x5b\xd9\xfa\xff\x31\xf7\xff\x4a\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4" "\x41\xcc\xfd\x0f\x86\x99\xac\x2a\xff\x0f\xae\xf3\xaa\x00\x00\x00\x80\xf5" "\x14\x73\xff\xbb\xc2\x4c\xfc\xfd\x3f\x00\x00\x00\xf4\x99\xd1\x65\x2f\x89" "\xb9\xff\x57\xc3\x4c\x6a\x92\xff\xfb\xaf\xff\x3f\xde\x97\xfd\xff\xc1\x74" "\xfb\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xeb\xa9\xa2\xfd\xff\x15\xd3" "\xff\x2f\xe8\xff\xaf\xcd\x66\xf7\xe7\xfb\x7d\xfd\xfa\xff\xfa\xff\xf4\x56" "\xb6\xfe\x7f\xcc\xfd\xbf\x16\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73" "\xff\xbb\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x7f\x3d\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xa1\x30\x93\x9a\xe4\xff\xf5\xee\xff\xaf" "\xf8\x84\xc5\xce\xff\xdf\xa0\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x6d" "\xf4\xff\xf5\xff\x33\xfd\xff\x35\xdb\xec\xfe\x7c\xbf\xaf\x5f\xff\x5f\xff" "\x9f\xde\xca\xd6\xff\x8f\xb9\xff\x37\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\x92\x3a\xbd\xea\x6b\xc4" "\xdc\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf7\x86\x99\xd4" "\x24\xff\xf7\xdf\xf9\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xfb\x89" "\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a\x2b" "\x5b\xff\x3f\xe6\xfe\x47\xc2\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee" "\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6f\x86\x99\xc8\xff" "\x00\x00\x00\x50\x19\x31\xf7\xff\x56\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x46\xd2\xff\x5f\xda\xff\xcf\xdf\xc3\xf4" "\xff\x0b\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd\x7f\x7a\x2b\x5b\xff\x3f" "\xe6\xfe\xf7\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\xdb\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x13\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\x81\x30\x93\x9a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\x8d\xa4\xff\xef\xfc\xff\xdd\xe8\xff\xeb\xff\xf7\xf3" "\xfa\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb\x3f\x18\x66\x52\x93\xfc" "\x0f\x00\x00\x00\x75\x10\x73\xff\xef\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x1f\x0d\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\x7f\x34\xcc\xa4" "\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x23\xe9\xff" "\xeb\xff\x77\xa3\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5" "\xff\x63\xee\x3f\x16\x66\x72\xa4\xf5\x6e\x00\x00\x00\x80\xfe\x15\x73\xff" "\x87\xc2\x4c\x6a\xf2\xf7\xff\x00\x00\x00\x50\x07\x31\xf7\x1f\x0f\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x11\x66\x52\x93\xfc\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x91\xf4\xff\xf5\xff\xbb\xd1\xff\xd7" "\xff\xef\xe7\xf5\xeb\xff\xeb\xff\xd3\x5b\xd9\xfa\xff\x31\xf7\xcf\x84\x99" "\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x32\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x54\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xe9" "\x30\x93\x9a\xe4\x7f\xfd\xff\x9e\xfd\xff\x85\x95\x9c\x01\x52\xff\xbf\xf3" "\xfa\xf5\xff\x4b\xdd\xff\xff\xee\xd7\xdb\xd6\xa9\xff\xaf\xff\xbf\x11\xf4" "\xff\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\x57\xb2\xff\x9f\x85\x03\x4d" "\xff\x9f\x75\x52\xb6\xfe\x7f\xcc\xfd\x67\xc2\x4c\x6a\x92\xff\x01\x00\x00" "\xa0\x0e\x62\xee\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x47" "\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xcf\x86\x99\xd4\x24\xff\xeb" "\xff\x3b\xff\xbf\xfe\xff\x8a\xfa\xff\xb1\x96\x5b\xa5\xfe\xff\xca\xce\xff" "\xbf\x75\xf1\x7e\xf5\xff\xf5\xff\xd7\x42\xff\x5f\xff\xbf\x1b\xfd\xff\x3e" "\xed\xff\xc7\xef\x0d\xfa\xff\xd5\xeb\xff\x3b\xff\x3f\xeb\xac\x6c\xfd\xff" "\x98\xfb\xcf\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x3e\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x42\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\xc5\x30\x93\x9a\xe4\x7f\xfd\xff\xd5\xf5\xff\x07\x96\xe9" "\x06\xea\xff\x77\x5e\x7f\x85\xfa\xff\x55\x3c\xff\xff\xca\xfa\xff\x4d\xf4" "\xff\xf5\xff\xd7\x42\xff\x5f\xff\xbf\x1b\xfd\xff\x3e\xed\xff\x07\xce\xff" "\xaf\xff\xaf\xff\x4f\x2f\x65\xeb\xff\xc7\xdc\xff\x7b\x61\x26\x35\xc9\xff" "\x00\x00\x00\x50\x07\x31\xf7\x5f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\xff\x3f\xf6\xee\x7b\xc9\xd2\xb2\xda\xe3\xf8\x66\x60\x86\x41\xcb\x7b" "\xe0\x16\xbc\x02\x2f\xc1\x6b\xb0\xca\x3b\x30\x47\xc4\x08\x66\xc5\x84\x39" "\x61\xc2\x84\x59\xc1\x9c\x73\xc6\x9c\x73\x40\x31\xc7\x2a\x2d\xba\xd7\x5a" "\x30\x3d\xd3\xef\xee\x9e\xde\x7b\xf6\xfb\x3e\xeb\xf3\xf9\xc3\x75\x68\xa1" "\xe6\x45\xd1\x73\x7e\xc5\xf9\xd6\xf3\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x70\xdc\xd2\x64\xff\xeb\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xdb\xa4\xff\xd7\xff\x4f\xd1\xff\xcf\xb4\xff\xbf\xf2\x68\x7f\xbc" "\xfe\x5f\xff\xaf\xff\x67\x9d\xb9\xf5\xff\xb9\xfb\x1f\x12\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x87\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\xc3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe1\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x36\xe9\xff\x17\xda\xff" "\xaf\x56\xfa\xff\x23\x18\xb6\xff\xf7\xfe\xbf\xfe\x5f\xff\xcf\x86\x9c\xd7" "\xff\xc7\x7f\xe1\xed\xaa\xff\xcf\xdd\xff\x88\xb8\xa5\xc9\xfe\x07\x00\x00" "\x80\x0e\x72\xf7\x3f\x32\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x15" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x8f\x8e\x5b\x9a\xec\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\x49\xff\xbf\xd0\xfe\xdf\xfb\xff" "\x47\xa2\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x3b\xaf\xff\x0f\xbb\xea\xff\x73" "\xf7\x3f\x26\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x8f\x8d\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x6b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x71\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x17\xd8\xff\x5f\xa1" "\xff\xd7\xff\x2f\x87\xfe\x5f\xff\x3f\x45\xff\x9f\xfd\xff\xe5\xf5\xeb\xeb" "\xff\x97\xf3\xfd\xfa\x7f\xfd\x3f\xeb\xcd\xad\xff\xcf\xdd\x7f\x6d\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x4f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x27\xc6\x2d" "\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f\x60\xff\xef\xfd\x7f\xfd\xff\x82\xe8" "\xff\xf5\xff\x53\xf4\xff\xde\xff\x5f\xf2\xf7\xeb\xff\xf5\xff\xac\xb7\xc5" "\xfe\x7f\xef\xbf\x0e\x8f\xdb\xff\xe7\xee\x7f\x52\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\x9f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f" "\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xeb\xe2\x96\x26\xfb\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x6d\xd2\xff\xeb\xff\xa7\xe8\xff" "\xf5\xff\x4b\xfe\x7e\xfd\xbf\xfe\x9f\xf5\xb6\xfe\xfe\xff\xfd\xaf\xdf\xbb" "\x47\xed\xff\x73\xf7\x5f\x1f\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\xa7\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd3\xe2\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\xe9\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xdf\xdd\xff" "\xff\xef\x32\xfd\xbf\xfe\x5f\xff\x7f\xf7\xcf\xf5\xff\x9b\xa1\xff\xd7\xff" "\x4f\xd1\xff\xeb\xff\x97\xfc\xfd\xfa\x7f\xfd\x3f\xeb\x6d\xbd\xff\x5f\xd3" "\xfb\x1f\xfc\xed\xdc\xfd\xcf\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x33\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x59\x71\x8b\xfd\x0f" "\x00\x00\x00\xb3\x77\xf6\x88\xbf\x5f\xee\xfe\x67\x1f\xfc\xa3\x9a\xec\x7f" "\xfd\xbf\xfe\xdf\xfb\xff\xfa\x7f\xfd\xbf\xfe\x7f\x9b\xf4\xff\xb3\xed\xff" "\x0f\xfe\x47\xef\x5c\xdb\xeb\xff\xcf\xdc\xf3\x37\x96\xdc\xff\xdf\x7c\xfb" "\xfe\xbf\x36\xfa\x7f\xfd\xff\x85\xfa\xff\xfb\x1d\xe1\xfb\xf5\xff\x74\x30" "\xb7\xfe\x3f\x77\xff\x73\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff" "\xdc\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\x9f\x17\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x7f\x6e\xff\x7f\xaa\x65\xff\x7f\xd7\xcf\xf4\xff\xdb\xa1\xff\x9f\x6d\xff" "\x3f\xcd\xfb\xff\x47\xe2\xfd\x7f\xfd\xbf\xf7\xff\xf5\xff\x4c\x9b\x5b\xff" "\x9f\xbb\xff\xf9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x41\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x30\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x5f\x14\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xa2" "\xf7\xff\x2f\x1f\xa3\xff\xf7\xfe\xff\xf6\xe8\xff\xf5\xff\x53\xf4\xff\xfa" "\xff\x25\x7f\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\xdf\x18\xb7\x34" "\xd9\xff\x00\x00\x00\x30\xbc\x53\xab\xda\xfd\x2f\x8e\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x97\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x4b" "\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x4f\xd4\xff\x0f\xf2\xfe" "\xbf\xfe\x7f\x7b\xf4\xff\xfa\xff\x29\x47\xed\xff\x57\xfa\xff\xfa\x73\xd9" "\x6d\xff\x7f\xfa\x9c\xdf\xd2\xff\xeb\xff\xf5\xff\xac\x33\xb7\xfe\x3f\x77" "\xff\xcb\xe2\x96\x26\xfb\x1f\x00\x00\x00\xc6\x73\xdd\x79\x3f\xc9\xdd\xff" "\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x45\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\xbf\x32\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xaf\xff\xdf\x26\xfd\xbf\xfe\x7f\x8a\xf7\xff\x97\xd6\xff\x9f\x4b" "\xff\xaf\xff\xd7\xff\xb3\xce\xdc\xfa\xff\xdc\xfd\xaf\x8a\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\xab\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x35\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xda\xb8\xe5\xe0\xfe" "\x3f\x75\x29\xbf\xea\xd2\xd9\x69\xff\x9f\xed\x86\xfe\x5f\xff\xaf\xff\xdf" "\xa3\xff\x8f\x7f\x5f\xf5\xff\xfa\xff\x63\xd0\xff\xeb\xff\x57\x03\xf6\xff" "\x67\x0f\xf9\xf5\xf4\xff\xf3\xfa\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7" "\xee\xbf\x29\x6e\xf1\xf7\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x17\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x37\xc4\x2d\x4d\xf6\xff\x61\xfd\xff\x9d\xf7\xde\xff\xe7\xbd\xff" "\x7f\x34\xfa\xff\x0b\x7f\xbf\xfe\x7f\x16\xfd\xff\x5d\xbf\xb6\xfe\x5f\xff" "\xbf\x33\xfa\xff\x75\xfd\xff\x65\x47\xfe\xfe\x0b\xfd\xaf\x37\xfd\xff\xbe" "\xd1\xfa\x7f\xef\xff\x2f\xe3\xfb\xf5\xff\xfa\x7f\xd6\x9b\x5b\xff\x9f\xbb" "\xff\x8d\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x53\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xdf\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x6f\x8e\x5b\x9a\xec\xff\xcd\xbf\xff\x7f\xf5\x2e\xfa\xff\xbb\xe3\x3a" "\xfd\xbf\xfe\x5f\xff\xef\xfd\xff\xf8\xf9\x61\xfd\xff\x41\xfa\xff\xed\xd2" "\xff\xef\xf0\xfd\xff\x2b\xce\xff\x91\xfe\xff\xdc\x3f\x0f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xbb\xe6\xd6\xff\xe7\xee\x7f\x4b\xdc\xd2\x64\xff\x03\x00" "\x00\x40\x07\xb9\xfb\xdf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f" "\x8b\x5b\xec\x7f\x00\x00\x00\x98\xad\xb3\xc7\xfc\xfd\x73\xf7\xbf\xfd\xe0" "\x1f\xdd\x64\xff\x6f\xbe\xff\xf7\xfe\xbf\xfe\xff\x98\xfd\xff\x29\xfd\x7f" "\xd2\xff\xc7\xbf\xaf\xde\xff\xd7\xff\x1f\x83\xfe\xdf\xfb\xff\x2b\xfd\xff" "\x45\xdb\x75\x3f\xbf\xf4\xef\xd7\xff\xeb\xff\x59\x6f\x6e\xfd\x7f\xee\xfe" "\x5b\xf6\xa6\x5e\xbf\xfd\x0f\x00\x00\x00\x1d\xdc\xb2\xf7\x8f\x67\x57\xef" "\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x77\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xbb\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xdf\x79\xff\xef" "\xfd\xff\x72\xa1\xfe\xff\xc6\x53\xfa\x7f\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff" "\xbf\xd2\xff\x5f\xb4\x5d\xf7\xf3\x4b\xff\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6" "\xff\xe7\xee\x7f\x77\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xdf\x13" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xd8\xfd\xfb\xff\xcf\xef\xf6\x3f\x00\x00" "\x00\x0c\xe9\xbd\x7b\xff\x78\x76\xf5\xbe\xb8\xa5\xc9\xfe\x6f\xdc\xff\x5f" "\x7d\xd2\xfe\xff\xaa\x7b\xfc\xcf\xfa\xff\x0b\x7f\xbf\xfe\x7f\x23\xef\xff" "\xdf\x72\xf0\xaf\x3d\xfd\xff\x82\xfa\xff\x6b\xf4\xff\xfa\x7f\xfd\xff\x14" "\xfd\xbf\xfe\x7f\xc9\xdf\x3f\x9f\xfe\x7f\xff\xb7\xf3\xff\x36\xd5\xff\x33" "\x27\x73\xeb\xff\x73\xf7\xbf\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x1f\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5b\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xb6\xb8\xa5\xc9\xfe\x6f\xdc\xff\x0f\xf2\xfe" "\xff\x03\xee\x88\x2f\xd0\xff\x8f\xdb\xff\x7b\xff\x3f\xee\x22\xfb\x7f\xef" "\xff\xeb\xff\xf5\xff\x93\xf4\xff\xfa\xff\x25\x7f\xff\x7c\xfa\x7f\xef\xff" "\x33\x5f\x73\xeb\xff\x73\xf7\x7f\x30\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83" "\xdc\xfd\x1f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc7\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x47\xe2\x96\x26\xfb\x5f\xff\xbf\xf4\xfe" "\xdf\xfb\xff\xfa\x7f\xfd\xff\x60\xfd\xff\x6d\xfa\xff\xe3\xd1\xff\xeb\xff" "\x57\xfa\xff\x8b\xb6\xeb\x7e\x7e\xe9\xdf\xaf\xff\xd7\xff\xb3\xde\xdc\xfa" "\xff\xdc\xfd\x1f\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xc7\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xe3\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\x89\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xb7\xd5\xff\xdf\xf5" "\x8b\xe8\xff\x9b\xf4\xff\xd7\xea\xff\x57\xde\xff\x3f\x94\xfe\x5f\xff\x3f" "\x45\xff\xaf\xff\x5f\xf2\xf7\x6f\xac\xff\xbf\x97\xfe\x9f\x71\xcd\xad\xff" "\xcf\xdd\xff\xc9\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x2a\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1d\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x9f\x89\x1b\xee\x7b\x9f\xdd\x7d\xd2\x66\x9d\x3e\xe4\xe7\xd1" "\x9b\xeb\xff\xf5\xff\xde\xff\xd7\xff\x7b\xff\x5f\xff\xbf\x4d\xfa\x7f\xfd" "\xff\x14\xfd\x7f\xe3\xfe\xff\xb2\x93\xff\xc7\x75\x98\xfe\xdf\xfb\xff\x0c" "\x6c\x6e\xfd\x7f\xee\xfe\xcf\xc6\x2d\xfe\xfe\x3f\x00\x00\x00\x0c\x23\x77" "\xff\xe7\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xf3\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\x85\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff" "\x8b\xed\xff\xaf\xd2\xff\x9f\xfb\xfd\xfa\xff\x79\xd2\xff\xeb\xff\xa7\xe8" "\xff\x1b\xf7\xff\x03\x7c\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\x7f" "\x31\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f\x8a\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x2f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\x57\xe2\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x2f\xb6\xff\xf7\xfe\xff\x81" "\xef\xd7\xff\xcf\x93\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf2\xf7\xeb\xff" "\xf5\xff\xac\x37\xb7\xfe\x3f\x77\xff\x57\xe3\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x7a\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x23\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\xa6\x4b\xde\xff\x9f\xda\xfc\xaf\xb1" "\xd2\xff\xeb\xff\x0f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x9b\x5b\xff\x9f" "\xbb\xff\x9b\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x3d\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x15\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\xdf\x8e\x5b\x9a\xec\xff\x91\xfb\xff\xa9\xdf\x4d\xff\xbf\x4f\xff" "\xaf\xff\x5f\xe9\xff\x0f\xf6\xff\x67\xf2\xe7\xfa\xff\xcd\xf0\xfe\xbf\xfe" "\x7f\x8a\xfe\x7f\xe0\xfe\xff\xcc\x46\x3e\x71\x77\xdf\xaf\xff\xd7\xff\xb3" "\x11\x73\xeb\xff\x73\xf7\x7f\x27\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\xdf\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xef\xc5\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\xf7\xe3\x96\x26\xfb\x7f\xe4\xfe\x7f\x8a\xfe" "\x7f\x9f\xfe\x5f\xff\xbf\xd2\xff\x7b\xff\x7f\xcb\xf4\xff\xfa\xff\x29\xfa" "\xff\x81\xfb\x7f\xef\xff\xeb\xff\x61\x77\xfd\xff\xe9\xd5\x21\xfd\x7f\xee" "\xfe\x1f\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x87\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x71\xdc\x32\xce\xfe\x7f\xe0\xad\x13\xff\xa4\xfe\x7f\xe3\xfd\xff" "\xde\x5f\x44\xfa\x7f\xfd\xff\x4a\xff\xaf\xff\xd7\xff\xef\xd1\xff\xeb\xff" "\xa7\xe8\xff\xf5\xff\x4b\xfe\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xf6\xfe\x7f\xee" "\xfe\x9f\xc4\x2d\xe3\xec\x7f\x00\x00\x00\x68\x2f\x77\xff\x4f\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xf3\xb8\xa5\xc9\xfe\xd7\xff\x7b\xff\x5f\xff\xdf\xaa\xff\xbf\x7c" "\x75\xa4\xfe\x3f\xff\x15\xd6\xff\xeb\xff\x4f\x4e\xff\xaf\xff\x9f\xa2\xff" "\xd7\xff\x2f\xf9\xfb\xf5\xff\xfa\x7f\xd6\x9b\x5b\xff\x9f\xbb\xff\x17\x71" "\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x65\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x2a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1d" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\xbf\x55\xff\xef\xfd\x7f\xfd\xff\x25" "\xa7\xff\xd7\xff\x4f\xd1\xff\xeb\xff\x97\xfc\xfd\xd9\xff\xe7\x5f\x77\xfa" "\x7f\xfd\x3f\xe7\x9b\x5b\xff\x9f\xbb\xff\x37\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\xff\x6d\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x2e" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1f\xb7\x34\xd9\xff\xfa\xff" "\x59\xf7\xff\x99\xb9\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x10\xfa\x7f" "\xfd\xff\x4a\xff\x7f\xd1\x76\xdd\xcf\x2f\xfd\xfb\xbd\xff\xaf\xff\x67\xbd" "\xb9\xf5\xff\xb9\xfb\xef\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x1f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x8f\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\x7f\x67\xdc\xd2\x64\xff\xeb\xff\x67\xdd\xff\x7b\xff" "\xff\x62\xfb\xff\x2b\xf5\xff\xfa\x7f\xfd\xff\x5c\xe8\xff\xf5\xff\x53\xf4" "\xff\xfa\xff\x25\x7f\xbf\xfe\x5f\xff\xcf\x7a\x73\xeb\xff\x73\xf7\xff\x29" "\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f\x8e\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\xbf\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5f" "\xe3\x96\x26\xfb\x5f\xff\xaf\xff\x3f\x7e\xff\x7f\xba\xfe\xbc\x67\xdb\xff" "\x7b\xff\xff\x1e\xfd\xff\x99\xd5\x6a\xa5\xff\x9f\xfa\x7e\xfd\xff\x76\x8d" "\xdb\xff\x9f\xd1\xff\xeb\xff\x4f\xdc\xff\xdf\x70\xd3\xfe\x8f\xf5\xff\xcb" "\xfc\x7e\xfd\xbf\xfe\x9f\xf5\xe6\xd6\xff\xe7\xee\xff\x5b\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\xff\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xff\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\xc6\x2d\x4d\xf6" "\xbf\xfe\x5f\xff\x3f\xe4\xfb\xff\xfa\x7f\xef\xff\xeb\xff\x67\x63\xdc\xfe" "\xdf\xfb\xff\xfa\x7f\xef\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x99\x5b\xff\x9f" "\xbb\xff\x5f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x77\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x27\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xff\x1b\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x6f\x93\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf2\xf7\xeb\xff\xf5\xff" "\xac\x37\xb7\xfe\x3f\x77\xff\xff\x03\x00\x00\xff\xff\x61\x6d\x2e\x1e", 24695); syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x200000000000, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_REC|MS_STRICTATIME|MS_SILENT|MS_NOSUID|0x800*/ 0x301c802, /*opts=*/0x200000000f80, /*chdir=*/0x11, /*size=*/0x6077, /*img=*/0x200000006480); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0x1e9 (2 bytes) // ] // returns fd memcpy((void*)0x200000000300, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IXGRP|S_IRGRP|S_IXUSR|S_IWUSR|S_IRUSR*/ 0x1e9); if (res != -1) r[0] = res; // openat$nullb arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6e 75 6c 6c 62 30 00} (length 0xc) // } // flags: open_flags = 0x440 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_block memcpy((void*)0x2000000202c0, "/dev/nullb0\000", 12); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x2000000202c0ul, /*flags=O_CREAT|O_APPEND*/ 0x440, /*mode=*/0); if (res != -1) r[1] = res; // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {62 6c 6b 69 6f 2e 62 66 71 2e 69 6f 5f 71 75 65 75 65 64 5f // 72 65 63 75 72 73 69 76 65 00} (length 0x1e) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000000, "blkio.bfq.io_queued_recursive\000", 30); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000000ul, /*flags=*/0x275a, /*mode=*/0); // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0x20fffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0x20fffe82ul); return 0; }