// https://syzkaller.appspot.com/bug?id=bfda544acf0cd36bcede65e40608e3fc2da0a91a // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_mount #define __NR_mount 40 #endif #ifndef __NR_openat #define __NR_openat 56 #endif #ifndef __NR_write #define __NR_write 64 #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[1] = {0xffffffffffffffff}; int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; 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 37 00} (length 0x8) // } // flags: mount_flags = 0xc03 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // } // } // chdir: int8 = 0x2 (1 bytes) // size: len = 0x5fbf (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5fbf) // } // ] // returns fd_dir memcpy((void*)0x20000040, "jfs\000", 4); memcpy((void*)0x20000240, "./file7\000", 8); *(uint8_t*)0x20000740 = 0; sprintf((char*)0x20000741, "%023llo", (long long)-1); *(uint32_t*)0x20000758 = 0; sprintf((char*)0x2000075c, "%020llu", (long long)-1); sprintf((char*)0x20000770, "%020llu", (long long)-1); sprintf((char*)0x20000784, "%023llo", (long long)0); *(uint32_t*)0x2000079b = -1; memcpy( (void*)0x20002080, "\x78\x9c\xec\xdd\x5b\x6f\x1c\x67\xfd\x07\xf0\xdf\x1e\xbc\x3e\xf4\xdf\xd4" "\xea\x45\x95\x7f\xc4\x21\x4d\x39\xb4\x94\x26\x8d\x93\x36\x2d\xa7\xa6\x42" "\xe2\x02\x04\x54\xaa\x72\x9f\xc8\xb8\x55\x84\x0b\x28\x09\x15\xad\x2c\xec" "\x2a\x12\xf7\x48\x5c\xa3\xf2\x22\xb8\x06\xa1\xde\x20\x15\x89\x97\xc0\x1b" "\x88\x64\xf7\x86\x08\x44\x06\x8d\xfd\x3c\xce\x78\xbc\xf6\xda\x24\xde\x59" "\x7b\x3e\x1f\xc9\x99\xfd\xed\x33\xe3\x7d\x26\x5f\x8f\x67\xd7\x73\x78\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x88\xef\x7f\xef\xed" "\x8b\x9d\x88\xb8\xfe\x7e\x7a\x62\x3e\xe2\xff\xa2\x17\xd1\x8d\x98\x2d\xeb" "\xb3\xf1\xd7\x88\xd5\xfb\x79\xfe\x7e\x44\x9c\x8e\xcd\xe6\x78\x26\x22\x4e" "\x4d\x47\x94\xcb\x6f\xfe\xf3\x54\xc4\xe5\x88\xf8\xf4\x54\xc4\xfa\xc6\xca" "\x62\xf9\xf4\xc2\x01\xfb\xf1\xca\x5b\xf7\xfe\xf6\xc3\xb7\x7f\xb4\xf6\xdb" "\x2f\xfe\xe5\xef\xff\xfe\xe4\xf7\x7f\xaa\xb7\xbf\xf5\xc9\x77\x7f\xf0\xc7" "\xd5\x88\xf9\xd3\xbf\xf9\xdd\x7f\x56\x1f\xcf\xba\x03\x00\x00\x40\x5b\x14" "\x45\x51\x74\x36\x3f\xe6\x47\x9c\x49\x9f\xef\xbb\x4d\x77\x0a\x00\x18\x8b" "\xbc\xff\x2f\x92\xfc\xbc\x5a\xfd\x28\x75\x3f\x76\x6a\xba\x3f\x6a\xb5\x5a" "\xad\xde\xad\x18\x6e\xb5\x5a\x44\xc4\x5a\x75\x99\xf2\x3d\x83\xc3\xf1\x00" "\x70\xcc\xac\xc5\xfd\xa6\xbb\x40\x83\xe4\xdf\x6a\xfd\x88\x78\xa2\xe9\x4e" "\x00\x13\xad\xd3\x74\x07\x38\x12\xeb\x1b\x2b\x8b\x9d\x94\x6f\xa7\xba\x3f" "\x38\xbb\xd5\x9e\xcf\x05\xd9\x91\xff\x5a\x67\xfb\xfa\x8e\xbd\xa6\xa3\xd4" "\xcf\x31\x19\xd7\xcf\xd7\xdd\xe8\xc5\xd3\x7b\xf4\x67\x76\x4c\x7d\x98\x24" "\x39\xff\x6e\x3d\xff\xeb\x5b\xed\x83\x34\xdf\x51\xe7\x3f\x2e\x7b\xe5\x3f" "\xd8\xba\xf4\xa9\x75\x72\xfe\xbd\x7a\xfe\x35\x27\x27\xff\xee\xd0\xfc\xdb" "\x2a\xe7\xdf\x3f\x54\xfe\x3d\xf9\x03\x00\x00\x00\x00\xc0\x04\xcb\x7f\xff" "\x9f\x6f\xf8\xf8\xef\xf4\xa3\xaf\xca\x81\xec\x77\xfc\xf7\xec\x98\xfa\x00" "\x00\x00\x00\x00\x00\x00\x00\x8f\xdb\x01\xc6\xff\x2b\x1f\x5c\xcd\xf3\xd7" "\xc7\xff\xdb\x66\xfc\x3f\x00\x00\x00\x98\x58\xe5\x67\xf5\xd2\xc7\xa7\x1e" "\x3e\xb7\xd7\xbd\xd8\xca\xe7\xaf\x75\x22\x9e\xac\xcd\x0f\xb4\x4c\xba\x58" "\x66\xae\xe9\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x9b\xf4\xb7" "\xce\xe1\xbd\xd6\x89\x98\x8a\x88\x27\xe7\xe6\x8a\xa2\x28\xbf\xaa\xea\xf5" "\x61\x3d\xea\xf2\xc7\x5d\xdb\xd7\x1f\xda\xac\xe9\x5f\xf2\x00\x00\xb0\xe5" "\xd3\x53\xb5\x6b\xf9\x3b\x11\x33\x11\x71\x2d\xdd\xeb\x6f\x6a\x6e\x6e\xae" "\x28\x66\x66\xe7\x8a\xb9\x62\x76\x3a\xbf\x9f\x1d\x4c\xcf\x14\xb3\x95\xcf" "\xb5\x79\x5a\x3e\x37\x3d\x38\xc0\x1b\xe2\xfe\xa0\x28\xbf\xd9\x4c\x65\xb9" "\xaa\x51\x9f\x97\x47\xb5\xd7\xbf\x5f\xf9\x5a\x83\xa2\x77\x80\x8e\x8d\x47" "\x83\x81\x03\x40\x44\x6c\xed\x8d\xd6\xed\x91\x4e\x98\xa2\x78\x2a\x9a\x7e" "\x97\xc3\xf1\x60\xfb\x3f\x79\x6c\xff\x1c\x44\xd3\x3f\xa7\x00\x00\x00\xc0" "\xd1\x2b\x8a\xa2\xe8\xa4\xdb\x79\x9f\x49\xc7\xfc\xbb\x4d\x77\x0a\x00\x18" "\x8b\xbc\xff\xaf\x1f\x17\x50\xab\xd5\x6a\xb5\x5a\x7d\xf2\xea\xaa\x62\xb8" "\xd5\x6a\x11\x11\x6b\xd5\x65\xca\xf7\x0c\x86\xe3\x07\x80\x63\x66\x2d\xee" "\x37\xdd\x05\x1a\x24\xff\x56\xeb\x47\xc4\xe9\xa6\x3b\x01\x4c\xb4\x4e\xd3" "\x1d\xe0\x48\xac\x6f\xac\x2c\x76\x52\xbe\x9d\xea\xfe\x20\x8d\xef\x9e\xcf" "\x05\xd9\x91\xff\x5a\x67\x73\xb9\xbc\xfc\xb0\xe9\x28\xf5\x73\x4c\xc6\xf5" "\xf3\x75\x37\x7a\xf1\xf4\x1e\xfd\x79\x66\x4c\x7d\x98\x24\x39\xff\x6e\x3d" "\xff\xeb\x5b\xed\x83\x34\xdf\x51\xe7\x3f\x2e\x7b\xe5\x5f\xae\xe7\x7c\x03" "\xfd\x69\x5a\xce\xbf\x57\xcf\xbf\xe6\xe4\xe4\xdf\x1d\x9a\x7f\x5b\xe5\xfc" "\xfb\x87\xca\xbf\x27\x7f\x00\x00\x00\x00\x00\x98\x60\xf9\xef\xff\xf3\x8e" "\xff\xe6\x55\x06\x00\x00\x00\x00\x00\x00\x80\x63\x67\x7d\x63\x65\x31\x5f" "\xf7\x9a\x8f\xff\x7f\x6e\xc8\x7c\xae\xff\x3c\x99\x72\xfe\x1d\xf9\xb7\x52" "\xce\xbf\x5b\xcf\xbf\x76\x42\x4e\xaf\xf2\xf8\xde\x9b\x0f\xf3\xff\x6c\x63" "\x65\xf1\xe3\xff\xbf\xf2\x85\x3c\x9d\xf8\xfc\xa7\x7a\x83\xf2\xb5\xa7\x3a" "\xdd\x5e\x7f\xeb\x9c\x9f\x7f\xe6\x5b\x9b\x2e\xc5\xcb\xbb\xe6\x2f\xe7\x29" "\xa6\xde\x89\x9b\xb1\x1c\x4b\x71\x71\x57\xfb\xd4\x8e\xf6\x85\x11\xed\x97" "\x76\xb5\x0f\xca\xf6\xd9\xdc\x7e\x3e\x16\xe3\xe7\xb1\x1c\x3f\xd9\x6e\x9f" "\x1e\x71\x62\xd4\xcc\x88\xf6\x62\x44\x7b\xce\xbf\x67\xfb\x6f\xa5\x9c\x7f" "\xbf\xf2\x55\xe6\x3f\x97\xda\x3b\xb5\x69\xe9\xde\x47\xdd\x5d\xdb\x7d\x75" "\x3a\xec\x75\xae\xfe\xf8\xc1\x95\xdd\x5b\xd7\xf8\xdd\x8d\xde\xf6\xba\x55" "\x95\xeb\x77\xae\x81\xfe\x6c\xfe\x9f\x3c\x31\x88\x5f\xde\x5e\xba\x75\xfe" "\x57\x37\xee\xdc\xb9\x75\x31\xd2\x64\xc7\xb3\x0b\x91\x26\x8f\x59\xce\x7f" "\x2a\x7d\xe5\xfc\x9f\x7f\x6e\xab\x3d\xff\xde\xaf\x6e\xaf\xf7\x3e\x1a\x1c" "\x3a\xff\x49\x71\x37\xfa\x7b\xe6\xff\x5c\xe5\x71\xb9\xbe\x2f\x8c\xb9\x6f" "\x4d\xc8\xf9\x0f\xd2\x57\xce\x3f\xef\x81\x86\x6f\xff\xc7\x39\xff\xbd\xb7" "\xff\x17\x1b\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xec" "\xa7\x28\x8a\xcd\x4b\x44\xaf\x46\xc4\xab\xe9\xfa\x9f\xa6\xae\xcd\x04\x00" "\xc6\x2b\xef\xff\x8b\x7c\x33\x8c\x44\xad\x56\xab\xd5\x6a\xf5\xc9\xab\xab" "\x8a\xe1\xde\xa8\x16\x11\xf1\xe7\xea\x32\xe5\x7b\x86\x5f\x0f\xfb\x66\x00" "\xc0\x24\x7b\x10\x11\xff\x68\xba\x13\x34\x46\xfe\x2d\x96\xef\xf7\x57\x4e" "\xbf\xd4\x74\x67\x80\xb1\xba\xfd\xc1\x87\x3f\xbd\xb1\xbc\xbc\x74\xeb\xf6" "\xff\xb2\x74\xd1\x7b\xfc\x3d\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x2b\x8f" "\xff\x79\xb6\x32\xfe\xf3\xe6\x79\x40\xb5\x71\xa3\x77\x8c\xff\xfa\x66\x9c" "\xfd\x6c\x63\x65\xf1\xfd\xf9\x7f\x7d\xfe\xd8\x8d\xff\xd9\x1d\xf4\x36\xc7" "\x3a\x4f\x2b\xf4\x6c\x54\xc7\xe7\xde\x3d\x42\xf1\xb9\xd8\x7f\xfc\xef\xfe" "\x88\xd7\x9b\x1a\xd1\x3e\x18\xd1\x3e\x3d\xa2\x7d\x66\x44\xfb\xd0\x0b\x3d" "\x2a\x72\xfe\xcf\xa6\x8c\x73\xfe\x67\xd2\x8a\xed\x37\xfe\x6b\xce\xbf\x3e" "\x1d\xf1\x92\x8d\xda\x6f\xfc\xd7\xe7\x1b\xe8\x4f\xd3\x72\xfe\xe7\xd2\x58" "\xcf\x39\xff\xaf\xd6\xe6\xab\xe6\x5f\xfc\xe1\x38\x8f\xff\xdb\xdd\x91\xff" "\x85\x3b\xef\xfd\xe2\xc2\xed\x0f\x3e\x7c\xe9\xe6\x7b\x37\xde\x5d\x7a\x77" "\xe9\x67\x97\x2e\x2f\xbc\x7e\x71\xe1\xca\xe5\xd7\x5e\xbe\xf0\xce\xcd\xe5" "\xa5\xf4\x6f\x83\x3d\x3e\x5a\x39\xff\x3c\xf6\xb5\xf3\x40\xdb\x25\xe7\x9f" "\x33\x97\x7f\xbb\xe4\xfc\xbf\x9c\x6a\xf9\xb7\x4b\xce\xff\x2b\xa9\x96\x7f" "\xbb\xe4\xfc\xf3\xfb\x3d\xf9\xb7\x4b\xce\x3f\x7f\xf6\xd9\xce\xff\x41\xb3" "\xfd\x62\x3c\x72\xfe\x2f\xa4\xda\xf6\xdf\x2e\x39\xff\xaf\xa5\x5a\xfe\xed" "\x92\xf3\x7f\x31\xd5\xf2\x6f\x97\x9c\xff\xd7\x53\x2d\xff\x76\xc9\xf9\xbf" "\x94\x6a\xf9\xb7\x4b\xce\xff\x7c\xaa\xe5\xdf\x2e\x39\xff\x0b\xa9\x96\x7f" "\xbb\xe4\xfc\xf3\x11\x2e\xf9\xb7\x4b\xce\x3f\x9f\xd9\x20\xff\x76\xc9\xf9" "\x2f\xa4\x5a\xfe\xed\x92\xf3\xbf\x94\x6a\xf9\xb7\x4b\xce\xff\x72\xaa\xe5" "\xdf\x2e\x39\xff\x57\x52\x2d\xff\x76\xc9\xf9\xbf\x9a\xea\x43\xe4\xef\xde" "\x5f\x27\x40\xce\xff\x4a\xaa\x6d\xff\xed\x92\xf3\x7f\x2d\xd5\xf2\x6f\x97" "\x9c\xff\xeb\xa9\x96\x7f\xbb\xe4\xfc\xbf\x91\x6a\xf9\xb7\x4b\xce\xff\x9b" "\xa9\x96\x7f\xbb\xe4\xfc\xbf\x95\x6a\xf9\xb7\x4b\xce\xff\xdb\xa9\x96\x7f" "\xbb\xe4\xfc\xbf\x13\x0f\x2f\x26\x95\x7f\x7b\xe4\xfc\xdf\x48\xb5\xed\xbf" "\x5d\x1e\xde\xff\xdf\x03\x0f\x3c\xf0\x20\x3f\x68\xfa\x37\x13\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x50\x37\x8e\xd3\x89\x9b\x5e\x47\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xbf\xec\xc0\x81" "\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x61\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\x0a\x7b\x77\x17\x23\x57\x79\xdf\x0f\xfc\xec\x9b\xbd" "\x36\xc4\xde\x24\x86\xf0\x62\x60\x6d\x0c\x18\x58\xbc\xeb\x17\xfc\xf2\xff" "\xd7\xc1\x40\x48\x29\xb4\x0d\x21\x81\xbe\x91\x1a\xd7\x5e\x9b\x4d\xfc\x56" "\xaf\x4d\x00\x21\xb1\x11\x34\x45\x02\xa9\x5c\x70\x41\x2b\x25\x05\x84\xaa" "\x5c\xa4\x0a\x6a\x13\x35\x48\x34\xa2\x52\xa5\x36\xbd\x69\xaf\xda\x9b\x2a" "\xad\xd4\xa8\x42\x51\xa8\x9c\xa8\x37\x8d\x0a\xae\xce\x9c\xe7\x79\x3c\x33" "\x3b\x3b\xb3\xeb\xdd\xb5\x67\xce\xf9\x7c\x10\xfe\x79\x67\xce\xcc\x3c\x7b" "\xe6\xcc\xec\x7e\xc7\xfa\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x6f\xc3\xbd" "\x93\x7f\xd8\x97\x65\x59\xfe\x7f\xed\x8f\x91\x2c\xbb\x3c\xff\xfb\xaa\x6c" "\x5f\xfe\xe5\xcc\xce\x4b\xbd\x42\x00\x00\x00\x60\xb1\x3e\xac\xfd\xf9\xed" "\xb5\xe9\x84\x7d\xf3\xb8\x50\xdd\x36\x7f\x77\xfd\x3f\x7e\xf7\xdc\xb9\x73" "\xe7\xb2\xec\x4f\xd6\x7d\xea\xd5\x7c\x06\xa3\x59\xb6\x66\x65\x96\x15\xe7" "\x05\xc3\x3f\x39\xd9\xb0\x4d\xf0\x7c\x36\xdc\xd7\x5f\xf7\x75\x7f\x87\x9b" "\x1f\xe8\x70\xfe\x60\x87\xf3\x87\x3a\x9c\xbf\xa2\xc3\xf9\x2b\x3b\x9c\x3f" "\xdc\xe1\xfc\x59\x3b\x60\x96\x55\xc5\xeb\x31\xb5\x2b\xdb\x54\xfb\xeb\x48" "\xb1\x4b\xb3\x75\xd9\x50\xed\xbc\x4d\x2d\x2e\xf5\x7c\xdf\xca\xfe\xfe\xf8" "\x5a\x4e\x4d\x5f\xed\x32\xe7\x86\x0e\x67\x53\xd9\xd1\x6c\x32\x9b\x98\x75" "\x99\xbe\xda\x7f\x59\xf6\xee\x86\xfc\xb6\xee\xcf\xe2\x6d\xf5\xd7\xdd\xd6" "\xfa\x2c\xcb\xce\xfe\xec\xd9\x83\x71\x0d\x7d\x61\x1f\x6f\xca\x1a\x6e\xac" "\xa6\xfe\xbe\xfb\xe0\xee\x6c\xf4\xe7\x3f\x7b\xf6\xe0\x93\x23\xbf\xb8\xae" "\xd5\xec\xb8\x1b\x66\xad\x34\xcb\x36\x6f\xcc\xd7\xf9\x42\x96\x9d\x7f\xb9" "\x2a\xeb\xcb\x56\xa6\x7d\x12\xd7\xd9\x5f\xb7\xce\xf5\x2d\xd6\x39\xd0\xb0" "\xce\xbe\xda\xe5\xf2\xbf\x37\xaf\xf3\xec\x3c\xd7\x19\xbf\xef\xe1\xb0\xce" "\x7f\x6a\xb3\xce\xf5\xe1\xb4\xa7\x6e\xcc\xb2\x6c\x26\x9b\x73\x9b\x66\xcf" "\x67\xfd\xd9\xea\xa6\x5b\x4d\xfb\x7b\xb8\x38\x22\xf2\xeb\xc8\xef\xca\x4f" "\x64\x83\x0b\x3a\x4e\x36\xcc\xe3\x38\xc9\x2f\xf3\xe3\x1b\x1b\x8f\x93\xe6" "\x63\x32\xee\xff\x0d\x61\x9f\x0c\xce\xb1\x86\xfa\xbb\xe3\x83\xaf\xad\x98" "\xb5\xdf\x2f\xf4\x38\xc9\xbf\xeb\x6e\x38\x56\xf3\xeb\x7e\x28\xbf\xd1\xe1" "\xe1\xfa\x97\x56\x1b\x8e\xd5\x7c\x9b\x67\x6f\x9a\xfb\x18\x68\x79\xdf\xb5" "\x38\x06\xd2\xb1\x5c\x77\x0c\x6c\xec\x74\x0c\xf4\xaf\x18\xa8\x1d\x03\xfd" "\xe7\xd7\xbc\xb1\xe1\x18\xd8\x3a\xeb\x32\xfd\x59\x5f\xed\xb6\xde\xbf\xa9" "\xfd\x31\x30\x7e\xfa\xd8\xc9\xf1\xe9\xa7\x9f\xb9\x63\xea\xd8\x81\x23\x93" "\x47\x26\x8f\x6f\xdf\xb1\x6d\xcf\xd6\x6d\xbb\x76\xec\x9e\x18\x3f\x3c\x75" "\x74\x32\xfc\xb9\xb0\x5d\xda\x43\x56\x67\xfd\xe9\x18\xdc\x18\x9e\x6b\xe2" "\x31\x78\x4b\xd3\xb6\xf5\x87\xe4\xb9\x37\x8a\xc7\xc1\xeb\x57\xef\xba\xbe" "\xd5\x5c\xc8\x1a\x86\x97\xe8\x71\xb0\x98\x35\x64\xe1\x78\xf9\xe2\xcd\xf9" "\x82\x2e\xef\xcf\xe6\x38\xc6\xf3\x6d\x5e\xd8\xbc\xf8\xc7\x41\xfa\xb9\x5f" "\xf7\x38\x18\xac\x7b\x1c\xb4\x7c\x4e\x6d\xf1\x38\x18\x9c\xc7\xe3\x20\xdf" "\xe6\xec\xe6\xf9\xfd\xcc\x1c\xac\xfb\xbf\xd5\x1a\x5a\x3d\x17\x2e\xc5\x31" "\x30\x52\x77\x0c\x2c\xe6\xe7\x61\xfd\x1a\x2e\xe4\xe7\x61\x7e\x9b\x8f\xdd" "\x3a\xf7\x73\xe1\xfa\xb0\xae\x17\x6f\x5b\xe8\xcf\xc3\x81\x59\xc7\x40\xfc" "\xb6\xfa\xc2\x63\x2f\x3f\x25\xfd\xbe\x37\xbc\x3b\xec\x97\xd9\xc7\xc5\x35" "\xf9\x19\x97\xad\xc8\xce\x4c\x4f\x9e\xda\xf2\xd4\x81\xd3\xa7\x4f\x6d\xcd" "\xc2\xb8\x28\x3e\x59\x77\x5f\x35\x1f\x2f\xab\xeb\xbe\xa7\x6c\xd6\xf1\xd2" "\xbf\xe0\xe3\x65\xdf\xe7\x3e\xda\x75\x4d\x8b\xd3\x47\xc2\xbe\x1a\xbe\xbd" "\xfd\x7d\x95\x6f\xb3\x63\xac\xfd\x7d\x55\x7b\x76\x6f\xbd\x3f\x1b\x4e\xdd" "\x96\x85\xb1\xc4\x2e\xf6\xfe\x6c\xf5\xd3\x2c\xdf\x9f\x29\x4b\xb4\xd9\x9f" "\xf9\x36\x2f\xdc\xb1\xf8\xdf\x05\x53\x2e\xa9\x7b\xfe\x1b\xea\xf4\xfc\x37" "\x30\x34\x58\x3c\xff\x0d\xa4\xbd\x31\xd4\xf0\xfc\x37\xfb\xae\x19\xa8\xad" "\x2c\xcb\xce\xde\x31\xbf\xe7\xbf\xa1\xf0\xff\xc5\x7e\xfe\x5b\xd7\x25\xcf" "\x7f\xf9\xbe\x7a\x6c\x4b\xfb\x63\x20\xdf\xe6\xc5\xf1\x85\x1e\x03\x83\x6d" "\x9f\xff\x6e\x0c\xb3\x2f\xac\xe7\xd6\x90\x18\x86\xeb\x72\xff\x47\xb5\xf3" "\x67\x8a\xc3\xb4\xee\xbe\xec\x78\xdc\x0c\x0e\x0e\x85\xe3\x66\x30\xde\x62" "\xe3\x71\xb3\x7d\xd6\x65\xf2\x6b\xcb\x6f\x7b\xf3\xc4\x85\x1d\x37\x9b\x6f" "\x6c\xbc\xaf\x1a\x7e\x6f\x29\xe1\x71\x93\xef\xab\x57\x27\xda\x1f\x37\xf9" "\x36\xef\x6d\x5d\xfc\x73\xc7\xaa\xf8\xd7\xba\xe7\x8e\x15\x9d\x8e\x81\xa1" "\x81\x15\xf9\x7a\x87\xd2\x41\x50\x3c\xdf\x9d\x5b\x15\x8f\x81\x2d\xd9\xc1" "\xec\x44\x76\x34\x3b\x94\x2e\x93\xdf\xcb\xf9\x6d\x8d\x6d\x9b\xdf\x31\xb0" "\x22\xfc\x7f\xb1\x9f\x3b\xae\xea\x92\x63\x20\xdf\x57\xaf\x6d\x6b\x7f\x0c" "\xe4\xdb\xfc\xed\xf6\xa5\xfd\xdd\x69\x73\x38\x25\x6d\x53\xf7\xbb\x53\xf3" "\xeb\x0b\x73\x65\xfe\x6b\x06\xcf\x5f\x5f\xf3\x6e\x5b\xea\xcc\x9f\xaf\xf3" "\x33\x3b\xda\xbf\x36\x94\x6f\xf3\xd3\x1d\x0b\xcd\x19\xed\xf7\xd3\xed\xe1" "\x94\xcb\x5a\xec\xa7\xe6\xc7\xcf\x5c\xc7\xf4\xa1\xac\xf3\x7e\x5a\xaa\x63" "\x3a\x5f\xe7\xd1\x3b\xdb\xbf\x36\x95\x6f\xb3\x6e\xe7\x3c\x8f\xa7\x7d\x59" "\x96\xbd\xf3\xd2\x5b\xc5\xeb\x5d\xc5\xeb\xbb\x7f\x71\xe6\x9f\xbf\xdb\xf0" "\xba\x6f\xab\xd7\x94\xdf\x79\xe9\xad\xcf\x5f\xfd\xc3\x1f\x2e\x64\xfd\x00" "\x00\x5c\xb8\x8f\x6a\x7f\xce\xac\x28\x7e\xd7\xac\xfb\x17\xeb\xf9\xfc\xfb" "\x3f\x00\x00\x00\xd0\x13\x62\xee\xef\x0f\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\x1f\x08\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x1f\x0c\x33\xd9" "\xd7\xe9\xdd\xf1\xca\xe1\x89\xbe\xaf\xbf\xfa\xe1\x73\x59\x7a\x37\xc0\x73" "\x41\x3c\x3f\xbe\x0c\xf2\xd0\xca\x62\xbb\xd8\xf1\x9e\x09\x5f\x8f\x9e\x3b" "\x2f\x3f\xfd\x9e\xb7\x86\x1e\xfc\xde\x73\xf3\xbb\xed\xfe\x2c\xcb\xfe\xf7" "\x81\x6b\x5b\x6e\xff\xc4\xca\xb8\xae\xc2\xc9\xb8\xce\x81\xc6\xd3\x67\xb9" "\xea\x86\x79\xdd\xfe\xe3\x8f\x9c\xdf\xae\xfe\xfd\x13\xce\xf6\x17\xd7\x1f" "\xbf\x9f\xf9\xbe\x0c\x14\xbb\xca\xef\xfe\xdb\x3d\xb5\xeb\x1d\xbd\xb5\x98" "\xef\x3d\x90\xd5\xe6\xc3\x33\x2f\x3e\x5f\xbb\xfe\x3d\xc5\xd7\x71\xfb\xf7" "\xff\xa3\xd8\xee\x1b\xe1\x4d\x4b\xf6\x1d\xee\x6b\xb8\xfc\xe6\xb0\x9e\x4d" "\x61\x8e\x86\xf7\x94\x79\x68\xd5\xf9\xfd\x90\xcf\x78\xb9\xef\xbc\x7b\xe4" "\xef\x3f\xfd\xe8\xf9\xdb\x8b\x97\xeb\xdb\xb8\xa6\xf6\x6d\xbe\xb6\xa5\xb8" "\xde\xf8\x1e\x51\xaf\xfc\x65\xb1\x7d\xfc\xbe\xe7\x5a\xff\x5f\xbf\xf4\xad" "\xef\xe4\xdb\x3f\x75\x53\xeb\xf5\x3f\xd7\xdf\x7a\xfd\xef\x87\xeb\xfd\x71" "\x98\xff\xf3\x41\x71\x7a\xfd\x3e\xff\x5e\xdd\xfa\xff\x20\xac\x3f\xde\x5e" "\xbc\xdc\x96\x37\x7f\xd0\x72\xfd\x6f\xff\x55\xb1\xfd\xdb\xe1\xb8\x78\x3d" "\xcc\xe6\xf5\xdf\xfd\x47\xd7\x7d\xd8\xea\xfe\x8a\xb7\xb3\x6f\xb0\xb8\x5c" "\xbc\xfd\x89\x3f\xbb\xaf\x76\xb9\x78\x7d\xf1\xfa\x9b\xd7\x3f\x3c\x7e\x4f" "\xc3\xfe\x68\xbe\xfe\xf7\xde\x2c\xae\x67\xef\x93\xff\x3d\x50\xbf\x7d\x3c" "\x3d\xde\x4e\xf4\xf8\x60\xe3\xf1\xdd\x17\xee\xdf\x86\x1e\x79\x96\x65\xdf" "\xfa\x7a\xd6\xb0\x9f\xb3\xa1\xe2\x72\xef\x34\xad\x3f\x5e\xdf\xc9\xc1\xd6" "\xeb\xbf\xbd\x69\x9d\x27\xdf\x78\xa2\x76\xf9\xe6\xef\x27\xfa\xe6\x23\xf7" "\xb6\xfc\x7e\xe3\x7a\xf6\xfd\xf9\x48\xc3\xf7\xf3\xca\x9a\xb0\xff\xfa\x57" "\xfd\x43\x7e\xbd\xef\x5f\x1b\x8e\xc7\x70\xfe\x2f\x66\x8a\xeb\x6b\x7e\x2f" "\xd3\xb7\xd7\x34\x3e\xdf\xc4\xed\x5f\x1f\x29\x1e\xb7\xf1\xfa\xc6\x9b\xd6" "\xff\x4a\xd3\xfa\x67\x6e\xc8\xf7\x5d\xe7\xf5\xdf\xff\xf3\x62\xfd\x6f\xdf" "\xb5\xb2\x61\xfd\xfb\xd6\x86\xe3\xe9\xe3\xc5\xec\xb4\xfe\x23\x7f\xba\xb6" "\xe1\xf2\x6f\x7c\xb6\x58\xcf\xa9\xaf\x8e\x1d\x3f\x31\x7d\x66\x2a\xbe\xc7" "\xc1\x48\xd3\xe3\x78\xe5\xf0\xaa\xd5\x97\x5d\xfe\xb1\x35\x6b\xc3\x73\x69" "\xf3\xd7\xfb\x4f\x9c\x7e\x62\xf2\xd4\xe8\xc4\xe8\x44\x96\x8d\xf6\xe0\x5b" "\x06\x2e\xf7\xfa\xdf\x0c\xf3\xbf\x8a\x31\xb3\xf4\xb7\x50\xf8\x97\xc1\xe2" "\xb8\x7b\xf9\xc1\xe2\xe7\xd6\x2d\x43\xc5\xd7\xaf\x84\xd3\x1f\x0f\xf7\x67" "\xfc\xf9\xf8\xcd\x3f\x1e\x6a\x38\x5e\x9b\xef\xf7\x99\xe1\x62\x2e\x76\xfd" "\xb7\x85\x75\xcc\xd7\xfa\x4d\x3f\xd9\x3d\xaf\x0d\xff\x73\xc7\xdb\xaf\xfe" "\xeb\xc3\x5f\x6a\xfe\xbd\x20\x7e\x3f\x27\xaf\x18\xae\x7d\x7f\xaf\x6d\xb8" "\xb2\x76\x5e\xdf\x7b\xc5\xf9\xcd\xcf\x57\x9d\xfc\xfb\x15\x8d\x8f\xeb\x1f" "\xad\x2b\xe6\xf7\xc3\x7e\x3d\x17\xde\x99\x79\xe3\x95\xc5\xed\x35\x5f\x7f" "\x7c\x6f\x92\x97\xbf\x50\x3c\x7e\xe3\x6f\x72\xf1\xf2\x59\xd3\xfb\x89\x8c" "\x0c\x34\x7e\x1f\x8b\x5d\xff\x8f\xc2\xef\x31\x3f\xb8\xaa\xf1\xf9\x2f\x1e" "\x1f\xdf\x7f\xae\xe9\xdd\x9c\x47\xb2\xbe\x7c\x09\x33\xe1\xf9\x21\x9b\x29" "\xce\x8f\x5b\xc5\xfd\xfd\xf2\xd9\x2b\x5b\xde\x5e\x7c\x1f\x9e\x6c\xe6\xea" "\x85\x2c\x73\x4e\xd3\x4f\x4f\x8f\x1f\x9d\x3a\x7e\xe6\xa9\xf1\xd3\x93\xd3" "\xa7\xc7\xa7\x9f\x7e\x66\xff\xb1\x13\x67\x8e\x9f\xde\x5f\x7b\xef\xd2\xfd" "\x5f\xee\x74\xf9\xf3\x8f\xef\xd5\xb5\xc7\xf7\xa1\xc9\x9d\x3b\xb2\xda\xa3" "\xfd\x44\x31\x96\xd9\xa5\x5e\xff\xc9\x47\x0e\x1e\xda\x35\x71\xf3\xa1\xc9" "\xc3\x07\xce\x1c\x3e\xfd\xc8\xc9\xc9\x53\x47\x0e\x4e\x4f\x1f\x9c\x3c\x34" "\x7d\xf3\x81\xc3\x87\x27\xbf\xda\xe9\xf2\x53\x87\xf6\x6e\xdd\xb6\x67\xfb" "\xae\x6d\x63\x47\xa6\x0e\xed\xdd\xbd\x67\xcf\xf6\x3d\x63\x53\xc7\x4f\xe4" "\xcb\x28\x16\xd5\xc1\xce\x89\xaf\x8c\x1d\x3f\xb5\xbf\x76\x91\xe9\xbd\x3b" "\xf6\x6c\xbd\xf3\xce\x1d\x13\x63\xc7\x4e\x1c\x9a\xdc\xbb\x6b\x62\x62\xec" "\x4c\xa7\xcb\xd7\x7e\x36\x8d\xe5\x97\x7e\x72\xec\xd4\xe4\xd1\x03\xa7\xa7" "\x8e\x4d\x8e\x4d\x4f\x3d\x33\xb9\x77\xeb\x9e\x9d\x3b\xb7\x75\x7c\xf7\xc7" "\x63\x27\x0f\x4f\x8f\x8e\x9f\x3a\x73\x7c\xfc\xcc\xf4\xe4\xa9\xf1\xe2\x7b" "\x19\x3d\x5d\x3b\x39\xff\xd9\xd7\xe9\xf2\x54\xc3\xf4\xda\xf0\x7c\xd7\xa4" "\x2f\xfc\x76\x7e\xdf\xed\x3b\xd3\xfb\xe3\xe6\xde\xfa\xda\x9c\x57\x55\x6c" "\x32\xd2\x78\xe2\x4f\xc3\x7b\x41\x7d\x63\x78\xfb\xee\xf9\x7c\x1d\x73\xff" "\x50\x98\x89\x7f\xff\x07\x00\x00\x80\xd2\x88\xb9\x3f\x7c\x3e\xc5\xf9\xd7" "\xdd\xe5\x7f\x00\x00\x00\x28\x8d\xf0\x81\x7f\xe1\x33\x23\xfd\xfb\x3f\x00" "\x00\x00\x94\x51\xcc\xfd\xc3\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\x17\xd0" "\xff\x4f\x75\x6d\xfd\x7f\xfd\xff\x4c\xff\x5f\xff\xbf\x03\xfd\x7f\xfd\xff" "\x76\xf4\xff\xf5\xff\x7b\x79\xfd\xfa\xff\xfa\xff\x74\xd6\x6d\xfd\xff\x98" "\xfb\x57\x65\x59\x25\xf3\x3f\x00\x00\x00\x54\x41\xcc\xfd\xab\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\x2f\x0b\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\xbf\x3c\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\xdf\xe7\xff\x97\xaf\xff" "\xdf\x97\x65\x33\xfa\xff\xfa\xff\xdd\x42\xff\x5f\xff\xbf\x1d\xfd\x7f\xfd" "\xff\x5e\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f\xe6\xfe\x8f\x85\x99" "\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x26\xcc\x44\xfe\x07\x00\x00" "\x80\xd2\x88\xb9\x7f\x6d\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x48" "\x98\x49\x99\xf2\xff\x5d\x73\x9f\xa5\xff\x5f\xf5\xfe\xff\x80\xfe\x7f\x09" "\xfb\xff\x3e\xff\xbf\xa0\xff\xdf\x1d\xf4\xff\xf5\xff\xdb\xd1\xff\xd7\xff" "\xef\xe5\xf5\xeb\xff\xeb\xff\xd3\x59\xb7\xf5\xff\x63\xee\xff\x78\x98\x49" "\x99\xf2\x3f\x00\x00\x00\x54\x5c\xcc\xfd\x9f\x08\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xff\x64\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xba" "\x30\x93\x8a\xe4\x7f\xfd\xff\xaa\xf7\xff\x7d\xfe\x7f\xa6\xff\xbf\x8c\xfd" "\xff\xb8\xa5\xfe\xbf\xfe\xbf\xfe\x7f\xaf\xf7\xff\x57\x85\x93\xf5\xff\x1b" "\xe9\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x5e\xb7\xf5\xff\x63\xee\xbf\x22\xcc" "\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\x2b\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\x3f\x15\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f" "\x55\x98\x49\x45\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xcf\xff\xd7\xff" "\x5f\x4e\xfa\xff\xe5\xe8\xff\xc7\x93\xf5\xff\x1b\xe9\xff\xeb\xff\xeb\xff" "\xeb\xff\xd3\x5e\xb7\xf5\xff\x63\xee\xbf\x3a\xcc\xa4\x22\xf9\x1f\x00\x00" "\x00\xaa\x20\xe6\xfe\x6b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xaf" "\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x5f\x1f\x66\x52\x91\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xbf\x9c\xf4\xff\xf5\xff\xdb" "\xd1\xff\xd7\xff\xef\xe5\xf5\xeb\xff\xeb\xff\xd3\x59\xb7\xf5\xff\x63\xee" "\xbf\x2e\xcc\xa4\x22\xf9\x1f\x00\x00\x00\xaa\x20\xe6\xfe\xeb\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x34" "\x62\xee\x1f\x0d\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\x5f\x4e\xfa\xff\xfa\xff\xed\xe8\xff\xeb\xff\xf7\xf2\xfa\xf5\xff" "\xf5\xff\xe9\xac\xdb\xfa\xff\x31\xf7\x6f\x08\x33\xa9\x48\xfe\x07\x00\x00" "\x80\x2a\x88\xb9\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x8d" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x9b\xc2\x4c\x2a\x92\xff\xf5" "\xff\xf5\xff\xf5\xff\xcb\xda\xff\x1f\xd0\xff\xd7\xff\xef\x0a\xfa\xff\xfa" "\xff\xed\xe8\xff\xeb\xff\xf7\xf2\xfa\xf5\xff\xf5\xff\xe9\xac\xdb\xfa\xff" "\x31\xf7\xdf\x14\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xcd\x61" "\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xb7\x84\x99\xc8\xff\x00\x00\x00" "\x50\x1a\x31\xf7\x6f\x0e\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\x2f\x6b" "\xff\xdf\xe7\xff\xeb\xff\x77\x07\xfd\x7f\xfd\xff\x76\xf4\xff\xf5\xff\x7b" "\x79\xfd\xfa\xff\xfa\xff\x74\xd6\x6d\xfd\xff\x98\xfb\x6f\x0d\x33\xa9\x48" "\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xb6\x30\x13\xf9\x1f\x00\x00\x00\x4a" "\x23\xe6\xfe\xdb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xc7\xc2\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x97\x93\xfe" "\xbf\xfe\x7f\x3b\xfa\xff\xfa\xff\xbd\xbc\x7e\xfd\x7f\xfd\x7f\x3a\xeb\xb6" "\xfe\x7f\xcc\xfd\x77\x84\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf" "\x25\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\x7f\x3c\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\x7f\x22\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x7f\x39\xe9\xff\xeb\xff\xb7\xa3\xff\xaf\xff\xdf\xcb" "\xeb\xd7\xff\xd7\xff\xa7\xb3\x6e\xeb\xff\xc7\xdc\xbf\x35\xcc\xa4\x22\xf9" "\x1f\x00\x00\x00\x7a\xd4\x75\x0b\xd9\x38\xe6\xfe\x6d\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\xdb\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x77\x84\x99\x54\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\x2f\x27\xfd\x7f\xfd\xff\x76\xea\xfb\xff\xf9\x25\xf5\xff\xab\xd2\xff\x9f" "\xeb\x27\x4d\xaf\xac\xbf\xa0\xff\xaf\xff\x4f\x67\xdd\xd6\xff\x8f\xb9\xff" "\xce\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x77\x86\x99\xc8\xff" "\x00\x00\x00\x50\x1a\x31\xf7\xef\x0a\x33\x99\x9d\xff\xff\xe6\xe2\xad\x0a" "\x00\x00\x00\x58\x4a\x31\xf7\xef\x0e\x33\xe9\xf9\x7f\xff\x9f\x5f\xaf\xaa" "\x52\xfd\xff\x03\xf7\xa7\xbf\xea\xff\x17\xf4\xff\xf5\xff\x33\xfd\x7f\xfd" "\xff\x65\xa6\xff\xaf\xff\xdf\x8e\xcf\xff\xaf\x6a\xff\x7f\x69\x5c\xea\xf5" "\xeb\xff\xeb\xff\xd3\x59\xb7\xf5\xff\x63\xee\xdf\x13\x66\xd2\xf3\xf9\x1f" "\x00\x00\x00\x88\x62\xee\xff\x7f\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\xff\x3f\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x97\xc2\x4c\x2a" "\x92\xff\x2b\xd5\xff\xaf\xa3\xff\x5f\xd0\xff\xd7\xff\xcf\xf4\xff\xf5\xff" "\x97\x99\xfe\xbf\xfe\x7f\x3b\xfa\xff\xfa\xff\xbd\xbc\xfe\xee\xed\xff\x7f" "\x7b\x75\x96\xe9\xff\xd3\x1d\xba\xad\xff\x1f\x73\xff\xde\x30\x93\x8a\xe4" "\x7f\x00\x00\x00\xa8\x82\x98\xfb\x3f\x1d\x66\x32\x77\xfe\x1f\x5e\xfe\x55" "\x01\x00\x00\x00\x4b\x29\xe6\xfe\xbb\xc2\x4c\xfc\xfb\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\xfb\xc2\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\x97\x93\xfe\xbf\xfe\x7f\x3b\x8b\xeb\xff\x8f\xea\xff\x2f\xd2" "\xa5\xee\xcf\xf7\xfa\xfa\xbb\xb7\xff\xef\xf3\xff\xe9\x1e\xdd\xd6\xff\x8f" "\xb9\xff\xee\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x09\x33" "\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x37\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x33\x61\x26\x15\xc9\xff\x17\xad\xff\xdf\xa2\x50\xac\xff" "\xaf\xff\x9f\xe9\xff\xeb\xff\xeb\xff\xeb\xff\x2f\x92\xfe\x7f\x95\xfb\xff" "\x3e\xff\x7f\xb1\x2e\x75\x7f\x7e\x09\xd6\x9f\xdf\xe5\xfa\xff\xfa\xff\x74" "\xb1\x6e\xeb\xff\xc7\xdc\x7f\x5f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41" "\xcc\xfd\x9f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\xe5\x30\x13" "\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xfb\xc3\x4c\x2a\x92\xff\x7d\xfe\xbf" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x72\xd2\xff\xd7\xff\x6f\x47\xff" "\x5f\xff\xbf\x97\xd7\xaf\xff\xaf\xff\x4f\x67\xdd\xd6\xff\x8f\xb9\xff\x57" "\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\x7f\x20\xcc\x44\xfe\x07" "\x00\x00\x80\xd2\x88\xb9\xff\xc1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\x5f\x0d\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7" "\xff\x5f\x4e\xfa\xff\xfa\xff\xed\xe8\xff\xeb\xff\xf7\xf2\xfa\xf5\xff\xf5" "\xff\xe9\xac\xdb\xfa\xff\x31\xf7\xff\x5a\x98\x49\x45\xf2\x3f\x00\x00\x00" "\x94\xc2\xdc\xaf\x1f\xd4\xc4\xdc\xff\xeb\x61\x26\xf2\x3f\x00\x00\x00\x94" "\x46\xcc\xfd\x9f\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x7f\x28\xcc" "\xa4\x22\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x39\xe9" "\xff\xeb\xff\xb7\xa3\xff\xaf\xff\xdf\xcb\xeb\xd7\xff\xd7\xff\xa7\xb3\x6e" "\xeb\xff\xc7\xdc\xff\xf9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb" "\x1f\x0e\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x42\x98\x89\xfc\x0f" "\x00\x00\x00\x3d\xe0\xec\xbc\xb6\x8a\xb9\xff\x8b\x61\x26\x15\xc9\xff\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\x4b\xd8\xff\x5f\x91\xe9\xff\x27\xfa\xff\xab" "\x6a\x7f\xea\xff\xeb\xff\xb7\xd3\x4b\xfd\xff\x56\xe7\xe8\xff\xeb\xff\xeb" "\xff\xeb\xff\xd3\x5e\xb7\xf5\xff\x63\xee\x7f\x24\xcc\xa4\x22\xf9\x1f\x00" "\x00\x00\xaa\x20\xe6\xfe\x47\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\x7f\x23\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x37\xc3\x4c\x2a\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\xbf\xfe\xff\x72\xd2\xff\xd7" "\xff\x6f\xa7\x97\xfa\xff\xad\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x5e\xb7" "\xf5\xff\x63\xee\xff\xad\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb" "\x7f\x3b\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\x77\xc2\x4c\xe4\x7f" "\x00\x00\x00\x28\x8d\x98\xfb\x1f\x0b\x33\xa9\x48\xfe\x2f\xfa\xff\x8f\x1e" "\xd4\xff\x2f\xe8\xff\xeb\xff\xeb\xff\xeb\xff\x47\xfa\xff\x4b\x43\xff\x5f" "\xff\xbf\x1d\xfd\x7f\xfd\xff\x5e\x5e\xbf\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff" "\x3f\xe6\xfe\x2f\x85\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xff\xbb" "\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xfb\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8d\x98\xfb\x1f\x0f\x33\xa9\x48\xfe\xf7\xf9\xff\xfa\xff\xfa\xff" "\xfa\xff\x0b\xe9\xff\xaf\x6a\x71\xba\xfe\x7f\x41\xff\xbf\x35\xfd\x7f\xfd" "\xff\x76\xf4\xff\xcb\xdc\xff\x5f\xb1\x24\x6b\xbc\x74\xeb\x9f\xeb\x09\x6b" "\x30\xfd\x4d\xff\x5f\xff\x9f\xce\xba\xad\xff\x1f\x73\xff\x81\x30\x93\x8a" "\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x7f\x2f\xcc\x44\xfe\x07\x00\x00\x80" "\xd2\x88\xb9\xff\x60\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\xa1\x30" "\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x1e\xf9\xfc\xff\xa1\x6c" "\x39\xfa\xff\x33\xfa\xff\xcb\xad\x24\xfd\xff\xf7\xf4\xff\x0b\xfa\xff\x8d" "\xf4\xff\x7d\xfe\xbf\xfe\xbf\xfe\x3f\xed\x75\x5b\xff\x3f\xe6\xfe\xc9\x30" "\x93\x8a\xe4\x7f\x00\x00\x00\xe8\x75\xf3\x79\xd7\xd1\x98\xfb\x0f\x87\x99" "\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x1f\x09\x33\x91\xff\x01\x00\x00\xa0" "\x34\x62\xee\x7f\x22\xcc\xa4\x22\xf9\xbf\x1b\xfb\xff\x37\xe8\xff\xeb\xff" "\xeb\xff\xa7\xeb\xd1\xff\xf7\xf9\xff\xfa\xff\xed\xf9\xfc\x7f\xfd\xff\x4c" "\xff\xff\x82\x5d\xea\xfe\x7c\xaf\xaf\x5f\xff\x5f\xff\x9f\xce\xba\xad\xff" "\x1f\x73\xff\x54\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x5f\x0e" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff\x4a\x98\x89\xfc\x0f\x00\x00" "\x00\x3d\x67\xe5\x1c\xa7\xc7\xdc\x7f\x34\xcc\xa4\x22\xf9\xbf\x1b\xfb\xff" "\x99\xfe\xbf\xfe\xbf\xfe\x7f\xba\x1e\xfd\x7f\xfd\x7f\xfd\xff\xf6\xf4\xff" "\xf5\xff\x33\xfd\xff\x0b\x76\xa9\xfb\xf3\xbd\xbe\xfe\x25\xed\xff\xaf\xd0" "\xff\xa7\x9c\xba\xad\xff\x1f\x73\xff\xb1\x30\x93\x8a\xe4\x7f\x00\x00\x00" "\xa8\x82\x98\xfb\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x9f\x08" "\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x19\x66\xd2\x93\xf9\xbf\x6f" "\xce\xde\xee\x5c\xf4\xff\xf5\xff\xbb\xad\xff\x5f\xdf\xbc\x2c\x75\xff\x7f" "\xa5\xfe\xbf\xfe\xbf\xfe\xff\x52\xd0\xff\xd7\xff\xcf\xf4\xff\x2f\xd8\xa5" "\xee\xcf\xf7\xfa\xfa\x7d\xfe\xbf\xfe\x3f\x9d\x75\x5b\xff\x3f\xe6\xfe\xdf" "\x0f\x33\xe9\xc9\xfc\x0f\x00\x00\x00\xb4\x12\x73\xff\xa9\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\xe9\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\xff\x63\xef\x3e\x77\xf4\xb8\xab\x38\x8e\x3f\xb6\x12\x3b\x91\x20\xbc" "\x47\xdc\x0b\x88\xfb\xe0\x35\x37\x40\x2f\x89\xe9\x2d\xf4\x1a\x9a\xa9\xa1" "\xf7\xde\x5b\xe8\x10\x7a\xef\xbd\xd7\x50\x42\x91\x82\xb4\x7b\xce\x89\x37" "\x5e\xcf\xec\x3e\xf8\xf1\xce\xfc\xcf\xe7\xf3\xe6\xb0\x64\xd7\x3b\x91\x8d" "\xd1\x4f\xab\xaf\xe6\x01\x71\xcb\xf4\xfe\x3f\xbd\xdb\xa7\xba\x72\xf4\xff" "\xfa\xff\xa5\xf5\xff\x6d\xdf\xff\x7f\x95\xfe\x3f\xe9\xff\xf5\xff\xc7\xa1" "\xff\xd7\xff\x6f\xf4\xff\x5b\x3b\xe9\x7e\x7e\xed\xcf\xaf\xff\xd7\xff\x33" "\x6f\x69\xfd\x7f\xee\xfe\x07\xc6\x2d\x7e\xfe\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xa0\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x70\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x3f\x24\x6e\x69\xb2\xff\xaf\x6c\xff\x7f\xdf\x03" "\x1f\xe9\xff\xf5\xff\x9b\xad\xfa\xff\xb3\xf5\xb5\x43\xf5\xff\xde\xff\x7f" "\xe7\xef\xab\xfe\x5f\xff\x7f\x0c\x5d\xfb\xff\xfc\x9b\x50\xff\xbf\x4f\xff" "\xbf\x9d\x93\xee\xe7\xd7\xfe\xfc\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee" "\x7f\x68\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x16\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x0f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x47\xc4\x2d\x4d\xf6\xbf\xf7\xff\xeb\xff\xd7\xd7\xff\x0f\xfa\xfe\x7f" "\xfd\x7f\xd1\xff\xeb\xff\x8f\xa3\x6b\xff\x9f\xf4\xff\xfb\xf4\xff\xdb\x39" "\xe9\x7e\x7e\xed\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\x47\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xfa\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xcf\xc5" "\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xbb\xa4\xff" "\xd7\xff\x4f\xd1\xff\x2f\xb7\xff\xbf\x43\xff\x3f\xfb\xfd\xf5\xff\xfa\x7f" "\xe6\x2d\xad\xff\x3f\x77\xe3\x66\x6f\xf7\xef\x7f\x9b\x7e\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\xe8\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x4c" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x36\x6e\x69\xb2\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x25\xfd\xbf\xfe\x7f\x8a\xfe\x7f" "\xb9\xfd\xbf\xf7\xff\xeb\xff\xe7\xbe\x5e\xff\xcf\x51\x2c\xad\xff\xcf\xdd" "\xff\xb8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3e\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x9f\x10\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x4f\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x77\x49\xff\xaf\xff\x9f\xb2\x92\xfe\x3f\x7e\x89\x8b\x7f\x7b\xf4\xff\x43" "\xf7\xff\xf7\xbf\xd7\xcc\xd7\x5f\xb2\xff\x3f\xb5\xd1\xff\xeb\xff\x09\x4b" "\xeb\xff\x73\xf7\x3f\x29\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x4f" "\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xa7\xc4\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x8d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\x2e\xe9\xff\xf5\xff\x53\x56\xd2\xff\x5f\x92\xfe\x7f\xe8" "\xfe\x7f\xf6\xfb\x7b\xff\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\x3f\x35\x6e" "\x39\x30\xfc\xce\x1e\xf3\xdf\x12\x00\x00\x00\x58\x92\xdc\xfd\x4f\x8b\x5b" "\x9a\xfc\xfc\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xf4\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\x7f\x46\xdc\xd2\x64\xff\xeb\xff\xe7\xfb\xff\xeb\xef\x3e" "\xff\xeb\xe9\xff\x0f\x7f\x7e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xa0" "\xff\xbf\xf9\x90\x4f\xd4\xff\x1f\x89\xfe\xbf\x51\xff\x7f\xed\xc5\x5f\xaf" "\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\x67\xc6\x2d\x4d\xf6\x3f\x00\x00" "\x00\x74\x90\xbb\xff\x59\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xec" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x4e\xdc\x72\x9f\xcd\xe6\x88" "\x19\xfb\xaa\xe9\xff\xbd\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49\xff" "\xbf\x82\xfe\xff\x30\xfa\xff\x23\xd1\xff\x37\xea\xff\x0f\xa1\xff\xd7\xff" "\x33\x6f\x69\xfd\x7f\xee\xfe\xe7\xc6\x2d\x7e\xfe\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xbc\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x7e\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xbf\x20\x6e\x69\xb2\xff\xf5\xff\xeb\xe9\xff" "\xaf\xd2\xff\x8f\xd0\xff\xdf\xf3\x96\xf3\xf7\xd3\xff\xc7\x3f\xd7\xff\xeb" "\xff\x2f\x07\xfd\xbf\xfe\x7f\xa3\xff\xdf\xda\x49\xf7\xf3\x6b\x7f\x7e\xfd" "\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xdf\x14\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8b\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xc5\x71\x4b\x93\xfd\xaf\xff\x5f" "\x4f\xff\xef\xfd\xff\x43\xf4\xff\xde\xff\xbf\xe0\xfe\xff\x51\xf1\xe7\x31" "\xe9\xff\x2f\x0f\xfd\xbf\xfe\x7f\xca\x65\xe8\xff\x6f\xba\x4e\xff\xbf\xb5" "\x93\xee\xe7\x4f\xe8\xf9\x4f\x5f\xae\xe7\xd7\xff\xeb\xff\x99\xb7\xb4\xfe" "\x3f\x77\xff\x4b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd2\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x3f\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x2f\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x7b\xff\xff\x2e\xe9\xff\xf5\xff\x53\xbc\xff\x5f\xff\xbf\xe6\xe7\xd7\xff" "\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\xcb\xe3\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x65\xdc" "\x62\xff\x03\x00\x00\xc0\xaa\x5d\xd8\x81\xe5\xee\x7f\x55\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xfa\xff\x4b\xf5\xff\xe7\xf5\xff\x77\xa1\xff\xd7\xff\x6f" "\x43\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xf9\xf5\xff\xfa\x7f\xe6\x2d" "\xad\xff\xcf\xdd\xff\xea\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xdf" "\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x89\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\xd7\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xf7\xfe" "\x7f\xfd\xbf\xfe\x7f\x97\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\x9f\x5f" "\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\xaf\x8b\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\xeb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x0d" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc6\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x97\xf4\xff\xfa\xff\x29\xfa\x7f" "\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x6f\x8a\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x9b\xe3\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd6\xb8" "\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x97\xf4\xff" "\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff" "\xdc\xfd\x6f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xdb\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xce\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x7f\x97\xf4\xff\xfa\xff\x29\xeb\xeb\xff\xaf\x3e\xf0\x91\xfe\x5f\xff" "\xaf\xff\xd7\xff\x33\x6d\x69\xfd\x7f\xee\xfe\x77\xc5\x2d\x4d\xf6\x3f\x00" "\x00\x00\x74\x90\xbb\xff\xdd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\x9e\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6f\xdc\xd2\x64\xff\xeb" "\xff\x3b\xf7\xff\xa7\xce\x6d\x36\xfa\xff\x8d\xfe\x5f\xff\xaf\xff\xdf\x29" "\xfd\xbf\xfe\x7f\xca\xfa\xfa\xff\x83\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x69" "\x4b\xeb\xff\x73\xf7\xbf\x2f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\xef\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc4\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x07\xe3\x96\x26\xfb\x5f\xff\xdf\xb9\xff\xf7\xfe" "\x7f\xfd\xff\xc1\xe7\xd4\xff\xeb\xff\x77\x41\xff\xaf\xff\x9f\xa2\xff\xd7" "\xff\xaf\xf9\xf9\x97\xdc\xff\x9f\xd6\xff\xb3\x10\x27\xde\xff\xe7\x27\xc6" "\xc7\xb9\xfb\x3f\x14\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x0f\xc7" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x47\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xa3\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x17" "\xf6\xff\x67\x0e\xff\x23\xbe\x47\xff\xaf\xff\xdf\x86\xfe\x5f\xff\x3f\x45" "\xff\xaf\xff\x5f\xf3\xf3\x2f\xb9\xff\xf7\xfe\x7f\x96\xe2\xc4\xfb\xff\xbb" "\x7c\x9c\xbb\xff\x63\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x78" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x22\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x6f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7" "\xfe\x7f\xfd\xff\x2e\xe9\xff\xf5\xff\x53\xf4\xff\xab\xeb\xff\xaf\xba\xf0" "\x03\xfd\xbf\xfe\x5f\xff\xcf\x9c\xa5\xf5\xff\xb9\xfb\x3f\x19\xb7\x34\xd9" "\xff\x00\x00\x00\xb0\x72\xd7\x1e\xe5\x93\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\x5b\x9a\xec\xff\x6d\xfa\xff\xb3\xfa\xff\x8b\xe8\xff\x0f\x7f\x7e" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x58\xff\x7f\xcd\xb6\xdf\x47\xff\xbf\x4f" "\xff\x7f\x50\xc3\xfe\xff\x00\xfd\xbf\xfe\x5f\xff\xcf\x9c\xa5\xf5\xff\xb9" "\xfb\x3f\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xcf\xc5\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\xe7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x0b\x71\x4b\x93\xfd\xef\xfd\xff\xfa\x7f\xfd\xff\xb1\xfa\xff\x1b" "\xf4\xff\xfa\x7f\xfd\xff\xf1\x2c\xac\xff\xdf\x9a\xfe\x7f\xdf\xee\xfa\xff" "\x7b\x6f\x7a\xf4\xff\x57\xc7\x7f\xd0\xff\x8f\xf0\xfc\xfa\x7f\xfd\x3f\xf3" "\x96\xd6\xff\xe7\xee\xff\x62\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\x6f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2f\xc5\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x97\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\x7b" "\xff\xbf\xfe\x5f\xff\xbf\x4b\xfa\xff\xe3\xf6\xff\x67\x8e\xf5\x5c\xe3\xf4" "\xff\xde\xff\xbf\xd1\xff\xaf\xee\xf9\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf" "\xdd\xff\x95\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x7f\x35\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x16\xb7\xd8\xff\x00\x00\x00\x30\x8c" "\xdc\xfd\x5f\x8f\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\x77\x49\xff\xef\xfd\xff\x53\xf4\xff\xfa\xff\x35\x3f\xbf\xfe\x5f\xff" "\xcf\xbc\xa5\xf5\xff\xb9\xfb\xbf\x11\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xb7\xe2\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xdb\x71\x4b\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\x85\xf4\xff\xa7\xce\xe9\xff\xb7\xa0\xff\xd7\xff\x6f" "\xf4\xff\x5b\x3b\xe9\x7e\x7e\xed\xcf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f" "\xee\xfe\xef\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xbb\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xbd\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x7e\xdc\xd2\x64\xff\xcf\xf4\xff\xd5\xc0\xe9\xff\xa7\xe9\xff" "\x37\x7b\xff\xfb\xd1\xff\x1f\xfc\xf5\xf5\xff\xfa\x7f\xef\xff\xd7\xff\xeb" "\xff\xa7\xe9\xff\xf5\xff\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73" "\xf7\xff\x20\x6e\xb9\x73\xf8\x9d\x39\xfe\xbf\x25\x00\x00\x00\xb0\x24\xb9" "\xfb\x7f\x18\xb7\x34\xf9\xf9\x3f\x00\x00\x00\x74\x90\xbb\xff\x47\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe3\xb8\xa5\xc9\xfe\xf7\xfe\x7f\xfd" "\xbf\xf7\xff\xeb\xff\xf5\xff\xfa\xff\x5d\xd2\xff\xeb\xff\xa7\xe8\xff\xf5" "\xff\x6b\x7e\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xff\x24\x6e\x69" "\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x3f\x8d\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x9f\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xcf\xe3\x96" "\x26\xfb\x5f\xff\x3f\x6a\xff\x7f\xdb\xdd\xf6\xff\xa9\xfe\x5f\xff\xaf\xff" "\x9f\x7b\x7e\xfd\xff\x6e\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x3f\xbf" "\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x7f\x11\xb7\x34\xd9\xff\x00\x00" "\x00\xb0\x7e\xa7\x67\x3f\x23\x77\xff\x2f\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x57\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xeb\xb8\xa5" "\xc9\xfe\xd7\xff\x8f\xda\xff\x7b\xff\xbf\xfe\x5f\xff\xaf\xff\x5f\x06\xfd" "\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xe7\xd7\xff\xeb\xff\x99\xb7\xb4\xfe" "\x3f\x77\xff\x6f\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xdb\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x5d\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\xff\x3e\x6e\x69\xb2\xff\xf5\xff\xbb\xe8\xff\x6f\xd5\xff\xeb" "\xff\xf7\xe8\xff\xf5\xff\xfa\xff\xf5\xf7\xff\xa7\xe2\x2f\x1c\xfd\xff\x3e" "\xfd\xff\x41\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xb4\xa5\xf5\xff\xb9\xfb\xff" "\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x3f\xc6\x2d\xf6\x3f\x00" "\x00\x00\x0c\x23\x77\xff\x9f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff" "\xcf\x71\x4b\x93\xfd\x3f\x4e\xff\x1f\x4f\xba\x88\xfe\xdf\xfb\xff\xf5\xff" "\xfb\xf4\xff\xfa\x7f\xfd\xff\xfa\xfb\xff\xa4\xff\xdf\xa7\xff\x3f\x48\xff" "\xaf\xff\xd7\xff\xeb\xff\x99\xb6\xb4\xfe\x3f\x77\xff\x5f\xe2\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd7\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xbf\x2d\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x16\xb7\x34\xd9" "\xff\xe3\xf4\xff\x41\xff\xaf\xff\xd7\xff\xeb\xff\xe3\xbf\xd7\xff\x2f\x83" "\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf3\xeb\xff\xf5\xff\xcc\x5b\x5a" "\xff\x9f\xbb\xff\xef\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x47" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x33\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x6f\x8f\x5b\x2e\xda\xff\x67\xae\xe0\x53\x5d\x39\xfa\x7f" "\xfd\xff\xee\xfa\xff\x3b\xee\xb1\xd9\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\x7f\x69\xfa\x7f\xfd\xff\x9a\x9f\x5f\xff\xaf\xff\x67\xde\xd2\xfa" "\xff\xdb\xf7\xfe\xbf\xf6\x9a\xcd\xbf\xf6\xbe\xda\xcf\xff\x01\x00\x00\x60" "\x44\xb9\xfb\xff\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xff\x89\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xff\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xef\xfd\xff\xff\x57\xff\x7f\xdd\xd4\x9f\x07\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x4f\xd3\xff\xeb\xff\xd7\xfc\xfc\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff" "\xe7\xee\xff\x5f\x00\x00\x00\xff\xff\x44\x1c\x97\x36", 24511); syz_mount_image(/*fs=*/0x20000040, /*dir=*/0x20000240, /*flags=MS_RDONLY|MS_NOSUID|MS_NODIRATIME|MS_NOATIME*/ 0xc03, /*opts=*/0x20000740, /*chdir=*/2, /*size=*/0x5fbf, /*img=*/0x20002080); // mount arguments: [ // src: nil // dst: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // type: nil // flags: mount_flags = 0x2200020 (8 bytes) // data: nil // ] memcpy((void*)0x20000240, ".\000", 2); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000240ul, /*type=*/0ul, /*flags=MS_LAZYTIME|MS_REMOUNT|MS_RELATIME*/ 0x2200020ul, /*data=*/0ul); // syz_mount_image$msdos arguments: [ // fs: ptr[in, buffer] { // buffer: {6d 73 64 6f 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: mount_flags = 0x1a4a438 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xc (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir memcpy((void*)0x20000f40, "msdos\000", 6); memcpy((void*)0x20000f00, ".\000", 2); syz_mount_image( /*fs=*/0x20000f40, /*dir=*/0x20000f00, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x202408*/ 0x1a4a438, /*opts=*/0x20000300, /*chdir=*/0xc, /*size=*/0, /*img=*/0x20000000); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x441 (4 bytes) // mode: open_mode = 0x148 (2 bytes) // ] // returns fd memcpy((void*)0x20000080, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000080ul, /*flags=O_CREAT|O_APPEND|O_WRONLY*/ 0x441, /*mode=S_IXGRP|S_IXUSR|S_IRUSR*/ 0x148); if (res != -1) r[0] = res; // write$UHID_INPUT arguments: [ // fd: fd_uhid (resource) // data: ptr[in, uhid_req[UHID_INPUT, uhid_input_req]] { // uhid_req[UHID_INPUT, uhid_input_req] { // type: const = 0x8 (4 bytes) // data: uhid_input_req { // data: buffer: {1e aa 3f a0 8d 84 55 73 fd d1 8c 57 89 5a c7 e6 c8 // 82 d5 5f 60 b7 ad 63 de 31 d0 b5 29 8f 30 81 52 24 5f 89 0b 93 df // 23 a7 d1 30 a1 1b 9b fe 0e d3 fb 17 6a 07 de 67 ec 9f 46 84 7b 92 // 18 70 db 88 f9 76 54 8a e1 3c 8e 03 8e e5 e3 c7 64 7e 8c e7 cc 73 // e8 42 fe 3b 76 7a 12 ca ac 9b 7c 4e 03 ec 1a 56 dd ae e5 43 e5 b3 // fc 29 5b 85 8b ff d5 cf 93 2d 6b c1 39 e0 11 3b 67 d4 79 65 e6 77 // fb f8 db 47 6c 11 96 dc 31 64 99 85 85 7d c4 c4 df 1e ca d4 f5 7a // 0d 5b d7 0f bb af 98 38 27 08 80 6f 15 6c 8e 90 b9 f7 95 42 91 23 // ec 34 c4 9b 9d 29 f2 12 99 d8 5b a7 c9 2a 00 eb f5 f6 bb 34 9f 51 // a7 b0 f7 1d 3a 65 bb 35 2f f6 3b cc 52 1d 84 c9 2d 08 f7 39 a1 ae // 44 3e d0 c6 e2 9b 93 23 7d d5 e7 58 8d 54 93 41 35 45 6a ca 19 d5 // 6b b7 60 d6 5e f1 95 ba f7 bb 83 76 64 72 15 d7 8c 2a 0d 53 a2 aa // fa 66 03 06 36 03 76 cd b0 4c 2d af 1d 2a 21 19 37 df d1 d7 c5 86 // 4c ac c5 7e 7c 9a f0 e3 0b 0c d6 d6 2a 5d 0c 59 7c f9 03 e7 75 ea // a8 44 9f 2d 46 0b d8 93 31 6b 37 13 27 18 8d 41 65 ec f0 17 14 41 // 53 cd c5 9a 57 5a 54 fe 16 10 c5 53 da 63 7d d5 1a 2d 9a d6 d6 0e // 55 44 e0 79 f6 7e 4a 5f 98 a0 53 8e 18 ad db a7 79 00 04 6f cf a7 // 1b e2 2d 20 a0 d0 e3 4a 43 f5 ec 11 88 b6 13 1d 6c 9b 8e 62 74 7a // 51 6d 66 aa 04 27 f1 18 be 0f 1b a5 73 a4 c3 ae fe 8f dc ae a5 a4 // 51 86 58 60 ed a6 1f d0 35 99 8c 1c 57 ab 73 85 e2 06 14 cf 61 57 // 83 e7 a9 75 64 fe 4c 80 0a c8 ab 5f bb 3f df 5d 83 93 86 af 67 9a // dc ed e5 f6 67 2d b8 4b 7f 81 63 86 91 27 29 cd f3 ed b6 4d aa 66 // ef 9d 10 b8 b9 83 2c 8b e9 f0 83 1e b8 d3 fa ea e2 90 f2 8f ff d2 // bb 9a 7d 63 87 73 74 84 03 bd ee 5f dd 9b 0b d7 57 70 80 b7 58 65 // 1b c9 5b e8 2d a3 41 99 22 60 a8 da 86 5f 0f f6 ec 7b 3e 5c 78 6c // 2c f9 5f fb 27 da ec 97 77 06 d3 07 ca 7b fa b6 3b 6a 4a 9c 14 18 // f6 bb 65 55 ec ac 33 fe d3 1d 7e 73 91 85 c2 9e 13 91 11 e7 a8 94 // e8 fb 39 9a b5 01 d6 f5 05 fc 7a 73 08 29 a4 6a 09 4a 2f 70 92 7a // f1 01 2a 8e 2a 6b 62 2e 98 b0 0b c6 41 78 54 aa c0 4f 4e b6 6c 49 // 7d 90 d0 09 30 86 c1 f4 07 a4 ee c1 ff c3 77 b4 7a e4 11 87 10 97 // 8a 0f 35 d6 a2 6c ca 61 19 97 f2 e1 3c 1d 98 cc a0 b7 86 70 2f 54 // e0 52 b1 8d 75 c0 76 09 23 dd 6e 25 d3 d5 e9 1e 0b ac 13 9e e7 03 // 47 f0 d3 e5 f2 2f 26 3e 06 69 2a 8f 29 61 27 a7 06 95 c8 81 2f 4f // 6c 4a 1e bd 73 97 ea ce 6f 55 52 cb 6e 63 26 94 92 ec 92 f9 63 c2 // 8b c3 53 78 6a 7b 12 89 84 b9 72 05 32 c7 de 04 9b a4 9f 1c 56 df // dc 7a 59 f7 fc 80 1f b8 c9 50 dc 0e 87 73 a8 38 20 a1 e6 e1 71 76 // 73 66 7f 21 9a 80 a3 4e 5c d7 fd fb 39 d5 53 38 b7 5d c5 64 0f b5 // 56 4b c2 3f 99 c2 25 a5 75 23 33 01 a9 6c 18 bd 5e 5a a1 66 2a 47 // 51 e2 0f c8 bf dd de 4a 5d 61 85 7f 2b 57 63 93 d4 32 0e 14 2d 89 // 40 45 15 78 03 27 bf 35 bf f5 4f dc 44 b0 68 da fb 3b 00 f1 40 b8 // 75 d1 1a 26 74 51 89 ca 5a c3 d9 ef 14 77 18 28 ac 14 4b fc aa 4c // 85 2b 80 eb ac 5b 10 e8 43 80 78 45 f4 d9 ca 60 22 4d b0 c6 54 30 // 2f ae c8 a2 fc 9e c9 76 83 7a 26 49 18 f6 3a 90 fb 70 f2 46 e0 53 // 2d 5e 20 7b 1b 03 45 4a 82 7a 28 87 9c ca 04 57 83 19 5c b9 85 6c // 76 3c ac 23 5a ef 45 61 04 4b 5f a3 8d 0d 11 54 5f a7 39 0e d9 6c // 56 14 b9 8e 4b dc 9f 9c ea fb ad 93 37 c5 05 51 78 73 7d 43 e4 2c // 72 41 39 05 90 56 a8 62 52 68 72 f8 1d bc 01 6b e9 71 60 92 d6 68 // 60 6a 21 f2 50 13 a1 39 e5 f1 49 ba 4f 80 67 c9 2e 2d 4e 29 8f 91 // 3c 54 98 dc e1 c6 3e f5 09 f9 16 e6 bb 77 6d 88 44 c3 04 b5 46 b8 // 56 b7 bf 48 85 ef 32 03 a3 0c 99 6c a5 88 60 35 5d 2e a6 5f 8c 93 // 5c 9c db 16 2e 9b 51 0d d8 43 71 0e 9a 7a 77 5b ad e4 d5 fa 03 2f // 15 52 f3 b1 cd 1a ec 84 fa c0 fc 6e de 1f f0 1a 1d ec 98 90 76 67 // 10 11 b4 82 9a 0f e7 2d 34 b4 2d 92 93 a1 4a e9 c5 81 9d c5 87 8c // 7d ec 2f 77 90 45 b3 e5 b7 cf c8 94 04 a3 16 76 3e 2f 2d ab 44 c7 // f6 49 d3 b4 d2 73 65 68 c2 41 95 71 37 e4 9a 02 10 39 7b fd 3e 1d // f2 b5 03 04 99 96 b1 ea 9d 5d ce b2 f6 0d 04 6f d8 ac e6 8b b6 34 // 7b 10 1e c5 92 b1 64 46 bc c5 f3 18 6c d7 7f 16 6b 34 d1 20 98 94 // b2 ff 16 5f 6a b0 c2 54 50 67 9b c9 26 d5 ec d4 72 8d 68 78 f4 50 // 5c f7 32 b5 90 16 10 85 e4 f8 b1 69 5a 71 a8 59 ef c7 28 e9 02 41 // 9a 70 90 bd 47 4a b0 e1 15 74 09 08 f6 97 03 75 1f d8 20 70 f9 55 // e9 91 58 57 8f 76 d1 95 26 05 d5 c7 2b 4d 10 5c b2 7d 91 00 b5 2a // cc bf 54 b2 27 2a 49 d8 a4 e8 b1 23 0a 11 b2 85 7b 0e 87 ab f6 29 // 41 d2 3b 90 f5 85 63 28 38 fb b8 32 f5 0b 16 ab 04 d4 c3 91 c6 64 // cb 54 6a 34 58 7d 32 23 d0 fc 33 65 28 40 81 6b a6 95 40 9f bc 3a // f7 ed 15 56 c1 ec c9 2d c4 d5 75 c4 38 f0 5b aa 6c cd 77 53 38 09 // c4 7d ea 6f ee b6 83 e5 e6 1f 53 5a be e2 28 c2 ae 77 ad a6 de 61 // 05 9b f5 69 87 90 3f 18 fa 05 5d 00 3d 13 b8 7a e1 c5 69 55 a6 f6 // da e9 df 55 e9 e3 d8 3a 59 f3 a7 44 bc 0f 68 cb 11 12 ae 58 7c 50 // d1 dd 5f ed 24 ff b3 62 48 c6 0c c9 12 18 dc e5 31 69 20 03 01 b0 // 58 f8 5c 5f 0e 9c 81 ba e2 63 c5 6a 90 9a 5f 8b f6 4d 05 64 40 aa // 4f 12 1e 8b 83 a2 08 ef c1 4e 3e 13 08 be 74 30 00 ff fb f6 b3 dc // ec d1 e1 8b 91 2d 40 85 5b f6 2a 16 2a be 87 5c 04 6f 63 4f 6a fa // e3 62 19 ac e5 32 c4 59 fc 22 a0 31 c4 e5 8a 8a 24 71 e1 75 64 15 // 49 be f0 ea 42 97 51 2d 9e 4a 03 39 de 99 6b 83 de 35 3f 59 85 5c // 79 25 7e 99 ca 89 16 e0 9b a1 64 12 f8 55 ef 84 1a 88 0f 5a 6c da // fc 60 66 54 55 2a 5a f4 91 1a 7d fa c5 95 d1 ca ff b1 c2 72 5a 32 // 3a 97 52 61 0c ae 28 01 fe fb a3 5b 0e 17 a4 89 76 49 c4 a8 c7 db // fd f4 17 12 55 d7 89 96 37 6b dc 76 03 4a 52 5f fb 15 bb a4 68 96 // 25 99 d1 48 f1 24 02 8c 46 da 95 f9 98 9c e2 32 ca c7 20 49 85 38 // d3 b5 e9 bf e5 5a 6f c3 e2 73 7a 55 bc fa f5 8c bd f3 02 8e 71 f0 // c4 96 5e a5 b3 f8 41 42 d2 6e a3 e6 79 a1 ec e3 da d9 0c bf af c9 // e8 a4 7a 35 0c 36 79 3f df 85 a3 a0 27 05 e5 55 6e b5 d6 2b d3 52 // dc f5 fc 2e 32 a0 67 50 e4 cb 10 5d a8 76 58 0c f4 5b e5 ef fd a6 // 1c 43 e2 f7 0d 00 65 8c 89 d3 5c 97 bf 0c 3d 5f 4b ed a7 8e 5c e6 // 84 7a 75 71 47 e3 65 d6 2e b4 83 b1 41 98 31 da b8 67 d3 63 86 15 // 4d 26 54 4a 47 cd 4a d7 a2 b1 36 e4 3a 9f 8f 84 e3 2f 60 13 be c2 // 92 1d ec 39 a6 e7 b2 75 23 a2 0e 80 da 65 fa a7 9e e3 eb 15 f3 0e // c9 f9 8d 10 20 12 cf 8b b2 1d d0 60 a9 3e bc b3 4c 21 91 4f 8f eb // 9a a7 92 2a ff d2 cf 0d b0 cc 98 07 8c d9 6e 7d b3 25 25 ed 34 b3 // 00 55 ad 80 5a 76 2d 43 ea 84 a0 0e 3c 97 aa c5 26 2c f0 40 9f 3b // 46 0b 91 f1 20 d1 50 6c 6b e9 2b 98 ac bc 79 6d c1 9f 57 c8 1d 69 // 98 16 98 f3 07 a1 b5 2b cd 14 55 a6 f9 dc 47 85 1a a3 5f 43 83 80 // cf 6b 51 f5 e4 5e 39 dd be 3b ea 96 ae 78 76 2b b2 c0 25 27 cc 60 // c1 3f 3e 98 bb 34 82 5d 40 95 4b 59 97 11 d2 6f a9 66 16 e3 b8 21 // 0b 42 56 ac c8 8f a6 b4 18 45 4a a3 24 0c 89 46 a5 ce af e8 98 02 // 69 ff 50 b0 6b 4e bb 0f b8 ca 9b 5f 48 de de c4 79 ad d3 10 fa 08 // d3 49 28 5d 06 84 73 8e 4f a4 7d 76 21 a0 db c1 35 3d 51 05 6c 24 // fb f7 45 49 02 33 ee 7d 62 53 8a 94 f4 96 e0 68 62 26 54 3f d4 fb // ee cd 98 ec ee d5 43 bf c2 8e 13 9f 15 93 b8 94 01 b5 cf 4f 06 35 // 5b 24 bd c8 a2 73 72 f7 7e 2d 48 f8 0b 03 75 e8 38 98 4f 95 b9 a5 // 61 5c e5 10 06 1b d9 b3 5d 7c 1c f6 40 48 91 bf f8 f3 63 ea 35 2b // 23 71 b6 92 bf 91 70 13 e9 3f af 32 dd d4 9b ab dc b5 0e b7 ee d7 // 38 0f d7 1f 82 e0 c5 b9 c4 55 65 fd cb 1d 31 b6 c0 c0 14 85 8d 3e // d7 f7 67 86 35 29 93 1d 1a 5a 88 f3 25 42 39 07 8d d9 c2 7e a7 f8 // d8 eb e0 28 bb 03 cd f9 ca 93 13 18 d1 e1 52 51 ef 14 12 74 2c e5 // e4 52 a2 b5 0b 78 86 c7 75 7c e4 a6 2f e0 ce 54 a6 32 ba 4d e5 de // ec 68 68 42 02 f8 16 83 e9 2b 8c db e4 9b 44 8f 73 fe 9f ba 67 06 // 7f 03 9c 62 c8 a4 75 56 f5 6c 8e c1 a1 2f e5 19 b4 6c c2 dc a2 1a // 4d 82 ab f3 4f bf f4 d4 e1 df 09 d7 26 ef 29 ee c4 5c db f7 b6 01 // 26 7f 61 5d 42 36 5a da d9 d2 22 18 9b de 28 eb ab 95 f3 f1 e5 d9 // 62 f1 c6 0b 9c ac 4c c8 57 d4 bd 96 92 0a 18 26 b6 cf 8e 79 2b 9f // 66 15 2b c0 c2 0c ae 51 23 03 b3 1a ae 26 ed e8 69 c5 10 ae ce 3a // b8 f9 9a 79 31 81 70 72 0d 34 bf 6b 25 53 42 2e fe a4 4a 66 cd e2 // fa c8 a3 32 92 f3 6f 18 5a 84 85 75 55 51 ae 5c 4c 8f 27 62 a8 00 // 76 aa 2c b7 1a 08 5e 8d bb 24 25 cb 2e 4b da 52 ca e5 68 34 89 7e // 3a 02 16 6a fe d0 38 da 5f 68 46 f6 72 cf d1 26 48 1a 2d 57 01 d6 // 0e d1 0f 1a b3 31 fc 5b 1d fe d8 15 dc bc 59 7a 79 24 0a 40 5b bb // 66 f3 5f 2b ab bd 39 53 12 d5 93 41 f0 51 83 18 b8 96 4e 34 13 9a // ca f9 ec 52 ef 34 bb a6 7d 44 31 86 ab 9a 0f ae 76 f1 cc 41 07 b2 // b0 9a 36 6d db e7 3f 81 aa df 47 1f e2 97 0f c6 4b da cb c7 9f 60 // 6a cf b0 62 e4 38 08 54 db 72 a9 77 53 11 ff 32 6d 9c 14 8b 35 67 // 84 74 47 5c 6e ae 66 5f 67 3c 62 1a 7f 4d 79 b0 87 a1 61 c8 cd b4 // 24 73 8e cf a2 7c 38 8b a7 11 da 5f 0d 06 ac 9d 79 c2 22 78 a5 4b // d4 b3 86 ff ad 6d 3d a5 4c 39 25 25 c9 96 55 d7 af 2a 88 27 a8 fe // cb 6b 5e 8b 66 eb 70 04 77 09 fe 06 9d 2c 79 b6 bb 0f 68 ae e8 88 // a7 cc c3 f3 3b 2b cf 30 08 4e 07 78 2e 81 c1 07 04 49 59 c8 35 18 // df c2 fc 62 23 df f6 a9 b6 45 f9 33 ed 76 2c 1c 55 5e 97 97 c2 ac // 78 23 4b d5 e8 dd 1d c1 17 8a 98 cf 10 5f 2d 1e ea 66 84 20 aa d0 // 4c ed 1c 88 63 be 16 f9 c9 72 bb 45 45 d6 a2 b3 ee dc 8f 49 28 c5 // fc 08 ad 57 f9 a6 ec 38 71 74 aa 4e 03 e4 cd 11 73 94 b6 58 fb b5 // a7 e9 16 84 b3 80 ea d4 5b de 7f 7a 91 c6 2b 22 2d b2 6d c4 a3 c6 // f5 97 a1 9c 33 06 49 95 8b 72 18 dd 65 b3 d3 20 aa 66 e3 15 18 ad // 2b 22 df 1c bb 1d 19 8f 74 7d 43 dd 48 c9 8b aa 09 e6 ea 30 3e c9 // 8d e3 d9 9c 7d e2 df db 9a 3f c2 2c 3a 5a 17 cf a1 6a 35 79 9d 68 // 79 05 8c 6b 3d a5 58 40 b2 c4 2d f6 d6 21 80 d4 ed 6f b6 4f b5 03 // 73 3a 5f 1a f1 08 92 5a b7 97 90 28 19 fa ef e9 98 9c f8 19 f9 ab // 75 5e af d6 19 b1 15 6d 5a a7 62 14 8c 8c 6b d1 62 ba 3f 58 e0 77 // ff 9c ce 57 ee 91 99 94 1d 9a be a8 cc 9d 1c 96 3b a5 fb 54 40 85 // 55 7e 9e 97 53 72 ee eb e7 6e 3b 28 01 89 f5 21 6a 78 52 a8 85 11 // 7a df 37 04 84 85 7f 2c 72 89 d1 19 0f a0 d7 b7 3a 48 0b 08 42 1d // 94 ed 89 10 ba c6 4e a9 75 97 54 ea 6b 5d 86 ba 2c 5c 66 2a 5d a0 // 5b 27 28 44 2e 3e a6 75 55 23 6a 56 58 6f 50 19 ef 8c 7c 09 db bf // 08 f2 dc a1 df 90 ab c6 9a 10 1d 9f 02 ed 82 01 3e 5a af b7 54 f1 // 2e 72 19 a0 82 3f ea ec e1 22 ef a2 72 42 d7 59 af 3e a4 15 39 83 // b1 ac 35 86 23 3c 90 92 d2 35 63 3a d8 22 11 78 bb 1f 3a 7d 31 5a // 9e 1e eb fa 38 6e 48 f7 5f dc 18 ec 37 47 dc cc 2e 89 73 7d d3 b8 // 9e 49 55 4d 05 44 27 14 5a 46 47 94 1d ed 40 8e ae 8d ac 6c 77 81 // 01 c8 f3 d0 06 c6 16 01 dd 3e 02 fe 7b 5b d7 43 bc 9c d0 98 7d f5 // 6d 99 60 ec ad f8 4c 66 48 8a ea e4 3d 9e 25 5c c9 c8 56 c9 74 f3 // c8 ce ec e1 08 b9 08 67 19 60 65 9c 0b 13 04 28 63 bf 17 f6 34 73 // af f7 f5 48 ab a7 f1 b9 48 78 f7 43 e2 28 26 75 eb 95 db 79 cd 4e // c2 1a 46 33 0e a7 80 34 3b 02 06 e0 02 50 f0 de b7 d8 75 41 1e 87 // aa d5 bd d8 75 84 be fe 2d fc 9c 72 99 61 93 11 9c b0 c2 24 1a 73 // ac 8e 32 5a dd 27 32 62 e9 b5 f0 5d 5c 0d 00 a3 d7 78 03 60 ff 0e // b5 4a 4c dd 02 a9 25 31 1d a0 89 9f 4d 58 b3 f6 9b 83 ee 3b 60 1a // 77 1b d1 4e b9 dd d6 3e 57 b3 92 c3 71 cf 2d 07 74 44 e0 06 9c 3c // b5 92 9e f5 15 46 c8 28 60 41 f5 5e 4c 1f 44 3e e9 cb db 50 73 4a // 96 bb c6 bf 03 07 8f a4 ee 54 77 e6 b0 e0 57 5e 7c 13 5c 03 c0 92 // 26 5b 46 c0 4f 9f 9f 01 6b 0c 0d f9 13 fa dc c9 b0 8d 4c 90 29 a9 // 60 58 6c 14 41 7f 8d 21 e8 e4 dd 0c 7d 31 e8 f5 1e 99 5c 1b 8e ef // d8 1b 20 05 65 5c 42 86 db 58 c9 9f b6 3b db 25 02 c5 6d c9 c0 d7 // dd e8 88 04 22 6e 98 16 5e fd 47 8a 4a 81 be 95 d3 56 05 bd dd be // d7 32 1e 3a e1 98 cb 21 e3 65 47 ab 4b 1e e2 50 d4 39 80 8a 9d 99 // bf b6 9d 04 90 cb 62 66 ea bb 33 3f df 84 06 2f 0a 55 b3 1c 4d 5c // f8 53 f3 43 64 e0 13 80 41 ea 2d 9e 4f 74 20 8d 55 1b 8e 35 06 b6 // fc 51 ba 69 4e df ba 56 19 a7 e2 73 e0 33 a6 d0 f9 3c 27 df 49 44 // 7b 3c cb d8 02 f8 81 6a 87 07 f3 d2 ee 7c 88 5c 35 a2 26 09 cc bf // e2 84 10 ab 24 c5 f2 9b 62 83 23 13 6b 4e ca 5f 4f 12 79 e1 6d e6 // 66 81 f2 df a1 67 c0 c8 98 1b bd fc 95 71 6e f0 6c 8e 80 9c d3 a1 // 43 af 94 41 3a 2c 69 62 d6 12 c4 a2 7e 0c f9 6c 46 ce e4 22 ac 4a // f0 75 fe 7e 00 df 04 ff ec d5 13 9a b1 7e 12 b8 a1 ee 4b f8 e5 f4 // 1d cb 6c 22 d0 23 ea d9 e8 04 6e a6 98 f3 2c c2 a8 0b 21 6d 9e 4f // 67 4c 30 f6 bb 6d 94 49 0e 13 99 51 5f 03 7a 2e 81 14 c6 12 97 16 // 17 f4 12 3a 0d 49 95 ee 61 51 66 5c bc c1 b7 ee 63 63 41 6f 9e a4 // c7 06 29 f1 44 46 4c 8b 4b 84 9f 95 bc e3 60 be f2 e9 2b 5d ac 29 // 5d e4 4f 4f 95 58 cd 5a 35 90 4f 1a fa fe 65 c3 52 98 b3 80 a6 27 // 0f f1 14 48 f3 d9 78 16 24 4e 1d 67 37 2c ae ff 62 4a a3 36 06 69 // d4 85 29 61 2e 92 5e 6a 76 14 48 ee dd fd d6 b0 9e c5 4f d3 2d 28 // ac 9e 14 dc 65 4d 54 34 da 57 b5 99 27 c4 13 c8 9d 96 af 73 07 29 // 7e 8f 3c 37 f3 16 e7 83 98 57 c6 2e 33 ce 9a af 74 d7 08 e2 11 98 // 4b 66 d2 e8 73 0c f3 0a 96 28 a6 0d 53 4e f5 f3 23 76 43 ef 5e 7f // 26 5f 4e c9 9b 81 3f ab 1a 47 0f 93 50 f0 77 b6 40 d9 bb ea d4 9c // ac 83 0b 94 26 98 19 48 ce de b0 5f 99 78 fa d5 4d a6 b2 e9 d9 09 // 31 a5 7c 12 bd 78 00 5a 39 fe d2 08 5e 86 b6 88 cf fe 4b 36 ce f8 // 34 21 21 f4 2b 66 ab 88 1b 43 9c a3 41 52 28 5b 08 12 1b 28 f6 4d // 58 f2 15 31 f4 1e 71 13 29 74 f7 d3 cc 34 a4 dc ae b1 f1 05 5d 27 // cd c5 e7 77 5e 1e 39 4e 32} (length 0x1000) size: len = 0x1000 (2 // bytes) // } // } // } // len: len = 0x1006 (8 bytes) // ] *(uint32_t*)0x20000f80 = 8; memcpy( (void*)0x20000f84, "\x1e\xaa\x3f\xa0\x8d\x84\x55\x73\xfd\xd1\x8c\x57\x89\x5a\xc7\xe6\xc8\x82" "\xd5\x5f\x60\xb7\xad\x63\xde\x31\xd0\xb5\x29\x8f\x30\x81\x52\x24\x5f\x89" "\x0b\x93\xdf\x23\xa7\xd1\x30\xa1\x1b\x9b\xfe\x0e\xd3\xfb\x17\x6a\x07\xde" "\x67\xec\x9f\x46\x84\x7b\x92\x18\x70\xdb\x88\xf9\x76\x54\x8a\xe1\x3c\x8e" "\x03\x8e\xe5\xe3\xc7\x64\x7e\x8c\xe7\xcc\x73\xe8\x42\xfe\x3b\x76\x7a\x12" "\xca\xac\x9b\x7c\x4e\x03\xec\x1a\x56\xdd\xae\xe5\x43\xe5\xb3\xfc\x29\x5b" "\x85\x8b\xff\xd5\xcf\x93\x2d\x6b\xc1\x39\xe0\x11\x3b\x67\xd4\x79\x65\xe6" "\x77\xfb\xf8\xdb\x47\x6c\x11\x96\xdc\x31\x64\x99\x85\x85\x7d\xc4\xc4\xdf" "\x1e\xca\xd4\xf5\x7a\x0d\x5b\xd7\x0f\xbb\xaf\x98\x38\x27\x08\x80\x6f\x15" "\x6c\x8e\x90\xb9\xf7\x95\x42\x91\x23\xec\x34\xc4\x9b\x9d\x29\xf2\x12\x99" "\xd8\x5b\xa7\xc9\x2a\x00\xeb\xf5\xf6\xbb\x34\x9f\x51\xa7\xb0\xf7\x1d\x3a" "\x65\xbb\x35\x2f\xf6\x3b\xcc\x52\x1d\x84\xc9\x2d\x08\xf7\x39\xa1\xae\x44" "\x3e\xd0\xc6\xe2\x9b\x93\x23\x7d\xd5\xe7\x58\x8d\x54\x93\x41\x35\x45\x6a" "\xca\x19\xd5\x6b\xb7\x60\xd6\x5e\xf1\x95\xba\xf7\xbb\x83\x76\x64\x72\x15" "\xd7\x8c\x2a\x0d\x53\xa2\xaa\xfa\x66\x03\x06\x36\x03\x76\xcd\xb0\x4c\x2d" "\xaf\x1d\x2a\x21\x19\x37\xdf\xd1\xd7\xc5\x86\x4c\xac\xc5\x7e\x7c\x9a\xf0" "\xe3\x0b\x0c\xd6\xd6\x2a\x5d\x0c\x59\x7c\xf9\x03\xe7\x75\xea\xa8\x44\x9f" "\x2d\x46\x0b\xd8\x93\x31\x6b\x37\x13\x27\x18\x8d\x41\x65\xec\xf0\x17\x14" "\x41\x53\xcd\xc5\x9a\x57\x5a\x54\xfe\x16\x10\xc5\x53\xda\x63\x7d\xd5\x1a" "\x2d\x9a\xd6\xd6\x0e\x55\x44\xe0\x79\xf6\x7e\x4a\x5f\x98\xa0\x53\x8e\x18" "\xad\xdb\xa7\x79\x00\x04\x6f\xcf\xa7\x1b\xe2\x2d\x20\xa0\xd0\xe3\x4a\x43" "\xf5\xec\x11\x88\xb6\x13\x1d\x6c\x9b\x8e\x62\x74\x7a\x51\x6d\x66\xaa\x04" "\x27\xf1\x18\xbe\x0f\x1b\xa5\x73\xa4\xc3\xae\xfe\x8f\xdc\xae\xa5\xa4\x51" "\x86\x58\x60\xed\xa6\x1f\xd0\x35\x99\x8c\x1c\x57\xab\x73\x85\xe2\x06\x14" "\xcf\x61\x57\x83\xe7\xa9\x75\x64\xfe\x4c\x80\x0a\xc8\xab\x5f\xbb\x3f\xdf" "\x5d\x83\x93\x86\xaf\x67\x9a\xdc\xed\xe5\xf6\x67\x2d\xb8\x4b\x7f\x81\x63" "\x86\x91\x27\x29\xcd\xf3\xed\xb6\x4d\xaa\x66\xef\x9d\x10\xb8\xb9\x83\x2c" "\x8b\xe9\xf0\x83\x1e\xb8\xd3\xfa\xea\xe2\x90\xf2\x8f\xff\xd2\xbb\x9a\x7d" "\x63\x87\x73\x74\x84\x03\xbd\xee\x5f\xdd\x9b\x0b\xd7\x57\x70\x80\xb7\x58" "\x65\x1b\xc9\x5b\xe8\x2d\xa3\x41\x99\x22\x60\xa8\xda\x86\x5f\x0f\xf6\xec" "\x7b\x3e\x5c\x78\x6c\x2c\xf9\x5f\xfb\x27\xda\xec\x97\x77\x06\xd3\x07\xca" "\x7b\xfa\xb6\x3b\x6a\x4a\x9c\x14\x18\xf6\xbb\x65\x55\xec\xac\x33\xfe\xd3" "\x1d\x7e\x73\x91\x85\xc2\x9e\x13\x91\x11\xe7\xa8\x94\xe8\xfb\x39\x9a\xb5" "\x01\xd6\xf5\x05\xfc\x7a\x73\x08\x29\xa4\x6a\x09\x4a\x2f\x70\x92\x7a\xf1" "\x01\x2a\x8e\x2a\x6b\x62\x2e\x98\xb0\x0b\xc6\x41\x78\x54\xaa\xc0\x4f\x4e" "\xb6\x6c\x49\x7d\x90\xd0\x09\x30\x86\xc1\xf4\x07\xa4\xee\xc1\xff\xc3\x77" "\xb4\x7a\xe4\x11\x87\x10\x97\x8a\x0f\x35\xd6\xa2\x6c\xca\x61\x19\x97\xf2" "\xe1\x3c\x1d\x98\xcc\xa0\xb7\x86\x70\x2f\x54\xe0\x52\xb1\x8d\x75\xc0\x76" "\x09\x23\xdd\x6e\x25\xd3\xd5\xe9\x1e\x0b\xac\x13\x9e\xe7\x03\x47\xf0\xd3" "\xe5\xf2\x2f\x26\x3e\x06\x69\x2a\x8f\x29\x61\x27\xa7\x06\x95\xc8\x81\x2f" "\x4f\x6c\x4a\x1e\xbd\x73\x97\xea\xce\x6f\x55\x52\xcb\x6e\x63\x26\x94\x92" "\xec\x92\xf9\x63\xc2\x8b\xc3\x53\x78\x6a\x7b\x12\x89\x84\xb9\x72\x05\x32" "\xc7\xde\x04\x9b\xa4\x9f\x1c\x56\xdf\xdc\x7a\x59\xf7\xfc\x80\x1f\xb8\xc9" "\x50\xdc\x0e\x87\x73\xa8\x38\x20\xa1\xe6\xe1\x71\x76\x73\x66\x7f\x21\x9a" "\x80\xa3\x4e\x5c\xd7\xfd\xfb\x39\xd5\x53\x38\xb7\x5d\xc5\x64\x0f\xb5\x56" "\x4b\xc2\x3f\x99\xc2\x25\xa5\x75\x23\x33\x01\xa9\x6c\x18\xbd\x5e\x5a\xa1" "\x66\x2a\x47\x51\xe2\x0f\xc8\xbf\xdd\xde\x4a\x5d\x61\x85\x7f\x2b\x57\x63" "\x93\xd4\x32\x0e\x14\x2d\x89\x40\x45\x15\x78\x03\x27\xbf\x35\xbf\xf5\x4f" "\xdc\x44\xb0\x68\xda\xfb\x3b\x00\xf1\x40\xb8\x75\xd1\x1a\x26\x74\x51\x89" "\xca\x5a\xc3\xd9\xef\x14\x77\x18\x28\xac\x14\x4b\xfc\xaa\x4c\x85\x2b\x80" "\xeb\xac\x5b\x10\xe8\x43\x80\x78\x45\xf4\xd9\xca\x60\x22\x4d\xb0\xc6\x54" "\x30\x2f\xae\xc8\xa2\xfc\x9e\xc9\x76\x83\x7a\x26\x49\x18\xf6\x3a\x90\xfb" "\x70\xf2\x46\xe0\x53\x2d\x5e\x20\x7b\x1b\x03\x45\x4a\x82\x7a\x28\x87\x9c" "\xca\x04\x57\x83\x19\x5c\xb9\x85\x6c\x76\x3c\xac\x23\x5a\xef\x45\x61\x04" "\x4b\x5f\xa3\x8d\x0d\x11\x54\x5f\xa7\x39\x0e\xd9\x6c\x56\x14\xb9\x8e\x4b" "\xdc\x9f\x9c\xea\xfb\xad\x93\x37\xc5\x05\x51\x78\x73\x7d\x43\xe4\x2c\x72" "\x41\x39\x05\x90\x56\xa8\x62\x52\x68\x72\xf8\x1d\xbc\x01\x6b\xe9\x71\x60" "\x92\xd6\x68\x60\x6a\x21\xf2\x50\x13\xa1\x39\xe5\xf1\x49\xba\x4f\x80\x67" "\xc9\x2e\x2d\x4e\x29\x8f\x91\x3c\x54\x98\xdc\xe1\xc6\x3e\xf5\x09\xf9\x16" "\xe6\xbb\x77\x6d\x88\x44\xc3\x04\xb5\x46\xb8\x56\xb7\xbf\x48\x85\xef\x32" "\x03\xa3\x0c\x99\x6c\xa5\x88\x60\x35\x5d\x2e\xa6\x5f\x8c\x93\x5c\x9c\xdb" "\x16\x2e\x9b\x51\x0d\xd8\x43\x71\x0e\x9a\x7a\x77\x5b\xad\xe4\xd5\xfa\x03" "\x2f\x15\x52\xf3\xb1\xcd\x1a\xec\x84\xfa\xc0\xfc\x6e\xde\x1f\xf0\x1a\x1d" "\xec\x98\x90\x76\x67\x10\x11\xb4\x82\x9a\x0f\xe7\x2d\x34\xb4\x2d\x92\x93" "\xa1\x4a\xe9\xc5\x81\x9d\xc5\x87\x8c\x7d\xec\x2f\x77\x90\x45\xb3\xe5\xb7" "\xcf\xc8\x94\x04\xa3\x16\x76\x3e\x2f\x2d\xab\x44\xc7\xf6\x49\xd3\xb4\xd2" "\x73\x65\x68\xc2\x41\x95\x71\x37\xe4\x9a\x02\x10\x39\x7b\xfd\x3e\x1d\xf2" "\xb5\x03\x04\x99\x96\xb1\xea\x9d\x5d\xce\xb2\xf6\x0d\x04\x6f\xd8\xac\xe6" "\x8b\xb6\x34\x7b\x10\x1e\xc5\x92\xb1\x64\x46\xbc\xc5\xf3\x18\x6c\xd7\x7f" "\x16\x6b\x34\xd1\x20\x98\x94\xb2\xff\x16\x5f\x6a\xb0\xc2\x54\x50\x67\x9b" "\xc9\x26\xd5\xec\xd4\x72\x8d\x68\x78\xf4\x50\x5c\xf7\x32\xb5\x90\x16\x10" "\x85\xe4\xf8\xb1\x69\x5a\x71\xa8\x59\xef\xc7\x28\xe9\x02\x41\x9a\x70\x90" "\xbd\x47\x4a\xb0\xe1\x15\x74\x09\x08\xf6\x97\x03\x75\x1f\xd8\x20\x70\xf9" "\x55\xe9\x91\x58\x57\x8f\x76\xd1\x95\x26\x05\xd5\xc7\x2b\x4d\x10\x5c\xb2" "\x7d\x91\x00\xb5\x2a\xcc\xbf\x54\xb2\x27\x2a\x49\xd8\xa4\xe8\xb1\x23\x0a" "\x11\xb2\x85\x7b\x0e\x87\xab\xf6\x29\x41\xd2\x3b\x90\xf5\x85\x63\x28\x38" "\xfb\xb8\x32\xf5\x0b\x16\xab\x04\xd4\xc3\x91\xc6\x64\xcb\x54\x6a\x34\x58" "\x7d\x32\x23\xd0\xfc\x33\x65\x28\x40\x81\x6b\xa6\x95\x40\x9f\xbc\x3a\xf7" "\xed\x15\x56\xc1\xec\xc9\x2d\xc4\xd5\x75\xc4\x38\xf0\x5b\xaa\x6c\xcd\x77" "\x53\x38\x09\xc4\x7d\xea\x6f\xee\xb6\x83\xe5\xe6\x1f\x53\x5a\xbe\xe2\x28" "\xc2\xae\x77\xad\xa6\xde\x61\x05\x9b\xf5\x69\x87\x90\x3f\x18\xfa\x05\x5d" "\x00\x3d\x13\xb8\x7a\xe1\xc5\x69\x55\xa6\xf6\xda\xe9\xdf\x55\xe9\xe3\xd8" "\x3a\x59\xf3\xa7\x44\xbc\x0f\x68\xcb\x11\x12\xae\x58\x7c\x50\xd1\xdd\x5f" "\xed\x24\xff\xb3\x62\x48\xc6\x0c\xc9\x12\x18\xdc\xe5\x31\x69\x20\x03\x01" "\xb0\x58\xf8\x5c\x5f\x0e\x9c\x81\xba\xe2\x63\xc5\x6a\x90\x9a\x5f\x8b\xf6" "\x4d\x05\x64\x40\xaa\x4f\x12\x1e\x8b\x83\xa2\x08\xef\xc1\x4e\x3e\x13\x08" "\xbe\x74\x30\x00\xff\xfb\xf6\xb3\xdc\xec\xd1\xe1\x8b\x91\x2d\x40\x85\x5b" "\xf6\x2a\x16\x2a\xbe\x87\x5c\x04\x6f\x63\x4f\x6a\xfa\xe3\x62\x19\xac\xe5" "\x32\xc4\x59\xfc\x22\xa0\x31\xc4\xe5\x8a\x8a\x24\x71\xe1\x75\x64\x15\x49" "\xbe\xf0\xea\x42\x97\x51\x2d\x9e\x4a\x03\x39\xde\x99\x6b\x83\xde\x35\x3f" "\x59\x85\x5c\x79\x25\x7e\x99\xca\x89\x16\xe0\x9b\xa1\x64\x12\xf8\x55\xef" "\x84\x1a\x88\x0f\x5a\x6c\xda\xfc\x60\x66\x54\x55\x2a\x5a\xf4\x91\x1a\x7d" "\xfa\xc5\x95\xd1\xca\xff\xb1\xc2\x72\x5a\x32\x3a\x97\x52\x61\x0c\xae\x28" "\x01\xfe\xfb\xa3\x5b\x0e\x17\xa4\x89\x76\x49\xc4\xa8\xc7\xdb\xfd\xf4\x17" "\x12\x55\xd7\x89\x96\x37\x6b\xdc\x76\x03\x4a\x52\x5f\xfb\x15\xbb\xa4\x68" "\x96\x25\x99\xd1\x48\xf1\x24\x02\x8c\x46\xda\x95\xf9\x98\x9c\xe2\x32\xca" "\xc7\x20\x49\x85\x38\xd3\xb5\xe9\xbf\xe5\x5a\x6f\xc3\xe2\x73\x7a\x55\xbc" "\xfa\xf5\x8c\xbd\xf3\x02\x8e\x71\xf0\xc4\x96\x5e\xa5\xb3\xf8\x41\x42\xd2" "\x6e\xa3\xe6\x79\xa1\xec\xe3\xda\xd9\x0c\xbf\xaf\xc9\xe8\xa4\x7a\x35\x0c" "\x36\x79\x3f\xdf\x85\xa3\xa0\x27\x05\xe5\x55\x6e\xb5\xd6\x2b\xd3\x52\xdc" "\xf5\xfc\x2e\x32\xa0\x67\x50\xe4\xcb\x10\x5d\xa8\x76\x58\x0c\xf4\x5b\xe5" "\xef\xfd\xa6\x1c\x43\xe2\xf7\x0d\x00\x65\x8c\x89\xd3\x5c\x97\xbf\x0c\x3d" "\x5f\x4b\xed\xa7\x8e\x5c\xe6\x84\x7a\x75\x71\x47\xe3\x65\xd6\x2e\xb4\x83" "\xb1\x41\x98\x31\xda\xb8\x67\xd3\x63\x86\x15\x4d\x26\x54\x4a\x47\xcd\x4a" "\xd7\xa2\xb1\x36\xe4\x3a\x9f\x8f\x84\xe3\x2f\x60\x13\xbe\xc2\x92\x1d\xec" "\x39\xa6\xe7\xb2\x75\x23\xa2\x0e\x80\xda\x65\xfa\xa7\x9e\xe3\xeb\x15\xf3" "\x0e\xc9\xf9\x8d\x10\x20\x12\xcf\x8b\xb2\x1d\xd0\x60\xa9\x3e\xbc\xb3\x4c" "\x21\x91\x4f\x8f\xeb\x9a\xa7\x92\x2a\xff\xd2\xcf\x0d\xb0\xcc\x98\x07\x8c" "\xd9\x6e\x7d\xb3\x25\x25\xed\x34\xb3\x00\x55\xad\x80\x5a\x76\x2d\x43\xea" "\x84\xa0\x0e\x3c\x97\xaa\xc5\x26\x2c\xf0\x40\x9f\x3b\x46\x0b\x91\xf1\x20" "\xd1\x50\x6c\x6b\xe9\x2b\x98\xac\xbc\x79\x6d\xc1\x9f\x57\xc8\x1d\x69\x98" "\x16\x98\xf3\x07\xa1\xb5\x2b\xcd\x14\x55\xa6\xf9\xdc\x47\x85\x1a\xa3\x5f" "\x43\x83\x80\xcf\x6b\x51\xf5\xe4\x5e\x39\xdd\xbe\x3b\xea\x96\xae\x78\x76" "\x2b\xb2\xc0\x25\x27\xcc\x60\xc1\x3f\x3e\x98\xbb\x34\x82\x5d\x40\x95\x4b" "\x59\x97\x11\xd2\x6f\xa9\x66\x16\xe3\xb8\x21\x0b\x42\x56\xac\xc8\x8f\xa6" "\xb4\x18\x45\x4a\xa3\x24\x0c\x89\x46\xa5\xce\xaf\xe8\x98\x02\x69\xff\x50" "\xb0\x6b\x4e\xbb\x0f\xb8\xca\x9b\x5f\x48\xde\xde\xc4\x79\xad\xd3\x10\xfa" "\x08\xd3\x49\x28\x5d\x06\x84\x73\x8e\x4f\xa4\x7d\x76\x21\xa0\xdb\xc1\x35" "\x3d\x51\x05\x6c\x24\xfb\xf7\x45\x49\x02\x33\xee\x7d\x62\x53\x8a\x94\xf4" "\x96\xe0\x68\x62\x26\x54\x3f\xd4\xfb\xee\xcd\x98\xec\xee\xd5\x43\xbf\xc2" "\x8e\x13\x9f\x15\x93\xb8\x94\x01\xb5\xcf\x4f\x06\x35\x5b\x24\xbd\xc8\xa2" "\x73\x72\xf7\x7e\x2d\x48\xf8\x0b\x03\x75\xe8\x38\x98\x4f\x95\xb9\xa5\x61" "\x5c\xe5\x10\x06\x1b\xd9\xb3\x5d\x7c\x1c\xf6\x40\x48\x91\xbf\xf8\xf3\x63" "\xea\x35\x2b\x23\x71\xb6\x92\xbf\x91\x70\x13\xe9\x3f\xaf\x32\xdd\xd4\x9b" "\xab\xdc\xb5\x0e\xb7\xee\xd7\x38\x0f\xd7\x1f\x82\xe0\xc5\xb9\xc4\x55\x65" "\xfd\xcb\x1d\x31\xb6\xc0\xc0\x14\x85\x8d\x3e\xd7\xf7\x67\x86\x35\x29\x93" "\x1d\x1a\x5a\x88\xf3\x25\x42\x39\x07\x8d\xd9\xc2\x7e\xa7\xf8\xd8\xeb\xe0" "\x28\xbb\x03\xcd\xf9\xca\x93\x13\x18\xd1\xe1\x52\x51\xef\x14\x12\x74\x2c" "\xe5\xe4\x52\xa2\xb5\x0b\x78\x86\xc7\x75\x7c\xe4\xa6\x2f\xe0\xce\x54\xa6" "\x32\xba\x4d\xe5\xde\xec\x68\x68\x42\x02\xf8\x16\x83\xe9\x2b\x8c\xdb\xe4" "\x9b\x44\x8f\x73\xfe\x9f\xba\x67\x06\x7f\x03\x9c\x62\xc8\xa4\x75\x56\xf5" "\x6c\x8e\xc1\xa1\x2f\xe5\x19\xb4\x6c\xc2\xdc\xa2\x1a\x4d\x82\xab\xf3\x4f" "\xbf\xf4\xd4\xe1\xdf\x09\xd7\x26\xef\x29\xee\xc4\x5c\xdb\xf7\xb6\x01\x26" "\x7f\x61\x5d\x42\x36\x5a\xda\xd9\xd2\x22\x18\x9b\xde\x28\xeb\xab\x95\xf3" "\xf1\xe5\xd9\x62\xf1\xc6\x0b\x9c\xac\x4c\xc8\x57\xd4\xbd\x96\x92\x0a\x18" "\x26\xb6\xcf\x8e\x79\x2b\x9f\x66\x15\x2b\xc0\xc2\x0c\xae\x51\x23\x03\xb3" "\x1a\xae\x26\xed\xe8\x69\xc5\x10\xae\xce\x3a\xb8\xf9\x9a\x79\x31\x81\x70" "\x72\x0d\x34\xbf\x6b\x25\x53\x42\x2e\xfe\xa4\x4a\x66\xcd\xe2\xfa\xc8\xa3" "\x32\x92\xf3\x6f\x18\x5a\x84\x85\x75\x55\x51\xae\x5c\x4c\x8f\x27\x62\xa8" "\x00\x76\xaa\x2c\xb7\x1a\x08\x5e\x8d\xbb\x24\x25\xcb\x2e\x4b\xda\x52\xca" "\xe5\x68\x34\x89\x7e\x3a\x02\x16\x6a\xfe\xd0\x38\xda\x5f\x68\x46\xf6\x72" "\xcf\xd1\x26\x48\x1a\x2d\x57\x01\xd6\x0e\xd1\x0f\x1a\xb3\x31\xfc\x5b\x1d" "\xfe\xd8\x15\xdc\xbc\x59\x7a\x79\x24\x0a\x40\x5b\xbb\x66\xf3\x5f\x2b\xab" "\xbd\x39\x53\x12\xd5\x93\x41\xf0\x51\x83\x18\xb8\x96\x4e\x34\x13\x9a\xca" "\xf9\xec\x52\xef\x34\xbb\xa6\x7d\x44\x31\x86\xab\x9a\x0f\xae\x76\xf1\xcc" "\x41\x07\xb2\xb0\x9a\x36\x6d\xdb\xe7\x3f\x81\xaa\xdf\x47\x1f\xe2\x97\x0f" "\xc6\x4b\xda\xcb\xc7\x9f\x60\x6a\xcf\xb0\x62\xe4\x38\x08\x54\xdb\x72\xa9" "\x77\x53\x11\xff\x32\x6d\x9c\x14\x8b\x35\x67\x84\x74\x47\x5c\x6e\xae\x66" "\x5f\x67\x3c\x62\x1a\x7f\x4d\x79\xb0\x87\xa1\x61\xc8\xcd\xb4\x24\x73\x8e" "\xcf\xa2\x7c\x38\x8b\xa7\x11\xda\x5f\x0d\x06\xac\x9d\x79\xc2\x22\x78\xa5" "\x4b\xd4\xb3\x86\xff\xad\x6d\x3d\xa5\x4c\x39\x25\x25\xc9\x96\x55\xd7\xaf" "\x2a\x88\x27\xa8\xfe\xcb\x6b\x5e\x8b\x66\xeb\x70\x04\x77\x09\xfe\x06\x9d" "\x2c\x79\xb6\xbb\x0f\x68\xae\xe8\x88\xa7\xcc\xc3\xf3\x3b\x2b\xcf\x30\x08" "\x4e\x07\x78\x2e\x81\xc1\x07\x04\x49\x59\xc8\x35\x18\xdf\xc2\xfc\x62\x23" "\xdf\xf6\xa9\xb6\x45\xf9\x33\xed\x76\x2c\x1c\x55\x5e\x97\x97\xc2\xac\x78" "\x23\x4b\xd5\xe8\xdd\x1d\xc1\x17\x8a\x98\xcf\x10\x5f\x2d\x1e\xea\x66\x84" "\x20\xaa\xd0\x4c\xed\x1c\x88\x63\xbe\x16\xf9\xc9\x72\xbb\x45\x45\xd6\xa2" "\xb3\xee\xdc\x8f\x49\x28\xc5\xfc\x08\xad\x57\xf9\xa6\xec\x38\x71\x74\xaa" "\x4e\x03\xe4\xcd\x11\x73\x94\xb6\x58\xfb\xb5\xa7\xe9\x16\x84\xb3\x80\xea" "\xd4\x5b\xde\x7f\x7a\x91\xc6\x2b\x22\x2d\xb2\x6d\xc4\xa3\xc6\xf5\x97\xa1" "\x9c\x33\x06\x49\x95\x8b\x72\x18\xdd\x65\xb3\xd3\x20\xaa\x66\xe3\x15\x18" "\xad\x2b\x22\xdf\x1c\xbb\x1d\x19\x8f\x74\x7d\x43\xdd\x48\xc9\x8b\xaa\x09" "\xe6\xea\x30\x3e\xc9\x8d\xe3\xd9\x9c\x7d\xe2\xdf\xdb\x9a\x3f\xc2\x2c\x3a" "\x5a\x17\xcf\xa1\x6a\x35\x79\x9d\x68\x79\x05\x8c\x6b\x3d\xa5\x58\x40\xb2" "\xc4\x2d\xf6\xd6\x21\x80\xd4\xed\x6f\xb6\x4f\xb5\x03\x73\x3a\x5f\x1a\xf1" "\x08\x92\x5a\xb7\x97\x90\x28\x19\xfa\xef\xe9\x98\x9c\xf8\x19\xf9\xab\x75" "\x5e\xaf\xd6\x19\xb1\x15\x6d\x5a\xa7\x62\x14\x8c\x8c\x6b\xd1\x62\xba\x3f" "\x58\xe0\x77\xff\x9c\xce\x57\xee\x91\x99\x94\x1d\x9a\xbe\xa8\xcc\x9d\x1c" "\x96\x3b\xa5\xfb\x54\x40\x85\x55\x7e\x9e\x97\x53\x72\xee\xeb\xe7\x6e\x3b" "\x28\x01\x89\xf5\x21\x6a\x78\x52\xa8\x85\x11\x7a\xdf\x37\x04\x84\x85\x7f" "\x2c\x72\x89\xd1\x19\x0f\xa0\xd7\xb7\x3a\x48\x0b\x08\x42\x1d\x94\xed\x89" "\x10\xba\xc6\x4e\xa9\x75\x97\x54\xea\x6b\x5d\x86\xba\x2c\x5c\x66\x2a\x5d" "\xa0\x5b\x27\x28\x44\x2e\x3e\xa6\x75\x55\x23\x6a\x56\x58\x6f\x50\x19\xef" "\x8c\x7c\x09\xdb\xbf\x08\xf2\xdc\xa1\xdf\x90\xab\xc6\x9a\x10\x1d\x9f\x02" "\xed\x82\x01\x3e\x5a\xaf\xb7\x54\xf1\x2e\x72\x19\xa0\x82\x3f\xea\xec\xe1" "\x22\xef\xa2\x72\x42\xd7\x59\xaf\x3e\xa4\x15\x39\x83\xb1\xac\x35\x86\x23" "\x3c\x90\x92\xd2\x35\x63\x3a\xd8\x22\x11\x78\xbb\x1f\x3a\x7d\x31\x5a\x9e" "\x1e\xeb\xfa\x38\x6e\x48\xf7\x5f\xdc\x18\xec\x37\x47\xdc\xcc\x2e\x89\x73" "\x7d\xd3\xb8\x9e\x49\x55\x4d\x05\x44\x27\x14\x5a\x46\x47\x94\x1d\xed\x40" "\x8e\xae\x8d\xac\x6c\x77\x81\x01\xc8\xf3\xd0\x06\xc6\x16\x01\xdd\x3e\x02" "\xfe\x7b\x5b\xd7\x43\xbc\x9c\xd0\x98\x7d\xf5\x6d\x99\x60\xec\xad\xf8\x4c" "\x66\x48\x8a\xea\xe4\x3d\x9e\x25\x5c\xc9\xc8\x56\xc9\x74\xf3\xc8\xce\xec" "\xe1\x08\xb9\x08\x67\x19\x60\x65\x9c\x0b\x13\x04\x28\x63\xbf\x17\xf6\x34" "\x73\xaf\xf7\xf5\x48\xab\xa7\xf1\xb9\x48\x78\xf7\x43\xe2\x28\x26\x75\xeb" "\x95\xdb\x79\xcd\x4e\xc2\x1a\x46\x33\x0e\xa7\x80\x34\x3b\x02\x06\xe0\x02" "\x50\xf0\xde\xb7\xd8\x75\x41\x1e\x87\xaa\xd5\xbd\xd8\x75\x84\xbe\xfe\x2d" "\xfc\x9c\x72\x99\x61\x93\x11\x9c\xb0\xc2\x24\x1a\x73\xac\x8e\x32\x5a\xdd" "\x27\x32\x62\xe9\xb5\xf0\x5d\x5c\x0d\x00\xa3\xd7\x78\x03\x60\xff\x0e\xb5" "\x4a\x4c\xdd\x02\xa9\x25\x31\x1d\xa0\x89\x9f\x4d\x58\xb3\xf6\x9b\x83\xee" "\x3b\x60\x1a\x77\x1b\xd1\x4e\xb9\xdd\xd6\x3e\x57\xb3\x92\xc3\x71\xcf\x2d" "\x07\x74\x44\xe0\x06\x9c\x3c\xb5\x92\x9e\xf5\x15\x46\xc8\x28\x60\x41\xf5" "\x5e\x4c\x1f\x44\x3e\xe9\xcb\xdb\x50\x73\x4a\x96\xbb\xc6\xbf\x03\x07\x8f" "\xa4\xee\x54\x77\xe6\xb0\xe0\x57\x5e\x7c\x13\x5c\x03\xc0\x92\x26\x5b\x46" "\xc0\x4f\x9f\x9f\x01\x6b\x0c\x0d\xf9\x13\xfa\xdc\xc9\xb0\x8d\x4c\x90\x29" "\xa9\x60\x58\x6c\x14\x41\x7f\x8d\x21\xe8\xe4\xdd\x0c\x7d\x31\xe8\xf5\x1e" "\x99\x5c\x1b\x8e\xef\xd8\x1b\x20\x05\x65\x5c\x42\x86\xdb\x58\xc9\x9f\xb6" "\x3b\xdb\x25\x02\xc5\x6d\xc9\xc0\xd7\xdd\xe8\x88\x04\x22\x6e\x98\x16\x5e" "\xfd\x47\x8a\x4a\x81\xbe\x95\xd3\x56\x05\xbd\xdd\xbe\xd7\x32\x1e\x3a\xe1" "\x98\xcb\x21\xe3\x65\x47\xab\x4b\x1e\xe2\x50\xd4\x39\x80\x8a\x9d\x99\xbf" "\xb6\x9d\x04\x90\xcb\x62\x66\xea\xbb\x33\x3f\xdf\x84\x06\x2f\x0a\x55\xb3" "\x1c\x4d\x5c\xf8\x53\xf3\x43\x64\xe0\x13\x80\x41\xea\x2d\x9e\x4f\x74\x20" "\x8d\x55\x1b\x8e\x35\x06\xb6\xfc\x51\xba\x69\x4e\xdf\xba\x56\x19\xa7\xe2" "\x73\xe0\x33\xa6\xd0\xf9\x3c\x27\xdf\x49\x44\x7b\x3c\xcb\xd8\x02\xf8\x81" "\x6a\x87\x07\xf3\xd2\xee\x7c\x88\x5c\x35\xa2\x26\x09\xcc\xbf\xe2\x84\x10" "\xab\x24\xc5\xf2\x9b\x62\x83\x23\x13\x6b\x4e\xca\x5f\x4f\x12\x79\xe1\x6d" "\xe6\x66\x81\xf2\xdf\xa1\x67\xc0\xc8\x98\x1b\xbd\xfc\x95\x71\x6e\xf0\x6c" "\x8e\x80\x9c\xd3\xa1\x43\xaf\x94\x41\x3a\x2c\x69\x62\xd6\x12\xc4\xa2\x7e" "\x0c\xf9\x6c\x46\xce\xe4\x22\xac\x4a\xf0\x75\xfe\x7e\x00\xdf\x04\xff\xec" "\xd5\x13\x9a\xb1\x7e\x12\xb8\xa1\xee\x4b\xf8\xe5\xf4\x1d\xcb\x6c\x22\xd0" "\x23\xea\xd9\xe8\x04\x6e\xa6\x98\xf3\x2c\xc2\xa8\x0b\x21\x6d\x9e\x4f\x67" "\x4c\x30\xf6\xbb\x6d\x94\x49\x0e\x13\x99\x51\x5f\x03\x7a\x2e\x81\x14\xc6" "\x12\x97\x16\x17\xf4\x12\x3a\x0d\x49\x95\xee\x61\x51\x66\x5c\xbc\xc1\xb7" "\xee\x63\x63\x41\x6f\x9e\xa4\xc7\x06\x29\xf1\x44\x46\x4c\x8b\x4b\x84\x9f" "\x95\xbc\xe3\x60\xbe\xf2\xe9\x2b\x5d\xac\x29\x5d\xe4\x4f\x4f\x95\x58\xcd" "\x5a\x35\x90\x4f\x1a\xfa\xfe\x65\xc3\x52\x98\xb3\x80\xa6\x27\x0f\xf1\x14" "\x48\xf3\xd9\x78\x16\x24\x4e\x1d\x67\x37\x2c\xae\xff\x62\x4a\xa3\x36\x06" "\x69\xd4\x85\x29\x61\x2e\x92\x5e\x6a\x76\x14\x48\xee\xdd\xfd\xd6\xb0\x9e" "\xc5\x4f\xd3\x2d\x28\xac\x9e\x14\xdc\x65\x4d\x54\x34\xda\x57\xb5\x99\x27" "\xc4\x13\xc8\x9d\x96\xaf\x73\x07\x29\x7e\x8f\x3c\x37\xf3\x16\xe7\x83\x98" "\x57\xc6\x2e\x33\xce\x9a\xaf\x74\xd7\x08\xe2\x11\x98\x4b\x66\xd2\xe8\x73" "\x0c\xf3\x0a\x96\x28\xa6\x0d\x53\x4e\xf5\xf3\x23\x76\x43\xef\x5e\x7f\x26" "\x5f\x4e\xc9\x9b\x81\x3f\xab\x1a\x47\x0f\x93\x50\xf0\x77\xb6\x40\xd9\xbb" "\xea\xd4\x9c\xac\x83\x0b\x94\x26\x98\x19\x48\xce\xde\xb0\x5f\x99\x78\xfa" "\xd5\x4d\xa6\xb2\xe9\xd9\x09\x31\xa5\x7c\x12\xbd\x78\x00\x5a\x39\xfe\xd2" "\x08\x5e\x86\xb6\x88\xcf\xfe\x4b\x36\xce\xf8\x34\x21\x21\xf4\x2b\x66\xab" "\x88\x1b\x43\x9c\xa3\x41\x52\x28\x5b\x08\x12\x1b\x28\xf6\x4d\x58\xf2\x15" "\x31\xf4\x1e\x71\x13\x29\x74\xf7\xd3\xcc\x34\xa4\xdc\xae\xb1\xf1\x05\x5d" "\x27\xcd\xc5\xe7\x77\x5e\x1e\x39\x4e\x32", 4096); *(uint16_t*)0x20001f84 = 0x1000; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x20000f80ul, /*len=*/0x1006ul); return 0; }