// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // 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: {13 13 77 c5 fc 35 d4 14 54 d5 d4 1d 29 ad 1a 60 29 59 81 46 // e6 be 16 6e 41 ad 0d bd 40 54 03 3c 9f 33 bb da 82 24 a2 f3 d7 72 e7 // 63 6e 48 b3 3c bf 70 83 72 e8 f1 b9 93 3e c5 12 77 43 be 22 06 20 9e // f0 2d f9 cb f2 f6 e8 80 d3 38 2f 00} (length 0x4e) // } // flags: mount_flags = 0x1c802 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x3 (1 bytes) // size: len = 0x5fbe (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5fbe) // } // ] // returns fd_dir memcpy((void*)0x200000000400, "jfs\000", 4); memcpy((void*)0x200000000380, "\023\023w\305\3745\324\024T\325\324\035)\255\032`)" "Y\201F\346\276\026nA\255\r\275@T\003<\2373\273\332\202$" "\242\363\327r\347cnH\263<\277p\203r\350\361\271\223>" "\305\022wC\276\"\006 \236\360-\371\313\362\366\350\200\3238/\000", 78); memcpy( (void*)0x200000007fc0, "\x78\x9c\xec\xdd\x5d\x6f\x1c\x57\x19\x07\xf0\x67\x5f\xbc\x7e\x29\x6d\xa3" "\x0a\x55\x21\xe2\xc2\x4d\xa1\xb4\x94\xe6\x3d\x81\xf2\xd6\x94\x0b\x2e\x00" "\x09\x24\x94\x6b\x12\xb9\x6e\x15\x48\x0b\x4a\x02\xa2\x55\x44\x5c\xe5\x02" "\x71\xc1\xcb\x47\x80\x9b\xde\x70\xd1\xaf\xc1\x45\x91\xf8\x04\x88\x0f\x40" "\xa4\x98\xab\x4a\x50\x06\x8d\x7d\x8e\x33\x5e\xaf\xbd\x0e\xb1\x77\x76\x7d" "\x7e\x3f\xc9\x99\x79\xe6\xcc\x78\xcf\xe4\xef\xf1\xee\x7a\x66\xf6\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\xdf\xf9\xf6\x0f\xcf" "\x76\x22\xe2\xea\x2f\xd2\x82\x63\x11\x9f\x8a\x5e\x44\x37\x62\xb1\xae\x97" "\xa3\x9e\xb9\x9c\xd7\xef\x47\xc4\xf1\xd8\x68\x8e\x67\x23\xa2\x37\x1f\x51" "\x6f\xbf\xf1\xcf\xd3\x11\x17\x22\xe2\xa3\xa7\x22\x1e\xac\xdf\x59\xa9\x17" "\x9f\xdb\x67\x3f\x2e\x9e\xb9\x7d\xf3\x93\xef\x7e\xeb\xef\xbf\xfe\xfd\xbd" "\xe3\x3f\x7e\xe3\x47\x1f\x0c\xb7\xff\xe0\xd3\xe7\x3f\xfc\xcd\xdd\x88\x63" "\xdf\x7f\xf5\xc3\x4f\xee\x1e\xcc\xbe\x03\x00\x00\x40\x29\xaa\xaa\xaa\x3a" "\xe9\x6d\xfe\x89\xf4\xfe\xbe\xdb\x76\xa7\x00\x80\x89\xc8\xcf\xff\x55\x92" "\x97\x3f\x56\xfd\x97\x85\xad\x85\x07\xf2\xfd\xd4\x6a\xb5\x7a\xf6\xeb\xdf" "\x75\xa7\xab\x3f\xea\x42\xeb\xa6\x6a\xb4\xbb\xcd\x22\x22\xd6\x9a\xdb\xd4" "\xaf\x19\x9c\x8e\x07\x80\x19\xb3\x16\x1f\xb7\xdd\x05\x5a\x24\xff\xa2\xf5" "\x23\xe2\x89\xb6\x3b\x01\x4c\xb5\x4e\xdb\x1d\xe0\x50\x3c\x58\xbf\xb3\xd2" "\x49\xf9\x76\x9a\xcf\x07\xcb\x9b\xed\xf9\xef\x94\xdb\xf2\x5f\xeb\x6c\xdd" "\xdf\xb1\xdb\x74\x9c\xe1\x6b\x4c\x26\xf5\xf3\x75\x2f\x7a\xf1\xcc\x2e\xfd" "\x59\x9c\x50\x1f\xa6\x49\xce\xbf\x3b\x9c\xff\xd5\xcd\xf6\x41\x5a\xef\xb0" "\xf3\x9f\x94\xdd\xf2\x1f\x6c\xde\xfa\x54\x9c\x9c\x7f\x6f\x38\xff\x21\xdb" "\xf2\xff\x43\x44\xcc\x6c\xfe\xdd\x91\xf9\x97\x2a\xe7\xdf\x7f\x94\xfc\xd7" "\x7a\x33\x7c\xfc\xcb\x1f\x00\x00\x00\x00\x80\xa3\x2f\xff\xfd\xff\x58\xcb" "\xe7\x7f\xe7\x1f\x7f\x57\xf6\x65\xaf\xf3\xbf\xcb\x13\xea\x03\x00\x00\x00" "\x00\x00\x00\x00\x1c\xb4\xc7\x1d\xff\x6f\x8b\xf1\xff\x00\x00\x00\x60\x6a" "\xd5\xef\xd5\x6b\x7f\x7c\xea\xe1\xb2\xdd\x3e\x8b\xad\x5e\x7e\xa5\x13\xf1" "\xe4\xd0\xfa\x40\x61\xd2\xcd\x32\x4b\x6d\xf7\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x4a\xd2\xdf\xbc\x86\xf7\x4a\x27\x62\x2e\x22\x9e\x5c\x5a" "\xaa\xaa\xaa\xfe\x6a\x1a\xae\x1f\xd5\xe3\x6e\x3f\xeb\x4a\xdf\x7f\x28\x59" "\xdb\xbf\xe4\x01\x00\x60\xd3\x47\x4f\xa5\x7b\xf9\xf3\x00\x7c\x9d\x88\x85" "\x88\xb8\x92\x3e\xeb\x6f\x6e\x69\x69\xa9\xaa\x16\x16\x97\xaa\xa5\x6a\x71" "\x3e\xbf\x9e\x1d\xcc\x2f\x54\x8b\x8d\xf7\xb5\x79\x5a\x2f\x9b\x1f\xec\xe3" "\x05\x71\x7f\x50\xd5\xdf\x6c\xa1\xb1\x5d\xd3\xb8\xf7\xcb\xe3\xda\x87\xbf" "\x5f\xfd\x58\x83\xaa\xb7\x8f\x8e\x4d\x46\xcb\xa1\x03\x50\xbc\xcd\x67\xa3" "\x07\x9e\x91\x8e\x98\xaa\x7a\x3a\xda\x7e\x95\xc3\x6c\x70\xfc\x1f\x3d\x8e" "\x7f\xf6\xa3\xed\x9f\x53\x00\x00\x00\xe0\xf0\x55\x55\x55\x75\xd2\xc7\x79" "\x9f\x48\xe7\xfc\xbb\x6d\x77\x0a\x00\x98\x84\x85\xfc\xfc\x3f\x7c\x5e\x40" "\xad\x56\xab\xd5\x6a\xf5\xd1\xab\x9b\xaa\xd1\xee\x36\x8b\x88\x58\x6b\x6e" "\x53\xbf\x66\x30\x1c\x3f\x00\xcc\x98\xb5\xf8\xb8\xed\x2e\xd0\x22\xf9\x17" "\xad\x1f\x11\xc7\xdb\xee\x04\x30\xd5\x3a\x6d\x77\x80\x43\xf1\x60\xfd\xce" "\x4a\x27\xe5\xdb\x69\x3e\x1f\xa4\xf1\xdd\xf3\xb5\x20\xdb\xf2\x5f\xeb\x6c" "\x6c\x97\xb7\x1f\x35\x1d\x67\xf8\x1a\x93\x49\xfd\x7c\xdd\x8b\x5e\x3c\xb3" "\x4b\x7f\x9e\x9d\x50\x1f\xa6\x49\xce\xbf\x3b\x9c\xff\xd5\xcd\xf6\x41\x5a" "\xef\xb0\xf3\x9f\x94\xdd\xf2\xaf\xf7\xf3\x58\x0b\xfd\x69\x5b\xce\xbf\x37" "\x9c\xff\x90\xa3\x93\x7f\x77\x64\xfe\xa5\xca\xf9\xf7\x1f\x29\xff\x9e\xfc" "\x01\x00\x00\x00\x00\x60\x8a\xe5\xbf\xff\x1f\x2b\xf7\xfc\x6f\x2f\xf7\x67" "\x79\x42\x7d\x00\x00\x00\x00\x00\x00\x00\x80\x83\xf6\x60\xfd\xce\x4a\xbe" "\xef\x35\x9f\xff\xff\xec\x88\xf5\x3a\xcd\x39\xf7\x7f\x1e\x19\x39\xff\xce" "\xbe\xf3\x77\xff\xef\x51\x92\xf3\xef\x0e\xe7\x3f\x74\x41\x4e\xaf\x31\x7f" "\xff\xf5\x87\xf9\xff\x6b\xfd\xce\xca\x07\xb7\xff\xf9\x99\x3c\x9d\xfa\xfc" "\xe7\x7a\x83\xfa\xb1\xe7\x3a\xdd\x5e\x3f\x5d\xf3\x53\xcd\xbd\x19\xd7\xe3" "\x46\xac\xc6\x99\x1d\xeb\xf7\xb7\xb5\x9f\xdd\xd1\x3e\xb7\xad\xfd\xdc\x98" "\xf6\xf3\x3b\xda\x07\x75\xfb\x62\x6e\x3f\x15\x2b\xf1\xd3\xb8\x11\x6f\x6c" "\xb5\xcf\x8f\xb9\x30\x6a\x61\x4c\x7b\x35\xa6\x3d\xe7\xdf\x73\xfc\x17\x29" "\xe7\xdf\x6f\x7c\xd5\xf9\x2f\xa5\xf6\xce\xd0\xb4\x76\xff\xfd\xee\x8e\xe3" "\xbe\x39\x1d\xf5\x38\x97\xff\xfc\x9f\x17\x76\x1e\x5d\x93\x77\x2f\x7a\x5b" "\xfb\xd6\x54\xef\xdf\xc9\x16\xfa\xb3\xf1\x7f\xf2\xc4\x20\x7e\x7e\x6b\xf5" "\xe6\xa9\x5f\x5e\xbb\x7d\xfb\xe6\xd9\x48\x93\x6d\x4b\xcf\x45\x9a\x1c\xb0" "\x9c\xff\x5c\xfa\xca\xf9\xbf\xf8\xfc\x66\x7b\xfe\xbd\xdf\x3c\x5e\xef\xbf" "\x3f\x78\xe4\xfc\xa7\xc5\xbd\xe8\xef\x9a\xff\xf3\x8d\xf9\x7a\x7f\x5f\x9a" "\x70\xdf\xda\x90\xf3\x1f\xa4\xaf\x9c\x7f\x7e\x06\x1a\x7d\xfc\xcf\x72\xfe" "\xbb\x1f\xff\x2f\xb7\xd0\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xd8\x4b\x55\x55\x1b\xb7\x88\x5e\x8e\x88\x4b\xe9\xfe\x9f\xb6\xee\xcd" "\x04\x00\x26\xea\xb7\xdf\x4b\x33\x55\x12\x6a\xb5\x5a\xad\x56\xab\x8f\x6c" "\xdd\x54\x8d\xf6\x5a\xb3\x88\x85\xed\xdb\x5c\x8a\x88\x5f\x8d\xfa\x66\x00" "\xc0\x34\xfb\x6f\x44\xfc\xa3\xed\x4e\xd0\x1a\xf9\x17\x2c\x7f\xde\x5f\x3d" "\xfd\x5c\xdb\x9d\x01\x26\xea\xd6\xbb\xef\xfd\xe4\xda\x8d\x1b\xab\x37\x6f" "\xb5\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xff\x95\xc7\xff\x5c\x6e\x8c" "\xff\xbc\x71\x1d\xd0\xd0\xb8\xd1\xdb\xc6\x7f\x7d\x3d\x96\x67\x76\xfc\xcf" "\xee\xa0\xb7\x31\xd6\x79\xda\xa1\xe7\x62\xef\xf1\xbf\x4f\xc6\xde\xe3\x7f" "\xf7\xc7\x3c\xde\xdc\x98\xf6\xc1\x98\xf6\xf9\x31\xed\x0b\x63\xda\x47\xde" "\xe8\xd1\x90\xf3\x7f\x2e\x65\x9c\xf3\x3f\x91\x76\xac\xa4\xf1\x5f\x5f\x6c" "\xa1\x3f\x6d\xcb\xf9\x9f\x4c\x63\x3d\xe7\xfc\xbf\x30\xb4\x5e\x33\xff\xea" "\x4f\xb3\x9c\x7f\x77\x5b\xfe\xa7\x6f\xbf\xfd\xb3\xd3\xb7\xde\x7d\xef\x95" "\xeb\x6f\x5f\x7b\x6b\xf5\xad\xd5\x77\xce\x9e\xb9\x74\xe1\xfc\xc5\x0b\xe7" "\x2f\x5e\x3c\xfd\xe6\xf5\x1b\xab\x67\x36\xff\x6d\xb1\xc7\x87\x2b\xe7\x9f" "\xc7\xbe\x76\x1d\x68\x59\x72\xfe\x39\x73\xf9\x97\x25\xe7\xff\xf9\x54\xcb" "\xbf\x2c\x39\xff\x17\x52\x2d\xff\xb2\xe4\xfc\xf3\xeb\x3d\xf9\x97\x25\xe7" "\x9f\xdf\xfb\xc8\xbf\x2c\x39\xff\x97\x52\x2d\xff\xb2\xe4\xfc\xbf\x98\x6a" "\xf9\x97\x25\xe7\xff\x72\xaa\xe5\x5f\x96\x9c\xff\x97\x52\x2d\xff\xb2\xe4" "\xfc\x5f\x49\xb5\xfc\xcb\x92\xf3\x3f\x95\x6a\xf9\x97\x25\xe7\x7f\x3a\xd5" "\xf2\x2f\x4b\xce\x3f\x9f\xe1\x92\x7f\x59\x72\xfe\xf9\xca\x06\xf9\x97\x25" "\xe7\x7f\x2e\xd5\xf2\x2f\x4b\xce\xff\x7c\xaa\xe5\x5f\x96\x9c\xff\x85\x54" "\xcb\xbf\x2c\x39\xff\x8b\xa9\x96\x7f\x59\x72\xfe\x97\x52\x2d\xff\xb2\xe4" "\xfc\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\x95\x54\xcb\xbf\x2c\x39\xff\x57\x53" "\x2d\xff\xb2\xe4\xfc\xbf\x9a\x6a\xf9\x97\x25\xe7\xff\xb5\x54\xcb\xbf\x2c" "\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\x7f\x23\xd5\xf2\x2f\x4b\xce\xff\x9b" "\xa9\x96\x7f\x59\x72\xfe\xaf\xa5\x5a\xfe\x65\x79\xf8\xf9\xff\x66\x26\x3c" "\xf3\xef\xbf\x46\x4c\x41\x37\xcc\x94\x3a\xf3\xce\xdf\xf6\x5a\xa7\xed\xdf" "\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xb0\x49\x5c\x69\xdc\xf6" "\x3e\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xfc\x8f\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\xc0\x81\x00\x00\x00\x00\x00\x90\xff" "\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61\xef\xee\x62\xe4\x3a" "\xeb\x33\x80\xbf\xfb\x65\xaf\x9d\x40\x5c\x12\x42\x08\x86\xac\x1d\x27\x18" "\xb2\xf1\xee\xfa\x2b\x31\xc1\x60\x3e\x9b\x86\x96\xa6\x81\xd0\xd2\x42\x1d" "\x63\xaf\x3f\xc0\x5f\xf5\xae\x21\x41\xa8\x59\x1a\xda\x82\x40\x6a\xa4\xf6" "\x82\x5e\x94\x02\xa2\x08\xa9\xad\x12\x21\xa4\x52\x89\xa2\x48\x45\x6a\xef" "\xca\x15\x28\x37\xa8\x95\xb8\xb0\x54\xa8\x4c\x04\x95\xa8\x48\xb6\x3a\x73" "\xde\xf7\xdd\x99\xd9\xd9\x99\xf5\xc7\xda\x33\xe7\xfc\x7e\x51\xfc\xf7\xce" "\x9c\x99\x79\xe7\xcc\x99\xd9\x7d\xd6\x7a\x66\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9a\x6d" "\x79\xc7\xec\x9f\x0f\x85\x10\x8a\xff\x1b\x7f\x6c\x0a\xe1\xc6\xe2\xef\x1b" "\xc2\x81\xe2\xcb\x85\xbd\xd7\x7b\x85\x00\x00\x00\xc0\x95\x7a\xb1\xf1\xe7" "\x3f\xdc\x94\x4f\x38\xb0\x8a\x0b\x35\x6d\xf3\x6f\xaf\xfb\x8f\x6f\x2d\x2e" "\x2e\x2e\x86\x8f\xbc\x70\xe1\xa5\xbf\x5c\x5c\xcc\x67\x4c\x84\x30\xb2\x3e" "\x84\xc6\x79\xc9\xbf\xff\xf2\x17\x8b\xcd\xdb\x44\x4f\x85\xf1\xa1\xe1\xa6" "\xaf\x87\x7b\xdc\xfc\x48\x8f\xf3\x47\x7b\x9c\x3f\xd6\xe3\xfc\x75\x3d\xce" "\x5f\xdf\xe3\xfc\xf1\x1e\xe7\x2f\xdb\x01\xcb\x6c\x28\x7f\x1f\xd3\xb8\xb2" "\x6d\x8d\xbf\x6e\x2a\x77\x69\xb8\x25\x8c\x35\xce\xdb\xd6\xe1\x52\x4f\x0d" "\xad\x1f\x1e\x4e\xbf\xcb\x69\x18\x6a\x5c\x66\x71\xec\x68\x38\x11\x4e\x86" "\xd9\x30\xbd\xec\x32\x43\x8d\xff\x42\xf8\xce\x96\xe2\xb6\x1e\x0c\xe9\xb6" "\x86\x9b\x6e\x6b\x73\x08\xe1\xe2\xcf\x3e\x75\x38\xad\x61\x28\xee\xe3\x6d" "\xa1\xe5\xc6\x1a\x9a\x1f\xbb\x9f\xbe\x2d\x4c\xbc\xf0\xb3\x4f\x1d\xfe\xfa" "\xfc\x4f\x5e\xdd\x69\xf6\xdc\x0d\xcb\x56\x1a\xc2\xf6\xad\xc5\x3a\x3f\x13" "\xc2\xd2\xaf\xab\xc2\x50\x58\x9f\xf7\x49\x5a\xe7\x70\xd3\x3a\x37\x77\x58" "\xe7\x48\xcb\x3a\x87\x1a\x97\x2b\xfe\xde\xbe\xce\x8b\xab\x5c\x67\xba\xdf" "\xe3\x71\x9d\xdf\xef\xb2\xce\xcd\xf1\xb4\xc7\xef\x0c\x21\x2c\x84\x15\xb7" "\x69\xf7\x54\x18\x0e\x1b\xdb\x6e\x35\xef\xef\xf1\xf2\x88\x28\xae\xa3\x78" "\x28\x5f\x11\x46\x2f\xe9\x38\xd9\xb2\x8a\xe3\xa4\xb8\xcc\x8f\xef\x6c\x3d" "\x4e\xda\x8f\xc9\xb4\xff\xb7\xc4\x7d\x32\xba\xc2\x1a\x9a\x1f\x8e\x9f\x7e" "\x7a\xdd\xb2\xfd\x7e\xb9\xc7\x49\x71\xaf\xfb\xe1\x58\x2d\xae\xfb\xe1\xe2" "\x46\xc7\xc7\x9b\x7f\xb5\xda\x72\xac\x16\xdb\x7c\xea\xae\x95\x8f\x81\x8e" "\x8f\x5d\x87\x63\x20\x1f\xcb\x4d\xc7\xc0\xd6\x5e\xc7\xc0\xf0\xba\x91\xc6" "\x31\x30\xbc\xb4\xe6\xad\x2d\xc7\xc0\xcc\xb2\xcb\x0c\x87\xa1\xc6\x6d\x5d" "\xb8\xab\xfb\x31\x30\x35\x7f\xea\xec\xd4\xdc\x13\x9f\xbc\xf7\xc4\xa9\x43" "\xc7\x66\x8f\xcd\x9e\x9e\x99\xde\xbb\x7b\xd7\x9e\xdd\xbb\xf6\xec\x99\x3a" "\x7a\xe2\xe4\xec\x74\xf9\xe7\xa5\xed\xd2\x01\xb2\x31\x0c\xe7\x63\x70\x6b" "\x7c\xad\x49\xc7\xe0\xeb\xdb\xb6\x6d\x3e\x24\x17\xbf\x72\xf5\x9e\x07\xe3" "\x7d\xf2\x3c\x28\xee\xfb\xfb\xef\x2e\x16\x74\xe3\x70\x58\xe1\x18\x2f\xb6" "\xf9\xcc\xf6\x2b\x7f\x1e\xe4\xef\xfb\x4d\xcf\x83\xd1\xa6\xe7\x41\xc7\xd7" "\xd4\x0e\xcf\x83\xd1\x55\x3c\x0f\x8a\x6d\x2e\x6e\x5f\xdd\xf7\xcc\xd1\xa6" "\xff\x3b\xad\x61\xad\x5e\x0b\x37\x35\x1d\x03\xd7\xf3\xfb\x61\x71\x9b\x1f" "\x7a\xc3\xca\xaf\x85\x9b\xe3\xba\x3e\xfb\xc6\x4b\xfd\x7e\x38\xb2\xec\x18" "\x48\x77\x6b\x28\x3e\xf7\x8a\x53\xf2\xcf\x7b\xe3\xf7\xc7\xfd\xb2\xfc\xb8" "\xb8\xbd\x38\xe3\x86\x75\xe1\xfc\xdc\xec\xb9\x1d\x8f\x1f\x9a\x9f\x3f\x37" "\x13\xe2\xb8\x26\x6e\x6e\x7a\xac\xda\x8f\x97\x8d\x4d\xf7\x29\x2c\x3b\x5e" "\x86\x2f\xf9\x78\x39\xf0\xf7\xbf\xba\xfb\xf6\x0e\xa7\x6f\x8a\xfb\x6a\xfc" "\x9e\xee\x8f\x55\xb1\xcd\xee\xc9\xee\x8f\x55\xe3\xd5\xbd\x75\x7f\xae\x0b" "\xe5\xfe\x6c\x39\x75\x67\x88\xe3\x2a\xbb\xd6\xfb\xb3\xd3\x77\xb3\x62\x7f" "\xe6\x2c\xd1\x65\x7f\x16\xdb\x7c\xe6\xde\x2b\xff\x59\x30\xe7\x92\xa6\xd7" "\xbf\xb1\x5e\xaf\x7f\x23\x63\xa3\xe5\xeb\xdf\x48\xde\x1b\x63\x2d\xaf\x7f" "\xcb\x1f\x9a\x91\xc6\xca\x42\xb8\x78\xef\xea\x5e\xff\xc6\xe2\xff\xd7\xfa" "\xf5\xef\x96\x3e\x79\xfd\x2b\xf6\xd5\x87\x76\x74\x3f\x06\x8a\x6d\x3e\x3b" "\x75\xa9\xc7\xc0\x68\xd7\xd7\xbf\x3b\xe3\x1c\x8a\xeb\x79\x43\x4c\x0c\xe3" "\x4d\xb9\xff\xa5\xc6\xf9\x0b\xe5\x61\xda\xf4\x58\xf6\x3c\x6e\x46\x47\xc7" "\xe2\x71\x33\x9a\x6e\xb1\xf5\xb8\xd9\xb5\xec\x32\xc5\xb5\x15\xb7\xbd\x7d" "\xfa\xf2\x8e\x9b\xed\x77\xb6\x3e\x56\x2d\x3f\xb7\x54\xf0\xb8\x29\xf6\xd5" "\x5f\x4d\x77\x3f\x6e\x8a\x6d\x9e\x9b\xb9\xf2\xd7\x8e\x0d\xe9\xaf\x4d\xaf" "\x1d\xeb\x7a\x1d\x03\x63\x23\xeb\x8a\xf5\x8e\xe5\x83\xa0\x7c\xbd\x5b\xdc" "\x90\x8e\x81\x1d\xe1\x70\x38\x13\x4e\x86\x23\xf9\x32\xc5\xa3\x5c\xdc\xd6" "\xe4\xce\xd5\x1d\x03\xeb\xe2\xff\xd7\xfa\xb5\xe3\xb6\x3e\x39\x06\x8a\x7d" "\xf5\xc5\x9d\xdd\x8f\x81\x62\x9b\xef\xed\xba\xba\x3f\x3b\x6d\x8f\xa7\xe4" "\x6d\x9a\x7e\x76\x6a\xff\xfd\xc2\x4a\x99\xff\xf6\xd1\xa5\xeb\x6b\xdf\x6d" "\x57\x3b\xf3\x17\xeb\x7c\xe7\x0f\xde\x9b\x4f\xeb\x94\x21\x8a\x6d\x7e\xb2" "\xfb\x52\x73\x46\xf7\xfd\x74\x4f\x3c\xe5\x86\x0e\xfb\xa9\xfd\xf9\xb3\xd2" "\x31\x7d\x24\x5c\x9b\xfd\x74\x5b\x5c\xe7\xc9\x3d\xdd\x7f\x37\x55\x6c\x73" "\xcb\xde\x55\x1e\x4f\x07\x42\x08\xcf\xcf\x3c\xdf\xf8\x7d\x57\xfc\xfd\xee" "\x37\xcf\xff\xe0\x5b\x2d\xbf\xf7\xed\xf4\x3b\xe5\xe7\x67\x9e\x7f\x68\xea" "\x91\x1f\x5e\xca\xfa\x01\x00\xb8\x7c\x2f\x35\xfe\x5c\x58\x57\xfe\xac\xd9" "\xf4\x2f\xd6\xab\xf9\xf7\x7f\x00\x00\x00\x60\x20\xa4\xdc\x3f\x1c\x67\x26" "\xff\x03\x00\x00\x40\x65\xa4\xdc\x3f\x12\x67\x26\xff\x03\x00\x00\x40\x65" "\xa4\xdc\x3f\x1a\x67\x56\x93\xfc\x7f\xfc\xfe\x7d\xcf\xbc\xf8\x64\xc8\xef" "\x06\xb8\x18\xa5\xf3\xd3\x6e\x78\xf8\x2d\xe5\x76\xa9\xe3\xbd\x10\xbf\x9e" "\x58\x5c\x52\x9c\xfe\xf6\xaf\x8d\x3d\xf3\xb9\x27\x57\x77\xdb\xc3\x21\x84" "\x5f\x3d\xf4\x9a\x8e\xdb\x1f\x7f\x4b\x5a\x57\xe9\x6c\x5a\xe7\x9b\x5a\x4f" "\x5f\xe6\xb6\x3b\x56\x75\xfb\x8f\x3d\xba\xb4\x5d\xf3\xfb\x27\x5c\xdc\x57" "\x5e\x7f\xba\x3f\xab\x3d\x0c\x52\x57\xf9\x3b\x53\x3b\x1b\xd7\x3b\xf1\xc4" "\x4c\x63\x3e\xf7\x50\x68\xcc\x47\x16\x3e\xfb\x54\x79\xfd\xe5\xd7\x69\xfb" "\x0b\xbb\xca\xed\xff\x26\xbe\x69\xc9\x81\xa3\x43\x2d\x97\xdf\x1e\xd7\xb3" "\x2d\xce\x89\xf8\x9e\x32\x0f\x1f\x58\xda\x0f\xc5\x4c\x97\x7b\x66\xf3\xeb" "\xfe\xf5\xe6\x0f\x2c\xdd\x5e\xba\xdc\xd0\xd6\x97\x37\xee\xe6\x17\xff\xb8" "\xbc\xde\xf4\x1e\x51\x4f\xdf\x5c\x6e\x9f\xee\xf7\x4a\xeb\xff\x97\xcf\x7f" "\xe3\x99\x62\xfb\xc7\xef\xea\xbc\xfe\x27\x87\x3b\xaf\xff\x42\xbc\xde\x1f" "\xc7\xf9\xcb\xfd\xe5\xf6\xcd\xfb\xfc\x73\x4d\xeb\xff\xd3\xb8\xfe\x74\x7b" "\xe9\x72\x3b\xbe\xfa\xdd\x8e\xeb\x7f\xf6\x55\xe5\xf6\xcf\xc6\xe3\xe2\xcb" "\x71\xb6\xaf\xff\x6d\x7f\xf1\xda\x17\x3b\x3d\x5e\xe9\x76\x0e\x3c\x50\x5e" "\x2e\xdd\xfe\xf4\xff\xee\x6e\x5c\x2e\x5d\x5f\xba\xfe\xf6\xf5\x8f\x3f\x39" "\xd3\xb2\x3f\xda\xaf\xff\xb9\x17\xca\xeb\xd9\xff\xf1\x9f\x8f\x34\x6f\x9f" "\x4e\x4f\xb7\x93\x3c\xf6\x40\xeb\xf1\x3d\x14\x1f\xdf\x96\x1e\x79\x08\xe1" "\x1b\x7f\x16\x5a\xf6\x73\x78\x73\x79\xb9\x7f\x6e\x5b\x7f\xba\xbe\xb3\x0f" "\x74\x5e\xff\x3d\x6d\xeb\x3c\x3b\x74\x47\xe3\xf2\x4b\xf7\x67\x53\xcb\xfd" "\xfa\xd2\xdf\xed\xec\x78\x7f\xd3\x7a\x0e\xfc\xe3\xa6\x96\xfb\xf3\xf4\xbb" "\xe2\xfe\x7b\x61\xea\x7b\xc5\xf5\x5e\x78\x24\x1e\x8f\xf1\xfc\xff\xfb\x7e" "\x79\x7d\xed\xef\x65\xfa\xec\xbb\x5a\x5f\x6f\xd2\xf6\x5f\xde\x54\x3e\x6f" "\xd3\xf5\x4d\xb5\xad\xff\xe9\xb6\xf5\x2f\xdc\x51\xec\xbb\xde\xeb\x7f\xf0" "\x85\x72\xfd\xcf\xbe\x75\x7d\xcb\xfa\x0f\xbc\x3b\x1e\x4f\x0f\x96\xb3\xd7" "\xfa\x8f\xfd\xed\x4d\x2d\x97\xff\xca\xd7\xcb\xc7\xe3\xdc\x27\x26\x4f\x9f" "\x99\x3b\x7f\xe2\x48\xd3\x5e\x6d\x7e\x1e\xaf\x1f\xdf\xb0\xf1\x86\x1b\x5f" "\xf6\xf2\x9b\xe2\x6b\x69\xfb\xd7\x07\xcf\xcc\x1f\x9f\x3d\x37\x31\x3d\x31" "\x1d\xc2\xc4\x00\xbe\x65\xe0\x5a\xaf\xff\xab\x71\xfe\x4f\x39\x16\xae\xfe" "\x2d\x94\x7e\xf8\xf3\xf2\xb8\xfb\xc2\x7b\xca\xef\x5b\xaf\xff\x45\xf9\xf5" "\xd3\xf1\xf4\xc7\xe2\xe3\x99\xbe\x3f\x7e\xe9\xaf\xc7\x5a\x8e\xd7\xf6\xc7" "\x7d\xe1\xad\xe5\xbc\xd2\xf5\xbf\x31\xae\x63\xb5\x5e\xf5\xf9\xff\xba\x63" "\x55\x1b\x5e\xf8\xf0\x77\xce\xff\xd3\x9f\xfc\xa4\xfd\xe7\x82\x74\x7f\xce" "\xbe\x72\xbc\x71\xff\xbe\xb8\xe5\xd6\xc6\x79\x43\xcf\x95\xe7\xb7\xbf\x5e" "\xf5\xf2\x9f\xaf\x6c\x7d\x5e\xff\x68\x74\xba\x31\xbf\x1d\xf7\xeb\x62\x7c" "\x67\xe6\xad\xb7\x96\xb7\xd7\x7e\xfd\xe9\xbd\x49\xbe\xf0\xbe\xf2\xf9\x9b" "\x7e\x92\x4b\x97\x0f\x6d\xef\x27\xb2\x69\xa4\xf5\x7e\x5c\xe9\xfa\x7f\x14" "\x7f\x8e\xf9\xee\x6d\xad\xaf\x7f\xe9\xf8\xf8\xf6\x93\x6d\xef\xe6\xbc\x29" "\x0c\x15\x4b\x58\x88\xaf\x0f\x61\xa1\x3c\x3f\x6d\x95\xf6\xf7\x17\x2e\xde" "\xda\xf1\xf6\xd2\xfb\xf0\x84\x85\x57\x5f\xca\x32\x57\x34\xf7\xc4\xdc\xd4" "\xc9\x13\xa7\xcf\x3f\x3e\x35\x3f\x3b\x37\x3f\x35\xf7\xc4\x27\x0f\x9e\x3a" "\x73\xfe\xf4\xfc\xc1\xc6\x7b\x97\x1e\xfc\x68\xaf\xcb\x2f\x3d\xbf\x37\x36" "\x9e\xdf\x47\x66\xf7\xee\x0e\x8d\x67\xfb\x99\x72\xac\xb1\xeb\xbd\xfe\xb3" "\x8f\x1e\x3e\x72\xdf\xf4\xdd\x47\x66\x8f\x1e\x3a\x7f\x74\xfe\xd1\xb3\xb3" "\xe7\x8e\x1d\x9e\x9b\x3b\x3c\x7b\x64\xee\xee\x43\x47\x8f\xce\x7e\xa2\xd7" "\xe5\x4f\x1c\xd9\x3f\xb3\x73\xdf\xae\xfb\x76\x4e\x1e\x3b\x71\x64\xff\xfd" "\xfb\xf6\xed\xda\x37\x79\xe2\xf4\x99\x62\x19\xe5\xa2\x7a\xd8\x3b\xfd\xb1" "\xc9\xd3\xe7\x0e\x36\x2e\x32\xb7\x7f\xf7\xbe\x99\x3d\x7b\x76\x4f\x4f\x9e" "\x3a\x73\x64\x76\xff\x7d\xd3\xd3\x93\xe7\x7b\x5d\xbe\xf1\xbd\x69\xb2\xb8" "\xf4\xc7\x27\xcf\xcd\x9e\x3c\x34\x7f\xe2\xd4\xec\xe4\xdc\x89\x4f\xce\xee" "\x9f\xd9\xb7\x77\xef\xce\x9e\xef\xfe\x78\xea\xec\xd1\xb9\x89\xa9\x73\xe7" "\x4f\x4f\x9d\x9f\x9b\x3d\x37\x55\xde\x97\x89\xf9\xc6\xc9\xc5\xf7\xbe\x5e" "\x97\xa7\x1e\xe6\xce\xc4\xd7\xbb\x36\x43\xf1\xa7\xf3\x0f\xde\xb3\x37\xbf" "\x3f\x6e\xe1\x6b\x9f\x5e\xf1\xaa\xca\x4d\x5a\x7f\x3c\x0d\x3f\x8d\xef\x05" "\x95\xbe\xbf\xf5\xfa\x3a\xe5\xfe\xb1\x38\xb3\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x94\xfb\xe3\x1b\xff\x2f\x9d\x21\xff\x03\x00\x00\x40\x65\xa4\xdc\xbf" "\x3e\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9\xbf\x4c\xfe\xe3\xf9\xe3\xdf" "\xeb\x92\xff\xaf\x56\xff\xff\xd3\xfa\xff\x0d\xfa\xff\xfa\xff\x41\xff\x3f" "\xd3\xff\xd7\xff\x0f\xfa\xff\xfa\xff\x3d\xe8\xff\xeb\xff\x0f\xf2\xfa\xf5" "\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x31\xf7\x87\x0d\x21\xf8\xf7\x7f\x00\x00" "\x00\xa8\xa8\x94\xfb\x37\xc6\x99\xc9\xff\x00\x00\x00\x50\x19\x29\xf7\xdf" "\x10\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\x7f\x63\x9c\x59\x4d\xf2\xbf" "\xcf\xff\xd7\xff\xd7\xff\xef\xd6\xff\x4f\xdb\xea\xff\x07\xfd\xff\x7e\xe8" "\xff\x6f\xfb\x6f\xfd\xff\x65\xf4\xff\xf5\xff\x83\xfe\xff\x65\xbb\xde\xfd" "\xf9\x41\x5f\x7f\x1f\xf6\xff\x37\xe8\xff\xd3\x6f\xfa\xad\xff\x9f\x72\xff" "\xcb\xe2\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\x7f\x79\x9c\x99\xfc" "\x0f\x00\x00\x00\x95\x91\x72\xff\x4d\x71\x66\xf2\x3f\x00\x00\x00\x54\x46" "\xca\xfd\x9b\xe2\xcc\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\xbf\xfe" "\xff\xc0\xf4\xff\x7d\xfe\x7f\x07\xfa\xff\xfa\xff\x41\xff\xff\xb2\x5d\xef" "\xfe\xfc\xa0\xaf\xbf\x0f\xfb\xff\x3e\xff\x9f\xbe\xd3\x6f\xfd\xff\x94\xfb" "\x7f\x2d\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe\x57\xc4\x99\xc9" "\xff\x00\x00\x00\x50\x19\x29\xf7\xdf\x1c\x67\x26\xff\x03\x00\x00\x40\x65" "\xa4\xdc\x7f\x4b\x9c\x59\x4d\xf2\x7f\x3d\xfb\xff\x3f\x0e\x21\xe8\xff\x07" "\xfd\x7f\xfd\xff\xb6\x75\xea\xff\xeb\xff\xaf\x05\xfd\x7f\xfd\xff\x6e\xf4" "\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x94\xfb\x5f" "\x19\x67\x56\x93\xfc\x0f\x00\x00\x00\x75\x90\x72\xff\xad\x71\x66\xf2\x3f" "\x00\x00\x00\x54\x46\xca\xfd\xaf\x8a\x33\x93\xff\x01\x00\x00\xa0\x32\x52" "\xee\xbf\x2d\xce\xac\x26\xf9\xbf\x9e\xfd\x7f\x9f\xff\xaf\xff\x5f\xd2\xff" "\x6f\x5d\xa7\xfe\xbf\xfe\xff\x5a\xa8\x75\xff\xff\x57\xc7\xf5\xff\x7b\xd0" "\xff\xd7\xff\x1f\xe4\xf5\xeb\xff\xeb\xff\xd3\x5b\xbf\xf5\xff\x53\xee\x7f" "\x75\x9c\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xca\xfd\xb7\xc7\x99\xc9\xff" "\x00\x00\x00\x50\x19\x29\xf7\xbf\x26\xce\x4c\xfe\x07\x00\x00\x80\xca\x48" "\xb9\x7f\x73\x9c\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xff\x5a\x1a\xac\xfe\xff\xf0\x8a\xe7\xf8\xfc\xff\x92\xfe\x7f\xab\xab" "\xd7\xff\x5f\x58\x5a\x80\xfe\xff\xc0\xac\x5f\xff\x5f\xff\x9f\xde\xfa\xad" "\xff\x9f\x72\xff\x6b\xe3\xcc\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\x7f" "\x5d\x9c\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff\x1d\x71\x66\xf2\x3f\x00" "\x00\x00\x54\x46\xca\xfd\x13\x71\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\x6b\x69\xb0\xfa\xff\x2b\xd3\xff\x2f\xe9\xff\xb7" "\xf2\xf9\xff\xfa\xff\xfa\xff\xfa\xff\x74\xd7\x6f\xfd\xff\x94\xfb\xb7\xc4" "\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\xa4\xdc\xbf\x35\xce\x4c\xfe\x07\x00" "\x00\x80\xca\x48\xb9\xff\xce\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe" "\x6d\x71\x66\x95\xc9\xff\x2f\xeb\x7a\xae\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xfe\xff\x5a\xd2\xff\xd7\xff\xef\x46\xff\x5f\xff\x7f\x90\xd7\xaf" "\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x4f\xb9\xff\xae\x38\xb3\xca\xe4\x7f\x00" "\x00\x00\x20\xe5\xfe\xbb\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\x5f" "\x1f\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\xbf\x3d\xce\xac\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\x7f\x80\xfb\xff\x23\xfa\xff\x41\xff\xbf\xef\xe9\xff" "\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb" "\xff\xa7\xdc\xff\x86\x38\xb3\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x94\xfb\xdf" "\x18\x67\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\x7f\x4f\x9c\x99\xfc\x0f\x00" "\x00\x00\x95\x91\x72\xff\x64\x9c\x59\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xff" "\x00\xf7\xff\x7d\xfe\x7f\xcb\xfa\xf5\xff\xfb\x93\xfe\xff\xa0\xf4\xff\xc7" "\x5a\xbf\xd4\xff\x5f\x15\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xeb\xb7\xfe" "\x7f\xca\xfd\xf7\xc6\x99\xd5\x24\xff\x03\x00\x00\x40\x1d\xa4\xdc\xbf\x23" "\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9\x7f\x2a\xce\x4c\xfe\x07\x00\x00" "\x80\xca\x48\xb9\x7f\x3a\xce\xac\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff" "\x5f\xff\x5f\xff\x7f\x2d\xe9\xff\x0f\x4a\xff\xbf\x8d\xfe\xff\xaa\xe8\xff" "\xeb\xff\xeb\xff\xeb\xff\xd3\x5d\xbf\xf5\xff\x53\xee\x9f\x89\x33\xab\x49" "\xfe\x07\x00\x00\x80\x3a\x48\xb9\x7f\x67\x9c\x99\xfc\x0f\x00\x00\x00\x95" "\x91\x72\xff\xae\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xdd\x71\x66" "\x35\xc9\xff\x03\xd2\xff\xdf\x91\x0b\x50\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x03\x45\xff\x5f\xff\xbf\x1b\xfd\x7f\xfd\xff\x41\x5e\xbf\xfe\xbf" "\xfe\x3f\xad\x86\x3b\x9c\xd6\x6f\xfd\xff\x94\xfb\xf7\xc4\x99\xd5\x24\xff" "\x03\x00\x00\x40\x1d\xa4\xdc\xbf\x37\xce\x6c\x29\xff\x6f\xba\xf6\xab\x02" "\x00\x00\x00\xae\xa6\x94\xfb\xef\x8b\x33\xf3\xef\xff\x00\x00\x00\x50\x19" "\x29\xf7\xdf\x1f\x67\x56\x93\xfc\x3f\x20\xfd\x7f\x9f\xff\xaf\xff\xaf\xff" "\xdf\x44\xff\x5f\xff\x7f\x90\xe8\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8" "\xeb\xd7\xff\xd7\xff\xa7\xb7\x7e\xeb\xff\xa7\xdc\xbf\x2f\xce\xac\x26\xf9" "\x1f\x00\x00\x00\xea\x20\xe5\xfe\x37\xc5\x99\xc9\xff\x00\x00\x00\x50\x19" "\x29\xf7\x3f\x10\x67\x26\xff\x03\x00\x00\xc0\x40\xe9\xf4\x39\x84\x49\xca" "\xfd\x6f\x8e\x33\xab\x49\xfe\xd7\xff\xaf\x7a\xff\x7f\x71\xbd\xfe\xbf\xfe" "\xbf\xfe\x7f\xf7\xf5\xeb\xff\xaf\x2d\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff" "\x07\x79\xfd\xfa\xff\xfa\xff\xf4\xd6\x6f\xfd\xff\x94\xfb\xf7\xc7\x99\xd5" "\x24\xff\x03\x00\x00\x40\x1d\xa4\xdc\xff\x96\x38\x33\xf9\x1f\x00\x00\x00" "\x2a\x23\xe5\xfe\xb7\xc6\x99\xc9\xff\x00\x00\x00\x50\x19\x29\xf7\x1f\x88" "\x33\xab\x49\xfe\xd7\xff\xaf\x7a\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xf7\x5a" "\xbf\xfe\xff\xda\xd2\xff\xd7\xff\xef\x46\xff\x7f\x30\xfb\xff\xf1\xc7\x16" "\xfd\xff\x3e\xea\xff\x17\xc7\x90\xfe\x3f\xfd\xa8\xdf\xfa\xff\x29\xf7\xbf" "\x2d\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe\xb7\xc7\x99\xc9\xff" "\x00\x00\x00\x50\x19\x29\xf7\xbf\x23\xce\x4c\xfe\x07\x00\x00\x80\xca\x48" "\xb9\xff\x9d\x71\x66\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x83\xd9" "\xff\x1f\xd3\xff\x1f\x10\xfa\xff\x6b\xd6\xff\x6f\xbc\x14\xea\xff\x97\xf4" "\xff\x2f\xcf\xf5\xee\xcf\x0f\xfa\xfa\xfb\xa9\xff\xef\xf3\xff\xe9\x57\xfd" "\xd6\xff\x4f\xb9\xff\x5d\x71\x66\x35\xc9\xff\x00\x00\x00\x50\x07\x29\xf7" "\xbf\x3b\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9\xff\xd7\xe3\xcc\xe4\x7f" "\x00\x00\x00\xa8\x8c\x94\xfb\x1f\x8c\x33\xab\x49\xfe\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\xbf\xc4\xfe\xff\xb2\x6e\xac\xcf\xff\x2f\xe9\xff\x77\xa6\xff" "\xdf\x5f\x9f\xff\x1f\x82\xfe\x7f\xd0\xff\xcf\xae\x77\x7f\x7e\xd0\xd7\xaf" "\xff\xaf\xff\x4f\x6f\xfd\xd6\xff\x4f\xb9\xff\x37\xe2\xcc\x6a\x92\xff\x01" "\x00\x00\xa0\x0e\x52\xee\x7f\x28\xce\x4c\xfe\x07\x00\x00\x80\xca\x48\xb9" "\xff\x3d\x71\x66\xf2\x3f\x00\x00\x00\x0c\x98\x75\x2b\x9e\x93\x72\xff\x6f" "\xc6\x99\xd5\x24\xff\x0f\x5e\xff\x7f\x62\x20\xfb\xff\xc3\xf9\xfa\xf5\xff" "\xf5\xff\x07\xbe\xff\xdf\x27\x9f\xff\xaf\xff\x3f\x28\xf4\xff\xfb\xab\xff" "\xef\xf3\xff\x5b\xef\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x6b\xab\xdf\xfa" "\xff\x29\xf7\xff\x56\x9c\x59\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xca\xfd\xef" "\x8d\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\xff\xed\x38\x33\xf9\x1f\x00" "\x00\x00\x2a\x23\xe5\xfe\x87\xe3\xcc\x6a\x92\xff\xaf\x76\xff\xbf\xfd\xf2" "\xdd\xf8\xfc\x7f\xfd\xff\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x7f\x85\xf4\xff" "\xf5\xff\x83\xfe\xff\x65\xbb\xde\xfd\xf9\x01\x5e\x7f\xfa\x51\x44\xff\x5f" "\xff\x9f\x1e\xfa\xad\xff\x9f\x72\xff\xef\xc4\x99\xd5\x24\xff\x03\x00\x00" "\x40\x1d\xa4\xdc\xff\x48\x9c\x99\xfc\x0f\x00\x00\x00\x7d\xea\xf8\x25\x5f" "\x22\xe5\xfe\xf7\xc5\x99\xc9\xff\x00\x00\x00\x50\x19\x29\xf7\xbf\x3f\xce" "\xac\x26\xf9\x7f\xf0\x3e\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f" "\x90\xe8\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xf7\xf9\xff\xfa\xff" "\xf4\xd6\x6f\xfd\xff\x94\xfb\x1f\x8d\x33\xab\x49\xfe\x07\x00\x00\x80\x3a" "\x48\xb9\xff\x03\x71\x66\xf2\x3f\x00\x00\x00\x54\x46\xca\xfd\xbf\x1b\x67" "\x26\xff\x03\x00\x00\x40\x65\xa4\xdc\xff\x7b\x71\x66\x35\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x6b\x49\xff\x7f\x79\xff\xbf\x78" "\x0d\xd3\xff\x2f\xe9\xff\xeb\xff\x0f\xf2\xfa\xf5\xff\xf5\xff\xe9\xad\xdf" "\xfa\xff\x29\xf7\x7f\x30\xce\xac\x26\xf9\x1f\x00\x00\x00\xea\x20\xe5\xfe" "\xdf\x8f\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\xff\x83\x38\x33\xf9\x1f" "\x00\x00\x00\x2a\x23\xe5\xfe\x0f\xc5\x99\xd5\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x25\xfd\x7f\x9f\xff\xdf\x8d\xfe\xbf\xfe" "\xff\x20\xaf\x5f\xff\x5f\xff\x9f\xde\xfa\xad\xff\x9f\x72\xff\x87\xe3\xcc" "\x6a\x92\xff\x01\x00\x00\xa0\x0e\x52\xee\xff\xc3\x38\x33\xf9\x1f\x00\x00" "\x00\x2a\x23\xe5\xfe\x83\x71\x66\xf2\x3f\x00\x00\x00\x54\x46\xca\xfd\x8f" "\xc5\x99\xd5\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf" "\x25\xfd\x7f\xfd\xff\x6e\xf4\xff\xf5\xff\x07\x79\xfd\xfa\xff\xfa\xff\xf4" "\xd6\x6f\xfd\xff\x94\xfb\x0f\xc5\x99\x1d\x68\xbd\x19\x00\x00\x00\x60\x70" "\xa5\xdc\xff\x91\x38\xb3\x9a\xfc\xfb\x3f\x00\x00\x00\xd4\x41\xca\xfd\x87" "\xe3\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\x8f\xc4\x99\xd5\x24\xff\xaf" "\xd0\xff\x1f\x4b\xe7\xeb\xff\xaf\x8e\xfe\x7f\xe7\xf5\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\x77\xa3\xff\xaf\xff\x3f\xc8\xeb\xd7\xff\xd7" "\xff\xa7\xb7\x7e\xeb\xff\xa7\xdc\x3f\x1b\x67\x56\x93\xfc\x0f\x00\x00\x00" "\x75\x90\x72\xff\xd1\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\x63\x71" "\x66\xf2\x3f\x00\x00\x00\x54\x46\xca\xfd\xc7\xe3\xcc\x6a\x92\xff\x7d\xfe" "\xbf\xfe\xbf\xfe\x7f\x6d\xfb\xff\xdf\xff\x66\xdb\x3a\xf5\xff\xf5\xff\xd7" "\x82\xfe\xbf\xfe\x7f\x37\x55\xec\xff\xa7\xdb\xd3\xff\xd7\xff\xef\x75\x79" "\xfd\x7f\xea\xa0\xdf\xfa\xff\x29\xf7\x9f\x88\x33\xab\x49\xfe\x07\x00\x00" "\x80\x3a\x48\xb9\xff\xa3\x71\x66\xf2\x3f\x00\x00\x00\x54\x46\xca\xfd\x1f" "\x8b\x33\x93\xff\x01\x00\x00\xa0\x32\x52\xee\x3f\x19\x67\x56\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\x5f\xdb\xfe\xff\xea\x3e\xff\x7f\xc3\xd2\xed\xea\xff" "\xeb\xff\x5f\x0e\xfd\x7f\xfd\xff\x6e\xaa\xd8\xff\x0f\x3e\xff\x5f\xff\x5f" "\xff\x5f\xff\x9f\xac\xdf\xfa\xff\x29\xf7\x9f\x8a\x33\xab\x49\xfe\x07\x00" "\x00\x80\x3a\x48\xb9\xff\x74\x9c\x99\xfc\x0f\x00\x00\x00\x95\x91\x72\xff" "\x99\x38\x33\xf9\x1f\x00\x00\x00\x2a\x23\xe5\xfe\xb3\x71\x66\x35\xc9\xff" "\xfa\xff\x97\xd6\xff\x1f\x5a\xa1\x1b\xa8\xff\xdf\x79\xfd\xfa\xff\x15\xe8" "\xff\x37\xd1\xff\xd7\xff\xbf\x1c\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\x0f" "\xf2\xfa\xf5\xff\xf5\xff\xe9\xad\xdf\xfa\xff\x29\xf7\xff\x51\x9c\x59\x4d" "\xf2\x3f\x00\x00\x00\xd4\x41\xca\xfd\xe7\xe2\xcc\xe4\x7f\x00\x00\x00\xa8" "\x8c\x94\xfb\xe7\xe2\xcc\xe4\x7f\x00\x00\x00\xa8\x8c\x94\xfb\xe7\xe3\xcc" "\x6a\x92\xff\xf5\xff\x7d\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x5a\xfa" "\x7f\xf6\xee\x73\x49\xb3\xba\xda\xe3\xf8\x43\xe3\xc8\x50\xe8\x3d\x4c\xf9" "\xd6\x57\x5e\x81\xde\x81\xd7\x60\x95\xe5\x1d\x98\x13\x98\x31\x2b\xe6\x9c" "\x30\xa7\x31\x2b\xe6\x9c\x73\xc6\x9c\x45\x51\xcc\xb1\x4a\x6b\xba\xd7\x5a" "\x30\x43\xf7\xde\x3d\x33\xfd\x74\xef\xfd\x5f\x9f\xcf\x0b\x16\xa7\xe1\x14" "\x7f\x0a\xa8\x3a\xbf\x9a\xf3\xad\xad\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7" "\xfc\x7e\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\x3f\x30\x6e\x69\xb2\xff" "\x01\x00\x00\xa0\x83\xdc\xfd\x0f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee" "\xfe\x07\xc7\x2d\x87\xd9\xff\x57\x6d\xeb\x55\x00\x00\x00\xc0\x51\xca\xdd" "\xff\x90\xb8\xa5\xc9\xaf\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xbf\x4d\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xef\xd7\xff\xeb\xff\x99" "\xb7\xb4\xfe\x3f\x77\xff\x43\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd" "\xff\xb0\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x78\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x3f\x22\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xdf\x26\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xf7" "\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x91\x71\x4b\x93\xfd\x0f\x00" "\x00\x00\x1d\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f" "\x3a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xaf\x8d\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xbf\xc2\xfe\xff\x2e\xfa\x7f\xfd\xff\x7a\xe8\xff\xf5\xff" "\x53\xf4\xff\xfa\xff\x35\xbf\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd" "\xd7\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x31\x71\x8b\xfd\x0f" "\x00\x00\x00\xab\x73\x8f\x07\xec\xff\xf3\xdc\xfd\x8f\x8d\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\xc7\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f" "\x61\xff\xef\xfb\xff\xfa\xff\x15\xd1\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x6b" "\x7e\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x1f\x1f\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\x27\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x13\xe3\x16\xfb\x1f\x00\x00\x00\xd6\xee\x54\xfe\x4e\xee\xfe\x27\xc5" "\x2d\x4d\xf6\xbf\xfe\xff\xf8\xfa\xff\x2b\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\x7f\xe4\xf4\xff\xfa\xff\x8d\xfe\xff\x92\x9d\x74\x3f\xbf\xf6\xf7\xeb" "\xff\xf5\xff\xcc\xdb\x7a\xff\x7f\xdf\xeb\x77\xef\x61\xfb\xff\xdc\xfd\xd7" "\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xc9\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\x94\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f" "\x6a\xdc\xd2\x64\xff\xeb\xff\x7d\xff\xff\xf6\xfe\xff\x7f\x57\xe8\xff\xf5" "\xff\xfa\xff\xdb\x7f\xae\xff\x3f\x1a\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f" "\xcd\xef\xd7\xff\xeb\xff\x99\xb7\xf5\xfe\x7f\xa6\xf7\xbf\xf0\x7f\xce\xdd" "\xff\xb4\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x3d\x6e\xb1\xff" "\x01\x00\x00\x60\x18\xb9\xfb\x9f\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\xcf\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\xdf\xf7\xff\xf5\xff\xfa\x7f\xfd" "\xff\x36\xe9\xff\x17\xdb\xff\x5f\xf8\x9f\xde\xf9\xf4\xff\x87\xa2\xff\xd7" "\xff\x1f\xd4\xff\xdf\xfb\x10\xef\xd7\xff\xd3\xc1\xd2\xfa\xff\xdc\xfd\xcf" "\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xb3\xe3\x16\xfb\x1f\x00" "\x00\x00\x86\x91\xbb\xff\x86\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f" "\x4e\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf9\xfd\xff\x4e\xcb" "\xfe\xff\xdc\xcf\xf4\xff\xdb\xa1\xff\x5f\x6c\xff\x3f\x4d\xff\x7f\x28\xfa" "\x7f\xfd\xbf\xef\xff\xeb\xff\x99\xb6\xb4\xfe\x3f\x77\xff\x73\xe3\x96\x26" "\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xbc\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\x7f\x7e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x20\x6e\xd9" "\x39\xa9\x17\x1d\x2f\xfd\xbf\xfe\x5f\xff\xaf\xff\xbf\xac\xef\xff\x5f\x39" "\x46\xff\xef\xfb\xff\xdb\xa3\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\x7e" "\xfd\xbf\xfe\x9f\x79\x4b\xeb\xff\x73\xf7\xbf\x30\x6e\xf1\xeb\xff\x00\x00" "\x00\x30\x86\x9d\x4d\xed\xfe\x17\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x8b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x25\x71\x4b\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x97\xd5\xff\x0f\xf2\xfd\x7f\xfd\xff\xf6" "\xe8\xff\xf5\xff\x53\x0e\xdb\xff\x6f\xf4\xff\xf5\xf7\xa2\xff\x5f\xce\xfb" "\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\xff\xd2\xb8\xa5\xc9\xfe\x07\x00" "\x00\x80\x0e\x72\xf7\xbf\x2c\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f" "\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x88\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\x49\xff\xaf\xff\x9f\xe2\xfb" "\xff\xfa\xff\x35\xbf\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\xaf\x8c" "\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xab\xe2\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\xd5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x9a" "\xb8\xe5\xc2\xfd\xbf\x73\x9c\xaf\x3a\x3e\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\xd7\xff\x6f\x93\xfe\x5f\xff\x3f\x45\xff\xbf\x7f\xff\x7f\xfa\x80\xbf" "\x9e\xfe\x7f\x59\xef\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x8d\x71" "\x8b\x5f\xff\x07\x00\x00\x80\x61\xe4\xee\x7f\x6d\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xbf\x2e\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x1f" "\xb7\x34\xd9\xff\x07\xf5\xff\xb7\x5d\xb3\xf7\xc7\xf5\xff\x87\xa3\xff\xdf" "\xff\xfd\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\xd1\xff\xfb\xfe" "\xff\x9a\xdf\xaf\xff\xd7\xff\x33\x6f\x69\xfd\x7f\xee\xfe\x37\xc4\x2d\x4d" "\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xa6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x73\xdc\xd2" "\x64\xff\x1f\xfd\xf7\xff\xcf\xe8\xff\xf5\xff\xfa\xff\xb8\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x9f\xa6\xff\xd7\xff\xaf\xf9\xfd\xfa\x7f\xfd\x3f\xf3" "\x96\xd6\xff\xe7\xee\x7f\x4b\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb" "\xdf\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x6f\x8b\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\xb7\xc7\x2d\x4d\xf6\xff\xd1\xf7\xff\xbe\xff\xaf" "\xff\xbf\xc8\xfe\x7f\x47\xff\x9f\xf4\xff\xf1\xcf\x55\xff\xaf\xff\xbf\x08" "\x6b\xed\xff\x77\xf4\xff\xbb\xf4\xff\xfa\xff\x35\xbf\x5f\xff\xaf\xff\x67" "\xde\xd2\xfa\xff\xdc\xfd\x67\x77\xa7\x5e\xbf\xfd\x0f\x00\x00\x00\x1d\x9c" "\xdd\xfd\xed\xe9\xcd\x3b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x9d" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xae\xb8\xa5\xc9\xfe\xd7\xff" "\xeb\xff\x4f\xbc\xff\xf7\xfd\xff\xa2\xff\x8f\x7f\xae\x07\xf5\xff\x57\xc7" "\xef\xe8\xff\x57\x45\xff\xef\xfb\xff\x53\xf4\xff\xfa\xff\x35\xbf\x5f\xff" "\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\xef\x8e\x5b\x9a\xec\x7f\x00\x00\x00" "\xe8\x20\x77\xff\x7b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x11\xbb\x7f\xef\xff" "\xf9\xdd\xfe\x07\x00\x00\x80\x21\xbd\x77\xf7\xb7\xa7\x37\xef\x8b\x5b\x9a" "\xec\xff\xc6\xfd\xff\x99\xcb\xed\xff\xaf\xbe\xc3\xef\xeb\xff\xf7\x7f\xff" "\x51\xf5\xff\xf7\xbc\xdb\xde\x9f\xdb\xb4\xff\x3f\x7b\xe1\xbf\x7b\x6d\xfb" "\x7f\xdf\xff\xd7\xff\xef\x43\xff\xaf\xff\xdf\xe8\xff\x2f\xd9\x49\xf7\xf3" "\x6b\x7f\xff\x72\xfa\xff\xf8\xc1\xb5\xfa\x7f\x96\x67\x69\xfd\x7f\xee\xfe" "\xf7\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x03\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\x7f\x30\x6e\x69\xb2\xff\x1b\xf7\xff\x2b\xfe\xfe\xff\x7d\xee\xd0\xff\xdf" "\xef\xd6\x78\xc1\xd0\xfd\xbf\xef\xff\xfb\xfe\xff\x46\xff\xaf\xff\x3f\x80" "\xfe\x7f\x80\xfe\xff\xdc\xff\xf9\xa5\xff\xaf\xbf\xbe\xfe\x7f\x3d\xef\x5f" "\x4e\xff\xef\xfb\xff\x2c\xd7\xd2\xfa\xff\xdc\xfd\x1f\x8a\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x87\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x23\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd1\xb8\xa5\xc9\xfe" "\xd7\xff\xaf\xb1\xff\xef\xf7\xfd\x7f\xfd\xbf\xfe\x7f\xa3\xff\xd7\xff\x1f" "\x40\xff\x3f\x40\xff\xef\xfb\xff\xfa\xff\x95\xbe\x5f\xff\xaf\xff\x67\xde" "\xd2\xfa\xff\xdc\xfd\x1f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\xc7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x13\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xc9\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xb7\xd5\xff" "\x9f\xfb\x8b\xe8\xff\x9b\xf4\xff\xd7\x5d\x95\x7f\xbe\xfe\x5f\xff\x7f\x27" "\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xef\xd7\xff\xeb\xff\x99\xb7\xb4" "\xfe\x3f\x77\xff\xa7\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe9" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x4c\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\x7f\x36\x6e\xb8\xd7\xdd\x4f\xee\x49\x47\xeb\xd4\x01\x3f" "\x8f\x5c\x57\xff\xaf\xff\xf7\xfd\x7f\xfd\xbf\xef\xff\xeb\xff\xb7\x49\xff" "\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xfd\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff" "\xe7\xee\xff\x5c\xdc\xe2\xd7\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f\x1f\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x88\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x2f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f\x6d\xff\x7f" "\xb5\xfe\xff\xfc\xf7\xeb\xff\x97\x49\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf" "\xf9\xfd\x87\xee\xff\x6f\xde\xff\x7f\x5f\xff\x4f\x07\x4b\xeb\xff\x73\xf7" "\x7f\x29\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x5f\x8e\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\xaf\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x57\xe3\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xaf\xb6\xff\xf7\xfd\xff" "\x0b\xde\xaf\xff\x5f\x26\xfd\xbf\xfe\x7f\xcf\x2d\xfb\xfe\x54\xff\xaf\xff" "\x5f\xf3\xfb\x7d\xff\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\xbf\x16\xb7\x34" "\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xaf\xc7\x2d\xf6\x3f\x00\x00\x00\x0c" "\x23\x77\xff\x37\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x9b\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x36\xe9\xff\xf5" "\xff\x53\xf4\xff\xfa\xff\x35\xbf\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc" "\xfd\xdf\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xb7\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\x3b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8" "\xdd\xff\xdd\xb8\xa5\xc9\xfe\x1f\xb9\xff\x9f\xfa\xd3\xf4\xff\x7b\xf4\xff" "\xfa\xff\x8d\xfe\x5f\xff\xbf\x65\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd" "\xef\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\xf7\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xfd\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee" "\xbf\x39\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x10\xb7\x34\xd9\xff" "\x23\xf7\xff\x53\xf4\xff\x7b\xf4\xff\xfa\xff\x8d\xfe\x5f\xff\xbf\x65\xfa" "\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xef\xd7\xff\xeb\xff\x99\x77\x42\xfd" "\xff\xa9\xcd\x01\xfd\x7f\xee\xfe\x1f\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x47\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xe3\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x49\xdc\x32\xce\xfe\xbf\xff\x4d\x13" "\x7f\x50\xff\x7f\xe4\xfd\xff\xee\xbf\x44\xfa\x7f\xfd\xff\x46\xff\xaf\xff" "\xd7\xff\xef\xd2\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x6b\x7e\xbf\xfe\x5f\xff" "\xcf\xbc\xa5\x7d\xff\x3f\x77\xff\x4f\xe3\x96\x71\xf6\x3f\x00\x00\x00\xb4" "\x97\xbb\xff\x67\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xf3\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x45\xdc\xd2\x64\xff\xeb\xff\x7d\xff" "\x5f\xff\xdf\xaa\xff\xbf\x72\xa3\xff\xd7\xff\x1f\x33\xfd\xbf\xfe\x7f\x8a" "\xfe\x5f\xff\xbf\xe6\xf7\xeb\xff\xf5\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x97" "\x71\x4b\x0e\xbf\x6b\x2e\xe5\xef\x12\x00\x00\x00\x58\x92\xdc\xfd\xbf\x8a" "\x5b\x9a\xfc\xfa\x3f\x00\x00\x00\x74\x90\xbb\xff\xd7\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\x9b\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xad" "\xfa\x7f\xdf\xff\xd7\xff\x1f\x3b\xfd\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6" "\xf7\x67\xff\x9f\xff\xde\xe9\xff\xf5\xff\xdc\xd9\xd2\xfa\xff\xdc\xfd\xbf" "\x8d\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x2d\x71\x8b\xfd\x0f\x00" "\x00\x00\xc3\xc8\xdd\xff\xbb\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\x7d\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\x4d" "\xfa\x7f\xfd\xff\x14\xfd\xbf\xfe\x7f\xcd\xef\xf7\xfd\x7f\xfd\x3f\xf3\x96" "\xd6\xff\xe7\xee\xbf\x35\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x7f" "\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x3f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x6d\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x8f\xd5\xff\xef" "\xfd\x37\x7c\xe6\x2a\xfd\xbf\xfe\x5f\xff\xbf\x14\xfa\x7f\xfd\xff\x14\xfd" "\xbf\xfe\x7f\xcd\xef\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x9f\xe2" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe7\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xff\x4b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x35" "\x6e\x69\xb2\xff\xf5\xff\xfa\xff\x8b\xef\xff\x4f\xd5\xdf\xf7\xf2\xfa\x7f" "\xdf\xff\xd7\xff\xeb\xff\x97\x66\xdc\xfe\xff\xae\xfa\xff\xfd\xfa\xff\xd3" "\x17\xf7\xfe\xee\xfd\xff\x0d\x37\xee\xfd\x58\xff\xbf\xce\xf7\xeb\xff\xf5" "\xff\xcc\x5b\x5a\xff\x9f\xbb\xff\x6f\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d" "\xe4\xee\xff\x7b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x23\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\xff\x19\xb7\x34\xd9\xff\xfa\x7f\xfd\xff" "\x58\xdf\xff\xd7\xff\xeb\xff\xf5\xff\x4b\x33\x6e\xff\xef\xfb\xff\xbe\xff" "\xef\xfb\xff\xfa\x7f\xfd\xbf\xfe\x9f\x39\x4b\xeb\xff\x73\xf7\xff\x2b\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xff\x8e\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xff\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x7f\xe3" "\x96\x26\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x6d\xd2\xff" "\xeb\xff\xa7\xe8\xff\xf5\xff\x6b\x7e\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff" "\xb9\xfb\xff\x1f\x00\x00\xff\xff\xd3\x4a\x21\x06", 24510); syz_mount_image( /*fs=*/0x200000000400, /*dir=*/0x200000000380, /*flags=MS_POSIXACL|MS_REC|MS_SILENT|MS_NOSUID|MS_NODIRATIME*/ 0x1c802, /*opts=*/0x200000000000, /*chdir=*/3, /*size=*/0x5fbe, /*img=*/0x200000007fc0); // openat arguments: [ // fd: fd_dir (resource) // file: nil // flags: open_flags = 0x42 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0ul, /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0); } 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; }