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