// https://syzkaller.appspot.com/bug?id=dcecd7055fda09451367a40db390ae0f9e707516 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_renameat2 #define __NR_renameat2 316 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x1010006 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {71 75 6f 74 61 2c 64 69 73 63 61 72 64 3d 30 78 // 30 30 30 30 30 30 30 30 30 30 30 30 61 66 66 39 2c 69 6f 63 68 61 // 72 73 65 74 3d 6e 6f 6e 65 2c 6e 6f 69 6e 74 65 67 72 69 74 79 2c // 69 6f 63 68 61 72 73 65 74 3d 63 70 31 32 35 31 2c 69 6e 74 65 67 // 72 69 74 79 2c 6e 6f 64 69 73 63 61 72 64 2c 6e 6f 71 75 6f 74 61 // 2c 75 69 64 3d} (length 0x6d) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 00 c3 8b 49 86 bd 70 86 e5 8f 5d 7f d7 0a b0 // f8 e8 bb 0e 5f 5b 35 be 55 5a 19 03 4e a0 0a a5 cc 60 53 41 1b 1c // 18 7a 24 d1 f6 8a 37 ec ec 3d 26 f9 ba 82 07 f6 ce 22 b0 a4 7e 28 // 48 5c 69 c1 4d c9 52 b0 c5 e5 f1 ff e2 9e b2 ce 10 e7 e2 a5 9e 32 // a5 a7 ea 7d 8a 6f a0 b5 e9 04 76 f3 fa 2c b4 fc ba 14 a8 81 90 66 // 78 b3 f9 61 74 c0 ea 0e 4e dc 30 68 e3 7f ec 09 72 9d f1 29 bb 3e // 5b 94 90 df 28 79 47 2c b2 e2} (length 0x88) // } // } // } // chdir: int8 = 0x24 (1 bytes) // size: len = 0x621a (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x621a) // } // ] // returns fd_dir memcpy((void*)0x200000000100, "jfs\000", 4); memcpy((void*)0x200000000000, "./file1\000", 8); memcpy((void*)0x2000000013c0, "quota,discard=0x000000000000aff9,iocharset=none,nointegrity," "iocharset=cp1251,integrity,nodiscard,noquota,uid=", 109); sprintf((char*)0x20000000142d, "0x%016llx", (long long)0xee01); memcpy((void*)0x20000000143f, "\x2c\x00\xc3\x8b\x49\x86\xbd\x70\x86\xe5\x8f\x5d\x7f\xd7\x0a\xb0\xf8" "\xe8\xbb\x0e\x5f\x5b\x35\xbe\x55\x5a\x19\x03\x4e\xa0\x0a\xa5\xcc\x60" "\x53\x41\x1b\x1c\x18\x7a\x24\xd1\xf6\x8a\x37\xec\xec\x3d\x26\xf9\xba" "\x82\x07\xf6\xce\x22\xb0\xa4\x7e\x28\x48\x5c\x69\xc1\x4d\xc9\x52\xb0" "\xc5\xe5\xf1\xff\xe2\x9e\xb2\xce\x10\xe7\xe2\xa5\x9e\x32\xa5\xa7\xea" "\x7d\x8a\x6f\xa0\xb5\xe9\x04\x76\xf3\xfa\x2c\xb4\xfc\xba\x14\xa8\x81" "\x90\x66\x78\xb3\xf9\x61\x74\xc0\xea\x0e\x4e\xdc\x30\x68\xe3\x7f\xec" "\x09\x72\x9d\xf1\x29\xbb\x3e\x5b\x94\x90\xdf\x28\x79\x47\x2c\xb2\xe2", 136); memcpy( (void*)0x200000001500, "\x78\x9c\xec\xdd\xcb\x8f\x1c\x57\xd9\x07\xe0\xb7\xfa\x36\x97\x7c\x71\xac" "\x2c\xa2\x7c\x16\x12\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82" "\x0d\x0b\xe4\x1d\x42\xb6\x26\x93\xc8\xc2\x01\x64\x1b\xe4\x44\x16\x9e\x68" "\xb6\xec\xd9\x82\x90\x58\x22\xc4\x92\x15\x7f\x40\x16\x6c\xd9\xb1\x45\xc2" "\x92\x8d\x04\xca\x02\x52\xa8\x66\xce\x19\xd7\x54\xba\xa7\x67\x6c\x4f\x57" "\xb7\xeb\x79\xa4\x71\xd5\xdb\xa7\x6a\xfa\x94\x7f\x5d\x7d\x99\xaa\xea\x13" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x7c\xf7\x3b\xdf" "\x3f\x5b\x44\xc4\xe5\x9f\xa7\x1b\x8e\x47\xfc\x5f\xf4\x23\x7a\x11\x2b\x55" "\xbd\x16\x11\x2b\x6b\xc7\xeb\xeb\x3c\x1f\xdb\xcd\xf1\x5c\x44\x0c\x97\x22" "\xaa\xf5\xb7\xff\x79\x26\xe2\xb5\x88\xf8\xe8\x58\xc4\xbd\xfb\xb7\xd7\xab" "\x9b\xcf\x1d\xb0\x1f\xdf\xfe\xc3\x5f\x7f\xfb\xc3\xa7\xbe\xf7\x97\xdf\x0f" "\x4f\xff\xfb\x8f\x37\xfb\xaf\x4f\x5a\xee\xd6\xad\x5f\xfe\xeb\x4f\x77\x1e" "\x7e\x7b\x01\x00\x00\xa0\x8b\xca\xb2\x2c\x8b\xf4\x31\xff\x44\x44\x0c\xd2" "\x67\x7b\x00\xe0\xc9\x97\x5f\xff\xcb\x24\xdf\xae\x9e\xbb\x7a\x73\xce\xfa" "\xa3\x56\xab\xd5\xea\x05\xac\xeb\xca\xf1\xee\xd4\x8b\x88\xd8\xac\xaf\x53" "\xbd\x67\x70\x38\x1e\x00\x16\xcc\x66\x7c\xdc\x76\x17\x68\x91\xfc\x3b\x6d" "\x10\x11\x4f\xb5\xdd\x09\x60\xae\x15\x6d\x77\x80\x23\x71\xef\xfe\xed\xf5" "\x22\xe5\x5b\xd4\x5f\x0f\xd6\x76\xda\xf3\xb9\x20\x7b\xf2\xdf\x2c\x76\xaf" "\xef\x98\x34\x9d\xa6\x79\x8e\xc9\xac\x1e\x5f\x5b\xd1\x8f\x67\x27\xf4\x67" "\x65\x46\x7d\x98\x27\x39\xff\x5e\x33\xff\xcb\x3b\xed\xa3\xb4\xdc\x51\xe7" "\x3f\x2b\x93\xf2\x1f\xed\x5c\xfa\xd4\x39\x39\xff\x7e\x33\xff\x86\x27\x27" "\xff\xde\xd8\xfc\xbb\x2a\xe7\x3f\x38\x54\xfe\x7d\xf9\x03\x00\x00\x00\x00" "\xc0\x1c\xcb\x7f\xff\x3f\xde\xf2\xf1\xdf\xa5\x47\xdf\x94\x03\xd9\xef\xf8" "\xef\xda\x8c\xfa\x00\x00\x00\x00\x00\x00\x00\x00\x8f\xdb\x61\xc7\xff\x1b" "\x34\xc6\xff\xdb\x65\xfc\x3f\x00\x00\x00\x98\x5b\xd5\x67\xf5\xca\xaf\x8f" "\x3d\xb8\x6d\xd2\x77\xb1\x55\xb7\x5f\x2a\x22\x9e\x6e\x2c\x0f\x74\x4c\xba" "\x58\x66\xb5\xed\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x97\x0c" "\x76\xce\xe1\xbd\x54\x44\x0c\x23\xe2\xe9\xd5\xd5\xb2\x2c\xab\x9f\xba\x66" "\x7d\x58\x8f\xba\xfe\xa2\xeb\xfa\xf6\x43\x97\xb5\xfd\x24\x0f\x00\x00\x3b" "\x3e\x3a\xd6\xb8\x96\xbf\x88\x58\x8e\x88\x4b\xe9\xbb\xfe\x86\xab\xab\xab" "\x65\xb9\xbc\xb2\x5a\xae\x96\x2b\x4b\xf9\xfd\xec\x68\x69\xb9\x5c\xa9\x7d" "\xae\xcd\xd3\xea\xb6\xa5\xd1\x01\xde\x10\x0f\x46\x65\xf5\xcb\x96\x6b\xeb" "\xd5\x4d\xfb\xbc\x3c\xad\xbd\xf9\xfb\xaa\xfb\x1a\x95\xfd\x03\x74\x6c\x36" "\x5a\x0c\x1c\x00\x22\x62\xe7\xd5\xe8\xde\xa4\x57\xa4\xff\x78\xbd\x5a\x4c" "\x65\xf9\x4c\xb4\xfc\x26\x87\x05\xb1\xcf\xfe\xcf\x82\xb2\xff\x73\x10\x6d" "\x3f\x4e\x01\x00\x00\x80\xa3\x57\x96\x65\x59\xa4\xaf\xf3\x3e\x91\x8e\xf9" "\xf7\xda\xee\x14\x00\x30\x13\xf9\xf5\xbf\x79\x5c\x40\xad\x56\xab\xd5\xea" "\x83\xd7\xbf\xfa\xec\xdf\x7f\x30\x4f\xfd\x51\x4f\xaa\xeb\xca\xf1\xee\xd4" "\x8b\x88\xd8\xac\xaf\x53\xbd\x67\x30\x1c\x3f\x00\x2c\x98\xcd\xf8\xb8\xed" "\x2e\xd0\x22\xf9\x77\xda\x20\x22\x9e\x6f\xbb\x13\xc0\x5c\x2b\xda\xee\x00" "\x47\xe2\xde\xfd\xdb\xeb\x45\xca\xb7\xa8\xbf\x1e\xa4\xf1\xdd\xf3\xb9\x20" "\x7b\xf2\xdf\x2c\xb6\xd7\xcb\xeb\x8f\x9b\x4e\xd3\x3c\xc7\x64\x56\x8f\xaf" "\xad\xe8\xc7\xb3\x13\xfa\xf3\xdc\x8c\xfa\x30\x4f\x72\xfe\xbd\x66\xfe\x97" "\x77\xda\x47\x69\xb9\x47\xcf\xbf\xdc\xf3\x67\xc2\xb6\xce\x31\x9a\x94\x7f" "\xb5\x9d\xc7\x5b\xe8\x4f\xdb\x72\xfe\xfd\x66\xfe\x0d\x47\xbd\xff\xcf\xca" "\x56\xf4\xc6\xe6\xdf\x55\x39\xff\xc1\xa1\xf2\xef\xcb\x1f\x00\x00\x00\x00" "\x00\xe6\x58\xfe\xfb\xff\xf1\xb9\x3a\xfe\x3b\x7a\xd8\xcd\x99\x6a\xbf\xe3" "\xbf\x6b\x63\xd7\x38\xba\xbe\x00\x00\x00\x00\x00\x00\x00\xc0\xe3\x72\xef" "\xfe\xed\xf5\x7c\xdd\x6b\x3e\xfe\xff\x99\x31\xcb\xb9\xfe\xf3\xc9\x94\xf3" "\x2f\xe4\xdf\x49\x39\xff\x5e\x23\xff\x2f\x36\x96\xeb\xd7\xe6\xef\xbe\xf5" "\x20\xff\x7f\xde\xbf\xbd\xfe\xbb\x9b\xff\xf8\xff\x3c\x3d\x68\xfe\x4b\x79" "\xa6\x48\x8f\xac\x22\x3d\x22\x8a\x74\x4f\xc5\x20\x4d\x1f\x65\xeb\x3e\x6d" "\x6b\xd8\x1f\x55\xf7\x34\x2c\x7a\xfd\x41\x3a\xe7\xa7\x1c\xbe\x13\x57\xe3" "\x5a\x6c\xc4\x99\x3d\xcb\xf6\xd2\xff\xc7\x83\xf6\xb3\x7b\xda\xab\x9e\x0e" "\xb7\xdb\xcb\xfe\x4e\xfb\xb9\x3d\xed\x83\xdd\xf6\xbc\xfe\xf9\x3d\xed\xc3" "\x74\x76\x51\xb9\x92\xdb\x4f\xc5\x7a\xfc\x24\xae\xc5\xdb\xdb\xed\x55\xdb" "\xd2\x94\xed\x5f\x9e\xd2\x5e\x4e\x69\xcf\xf9\xf7\xed\xff\x9d\x94\xf3\x1f" "\xd4\x7e\xaa\xfc\x57\x53\x7b\xd1\x98\x56\xee\x7e\xd8\xfb\xd4\x7e\x5f\x9f" "\x8e\xbb\x9f\x37\xaf\xfe\x77\x9f\x6f\x1e\x9e\x9d\xad\xe8\xef\x6e\x5b\x5d" "\xb5\x7d\x2f\xb6\xd0\x9f\xed\x67\x9c\xa7\x46\xf1\xb3\x1b\x1b\xd7\x4f\xdd" "\xba\x72\xf3\xe6\xf5\xb3\x91\x26\x7b\x6e\x3d\x17\x69\xf2\x98\xe5\xfc\x87" "\xe9\x67\xf7\xf9\xff\xa5\x9d\xf6\xfc\xbc\x5f\xdf\x5f\xef\x7e\x38\x3a\x74" "\xfe\xf3\x62\x2b\x06\x13\xf3\x7f\xa9\x36\x5f\x6d\xef\xcb\x33\xee\x5b\x1b" "\x72\xfe\xa3\xf4\x93\xf3\x7f\x3b\xb5\x8f\xdf\xff\x17\x39\xff\xc9\xfb\xff" "\x2b\x2d\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\x53" "\x96\xe5\xf6\x25\xa2\x6f\x46\xc4\x85\x74\xfd\x4f\x5b\xd7\x66\x02\x00\xb3" "\x95\x5f\xff\xcb\xc6\x55\xfa\xb3\xaa\xfb\x33\xbe\x3f\xb5\x7a\xc1\xeb\x62" "\xce\xfa\x33\xd3\xfa\x93\x72\xbe\xfa\xa3\x56\x2f\x62\x5d\x57\x8e\xf7\x46" "\xbd\x88\x88\x3f\xd7\xd7\xa9\xde\x33\xfc\x62\xdc\x2f\x03\x00\xe6\xd9\x27" "\x11\xf1\xb7\xb6\x3b\x41\x6b\xe4\xdf\x61\xf9\xfb\xfe\xaa\xe9\xc9\xb6\x3b" "\x03\xcc\xd4\x8d\xf7\x3f\xf8\xd1\x95\x6b\xd7\x36\xae\xdf\x68\xbb\x27\x00" "\x00\x00\x00\x00\x00\x00\xc0\xc3\xca\xe3\x7f\xae\xd5\xc6\x7f\x3e\x59\x96" "\xe5\x9d\xc6\x72\x7b\xc6\x7f\x7d\x2b\xd6\x1e\x75\xfc\xcf\x41\x9e\xd9\x1d" "\x60\x74\xc2\x40\xd5\xfd\xc3\x6f\xd3\x7e\xb6\x7a\xa3\x7e\xaf\x36\xdc\xf8" "\x0b\x31\x69\xfc\xef\xe1\xee\xdc\x7e\xe3\x7f\x0f\xa6\xdc\xdf\x70\x4a\xfb" "\x68\x4a\xfb\xd2\x94\xf6\xe5\x29\xed\xd3\x86\x5b\xce\xf9\xbf\x50\x1b\xef" "\xfc\x64\x44\x9c\x68\x0c\xbf\xde\x85\xf1\x5f\x9b\x63\xde\x77\x41\xce\xff" "\xc5\xda\xe3\xb9\xca\xff\x0b\x8d\xe5\xea\xf9\x97\xbf\x59\xe4\xfc\x7b\x7b" "\xf2\x3f\x7d\xf3\xbd\x9f\x9e\xbe\xf1\xfe\x07\xaf\x5e\x7d\xef\xca\xbb\x1b" "\xef\x6e\xfc\xf8\xfc\xd9\xb3\x67\xce\x5f\xb8\x70\xf1\xe2\xc5\xd3\xef\x5c" "\xbd\xb6\x71\x66\xe7\xdf\x16\x7b\x7c\xb4\x72\xfe\x79\xec\x6b\xe7\x81\x76" "\x4b\xce\x3f\x67\x2e\xff\x6e\xc9\xf9\x7f\x2e\xd5\xf2\xef\x96\x9c\xff\xe7" "\x53\x2d\xff\x6e\xc9\xf9\xe7\xf7\x7b\xf2\xef\x96\x9c\x7f\xfe\xec\x23\xff" "\x6e\xc9\xf9\xbf\x9c\x6a\xf9\x77\x4b\xce\xff\x4b\xa9\x96\x7f\xb7\xe4\xfc" "\x5f\x49\xb5\xfc\xbb\x25\xe7\xff\xe5\x54\xcb\xbf\x5b\x72\xfe\xaf\xa6\x5a" "\xfe\xdd\x92\xf3\x3f\x95\x6a\xf9\x77\x4b\xce\xff\x74\xaa\x0f\x98\xff\xca" "\x51\xf7\x8b\xd9\xc8\xf9\xe7\x23\x5c\xf6\xff\x6e\xc9\xf9\xe7\x33\x1b\xe4" "\xdf\x2d\x39\xff\x73\xa9\x96\x7f\xb7\xe4\xfc\xcf\xa7\x5a\xfe\xdd\x92\xf3" "\x7f\x2d\xd5\xf2\xef\x96\x9c\xff\x57\x52\x2d\xff\x6e\xc9\xf9\x5f\x48\xb5" "\xfc\xbb\x25\xe7\xff\xd5\x54\xcb\xbf\x5b\x72\xfe\x17\x53\x2d\xff\x6e\xc9" "\xf9\x7f\x2d\xd5\xf2\xef\x96\x9c\xff\xd7\x53\x2d\xff\x6e\xc9\xf9\xbf\x9e" "\x6a\xf9\x77\x4b\xce\xff\x1b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x99\x6a\xf9\x77" "\x4b\xce\xff\x5b\xa9\x96\x7f\xb7\xe4\xfc\xdf\x48\xb5\xfc\xbb\xe5\xc1\xf7" "\xff\x9b\x31\x63\xc6\x4c\x9e\x69\xfb\x99\x09\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x68\x9a\xc5\xe9\xc4\x6d\x6f\x23\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xff\x63\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00\x00\x00\x00\xe4" "\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xbb\xbb\x18\xb9" "\xce\xfa\x7e\xe0\x67\xf6\xcd\x6b\x07\x12\x03\x21\x7f\x27\x7f\x03\x6b\xc7" "\x18\xe3\x6c\xb2\xeb\x97\xf8\x85\xd6\xc5\x24\xe1\xa5\xe1\xad\x04\x42\xa1" "\x2f\xd8\xae\x77\x6d\x16\xfc\x86\xd7\x2e\x81\x46\xb2\x69\xa0\x44\xc2\xa8" "\xa8\xa2\x6d\xb8\x68\x0b\x28\x6a\x73\x53\xe1\x8b\x5c\xd0\x2a\xa0\x5c\xa0" "\x56\x48\x95\x48\x7b\x41\x6f\x10\x15\x2a\x17\x51\x15\x50\x40\xaa\x44\x2b" "\xc8\x56\x73\xe6\x79\x9e\x9d\x99\x9d\x9d\xd9\xf5\xae\xd7\x67\xce\xf9\x7c" "\x24\xfb\xe7\x9d\x39\x33\xe7\x39\x67\x9e\x73\x76\x7e\xbb\xfe\xce\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x6d\xb9\x7f\xfa\xf3" "\xb5\x2c\xcb\xea\x7f\xf2\xbf\x36\x66\xd9\xcb\xea\xff\x5e\x3f\xb6\x31\xbf" "\xed\x4d\x37\x7a\x84\x00\x00\x00\xc0\x4a\xfd\x2a\xff\xfb\xc5\x5b\xd2\x0d" "\x87\x97\xf0\xa0\xa6\x65\xfe\xf9\xb5\xdf\x7b\x7a\x6e\x6e\x6e\x2e\xfb\xd0" "\xe0\x9f\x0f\x7f\x79\x6e\x2e\xdd\x31\x96\x65\xc3\xeb\xb2\x2c\xbf\x2f\xba" "\xfa\xa3\x0f\xd7\x9a\x97\x09\x1e\xcb\x46\x6b\x03\x4d\x5f\x0f\xf4\x58\xfd" "\x60\x8f\xfb\x87\x7a\xdc\x3f\xdc\xe3\xfe\x91\x1e\xf7\xaf\xeb\x71\xff\x68" "\x8f\xfb\x17\xec\x80\x05\xd6\x37\x7e\x1e\x93\x3f\xd9\xb6\xfc\x9f\x1b\x1b" "\xbb\x34\xbb\x35\x1b\xce\xef\xdb\xd6\xe1\x51\x8f\xd5\xd6\x0d\x0c\xc4\x9f" "\xe5\xe4\x6a\xf9\x63\xe6\x86\x4f\x64\x33\xd9\xa9\x6c\x3a\x9b\x6c\x59\xbe" "\xb1\x6c\x2d\x5f\xfe\x99\x2d\xf5\x75\xbd\x23\x8b\xeb\x1a\x68\x5a\xd7\xe6" "\xfa\x0c\xf9\xd9\xa3\xc7\xe3\x18\x6a\x61\x1f\x6f\x6b\x59\xd7\xfc\x73\x46" "\x3f\x79\x4b\x36\xf6\xf3\x9f\x3d\x7a\xfc\x6f\x2f\xbc\x70\x7b\xa7\xda\x73" "\x37\xb4\x3c\x5f\x63\x9c\x3b\xb6\xd6\xc7\xf9\xd9\x70\x4b\x63\xac\xb5\x6c" "\x5d\xda\x27\x71\x9c\x03\x4d\xe3\xdc\xdc\xe1\x35\x19\x6c\x19\x67\x2d\x7f" "\x5c\xfd\xdf\xed\xe3\x7c\x71\x89\xe3\x1c\x9c\x1f\xe6\x9a\x6a\x7f\xcd\x47" "\xb3\x81\xfc\xdf\xcf\xe5\xfb\x69\xa8\xf9\xc7\x7a\x69\x3f\x6d\x0e\xb7\xfd" "\xe2\xce\x2c\xcb\x2e\xcf\x0f\xbb\x7d\x99\x05\xeb\xca\x06\xb2\x0d\x2d\xb7" "\x0c\xcc\xbf\x3e\xa3\x8d\x19\x59\x7f\x8e\xfa\x54\x7a\x65\x36\xb4\xac\x79" "\xba\x65\x09\xf3\xb4\x5e\xa7\xb6\xb5\xce\xd3\xf6\x63\x22\xbe\xfe\x5b\xc2" "\xe3\x86\x16\x19\x43\xf3\xcb\xf4\x93\xcf\x8c\x34\xbd\xee\xbf\x9c\xbb\x96" "\x79\x1a\xd5\xb7\x7a\xb1\x63\xa5\x7d\x0e\xae\xf6\xb1\x52\x94\x39\x18\xe7" "\xc5\x73\xf9\x46\x3f\xde\x71\x0e\x6e\x0b\xdb\xff\xe8\xf6\xc5\xe7\x60\xc7" "\xb9\xd3\x61\x0e\xa6\xed\x6e\x9a\x83\x5b\x7b\xcd\xc1\x81\x91\xc1\x7c\xcc" "\xe9\x45\xa8\xe5\x8f\x99\x9f\x83\xbb\x5a\x96\x1f\xcc\xd7\x54\xcb\xeb\xf3" "\xdb\xbb\xcf\xc1\x89\x0b\xa7\xcf\x4d\xcc\x7e\xea\xd3\x77\xcf\x9c\x3e\x76" "\x72\xfa\xe4\xf4\x99\x3d\xbb\x76\x4d\xee\xd9\xb7\xef\xc0\x81\x03\x13\x27" "\x66\x4e\x4d\x4f\x36\xfe\xbe\xc6\xbd\x5d\x7c\x1b\xb2\x81\x74\x0c\x6c\x0d" "\xfb\x2e\x1e\x03\x6f\x68\x5b\xb6\x79\xaa\xce\x7d\x6d\x64\xc1\xf9\xf7\x5a" "\x8f\xc3\xd1\x2e\xc7\xe1\xc6\xb6\x65\x57\xfb\x38\x1c\x6a\xdf\xb8\xda\xda" "\x1c\x90\x0b\xe7\x74\xe3\xd8\xf8\x40\x7d\xa7\x8f\x5e\x19\xc8\x16\x39\xc6" "\xf2\xd7\x67\xe7\xca\x8f\xc3\xb4\xdd\x4d\xc7\xe1\x50\xd3\x71\xd8\xf1\x7b" "\x4a\x87\xe3\x70\x68\x09\xc7\x61\x7d\x99\x73\x3b\x97\xf6\x9e\x65\xa8\xe9" "\x4f\xa7\x31\x2c\xfe\xbd\x60\x65\x73\x70\x63\xd3\x1c\x6c\x7f\x3f\xd2\x3e" "\x07\x57\xfb\xfd\x48\x51\xe6\xe0\x68\x98\x17\x3f\xd8\xb9\xf8\xf7\x82\xcd" "\x61\xbc\x8f\x8f\x2f\xf7\xfd\xc8\xe0\x82\x39\x98\x36\x37\x9c\x7b\xea\xb7" "\xa4\xf7\xfb\xa3\x07\xf2\xd2\x69\x5e\xde\x51\xbf\xe3\xa6\x91\xec\xe2\xec" "\xf4\xf9\x7b\x1e\x39\x76\xe1\xc2\xf9\x5d\x59\x28\x6b\xe2\x55\x4d\x73\xa5" "\x7d\xbe\x6e\x68\xda\xa6\x6c\xc1\x7c\x1d\x58\xf6\x7c\x3d\x3c\xf3\xda\xc7" "\xef\xe8\x70\xfb\xc6\xb0\xaf\x46\xef\xae\xff\x35\xba\xe8\x6b\x55\x5f\x66" "\xef\x3d\xdd\x5f\xab\xfc\xbb\x5b\xe7\xfd\xd9\x72\xeb\xee\x2c\x94\x55\xb6" "\xd6\xfb\xb3\xd3\x77\xf3\xfa\xfe\x1c\xc9\xb2\xaf\x7c\xe7\x33\x0f\x7d\xeb" "\xd1\xaf\xdc\xbf\xe8\xfe\xac\xf7\x9b\x9f\x9d\x58\xf9\x7b\xf1\xd4\x97\x36" "\x9d\x7f\x87\x17\x39\xff\xc6\xbe\xff\xa5\xc6\xfa\xd2\x53\x3d\x36\x38\x3c" "\xd4\x38\x7e\x07\xd3\xde\x19\x6e\x39\x1f\xb7\xbe\x54\x43\xf9\xb9\xab\x96" "\xaf\xfb\xc5\x89\xa5\x9d\x8f\x87\xc3\x9f\xb5\x3e\x1f\xdf\xda\xe5\x7c\xbc" "\xa9\x6d\xd9\xd5\x3e\x1f\x0f\xb7\x6f\x5c\x3c\x1f\xd7\x7a\xfd\xb4\x63\x65" "\xda\x5f\xcf\xd1\x30\x4f\x4e\x4d\x76\x3f\x1f\xd7\x97\xd9\xb4\x7b\xb9\x73" "\x72\xa8\xeb\xf9\xf8\xce\x50\x6b\x61\xff\xbf\x31\x74\x0a\xa9\x2f\x6a\x9a" "\x3b\x8b\xcd\xdb\xb4\xae\xa1\xa1\xe1\xb0\x5d\x43\x71\x0d\xad\xf3\x74\x4f" "\xcb\xf2\xc3\xa1\x37\xab\xaf\xeb\xa9\xdd\xe1\x4d\x61\x1a\xe5\xd2\xe6\xe9" "\x8e\x3b\x1b\xcb\x0f\x36\x3d\x2e\x5a\xab\x79\x3a\xd6\xb6\xec\x6a\xcf\xd3" "\xf4\xb3\xaf\xc5\xe6\x69\xad\xd7\x4f\xdf\xae\x4d\xfb\xeb\x39\x1a\xe6\xc5" "\xad\x7b\xba\xcf\xd3\xfa\x32\xcf\xee\x5d\xf9\xb9\x73\x7d\xfc\x67\xd3\xb9" "\x73\xa4\xd7\x1c\x1c\x1e\x1c\xa9\x8f\x79\x38\x4d\xc2\xfc\x7c\x9f\xcd\xad" "\x8f\x73\xf0\x9e\xec\x78\x76\x36\x3b\x95\x4d\xe5\xf7\x8e\xe4\xf3\xa9\x96" "\xaf\x6b\xfc\xde\xa5\x9d\x2b\x47\xc2\x9f\xb5\x3e\x57\x6e\xea\x32\x07\x77" "\xb4\x2d\xbb\xda\x73\x30\x7d\x1f\x5b\x6c\xee\xd5\x86\x16\x6e\xfc\x2a\x68" "\x7f\x3d\x47\xc3\xbc\x78\xe2\xde\xee\x73\xb0\xbe\xcc\x03\xfb\x57\xf7\xbd" "\xeb\x8e\x70\x4b\x5a\xa6\xe9\xbd\x6b\xfb\xcf\xd7\x16\xfb\x99\xd7\x1d\x6d" "\xbb\xe9\x7a\xcd\x95\xa1\x30\xce\xef\xec\xef\xfe\xb3\xd9\xfa\x32\xa7\x0e" "\x2c\xb7\xcf\xec\xbe\x9f\xee\x0a\xb7\xdc\xd4\x61\x3f\xb5\x1f\xbf\x8b\x1d" "\x53\x53\xd9\xda\xec\xa7\x4d\x61\x9c\x2f\x1c\x58\x7c\x3f\xd5\xc7\x53\x5f" "\xe6\xcb\x07\x97\x38\x9f\x0e\x67\x59\x76\xe9\x13\xf7\xe5\x3f\xef\x0d\xbf" "\x5f\xb9\x74\xf1\xfb\x4f\xb7\xfc\xde\xa5\xd3\xef\x74\x2e\x7d\xe2\xbe\x9f" "\xbe\xfc\xc4\x3f\x2d\x67\xfc\x00\xf4\xbf\x97\x1a\x65\x43\xe3\x7b\x5d\xd3" "\x6f\xa6\x96\xf2\xfb\x7f\x00\x00\x00\xa0\x2f\xc4\xbe\x7f\x20\xd4\x44\xff" "\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xf8\xbf\xc2\x13\xfd\x3f\x00\x00\x00\x94" "\x46\xec\xfb\x87\x42\x4d\xca\xd0\xff\xff\x71\xef\x45\x36\x3d\xf0\xc2\xcc" "\x4b\x97\xb2\x94\xcc\x9f\x0b\xe2\xfd\x69\x37\x3c\xd8\x58\x2e\x66\x5c\x27" "\xc3\xd7\x63\x73\xf3\xea\xb7\xdf\xf7\xe4\xf4\x7f\xff\xe3\xa5\xa5\x0d\x6f" "\x20\xcb\xb2\x5f\x3e\xf8\x47\x1d\x97\xdf\xf4\x60\x1c\x57\xc3\x58\x18\xe7" "\xd5\xb7\xb6\xde\xbe\xc0\xd3\x77\x2f\x69\xdd\x47\x1f\xbe\x94\xd6\xdb\x9c" "\x5f\xff\x6a\x78\xfe\xb8\x3d\x4b\x9d\x06\x9d\x22\xb8\x93\x59\x96\x3d\x73" "\xcb\x17\xf3\xf5\x8c\x7d\xf8\x4a\x5e\x9f\x7d\xf0\x68\x5e\x1f\xba\xfc\xf8" "\x63\xf5\x65\x5e\x3c\xd8\xf8\x3a\x3e\xfe\xf9\x57\x35\x96\xff\xab\x10\xfe" "\x3d\x7c\xe2\x58\xcb\xe3\x9f\x0f\xfb\xe1\xc7\xa1\x4e\xbe\xb3\xf3\xfe\x88" "\x8f\xfb\xc6\x95\x37\x6e\xde\xff\xc1\xf9\xf5\xc5\xc7\xd5\xb6\xde\x9c\x6f" "\xf6\x13\x1f\x69\x3c\x6f\xfc\x9c\x9c\x2f\x3d\xd6\x58\x3e\xee\xe7\xc5\xc6" "\xff\xad\x2f\x3c\xf5\x8d\xfa\xf2\x8f\xbc\xbe\xf3\xf8\x2f\x0d\x74\x1e\xff" "\x53\xe1\x79\x9f\x0c\xf5\x7f\x5e\xd3\x58\xbe\xf9\x35\xa8\x7f\x1d\x1f\xf7" "\xb9\x30\xfe\xb8\xbe\xf8\xb8\x7b\xbe\xfe\xed\x8e\xe3\xbf\xfa\xf9\xc6\xf2" "\xe7\xde\xd6\x58\xee\x68\xa8\x71\xfd\x3b\xc2\xd7\xdb\xde\xf6\xc2\x4c\xf3" "\xfe\x7a\xa4\x76\xac\x65\xbb\xb2\xb7\x37\x96\x8b\xeb\x9f\xfc\xfe\x9f\xe6" "\xf7\xc7\xe7\x8b\xcf\xdf\x3e\xfe\xd1\x23\x57\x5a\xf6\x47\xfb\xfc\x78\xf6" "\xdf\x1a\xcf\x33\xd1\xb6\x7c\xbc\x3d\xae\x27\xfa\x87\xb6\xf5\xd7\x9f\xa7" "\x79\x7e\xc6\xf5\x3f\xf5\x27\x47\x5b\xf6\x73\xaf\xf5\x5f\x7d\xe8\xf9\xd7" "\xd4\x9f\xb7\x7d\xfd\x77\xb5\x2d\x77\xee\x13\x3b\xf3\xf5\xcf\x3f\x5f\xeb" "\x27\x36\xfd\xf5\xe7\xbe\xd8\x71\x7d\x71\x3c\x87\xff\xfe\x5c\xcb\xf6\x1c" "\x7e\x5f\x38\x8e\xc3\xfa\x9f\xf8\x48\x98\x8f\xe1\xfe\xff\xbd\xda\x78\xbe" "\xf6\x4f\x57\x38\xfa\xbe\xd6\xf3\x4f\x5c\xfe\xab\x1b\x2f\xb5\x6c\x4f\xf4" "\x8e\x9f\x37\xd6\x7f\xf5\xcd\x27\xf3\xba\x6e\x74\xfd\x86\x9b\x5e\xf6\xf2" "\x9b\x2f\xbf\xae\xbe\xef\xb2\xec\xb9\x75\x8d\xe7\xeb\xb5\xfe\x93\x7f\x73" "\xb6\x65\xfc\x5f\xbb\xad\xb1\x3f\xe2\xfd\x31\xa3\xdf\xbe\xfe\xc5\xc4\xf5" "\x9f\xff\xe4\xf8\x99\xb3\xb3\x17\x67\xa6\xd2\x5e\x7d\xf4\x96\xfc\xb3\x73" "\xde\xd5\x18\x4f\x1c\xef\x2d\xe1\xdc\xda\xfe\xf5\x91\xb3\x17\x3e\x3a\x7d" "\x7e\x6c\x72\x6c\x32\xcb\xc6\xca\xfb\x11\x7a\xd7\xec\xeb\xa1\xfe\xb4\x51" "\x2e\x77\x5f\x7a\x6e\xc1\x19\x74\xe7\xc3\xe1\xf5\xbc\xe3\x2f\x9f\xd9\xb0" "\xfd\x5f\xbf\x10\x6f\xff\xf7\x0f\x34\x6e\xbf\xf2\xce\xc6\xf7\xad\x37\x84" "\xe5\xbe\x14\x6e\xdf\x18\x5e\xbf\xe5\xad\x7f\xa1\x27\xb6\xdc\x96\x1f\xdf" "\xb5\x67\xc3\x08\xe7\x16\x7e\x5e\xf0\x4a\x6c\xde\xf6\x5f\x07\x96\xb4\x60" "\xd8\xfe\xf6\xf7\x05\x71\xbe\x9f\x7b\xf5\x47\xf3\xfd\x50\xbf\x2f\xff\xbe" "\x11\x8f\xeb\x15\x8e\xff\x87\x53\x8d\xe7\xf9\x66\xd8\xaf\x73\xe1\x93\x99" "\xb7\xde\x36\xbf\xbe\xe6\xe5\xe3\x67\x23\x5c\x79\x7f\xe3\x78\x5f\xf1\xfe" "\x0b\xa7\xb9\xf8\xba\xfe\x5d\x78\xbd\xdf\xfd\xe3\xc6\xf3\xc7\x71\xc5\xed" "\xfd\x61\x78\x1f\xf3\xed\x4d\xad\xe7\xbb\x38\x3f\xbe\x79\x69\xa0\xfd\xf9" "\xf3\x4f\xf1\xb8\x1c\xce\x27\xd9\xe5\xc6\xfd\x71\xa9\xb8\xbf\xaf\xbc\x78" "\x5b\xc7\xe1\xc5\xcf\x21\xc9\x2e\xdf\x9e\x7f\xfd\x67\xe9\x79\x6e\x5f\xd6" "\x66\x2e\x66\xf6\x53\xb3\x13\xa7\x66\xce\x5c\x7c\x64\xe2\xc2\xf4\xec\x85" "\x89\xd9\x4f\x7d\xfa\xc8\xe9\xb3\x17\xcf\x5c\x38\x92\x7f\x96\xe7\x91\x8f" "\xf5\x7a\xfc\xfc\xf9\x69\x43\x7e\x7e\x9a\x9a\xde\xb7\x37\xcb\xcf\x56\x67" "\x1b\xe5\x3a\xbb\xd1\xe3\x3f\xf7\xf0\xf1\xa9\xfd\x93\xdb\xa7\xa6\x4f\x1c" "\xbb\x78\xe2\xc2\xc3\xe7\xa6\xcf\x9f\x3c\x3e\x3b\x7b\x7c\x7a\x6a\x76\xfb" "\xb1\x13\x27\xa6\x3f\xd9\xeb\xf1\x33\x53\x87\x76\xed\x3e\xb8\x67\xff\xee" "\xf1\x93\x33\x53\x87\x0e\x1c\x3c\xb8\xe7\xe0\xf8\xcc\x99\xb3\xf5\x61\x34" "\x06\xd5\xc3\xbe\xc9\x8f\x8f\x9f\x39\x7f\x24\x7f\xc8\xec\xa1\xbd\x07\x77" "\xdd\x7b\xef\xde\xc9\xf1\xd3\x67\xa7\xa6\x0f\xed\x9f\x9c\x1c\xbf\xd8\xeb" "\xf1\xf9\xf7\xa6\xf1\xfa\xa3\xff\x70\xfc\xfc\xf4\xa9\x63\x17\x66\x4e\x4f" "\x8f\xcf\xce\x7c\x7a\xfa\xd0\xae\x83\xfb\xf6\xed\xee\xf9\x69\x80\xa7\xcf" "\x9d\x98\x1d\x9b\x38\x7f\xf1\xcc\xc4\xc5\xd9\xe9\xf3\x13\x8d\x6d\x19\xbb" "\x90\xdf\x5c\xff\xde\xd7\xeb\xf1\x94\xd3\xec\x7f\x34\xde\xcf\xb6\xab\x35" "\x3e\x88\x2f\x7b\xef\x5d\xfb\xd2\xe7\xb3\xd6\x3d\xf9\x99\x45\x9f\xaa\xb1" "\x48\xdb\x07\x88\xbe\x10\x3e\x8b\xe6\xbb\xaf\x38\x77\x60\x29\x5f\xc7\xbe" "\x7f\x38\xd4\xa4\x0c\xfd\x3f\x00\x00\x00\x90\x8b\x7d\xff\x48\xa8\x89\xfe" "\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xeb\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a" "\xb1\xef\x1f\x0d\x35\xfd\x97\x80\x8a\xf4\xff\xa5\xcb\xff\x6f\xba\xb4\xa4" "\xf5\xcb\xff\xcb\xff\x37\xef\x2f\xf9\xff\x8a\xe5\xff\xdf\x5f\xb4\xfc\x7f" "\xe3\x7c\x21\xff\xbf\x3a\x56\x9a\xbf\x97\xff\x0f\x8a\x99\xff\x1f\xce\xe4" "\xff\xe5\xff\x0b\x3c\x7e\xf9\x7f\xf9\x7f\x16\x2a\x5a\xfe\x3f\xf6\xfd\xeb" "\xb3\xcc\xef\xff\x01\x00\x00\xa0\xa4\x62\xdf\xbf\x21\xd4\x44\xff\x0f\x00" "\x00\x00\xa5\x11\xfb\xfe\x9b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef" "\x7f\x59\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\xff\x92\xe6\xff\x87\x16" "\x5f\xbf\xfc\xbf\xfc\x7f\x99\xc9\xff\x77\xd7\xe7\xf9\x7f\xd7\xff\x5f\x83" "\xfc\x7f\x56\xad\xfc\xff\xe5\xd5\x1c\xff\x0d\xc8\xff\xaf\x6f\xfe\x42\xfe" "\x9f\x22\x2a\x5a\xfe\x3f\xf6\xfd\x2f\x0f\x35\xa9\x48\xff\x0f\x00\x00\x00" "\x55\x10\xfb\xfe\x9b\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xbf\x25" "\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x8d\xa1\x26\x15\xe9\xff\xe5" "\xff\x57\x94\xff\x4f\x99\x2b\xf9\xff\xd6\xf1\xcb\xff\xb7\x72\xfd\xff\x30" "\x1f\xe4\xff\xe5\xff\xd7\x80\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xbb\xfe\x7f" "\x7f\xe5\xff\x5b\xc8\xff\x53\x44\x45\xcb\xff\xc7\xbe\xff\x15\xa1\x26\x15" "\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xff\xca\x50\x13\xfd\x3f\x00\x00\x00" "\x14\xcf\xd0\xb5\x3d\x2c\xf6\xfd\xaf\x0a\x35\x59\xd0\xff\x5f\xe3\x0a\x00" "\x00\x00\x80\x1b\x2e\xf6\xfd\xb7\x66\x6d\x41\xf0\x8a\xfc\xfe\x5f\xfe\xdf" "\xf5\xff\xe5\xff\xe5\xff\xe5\xff\x3b\xaf\x7f\xe9\xf9\xff\xc1\x4c\xfe\xbf" "\x38\xe4\xff\xbb\x93\xff\xef\x41\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x55\x55" "\xb4\xfc\x7f\xde\xf7\x67\xa3\xd9\xab\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40" "\x15\xc4\xbe\xff\xb6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xff\x5f" "\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x9b\x42\x4d\x2a\xd2\xff\xcb" "\xff\x97\x26\xff\xff\x8b\xe6\x97\x4e\xfe\x5f\xfe\xbf\xdb\xfa\xe5\xff\x5d" "\xff\xbf\xcc\xe4\xff\xbb\x93\xff\xef\x41\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f" "\x55\x55\xb4\xfc\x7f\xec\xfb\x6f\x0f\x35\xa9\x48\xff\x0f\x00\x00\x00\x55" "\x10\xfb\xfe\x3b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xff\xff\xa1" "\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f\x0e\x35\xa9\x48\xff\x2f\xff" "\x5f\xf0\xfc\x7f\x4c\x8e\xba\xfe\xbf\xfc\xbf\xfc\x7f\x21\xf3\xff\xa3\xf2" "\xff\x85\x23\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xac" "\xaa\xa2\xe5\xff\x63\xdf\xff\x9a\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05" "\xb1\xef\x7f\x6d\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xaf\x0b\x35" "\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x2c\xd4\xa4\x22\xfd\xff\x72\xf2" "\xff\xb5\xcb\xf2\xff\x8b\xb9\xce\xd7\xff\x1f\x59\xc2\xf5\xff\x5b\xc8\xff" "\xcb\xff\x77\x5b\xbf\xfc\xbf\xeb\xff\x97\x99\xfc\x7f\x77\xf2\xff\x3d\xc8" "\xff\xcb\xff\xcb\xff\xcb\xff\xb3\xaa\x8a\x96\xff\x8f\x7d\xff\x96\x50\x93" "\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xdf\x1a\x6a\xa2\xff\x07\x00\x00" "\x80\xd2\x88\x7d\xff\x9d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f" "\x0b\x35\xa9\x48\xff\xef\xfa\xff\x7d\x91\xff\xcf\xe4\xff\xe5\xff\xe5\xff" "\xe5\xff\xe5\xff\x97\x46\xfe\xbf\x3b\xf9\xff\x1e\xe4\xff\xe5\xff\xe5\xff" "\xe5\xff\x59\x55\x45\xcb\xff\xc7\xbe\xff\xf5\xa1\x26\x15\xe9\xff\x01\x00" "\x00\xa0\x0a\x62\xdf\xbf\x3d\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe" "\x37\x84\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x23\xd4\xa4\x22\xfd" "\xbf\xfc\xbf\xfc\xbf\xfc\x7f\x5f\xe4\xff\xef\x5f\x9f\xc9\xff\xcb\xff\xcb" "\xff\x2f\x85\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\xcb\xff\xb3" "\xaa\x8a\x96\xff\x8f\x7d\xff\x1b\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15" "\xc4\xbe\x7f\x67\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x77\x85\x9a" "\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x3f\x1e\x6a\x52\x91\xfe\x5f\xfe\x5f" "\xfe\x5f\xfe\xbf\x2f\xf2\xff\xae\xff\x2f\xff\x2f\xff\xbf\x44\xf2\xff\xdd" "\xc9\xff\xf7\x20\xff\x2f\xff\x2f\xff\x2f\xff\xcf\xaa\x2a\x5a\xfe\x3f\xf6" "\xfd\x77\x87\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\x3d\xa1\x26" "\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x4f\x84\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\x3f\x19\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x7f" "\x59\xf9\xff\xd7\xcd\x3f\xaf\xfc\x7f\xc3\x75\xcd\xff\x3f\x20\xff\xbf\x5c" "\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x7f\xc3\xf3\xff\xc3\xf2\xff\x94" "\x4a\xd1\xf2\xff\xb1\xef\xdf\x15\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20" "\xf6\xfd\xbb\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xdf\x13\x6a\xa2" "\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xde\x50\x93\x8a\xf4\xff\xf2\xff\xf2" "\xff\xf2\xff\xf2\xff\xae\xff\xdf\x79\xfd\x85\xc8\xff\xbb\xfe\xff\xb2\xc9" "\xff\x77\xb7\xfa\xf9\xff\xb8\x89\x45\xc9\xff\xaf\x93\xff\x5f\x81\x1b\x9d" "\x9f\xef\xf7\xf1\xbb\xfe\xbf\xfc\x3f\x0b\x15\x2d\xff\x1f\xfb\xfe\x7b\x43" "\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\x7f\x5f\xa8\x89\xfe\x1f\x00" "\x00\x00\x4a\x23\xf6\xfd\xfb\x43\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef" "\x3f\x10\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xf3" "\xfa\xe5\xff\xfb\x93\xfc\x7f\x77\xae\xff\xdf\x83\xfc\xbf\xfc\x7f\x1f\xe7" "\xff\xeb\x73\x4b\xfe\x9f\xa2\x29\x5a\xfe\x3f\xf6\xfd\x07\x43\x4d\x2a\xd2" "\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x4d\xa1\x26\xfa\x7f\x00\x00\x00\x28" "\x8d\xd8\xf7\xff\x5a\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xbf\x1e" "\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xbf\xe8\xf9\xff\x11\xf9" "\x7f\xf9\xff\x65\x90\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\xff\x3e\xce\xff" "\xbb\xfe\x3f\x45\x54\xb4\xfc\x7f\xec\xfb\x0f\x85\x9a\x54\xa4\xff\x07\x00" "\x00\x80\x2a\x88\x7d\xff\x6f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf" "\xff\xe6\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x0f\x87\x9a\x54\xa4" "\xff\x97\xff\x5f\xa3\xfc\x7f\xbc\x51\xfe\x5f\xfe\x5f\xfe\xdf\xf5\xff\xe5" "\xff\xaf\x2b\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97\xff\x97\xff\x97\xff\x67" "\x55\x15\x2d\xff\x1f\xfb\xfe\xb7\x84\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a" "\x88\x7d\xff\x7d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x1f\x6a" "\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x03\xa1\x26\x15\xe9\xff\xe5\xff" "\xfb\xec\xfa\xff\xa3\x65\xcc\xff\x0f\xb7\x8c\x5d\xfe\x7f\xfe\x71\xf2\xff" "\x0d\xf2\xff\xf2\xff\xcb\x21\xff\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2" "\xff\xf2\xff\xac\xaa\xa2\xe5\xff\x63\xdf\xff\xd6\x50\x93\x8a\xf4\xff\x00" "\x00\x00\x50\x05\xb1\xef\x7f\x5b\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6" "\xfd\x6f\x0f\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x1d\xa1\x26\x15" "\xe9\xff\xe5\xff\xfb\x2c\xff\xef\xfa\xff\xf2\xff\xf2\xff\xf2\xff\xf2\xff" "\x5d\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x3f\xab\xaa" "\x68\xf9\xff\xd8\xf7\xff\x66\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8" "\xf7\x3f\x18\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x3b\x43\x4d\xf4" "\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x57\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce\xeb\x97\xff\xef\x4f\xf2\xff\xdd\xf5\x59" "\xfe\xff\x57\x37\x87\xdb\xe5\xff\x1b\xe4\xff\x8b\x3d\xfe\xe5\xe6\xff\x87" "\xda\xbe\xbe\x2e\xf9\xff\x1f\x2d\x96\xff\x9f\x5b\xd7\xfe\x78\xf9\x7f\xae" "\x87\xa2\xe5\xff\x63\xdf\xff\xee\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05" "\xb1\xef\x7f\x4f\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xef\x0d\x35" "\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xb7\x42\x4d\x2a\xd2\xff\xcb\xff" "\xd7\xc7\x31\x9f\x5e\x96\xff\x97\xff\xcf\x6f\x90\xff\x5f\x4e\xfe\x7f\x48" "\xfe\x5f\xfe\xbf\x48\xe4\xff\xbb\xeb\xb3\xfc\xbf\xeb\xff\xb7\x91\xff\x2f" "\xf6\xf8\x5d\xff\x5f\xfe\x9f\x85\x8a\x96\xff\x8f\x7d\xff\xfb\x42\x4d\x2a" "\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\xa1\x50\x13\xfd\x3f\x00\x00\x00" "\x94\x46\xec\xfb\xdf\x1f\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x07" "\x42\x4d\x2a\xd2\xff\xcb\xff\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xeb\xff\x77\x5e" "\xbf\xfc\x7f\x7f\x92\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\xff\xa2\xe5\xff" "\xff\x53\xfe\x9f\xfe\x56\xb4\xfc\x7f\xec\xfb\x1f\x0e\x35\xa9\x48\xff\x0f" "\x00\x00\x00\x55\x10\xfb\xfe\x0f\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62" "\xdf\xff\xdb\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x7f\x28\xd4\xa4" "\x22\xfd\xbf\xfc\x7f\xbf\xe4\xff\xc7\xe4\xff\x97\x99\xff\x1f\x09\xb7\xc9" "\xff\xcb\xff\xcb\xff\x57\x8b\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\x17" "\x2d\xff\xef\xfa\xff\xf4\xb9\xa2\xe5\xff\x63\xdf\xff\xe1\x50\x93\xa5\xf7" "\xff\xa3\x4b\x5e\x12\x00\x00\x00\xb8\x21\x62\xdf\xff\x3b\xa1\x26\xcd\xfd" "\x7f\xfb\x2f\xa3\x00\x00\x00\x80\xbe\x12\xfb\xfe\xdf\x0d\x35\xa9\xc8\xff" "\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\xef\x85\x9a\x54\xa4\xff\x97\xff\xef" "\x97\xfc\xbf\xeb\xff\x67\xae\xff\x2f\xff\xdf\xb6\x3d\xf2\xff\xf2\xff\x9d" "\xac\x5d\xfe\x3f\x9e\x79\xe4\xff\xe5\xff\xe5\xff\x23\xf9\x7f\xf9\x7f\xf9" "\x7f\xda\x15\x2d\xff\x1f\xfb\xfe\xdf\x0f\x35\xa9\x48\xff\x0f\x00\x00\x00" "\x55\x10\xfb\xfe\x8f\x84\x1a\xf8\x4c\x3f\x00\x00\x00\xe8\x13\x9d\xfe\x4f" "\x76\xbb\xd8\xf7\x1f\x09\x35\xf1\xfb\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x1f" "\x0d\x35\xa9\x48\xff\x2f\xff\x2f\xff\x2f\xff\x5f\xd0\xfc\xff\x5f\x6c\xfd" "\x97\x1f\x7c\xef\x3d\x47\x77\xc9\xff\xb7\xe4\xff\x2f\xcb\xff\xcb\xff\xf7" "\xb0\xa6\xd7\xff\xaf\x1f\xfc\xae\xff\x2f\xff\x2f\xff\x9f\xc8\xff\xcb\xff" "\xcb\xff\xd3\xae\x68\xf9\xff\xd8\xf7\x1f\x0b\x35\x99\x6f\xfc\xde\x25\x0c" "\x00\x00\x00\x00\xfd\x2d\xf6\xfd\x7f\x10\x6a\x52\x91\xdf\xff\x03\x00\x00" "\x40\x15\xc4\xbe\xff\x78\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x53" "\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xe5\xff\x0b\x9a\xff\xef\xe3\xeb\xff" "\xc7\xfd\xd1\x4f\xd7\xff\x1f\x5f\xd7\x47\xf9\xff\x78\xd2\x95\xff\xef\x68" "\x4d\xf3\xff\x1f\x9c\xcf\x89\xcb\xff\x2f\x37\xff\x3f\xd2\xf1\xd6\xf6\xfc" "\x7f\x4d\xfe\xbf\x85\xfc\xff\xb2\xc7\xff\xdd\x2c\xcb\xe4\xff\xe5\xff\xb9" "\x81\x8a\x96\xff\x8f\x7d\xff\x74\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82" "\xd0\xf7\x0f\x9c\x68\xd4\xf9\x3b\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x3f" "\x19\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x47\x43\x4d\x2a\xd2\xff" "\xcb\xff\xcb\xff\xcb\xff\xcb\xff\xf7\xd3\xf5\xff\x33\xd7\xff\x77\xfd\xff" "\x1e\xe4\xff\xbb\x2b\x4e\xfe\xbf\x33\xd7\xff\x97\xff\xef\xe7\xf1\xcb\xff" "\xcb\xff\xb3\x50\xd1\xf2\xff\xb1\xef\x9f\x09\x35\xa9\x48\xff\x0f\x00\x00" "\x00\x55\x10\xfb\xfe\x8f\x85\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff" "\xf1\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x4f\x85\x9a\x54\xa4\xff" "\x97\xff\x97\xff\x97\xff\x97\xff\x97\xff\xef\xbc\x7e\xf9\xff\xfe\x24\xff" "\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\xac\xaa\xa2\xe5\xff" "\x63\xdf\x7f\x3a\xd4\xe4\xff\xd8\xbb\x93\x27\x4b\xcb\x2a\x8f\xe3\x37\xe9" "\x24\xa8\x0a\x36\xbd\xeb\x45\x2f\xba\xf7\xfd\x27\xb0\x68\xd6\xdd\x7f\x80" "\x0b\x22\x0c\x17\x1a\x61\xb8\x00\x15\xe7\x89\xc2\x79\xc4\x79\x1e\x70\x16" "\x07\x1c\x40\x11\x27\x9c\x27\x70\x42\x71\x16\x15\xe7\x79\xc0\x19\x35\xca" "\x80\x3a\xe7\x54\x65\xe6\x9b\xef\xcd\xac\xba\x99\xf9\xdc\xe7\xf9\x7c\x16" "\x1e\x48\x48\xef\x2d\xad\x80\xfa\x55\xd6\xb7\xde\x41\xf6\x3f\x00\x00\x00" "\x8c\x20\x77\xff\xa5\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\x7f\x59\xdc" "\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x3f\x30\x6e\x19\x64\xff\xeb\xff\xf5" "\xff\xdd\xf6\xff\xff\xab\xff\xdf\xed\xf5\xf5\xff\xfa\xff\x9e\xe9\xff\xe7" "\xe9\xff\x97\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x56\xaa\xb5\xfe\x3f\x77\xff" "\x83\xe2\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x83\xe3\x16\xfb\x1f" "\x00\x00\x00\xba\x91\xbb\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee" "\x7f\x48\xdc\x32\xc8\xfe\xdf\xd6\xff\x6f\x2c\xc6\xec\xff\x33\xe3\xd5\xff" "\xf7\xd4\xff\x7b\xfe\xff\xae\xaf\xaf\xff\xd7\xff\xf7\xec\x70\xfb\xff\x2b" "\xef\xfe\x27\x9f\xfe\x5f\xff\xaf\xff\x0f\xfa\x7f\xfd\xbf\xfe\x9f\xed\x5a" "\xeb\xff\x73\xf7\x3f\x34\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7\x3f" "\x2c\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x1f\x1e\xb7\xd8\xff\x00\x00" "\x00\xd0\x8d\xdc\xfd\x8f\x88\x5b\x06\xd9\xff\x9e\xff\xef\xf9\xff\xfa\x7f" "\xfd\xbf\xfe\x7f\xfa\xf5\xf5\xff\xeb\xc9\xf3\xff\xe7\x8d\xd4\xff\x5f\x7e" "\xdb\x85\x97\xde\x79\xc3\x7f\xde\xb8\x9f\xd7\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\x56\xab\xb5\xfe\x3f\x77\xff\x23\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c" "\x20\x77\xff\xa3\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xd1\x71\x8b" "\xfd\x0f\x00\x00\x00\x6b\xe8\xf8\xe4\x47\x73\xf7\x3f\x26\x6e\x19\x64\xff" "\xeb\xff\xf5\xff\xfa\xff\xe8\xff\x8f\xe9\xff\xf5\xff\xfa\xff\x1e\xe8\xff" "\xe7\x8d\xd4\xff\x9f\xcd\xeb\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xab\xd5\x5a" "\xff\x9f\xbb\xff\xb1\x71\xcb\x20\xfb\x1f\x00\x00\x00\x46\x90\xbb\xff\x71" "\x71\x8b\xfd\x0f\x00\x00\x00\xed\x9a\xfa\x85\xd8\x33\x72\xf7\x5f\x11\xb7" "\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x27\xe2\x96\x41\xf6\xbf\xfe\xff\xe0" "\xfb\xff\x7f\xea\xff\xd7\xa3\xff\xf7\xfc\x7f\xfd\xbf\xfe\xbf\x0b\xfa\xff" "\x79\xfa\xff\x25\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x95\x6a\xad\xff\xcf\xdd" "\x7f\x65\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee\x7f\x7c\xdc\x62\xff" "\x03\x00\x00\x40\x37\x72\xf7\x3f\x21\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9" "\xfb\x9f\x18\xb7\x0c\xb2\xff\xf5\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xa7" "\x5f\x5f\xff\xbf\x9e\xf4\xff\xf3\xf4\xff\x4b\xe8\xff\xcf\xb5\x9f\x3f\x5f" "\xff\xaf\xff\xd7\xff\x73\xa6\x7d\xf6\xff\x77\xcd\xfc\x63\x7b\x25\xfd\x7f" "\xee\xfe\x27\xc5\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x27\xc7\x2d" "\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x53\xe2\x16\xfb\x1f\x00\x00\x00\xba" "\x91\xbb\xff\xa9\x71\xcb\x20\xfb\x5f\xff\xaf\xff\xd7\xff\xb7\xdc\xff\x6f" "\x2e\x9a\xee\xff\x77\x7e\xd7\xbb\x87\xfe\x7f\x9a\xfe\xff\x70\xe8\xff\xe7" "\x35\xd3\xff\x6f\x6c\x4e\x7e\x58\xff\xbf\xf6\xfd\xbf\xe7\xff\xeb\xff\xf5" "\xff\x6c\xd1\xda\xf3\xff\x73\xf7\x3f\x2d\x6e\x19\x64\xff\x03\x00\x00\xc0" "\x08\x72\xf7\x3f\x3d\x6e\x99\xd9\xff\xfb\xfe\xc9\x7c\x00\x00\x00\xe0\x48" "\xe5\xee\x7f\x46\xdc\xe2\xeb\xff\x00\x00\x00\xb0\xf6\xb2\x3a\xcb\xdd\xff" "\xcc\xb8\x65\x90\xfd\xaf\xff\xd7\xff\xeb\xff\x5b\xee\xff\x3d\xff\x7f\xd1" "\x68\xff\x7f\xe3\x19\xef\x4f\xff\xdf\x16\xfd\xff\xbc\x66\xfa\xff\x5d\xe8" "\xff\xf5\xff\xeb\xfc\xfe\xf5\xff\xfa\x7f\x76\x6a\xad\xff\xcf\xdd\xff\xac" "\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8\xdd\x7f\x55\xdc\x62\xff\x03\x00" "\x00\x40\x37\x72\xf7\x3f\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x9f" "\x13\xb7\x0c\xb2\xff\xa7\xfb\xff\xd3\x7f\x5d\xff\xbf\x37\xfa\xff\xad\xef" "\x5f\xff\x3f\xfd\xfd\x63\x55\xfd\x7f\xfe\x37\xea\xff\x67\xfb\xff\x8b\x3d" "\xff\x7f\x4c\xfa\xff\x79\xfa\xff\x25\xf4\xff\xfa\x7f\xfd\xff\x6e\xfd\xff" "\xf1\x65\x9f\xaf\xff\x67\x4a\x6b\xfd\x7f\xee\xfe\xe7\xc6\x2d\x83\xec\x7f" "\x00\x00\x00\x18\x41\xee\xfe\xe7\xc5\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77" "\xff\xf3\xe3\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x05\x71\xcb\x20\xfb" "\xdf\xf3\xff\xf5\xff\xfa\xff\xf5\xeb\xff\x3d\xff\xff\x94\xa3\x7c\xfe\xff" "\xe2\xd0\xfb\xff\x4d\xfd\xff\x1e\xe9\xff\xe7\xe9\xff\x97\xd0\xff\xeb\xff" "\xf5\xff\xf3\xcf\xff\x9f\xf9\x5d\x00\xf4\xff\x4c\x69\xad\xff\xcf\xdd\xff" "\xc2\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8\xdd\xff\xa2\xb8\xc5\xfe\x07" "\x00\x00\x80\xf5\x70\xe6\xaf\x1d\xd8\xfe\x0b\x4a\x43\xee\xfe\x17\xc7\x2d" "\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x4b\xe2\x96\x7e\xf6\xff\xec\xb3\x3a" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfd\xfa\x6d\xf5\xff\x9e\xff\xbf" "\x57\xfa\xff\x79\xfa\xff\x25\xf4\xff\x07\xd1\xcf\x6f\x76\xd6\xff\x5f\xbd" "\xdb\xe7\xb7\xd0\xff\x5f\x71\xd0\xfd\xff\x0c\xfd\x3f\x53\xb6\xf4\xff\x37" "\x9d\xfe\xf8\x51\xf5\xff\xb9\xfb\x5f\x1a\xb7\xf4\xb3\xff\x01\x00\x00\x60" "\x78\xb9\xfb\x5f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x2f\x8f\x5b" "\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x57\xc4\x2d\x83\xec\xff\x03\xef\xff" "\x67\x7e\xf7\x01\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x57\x4d\xff" "\x3f\x4f\xff\xbf\x84\xfe\xdf\xf3\xff\x3d\xff\x5f\xff\xcf\x4a\x6d\xe9\xff" "\xcf\x70\x54\xfd\x7f\xee\xfe\x57\xc6\x2d\x83\xec\x7f\x00\x00\x00\x18\x41" "\xee\xfe\x57\xc5\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\xd5\x71\x8b\xfd" "\x0f\x00\x00\x00\xdd\xc8\xdd\xff\xea\xb8\x65\x90\xfd\xef\xf9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x3f\xfd\xfa\xfa\xff\xf5\x74\x4e\xfd\xfd\x79\xfa\xff" "\xa2\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\x56\xa0\xb5\xfe\x3f\x77\xff\x6b" "\xe2\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x6b\xe3\x16\xfb\x1f\x00" "\x00\x00\xba\x91\xbb\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff" "\xfa\xb8\x65\x90\xfd\xaf\xff\x3f\xd8\xfe\x3f\x3f\xae\xff\xd7\xff\x2f\xf4" "\xff\xfa\x7f\xfd\xff\xa1\x18\xf6\xf9\xff\x1b\x53\xff\x26\xda\x69\x97\xfe" "\xff\x96\xfb\x9f\xf8\xff\xad\x1f\xd1\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x7b\xf4\xef\x33\x7f\xad\x89\xfe\xff\xe4\xe9\x1f\x5d\xe6\xee\x7f\x43\xdc" "\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee\x7f\x63\xdc\x62\xff\x03\x00\x00" "\x40\x37\x72\xf7\xbf\x29\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\xaf\x89" "\x5b\xf6\xb9\xff\xe7\x9a\x87\x96\xe9\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff" "\x4f\xbf\xbe\xfe\x7f\x3d\x0d\xdb\xff\xef\x91\xe7\xff\x2f\xa1\xff\xd7\xff" "\xeb\xff\xf5\xff\xac\x54\x13\xfd\xff\x19\x7f\x9e\xbb\xff\xcd\x71\x8b\xaf" "\xff\x03\x00\x00\x40\x37\x72\xf7\xbf\x25\x6e\xb1\xff\x01\x00\x00\xa0\x1b" "\xb9\xfb\xdf\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\x6f\x8b\x5b\x06" "\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x9f\x7e\x7d\xfd\xff\x7a\xd2" "\xff\xcf\xd3\xff\x2f\xb1\x4e\xfd\xff\x35\xe7\xd0\xff\x6f\x4e\x7f\xf8\xa8" "\xfb\xf9\x73\x75\xd4\xef\x5f\xff\xaf\xff\x67\xa7\xd6\xfa\xff\xdc\xfd\xd7" "\xc6\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\xb7\xc7\x2d\xf6\x3f\x00" "\x00\x00\x74\x23\x77\xff\x3b\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff" "\x9d\x71\xcb\x20\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xaf\xaf" "\xff\x5f\x4f\xfa\xff\x79\xfa\xff\xc5\x62\x71\xdd\xcc\x1b\x98\xea\xff\x4f" "\x5e\xd0\x66\xff\xef\xf9\xff\xcd\xbd\x7f\xfd\xbf\xfe\x9f\x9d\x5a\xeb\xff" "\x73\xf7\xbf\x2b\x6e\x19\x64\xff\x03\x00\x00\xc0\x08\x72\xf7\x5f\x17\xb7" "\xd8\xff\x00\x00\x00\xd0\x8d\xdc\xfd\xd7\xc7\x2d\xf6\x3f\x00\x00\x00\x74" "\x23\x77\xff\xbb\xe3\x96\x41\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xa7\x5f\x5f\xff\xbf\x9e\xf4\xff\xf3\xf4\xff\x4b\xac\xd3\xf3\xff\xf5\xff" "\xcd\xbd\x7f\xfd\xbf\xfe\x9f\x9d\x5a\xeb\xff\x73\xf7\xbf\x27\x6e\x19\x64" "\xff\x03\x00\x00\xc0\x08\x72\xf7\xdf\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8d" "\xdc\xfd\xef\x8d\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x1b\xe3\x96\x41" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7\x5f\x5f\xff\xbf\x9e\x0e" "\xae\xff\x5f\xe8\xff\xf5\xff\xfa\xff\x25\xf4\xff\xfa\x7f\xfd\x3f\xdb\xb5" "\xd6\xff\xe7\xee\x7f\x5f\xdc\x32\xc8\xfe\x07\x00\x00\x80\x11\xe4\xee\x7f" "\x7f\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x7f\x20\x6e\xb1\xff\x01\x00" "\x00\xa0\x1b\xb9\xfb\x3f\x18\xb7\x0c\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\xbf\xcf\xfe\xff\x02\xfd\xff\xa0\x3c\xff\x7f\x9e\xfe\x7f\x09\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x67\xa5\xa6\xfb\xff\x2b\x8e\xac\xff\xcf\xdd\xff\xa1\xb8" "\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00" "\x40\x37\x72\xf7\x7f\x38\x6e\xb1\xff\x01\x00\x00\xa0\x1b\xb9\xfb\x3f\x12" "\xb7\x0c\xb2\xff\xf5\xff\xfa\xff\xad\xfd\xff\x62\xa1\xff\xd7\xff\xf7\xd1" "\xff\xaf\xc5\xf3\xff\x8f\x2d\xf4\xff\x2b\xa7\xff\x9f\xa7\xff\x5f\x42\xff" "\xdf\x67\xff\x7f\xde\xa2\xa3\xfe\xff\xf8\xae\x9f\xaf\xff\xa7\x45\xad\x3d" "\xff\x3f\x77\xff\x47\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\xc7" "\xe2\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\xe3\x71\x8b\xfd\x0f\x00\x00" "\x00\xdd\xc8\xdd\xff\x89\xb8\x65\x90\xfd\xaf\xff\xd7\xff\x7b\xfe\xbf\xfe" "\x5f\xff\x3f\xfd\xfa\x9e\xff\xbf\x9e\xf4\xff\xf3\xf4\xff\x4b\xe8\xff\xfb" "\xec\xff\x3d\xff\x5f\xff\xcf\x91\x69\xad\xff\xcf\xdd\xff\xc9\xb8\x65\x90" "\xfd\x0f\x00\x00\x00\x23\xc8\xdd\xff\xa9\xb8\xc5\xfe\x07\x00\x00\x80\x6e" "\xe4\xee\xff\x74\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\x7f\x26\x6e\x19" "\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfa\xf5\xf5\xff\xeb\x49" "\xff\x3f\x4f\xff\xbf\x84\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x52\xad\xf5\xff" "\xb9\xfb\x3f\x1b\xb7\xec\x3a\xfc\xb6\xff\xc8\x14\x00\x00\x00\x68\x5d\xee" "\xfe\x9b\xe3\x96\x41\xbe\xfe\x0f\x00\x00\x00\x23\xc8\xdd\x7f\x4b\xdc\x62" "\xff\x03\x00\x00\x40\x37\x72\xf7\x7f\x2e\x6e\x19\x64\xff\xeb\xff\xf5\xff" "\xfa\xff\xf5\xec\xff\x8f\xe9\xff\xf5\xff\xfa\xff\x49\xad\xf4\xff\x17\x5d" "\xf4\x7f\xb7\xea\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xba\xd6\xfa" "\xff\xdc\xfd\x9f\x8f\x5b\x06\xd9\xff\x00\x00\x00\x30\x82\xdc\xfd\x5f\x88" "\x5b\xec\x7f\x00\x00\x00\xe8\x46\xee\xfe\x2f\xc6\x2d\xf6\x3f\x00\x00\x00" "\x74\x23\x77\xff\x97\xe2\x96\x41\xf6\xff\xce\xfe\xff\xfc\xc5\xa9\x42\xf5" "\x94\xa9\xfe\x3f\x1a\x35\xfd\xff\x19\xf4\xff\x5b\xdf\xbf\xfe\x7f\xfa\xfb" "\x87\xe7\xff\xeb\xff\xf5\xff\x07\xaf\x95\xfe\xdf\xf3\xff\xcf\xee\xfd\xeb" "\xff\xf5\xff\xeb\xfc\xfe\xf7\xd5\xff\xff\xf7\xce\xcf\xd7\xff\xd3\xa3\xd6" "\xfa\xff\xdc\xfd\xb7\xc6\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x2f" "\xc7\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff\x57\xe2\x16\xfb\x1f\x00\x00" "\x00\xba\x91\xbb\xff\xb6\xb8\x65\x90\xfd\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\x3f\xfd\xfa\xfa\xff\xf5\xa4\xff\x9f\xa7\xff\x5f\x42\xff\xaf\xff" "\xf7\xfc\xff\xcb\xee\xfb\x6f\xfa\x7f\x56\xa7\xb5\xfe\x3f\x77\xff\x57\xe3" "\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\xd7\xe2\x16\xfb\x1f\x00\x00" "\x00\xba\x91\xbb\xff\xeb\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd\xff\x8d" "\xb8\x65\x90\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe9\xd7\xd7\xff" "\xaf\x27\xfd\xff\x3c\xfd\x7f\xd9\xfe\x4d\x3b\x65\x9c\xfe\xff\xd8\xd4\x07" "\x8f\xba\x9f\x3f\x57\x47\xfd\xfe\xbb\xe9\xff\x3d\xff\x9f\x15\x6a\xad\xff" "\xcf\xdd\xff\xcd\xb8\x65\x90\xfd\x0f\x00\x00\x00\x23\xc8\xdd\xff\xad\xb8" "\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\x76\xdc\x62\xff\x03\x00\x00\x40" "\x37\x72\xf7\x7f\x27\x6e\x19\x64\xff\xeb\xff\xf5\xff\xfd\xf7\xff\xf7\xd1" "\xff\x6f\x7b\x7d\xfd\xbf\xfe\xbf\x67\xfa\xff\xfc\x37\xfa\x34\xfd\xff\x12" "\xe3\xf4\xff\x93\x8e\xba\x9f\x5f\xf7\xf7\xaf\xff\xd7\xff\xb3\x53\x6b\xfd" "\x7f\xee\xfe\xdb\xe3\x96\x41\xf6\x3f\x00\x00\x00\x8c\x20\x77\xff\x77\xe3" "\x16\xfb\x1f\x00\x00\x00\xba\x91\xbb\xff\x7b\x71\x8b\xfd\x0f\x00\x00\x00" "\xdd\xc8\xdd\xff\xfd\xb8\x65\x90\xfd\xaf\xff\x1f\xab\xff\xdf\x58\x8c\xd8" "\xff\x7b\xfe\xbf\xfe\x5f\xff\x3f\x12\xfd\xff\x3c\xfd\xff\x12\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\x4a\xb5\xd6\xff\xe7\xee\xbf\x63\x63\x73\xc8\xfd\x0f" "\x00\x00\x00\xeb\xea\x5e\xff\xf3\x80\xdb\xf7\xfa\xf7\xde\x71\xcf\x7f\x1e" "\x5b\xfc\x20\x6e\xb9\x78\x71\x72\x8f\x5f\xc6\x06\x00\x00\x00\x1a\x77\xf7" "\xee\xdf\xd8\x5c\x2c\x7e\x78\xcf\x9f\xf9\xfa\x3f\x00\x00\x00\xf4\x28\x77" "\xff\x8f\xe2\x96\x41\xf6\xbf\xfe\x7f\xac\xfe\x7f\x7d\x9f\xff\x7f\x93\xfe" "\x5f\xff\xaf\xff\xd7\xff\xef\x89\xfe\x7f\x9e\xfe\x7f\x09\xfd\xbf\xfe\x5f" "\xff\xaf\xff\x67\xa5\x5a\xeb\xff\x73\xf7\xff\x38\x6e\x39\x63\xf8\x6d\xee" "\xfb\x5b\x09\x00\x00\x00\xb4\x24\x77\xff\x4f\xe2\x96\x41\xbe\xfe\x0f\x00" "\x00\x00\x23\xc8\xdd\xff\xd3\xb8\x65\xc7\xfe\xf7\xdb\x01\x02\x00\x00\xc0" "\xba\xca\xdd\xff\xb3\xb8\x65\x90\xaf\xff\xeb\xff\x1b\xef\xff\x17\x07\xd4" "\xff\xc7\xdf\xb7\x3e\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\xfa\xff\xbd\xd1\xff" "\xcf\x3b\xc7\xfe\xff\xe4\x86\xfe\x5f\xff\x3f\x43\xff\xaf\xff\xd7\xff\xb3" "\x5d\x6b\xfd\x7f\xee\xfe\x9f\xc7\x2d\x83\xec\x7f\x00\x00\x00\xe8\xd4\x96" "\x9f\x51\xc8\xdd\xff\x8b\xb8\xc5\xfe\x07\x00\x00\x80\x6e\xe4\xee\xff\x65" "\xdc\x62\xff\x03\x00\x00\x40\x37\x72\xf7\xff\x2a\x6e\x19\x64\xff\xeb\xff" "\x0f\xbd\xff\xcf\x54\xfd\x00\x9f\xff\x7f\xbc\xfe\xa8\x9f\xe7\xff\xeb\xff" "\xcf\xaa\xff\xbf\xea\xd8\xe4\xeb\xeb\xff\xf5\xff\x3d\xd3\xff\xcf\xf3\xfc" "\xff\x25\xf4\xff\xbd\xf4\xff\x17\xe8\xff\xf5\xff\xb4\xa1\xb5\xfe\x3f\x77" "\xff\xaf\xe3\x96\xf9\xe1\x77\xef\xf9\x6f\x25\x00\x00\x00\xd0\x92\xdc\xfd" "\xbf\x89\x5b\x06\xf9\xfa\x3f\x00\x00\x00\x8c\x20\x77\xff\x6f\xe3\x16\xfb" "\x1f\x00\x00\x00\xba\x91\xbb\xff\x77\x71\xcb\x20\xfb\x5f\xff\xdf\xf8\xf3" "\xff\xcf\xaa\xff\xdf\xc3\xf3\xff\xf5\xff\x63\xf4\xff\xbb\xbc\x7e\x3f\xfd" "\xff\x7f\x5c\x78\xe2\xe6\x4b\xee\x77\xfd\xb5\xfa\x7f\x4e\x3b\xcc\xfe\x3f" "\xbf\x2f\xe8\xff\xf5\xff\xfa\xff\x53\x1a\xea\xff\x8f\xe4\xfd\xdf\xfd\xff" "\x8f\xfe\x5f\xff\xcf\x56\xab\xef\xff\x37\xb7\x7c\x70\xbf\xfd\x7f\xee\xfe" "\xdf\xc7\x2d\x83\xec\x7f\x00\x00\x00\x18\x41\xee\xfe\x3b\xe3\x16\xfb\x1f" "\x00\x00\x00\xba\x91\xbb\xff\x0f\x71\x8b\xfd\x0f\x00\x00\x00\xdd\xc8\xdd" "\xff\xc7\xb8\x65\x90\xfd\xaf\xff\xd7\xff\xb7\xd2\xff\xe7\xff\xd6\x47\xd0" "\xff\x9f\x38\xeb\xfe\xff\xf8\x62\xb1\x38\x92\xfe\x3f\x9b\xe2\xd1\xfb\x7f" "\xcf\xff\xd7\xff\xef\xe4\xf9\xff\xf3\xf4\xff\x4b\xe8\xff\xf5\xff\x9e\xff" "\xaf\xff\x67\xa5\x56\xdf\xff\x6f\xfd\xe0\x7e\xfb\xff\xdc\xfd\x7f\x8a\x5b" "\x06\xd9\xff\x00\x00\x00\x30\x82\xdc\xfd\x7f\x8e\x5b\x72\xff\x6f\xec\xfb" "\xa7\xee\x01\x00\x00\x80\xc6\xe4\xee\xff\x4b\xdc\xe2\xeb\xff\x00\x00\x00" "\xd0\x8d\xdc\xfd\x7f\x8d\x5b\x06\xd9\xff\xfa\x7f\xfd\x7f\x2b\xfd\x7f\xf2" "\xfc\xff\xd3\x9f\xd7\xd7\xf3\xff\x2f\xa9\x38\x75\xcc\xfe\xff\xbf\xea\x8f" "\xf4\xff\x07\xeb\x30\xfa\xff\xfc\xd1\x82\xfe\x5f\xff\xaf\xff\xdf\x4a\xff" "\xaf\xff\xd7\xff\xb3\xdd\x01\xf5\xff\xf9\xc3\xb0\x7d\xf7\xff\xb9\xfb\xff" "\x16\xb7\x0c\xb2\xff\x01\x00\x00\x60\x04\xb9\xfb\xef\x8a\x5b\xec\x7f\x00" "\x00\x00\xe8\x46\xee\xfe\xbf\xc7\x2d\xf6\x3f\x00\x00\x00\x74\x23\x77\xff" "\x3f\xe2\x96\x41\xf6\xbf\xfe\xbf\xd7\xfe\x3f\x8b\x78\xfd\xbf\xfe\xbf\x95" "\xfe\xdf\xf3\xff\x3d\xff\xff\x70\x78\xfe\xff\x3c\xfd\xff\x12\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\xcf\x4a\xb5\xf6\xfc\xff\xdc\xfd\xff\x0a\x00\x00\xff\xff" "\x8f\x6a\x74\x3d", 25114); syz_mount_image( /*fs=*/0x200000000100, /*dir=*/0x200000000000, /*flags=MS_POSIXACL|MS_STRICTATIME|MS_NOSUID|MS_NODEV*/ 0x1010006, /*opts=*/0x2000000013c0, /*chdir=*/0x24, /*size=*/0x621a, /*img=*/0x200000001500); // mkdirat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 37 00} (length 0x8) // } // mode: open_mode = 0x1c0 (8 bytes) // ] memcpy((void*)0x200000000540, "./file7\000", 8); syscall(__NR_mkdirat, /*fd=*/0xffffff9c, /*path=*/0x200000000540ul, /*mode=S_IXUSR|S_IWUSR|S_IRUSR*/ 0x1c0ul); // renameat2 arguments: [ // oldfd: fd_dir (resource) // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // newfd: fd_dir (resource) // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 37 2f 66 69 6c 65 30 00} (length 0xe) // } // flags: renameat2_flags = 0x0 (8 bytes) // ] memcpy((void*)0x200000000780, "./file0\000", 8); memcpy((void*)0x200000000000, "./file7/file0\000", 14); syscall(__NR_renameat2, /*oldfd=*/0xffffff9c, /*old=*/0x200000000780ul, /*newfd=*/0xffffff9c, /*new=*/0x200000000000ul, /*flags=*/0ul); } 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; loop(); return 0; }