// https://syzkaller.appspot.com/bug?id=e6096b97f180de441e3c03d438143073986fc3fb // 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 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 void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } 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; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); 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; } remove_dir(cwdbuf); } } 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 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRESDEC: ANYRES64 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {01 3c ed 04 4b dd 1d 80 c6 a5 9b ca 5c 1f 9d 57 // c0 bf 98 3d e4 20 f4 61 a7 41 46 16 09 3c 24 32 34 af 92 43 25 91 // 43 a1 df 24 ac 02 19 d7 c3 78 a6 6c 31 0c 8b 4a 0a 5b e5 28 31 34 // 05 48 24 7e d2 20 c3 c9 fb c8 33 37 fa 0b 63 b0 a5 4e 73 ff 5f 9b // 66 25 b0 fa a1 fb 75 5e 1a f6 38 d9 6e c9 2d 08 02 aa 01 c4 9d 12 // 70 3c 64 52 c7 b0 ed ad 1e cf dc 92 6c f6 ee 88 d5 5c 25 51 2d 52 // b4 3a 77 3f 9c d3 5d 70 e0 3d 69 b2 af 2e ad 1c 39 ef 1c 55} // (length 0x92) // } // } // } // chdir: int8 = 0xfa (1 bytes) // size: len = 0x621b (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x621b) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x2000000000c0, "./file0\000", 8); *(uint16_t*)0x200000000640 = 0; sprintf((char*)0x200000000642, "%020llu", (long long)-1); *(uint32_t*)0x200000000656 = -1; sprintf((char*)0x20000000065a, "%023llo", (long long)-1); memcpy((void*)0x200000000671, "\x01\x3c\xed\x04\x4b\xdd\x1d\x80\xc6\xa5\x9b\xca\x5c\x1f\x9d\x57\xc0" "\xbf\x98\x3d\xe4\x20\xf4\x61\xa7\x41\x46\x16\x09\x3c\x24\x32\x34\xaf" "\x92\x43\x25\x91\x43\xa1\xdf\x24\xac\x02\x19\xd7\xc3\x78\xa6\x6c\x31" "\x0c\x8b\x4a\x0a\x5b\xe5\x28\x31\x34\x05\x48\x24\x7e\xd2\x20\xc3\xc9" "\xfb\xc8\x33\x37\xfa\x0b\x63\xb0\xa5\x4e\x73\xff\x5f\x9b\x66\x25\xb0" "\xfa\xa1\xfb\x75\x5e\x1a\xf6\x38\xd9\x6e\xc9\x2d\x08\x02\xaa\x01\xc4" "\x9d\x12\x70\x3c\x64\x52\xc7\xb0\xed\xad\x1e\xcf\xdc\x92\x6c\xf6\xee" "\x88\xd5\x5c\x25\x51\x2d\x52\xb4\x3a\x77\x3f\x9c\xd3\x5d\x70\xe0\x3d" "\x69\xb2\xaf\x2e\xad\x1c\x39\xef\x1c\x55", 146); memcpy( (void*)0x200000012cc0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\x25\x34\xb5\x7a" "\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f\x70\xe0" "\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16\x71\xe5\x0b" "\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xfa\x07\xf4\xc0\x95\x1b\x27" "\x4e\x44\xb2\x91\x40\x3d\x31\x68\xbc\xcf\x13\xcf\x6e\x76\xbb\x36\x8e\x77" "\xd6\x9e\xcf\x47\x72\x66\x7e\xf3\xcc\x78\x9f\xf1\x77\x67\x5f\xb2\x33\xfb" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xdf\xff\xde" "\x0f\xd6\x5a\x11\x71\xe3\xe7\x69\xc1\x4a\xc4\x67\xa2\x13\xd1\x8e\x58\x2a" "\xeb\xd5\x88\x58\x5a\x5d\xc9\xeb\x77\x23\xe2\xb9\xd8\x6b\x8e\x67\x23\xa2" "\xb7\x10\x51\x6e\xbf\xf7\xcf\xd3\x11\xaf\x46\xc4\xc7\x67\x23\x76\x76\x37" "\xd7\xcb\xc5\x97\x0f\xd8\x8f\xef\xfe\xf1\x6f\xbf\xfb\xe1\x99\xb7\xfe\xfa" "\x87\xde\xc5\xff\xfc\xe9\x5e\xe7\xb5\x49\xeb\xdd\xbf\xff\xab\x7f\xff\xf9" "\xc1\xd1\xf6\x19\x00\x00\x00\x9a\xa6\x28\x8a\xa2\x95\xde\xe6\x9f\x4b\xef" "\xef\xdb\x75\x77\x0a\x00\x98\x89\xfc\xfc\x5f\x24\x79\xf9\xa9\xaf\x7f\xfd" "\x8f\xb7\xfe\x32\x4f\xfd\x51\xab\xd5\x6a\xb5\x7a\x06\x75\x55\x31\xde\x83" "\x6a\x11\x11\x5b\xd5\x6d\xca\xd7\x0c\x3e\x8e\x07\x80\x13\x66\x2b\x3e\xa9" "\xbb\x0b\xd4\x48\xfe\x8d\xd6\x8d\x88\x33\x75\x77\x02\x98\x6b\xad\xba\x3b" "\xc0\xb1\xd8\xd9\xdd\x5c\x6f\xa5\x7c\x5b\xd5\xe7\x83\xd5\x41\x7b\x3e\x17" "\x64\x28\xff\xad\xd6\xa3\xeb\x3b\x26\x4d\xa7\x19\x3d\xc7\x64\x56\xf7\xaf" "\xed\xe8\xc4\x33\x13\xfa\xb3\x34\xa3\x3e\xcc\x93\x9c\x7f\x7b\x34\xff\x1b" "\x83\xf6\x7e\x5a\xef\xb8\xf3\x9f\x95\x49\xf9\xf7\x07\x97\x3e\x35\x4e\xce" "\xbf\x33\x9a\xff\x88\xd3\x93\x7f\x7b\x6c\xfe\x4d\x95\xf3\xef\x1e\x2a\xff" "\x8e\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xff\xff\x5f\xa9\xf9\xf3\xdf\x85" "\xa3\xef\xca\x81\x7c\xda\xe7\xbf\xab\x33\xea\x03\x00\x00\x00\x00\x00\x00" "\x00\x3c\x69\x47\x1d\xff\xef\x11\xe3\xff\x01\x00\x00\xc0\xdc\x2a\xdf\xab" "\x97\x7e\x73\x76\x7f\xd9\xa4\xef\x62\x2b\x97\x5f\x6f\x45\x3c\x35\xb2\x3e" "\xd0\x30\x1f\x0d\x26\xcb\x75\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x9a\xa4\x3b\x38\x87\xf7\x7a\x2b\xa2\x17\x11\x4f\x2d\x2f\x17\x45\x51" "\xfe\x54\x8d\xd6\x87\x75\xd4\xed\x4f\xba\xa6\xef\x3f\x34\x59\xdd\x0f\xf2" "\x00\x00\x30\xf0\xf1\xd9\x91\x6b\xf9\x5b\x11\x8b\x11\x71\x3d\xda\x7b\xdf" "\xf5\xd7\x5b\x5e\x5e\x2e\x8a\xc5\xa5\xe5\x62\xb9\x58\x5a\xc8\xaf\x67\xfb" "\x0b\x8b\xc5\x52\xe5\x7d\x6d\x9e\x96\xcb\x16\xfa\x07\x78\x41\xdc\xed\x17" "\xe5\x2f\x5b\xac\x6c\x57\x35\xed\xfd\xf2\xb4\xf6\xd1\xdf\x57\xde\x56\xbf" "\xe8\x1c\xa0\x63\x4f\x48\x2f\xfd\x35\x27\x34\xd7\x14\x36\x00\x24\x83\x67" "\xa3\x1d\xcf\x48\xa7\x4c\x51\x3c\x3d\xe9\xc5\x07\x0c\x71\xfc\x9f\x42\x2b" "\xb1\x52\xf7\xfd\x8a\xf9\x57\xf7\xdd\x14\x00\x00\x00\x38\x7e\x45\x51\x14" "\xad\x34\xcc\xdf\xb9\x34\xbe\x5f\xbb\xee\x4e\x01\x00\x33\x91\x9f\xff\x47" "\x3f\x17\x38\x50\x1d\x31\xbe\xbd\x7d\xc8\xf5\xd5\x6a\xb5\x5a\xad\x56\xcf" "\xa4\xae\x2a\xc6\x7b\x50\x2d\x22\x62\xab\xba\x4d\xf9\x9a\xc1\x70\xfc\x00" "\x70\xc2\x6c\xc5\x27\x75\x77\x81\x1a\xc9\xbf\xd1\xba\x11\xf1\x5c\xdd\x9d" "\x00\xe6\x5a\xab\xee\x0e\x70\x2c\x76\x76\x37\xd7\x5b\x29\xdf\x56\xf5\xf9" "\x60\x75\xd0\x9e\xcf\x05\x19\xca\x7f\xab\xb5\xb7\x5d\xde\x7e\xdc\x74\x9a" "\xd1\x73\x4c\x66\x75\xff\xda\x8e\x4e\x3c\x33\xa1\x3f\xcf\xce\xa8\x0f\xf3" "\x24\xe7\xdf\x1e\xcd\xff\xc6\xa0\xbd\x9f\xd6\x3b\xee\xfc\x67\x65\x52\xfe" "\xfd\xbd\x4b\xe6\x9a\x27\xe7\xdf\x19\xcd\x7f\xc4\xe9\xc9\xbf\x3d\x36\xff" "\xa6\xca\xf9\x77\x0f\x95\x7f\x47\xfe\x00\x00\x00\x00\x00\x30\xc7\xf2\xff" "\xff\xaf\xf8\xfc\x37\xef\x32\x00\x00\x00\x00\x00\x00\x00\x9c\x38\x3b\xbb" "\x9b\xeb\xf9\xba\xd7\xfc\xf9\xff\xe7\xc6\xac\xe7\xfa\xcf\xd3\x29\xe7\xdf" "\x3a\x6c\xfe\x4b\x69\x5e\xfe\x27\x5a\xce\xbf\x3d\x92\xff\x97\x47\xd6\xeb" "\x54\xe6\x1f\xbe\xb9\x7f\xfc\xff\x6b\x77\x73\xfd\xf7\xf7\xfe\xf9\xd9\x3c" "\x3d\x68\xfe\x0b\x79\xa6\x95\xee\x59\xad\x74\x8f\x68\xa5\x5b\x6a\x75\xd3" "\xf4\x28\x7b\xf7\xb8\xed\x5e\xa7\x5f\xde\x52\xaf\xd5\xee\x74\xd3\x39\x3f" "\x45\xef\x9d\xb8\x15\xb7\x63\x23\x2e\x0d\xad\xdb\x4e\x7f\x8f\xfd\xf6\xb5" "\xa1\xf6\xb2\xa7\xbd\xa1\xf6\xcb\x43\xed\xdd\xc7\xda\xaf\x0c\xb5\xf7\xd2" "\xf7\x0e\x14\x4b\xb9\xfd\x42\xac\xc7\x4f\xe2\x76\xbc\xbd\xd7\x5e\xb6\x2d" "\x4c\xd9\xff\xc5\x29\xed\xc5\x94\xf6\x9c\x7f\xc7\xe3\x7f\x23\xe5\xfc\xbb" "\x95\x9f\x32\xff\xe5\xd4\xde\x1a\x99\x96\x1e\x7e\xd8\x7e\xec\xb8\xaf\x4e" "\xc7\xdd\xce\x1b\xb7\x3e\xff\xcb\x4b\xc7\xbf\x3b\x53\x6d\x47\xe7\xd1\xbe" "\x55\x95\xfb\x77\xbe\x86\xfe\xec\xfd\x4d\xce\xf4\xe3\x67\x77\x37\xee\x5c" "\xb8\x7f\xf3\xde\xbd\x3b\x6b\x91\x26\x43\x4b\x2f\x47\x9a\x3c\x61\x39\xff" "\xde\xde\xcf\xc2\xfe\xe3\xff\x0b\x83\xf6\xfc\xb8\x5f\x3d\x5e\x1f\x7e\xd8" "\x3f\x74\xfe\xf3\x62\x3b\xba\x13\xf3\x7f\xa1\x32\x5f\xee\xef\x4b\x33\xee" "\x5b\x1d\x72\xfe\xfd\xf4\x93\xf3\x7f\x3b\xb5\x8f\x3f\xfe\x4f\x72\xfe\x93" "\x8f\xff\x97\x6b\xe8\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x7c\x9a\xa2\x28\xf6\x2e\x11\x7d\x23\x22\xae\xa6\xeb\x7f\xea\xba\x36\x13" "\x00\x98\xad\xfc\xfc\x5f\x24\x79\xb9\x5a\xad\x56\xab\xd5\xea\xd3\x57\x57" "\x15\xe3\xbd\x5e\x2d\x22\xe2\xa3\xea\x36\xe5\x6b\x86\x5f\x8c\xfb\x65\x00" "\xc0\x3c\xfb\x6f\x44\xfc\xbd\xee\x4e\x50\x1b\xf9\x37\x58\xfe\xbe\xbf\x72" "\xfa\x62\xdd\x9d\x01\x66\xea\xee\xfb\x1f\xfc\xe8\xe6\xed\xdb\x1b\x77\xee" "\xd6\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xff\x95\xc7\xff\x5c\xad\x8c" "\xff\xfc\x62\x44\xac\x8c\xac\x37\x34\xfe\xeb\x9b\xb1\x7a\xd4\xf1\x3f\xbb" "\x79\xe6\xd1\x00\xa3\x4f\x78\xa0\xef\x09\xb6\xdb\xfd\x4e\xbb\x32\xdc\xf8" "\xf3\xb1\x37\x3e\xf7\x85\x49\xe3\x7f\x9f\x8f\xc7\xc7\xff\xce\x63\xe2\x76" "\xaa\xfb\x31\x41\x6f\x4a\x7b\x7f\x4a\xfb\xc2\x94\xf6\xc5\xb1\x4b\xf7\xd3" "\x1a\x7b\xa1\x47\x45\xce\xff\xf9\xca\x78\xe7\x65\xfe\xe7\x46\x86\x5f\x6f" "\xc2\xf8\xaf\xa3\x63\xde\x37\x41\xce\xff\x7c\xe5\xfe\x5c\xe6\xff\xa5\x91" "\xf5\xaa\xf9\x17\xbf\x9d\xbb\xfc\xb7\x0e\xba\xe2\x76\xb4\x87\xf2\xbf\x78" "\xef\xbd\x9f\x5e\xbc\xfb\xfe\x07\xaf\xdc\x7a\xef\xe6\xbb\x1b\xef\x6e\xfc" "\xf8\xca\xda\xda\xa5\x2b\x57\xaf\x5e\xbb\x76\xed\xe2\x3b\xb7\x6e\x6f\x5c" "\x1a\xfc\x7b\x3c\xbd\x9e\x03\x39\xff\x3c\xf6\xb5\xf3\x40\x9b\x25\xe7\x9f" "\x33\x97\x7f\xb3\xe4\xfc\xbf\x90\x6a\xf9\x37\x4b\xce\xff\x8b\xa9\x96\x7f" "\xb3\xe4\xfc\xf3\xeb\x3d\xf9\x37\x4b\xce\x3f\xbf\xf7\x91\x7f\xb3\xe4\xfc" "\x5f\x4a\xb5\xfc\x9b\x25\xe7\xff\x95\x54\xcb\xbf\x59\x76\x76\x37\x17\xca" "\xfc\x5f\x4e\xb5\xfc\x9b\x25\x1f\xff\x5f\x4d\xb5\xfc\x9b\x25\xe7\xff\x4a" "\xaa\xe5\xdf\x2c\x39\xff\x0b\xa9\x96\x7f\xb3\xe4\xfc\x2f\xa6\xfa\x00\xf9" "\xfb\x7a\xf8\x53\x24\xe7\x9f\x3f\xe1\x72\xfc\x37\x4b\xce\x7f\x2d\xd5\xf2" "\x6f\x96\x9c\xff\xe5\x54\xcb\xbf\x59\x72\xfe\x57\x52\x2d\xff\x66\xc9\xf9" "\xbf\x9a\x6a\xf9\x37\x4b\xce\xff\x6b\xa9\x96\x7f\xb3\xe4\xfc\xaf\xa6\x5a" "\xfe\xcd\x92\xf3\xff\x7a\xaa\xe5\xdf\x2c\x39\xff\x6b\xa9\x96\x7f\xb3\xe4" "\xfc\xbf\x91\x6a\xf9\x37\x4b\xce\xff\x9b\xa9\x96\x7f\xb3\xe4\xfc\x5f\x4b" "\xb5\xfc\x9b\x25\xe7\xff\xad\x54\xcb\xbf\x59\x72\xfe\xdf\x4e\xb5\xfc\x9b" "\x25\xe7\xff\x9d\x54\xcb\xbf\x59\x72\xfe\xaf\xa7\x5a\xfe\xcd\xb2\xff\xfd" "\xff\x66\xcc\x98\x31\x93\x67\xea\x7e\x64\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x46\xcd\xe2\x74\xe2\xba\xf7\x11\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xff\xb1\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xdd\x6b\x8c\x5c" "\x67\x79\x07\xf0\x33\x7b\xb1\xd7\x0e\x21\x06\x42\x70\x52\x03\x6b\xc7\x18" "\xe3\x2c\xd9\xf5\x25\xbe\xd0\xba\x98\x40\xb8\x04\x28\x05\x12\x0a\xbd\x60" "\xbb\xde\xb5\xb3\xe0\x5b\xbc\x76\x49\xd2\x48\x36\x0d\x94\x48\x38\x2a\xaa" "\xa8\x9a\x7e\x68\x0b\x28\x6a\x23\x55\x15\x56\xc5\x07\x5a\xa5\x34\x1f\xaa" "\x5e\x3e\x91\xf6\x03\xfd\x52\x51\x55\x42\x6a\x54\x99\x28\xa0\x22\xb5\x15" "\xcd\x56\x33\xe7\x7d\x5f\xcf\xcc\xce\xce\x8c\xbd\xe3\xf5\xd9\x73\x7e\x3f" "\x29\x79\x76\x67\xce\x99\xf3\xce\x99\xf7\x9c\x9d\x67\xd7\xff\x39\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xb3\x8d\xef\x9e\xf9\x52" "\x2d\xcb\xb2\xfa\x7f\x8d\xff\xad\xcb\xb2\x57\xd5\xbf\x5e\x33\xbe\xae\x71" "\xdb\x3b\x6e\xf4\x08\x01\x00\x00\x80\xa5\xfa\xbf\xc6\xff\x5f\xbe\x25\xdd" "\x70\xa0\x8f\x95\x9a\x96\xf9\xfb\x37\x7d\xf7\x5b\xf3\xf3\xf3\xf3\xd9\x27" "\x87\x7f\x6f\xf4\xab\xf3\xf3\xe9\x8e\xf1\x2c\x1b\x5d\x9d\x65\x8d\xfb\xa2" "\x4b\xff\xfe\xa9\x5a\xf3\x32\xc1\x13\xd9\x58\x6d\xa8\xe9\xfb\xa1\x1e\x9b" "\x1f\xee\x71\xff\x48\x8f\xfb\x47\x7b\xdc\xbf\xaa\xc7\xfd\xab\x7b\xdc\x3f" "\xd6\xe3\xfe\x05\x3b\x60\x81\x35\xf9\xef\x63\x1a\x0f\xb6\xb9\xf1\xe5\xba" "\x7c\x97\x66\xb7\x66\xa3\x8d\xfb\x36\x77\x58\xeb\x89\xda\xea\xa1\xa1\xf8" "\xbb\x9c\x86\x5a\x63\x9d\xf9\xd1\xa3\xd9\x6c\x76\x3c\x9b\xc9\xa6\x5a\x96" "\xcf\x97\xad\x35\x96\x7f\x6e\x63\x7d\x5b\xef\xcf\xe2\xb6\x86\x9a\xb6\xb5" "\xa1\x3e\x43\x7e\xf4\xf8\x91\x38\x86\x5a\xd8\xc7\x9b\x5b\xb6\x75\xe5\x31" "\xa3\x1f\xbe\x2b\x1b\xff\xf1\x8f\x1e\x3f\xf2\x27\x67\x2f\xdf\xde\xa9\xf6" "\xdc\x0d\x2d\x8f\x97\x8f\x73\xeb\xa6\xfa\x38\xbf\x10\x6e\xc9\xc7\x5a\xcb" "\x56\xa7\x7d\x12\xc7\x39\xd4\x34\xce\x0d\x1d\x5e\x93\xe1\x96\x71\xd6\x1a" "\xeb\xd5\xbf\x6e\x1f\xe7\xcb\x7d\x8e\x73\xf8\xca\x30\x97\x55\xfb\x6b\x3e" "\x96\x0d\x35\xbe\x7e\xa1\xb1\x9f\x46\x9a\x7f\xad\x97\xf6\xd3\x86\x70\xdb" "\x7f\xdf\x99\x65\xd9\x85\x2b\xc3\x6e\x5f\x66\xc1\xb6\xb2\xa1\x6c\x6d\xcb" "\x2d\x43\x57\x5e\x9f\xb1\x7c\x46\xd6\x1f\xa3\x3e\x95\x5e\x9b\x8d\x5c\xd5" "\x3c\xdd\xd8\xc7\x3c\xad\xd7\xe9\xcd\xad\xf3\xb4\xfd\x98\x88\xaf\xff\xc6" "\xb0\xde\xc8\x22\x63\x68\x7e\x99\x7e\xf8\xf9\x55\x0b\x5e\xf7\xab\x9d\xa7" "\x51\xfd\x59\x2f\x76\xac\xb4\xcf\xc1\x41\x1f\x2b\x45\x99\x83\x71\x5e\xbc" "\xd0\x78\xd2\x4f\x76\x9c\x83\x9b\xc3\xf3\x7f\x7c\xcb\xe2\x73\xb0\xe3\xdc" "\xe9\x30\x07\xd3\xf3\x6e\x9a\x83\x9b\x7a\xcd\xc1\xa1\x55\xc3\x8d\x31\xa7" "\x17\xa1\xd6\x58\xe7\xca\x1c\xdc\xde\xb2\xfc\x70\x63\x4b\xb5\x46\x7d\x71" "\x4b\xf7\x39\x38\x79\xf6\xc4\xe9\xc9\xb9\x47\x1f\x7b\xfb\xec\x89\xc3\xc7" "\x66\x8e\xcd\x9c\xdc\xb9\x7d\xfb\xd4\xce\xdd\xbb\xf7\xee\xdd\x3b\x79\x74" "\xf6\xf8\xcc\x54\xfe\xff\x6b\xdc\xdb\xc5\xb7\x36\x1b\x4a\xc7\xc0\xa6\xb0" "\xef\xe2\x31\xf0\xd6\xb6\x65\x9b\xa7\xea\xfc\xd7\x07\x77\x1c\x8e\x75\x39" "\x0e\xd7\xb5\x2d\x3b\xe8\xe3\x70\xa4\xfd\xc9\xd5\x96\xe7\x80\x5c\x38\xa7" "\xf3\x63\xe3\x81\xfa\x4e\x1f\xbb\x38\x94\x2d\x72\x8c\x35\x5e\x9f\x6d\x4b" "\x3f\x0e\xd3\xf3\x6e\x3a\x0e\x47\x9a\x8e\xc3\x8e\x3f\x53\x3a\x1c\x87\x23" "\x7d\x1c\x87\xf5\x65\x4e\x6f\xeb\xef\x3d\xcb\x48\xd3\x7f\x9d\xc6\x70\xbd" "\x7e\x16\xac\x6b\x9a\x83\xed\xef\x47\xda\xe7\xe0\xa0\xdf\x8f\x14\x65\x0e" "\x8e\x85\x79\xf1\xaf\xdb\x16\xff\x59\xb0\x21\x8c\xf7\xc9\x89\xab\x7d\x3f" "\x32\xbc\x60\x0e\xa6\xa7\x1b\xce\x3d\xf5\x5b\xd2\xfb\xfd\xb1\xbd\x8d\xd2" "\x69\x5e\xde\x51\xbf\xe3\xa6\x55\xd9\xb9\xb9\x99\x33\x77\x3f\x72\xf8\xec" "\xd9\x33\xdb\xb3\x50\x96\xc5\xeb\x9a\xe6\x4a\xfb\x7c\x5d\xdb\xf4\x9c\xb2" "\x05\xf3\x75\xe8\xaa\xe7\xeb\x81\xd9\x37\x3d\x79\x47\x87\xdb\xd7\x85\x7d" "\x35\xf6\xf6\xfa\xff\xc6\x16\x7d\xad\xea\xcb\xec\xba\xbb\xfb\x6b\xd5\xf8" "\xe9\xd6\x79\x7f\xb6\xdc\xba\x23\x0b\x65\xc0\x96\x7b\x7f\x76\xfa\x69\x5e" "\xdf\x9f\xa9\x97\xec\xb2\x3f\xeb\xcb\x7c\x61\x72\xe9\xef\xc5\x53\x5f\xda" "\x74\xfe\x1d\x5d\xe4\xfc\x1b\xfb\xfe\x57\xf2\xed\xa5\x87\x7a\x62\x78\x74" "\x24\x3f\x7e\x87\xd3\xde\x19\x6d\x39\x1f\xb7\xbe\x54\x23\x8d\x73\x57\xad" "\xb1\xed\x97\x27\xfb\x3b\x1f\x8f\x86\xff\x96\xfb\x7c\x7c\x6b\x97\xf3\xf1" "\xfa\xb6\x65\x07\x7d\x3e\x1e\x6d\x7f\x72\xf1\x7c\x5c\xeb\xf5\xdb\x8e\xa5" "\x69\x7f\x3d\xc7\xc2\x3c\x39\x3e\xd5\xfd\x7c\x5c\x5f\x66\xfd\x8e\xab\x9d" "\x93\x23\x5d\xcf\xc7\x77\x86\x5a\x0b\xfb\xff\x6d\xa1\x53\x48\x7d\x51\xd3" "\xdc\x59\x6c\xde\xa6\x6d\x8d\x8c\x8c\x86\xe7\x35\x12\xb7\xd0\x3a\x4f\x77" "\xb6\x2c\x3f\x1a\x7a\xb3\xfa\xb6\x9e\xdd\x71\x6d\xf3\x74\xeb\x9d\xf9\x63" "\x0d\xa7\x67\x77\xc5\x72\xcd\xd3\xf1\xb6\x65\x07\x3d\x4f\xd3\xf9\x6a\xb1" "\x79\x5a\xeb\xf5\xdb\xb7\x6b\xd3\xfe\x7a\x8e\x85\x79\x71\xeb\xce\xee\xf3" "\xb4\xbe\xcc\xf3\xbb\x96\x7e\xee\x5c\x13\xbf\x6c\x3a\x77\xae\xea\x35\x07" "\x47\x87\x57\xd5\xc7\x3c\x9a\x26\x61\x7e\xbe\x9f\x5f\x13\xe7\xe0\xdd\xd9" "\x91\xec\x54\x76\x3c\x9b\x6e\xdc\xbb\xaa\x31\x9f\x6a\x8d\x6d\x4d\xdc\xd3" "\xdf\x1c\x5c\x15\xfe\x5b\xee\x73\xe5\xfa\x2e\x73\x70\x6b\xdb\xb2\x83\x9e" "\x83\xe9\xe7\xd8\x62\x73\xaf\x36\xb2\xf0\xc9\x0f\x40\xfb\xeb\x39\x16\xe6" "\xc5\xd3\xf7\x74\x9f\x83\xf5\x65\xde\xb3\x67\xb0\xef\x5d\xb7\x86\x5b\xd2" "\x32\x4d\xef\x5d\xdb\x7f\xbf\xb6\xd8\xef\xbc\xee\x68\xdb\x4d\xd7\xf3\x77" "\x5e\xf5\x71\xfe\xed\x9e\xee\xbf\x9b\xad\x2f\x73\x7c\xef\xd5\xf6\x99\xdd" "\xf7\xd3\x5d\xe1\x96\x9b\x3a\xec\xa7\xf6\xe3\x77\xb1\x63\x6a\x3a\x5b\x9e" "\xfd\xb4\x3e\x8c\xf3\xf2\xde\xc5\xf7\x53\x7d\x3c\xf5\x65\xbe\xba\xaf\xcf" "\xf9\x74\x20\xcb\xb2\xf3\x0f\xdf\xdb\xf8\x7d\x6f\xf8\xfb\xca\x5f\x9c\xfb" "\xde\xb7\x5a\xfe\xee\xd2\xe9\x6f\x3a\xe7\x1f\xbe\xf7\xa5\x9b\x8f\xfe\xdd" "\xd5\x8c\x1f\x80\x95\xef\x95\xbc\xac\xcd\x7f\xd6\x35\xfd\x65\xaa\x9f\xbf" "\xff\x03\x00\x00\x00\x2b\x42\xec\xfb\x87\x42\x4d\xf4\xff\x00\x00\x00\x50" "\x1a\xb1\xef\x8f\xff\x2a\x3c\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x24" "\xd4\xa4\x22\xfd\xff\xfa\xf7\x5c\x9e\x7d\xe5\x7c\x96\x92\xf9\xf3\x41\xbc" "\x3f\xed\x86\xfb\xf3\xe5\x62\xc6\x75\x2a\x7c\x3f\x3e\x7f\x45\xfd\xf6\x7b" "\x9f\x99\xf9\xc9\x5f\x9d\xef\x6f\xdb\x43\x59\x96\xfd\xf4\xfe\xdf\xec\xb8" "\xfc\xfa\xfb\xe3\xb8\x72\xe3\x61\x9c\x97\xee\x6b\xbd\x7d\xe1\x8a\xe7\xfb" "\xda\xfe\xa1\x07\xaf\x2c\xd7\x9c\x5f\xff\x5a\x78\xfc\xf8\x7c\xfa\x9d\x06" "\x9d\x22\xb8\x53\x59\x96\x3d\x77\xcb\x53\x8d\xed\x8c\x7f\xea\x62\xa3\x3e" "\x7f\xff\xa1\x46\xfd\xd8\x85\x27\x9f\xa8\x2f\xf3\xf2\xbe\xfc\xfb\xb8\xfe" "\x8b\xaf\xcb\x97\xff\xc3\x10\xfe\x3d\x70\xf4\x70\xcb\xfa\x2f\x86\xfd\xf0" "\x83\x50\xa7\x3e\xd8\x79\x7f\xc4\xf5\xbe\x79\xf1\x6d\x1b\xf6\x7c\xe2\xca" "\xf6\xe2\x7a\xb5\x4d\xaf\x6e\x3c\xed\xa7\x3f\x9d\x3f\x6e\xfc\x9c\x9c\xaf" "\x3c\x91\x2f\x1f\xf7\xf3\x62\xe3\xff\xeb\x2f\x3f\xfb\xcd\xfa\xf2\x8f\xbc" "\xa5\xf3\xf8\xcf\x0f\x75\x1e\xff\xb3\xe1\x71\x9f\xb9\xef\xf2\x6c\x7d\xc6" "\xfd\xcf\x1b\xf3\xe5\x9b\x5f\x83\xfa\xf7\x71\xbd\x2f\x86\xf1\xc7\xed\x3d" "\x13\xd6\xbf\xfb\x1b\xdf\xe9\x38\xfe\x4b\x5f\xca\x97\x3f\xfd\xde\x7c\xb9" "\x43\xa1\xc6\xed\x6f\x0d\xdf\x6f\x7e\xef\xe5\xd9\xe6\xfd\xf5\x48\xed\x70" "\xcb\xf3\xca\xde\x97\x2f\x17\xb7\x3f\xf5\xbd\xdf\x69\xdc\x1f\x1f\x2f\x3e" "\x7e\xfb\xf8\xc7\x0e\x5e\x6c\xd9\x1f\xed\xf3\xe3\xf9\x7f\xce\x1f\x67\xb2" "\x6d\xf9\x78\x7b\xdc\x4e\xf4\x97\x6d\xdb\xaf\x3f\x4e\xf3\xfc\x8c\xdb\x7f" "\xf6\xb7\x0f\xb5\xec\xe7\x5e\xdb\xbf\xf4\xb1\x17\xdf\x58\x7f\xdc\xf6\xed" "\xdf\xd5\xb6\xdc\x70\xdb\xfa\xed\x9f\xd8\xf4\x47\x5f\x7c\xaa\xe3\xf6\xe2" "\x78\x0e\xfc\xf9\xe9\x96\xe7\x73\xe0\xa3\xe1\x38\x0e\xdb\x7f\xfa\xd3\x61" "\x3e\x86\xfb\xff\xf7\xd2\x53\x2d\xdb\x8d\x0e\x7d\xb4\xf5\xfc\x13\x97\xff" "\xda\xba\xf3\x2d\xcf\x27\x7a\xff\x8f\xf3\xed\x5f\x7a\xe7\xb1\x46\xfd\x8f" "\xf1\x9f\xfc\xc1\x4d\xaf\xba\xf9\xd5\x17\xde\x5c\xdf\x77\x59\xf6\xc2\xc7" "\xf3\xc7\xeb\xb5\xfd\x63\x7f\x7c\xaa\x65\xfc\x5f\xbf\x6d\x5b\xe3\xf5\x88" "\xf7\xc7\x8c\x7e\xfb\xf6\x17\x13\xb7\x7f\xe6\x73\x13\x27\x4f\xcd\x9d\x9b" "\x9d\x6e\xda\xab\x8d\xcf\xce\xf9\x50\x3e\x9e\xd5\x63\x6b\xd6\xd6\xc7\x7b" "\x4b\x38\xb7\xb6\x7f\x7f\xf0\xd4\xd9\x87\x66\xce\x8c\x4f\x8d\x4f\x65\xd9" "\x78\x79\x3f\x42\xef\x9a\x7d\x23\xd4\x97\xf2\x72\xe1\x6a\xd7\xdf\xf6\x60" "\x78\x3d\xef\xf8\xfd\xe7\xd6\x6e\xf9\xa7\x2f\xc7\xdb\xff\xe5\x81\xfc\xf6" "\x8b\x1f\xcc\x7f\x6e\xbd\x35\x2c\xf7\x95\x70\xfb\xba\xfc\xf5\x9b\xaf\x2d" "\x71\xfb\x4f\x6f\xbc\xad\x71\x7c\xd7\x9e\xcf\xbf\x6f\xc9\xb1\x0f\xc0\x86" "\xcd\xff\xb9\xb7\xaf\x05\xc3\xf3\x6f\x7f\x5f\x10\xe7\xfb\xe9\xd7\x3f\xd4" "\xd8\x0f\xf5\xfb\x1a\x3f\x37\xe2\x71\xbd\xc4\xf1\x7f\x7f\x3a\x7f\x9c\x6f" "\x87\xfd\x3a\x1f\x3e\x99\x79\xd3\x6d\x57\xb6\xd7\xbc\x7c\xfc\x6c\x84\x8b" "\x1f\xcf\x8f\xf7\x25\xef\xbf\x70\x9a\x8b\xaf\xeb\x9f\x86\xd7\xfb\xc3\x3f" "\xc8\x1f\x3f\x8e\x2b\x3e\xdf\xef\x87\xf7\x31\xdf\x59\xdf\x7a\xbe\x8b\xf3" "\xe3\xdb\xe7\x87\xda\x1f\xbf\xf1\x29\x1e\x17\xc2\xf9\x24\xbb\x90\xdf\x1f" "\x97\x8a\xfb\xfb\xe2\xcb\xb7\x75\x1c\x5e\xfc\x1c\x92\xec\xc2\xed\x8d\xef" "\x7f\x37\x3d\xce\xed\x57\xf5\x34\x17\x33\xf7\xe8\xdc\xe4\xf1\xd9\x93\xe7" "\x1e\x99\x3c\x3b\x33\x77\x76\x72\xee\xd1\xc7\x0e\x9e\x38\x75\xee\xe4\xd9" "\x83\x8d\xcf\xf2\x3c\xf8\x99\x5e\xeb\x5f\x39\x3f\xad\x6d\x9c\x9f\xa6\x67" "\x76\xef\xca\xa6\xd6\x64\x59\x76\x2a\x9b\x5a\x86\x13\xd6\xf5\x19\x7f\xfd" "\xab\xfe\xc6\x7f\xfa\xc1\x23\xd3\x7b\xa6\xb6\x4c\xcf\x1c\x3d\x7c\xee\xe8" "\xd9\x07\x4f\xcf\x9c\x39\x76\x64\x6e\xee\xc8\xcc\xf4\xdc\x96\xc3\x47\x8f" "\xce\x7c\xae\xd7\xfa\xb3\xd3\xfb\xb7\xef\xd8\xb7\x73\xcf\x8e\x89\x63\xb3" "\xd3\xfb\xf7\xee\xdb\xb7\x73\xdf\xc4\xec\xc9\x53\xf5\x61\xe4\x83\xea\x61" "\xf7\xd4\x67\x27\x4e\x9e\x39\xd8\x58\x65\x6e\xff\xae\x7d\xdb\xef\xb9\x67" "\xd7\xd4\xc4\x89\x53\xd3\x33\xfb\xf7\x4c\x4d\x4d\x9c\xeb\xb5\x7e\xe3\x67" "\xd3\x44\x7d\xed\xdf\x98\x38\x33\x73\xfc\xf0\xd9\xd9\x13\x33\x13\x73\xb3" "\x8f\xcd\xec\xdf\xbe\x6f\xf7\xee\x1d\x3d\x3f\x0d\xf0\xc4\xe9\xa3\x73\xe3" "\x93\x67\xce\x9d\x9c\x3c\x37\x37\x73\x66\x32\x7f\x2e\xe3\x67\x1b\x37\xd7" "\x7f\xf6\xf5\x5a\x9f\x72\x9a\xfb\xb7\xfc\xfd\x6c\xbb\x5a\xfe\x41\x7c\xd9" "\x47\xee\xda\x9d\x3e\x9f\xb5\xee\x99\xcf\x2f\xfa\x50\xf9\x22\x6d\x1f\x20" "\x7a\x39\x7c\x16\xcd\x3f\xbe\xe6\xf4\xde\x7e\xbe\x8f\x7d\xff\x68\xa8\x49" "\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xaf\x0a\x35\xd1\xff\x03\x00\x00" "\x40\x69\xc4\xbe\x7f\x75\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x63" "\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xfb\xcb\xff\xe7\xf7\x0f\x32\xff\xdf" "\x29\x3f\x9f\xc9\xff\x17\x2a\xff\x7f\xfa\xe1\x3c\x57\xba\xd2\xf3\xff\x31" "\x3f\x2f\xff\x5f\x0d\x37\x38\xff\xbf\xe4\xed\xcb\xff\xcb\xff\x97\x2f\xff" "\xdf\x7f\x7e\x7e\xa5\x8f\x5f\xfe\x5f\xfe\x9f\x85\x8a\x96\xff\x8f\x7d\xff" "\x9a\x2c\xab\x64\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\xb5\xa1\x26\xfa\x7f" "\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x14\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88" "\x7d\xff\xab\x42\x4d\x2a\xd2\xff\xcb\xff\xf7\x95\xff\xdf\xd1\x2b\x70\x55" "\xfe\xfc\xff\xe0\xaf\xff\x2f\xff\x2f\xff\xbf\x2c\xf9\xff\xf8\xe2\xc8\xff" "\x57\xc6\x55\xe7\xef\x3f\xf1\x40\xcb\xb7\xf2\xff\x81\xfc\xbf\xfc\xbf\xfc" "\xbf\xfc\xbf\xfc\x3f\x4b\x36\xba\xe8\x3d\x37\x2a\xff\x1f\xfb\xfe\x9b\x43" "\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\xd5\xa1\x26\xfa\x7f\x00" "\x00\x00\x28\x8d\xd8\xf7\xdf\x12\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d" "\xff\xba\x50\x93\x8a\xf4\xff\xf2\xff\xae\xff\x2f\xff\x2f\xff\x5f\xea\xfc" "\xff\x52\xaf\xff\xdf\x34\x18\xf9\xff\x95\xc1\xf5\xff\xbb\x93\xff\xef\xe1" "\x9a\xf3\xff\x63\xf2\xff\x2b\x31\xff\x3f\x3a\xd8\xf1\x17\x3b\xff\xdf\x73" "\xf8\xf2\xff\x5c\x17\x45\xbb\xfe\x7f\xec\xfb\x5f\x13\x6a\x52\x91\xfe\x1f" "\x00\x00\x00\xaa\x20\xf6\xfd\xaf\x0d\x35\xd1\xff\x03\x00\x00\x40\x69\xc4" "\xbe\xff\x75\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xdf\x1a\x6a\x52" "\x91\xfe\x7f\x29\xf9\xff\x98\xb9\x96\xff\x97\xff\x97\xff\xcf\xc9\xff\xe7" "\x4a\x95\xff\xef\x7a\xfd\xff\xfc\x2b\xf9\xff\x62\x91\xff\xef\x4e\xfe\xbf" "\x07\xd7\xff\xaf\x56\xfe\x7f\xc0\xe3\x2f\x76\xfe\x7f\xd0\xd7\xff\x1f\xbd" "\xaf\x7d\x7d\xf9\x7f\x3a\x29\x5a\xfe\x3f\xf6\xfd\xaf\x0f\x35\xa9\x48\xff" "\x0f\x00\x00\x00\x55\x10\xfb\xfe\xdb\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a" "\xb1\xef\x7f\x43\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xeb\x43\x4d" "\x2a\xd2\xff\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xed\xf7\xce" "\xff\xe7\xe4\xff\x8b\x45\xfe\xbf\x3b\xf9\xff\x1e\xe4\xff\xe5\xff\xe5\xff" "\xfb\xcb\xff\x77\x78\xf3\x2b\xff\x4f\x27\x45\xcb\xff\xc7\xbe\xff\xf6\x50" "\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xbf\x23\xd4\x44\xff\x0f\x00" "\x00\x00\xa5\x11\xfb\xfe\x9f\x09\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe" "\x7f\x43\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\xff\x6a\xe5\xff\xef\x5a" "\x25\xff\x2f\xff\x5f\x6e\xf2\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x2f\xff" "\xdf\xe7\xf5\xff\x17\xba\x9a\xfc\xff\xea\x5e\x0f\x46\x69\x14\x2d\xff\x1f" "\xfb\xfe\x37\x86\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\x9b\x42" "\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x73\xa8\x89\xfe\x1f\x00\x00" "\x00\x4a\x23\xf6\xfd\xe3\xa1\x26\x15\xe9\xff\xe5\xff\xcb\x95\xff\xff\xb3" "\xbf\x79\xfa\xcd\x99\xfc\xbf\xfc\x7f\x8f\xed\x97\x34\xff\x1f\xa7\x81\xfc" "\x7f\xc5\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xff\x0a\xcd\xff\x7f\xe0" "\xbb\x79\x5d\x29\xf9\x7f\xaa\xa3\x68\xf9\xff\xd8\xf7\x6f\x0c\x35\xa9\x48" "\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x4d\xa1\x26\xfa\x7f\x00\x00\x00\x28" "\x8d\xd8\xf7\xdf\x19\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xe6\x50" "\x93\x8a\xf4\xff\xf2\xff\xe5\xca\xff\x47\xf2\xff\xf2\xff\xdd\xb6\x5f\xd2" "\xfc\x7f\x22\xff\x5f\x6d\xf2\xff\x1d\x34\x1d\xa4\xf2\xff\x3d\xc8\xff\xcb" "\xff\xaf\xd0\xfc\x7f\x36\xb0\xeb\xff\xc7\x77\xbf\xf2\xff\x0c\x46\xd1\xf2" "\xff\xb1\xef\x7f\x4b\xa8\x49\x97\xc6\x6f\xb0\x9f\xc4\x03\x00\x00\x00\x5c" "\x6f\xb1\xef\xdf\x12\x6a\x52\x91\xbf\xff\x03\x00\x00\x40\x15\xc4\xbe\xff" "\xad\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x6f\x0d\x35\xa9\x48\xff" "\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x79\xfb\xf2\xff\x2b\xd3\xca" "\xca\xff\xaf\x5e\x70\x4b\xd1\xae\xff\xbf\x4a\xfe\x5f\xfe\x5f\xfe\xbf\x62" "\xf9\x7f\xd7\xff\x67\xb0\x8a\x96\xff\x8f\x7d\xff\xdb\x42\x4d\x2a\xd2\xff" "\x03\x00\x00\x40\x15\xc4\xbe\x7f\x5b\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23" "\xfe\xcb\xbb\xfc\xdf\xbd\xea\xff\x01\x00\x00\xa0\x8c\x62\xdf\x3f\x11\x6a" "\x52\x91\xfe\x5f\xfe\x5f\xfe\xbf\x4a\xf9\xff\x9a\xfc\xbf\xfc\xbf\xfc\x7f" "\xe9\xad\xac\xfc\xff\x42\x45\xcb\xff\xbb\xfe\xbf\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\x3f\x4b\x51\xb4\xfc\x7f\xec\xfb\xdf\x1e\x6a\x52\x91\xfe\x1f\x00\x00" "\x00\xaa\x20\xf6\xfd\x77\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x3f" "\x19\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x54\xa8\x49\x45\xfa\x7f" "\xf9\x7f\xf9\xff\x2a\xe5\xff\x5d\xff\x5f\xfe\x5f\xfe\xbf\xfc\xe4\xff\xbb" "\x93\xff\xef\x41\xfe\xbf\x54\xf9\xff\x2c\x93\xff\xaf\x0f\x5e\xfe\x9f\x1b" "\xa9\x68\xf9\xff\xd8\xf7\x6f\x0f\x35\xa9\x48\xff\x0f\x00\x00\x00\x55\x10" "\xfb\xfe\x1d\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xef\x0c\x35\xd1" "\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f\x57\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9" "\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce\xdb\x97\xff\x5f\x99\xe4\xff\xbb\x93\xff" "\xef\x41\xfe\x7f\x79\xf2\xff\x9d\xde\x38\xad\xa4\xf1\x2f\xa2\x90\xf9\x7f" "\xd7\xff\xe7\x06\x2b\x5a\xfe\x3f\xf6\xfd\xf7\x84\x9a\x54\xa4\xff\x07\x00" "\x00\x80\x2a\x88\x7d\xff\xee\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb" "\xf7\x84\x9a\x84\xfe\xff\x3a\xfd\xf3\x24\x00\x00\x00\x60\x19\xc5\xbe\x7f" "\x6f\xa8\x49\x45\xfe\xfe\x2f\xff\x5f\x92\xfc\xff\x6f\xfd\x43\xcb\xb6\xe5" "\xff\xe5\xff\xbb\x6d\x7f\x30\xf9\xff\x35\xf2\xff\xa1\xca\xff\x17\x4b\x49" "\xf3\xff\xed\x87\xc5\x35\x93\xff\xef\x41\xfe\xff\xba\xe5\xe7\xb3\xa1\x81" "\x0c\xf1\x86\x8d\x5f\xfe\x5f\xfe\x9f\x6b\x53\xb4\xfc\x7f\xec\xfb\xf7\x85" "\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\x3b\x42\x4d\xf4\xff\x00" "\x00\x00\x50\x1a\xb1\xef\xff\xd9\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec" "\xfb\x7f\x2e\xd4\xa4\x22\xfd\xbf\xfc\x7f\x49\xf2\xff\x6d\xe4\xff\xe5\xff" "\xbb\x6d\xdf\xf5\xff\xe5\xff\xcb\xac\xa4\xf9\xff\x81\x29\x55\xfe\x7f\x48" "\xfe\x7f\x25\xe5\xff\xfb\xc9\xcf\xaf\xf4\xf1\xcb\xff\xcb\xff\xb3\xd0\xf5" "\xcf\xff\xc7\xaf\xfa\xcb\xff\xc7\xbe\x7f\x7f\xa8\x49\x45\xfa\x7f\x00\x00" "\x00\xa8\x82\xd8\xf7\xff\x7c\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd" "\xef\x0c\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x40\xa8\x49\x45\xfa" "\xff\x6b\xc8\xff\x37\xee\x94\xff\x6f\x25\xff\xdf\x3a\x7e\xf9\xff\xce\xf3" "\xa3\x5a\xf9\xff\x77\x66\xed\x8a\x98\xff\xaf\x4f\x1e\xf9\xff\x72\x29\x70" "\xfe\x7f\xb4\x9f\xed\xcb\xff\xbb\xfe\xbf\xfc\xff\xb2\x8c\xbf\xfd\x47\xcd" "\x40\xc6\x2f\xff\x2f\xff\xcf\x42\x45\xbb\xfe\x7f\xec\xfb\xdf\x15\x6a\x52" "\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xf7\x86\x9a\xe8\xff\x01\x00\x00" "\xa0\x34\x62\xdf\xff\xee\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xdf" "\x13\x6a\x52\x91\xfe\xdf\xf5\xff\xe5\xff\xe5\xff\xe5\xff\x5d\xff\xbf\xf3" "\xf6\xe5\xff\x57\xa6\x02\xe7\xff\xfb\x22\xff\x2f\xff\x2f\xff\xbf\x72\xc7" "\x2f\xff\x2f\xff\xcf\x42\x45\xcb\xff\xc7\xbe\xff\xbe\x50\x93\x8a\xf4\xff" "\x00\x00\x00\x50\x05\xb1\xef\x7f\x6f\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23" "\xf6\xfd\xef\x0b\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xfd\xa1\x26" "\x15\xe9\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\x3b\x6f\x5f\xfe\x7f" "\x65\x92\xff\xef\x4e\xfe\xbf\x07\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x06\xaa" "\x68\xf9\xff\xd8\xf7\x7f\x20\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54\x41\xec" "\xfb\xef\x0f\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x83\xa1\x26\xfa" "\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x7f\x28\xd4\xa4\x22\xfd\xbf\xfc\xbf\xfc" "\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7\xed\xcb\xff\xaf\x4c\xf2\xff\xdd\xc9\xff" "\xf7\x20\xff\x2f\xff\x2f\xff\x2f\xff\xcf\x40\x15\x2d\xff\x1f\xfb\xfe\x0f" "\x87\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a\x88\x7d\xff\x2f\x84\x9a\xe8\xff" "\x01\x00\x00\xa0\x34\x62\xdf\xff\x91\x50\x13\xfd\x3f\x00\x00\x00\x94\x46" "\xec\xfb\x7f\x31\xd4\xa4\x22\xfd\xbf\xfc\xbf\xfc\x7f\xb1\xf2\xff\xf3\xe7" "\x9b\xd7\x93\xff\x97\xff\xcf\x06\x95\xff\xaf\xaf\x24\xff\x5f\x09\xf2\xff" "\xdd\xc9\xff\xf7\xd0\x21\xff\xbf\x5a\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x6b" "\x56\xb4\xfc\x7f\xec\xfb\x3f\x1a\x6a\x52\x91\xfe\x1f\x00\x00\x00\xaa\x20" "\xf6\xfd\x1f\x0b\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\xe3\xa1\x26" "\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\x3f\x10\x6a\x52\x91\xfe\x5f\xfe\xbf" "\x92\xf9\xff\xf4\x94\x8b\x97\xff\x77\xfd\xff\x7e\xf2\xff\x23\xb7\xc8\xff" "\x67\xae\xff\x2f\xff\xbf\x08\xf9\xff\xee\xe4\xff\x7b\x70\xfd\x7f\xf9\x7f" "\xf9\x7f\xf9\x7f\x06\xaa\x68\xf9\xff\xd8\xf7\x3f\x18\x6a\x52\x91\xfe\x1f" "\x00\x00\x00\xaa\x20\xf6\xfd\x9f\x08\x35\xd1\xff\x03\x00\x00\x40\x69\xc4" "\xbe\xff\x97\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\xff\x64\xa8\x49" "\x45\xfa\x7f\xf9\xff\x4a\xe6\xff\x0b\x7c\xfd\xff\xb2\xe5\xff\x47\x5a\xe6" "\x47\x95\xae\xff\x3f\xd6\xf4\x7a\xa6\x79\x29\xff\x2f\xff\xbf\x0c\xe4\xff" "\xbb\x93\xff\xef\x41\xfe\x5f\xfe\xbf\xc8\xf9\xff\x30\x9b\xd7\x2c\xb2\xbe" "\xfc\x3f\x45\x54\xb4\xfc\x7f\xec\xfb\x3f\x15\x6a\x52\x91\xfe\x1f\x00\x00" "\x00\xaa\x20\xf6\xfd\xbf\x1c\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff" "\xaf\x84\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\xab\xa1\x26\x15\xe9" "\xff\x4b\x98\xff\xbf\x90\xc9\xff\xcb\xff\x17\x26\xff\xdf\x3a\x3f\xaa\x94" "\xff\x77\xfd\xff\x85\xe4\xff\x97\x87\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb" "\xff\x17\x39\xff\xdf\x83\xfc\x3f\x45\x54\xb4\xfc\x7f\xec\xfb\x7f\x2d\xd4" "\x64\xd1\xc6\xef\xa5\xff\xea\xe3\x69\x02\x00\x00\x00\x05\x12\xfb\xfe\x4f" "\x87\x9a\x54\xe4\xef\xff\x00\x00\x00\x50\x05\xb1\xef\x3f\x18\x6a\xa2\xff" "\x07\x00\x00\x80\xd2\x88\x7d\xff\xa1\x50\x93\x8a\xf4\xff\x25\xcc\xff\x2f" "\xf1\xfa\xff\xf1\x8a\xaa\xf2\xff\xf2\xff\x83\xce\xff\x0f\xc9\xff\xcb\xff" "\xcb\xff\x2f\x83\xc1\xe5\xff\xdf\x70\x73\x96\xc9\xff\xcb\xff\xcb\xff\xcb" "\xff\xcb\xff\xcb\xff\xb3\x14\x45\xcb\xff\xc7\xbe\xff\x70\xa8\x49\x45\xfa" "\x7f\x00\x00\x00\xa8\x82\xd8\xf7\xff\x7a\xa8\x89\xfe\x1f\x00\x00\x00\x4a" "\x23\xf6\xfd\x47\x42\x4d\xf4\xff\x00\x00\x00\x50\x78\x23\x29\x11\xdc\x5d" "\xec\xfb\xa7\x43\x4d\x2a\xd2\xff\xdf\xc0\xfc\xff\x68\x31\xf3\xff\x65\xbb" "\xfe\x7f\x2d\x3c\xf6\xf5\xcf\xff\xff\x54\xfe\xdf\xf5\xff\x03\xf9\xff\xce" "\xe4\xff\x97\x87\xeb\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf\xfc" "\x3f\x03\x55\xb4\xfc\x7f\xec\xfb\x67\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40" "\x89\xa5\x5f\x07\xc7\xbe\xff\x68\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6" "\xfd\xc7\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x28\xd4\xa4\x22" "\xfd\xbf\xeb\xff\x97\x3d\xff\xef\xfa\xff\xc5\xcc\xff\x8f\xb4\x2c\x2f\xff" "\x9f\x93\xff\x97\xff\x1f\x04\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97\xff\x97" "\xff\x97\xff\x67\xa0\x8a\x96\xff\x8f\x7d\xff\x6c\xa8\x49\x45\xfa\x7f\x00" "\x00\x00\xa8\x82\xd8\xf7\x7f\x26\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb" "\xfe\xcf\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\x7f\x3c\xd4\xa4\x22" "\xfd\xbf\xfc\xbf\xfc\x7f\xd5\xf3\xff\xb5\x2c\xbb\xe0\xfa\xff\xf2\xff\x9d" "\xb6\x2f\xff\xbf\x32\xc9\xff\x77\x27\xff\xdf\x83\xfc\xbf\xfc\xbf\xfc\xbf" "\xfc\x3f\xff\xcf\xde\x7d\x34\xd9\x75\x55\x7d\x1c\x3e\x36\x56\x1a\xc1\x47" "\x60\xec\x11\x43\x18\x99\x8f\xc0\x94\x19\x55\x8c\x4d\x34\x39\xc8\x22\x67" "\x30\x39\x07\x93\x31\x39\x63\x82\x4d\xce\x39\x67\x93\x73\x34\x26\x18\xaa" "\x44\x59\x5a\x6b\x49\xdd\xf7\xf6\xb9\x2d\xf5\x51\xdf\x73\xf6\x7e\x9e\xc9" "\xc2\x2a\xcb\x7d\x65\x37\x7e\xeb\xff\xaa\x7e\xec\x49\xcd\xad\xff\xcf\xdd" "\x7f\x75\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x5f\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xdf\x3f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x1f\x10\xb7\x74\xb2\xff\xf5\xff\xfa\xff\xde\xfb\xff\x61\x2b\xef\xff" "\xef\xfc\xf3\xf5\xff\x67\xe9\xff\xf5\xff\x53\x58\xe9\xef\xaf\x58\xff\xe7" "\xed\x15\x85\xef\xd9\xff\xdf\xed\xee\xd7\xdc\x47\xff\xaf\xff\xd7\xff\x8f" "\xd2\xff\xeb\xff\xf5\xff\xec\x36\xb7\xfe\x3f\x77\xff\x03\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\x83\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xc1\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x4d\xdc\xd2\xc9" "\xfe\xd7\xff\xeb\xff\xf5\xff\x8b\xe8\xff\x2f\xcb\xbf\xc6\x25\xef\xff\x6f" "\xd6\xff\xeb\xff\x97\xcd\xfb\xff\xe3\xf4\xff\x1b\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\x21\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\xa1\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb0\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x78\xdc\xd2\xc9\xfe\xd7\xff\xeb" "\xff\xf5\xff\x8b\xe8\xff\x6f\xbb\xf1\xe4\x51\xef\xff\xef\xfa\xf5\xe8\xff" "\xf5\xff\xeb\xe8\xff\xc7\xe9\xff\x37\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x26" "\x35\xb7\xfe\x3f\x77\xff\x23\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\x23\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x51\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xe8\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\x27\xec\xff\x4f\x0d\xc3\x70\xc9\xfa\xff\x41\xff\xbf\xeb\xd7\xa3\xff\xd7" "\xff\xaf\x73\xfd\x70\xee\xdf\x09\xfa\xff\x55\xfa\xff\x0d\x36\xf4\xff\xc3" "\xa0\xff\x1f\xb3\xef\x7e\x7e\xfd\x2f\x6f\x39\x9f\x7f\x0f\xfa\x7f\xfd\x3f" "\xab\xe6\xd6\xff\xe7\xee\x7f\x4c\xdc\x72\xcf\x61\x38\x7a\xb1\xbf\x48\x00" "\x00\x00\x60\x56\x72\xf7\x3f\x36\x6e\xe9\xe4\xf7\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\x4f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xb5\x71\x4b\x27" "\xfb\x5f\xff\xaf\xff\xd7\xff\x2f\xe5\xfd\x7f\xfd\xbf\xfe\x5f\xff\xbf\x1f" "\xde\xff\x1f\x77\xf0\xfe\xff\xca\xbb\x5c\x7d\xdf\x7e\xfb\x7f\xef\xff\x8f" "\xf3\xfe\xff\xd4\xfd\xff\x1d\xdf\x19\xfa\x7f\x96\x6d\x6e\xfd\x7f\xee\xfe" "\x53\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x71\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xf8\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x42\xdc\xd2\xc9\xfe\xd7\xff\xb7\xd6\xff\xdf\x69\xc7\xcf\x3b\xaf\xff" "\x3f\x53\xbb\xe8\xff\xf5\xff\x17\xd3\xff\x1f\xa9\xbf\x92\xfe\x5f\xff\x3f" "\x7f\xfa\xff\x71\xde\xff\xdf\xe0\xcc\xbf\xe6\x4e\xd4\x1f\xea\xff\xf5\xff" "\xde\xff\xd7\xff\x73\x30\x73\xeb\xff\x73\xf7\x3f\x31\x6e\xe9\x64\xff\x03" "\x00\x00\x40\x0f\x72\xf7\x3f\x29\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x9f\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x4f\x89\x5b\x3a\xd9\xff" "\xfa\xff\xd6\xfa\xff\x9d\x3f\xcf\xfb\xff\xfa\xff\x75\x5f\xdf\xfb\xff\xfa" "\xff\x96\x5d\x5c\x7f\x7f\x65\xfd\xcf\x5c\xe8\xff\x43\xd7\xfd\x7f\x03\xef" "\xff\x5f\xe4\x77\xcd\xb6\xfb\xf9\x83\xda\xf6\xe7\xd7\xff\xeb\xff\x59\x35" "\xb7\xfe\x3f\x77\xff\x53\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff" "\xd3\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xe9\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\x8c\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x2f\xa3\xff" "\xcf\xaf\xa0\xff\xd7\xff\x5f\xfa\xfe\x3f\xe9\xff\x97\xc9\xfb\xff\xe3\xf4" "\xff\x1b\xb4\xd2\xff\x5f\xa4\x6d\xf7\xf3\x4b\xff\xfc\xfa\x7f\xfd\x3f\xab" "\xe6\xd6\xff\xe7\xee\x7f\x66\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee" "\x7f\x56\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x3b\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x9f\x13\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x65\xf4" "\xff\xde\xff\xd7\xff\x7b\xff\x5f\xff\xbf\x3f\xfa\xff\x71\xfa\xff\x0d\xf4" "\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\x7f\x5d\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x6e\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\x3f\x2f\x6e\xb9\x90\xfd\x7f\x64\xea\x4f\x05\x00\x00\x00\x4c\x29" "\x77\xff\xf3\xe3\x96\x4e\x7e\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xeb\xbf\xbe\xfe\x7f\x99\xf4\xff\xe3\xf4\xff\x1b\x74\xde\xff\x0f\xd7\xea" "\xff\xf5\xff\xfa\x7f\xa6\x35\xa3\xfe\xff\xbc\x9f\x75\x7c\x78\x41\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x61\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x28\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1c\xb7" "\x74\xb2\xff\xdb\xeb\xff\x8f\x2d\xb5\xff\x3f\x93\xf3\xb5\xd5\xff\x9f\x18" "\x86\x41\xff\x3f\x74\xda\xff\x9f\x38\xef\x9f\x67\x7d\x5f\xea\xff\xf5\xff" "\x87\x40\xff\x3f\x4e\xff\xbf\x41\xe7\xfd\xff\xb6\xfb\xf9\xa5\x7f\x7e\xfd" "\xbf\xfe\x9f\x55\x33\xea\xff\xcf\xfc\x71\xee\xfe\x97\xc4\x2d\x9d\xec\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77" "\xff\xcb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xe5\x71\x4b\x27\xfb" "\xbf\xbd\xfe\xdf\xfb\xff\xc3\x6c\xfa\x7f\xef\xff\xef\xfe\xfe\xe8\xa9\xff" "\xf7\xfe\xff\x2a\xfd\xff\xe1\xd0\xff\x8f\xd3\xff\x6f\xa0\xff\xd7\xff\xeb" "\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\x57\xc4\x4d\x47\x8f\x5c\xf4\x2f" "\x11\x00\x00\x00\x98\x99\xdc\xfd\xaf\x8c\x5b\x3a\xf9\xfd\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\x57\xc5\x2d\xf6\x3f\x00\x00\x00\x2c\xd4\x75\x2b\x3f\x92" "\xbb\xff\xd5\x71\x4b\x27\xfb\x5f\xff\x3f\x6d\xff\x7f\xf4\xbc\x1f\xd3\xff" "\xeb\xff\x77\x7f\x7f\xe8\xff\xf5\xff\xfa\xff\x4b\x6f\x53\x7f\xbf\xe9\x6f" "\x99\xfe\x3f\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x09\xcc\xad\xff\xcf" "\xdd\xff\x9a\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x7d\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x5f\x17\xb7\x74\xb2\xff\xf5\xff\xde\xff\xd7\xff\xeb\xff\x37\xf5" "\xff\xe7\x9e\x43\xd5\xff\xeb\xff\xe7\xcf\xfb\xff\xe3\xf4\xff\x1b\xe8\xff" "\xf5\xff\xdb\xed\xff\x8f\x9d\xfb\x8f\xfa\x7f\xda\x70\x01\xfd\xff\xe9\xd3" "\xa7\x4f\x5e\xf2\xfe\x3f\x77\xff\xeb\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\x1b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x8d\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa6\xb8\xa5\x93\xfd\xaf\xff\xef\xb4" "\xff\xcf\x6f\xf5\x65\xf5\xff\xd7\x0e\x83\xfe\xdf\xfb\xff\xfa\x7f\xfd\xff" "\x38\xfd\xff\x38\xfd\xff\x06\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff\x4c\x6a\x6e" "\xef\xff\xe7\xee\x7f\x73\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f" "\x4b\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x10\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x6f\x8d\x5b\x3a\xd9\xff\xfa\xff\x4e\xfb\x7f\xef\xff" "\xeb\xff\xf5\xff\x87\xdd\xff\xdf\x3e\xe8\xff\x0f\xc5\x22\xfa\xff\x13\x7b" "\x7f\xfd\xb9\xf7\xff\xa7\xf4\xff\xfa\xff\x11\xdd\xf5\xff\xf7\xba\xc7\x8e" "\x3f\xd4\xff\xeb\xff\x59\x35\xb7\xfe\x3f\x77\xff\xdb\xe2\x96\x4e\xf6\x3f" "\x00\x00\x00\xf4\x20\x77\xff\xdb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x1d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xce\xb8\xe9\x8a\x4e" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\x7f\xfd\x43\x7e\xff\xff" "\xe8\x30\x0c\xfa\xff\x09\x2c\xa2\xff\x1f\x31\xf7\xfe\x7f\x9a\xf7\xff\x77" "\xff\xb7\xfc\x1c\xfd\xbf\xfe\x7f\xc9\x9f\x5f\xff\xaf\xff\x67\xd5\xdc\xfa" "\xff\xdc\xfd\xef\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8e" "\x9b\x8e\xd9\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x89\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xf7\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x6f\xbe\xff\x3f\xb5\x88\xfe\xdf\xfb\xff\x13\xd1\xff\x8f\x9b\x47\xff\xbf" "\x37\xfd\xbf\xfe\x7f\xc9\x9f\x5f\xff\xaf\xff\x67\xff\xb6\xd5\xff\xe7\xee" "\x7f\x5f\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x7f\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x7f\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x3f\x18\xb7\x74\xb2\xff\xf5\xff\xfa\xff\x0b\xe9\xff\xf3\x73\xea\xff" "\xdb\xea\xff\x8f\xcd\xae\xff\x3f\xbe\xe3\xaf\xd7\xc9\xfb\xff\xfa\xff\x89" "\xe8\xff\xc7\xe9\xff\x37\xd0\xff\xeb\xff\xf5\xff\xd7\xe9\xff\x99\xd2\xdc" "\xde\xff\xcf\xdd\xff\xa1\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f" "\x63\xdc\xfa\x7f\xdd\xda\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8e\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x8f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\xdf" "\xfb\xff\xfa\xff\xe6\xdf\xff\xd7\xff\x77\x45\xff\x3f\x4e\xff\xbf\x81\xfe" "\x5f\xff\xaf\xff\xf7\xfe\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\xa3\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x63\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xdf\x1c\xb7\x74" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x7f\xf6\x9f\xa1\xfe\xbf\x0d" "\xfa\xff\x71\x87\xd3\xff\x9f\xd0\xff\xeb\xff\xab\x9f\xbf\x2c\xfe\x5b\xa0" "\xff\xd7\xff\x6f\xfa\xf9\xb4\x69\x6e\xfd\x7f\xee\xfe\x8f\xc7\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x4f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x27\xe3\x16\xfb\x1f\x00\x00\x00\x16\xe9\x8a\x35\x3f\x96\xbb\xff" "\x53\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xeb\xbf\xbe" "\xfe\x7f\x99\xb6\xd2\xff\xe7\x37\x85\xfe\xdf\xfb\xff\xa1\x9f\xfe\xff\xae" "\x3b\xfe\x68\x69\xef\xff\xef\xfe\xbf\x5f\xfa\x7f\xfd\x3f\xd3\x9b\x5b\xff" "\x9f\xbb\xff\xd3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x33\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd9\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\x5c\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd" "\xff\xfa\xaf\xaf\xff\x5f\x26\xef\xff\x8f\xd3\xff\x6f\xa0\xff\xdf\xea\xfb" "\xf9\x4b\xff\xfc\xfa\x7f\xfd\x3f\xab\xe6\xd6\xff\xe7\xee\xff\x7c\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x42\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x31\x6e\xb1\xff\x01\x00\x00\xa0\x19\x67\x76\x7f\xc6\x65" "\x1d\xee\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\xfa\xfa\xff\x65" "\xd2\xff\x8f\xd3\xff\x6f\xa0\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd" "\xff\x97\xce\xfc\xac\xe3\xc3\x97\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x57\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xab\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb5\xb8\xa5\x93\xfd\xbf\xff\xfe\xff\xf4" "\xa0\xff\xdf\x9b\xfe\x7f\xe7\xe7\x9f\xbe\xff\x3f\x7d\xfa\xf4\x49\xfd\xbf" "\xfe\x7f\xe7\xaf\xe7\x5c\xff\x7f\x8b\xfe\x9f\xa2\xff\x1f\xa7\xff\xdf\x40" "\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\x5f\x8f\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xdf\x88\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xb7\xe2\x96" "\x4e\xf6\xbf\xf7\xff\x67\xd0\xff\x1f\xd7\xff\x7b\xff\x5f\xff\x3f\x78\xff" "\x7f\xb5\xff\xbf\xfc\xec\xbf\x94\xf5\xff\x17\x46\xff\x3f\x4e\xff\xbf\x41" "\x8b\xfd\xff\xf1\xfd\xff\xf2\xb7\xdd\xcf\x1f\xd4\xb6\x3f\xbf\xfe\x5f\xff" "\xcf\xaa\xb9\xf5\xff\xb9\xfb\xbf\x1d\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07" "\xb9\xfb\xbf\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xdf\x8d\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\xc5\x2d\x9d\xec\x7f\xfd\xff\xe1\xf5" "\xff\x77\xfc\xbd\xeb\xe5\xfd\xff\x13\xc3\xfa\xcf\xaf\xff\xd7\xff\xeb\xff" "\xbd\xff\x7f\xa9\xe9\xff\xc7\xe9\xff\x37\x68\xb1\xff\xbf\x00\xdb\xee\xe7" "\x97\xfe\xf9\xf5\xff\xfa\x7f\x56\xcd\xad\xff\xcf\xdd\xff\xfd\xb8\x65\xe7" "\xf0\x3b\x72\x61\xbf\x4a\x00\x00\x00\x60\x4e\x72\xf7\xff\x20\x6e\xe9\xe4" "\xf7\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x18\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x3f\x8a\x5b\x3a\xd9\xff\xfa\xff\x19\xbc\xff\xdf\x60\xff\xef" "\xfd\xff\xf5\xdf\x1f\xfa\xff\x59\xf7\xff\x97\xeb\xff\xdb\xa0\xff\x1f\xa7" "\xff\xdf\x40\xff\xaf\xff\xd7\xff\x4f\xd4\xff\xe7\x77\xb3\xfe\xbf\x77\x73" "\xeb\xff\x73\xf7\xff\x38\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff" "\x24\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x1a\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xb7\xc4\x2d\xe7\xed\xff\x75\x6d\x77\x2b\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfe\xeb\xeb\xff\x97\x49\xff\x3f\x6e\xbf\xfd" "\xff\xb1\xe1\x60\xfd\x7f\xd2\xff\xeb\xff\xf5\xff\xbd\xf6\xff\xde\xff\xe7" "\xac\xb9\xf5\xff\xb9\xfb\x7f\x16\xb7\xf8\xfd\x7f\x00\x00\x00\x58\x9c\x23" "\x7b\xfc\x78\xee\xfe\x9f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x2f" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x97\x71\xcb\xad\x97\x6f\xeb" "\x23\x1d\x2a\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\xfa\xfa\xff\x65" "\xd2\xff\x8f\x9b\xe5\xfb\xff\x37\xdc\x54\xff\x51\xff\xdf\x44\xff\x7f\x95" "\xfe\xbf\x8d\xfe\x7f\x18\xf4\xff\x1c\xdc\xdc\xfa\xff\xdc\xfd\xbf\x8a\x5b" "\xfc\xfe\x3f\x00\x00\x00\x34\x23\x77\xff\xaf\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x37\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xdb\xb8" "\xa5\x93\xfd\xaf\xff\xd7\xff\x1f\xb0\xff\x3f\x93\x66\xea\xff\xcf\xd2\xff" "\x9f\xa5\xff\x5f\x4f\xff\x7f\x38\xf4\xff\xe3\x66\xd9\xff\x9f\x47\xff\xdf" "\x44\xff\xef\xfd\xff\x46\xfa\x7f\xef\xff\x33\x85\xb9\xf5\xff\xb9\xfb\x7f" "\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\x7f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x3f\xc6\x2d\x9d\xec\xff\xad\xf5\xff\xf1\xb7\x5a\xff\xbf\xf8\xfe\xdf\xfb" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\x56\xf4\xff\xe3\xf4\xff\x1b\xe8\xff\xf5\xff" "\xfa\x7f\xfd\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\x4f\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\xcf\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\x97\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x6b\xdc\xd2\xc9\xfe\xf7" "\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xaf\xff\xfa\xfa\xff\x65\xd2\xff\x8f" "\xd3\xff\xaf\x57\xff\xa0\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff" "\xcf\xdd\xff\xb7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xf7\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x35\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\xff\x11\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xbf\xfe\xeb\xeb\xff\x97\x49\xff\x3f\x6e\x9b\xfd\xff\xbd\xef\xbc\xf9\xcb" "\x7a\xff\x7f\xeb\xfd\x7f\x7e\x04\xfd\xbf\xfe\x5f\xff\xcf\x24\xe6\xd6\xff" "\xe7\xee\xbf\x2d\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x33\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x15\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xff\x8e\x5b\x3a\xd9\xff\x1b\xfa\xff\x63\xf5\x27\xea\xff\x47" "\xe9\xff\x77\x7e\x7e\xfd\xff\xfa\xef\x8f\x86\xfb\xff\x1d\x81\xab\xfe\x7f" "\x3d\xfd\xff\xe1\xd0\xff\x8f\x5b\xce\xfb\xff\xf1\xf3\xf5\xff\x3b\x78\xff" "\x7f\xde\x9f\x5f\xff\xaf\xff\x67\xd5\xdc\xfa\xff\xdc\xfd\xff\x89\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x7f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x7f\x71\x4b" "\x27\xfb\xdf\xfb\xff\x4b\xea\xff\xaf\xd2\xff\xeb\xff\xe7\xda\xff\xef\xa0" "\xff\x5f\x4f\xff\x7f\x38\xf4\xff\xe3\x96\xd3\xff\x7b\xff\x7f\x1d\xfd\xff" "\xbc\x3f\xbf\xfe\x5f\xff\xcf\xaa\xb9\xf5\xff\xb9\xfb\xff\x1f\x00\x00\xff" "\xff\x17\x70\x43\x1d", 25115); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x2000000000c0, /*flags=*/0, /*opts=*/0x200000000640, /*chdir=*/0xfa, /*size=*/0x621b, /*img=*/0x200000012cc0); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x48241 (4 bytes) // mode: open_mode = 0x141 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, "./file1\000", 8); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_TRUNC|O_NOATIME|O_LARGEFILE|O_CREAT|O_WRONLY*/ 0x48241, /*mode=S_IXOTH|S_IXUSR|S_IRUSR*/ 0x141); } 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; use_temporary_dir(); loop(); return 0; }