// https://syzkaller.appspot.com/bug?id=47fd201f12bfc267fc47701cbc841f7983d70630 // 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 int inject_fault(int nth) { int fd; fd = open("/proc/thread-self/fail-nth", O_RDWR); if (fd == -1) exit(1); char buf[16]; sprintf(buf, "%d", nth); if (write(fd, buf, strlen(buf)) != (ssize_t)strlen(buf)) exit(1); return fd; } 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 const char* setup_fault() { int fd = open("/proc/self/make-it-fail", O_WRONLY); if (fd == -1) return "CONFIG_FAULT_INJECTION is not enabled"; close(fd); fd = open("/proc/thread-self/fail-nth", O_WRONLY); if (fd == -1) return "kernel does not have systematic fault injection support"; close(fd); static struct { const char* file; const char* val; bool fatal; } files[] = { {"/sys/kernel/debug/failslab/ignore-gfp-wait", "N", true}, {"/sys/kernel/debug/fail_futex/ignore-private", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-highmem", "N", false}, {"/sys/kernel/debug/fail_page_alloc/ignore-gfp-wait", "N", false}, {"/sys/kernel/debug/fail_page_alloc/min-order", "0", false}, }; unsigned i; for (i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].file, files[i].val)) { if (files[i].fatal) return "failed to write fault injection file"; } } return NULL; } 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); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$btrfs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 74 72 66 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x4000 (8 bytes) // opts: ptr[in, fs_options[btrfs_options]] { // fs_options[btrfs_options] { // elems: array[fs_opt_elem[btrfs_options]] { // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x0 (1 bytes) // size: len = 0x559e (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x559e) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "btrfs\000", 6); memcpy((void*)0x2000000015c0, "./file0\000", 8); *(uint8_t*)0x200000003a40 = 0; memcpy( (void*)0x20000000ac40, "\x78\x9c\xec\xdd\x7f\x6c\x55\xe5\xfd\x07\xf0\x73\x5b\x0a\x0d\xf8\x2d\xfd" "\x8e\x15\x18\x7f\x10\x20\x06\x83\x24\xc8\x96\x2d\x8e\xa0\x78\x31\x06\xb6" "\xe1\xe2\xa5\x82\xc2\x9c\x08\x44\x25\x06\x2b\xd8\x44\x37\x18\xa9\x45\x92" "\x65\xc6\xa0\x85\x4e\x04\x17\x91\x90\x68\x32\x63\xb1\xc3\x3f\x14\xcc\xb0" "\xcb\xb0\x8c\x65\xfc\xd8\xe6\x16\x63\xb3\x82\x52\x69\x96\x6c\x03\x35\x6b" "\x1c\x31\xba\xf4\xde\xfb\x5c\xee\x3d\x97\xdb\x5e\x99\xb3\x4e\x5f\x2f\xd2" "\x9e\xf3\xdc\xcf\x79\x9e\xfb\xdc\x93\xf3\xc7\x7d\x5f\xfa\x9c\x1b\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\x14\x45\x47\x12\x73\xdf\x9d\xd1\xfd\xe2" "\xd1\x91\x35\x5f\xbe\xff\x1f\x3f\x9e\xf8\xe8\xc6\x9f\x8c\xdf\xbd\x7f\xeb" "\xa1\x5b\xee\xdb\x74\xff\x82\x33\x23\x6e\xda\x39\x6b\x59\xdf\xfa\x69\x4d" "\xf3\x37\x6c\x6c\x38\xd2\xfc\xf4\xbe\x39\xb7\x46\x51\x22\xdd\x2f\x91\xed" "\x7f\xdb\xb5\xdf\xaa\xbf\xf3\xc6\xdb\xbe\x5b\x1d\x06\x5c\xbe\x30\xb3\xad" "\xad\x2d\xf5\x94\x99\xae\x27\x33\x8d\xe1\x05\x0f\xf6\xf7\x2b\xfc\x59\x11" "\x45\x51\x55\x6c\x80\xca\xec\xf6\xd5\xec\x4e\x45\xc1\x00\xb9\xdd\xc6\xe2" "\x01\x07\xf4\x4e\xeb\xa2\xe8\xee\xc9\xf3\x26\xb5\x75\x3d\x35\x6e\x49\x72" "\x61\x4f\xf1\x4b\xa7\x5f\xf5\x50\x4f\x60\xa8\x64\xaf\xab\x9e\xf3\xd7\x52" "\x32\xfd\xbb\x22\x76\x44\xae\x9d\x77\xe9\x25\x0a\x2e\xd1\x4c\xff\xf8\x05" "\xf7\xa9\xbc\x08\x00\xe0\x63\x99\x99\x4a\x6f\x72\x6f\x47\xb3\x6f\x71\x73" "\xed\xe6\x78\x3d\xd6\x4e\xc6\xda\x2d\xb1\x76\x78\x87\xd0\x92\xdf\xb8\x18" "\x99\x71\x87\x97\x9a\xe7\xa4\x78\x7d\x88\xe6\x99\xcc\x44\x85\x11\x25\xe7" "\x19\xab\x67\xcf\x7f\xae\x9d\x8a\xf7\x8f\xb5\x63\x51\xe3\x63\xcc\xb3\xf0" "\xd0\x6c\xa4\xa9\x2e\x35\xcf\xb5\xb1\xfa\x50\xcd\x13\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\xb3\x64\xec\xf1\xa3\x6b\x56\xb4\x3d\xb2" "\xe7\xbe\x5f\x76\xd4\x1c\x79\xf7\xfd\x39\x57\x3e\xf0\xa5\x8e\xc3\x6d\x8b" "\x4f\x8c\xbc\x7a\xe9\xca\x1d\x6b\xa6\xfc\x74\xd6\xb2\xbe\xf5\xd3\x9a\xe6" "\x6f\xd8\xd8\x70\xa4\xf9\xe9\x7d\x73\x6e\x8d\xa2\xda\x74\xbf\x44\xa6\x7b" "\xe2\x44\xcb\xe5\xbf\x4d\x8d\x9d\xdf\xbd\x77\xdc\x1b\x8d\xbb\x9f\xab\xe9" "\xab\xcc\x8e\x1b\xb6\xc3\xf2\x0e\x8e\x5e\x0f\x3b\xb3\x46\x47\xd1\xca\xbc" "\x4a\x4f\x18\xf6\xaf\x35\x51\x94\x2a\x2c\xa4\x9b\xd1\x8e\xe2\xc2\x5d\xe9" "\x9d\x6f\x87\x02\x00\x00\x00\x9f\x27\x5f\x49\xff\xae\xc8\xb5\x33\x71\xb0" "\xaa\xa0\x9d\x48\xa7\xc9\x44\xfa\x5f\x90\x09\x8b\xef\xb4\x2e\x8a\xee\x9e" "\x3c\x6f\x52\x5b\xd7\x53\xe3\x96\x24\x17\xf6\x5c\xfc\x78\xa9\x12\xe3\x25" "\x2f\x38\x5e\xae\x5d\x7b\xfe\x27\x91\x17\x8c\x43\xfc\x8d\x8f\x77\xbe\x1e" "\x0e\x6d\x2c\x1a\x67\x60\xf1\x11\xe3\x79\xfe\xd2\x31\x63\xde\x7e\x6b\x72" "\xfd\xe4\xaf\x4f\x9b\xfb\xc4\x0d\xcf\x8c\xea\xee\xfa\xbf\x27\x67\x6c\x49" "\xfd\xb1\xae\xe6\x85\x2b\xae\xef\xad\x7f\xf6\xba\xa2\xfc\x5f\x3b\x70\xfe" "\x0f\x67\x4e\xfe\x07\x00\x00\xe0\x3f\x21\xff\xc7\xc7\x19\xd8\x60\xf9\xff" "\x8e\xa5\x53\xb7\xbc\xfe\x8b\x61\xab\x7e\xdd\xda\xf0\xc4\xc1\xfa\x1d\x7f" "\x6e\xfd\xce\x33\x3b\x17\x9d\xea\xb9\xe1\x47\x7d\x2f\x4f\x4d\xde\xfe\xe8" "\xd5\x45\xf9\x7f\x52\xc1\x53\x16\xe5\xff\x30\xe3\x90\xff\x2b\xa2\x8b\xcb" "\xff\x00\x00\x00\xf0\x59\xf6\xdf\xce\xff\xc9\xa2\x71\x06\x36\x58\xfe\x6f" "\x38\xd3\x37\xfb\x07\x07\x5f\xab\xeb\xf8\xfb\x9c\xc5\x7b\x7e\xf5\xd0\x15" "\x8b\xcf\x9e\xfe\xdb\xfc\x53\xbb\x77\x0d\x5f\x73\x47\xcb\xfa\xba\x87\xae" "\x2c\xca\xff\x33\xcb\xcb\xff\xc3\xf2\xa7\x1d\x1e\xfc\x5d\x98\xf0\xea\xd1" "\x51\x34\xb3\xfc\x93\x0a\x00\x00\x00\x14\x08\xff\xef\x7e\xfe\xa3\x85\x90" "\xd7\x33\x9f\x1c\xc4\xf3\xfa\xb5\xff\xbc\xaa\x79\xdf\xcd\x1f\x7c\xf3\x1b" "\x0f\xde\xf3\xa7\x37\xdf\xfe\xcd\xb1\x03\xb3\x27\xad\xdb\x5e\x37\xf3\xe0" "\xcb\x37\xd5\x7f\x58\xf9\xbd\xed\xdd\x45\xf9\x3f\x59\x5e\xfe\xaf\xfa\x74" "\x5e\x2e\x00\x00\x00\x50\x86\xe7\x8f\xae\x9c\x3b\xef\x78\xcf\xb9\xc7\xcf" "\xbe\xd0\x75\xf2\xf0\xee\xde\x93\x33\x9e\x3c\xb3\xae\xa9\xef\x74\xeb\x25" "\x2d\xab\x57\x6d\x3a\xf6\x5a\x51\xfe\x4f\x95\x97\xff\x47\x0c\xcd\xcb\x01" "\x00\x00\x00\x2e\xe0\xde\x3b\x9f\x5b\xb1\xf9\xd5\x97\xfa\x1e\xd8\x7f\xd7" "\xd8\x29\x3d\x15\x57\x35\x5e\x92\xb8\x65\xdb\x8e\xa9\x4d\x13\x3e\xea\xbc" "\xb4\xf7\xf2\xed\x5b\x8b\xf2\xff\xf2\xf2\xf2\xff\xc8\xec\x36\xbb\xf2\x21" "\xd3\xa9\x33\xfc\x15\x42\xeb\xe8\x28\xaa\xee\xdf\x59\x9b\x29\x1c\x8a\x5a" "\xae\xc9\x15\x00\x00\x00\x80\x4f\x48\xc8\xe9\x5b\x3f\x58\xb1\x6c\xec\xce" "\xb1\xbd\xe3\x8f\x9f\x7e\xac\xe6\xd0\x1b\x87\x67\xff\x65\x6d\xe7\x9c\x8d" "\xd7\x74\x57\x75\x6f\xee\x5c\xd6\x78\x59\xd1\xfd\x02\x42\x62\x2f\x75\xff" "\xff\x70\xa7\x83\xb0\xfe\xbf\xe0\xfe\x7f\x45\xeb\xff\xf3\x0a\x99\xbb\xfe" "\xcd\x76\x63\x00\x00\x00\x00\xbe\x88\x8a\xd7\xf3\x87\xdb\xe3\x67\xbe\xb9" "\xa0\xd4\xf7\xef\x97\xbb\xfe\x7f\x49\xdd\xc4\x13\x89\xb6\xb7\xde\x5b\xf5" "\xd5\x73\x07\xce\x8d\x59\xb0\xff\xfb\xd7\x6f\x5a\x57\xdf\xdb\x7b\xcf\x84" "\x97\x7e\xff\xc3\x3f\x4c\xff\xa8\xba\x28\xff\x37\x97\x97\xff\x2b\xf3\xb7" "\x9f\xe4\xf7\xff\x01\x00\x00\xc0\x45\xf8\x5f\xfb\xfe\xbf\xa5\x45\xe3\x0c" "\x6c\xb0\xfb\xff\x37\x55\xf4\x35\xac\x5a\xb7\x77\xfa\xea\x2d\x6b\xb7\x2c" "\x4c\x2c\x3b\x50\x7d\xea\xc1\xd5\x7b\xdf\x5f\xb0\xe6\x5f\x53\x6f\x7e\xbe" "\xa9\xe6\xba\x03\x45\xf9\xbf\xa5\xbc\xfc\x1f\xb6\xa3\xf2\x5f\x5e\x47\x38" "\x3f\x9b\x46\x47\xd1\xf8\xfe\x9d\xec\xdd\x04\x7f\x1e\xa6\xbb\x3a\x56\x68" "\xaf\xca\x2b\x64\x4e\x7c\xac\xc7\x8d\xa1\x47\xb6\xd0\x3e\x22\xaf\x90\xb6" "\x36\xd6\xe3\x6b\xa3\xa3\x68\x72\xff\x4e\x73\xac\xf0\xff\xa1\xd0\x12\x2b" "\x9c\xad\xc9\x16\x76\xc5\x0a\xc7\x42\x21\x7b\x3d\xe4\x0a\x7b\x62\x85\x8e" "\x70\xa5\x6d\xab\xc9\x4e\x37\x5e\x78\x31\x14\xb2\x0b\x2c\xda\xc3\x0a\x8a" "\x51\xb9\x25\x11\xb1\x1e\xef\x95\xea\xd1\x5f\xb8\x60\x8f\xae\xdc\x93\x03" "\x00\x00\x7c\xa1\x84\xf0\x9c\xcd\xb2\x55\x85\xcd\x28\x1e\x65\xdb\x13\x83" "\x1d\x30\x72\xb0\x03\x2a\x06\x3b\xa0\x72\xb0\x03\x86\xc5\x0e\x88\x1f\x58" "\xea\xf1\x68\x79\x61\x21\x3c\x7e\x7b\xe7\x23\x1b\x36\x35\x4c\x49\xbe\xf2" "\xf0\xdc\xc7\x7e\xf6\xe6\xb3\x8d\x13\xf6\x3d\x7e\x59\x5d\xef\xe6\x0f\x5f" "\xd9\x76\xef\xc4\x9d\xd3\x5b\xa6\x16\xe5\xff\x5d\xe5\xe5\xff\x70\x2a\x86" "\x67\x36\xa5\xd6\xff\x47\x61\xfd\x7f\xf6\x7b\x0d\x73\xeb\xff\x97\x87\x42" "\x6d\xac\xd0\x1e\x0a\xa9\xf8\x1d\x03\x52\xe1\x39\x32\x61\xf7\xe1\xf0\x1c" "\xb5\xa9\x6c\x8f\xb3\xe3\x73\x05\x00\x00\x00\xf8\x5c\x0b\x9f\x0b\x54\x0e" "\xf1\x3c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xcd\xde" "\xbd\xc7\x49\x55\xdd\x09\x02\x3f\xdd\xf4\x83\x6e\x9a\xa6\x8d\x13\xd1\x8c" "\x93\x74\xd4\x80\x66\xa4\x69\x6c\x0d\xc3\xe0\x28\x6a\x8c\x46\x45\x9a\x59" "\x75\xdc\x64\x34\x10\x68\x10\x69\x84\xf0\x58\x05\x51\x1b\x50\x67\x1c\xe2" "\x67\x7c\xed\xac\x99\xe8\x08\x0a\x22\xbb\xea\x87\x18\x57\x83\xc1\x48\x5c" "\xc4\x8c\x3a\x89\x62\xe2\x03\xf0\xb1\x8e\xae\xeb\xfa\x1e\x95\x18\xcd\x84" "\xfd\x74\xdf\x3a\x45\xd5\xad\x2e\xbb\x10\x50\xda\xf9\x7e\xff\xe8\x3a\x55" "\xbf\xf3\xbc\xf5\xe8\x3a\xf7\xde\x3a\x17\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xff\x18\xee\x3d\xf8\xe5\x93\x86\x2e\x9c\xfd\x0f\x1f\x36\x9c" "\x7b\xc9\xea\xaa\xa9\x8b\xfe\x47\xc7\xe8\xcb\xfe\x70\xd5\xb7\xbe\xf8\xd4" "\x3f\x2e\x5b\xf4\x6f\x61\xfe\x2f\x46\x9c\xb9\x65\xde\x41\x17\x1e\x37\x7f" "\xc1\xb4\x7f\xe9\x58\xbe\xfa\x88\x33\x42\x68\xed\x2a\x57\x96\x14\x2f\x7b" "\xee\x8a\xaf\x3e\xd4\xba\xd7\x71\xcf\xde\x31\x70\xe3\xcc\x1b\x6f\xad\xdf" "\x52\x95\xa9\x37\x13\x0f\xfd\x3a\xff\x94\x67\xee\x5c\x1c\x5b\x7d\xb1\x7f" "\x08\x77\x97\x85\x50\x91\x0e\x0c\xa9\x4b\x02\x95\x99\xfb\x75\xb1\xbe\x7d" "\xeb\x42\xd8\x23\x6c\x0b\x64\x4b\xb4\xd5\x26\x25\xd2\x0d\x87\x07\x6a\x42" "\x58\x12\xb6\x05\xb2\x55\xad\xae\x09\xa1\x2e\x27\x70\xca\x86\xfb\xef\xbb" "\xbc\x33\x71\x4d\x4d\x08\x5f\x09\x21\x54\xa7\xdb\x78\xa6\x3a\x69\xa3\x26" "\x1d\x18\x54\x95\x04\x6a\xd3\x81\xe9\x15\x49\xe0\xb7\x5b\x13\xd9\xc0\x4f" "\xca\x93\x00\xec\xb0\xf8\x66\xc8\xbe\xe8\x57\xb5\xe6\x67\x68\xe8\xbe\x5c" "\x91\xd7\x5f\xe5\x4e\xeb\xd8\xa7\x2b\x3d\xbc\x3e\x31\xd1\x50\x3c\xdf\xeb" "\x47\xed\xe2\x4e\xe5\xa8\x4a\x3f\xd0\xba\x43\x4f\x5b\x41\x75\xec\x12\x05" "\x6f\x8f\xb5\xde\x6d\xbd\xe0\xdd\x56\xb0\x9d\xaf\xf0\xb4\xe5\x7e\x91\xca" "\x7c\x43\xd9\xba\x2d\x54\x1d\xca\x27\xb6\x4d\x1a\x3f\xa7\x7d\x76\x7c\xa4" "\x3c\x34\x35\xf5\x29\x56\xd3\x2e\x7a\x9e\x9f\x7e\x7b\xfe\x84\xed\x49\xf7" "\x9a\xd7\x61\xec\x40\xc3\x4e\x79\x1d\x5e\xfa\xd8\x8a\xe9\xfd\x96\x8d\xbe" "\xf4\xea\xcd\xbf\x1a\xb3\xe1\xac\x9a\x03\x76\xb4\x9b\x4f\xe5\x6c\xd2\xdc" "\xf4\xae\x56\x1d\x32\xaf\xb9\x5e\xf3\x3c\x46\xa3\x7c\x9e\xf4\x82\xb7\x5f" "\xc1\xb7\xa4\x46\x5f\xba\x42\x08\x5b\xcf\x3d\x7b\xc6\xd7\xe7\x4c\x3c\xfb" "\x88\x3e\xb7\x3c\xb9\xee\xd5\x07\x1f\xac\xdb\x72\xf6\x9c\x05\xbf\x38\x73" "\xe2\x79\x8b\x2e\x3e\x79\xc3\xbf\xcf\x7f\xa9\x60\xfe\xdf\xf0\xd1\xf3\xff" "\xf8\x72\x8e\xb7\xe5\x79\xb9\x63\xab\x1f\xd6\x27\x73\xf3\xf8\x48\x5d\x4c" "\xbc\x59\x9f\xcc\xcd\x01\x00\x00\xa0\xd7\xe8\x0d\x7b\x4d\x57\x9e\xff\xfa" "\x5f\xbd\xfe\xfd\xb5\xad\x33\x17\x9d\xfe\xed\xb7\x0e\x3e\xf7\xc3\xbd\x5a" "\x7f\x3d\xe2\xfe\x01\x55\x07\xbc\xb1\xae\xa9\xf5\xfc\x8d\x9f\x7f\xa5\x60" "\xfe\xdf\x58\xda\xf1\xff\x78\xc8\xbf\x2e\x77\xb4\x6b\x43\x18\xd5\x95\x58" "\x34\x20\x84\xbd\xbb\x1e\x4f\x02\x2b\x63\x77\xbe\x3b\x20\x84\x2f\x77\xa5" "\x5a\xf3\x03\x47\xa5\x02\x6b\x43\xd8\xa7\x2b\x71\x50\xb6\xaa\x54\x89\xbe" "\xb1\x44\x63\x2a\xf0\x72\x7d\x26\x30\x2a\x15\x58\x1f\x03\xad\xa9\xc0\xf2" "\x18\xb8\x22\x15\xb8\x38\x06\x56\xa5\x02\x13\x62\x60\x6d\x2a\x70\x74\x0c" "\x84\x29\xf9\xe3\xf8\x6a\x7d\x66\x1c\x25\x07\x6a\x62\x60\x5c\xb2\x11\x57" "\xc5\xb3\x10\xde\xa9\x8f\xad\xa5\xb6\xd5\xa6\x6c\x55\x00\x00\x00\x3b\x49" "\x66\x76\x58\x99\x7f\x37\xe7\x5c\x87\x1d\xcd\x10\xa7\x97\xab\x6a\x7a\xca" "\x10\xcf\xc0\x2e\x9a\xa1\x3a\x55\x43\x7a\x06\x9b\x9d\x56\x15\xad\xa1\xa2" "\xa7\x1a\xca\x7b\xaa\x21\x3b\xee\x8e\x8f\x1e\x7e\x41\xcd\x65\x3d\xd5\x5c" "\x70\x1a\x46\x59\x7e\x86\x1b\xd7\xfc\xe5\x7d\x8b\x5e\x3c\xec\x0b\x63\xf7" "\x9a\xf8\xf9\xc5\x43\x2f\x98\xf2\xb3\xf1\xe1\xac\xb7\xef\xae\x7a\xbc\x79" "\xc9\x8b\x6f\xed\x7b\xc4\xcd\xeb\x0a\xe6\xff\xcd\x1f\x3d\xff\xaf\xee\xa6" "\x23\x65\x05\xc7\xff\x43\x18\xdb\xf5\x37\xe6\x2e\xcf\x44\xda\xb3\xf1\x71" "\xad\x79\x19\x00\x00\x00\x80\x1d\x70\xd1\x1f\xff\xc5\x1e\xb5\x2f\x0f\x39" "\xa0\x61\xd3\xfb\x65\xf7\xce\x5f\xfb\xc4\xa3\x2b\x7e\xb9\x79\x8f\x53\x4e" "\x7f\x7f\xdc\xf1\xaf\xff\xf0\xf0\x9a\xc6\x7b\x0b\xe6\xff\xa3\x4a\x3b\xff" "\x3f\xee\x13\xe9\x93\x93\x39\x3c\x12\x77\x43\x4c\x1d\x10\x42\x73\x7e\x20" "\xa9\x76\x64\x61\x20\x39\xea\xdd\x2f\x13\x00\x00\x00\x80\xde\x20\x7b\x3c" "\x3e\x7b\x2c\x7c\x4a\xe6\x36\x39\x45\x3b\x3d\x9f\x2e\xcc\xdf\xba\x9d\xf9" "\xe3\x81\xff\x51\xdd\xe6\xff\xfd\x3d\xff\xb3\xf6\x8e\xad\xff\xfa\x62\xd9" "\x05\xdf\x3d\x77\x44\xcd\x80\xa5\xff\xf4\x6a\xc7\x84\x13\x4e\x3e\xfa\x96" "\xe3\xbf\xf5\xce\x3e\x15\x07\xfc\xb2\xbc\x60\xfe\xdf\x5a\xda\xf9\xff\xb5" "\xf9\xb7\x49\x27\xd6\xc7\x5e\x5c\x3d\x20\x84\xbe\x39\x81\x07\x63\x2f\x3b" "\x03\x5d\x1a\x63\xe0\xf9\x23\xf3\x03\x99\xf1\xaf\x8f\x1b\x60\x71\xac\x2a" "\x73\x62\x42\xb6\xaa\xc5\xb1\xc4\xb8\x18\x68\x4e\x05\x96\x14\x2b\xf1\x68" "\xb6\xc4\xde\xf9\x81\xcc\x93\x95\x6d\x7c\x51\x76\x1c\x53\x32\x25\x72\x02" "\x00\x00\x00\xf0\x89\x8b\xbb\x03\xe2\x71\xf9\x78\xfe\x7f\xcb\x19\x23\x4e" "\xfb\xeb\xef\xcd\xfa\xdb\x85\xaf\x3c\x78\xde\xea\x0b\x2e\xf9\xab\xe1\x1d" "\xf3\x47\x9e\x74\xff\xd3\x1f\x36\xcc\xbd\x72\x69\xd8\xf4\xe6\x11\x05\xf3" "\xff\x71\xdb\x77\xfe\x7f\xd7\x3c\xb8\xe0\xf4\xfe\xf6\x7e\x21\x0c\xad\x08" "\xa1\x4f\xfa\x87\x01\x8f\xd4\x26\x0b\x03\xc6\x40\x5d\x59\x26\x71\x6f\x6d" "\x52\x57\x9f\x74\x55\x0b\x6b\x43\x18\xd9\x39\xb0\x74\x55\x2f\x64\xd6\xff" "\xaf\x48\xaf\x31\xf8\x78\x4d\x52\x55\x0c\xec\xbd\xdf\x2d\x6f\x0f\xea\x4c" "\x2c\xab\x09\x61\x68\x6e\xe0\x89\x6f\x2f\x3d\xac\x33\x31\x27\x15\xc8\x36" "\x7e\x5a\x4d\x08\x5f\xea\x1c\x6d\xba\xf1\xbb\xfa\x26\x8d\x57\xa6\x1b\xbf" "\xb6\x6f\x08\x5f\xcc\x09\x64\xab\x9a\xd0\x37\x84\xce\xc6\xaa\xd2\x55\xfd" "\xaf\xea\xcc\x75\x0c\xd2\x55\xad\xaa\x0e\x61\xcf\x9c\x40\xb6\xaa\xe1\xd5" "\x21\xcc\x0d\x00\xf4\x56\xf1\x7f\xe9\xc4\xdc\x07\x67\xcd\x9d\x37\x75\x7c" "\x7b\x7b\xdb\xcc\x5d\x98\x88\x3b\xf1\x6b\xc2\xa4\x29\xed\x6d\x4d\x13\xa6" "\xb7\x4f\xac\x2e\xd2\xa7\x89\xa9\x3e\xe7\xad\x63\xb4\xa0\x70\x4c\xa5\x5e" "\xfa\x66\x53\x66\x8d\xa2\xc5\x2b\x27\x57\x96\x92\xce\xfe\x50\xb0\x39\xb7" "\xad\xcc\x8e\xfc\x82\x33\x07\x33\xf7\xe3\x97\xa1\xca\xae\x71\x1e\x52\x99" "\x77\xb7\x25\x3d\xe4\x03\xf7\x2f\x6c\x22\xe4\x7c\x95\x2a\x36\xe4\xf2\x5d" "\x3c\xe4\xda\xdc\x4a\xb6\x3d\x89\x05\xf5\xc7\xfc\x55\xa1\x5f\xe8\x3b\x67" "\x56\xdb\xcc\xa6\xf3\xc6\xcf\x9e\x3d\x73\x58\xf2\xb7\xd4\xec\x87\x24\x7f" "\xe3\x71\xa6\x64\x5b\x0d\x4b\x6f\xab\xda\xee\xfa\x56\xc2\xcb\xa3\xe8\x72" "\x59\x29\x1f\x77\x5b\x0d\xca\xad\x64\xe8\xec\x69\x33\x86\xce\x9a\x3b\x6f" "\xc8\x94\x69\xe3\x27\xb7\x4d\x6e\x3b\xa7\xe5\xd0\x3f\x6b\x19\x31\x7c\xf8" "\xd7\x46\x0c\xed\x1c\x54\x73\xf2\xb7\x87\x91\x0e\xea\xae\xe6\xd4\x48\xb7" "\x2e\x2d\x71\x58\x3b\x71\xa4\x5f\xa8\xc8\xa9\xe4\x93\xf8\xd0\x90\x90\x90" "\xe8\x6d\x89\xfd\xfe\xcb\xe6\x87\x47\xef\xb9\xfe\x9c\xeb\x7f\xf6\xda\x8f" "\xcf\xef\xf7\xcd\xd3\xee\xdd\xfb\xc8\x99\x3f\x3c\xf4\xaa\xa9\x0f\x55\xef" "\x7b\xf8\xe2\xdb\x87\x1c\x58\x30\xff\x9f\xf1\xd1\xf3\xff\xf8\xa9\x13\x3f" "\xf8\x33\xeb\x33\x14\x3b\xfe\xdf\x10\x0f\xf3\x27\x8f\x6f\x3b\xcc\x3f\x2e" "\x06\x96\x94\x7a\xfc\xbf\xa1\xd8\xd1\xfc\xec\x89\x01\x8d\xa9\x40\x47\x0c" "\x74\x38\xcc\x0f\x00\x00\xc0\x67\x43\xdc\x1d\x19\xf7\x66\xc6\x9d\xd2\x9b" "\x6f\x59\xbf\x6e\xe3\x92\x96\xb9\x3f\x68\x78\xa7\xe5\xd6\x35\xed\x4b\x6f" "\xba\xe9\xbe\x53\x7f\x72\xe7\xc0\x13\xbe\x34\x38\xec\xb5\xe1\xba\x13\x3e" "\x57\x30\xff\xef\x28\xed\xf7\xff\x3b\x69\xfd\xff\xec\xd2\xf5\x27\x14\x5b" "\xe6\xff\xa0\x58\xa2\xb9\xd8\xfa\xff\xe9\x65\xfe\xb3\xeb\xff\x77\x14\x5b" "\xff\x3f\xbd\xcc\x7f\x76\xfd\xff\x25\x9f\xc2\xfa\xff\x73\xb2\x81\xd4\x26" "\x79\xc7\xfa\xff\x00\x00\xc0\x67\xc1\x27\xb7\xfe\x7f\x8f\xcb\xfb\xa7\x2f" "\x10\x50\x90\xa1\xc7\xe5\xfd\xd3\x17\x08\x28\xc8\xd0\xe3\x32\xfe\xa5\x5e" "\x20\x60\xbb\xd7\xff\x5f\xf3\xe0\x5f\x7f\xa5\xaa\xdf\x98\x3b\xfe\xa4\xe5" "\x37\xf5\x97\xbc\xf6\x77\xf7\x1c\xd6\x7a\xe4\xba\xcd\x33\xff\xe4\x4b\x5b" "\xd7\x4f\xbc\xef\xba\xb1\xb7\xac\x29\x98\xff\x5f\x51\xda\xfc\xdf\xc2\xfd" "\x00\x00\x00\xb0\xfb\xf8\xcf\x97\x5d\x53\x71\xf4\xd9\x77\xdf\xd1\xb2\x6e" "\xea\xc6\x71\x6f\x0e\x7e\xf7\xc9\xb7\x96\x0c\xea\xf3\x41\xc5\xd1\x0f\xb7" "\x8f\x7c\x61\xe0\x1b\xb7\x9e\x57\x30\xff\x5f\x52\xda\xfc\xff\x93\x5f\xff" "\x2f\x14\x3b\xff\xbf\xb1\x58\xa0\xb5\xd8\xc2\x80\xd6\xff\x03\x00\x00\xa0" "\x97\x2a\xb6\xfe\xdf\x3d\x43\x5b\x1a\xff\x30\xa6\xff\x1f\x9e\x1e\xf6\x9b" "\xe5\x0f\xde\x3c\xfa\xa7\x8f\xfc\xfc\xf7\xcb\xf7\xfb\xf9\x89\x3f\x2b\xdf" "\x67\xc1\xb1\xcf\xcf\xbc\x6c\x52\xc1\xfc\x7f\x55\x69\xf3\xff\x78\xda\x45" "\x79\x5e\xee\xd8\x9b\x0f\xeb\x93\x35\xed\x42\x7a\x4d\xbb\x37\xeb\xb3\x3f" "\x19\x00\x00\x00\x80\xde\xa1\x3c\x34\x35\x55\x96\x98\x37\x6f\x61\xd4\xa3" "\x3e\x7e\x9b\x4f\x67\x96\x02\xfd\xa8\x74\xae\xef\xbd\x72\xed\xd9\x9b\x5f" "\x98\x7e\xdc\xe3\xa7\xaf\xfb\xbb\x9a\x13\x06\xef\x39\x61\xda\x05\xab\x1a" "\xff\x66\xf8\x81\x77\x7e\x7e\xd4\x25\x7b\x2e\xdd\x74\x6a\xc1\xfc\x7f\x6d" "\x69\xf3\xff\xbc\xdf\x65\x5c\xfa\xd8\x8a\xe9\xfd\x96\x8d\xbe\xf4\xc3\xab" "\x37\xff\x6a\xcc\x86\xb3\x6a\x0e\xd8\x76\xfc\x1f\x00\x00\x00\xd8\x75\x4a" "\xdd\x2f\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\xfa\xce\xed" "\x58\x7c\xe1\x23\xcb\x8e\x7d\xef\x9b\xb7\xff\xc5\xfe\x47\x2c\x79\x75\xf0" "\x6d\x77\x1d\xf8\xbb\x21\xfd\x5e\xba\xe2\xaa\x07\x26\xad\x7a\xe3\xcc\xc9" "\x5f\x2f\xf8\xfd\x7f\x18\xdb\x55\xae\xd8\xef\xff\xe3\x75\xff\xe2\xef\x0b" "\xfe\x28\x2f\x77\x6c\xb5\xe7\xf5\xff\x32\xf7\x4f\x39\xf1\xf6\xb9\x5d\x4b" "\x16\x3e\x52\x1f\xc2\xfe\xb9\x81\xa9\x0b\xa7\xee\x11\x32\xd7\xe6\x1f\x9c" "\x1b\xb8\xef\x8c\x83\x06\x76\x26\x16\xa6\x4b\xac\x79\xf6\xe8\x97\x3a\x13" "\xdf\x49\x07\x8e\x1f\xf2\xb9\x2d\x9d\x89\xc3\x53\x81\x71\x71\x91\xc4\x7d" "\xd2\x81\x78\x55\xc5\x2d\xfd\x53\x81\xb8\xbc\xe2\xe3\xe9\x40\xdc\x1e\xab" "\xd2\x81\xaa\x4c\xe0\xb2\xfe\xc9\x38\xca\xd2\xdb\xea\x95\xba\x64\x5b\x95" "\xa5\xb7\xd5\xc6\xba\x10\x06\xe4\x04\xb2\xdb\xea\xee\xba\xa4\x8d\xb2\xf4" "\x00\xaf\x49\x05\xb2\x03\xfc\x5e\x3a\x10\x07\x78\x72\x26\x50\x9e\xee\xd5" "\xed\xfd\x92\x5e\xc5\x40\x5d\x2c\x7a\x43\xbf\xa4\x57\x00\x00\xec\xb6\xe2" "\xb7\xc0\xca\x30\x69\x4a\x7b\x5b\x73\xfc\x0a\x1f\x6f\xbf\x50\x91\x7f\x1b" "\xe5\x2d\x59\xb6\xa0\xb0\xda\xb2\x12\x9b\xdf\x94\x59\x9a\x6c\xf1\xca\xc9" "\x95\xa5\xa4\xfb\xa4\xbf\x8b\x6e\xbb\xd6\x78\x65\xa8\xee\x1c\xc2\xb0\x82" "\xaf\xab\xb9\x59\xca\xba\x46\xb9\x73\x6a\xe9\x61\xd3\xfd\x51\x91\x21\xf7" "\xb4\xda\x5b\x79\x91\x72\x69\xdb\xbb\xe9\xaa\x8a\x8f\xa8\x26\x19\x51\xd3" "\x84\xe9\xed\x13\x2b\x7b\x1c\x78\x4b\xcf\x59\x0e\xa9\xe8\x31\xcb\xb0\x82" "\xc9\x4e\x6e\x96\xf2\xae\x4d\x5a\x42\x2d\x25\xf4\xa5\x84\x11\x95\xb8\x6d" "\x4a\xe8\x72\xbc\x5f\x1e\x9a\x9a\xfa\xa4\x72\xfd\x79\x0c\x36\x84\x3c\x3d" "\xbd\x22\x4a\xfd\xbd\x7e\xee\x3a\x7f\xc5\x5e\x05\xb9\x79\x6e\x3b\xf4\xca" "\xb7\xbe\x7c\xcc\x4f\x9f\xfb\xe0\x9f\x3f\xff\x44\xff\x6f\x9c\x56\x73\xfb" "\xac\xef\xbf\x7b\xe2\xaf\x5f\xbf\xff\xc0\x43\x8e\xb8\x6e\x42\xd3\x9a\x2d" "\x05\xf3\xff\x86\xd2\xe6\xff\xd5\xb9\xe3\xda\x92\xb9\x18\x40\x47\xbc\xb2" "\xde\xc8\x01\x21\x8c\x2b\x71\x44\x00\x00\x00\xf0\xd9\x77\xdb\x45\xb7\xde" "\x71\xfa\xf4\xf5\xaf\x4c\x5a\x5b\xf1\xe4\x63\x8f\x4d\x2d\x1f\x73\x7a\xe5" "\xd6\xf9\x77\xce\x9f\x77\xc9\xc6\x7b\x17\x1f\x7f\xd9\xc1\x2b\x76\x34\x7e" "\xd8\x59\xbf\xfd\xfe\x6f\x06\xef\xff\x6f\xcf\x5e\xf5\xd2\x4f\x47\xee\xf3" "\xc0\x0d\x37\xff\x9f\x27\x0f\x7b\xfc\xcf\x7f\xff\xf0\x8f\x1e\x7a\xa7\x6e" "\x65\x9f\xb1\xef\x15\xcc\xff\x1b\x4b\x9b\xff\xc7\x3d\x58\x99\x43\xc1\xc9" "\xde\x8e\xb5\xf1\xfa\xff\x8b\x06\x84\xd0\x75\x69\xfd\x86\x24\xb0\x32\x0e" "\xf7\xbb\x03\x42\xf8\x72\x57\xaa\x35\x96\x48\x2e\xa8\x7f\x42\x2c\xd1\x9c" "\x04\x56\xc6\x1d\x26\x07\xc5\x12\xe3\x5a\xf3\xab\xea\x1b\x03\xab\x52\x81" "\x97\xeb\x33\x81\xb5\xa9\xc0\xfa\x18\xc8\xec\xa5\xb8\x25\x64\x76\xe5\x5c" "\x59\x1f\xc2\x61\x5d\xa9\xb1\xf9\x25\x66\xc4\x12\x0d\xa9\xc0\x98\x18\x68" "\x4c\x05\x9a\x62\xa0\x39\x15\xe8\x1f\x03\xa3\x52\x81\xd7\xfa\x67\x02\xad" "\xa9\xc0\xc3\x31\x10\xa6\xe4\x6f\xab\x1f\xf7\xcf\x6c\x2b\x00\x00\x80\xed" "\x91\x99\x67\x55\xe6\xdf\x0d\xe9\x79\xde\xaa\x8a\x9e\x32\x94\xf5\x94\xa1" "\xb6\xa7\x0c\xe5\x3d\x65\xa8\xee\x29\x43\xb1\x51\xc4\xfb\x77\xc4\x0c\x95" "\xa9\x93\x57\xca\x72\x32\x55\xa6\x6b\xad\x49\xd5\x52\x90\x21\x5e\x0c\x7f" "\xbb\xfb\x55\x90\x21\x3c\x9a\x9f\x33\x5d\xb0\xa0\xe9\x78\xfe\x41\xf6\x7c" "\x83\xb2\xfc\x0c\x57\xfe\xe0\xd9\x53\xd7\x0f\x9e\xfe\xd0\xea\xcd\xc7\x7c" "\x6d\xe0\x6d\xff\x38\x64\xcf\x83\x9b\xa7\xd7\xbd\xb7\xe0\x86\xa7\x7e\x3b" "\xe6\x9c\xeb\x9e\xff\xd3\x41\x05\xf3\xff\xe6\xd2\xe6\xff\xb5\xf9\xb7\x49" "\xeb\xeb\xe3\xfc\x7f\xdb\xf5\xff\x92\xc0\x83\xb1\x7b\x57\xc7\x53\xc7\x1b" "\x63\xe0\xf9\x23\xf3\x03\x99\x1d\x03\xeb\xe3\x64\x77\x71\xb6\xaa\xd6\x4c" "\x89\xcc\xa4\x7d\x71\x2c\x31\x2a\x06\x1a\x53\x81\x19\x31\x30\x2a\x15\x18" "\x37\x36\x13\x58\x32\x30\x3f\x90\x99\x69\x67\x1b\x5f\x94\x6d\x7c\x4a\xa6" "\x44\x4e\x00\x00\x00\x00\x3e\x71\x71\x07\x41\xdc\x4d\x13\xe7\xff\x37\x1e" "\xf5\x83\xab\xdf\x1f\x30\x71\xcb\xb2\x79\x33\xef\x1f\xdb\xf2\xc4\xc9\xa3" "\xbf\x71\xf5\x5d\x3f\xba\x77\xff\x65\x77\xbe\xbb\x62\xf0\x80\x71\xef\x7d" "\xa7\x60\xfe\x3f\xaa\xb4\xf9\x7f\x6c\xaf\x5f\x6e\x63\x17\xc7\xde\xbc\xd8" "\x3f\x84\xbb\xcb\xb6\xf5\x26\x1b\x18\x52\x97\x04\xe2\x7e\x8c\xba\xf8\xf3" "\xf8\x7d\xeb\x42\xd8\x23\x67\x07\x47\xb6\x44\x5b\x6d\x52\xa2\x2a\xd5\x70" "\x78\xa0\x26\xf9\x85\x7a\x55\xba\xaa\xd5\x35\xc9\x1a\x03\xf1\xfe\x29\x1b" "\xee\xbf\xef\xf2\xce\xc4\x35\x35\x21\x7c\x25\x67\xef\x4b\xb6\x8d\x67\xaa" "\x93\x36\x6a\xd2\x81\x41\x55\x49\xa0\x36\x1d\x98\x5e\x91\x04\xe2\x9e\x9f" "\x6c\xe0\x27\xe5\x49\x00\x76\x58\x76\xaf\x60\x7c\x41\x65\x4e\x75\xc9\x6a" "\xe8\xbe\x5c\x91\xd7\xdf\x67\xe5\x9a\xa0\xe9\xe1\x15\xec\x03\xed\x26\x5f" "\x77\xbf\xb9\xda\x55\xaa\xd3\x0f\x64\xf6\xa9\x66\x6d\xdf\xd3\x56\x50\x1d" "\xbb\x44\xc1\xdb\x63\xad\x77\x5b\x6f\x7c\xb7\x35\x78\xb7\xe5\x7e\x91\xca" "\x7c\x43\xd9\xba\x2d\x54\x1d\xca\x27\xb6\x4d\x1a\x3f\xa7\x7d\x76\x7c\x24" "\xf7\x97\xac\x05\x76\xd1\xf3\x9c\xfb\x2b\xd5\x52\xd2\x3b\xe1\x75\xd8\xf1" "\xf1\x7b\xdb\xb3\xea\x74\x07\x9a\x53\x1f\x1f\xcd\xdd\x97\xeb\xfe\x75\x58" "\x16\xab\xbb\xf4\xb1\x15\xd3\xfb\x2d\x1b\x7d\xe9\xd5\x9b\x7f\x35\x66\xc3" "\x59\x35\x07\x94\xdc\x8d\x22\xe2\x0f\x85\x7f\xb4\xe5\x7f\x57\x3e\x95\xb3" "\x79\x77\xb5\xea\x90\x79\xcd\xf5\xba\xcf\x93\x56\x9f\x27\xbd\xf1\xdf\x40" "\xa3\xa7\x2d\x84\x70\xd9\xf5\xc7\xec\xbb\xe4\xdd\x5f\xef\xf7\xdc\x0d\xcf" "\x9d\xba\xae\xec\xc6\xb1\xaf\xfe\xe5\xac\x7b\x36\x2d\xff\x9b\xca\xc3\x47" "\xad\x7b\xff\xc9\xa1\xa3\x2f\x2f\x98\xff\xb7\x96\x36\xff\xaf\x48\xdd\x76" "\xf9\x5d\xdc\x98\xb3\x06\x84\x70\x60\xce\xc6\x7d\x24\x6e\xfe\x63\x06\x24" "\x9f\x83\x39\x81\xe4\x53\x72\xcf\xc2\x40\x72\xc8\xfd\x5f\xeb\x8b\x7e\x72" "\x02\x00\x00\xc0\xce\x96\xdd\xdd\x91\xdd\x5f\x30\x25\x73\x9b\x9c\x10\x9e" "\x9e\x27\x17\xe6\x6f\xdd\xce\xfc\x71\x7f\xc5\xa8\x6e\xf3\x97\xda\xef\x63" "\xd7\x6d\x5c\x79\xd2\xd0\x37\xae\x3b\xe0\x6f\x2f\x38\xf1\x8d\xbf\xbf\xf6" "\xf0\xa7\x1e\xba\xfe\xb2\xb2\x75\xcb\xff\xfb\xd8\x0f\x56\xaf\xb9\x7c\xf1" "\x7b\x4f\x14\xcc\xff\xc7\x7d\xf4\xfc\xbf\x6f\xaa\x9b\x8e\xff\x3b\xfe\xcf" "\x2e\xe2\xf8\x7f\xb7\x76\xf7\x5d\xd1\x7d\xd3\x0f\x74\xec\xd0\xae\xe8\x82" "\xea\xd8\x25\x1c\xff\xef\xd6\xee\xfe\x6e\x73\xfc\xbf\x5b\x8e\xff\x3b\xfe" "\xdf\x1d\xc7\xff\x7b\xe0\xf8\x7f\xb7\x76\xf7\xa7\xad\xe0\x5b\xd2\x0c\x5f" "\xba\x3a\x27\xc1\xd7\xdf\xf9\xf3\xdf\x4d\xbc\xe9\x83\xb9\x8d\xfb\x1d\x7c" "\xd2\x53\xcf\x1c\x3a\xf1\xba\x7f\xba\xaa\xe5\xee\xbb\x4e\x79\xe5\xbf\x9d" "\x7b\xde\xb4\xd7\xbe\xb5\xb9\x60\xfe\x3f\xa3\xb4\xf9\xbf\xf5\xff\xba\x5f" "\xb4\x2f\xbb\xfe\xdf\xb8\x62\xeb\xff\xcd\x28\xb6\xfe\x5f\x87\xf5\xff\x00" "\x00\x80\x5d\xaa\xc8\x42\x73\xe9\x79\x5e\xc1\xea\x7d\x05\x19\xd2\xab\xf7" "\x15\x64\xe8\x71\x81\xc0\x1e\x97\x18\xb4\xfe\xdf\x76\xaf\xff\xb7\x70\xe4" "\xbf\x5f\x74\xe1\x0f\x9f\x6f\xb9\xf6\x9d\x3b\xc7\x5d\xbe\x66\xd3\xb1\x67" "\xbe\xfa\xf4\xba\xd5\xcf\xcc\x5a\x71\xdc\xb9\xe7\xbf\xd5\x7a\xd7\x5d\xad" "\x05\xf3\xff\x8e\xd2\xe6\xff\xf1\xe5\xd0\x2f\xb7\xf5\xde\xb2\xfe\x5f\xe3" "\xd8\x22\x55\x5d\x11\x03\x33\x2c\x0c\x08\x00\x00\xc0\xee\xa8\xd8\x0e\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\x3e\x5d\x87\x9e\xf6\xce" "\xfb\x97\x7c\xfd\x1f\xda\x06\xfd\x62\xc5\xcd\x7f\x7f\xeb\xff\xfb\xbf\xcf" "\xd6\xae\x7d\xe0\x9b\xdf\xb8\x69\xf8\x2f\xa7\xfc\xe9\x19\x65\x6b\x36\x5c" "\x33\xe2\xcc\x2d\xf3\x0e\xba\xf0\xb8\xf9\x0b\xa6\xfd\x4b\xc7\xf2\xd5\x47" "\x9c\x11\xc2\x94\xae\x72\x65\x49\xf1\xb2\xe7\xae\xf8\xea\x43\xad\x7b\x1d" "\xf7\xec\x1d\x03\x37\xce\xbc\xf1\xd6\xfa\x2d\xd5\x99\x7a\x2b\x33\xb7\x7f" "\x9c\x97\x3b\xb6\xfa\x61\x7d\x08\x4b\x72\x1e\xa9\x8b\x89\x37\xeb\x3b\xef" "\x6c\x0b\x9c\x72\xe2\xed\x73\x2b\x3a\x13\x8f\xd4\x87\xb0\x7f\x6e\x60\xea" "\xc2\xa9\x7b\x74\x26\x96\xd7\x87\x30\x38\x37\x70\xdf\x19\x07\x0d\xec\x4c" "\x2c\x4c\x97\x58\xf3\xec\xd1\x2f\x75\x26\xbe\x93\x0e\x1c\x3f\xe4\x73\x5b" "\x3a\x13\x87\x67\x02\x65\xe9\xee\x5e\xd7\x3f\xe9\x6e\x59\xba\xbb\x97\xf7" "\x0f\x61\x40\x4e\x20\xdb\xdd\xb3\xfb\xe7\x57\x95\x6d\xe3\xb8\x4c\xa0\x3c" "\xdd\xc6\x8a\xba\xa4\x8d\x18\xa8\x8b\x45\xaf\xad\x4b\xda\x88\x81\xf6\x58" "\x62\x4a\xdf\x10\x86\x56\x84\xd0\x27\x5d\xd5\x3f\x57\x27\x55\xf5\x49\x57" "\x75\x4f\x75\x52\x55\x9f\x74\x55\x17\x55\x87\x30\x32\x84\x50\x91\xae\xea" "\xb9\xaa\xa4\xaa\x8a\xf4\xc8\x1f\xad\x4a\xaa\x8a\x81\xbd\xf7\xbb\xe5\xed" "\x41\x9d\x89\xa5\x55\x21\x0c\xcd\x0d\x3c\xf1\xed\xa5\x87\x75\x26\x66\xa6" "\x02\xd9\xc6\xff\x53\x55\x08\x5f\xea\x7c\xc9\xa4\x1b\xff\x71\x65\xd2\x78" "\x65\xba\xf1\xff\x5a\x19\xc2\x17\x43\x08\x55\xe9\x12\xef\x55\x24\x25\xaa" "\xd2\x25\x5e\xa8\x08\x61\xcf\x9c\xc0\xb6\x8d\x58\x11\xc2\xdc\xc0\x67\x43" "\xfc\xf4\x99\x98\xfb\xe0\xac\xb9\xf3\xa6\x8e\x6f\x6f\x6f\x9b\xb9\x0b\x13" "\x55\x99\xb6\x6a\xc2\xa4\x29\xed\x6d\x4d\x13\xa6\xb7\x4f\xac\x4e\xf5\xa9" "\x98\xb2\x9c\xf4\xd6\x05\x1f\x7f\xec\x9b\xde\x9e\x3f\xa1\xf3\x76\xf1\xca" "\xc9\x95\xa5\xa4\x2b\x32\xe5\x2a\xbb\xba\x7c\x48\x65\xde\xdd\x96\xdd\xbd" "\xf7\xb1\x5f\xb5\xb9\x95\x6c\x7b\x3e\x0a\xea\x8f\xf9\xab\x42\xbf\xd0\x77" "\xce\xac\xb6\x99\x4d\xe7\x8d\x9f\x3d\x7b\xe6\xb0\xe4\x6f\xa9\xd9\x0f\x49" "\xfe\xf6\xc9\x44\x93\x6d\x35\xac\xb7\x6c\xab\x41\xb9\x95\x0c\x9d\x3d\x6d" "\xc6\xd0\x59\x73\xe7\x0d\x99\x32\x6d\xfc\xe4\xb6\xc9\x6d\xe7\xb4\x1c\xfa" "\x67\x2d\x23\x86\x0f\xff\xda\x88\xa1\x9d\x83\x6a\x4e\xfe\xee\x8c\x91\x2e" "\xfd\xe4\x47\xfa\x85\x8a\x9c\x4a\x3e\x89\xf7\xbf\x84\x84\x44\x6f\x4b\x94" "\xe7\x7d\xba\x35\xef\xee\x9f\xe3\x05\x5f\xf4\xb7\x75\xb4\x32\x54\x77\x7d" "\x40\x17\x4c\x2b\x72\xb3\x94\x75\x8d\x72\x67\x0c\xfa\xa8\x8f\x39\xe2\x8f" "\xf3\x35\xa5\xc7\x11\x0d\x2b\x98\x38\x14\x64\x39\xa4\xe7\x2c\x2d\x05\x93" "\x89\x6d\x59\x6a\x92\x2c\x5d\x5f\xeb\x0a\x26\x87\xb9\x35\x95\x77\x6d\xd2" "\x78\xbf\x3c\x34\x35\xf5\x29\xb6\x1d\x1a\xf2\xef\xe6\x6e\xde\xd7\x77\x60" "\xf3\x3e\x9d\xd9\x74\xa5\xa6\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\xff\xec\xc0\x81\x00" "\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x61\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\x0a\x3b\x70\x2c\x00\x00\x00\x00\x20\xcc\xdf\x3a\x8c\x9e" "\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xb8\x14\x00\x00\xff\xff\x1f\x4b\x19\x91", 21918); res = -1; res = syz_mount_image(/*fs=*/0x200000000080, /*dir=*/0x2000000015c0, /*flags=MS_REC*/ 0x4000, /*opts=*/0x200000003a40, /*chdir=*/0, /*size=*/0x559e, /*img=*/0x20000000ac40); if (res != -1) r[0] = res; // ioctl$BTRFS_IOC_QUOTA_CTL arguments: [ // fd: fd (resource) // cmd: const = 0xc0109428 (4 bytes) // arg: ptr[in, btrfs_ioctl_quota_ctl_args] { // btrfs_ioctl_quota_ctl_args { // cmd: btrfs_ioctl_quota_ctl_cmd = 0x1 (8 bytes) // status: int64 = 0x0 (8 bytes) // } // } // ] *(uint64_t*)0x2000000001c0 = 1; *(uint64_t*)0x2000000001c8 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0109428, /*arg=*/0x2000000001c0ul); // ioctl$BTRFS_IOC_SNAP_CREATE arguments: [ // fd: fd (resource) // cmd: const = 0x50009401 (4 bytes) // arg: ptr[in, btrfs_ioctl_vol_args] { // btrfs_ioctl_vol_args { // fd: align64[fd] { // v: fd (resource) // pad = 0x0 (4 bytes) // } // name: buffer: {07 20 e5 3a 9d 36 ab 45 24 b5 fd 3a 66 3b 8e 24 ab 19 // a7 0c df 00 06 d3 b8 f5 6e b1 d1 dc 01 1e 11 8b 90 c3 49 93 d8 a7 85 // d5 00 91 09 05 0a 88 33 0f fa ab 39 f7 b9 fa 44 ce 53 87 7c 2e 7f 74 // bd 0c 06 82 d8 c6 4d 51 11 25 1c 04 c2 c9 61 74 29 3d 56 d1 b2 0a 16 // 09 e3 90 c6 c8 46 31 f2 a9 56 48 33 f5 ee b2 ca be 97 8d 99 80 11 4f // 7d 72 50 e7 ad 48 05 97 89 80 22 36 fd fc ed 44 a5 dd 8d ab fa c3 7a // f1 b2 12 b4 96 c9 25 32 8e 48 6c 9f 3e 90 33 99 f0 75 35 ae 0e 4d a6 // 77 72 57 12 ec f2 b6 21 4b 4d 19 74 6b a3 a5 aa 70 a1 41 08 82 2f f0 // ea d8 55 fd b1 52 a2 40 48 d2 0d d1 f2 31 93 f5 00 06 d2 04 8f 84 d1 // 10 04 f2 11 99 69 49 cd df 3c 10 04 2d 5a 2e 5f a6 06 35 5f 21 ae 09 // 43 3a 90 5f e6 d9 3c 38 d7 4b 43 45 f8 52 f2 bb 98 08 b6 4f 28 e7 96 // 3e 32 32 e2 39 f4 19 f9 2f 9e 26 e6 2d ed b6 b2 9a bf a7 b2 ef ef 7d // a2 c0 48 1f 99 6c 64 c5 4f 76 5b 55 f9 31 1f d6 72 7b 49 08 ef 74 39 // 0b b9 87 b8 9e 74 fa fc 6a 35 01 8c a1 a0 37 23 d0 a8 04 1c f7 15 1e // 75 b4 e5 23 32 c7 21 d1 f4 2c de 29 9a 95 30 0e 93 38 40 72 e7 74 0f // 58 21 ab 49 96 51 42 28 3b e3 ae 85 dc da b6 42 bb 57 93 b3 e8 5e 55 // fb 8a 1c a0 4b 7a 6f da 81 d1 20 a1 17 1f 0b cd 13 e3 a0 e7 27 5e 0c // d2 7c c1 73 b1 8e e7 76 7e ec 5a 1a 25 0c 61 25 dd 7d bb 63 0e 0e 4d // 9a 07 6c 2e a6 09 ce 98 58 d1 ee c7 9e 3f 30 9e 7c 37 b1 a5 7a 28 45 // e0 54 30 13 4c bd 63 3d 2e 59 65 42 ea d8 c4 25 8c f7 2c 1b 77 4f 1b // bf ad c4 59 97 fe c2 94 29 af 51 69 81 8d 0f 21 44 f2 b9 d3 20 88 19 // b0 f7 12 c6 57 24 d4 d0 bb 47 05 59 f8 e1 a5 56 31 95 f7 76 b2 2e 39 // 5f 03 fe e1 1f 81 5c 1f 8d e6 29 c7 66 be 73 1f 72 9d 9b 88 fe 21 f3 // 6f ab 3b 4d 1a e4 a7 68 d4 0f 51 d5 56 c2 77 85 9e f1 dc 2b bc 06 3c // 76 b5 b4 ed 14 9a 51 63 ae ce 75 13 ae 12 de 24 0f b9 57 59 1b 75 7d // b3 19 b2 08 2c 06 cf eb 7a 62 c1 67 3c 63 b1 09 85 e1 90 45 0f fe 77 // 22 ef 17 07 40 4b 34 41 f1 67 77 0c 1c 11 3f 61 57 21 12 45 03 67 d0 // fe 93 8c a8 64 ca 07 59 9e 83 e6 95 42 c2 2a 4b a8 57 10 27 d7 8b 3a // b1 d6 0a 32 24 15 a9 c8 26 ed 20 9d d6 18 ed 29 1b 36 58 b7 0c 74 7a // 6e f5 5d 3b fd fa 1a d9 8f e2 19 67 a8 b5 43 09 b4 20 34 69 9f c9 36 // 8f 1a 32 0b ef 2a 84 f8 de a7 23 c1 65 45 7d e2 97 23 7e 8d 13 49 1f // c6 17 7c fb ca c7 da 77 91 67 4b 15 0c 39 3f 32 b2 00 d0 3d f5 aa c1 // 47 dc a4 a0 21 d4 a9 14 e4 72 40 22 d5 db bc de 06 ae d0 85 4f 36 a3 // fa f1 14 49 06 6a 56 52 ff 70 53 fd 69 1e 88 ae 97 fd 7c 53 d4 6e a2 // 87 c9 f2 fd 61 95 68 58 b8 50 96 c8 1d 24 f0 3e c9 47 f4 00 41 9e 6c // e1 10 e5 ad 3a d8 9e d5 a6 67 c6 69 97 38 5a 26 f9 9b 42 4c 7b e2 0f // 1c 74 40 58 98 0d f0 24 1c f2 4d 6e 83 f5 93 93 91 f3 c1 c1 f9 11 05 // fa e7 9f d8 a2 ca 8b a8 fd 7b 96 e3 eb bf d5 a9 3f 3e 9d 9e 08 1c 05 // bd f2 e5 f3 e8 a3 56 66 8a be d1 88 81 f1 8e 76 0b 53 dd 2b 54 8d bd // c7 3b 3d 83 a3 a7 72 5b cf 4e 7b b1 04 46 cb 0a 24 41 c1 3c 3d 78 aa // 6a 47 e6 52 cc 43 e5 35 bc 4b cd d2 4c 4e fe 79 89 01 a1 59 97 8f f2 // 6b 0b 8d 53 1a 01 ca 8d 76 00 d7 ef 52 4a 71 77 92 da ad e4 15 f6 0d // c2 31 e6 db 8c 91 90 82 16 60 cf 9a 83 e3 9d ed 68 95 1a 3f 67 2f 9c // 06 98 da bd 18 79 8f a9 22 de b6 01 a6 63 8f b7 b4 73 96 1b 62 02 b0 // 01 47 b1 27 d0 47 81 4f 6f 70 e3 29 0d ad b8 9e 1e a8 07 92 c1 8f 54 // 7a a4 e7 8d 03 a5 ea 7b 42 49 73 b8 c2 e3 bb e0 90 02 c7 08 c9 b3 ca // c2 86 22 5f 85 d3 c7 e5 e3 dc d1 b4 98 61 46 b7 94 6a 4d be 4b 91 73 // bd 5b 1d 91 8f 7a 87 4f 83 47 30 6d ed 50 bf 16 1d 37 2a 14 75 6c 22 // fe ef 3f 85 1c 92 a5 7c a8 e2 f8 91 74 b1 75 1d e0 87 f7 2e c2 4e 5d // 4b c1 3c 28 44 86 7a b8 d7 5b 6a 10 f6 59 23 44 06 dd 2c 56 93 49 a7 // 6a 6d 41 47 43 b5 7b d7 c4 f7 a6 42 64 1f ee 2f 8f 02 5b 33 db ea 50 // 61 c7 b6 2c b2 28 6a f1 2f b8 60 7e 12 50 48 90 28 b8 da 6c d1 84 4a // 03 d5 c9 c6 c5 01 5a cb 4a 6e 3d 16 80 ca 4c d5 9a 88 f7 6a 78 28 9e // 92 7c 59 eb a0 bb 04 3e bf 51 de fd 1f f7 a4 b4 3e b4 7a f3 58 74 a8 // 06 d8 3a e8 92 3d 38 5b d5 34 ba a7 20 8c ab c4 07 8e 1d bc a4 6e f3 // aa 42 94 c5 01 da ea 2a 7c 14 59 ec f3 b2 6d b1 f5 f1 e5 c9 69 f0 67 // 6a d9 fb a1 84 d9 0f ad 60 9d c8 eb aa 0d d2 8c 8a 9f 37 77 3b 0a 2c // 0b e6 3d 0d fa d0 5d bc d8 88 fb 38 db 5b ca a1 80 5a 1b 15 d8 92 5b // 9f b8 86 c8 b5 21 d1 7c 75 df 3d ea 58 b6 3f f7 d3 2f 03 b3 e0 31 f9 // 4e 6e 81 36 20 08 96 66 10 e7 42 d4 60 23 a1 80 67 75 dd 76 fc 58 5e // 0d cb 29 a2 f9 fb b7 66 34 fb 7b 67 1b 41 1d 60 87 7a 9f f3 14 de 61 // 18 82 4f c1 ad d7 9d 09 7d d8 6a 08 f2 41 b6 cb 2c 3a b0 6e d4 04 7a // a1 6a ae 16 1a 11 73 89 52 80 94 2e 88 28 10 4c 58 f7 dc 9d cf 4b ab // c0 45 ba 5d b2 f0 b1 72 83 0d 38 e7 68 ca 82 65 15 ce 00 e0 e7 c1 88 // 9c 6f 40 99 69 e9 77 5a 1b 3e bc 32 c8 82 2c 4d d0 02 e7 6f 1b fd 4a // 79 17 c7 58 1c eb a5 6b bb e7 32 e2 37 e1 5b ec 4e 27 c3 23 b8 dc 81 // b4 9c 62 79 1c 12 72 32 52 8a d3 91 16 d3 d2 02 f2 60 ba c0 7d 8e e3 // c4 7b 64 eb cc d5 ac e9 df 5e bd fb 04 10 f3 af 57 df f1 3e 5a 2c 45 // 12 fb 6c e9 5a 44 b2 bf f8 6d 3e b8 67 16 31 c8 f9 51 6a fc a5 69 20 // ab e8 38 f2 d7 17 f0 2a d4 e2 f3 a5 5e 98 d3 aa be fa 71 11 a0 5e e9 // 58 6d d5 44 13 91 41 40 9b 59 fd f1 1e a3 76 85 03 50 a1 dc 77 7b 2e // ef be 27 3f 6e a2 a8 d2 29 da c7 88 0e 6a 1a c7 f2 3f a2 d1 c6 8e 0d // 5e d9 8c ba 2d 3c c4 2f 31 dd c7 3f bf 0c 4e 67 d9 f8 ba 33 cd 1a b0 // 07 65 6b 08 56 3c 23 fb 7b b0 9d d3 5c bc b4 38 be 57 4b aa 0f 57 ff // d5 31 2e aa b3 66 f6 01 51 87 17 4f d1 74 8a 82 1a 77 2d a4 51 ba 6b // d3 d0 d1 38 6a b1 cf 86 44 b4 8c bf 8e 59 54 7a 98 be 1d f3 ac 66 9a // bc ad f0 54 86 71 d1 06 da 33 ef 6d 95 14 b8 62 47 df f5 f1 bc 7b e6 // 46 4c 7a a8 c7 ee c3 1c 32 98 a8 12 19 01 50 2d 14 e7 95 e1 33 af b2 // c2 ad 3a 2a 0d be 5c 57 db 19 a9 9b c9 b8 62 14 8c c8 fd 20 da fc 2e // 38 a1 6f 35 e0 49 d7 e6 9a 97 8c 4c 9a f8 9b f5 7d 19 7e 24 10 1b 63 // 8e 0e 83 67 39 ec c5 b3 61 6e ee 6b b0 8c 8f a2 57 7b 9e da 52 09 c4 // 9e 9b 1f 7e 47 91 86 62 98 09 db 68 70 c0 d4 5c 3c 1d 73 42 45 60 87 // b2 c4 87 33 25 65 c2 ee 58 89 7d 72 26 87 2a b1 89 d7 19 f7 da 69 34 // 11 fa 2d 48 09 a1 15 d2 b4 19 51 58 d5 ec 0f ff 8d 9e 16 09 96 b5 e7 // 84 cf bc 1f 4a 46 b5 5a 9a 5f c5 d4 30 8f 19 8c af 43 fa ee f2 bd 21 // 47 4e 0f 52 ff 2f 91 ce cd ab 2a 36 6f de 60 e2 11 20 3e 41 aa 91 51 // 4b 34 cd 6b de c7 83 70 ad df 40 b3 25 13 73 e5 0a 86 b6 e6 3a eb 12 // 56 ca 39 4a 26 38 c8 6a 20 a7 dc a4 3b 46 95 ba fc 2a 3e 04 c4 a0 31 // 0a 51 9e 0b b7 48 07 f4 e8 37 7e 66 78 61 f0 68 7a 0e fb 7b 75 d5 a2 // b9 13 46 ba f9 d0 68 f3 bd d9 46 0a 8b c7 d8 46 53 b6 bc ea a9 16 05 // ad 73 d4 2a 58 bc 01 6b 24 65 27 a3 ae f5 b1 75 7a f5 3a ea 6a 6a f2 // 61 2d 1a da cd 0a b2 8a 97 14 0f 62 4d 9a 05 23 8f cb 03 95 70 45 64 // c2 26 3b ed 76 84 26 cb ec 65 28 f1 1c 74 8d 10 0d a5 94 98 2f b2 f2 // 51 4a 83 e7 1c 59 87 69 4b 34 3b 38 48 08 f2 20 2c 24 bf 45 ae c9 97 // 26 d4 bd a2 df 97 e3 a9 b8 39 82 96 9a e3 1c cc b6 d2 d6 73 ca 62 44 // 7a d1 9b 67 3c b0 bf bb 79 80 d5 48 f2 64 b6 07 33 6b 98 db 2a 2d 55 // f2 f4 05 b0 cc ac 00 24 bd 88 fd ef d0 c2 d5 3c 2e 8e 16 1f 39 6d b2 // c9 84 32 e1 70 a9 22 a6 65 5e 9d 87 21 7f c2 e7 13 d3 6c 19 d4 43 38 // 86 a6 ba c2 13 7e a6 ce c1 83 ed ff 9f 38 c2 7b 15 6b c9 da 95 8a 46 // 99 8d 12 c0 25 54 74 f6 54 43 ab 01 c3 53 66 61 00 40 50 ce de ae 5a // c0 ef 07 5f 3f 93 46 d5 66 4e 92 1f 12 2d 75 f1 7c c6 5c ba 08 e5 bb // 44 7b ea df 21 62 2b 01 76 5e 97 a9 7f bd 68 8c 71 ee ca 91 6c 01 2d // 7f d2 55 bf 88 18 12 8d 3d 6a a3 a1 c9 00 67 0b f1 44 9e e2 cf c3 2e // 92 2f 52 92 7f 88 d1 8a 49 93 e7 80 cc 57 ba c6 b2 a3 de 0d d4 3f 3c // 3d a4 99 0e 60 ce 98 d8 a3 de 22 c7 3b 1a 63 f0 f0 0b cb 9c ec 14 3b // 49 31 e6 4f 67 6b 0f 38 66 80 aa 62 56 0c 6e 97 2b 48 60 24 73 6f b5 // 3e d4 14 fd 27 dc 49 9d f9 29 f2 9f 33 ef be 9c 26 2b d1 33 e5 82 27 // f6 df 08 3b 59 53 d3 de 0d 90 00 d5 86 7b fd 1e 3e c2 37 30 5a 65 c5 // 84 28 e8 1d 98 00 cd 5e 77 83 87 5c 6f 54 f3 d9 0d 92 f6 2f 3b ab b9 // 0b 21 33 fa bf 5c 39 06 bc 33 7a f0 2f 1d 74 82 eb 89 5c 8a de 7b a7 // d2 12 0c 45 e5 ca 1a a2 e7 23 07 7f 9a 60 b2 7f 35 2f e9 0b 6d bd a2 // da b1 03 b8 f0 43 36 68 22 0b a2 75 b3 00 6f e1 9d ab 59 84 f6 5f e5 // c0 22 a4 66 13 a8 f9 24 70 5e 62 43 5d 5a 8e df 2b b6 c5 fb f8 a0 fe // 53 06 6c b1 b7 5d 98 82 bc d5 88 a1 d7 97 27 93 fc 8d a8 0a 23 0e 9b // 54 43 15 3d cb 42 2f 43 d3 d4 51 05 17 a8 8d a6 d6 b7 fa ac f9 a8 b3 // 83 e7 02 e0 86 c4 08 bc 23 85 6b 00 81 ab 73 46 01 92 19 83 48 2f 60 // e7 a7 22 4f 94 8e 87 38 cd e9 8d 38 1b 48 c7 cd 08 11 79 63 ed df db // 01 dc e5 04 72 51 eb 15 54 b7 3a 88 71 f9 53 13 ae 0a 84 c5 a1 22 af // 02 4b 6c 14 a0 8f 9a 37 04 f6 15 f9 8a 9d b0 f7 fe d2 e8 50 e8 fb 7d // c8 6a 61 78 73 a5 c0 b2 c8 d7 c6 81 06 5b 1c be 9a a6 99 01 bd 70 f1 // 10 b8 2d f2 1d bc 31 50 f3 96 28 b1 7c ec 2a da d9 f3 e4 3b a1 bc 16 // 16 8b 12 0c dd 2f fd dd 34 aa ef 0f e9 27 39 1c 45 58 fc 7c 1a 05 71 // fb ec fe 85 3a c3 4d 35 d4 8d 55 b8 2f 01 db ea 2f 2b 45 9f c9 82 c5 // 8d 2c 72 c4 7f 42 44 10 28 7c 85 a1 c3 0e 55 7b 2a 5b be 82 47 44 24 // 29 fa bc cc 90 89 32 a5 7c e3 00 48 a2 3e 35 6b c9 ba 23 eb 52 a6 a5 // 74 33 73 04 4b 97 6a 12 e7 70 24 39 53 22 e1 1d 00 78 51 46 56 07 69 // a3 2d 43 6f 94 a2 b3 00 60 d7 98 94 05 16 4a 40 81 5f f7 46 a2 fa 30 // 55 78 41 cf 18 dd 8e 50 bc c6 26 5e 26 22 f4 44 84 bf 8e f8 91 26 e0 // b7 21 ff 76 03 5e 55 8f 66 9b 1a 1c 8c 91 29 8c f0 2b 4a 7e a3 a6 e6 // 6c 7e 42 2f b3 37 87 fd b6 03 29 a5 a5 2d 93 55 50 eb b5 96 82 18 c3 // cf 67 41 3d 16 11 cb 55 36 c8 41 4a 06 5f a1 80 28 8b d9 9f 90 a6 7b // dc 63 96 cc 7e 64 c4 da bc 50 8d 02 0d 01 11 a8 39 23 f1 9c 73 0f 39 // 60 b4 e8 7a b1 17 09 98 67 ba c1 3f d7 01 d0 2d d9 9b e5 08 b6 bf 01 // cb 7a 56 29 ae 68 8f 72 37 e0 07 42 57 9f ab cf 5b 28 96 71 d0 72 7a // 83 59 02 10 6c 04 e7 ba 7d b3 2a c4 07 c8 2c 13 fd 40 05 4c e9 9c c6 // b7 58 50 d7 07 58 b8 30 5a cf 2f 88 76 ea b7 f8 89 04 77 9f 19 2a d9 // 41 13 75 bb 02 06 c2 7c ef 74 51 42 b1 ae 85 3e 8d 3a ca ac f3 cd d3 // b7 ca cd 9a fc f3 dd e1 dc 2e d3 e5 d5 f1 bc 87 af 79 12 0b 19 e0 44 // de 76 40 5e 59 e4 cd f7 79 c5 39 ef a6 94 07 f0 6b 13 59 93 99 d5 9b // 5d f8 09 45 16 b7 be c7 5c 79 29 61 f6 3c 1c 26 7b 4d fc 68 59 f8 96 // 9d 96 5a e3 38 70 be 28 b8 e1 d4 3e c9 bc 6e 79 c2 76 7b 38 72 95 eb // bd 59 0d 3f f7 62 fc d1 59 29 15 96 36 d6 af be 52 a5 9d 2e d0 e8 ed // b0 5c 12 5d 6e b9 11 70 ab ed 06 c3 cf bd 1a 61 d8 5d 8f 09 14 7f de // 93 4b 6d d5 54 20 3d 6d de 0e de f7 ad ac 75 dc b1 c8 c6 74 e8 25 e2 // cd c4 c5 14 1d 2c 5c e3 ee da 4c 3c 42 7a 2b 80 40 ba b5 17 c5 05 f3 // da a6 66 62 5a 87 c8 02 bf 20 0a 0d 47 ce ce 56 24 99 4a 40 04 60 5d // 2d 2a 9f 8e 54 7f 70 9a b6 18 80 59 06 1b fd 37 9d dc 32 ef 69 d5 3d // 01 e1 31 ac 15 96 70 ec 9f 8c 75 ca 04 66 33 75 7c 4e d4 c8 51 fc 9d // f5 1f 4c 1a 78 6c 8f 56 b3 ac 9b 84 c4 c8 fe 18 e1 c7 5a 29 6f fa ce // 76 e6 22 08 27 7b f7 56 aa 62 1e 2e 4b 2e bb 57 1b 42 5d c9 80 39 4e // b4 d5 0f 29 b6 fc 0d 7d 13 cf 8f c3 bd fc 9d 8c 38 15 b9 9c a6 9a 47 // 7b 82 81 79 eb 47 cc d0 06 6a 6f 8f 2b c7 e5 67 7b 41 68 bb d7 ea 7c // c5 55 70 37 7a ff 37 dc a7 6d e9 b1 e8 56 19 2e 38 d2 6d 83 52 5f 24 // 8a 38 e3 5c c8 a0 cb 10 c7 8b 4f f0 8e 6b 83 2c 7f 8c ae 14 0f 83 35 // 52 b2 3e d0 fe a3 7e 2d a4 87 de 19 d7 db bb e4 99 7a 1a f9 b0 d8 fe // fe e1 10 69 b7 5c b1 85 dd 1a 2a b8 0c 65 ff 4e 71 9e 29 0b 73 6a f3 // a7 72 7d 47 99 84 5c 64 ff 11 e1 6c bd 57 cb 80 6c fb cd 34 24 ad c6 // 03 da af 54 dc 5f b0 b0 88 23 32 64 22 a3 fd 0e 1b c1 b0 eb 2f 38 a0 // 9f fd b8 94 8b 52 8c 8f 93 66 d0 e6 b1 4e f4 3c 88 d0 90 fe 40 b9 32 // 7c 42 70 0c d2 a8 43 34 cb cf e1 89 9f 2b b6 64 3a 88 dc a4 38 77 eb // c6 47 c7 b7 ed 25 7d 0d fe 47 21 00 28 4d cc 42 e3 ed ad f8 3a ee ea // 35 3b 79 38 5b f7 4b ba f5 03 87 0c 2e 22 9a 15 fa db 08 7e 3c 4b fa // e1 ae 85 11 f4 b2 e9 ba 9d fe 0f 12 48 3a 1b 7c 18 95 0f 99 bd 33 2f // ff 29 d5 06 9a b3 5e 3d 63 e3 92 b2 02 77 34 45 9d b3 18 50 aa 2b 62 // f4 01 ae b0 ee b3 87 ca f6 c7 cd 59 8d 91 b7 3a 7b cc 24 5d 79 df 78 // 63 b9 0b de 69 5a 24 24 8c eb 63 8c 71 96 44 6d db 6b fc 5f b4 a9 7a // ec 25 1e cc 2a 0c e1 d6 b0 75 71 16 c8 d1 ea d9 21 69 b9 d3 3d ab cd // d7 31 1f 28 00 16 8d c0 a3 c9 bf 0d 8d 69 01 25 dd cc 93 09 3e a8 54 // f7 58 d7 02 02 2e e1 c9 59 6e b4 de de da b4 de a4 cf 9b cd c7 aa 6c // 6e 3e 37 0d 3f 92 37 b1 42 b6 ef 6b e3 6f e1 ee 58 0d 47 7f 97 ab 64 // 0a 68 04 54 56 07 4f f6 c9 7f 12 ba 50 a5 fd ec e2 2f 93 7f b8 85 ea // 37 52 e9 fd ea e2 94 e6 7c 79 d2 1d c7 94 10 a5 a6 f8 97 f6 d4 8f 96 // 86 43 4a 16 58 3f 4b 81 5d 55 78 6b d0 38 6c 1e 93 f1 07 6b 8e 41 95 // 36 92 94 28 ed e5 6d 5c 49 30 04 cc c1 0f 72 79 6a db d8 6f ab b2 ec // 45 6a 2f 38 8f 66 50 0c af 3e 59 68 97 91 01 9e f0 71 e0 ca 83 ed 9d // 04 b2 94 25 98 8c 53 8c 81 78 5d 57 4e c4 2f 10 a6 54 8e 80 22 4d dd // 6c 45 cf c9 27 c0 47 06 a7 41 67 c7 64 31 c8 32 da 8d ae 08 27 76 08 // 7b f6 92 3a dd 29 92 fe d4 ec 18 c5 e6 c6 b3 c8 2f ba 13 ea 7c 51} // (length 0xff8) // } // } // ] *(uint32_t*)0x200000001600 = r[0]; memcpy( (void*)0x200000001608, "\x07\x20\xe5\x3a\x9d\x36\xab\x45\x24\xb5\xfd\x3a\x66\x3b\x8e\x24\xab\x19" "\xa7\x0c\xdf\x00\x06\xd3\xb8\xf5\x6e\xb1\xd1\xdc\x01\x1e\x11\x8b\x90\xc3" "\x49\x93\xd8\xa7\x85\xd5\x00\x91\x09\x05\x0a\x88\x33\x0f\xfa\xab\x39\xf7" "\xb9\xfa\x44\xce\x53\x87\x7c\x2e\x7f\x74\xbd\x0c\x06\x82\xd8\xc6\x4d\x51" "\x11\x25\x1c\x04\xc2\xc9\x61\x74\x29\x3d\x56\xd1\xb2\x0a\x16\x09\xe3\x90" "\xc6\xc8\x46\x31\xf2\xa9\x56\x48\x33\xf5\xee\xb2\xca\xbe\x97\x8d\x99\x80" "\x11\x4f\x7d\x72\x50\xe7\xad\x48\x05\x97\x89\x80\x22\x36\xfd\xfc\xed\x44" "\xa5\xdd\x8d\xab\xfa\xc3\x7a\xf1\xb2\x12\xb4\x96\xc9\x25\x32\x8e\x48\x6c" "\x9f\x3e\x90\x33\x99\xf0\x75\x35\xae\x0e\x4d\xa6\x77\x72\x57\x12\xec\xf2" "\xb6\x21\x4b\x4d\x19\x74\x6b\xa3\xa5\xaa\x70\xa1\x41\x08\x82\x2f\xf0\xea" "\xd8\x55\xfd\xb1\x52\xa2\x40\x48\xd2\x0d\xd1\xf2\x31\x93\xf5\x00\x06\xd2" "\x04\x8f\x84\xd1\x10\x04\xf2\x11\x99\x69\x49\xcd\xdf\x3c\x10\x04\x2d\x5a" "\x2e\x5f\xa6\x06\x35\x5f\x21\xae\x09\x43\x3a\x90\x5f\xe6\xd9\x3c\x38\xd7" "\x4b\x43\x45\xf8\x52\xf2\xbb\x98\x08\xb6\x4f\x28\xe7\x96\x3e\x32\x32\xe2" "\x39\xf4\x19\xf9\x2f\x9e\x26\xe6\x2d\xed\xb6\xb2\x9a\xbf\xa7\xb2\xef\xef" "\x7d\xa2\xc0\x48\x1f\x99\x6c\x64\xc5\x4f\x76\x5b\x55\xf9\x31\x1f\xd6\x72" "\x7b\x49\x08\xef\x74\x39\x0b\xb9\x87\xb8\x9e\x74\xfa\xfc\x6a\x35\x01\x8c" "\xa1\xa0\x37\x23\xd0\xa8\x04\x1c\xf7\x15\x1e\x75\xb4\xe5\x23\x32\xc7\x21" "\xd1\xf4\x2c\xde\x29\x9a\x95\x30\x0e\x93\x38\x40\x72\xe7\x74\x0f\x58\x21" "\xab\x49\x96\x51\x42\x28\x3b\xe3\xae\x85\xdc\xda\xb6\x42\xbb\x57\x93\xb3" "\xe8\x5e\x55\xfb\x8a\x1c\xa0\x4b\x7a\x6f\xda\x81\xd1\x20\xa1\x17\x1f\x0b" "\xcd\x13\xe3\xa0\xe7\x27\x5e\x0c\xd2\x7c\xc1\x73\xb1\x8e\xe7\x76\x7e\xec" "\x5a\x1a\x25\x0c\x61\x25\xdd\x7d\xbb\x63\x0e\x0e\x4d\x9a\x07\x6c\x2e\xa6" "\x09\xce\x98\x58\xd1\xee\xc7\x9e\x3f\x30\x9e\x7c\x37\xb1\xa5\x7a\x28\x45" "\xe0\x54\x30\x13\x4c\xbd\x63\x3d\x2e\x59\x65\x42\xea\xd8\xc4\x25\x8c\xf7" "\x2c\x1b\x77\x4f\x1b\xbf\xad\xc4\x59\x97\xfe\xc2\x94\x29\xaf\x51\x69\x81" "\x8d\x0f\x21\x44\xf2\xb9\xd3\x20\x88\x19\xb0\xf7\x12\xc6\x57\x24\xd4\xd0" "\xbb\x47\x05\x59\xf8\xe1\xa5\x56\x31\x95\xf7\x76\xb2\x2e\x39\x5f\x03\xfe" "\xe1\x1f\x81\x5c\x1f\x8d\xe6\x29\xc7\x66\xbe\x73\x1f\x72\x9d\x9b\x88\xfe" "\x21\xf3\x6f\xab\x3b\x4d\x1a\xe4\xa7\x68\xd4\x0f\x51\xd5\x56\xc2\x77\x85" "\x9e\xf1\xdc\x2b\xbc\x06\x3c\x76\xb5\xb4\xed\x14\x9a\x51\x63\xae\xce\x75" "\x13\xae\x12\xde\x24\x0f\xb9\x57\x59\x1b\x75\x7d\xb3\x19\xb2\x08\x2c\x06" "\xcf\xeb\x7a\x62\xc1\x67\x3c\x63\xb1\x09\x85\xe1\x90\x45\x0f\xfe\x77\x22" "\xef\x17\x07\x40\x4b\x34\x41\xf1\x67\x77\x0c\x1c\x11\x3f\x61\x57\x21\x12" "\x45\x03\x67\xd0\xfe\x93\x8c\xa8\x64\xca\x07\x59\x9e\x83\xe6\x95\x42\xc2" "\x2a\x4b\xa8\x57\x10\x27\xd7\x8b\x3a\xb1\xd6\x0a\x32\x24\x15\xa9\xc8\x26" "\xed\x20\x9d\xd6\x18\xed\x29\x1b\x36\x58\xb7\x0c\x74\x7a\x6e\xf5\x5d\x3b" "\xfd\xfa\x1a\xd9\x8f\xe2\x19\x67\xa8\xb5\x43\x09\xb4\x20\x34\x69\x9f\xc9" "\x36\x8f\x1a\x32\x0b\xef\x2a\x84\xf8\xde\xa7\x23\xc1\x65\x45\x7d\xe2\x97" "\x23\x7e\x8d\x13\x49\x1f\xc6\x17\x7c\xfb\xca\xc7\xda\x77\x91\x67\x4b\x15" "\x0c\x39\x3f\x32\xb2\x00\xd0\x3d\xf5\xaa\xc1\x47\xdc\xa4\xa0\x21\xd4\xa9" "\x14\xe4\x72\x40\x22\xd5\xdb\xbc\xde\x06\xae\xd0\x85\x4f\x36\xa3\xfa\xf1" "\x14\x49\x06\x6a\x56\x52\xff\x70\x53\xfd\x69\x1e\x88\xae\x97\xfd\x7c\x53" "\xd4\x6e\xa2\x87\xc9\xf2\xfd\x61\x95\x68\x58\xb8\x50\x96\xc8\x1d\x24\xf0" "\x3e\xc9\x47\xf4\x00\x41\x9e\x6c\xe1\x10\xe5\xad\x3a\xd8\x9e\xd5\xa6\x67" "\xc6\x69\x97\x38\x5a\x26\xf9\x9b\x42\x4c\x7b\xe2\x0f\x1c\x74\x40\x58\x98" "\x0d\xf0\x24\x1c\xf2\x4d\x6e\x83\xf5\x93\x93\x91\xf3\xc1\xc1\xf9\x11\x05" "\xfa\xe7\x9f\xd8\xa2\xca\x8b\xa8\xfd\x7b\x96\xe3\xeb\xbf\xd5\xa9\x3f\x3e" "\x9d\x9e\x08\x1c\x05\xbd\xf2\xe5\xf3\xe8\xa3\x56\x66\x8a\xbe\xd1\x88\x81" "\xf1\x8e\x76\x0b\x53\xdd\x2b\x54\x8d\xbd\xc7\x3b\x3d\x83\xa3\xa7\x72\x5b" "\xcf\x4e\x7b\xb1\x04\x46\xcb\x0a\x24\x41\xc1\x3c\x3d\x78\xaa\x6a\x47\xe6" "\x52\xcc\x43\xe5\x35\xbc\x4b\xcd\xd2\x4c\x4e\xfe\x79\x89\x01\xa1\x59\x97" "\x8f\xf2\x6b\x0b\x8d\x53\x1a\x01\xca\x8d\x76\x00\xd7\xef\x52\x4a\x71\x77" "\x92\xda\xad\xe4\x15\xf6\x0d\xc2\x31\xe6\xdb\x8c\x91\x90\x82\x16\x60\xcf" "\x9a\x83\xe3\x9d\xed\x68\x95\x1a\x3f\x67\x2f\x9c\x06\x98\xda\xbd\x18\x79" "\x8f\xa9\x22\xde\xb6\x01\xa6\x63\x8f\xb7\xb4\x73\x96\x1b\x62\x02\xb0\x01" "\x47\xb1\x27\xd0\x47\x81\x4f\x6f\x70\xe3\x29\x0d\xad\xb8\x9e\x1e\xa8\x07" "\x92\xc1\x8f\x54\x7a\xa4\xe7\x8d\x03\xa5\xea\x7b\x42\x49\x73\xb8\xc2\xe3" "\xbb\xe0\x90\x02\xc7\x08\xc9\xb3\xca\xc2\x86\x22\x5f\x85\xd3\xc7\xe5\xe3" "\xdc\xd1\xb4\x98\x61\x46\xb7\x94\x6a\x4d\xbe\x4b\x91\x73\xbd\x5b\x1d\x91" "\x8f\x7a\x87\x4f\x83\x47\x30\x6d\xed\x50\xbf\x16\x1d\x37\x2a\x14\x75\x6c" "\x22\xfe\xef\x3f\x85\x1c\x92\xa5\x7c\xa8\xe2\xf8\x91\x74\xb1\x75\x1d\xe0" "\x87\xf7\x2e\xc2\x4e\x5d\x4b\xc1\x3c\x28\x44\x86\x7a\xb8\xd7\x5b\x6a\x10" "\xf6\x59\x23\x44\x06\xdd\x2c\x56\x93\x49\xa7\x6a\x6d\x41\x47\x43\xb5\x7b" "\xd7\xc4\xf7\xa6\x42\x64\x1f\xee\x2f\x8f\x02\x5b\x33\xdb\xea\x50\x61\xc7" "\xb6\x2c\xb2\x28\x6a\xf1\x2f\xb8\x60\x7e\x12\x50\x48\x90\x28\xb8\xda\x6c" "\xd1\x84\x4a\x03\xd5\xc9\xc6\xc5\x01\x5a\xcb\x4a\x6e\x3d\x16\x80\xca\x4c" "\xd5\x9a\x88\xf7\x6a\x78\x28\x9e\x92\x7c\x59\xeb\xa0\xbb\x04\x3e\xbf\x51" "\xde\xfd\x1f\xf7\xa4\xb4\x3e\xb4\x7a\xf3\x58\x74\xa8\x06\xd8\x3a\xe8\x92" "\x3d\x38\x5b\xd5\x34\xba\xa7\x20\x8c\xab\xc4\x07\x8e\x1d\xbc\xa4\x6e\xf3" "\xaa\x42\x94\xc5\x01\xda\xea\x2a\x7c\x14\x59\xec\xf3\xb2\x6d\xb1\xf5\xf1" "\xe5\xc9\x69\xf0\x67\x6a\xd9\xfb\xa1\x84\xd9\x0f\xad\x60\x9d\xc8\xeb\xaa" "\x0d\xd2\x8c\x8a\x9f\x37\x77\x3b\x0a\x2c\x0b\xe6\x3d\x0d\xfa\xd0\x5d\xbc" "\xd8\x88\xfb\x38\xdb\x5b\xca\xa1\x80\x5a\x1b\x15\xd8\x92\x5b\x9f\xb8\x86" "\xc8\xb5\x21\xd1\x7c\x75\xdf\x3d\xea\x58\xb6\x3f\xf7\xd3\x2f\x03\xb3\xe0" "\x31\xf9\x4e\x6e\x81\x36\x20\x08\x96\x66\x10\xe7\x42\xd4\x60\x23\xa1\x80" "\x67\x75\xdd\x76\xfc\x58\x5e\x0d\xcb\x29\xa2\xf9\xfb\xb7\x66\x34\xfb\x7b" "\x67\x1b\x41\x1d\x60\x87\x7a\x9f\xf3\x14\xde\x61\x18\x82\x4f\xc1\xad\xd7" "\x9d\x09\x7d\xd8\x6a\x08\xf2\x41\xb6\xcb\x2c\x3a\xb0\x6e\xd4\x04\x7a\xa1" "\x6a\xae\x16\x1a\x11\x73\x89\x52\x80\x94\x2e\x88\x28\x10\x4c\x58\xf7\xdc" "\x9d\xcf\x4b\xab\xc0\x45\xba\x5d\xb2\xf0\xb1\x72\x83\x0d\x38\xe7\x68\xca" "\x82\x65\x15\xce\x00\xe0\xe7\xc1\x88\x9c\x6f\x40\x99\x69\xe9\x77\x5a\x1b" "\x3e\xbc\x32\xc8\x82\x2c\x4d\xd0\x02\xe7\x6f\x1b\xfd\x4a\x79\x17\xc7\x58" "\x1c\xeb\xa5\x6b\xbb\xe7\x32\xe2\x37\xe1\x5b\xec\x4e\x27\xc3\x23\xb8\xdc" "\x81\xb4\x9c\x62\x79\x1c\x12\x72\x32\x52\x8a\xd3\x91\x16\xd3\xd2\x02\xf2" "\x60\xba\xc0\x7d\x8e\xe3\xc4\x7b\x64\xeb\xcc\xd5\xac\xe9\xdf\x5e\xbd\xfb" "\x04\x10\xf3\xaf\x57\xdf\xf1\x3e\x5a\x2c\x45\x12\xfb\x6c\xe9\x5a\x44\xb2" "\xbf\xf8\x6d\x3e\xb8\x67\x16\x31\xc8\xf9\x51\x6a\xfc\xa5\x69\x20\xab\xe8" "\x38\xf2\xd7\x17\xf0\x2a\xd4\xe2\xf3\xa5\x5e\x98\xd3\xaa\xbe\xfa\x71\x11" "\xa0\x5e\xe9\x58\x6d\xd5\x44\x13\x91\x41\x40\x9b\x59\xfd\xf1\x1e\xa3\x76" "\x85\x03\x50\xa1\xdc\x77\x7b\x2e\xef\xbe\x27\x3f\x6e\xa2\xa8\xd2\x29\xda" "\xc7\x88\x0e\x6a\x1a\xc7\xf2\x3f\xa2\xd1\xc6\x8e\x0d\x5e\xd9\x8c\xba\x2d" "\x3c\xc4\x2f\x31\xdd\xc7\x3f\xbf\x0c\x4e\x67\xd9\xf8\xba\x33\xcd\x1a\xb0" "\x07\x65\x6b\x08\x56\x3c\x23\xfb\x7b\xb0\x9d\xd3\x5c\xbc\xb4\x38\xbe\x57" "\x4b\xaa\x0f\x57\xff\xd5\x31\x2e\xaa\xb3\x66\xf6\x01\x51\x87\x17\x4f\xd1" "\x74\x8a\x82\x1a\x77\x2d\xa4\x51\xba\x6b\xd3\xd0\xd1\x38\x6a\xb1\xcf\x86" "\x44\xb4\x8c\xbf\x8e\x59\x54\x7a\x98\xbe\x1d\xf3\xac\x66\x9a\xbc\xad\xf0" "\x54\x86\x71\xd1\x06\xda\x33\xef\x6d\x95\x14\xb8\x62\x47\xdf\xf5\xf1\xbc" "\x7b\xe6\x46\x4c\x7a\xa8\xc7\xee\xc3\x1c\x32\x98\xa8\x12\x19\x01\x50\x2d" "\x14\xe7\x95\xe1\x33\xaf\xb2\xc2\xad\x3a\x2a\x0d\xbe\x5c\x57\xdb\x19\xa9" "\x9b\xc9\xb8\x62\x14\x8c\xc8\xfd\x20\xda\xfc\x2e\x38\xa1\x6f\x35\xe0\x49" "\xd7\xe6\x9a\x97\x8c\x4c\x9a\xf8\x9b\xf5\x7d\x19\x7e\x24\x10\x1b\x63\x8e" "\x0e\x83\x67\x39\xec\xc5\xb3\x61\x6e\xee\x6b\xb0\x8c\x8f\xa2\x57\x7b\x9e" "\xda\x52\x09\xc4\x9e\x9b\x1f\x7e\x47\x91\x86\x62\x98\x09\xdb\x68\x70\xc0" "\xd4\x5c\x3c\x1d\x73\x42\x45\x60\x87\xb2\xc4\x87\x33\x25\x65\xc2\xee\x58" "\x89\x7d\x72\x26\x87\x2a\xb1\x89\xd7\x19\xf7\xda\x69\x34\x11\xfa\x2d\x48" "\x09\xa1\x15\xd2\xb4\x19\x51\x58\xd5\xec\x0f\xff\x8d\x9e\x16\x09\x96\xb5" "\xe7\x84\xcf\xbc\x1f\x4a\x46\xb5\x5a\x9a\x5f\xc5\xd4\x30\x8f\x19\x8c\xaf" "\x43\xfa\xee\xf2\xbd\x21\x47\x4e\x0f\x52\xff\x2f\x91\xce\xcd\xab\x2a\x36" "\x6f\xde\x60\xe2\x11\x20\x3e\x41\xaa\x91\x51\x4b\x34\xcd\x6b\xde\xc7\x83" "\x70\xad\xdf\x40\xb3\x25\x13\x73\xe5\x0a\x86\xb6\xe6\x3a\xeb\x12\x56\xca" "\x39\x4a\x26\x38\xc8\x6a\x20\xa7\xdc\xa4\x3b\x46\x95\xba\xfc\x2a\x3e\x04" "\xc4\xa0\x31\x0a\x51\x9e\x0b\xb7\x48\x07\xf4\xe8\x37\x7e\x66\x78\x61\xf0" "\x68\x7a\x0e\xfb\x7b\x75\xd5\xa2\xb9\x13\x46\xba\xf9\xd0\x68\xf3\xbd\xd9" "\x46\x0a\x8b\xc7\xd8\x46\x53\xb6\xbc\xea\xa9\x16\x05\xad\x73\xd4\x2a\x58" "\xbc\x01\x6b\x24\x65\x27\xa3\xae\xf5\xb1\x75\x7a\xf5\x3a\xea\x6a\x6a\xf2" "\x61\x2d\x1a\xda\xcd\x0a\xb2\x8a\x97\x14\x0f\x62\x4d\x9a\x05\x23\x8f\xcb" "\x03\x95\x70\x45\x64\xc2\x26\x3b\xed\x76\x84\x26\xcb\xec\x65\x28\xf1\x1c" "\x74\x8d\x10\x0d\xa5\x94\x98\x2f\xb2\xf2\x51\x4a\x83\xe7\x1c\x59\x87\x69" "\x4b\x34\x3b\x38\x48\x08\xf2\x20\x2c\x24\xbf\x45\xae\xc9\x97\x26\xd4\xbd" "\xa2\xdf\x97\xe3\xa9\xb8\x39\x82\x96\x9a\xe3\x1c\xcc\xb6\xd2\xd6\x73\xca" "\x62\x44\x7a\xd1\x9b\x67\x3c\xb0\xbf\xbb\x79\x80\xd5\x48\xf2\x64\xb6\x07" "\x33\x6b\x98\xdb\x2a\x2d\x55\xf2\xf4\x05\xb0\xcc\xac\x00\x24\xbd\x88\xfd" "\xef\xd0\xc2\xd5\x3c\x2e\x8e\x16\x1f\x39\x6d\xb2\xc9\x84\x32\xe1\x70\xa9" "\x22\xa6\x65\x5e\x9d\x87\x21\x7f\xc2\xe7\x13\xd3\x6c\x19\xd4\x43\x38\x86" "\xa6\xba\xc2\x13\x7e\xa6\xce\xc1\x83\xed\xff\x9f\x38\xc2\x7b\x15\x6b\xc9" "\xda\x95\x8a\x46\x99\x8d\x12\xc0\x25\x54\x74\xf6\x54\x43\xab\x01\xc3\x53" "\x66\x61\x00\x40\x50\xce\xde\xae\x5a\xc0\xef\x07\x5f\x3f\x93\x46\xd5\x66" "\x4e\x92\x1f\x12\x2d\x75\xf1\x7c\xc6\x5c\xba\x08\xe5\xbb\x44\x7b\xea\xdf" "\x21\x62\x2b\x01\x76\x5e\x97\xa9\x7f\xbd\x68\x8c\x71\xee\xca\x91\x6c\x01" "\x2d\x7f\xd2\x55\xbf\x88\x18\x12\x8d\x3d\x6a\xa3\xa1\xc9\x00\x67\x0b\xf1" "\x44\x9e\xe2\xcf\xc3\x2e\x92\x2f\x52\x92\x7f\x88\xd1\x8a\x49\x93\xe7\x80" "\xcc\x57\xba\xc6\xb2\xa3\xde\x0d\xd4\x3f\x3c\x3d\xa4\x99\x0e\x60\xce\x98" "\xd8\xa3\xde\x22\xc7\x3b\x1a\x63\xf0\xf0\x0b\xcb\x9c\xec\x14\x3b\x49\x31" "\xe6\x4f\x67\x6b\x0f\x38\x66\x80\xaa\x62\x56\x0c\x6e\x97\x2b\x48\x60\x24" "\x73\x6f\xb5\x3e\xd4\x14\xfd\x27\xdc\x49\x9d\xf9\x29\xf2\x9f\x33\xef\xbe" "\x9c\x26\x2b\xd1\x33\xe5\x82\x27\xf6\xdf\x08\x3b\x59\x53\xd3\xde\x0d\x90" "\x00\xd5\x86\x7b\xfd\x1e\x3e\xc2\x37\x30\x5a\x65\xc5\x84\x28\xe8\x1d\x98" "\x00\xcd\x5e\x77\x83\x87\x5c\x6f\x54\xf3\xd9\x0d\x92\xf6\x2f\x3b\xab\xb9" "\x0b\x21\x33\xfa\xbf\x5c\x39\x06\xbc\x33\x7a\xf0\x2f\x1d\x74\x82\xeb\x89" "\x5c\x8a\xde\x7b\xa7\xd2\x12\x0c\x45\xe5\xca\x1a\xa2\xe7\x23\x07\x7f\x9a" "\x60\xb2\x7f\x35\x2f\xe9\x0b\x6d\xbd\xa2\xda\xb1\x03\xb8\xf0\x43\x36\x68" "\x22\x0b\xa2\x75\xb3\x00\x6f\xe1\x9d\xab\x59\x84\xf6\x5f\xe5\xc0\x22\xa4" "\x66\x13\xa8\xf9\x24\x70\x5e\x62\x43\x5d\x5a\x8e\xdf\x2b\xb6\xc5\xfb\xf8" "\xa0\xfe\x53\x06\x6c\xb1\xb7\x5d\x98\x82\xbc\xd5\x88\xa1\xd7\x97\x27\x93" "\xfc\x8d\xa8\x0a\x23\x0e\x9b\x54\x43\x15\x3d\xcb\x42\x2f\x43\xd3\xd4\x51" "\x05\x17\xa8\x8d\xa6\xd6\xb7\xfa\xac\xf9\xa8\xb3\x83\xe7\x02\xe0\x86\xc4" "\x08\xbc\x23\x85\x6b\x00\x81\xab\x73\x46\x01\x92\x19\x83\x48\x2f\x60\xe7" "\xa7\x22\x4f\x94\x8e\x87\x38\xcd\xe9\x8d\x38\x1b\x48\xc7\xcd\x08\x11\x79" "\x63\xed\xdf\xdb\x01\xdc\xe5\x04\x72\x51\xeb\x15\x54\xb7\x3a\x88\x71\xf9" "\x53\x13\xae\x0a\x84\xc5\xa1\x22\xaf\x02\x4b\x6c\x14\xa0\x8f\x9a\x37\x04" "\xf6\x15\xf9\x8a\x9d\xb0\xf7\xfe\xd2\xe8\x50\xe8\xfb\x7d\xc8\x6a\x61\x78" "\x73\xa5\xc0\xb2\xc8\xd7\xc6\x81\x06\x5b\x1c\xbe\x9a\xa6\x99\x01\xbd\x70" "\xf1\x10\xb8\x2d\xf2\x1d\xbc\x31\x50\xf3\x96\x28\xb1\x7c\xec\x2a\xda\xd9" "\xf3\xe4\x3b\xa1\xbc\x16\x16\x8b\x12\x0c\xdd\x2f\xfd\xdd\x34\xaa\xef\x0f" "\xe9\x27\x39\x1c\x45\x58\xfc\x7c\x1a\x05\x71\xfb\xec\xfe\x85\x3a\xc3\x4d" "\x35\xd4\x8d\x55\xb8\x2f\x01\xdb\xea\x2f\x2b\x45\x9f\xc9\x82\xc5\x8d\x2c" "\x72\xc4\x7f\x42\x44\x10\x28\x7c\x85\xa1\xc3\x0e\x55\x7b\x2a\x5b\xbe\x82" "\x47\x44\x24\x29\xfa\xbc\xcc\x90\x89\x32\xa5\x7c\xe3\x00\x48\xa2\x3e\x35" "\x6b\xc9\xba\x23\xeb\x52\xa6\xa5\x74\x33\x73\x04\x4b\x97\x6a\x12\xe7\x70" "\x24\x39\x53\x22\xe1\x1d\x00\x78\x51\x46\x56\x07\x69\xa3\x2d\x43\x6f\x94" "\xa2\xb3\x00\x60\xd7\x98\x94\x05\x16\x4a\x40\x81\x5f\xf7\x46\xa2\xfa\x30" "\x55\x78\x41\xcf\x18\xdd\x8e\x50\xbc\xc6\x26\x5e\x26\x22\xf4\x44\x84\xbf" "\x8e\xf8\x91\x26\xe0\xb7\x21\xff\x76\x03\x5e\x55\x8f\x66\x9b\x1a\x1c\x8c" "\x91\x29\x8c\xf0\x2b\x4a\x7e\xa3\xa6\xe6\x6c\x7e\x42\x2f\xb3\x37\x87\xfd" "\xb6\x03\x29\xa5\xa5\x2d\x93\x55\x50\xeb\xb5\x96\x82\x18\xc3\xcf\x67\x41" "\x3d\x16\x11\xcb\x55\x36\xc8\x41\x4a\x06\x5f\xa1\x80\x28\x8b\xd9\x9f\x90" "\xa6\x7b\xdc\x63\x96\xcc\x7e\x64\xc4\xda\xbc\x50\x8d\x02\x0d\x01\x11\xa8" "\x39\x23\xf1\x9c\x73\x0f\x39\x60\xb4\xe8\x7a\xb1\x17\x09\x98\x67\xba\xc1" "\x3f\xd7\x01\xd0\x2d\xd9\x9b\xe5\x08\xb6\xbf\x01\xcb\x7a\x56\x29\xae\x68" "\x8f\x72\x37\xe0\x07\x42\x57\x9f\xab\xcf\x5b\x28\x96\x71\xd0\x72\x7a\x83" "\x59\x02\x10\x6c\x04\xe7\xba\x7d\xb3\x2a\xc4\x07\xc8\x2c\x13\xfd\x40\x05" "\x4c\xe9\x9c\xc6\xb7\x58\x50\xd7\x07\x58\xb8\x30\x5a\xcf\x2f\x88\x76\xea" "\xb7\xf8\x89\x04\x77\x9f\x19\x2a\xd9\x41\x13\x75\xbb\x02\x06\xc2\x7c\xef" "\x74\x51\x42\xb1\xae\x85\x3e\x8d\x3a\xca\xac\xf3\xcd\xd3\xb7\xca\xcd\x9a" "\xfc\xf3\xdd\xe1\xdc\x2e\xd3\xe5\xd5\xf1\xbc\x87\xaf\x79\x12\x0b\x19\xe0" "\x44\xde\x76\x40\x5e\x59\xe4\xcd\xf7\x79\xc5\x39\xef\xa6\x94\x07\xf0\x6b" "\x13\x59\x93\x99\xd5\x9b\x5d\xf8\x09\x45\x16\xb7\xbe\xc7\x5c\x79\x29\x61" "\xf6\x3c\x1c\x26\x7b\x4d\xfc\x68\x59\xf8\x96\x9d\x96\x5a\xe3\x38\x70\xbe" "\x28\xb8\xe1\xd4\x3e\xc9\xbc\x6e\x79\xc2\x76\x7b\x38\x72\x95\xeb\xbd\x59" "\x0d\x3f\xf7\x62\xfc\xd1\x59\x29\x15\x96\x36\xd6\xaf\xbe\x52\xa5\x9d\x2e" "\xd0\xe8\xed\xb0\x5c\x12\x5d\x6e\xb9\x11\x70\xab\xed\x06\xc3\xcf\xbd\x1a" "\x61\xd8\x5d\x8f\x09\x14\x7f\xde\x93\x4b\x6d\xd5\x54\x20\x3d\x6d\xde\x0e" "\xde\xf7\xad\xac\x75\xdc\xb1\xc8\xc6\x74\xe8\x25\xe2\xcd\xc4\xc5\x14\x1d" "\x2c\x5c\xe3\xee\xda\x4c\x3c\x42\x7a\x2b\x80\x40\xba\xb5\x17\xc5\x05\xf3" "\xda\xa6\x66\x62\x5a\x87\xc8\x02\xbf\x20\x0a\x0d\x47\xce\xce\x56\x24\x99" "\x4a\x40\x04\x60\x5d\x2d\x2a\x9f\x8e\x54\x7f\x70\x9a\xb6\x18\x80\x59\x06" "\x1b\xfd\x37\x9d\xdc\x32\xef\x69\xd5\x3d\x01\xe1\x31\xac\x15\x96\x70\xec" "\x9f\x8c\x75\xca\x04\x66\x33\x75\x7c\x4e\xd4\xc8\x51\xfc\x9d\xf5\x1f\x4c" "\x1a\x78\x6c\x8f\x56\xb3\xac\x9b\x84\xc4\xc8\xfe\x18\xe1\xc7\x5a\x29\x6f" "\xfa\xce\x76\xe6\x22\x08\x27\x7b\xf7\x56\xaa\x62\x1e\x2e\x4b\x2e\xbb\x57" "\x1b\x42\x5d\xc9\x80\x39\x4e\xb4\xd5\x0f\x29\xb6\xfc\x0d\x7d\x13\xcf\x8f" "\xc3\xbd\xfc\x9d\x8c\x38\x15\xb9\x9c\xa6\x9a\x47\x7b\x82\x81\x79\xeb\x47" "\xcc\xd0\x06\x6a\x6f\x8f\x2b\xc7\xe5\x67\x7b\x41\x68\xbb\xd7\xea\x7c\xc5" "\x55\x70\x37\x7a\xff\x37\xdc\xa7\x6d\xe9\xb1\xe8\x56\x19\x2e\x38\xd2\x6d" "\x83\x52\x5f\x24\x8a\x38\xe3\x5c\xc8\xa0\xcb\x10\xc7\x8b\x4f\xf0\x8e\x6b" "\x83\x2c\x7f\x8c\xae\x14\x0f\x83\x35\x52\xb2\x3e\xd0\xfe\xa3\x7e\x2d\xa4" "\x87\xde\x19\xd7\xdb\xbb\xe4\x99\x7a\x1a\xf9\xb0\xd8\xfe\xfe\xe1\x10\x69" "\xb7\x5c\xb1\x85\xdd\x1a\x2a\xb8\x0c\x65\xff\x4e\x71\x9e\x29\x0b\x73\x6a" "\xf3\xa7\x72\x7d\x47\x99\x84\x5c\x64\xff\x11\xe1\x6c\xbd\x57\xcb\x80\x6c" "\xfb\xcd\x34\x24\xad\xc6\x03\xda\xaf\x54\xdc\x5f\xb0\xb0\x88\x23\x32\x64" "\x22\xa3\xfd\x0e\x1b\xc1\xb0\xeb\x2f\x38\xa0\x9f\xfd\xb8\x94\x8b\x52\x8c" "\x8f\x93\x66\xd0\xe6\xb1\x4e\xf4\x3c\x88\xd0\x90\xfe\x40\xb9\x32\x7c\x42" "\x70\x0c\xd2\xa8\x43\x34\xcb\xcf\xe1\x89\x9f\x2b\xb6\x64\x3a\x88\xdc\xa4" "\x38\x77\xeb\xc6\x47\xc7\xb7\xed\x25\x7d\x0d\xfe\x47\x21\x00\x28\x4d\xcc" "\x42\xe3\xed\xad\xf8\x3a\xee\xea\x35\x3b\x79\x38\x5b\xf7\x4b\xba\xf5\x03" "\x87\x0c\x2e\x22\x9a\x15\xfa\xdb\x08\x7e\x3c\x4b\xfa\xe1\xae\x85\x11\xf4" "\xb2\xe9\xba\x9d\xfe\x0f\x12\x48\x3a\x1b\x7c\x18\x95\x0f\x99\xbd\x33\x2f" "\xff\x29\xd5\x06\x9a\xb3\x5e\x3d\x63\xe3\x92\xb2\x02\x77\x34\x45\x9d\xb3" "\x18\x50\xaa\x2b\x62\xf4\x01\xae\xb0\xee\xb3\x87\xca\xf6\xc7\xcd\x59\x8d" "\x91\xb7\x3a\x7b\xcc\x24\x5d\x79\xdf\x78\x63\xb9\x0b\xde\x69\x5a\x24\x24" "\x8c\xeb\x63\x8c\x71\x96\x44\x6d\xdb\x6b\xfc\x5f\xb4\xa9\x7a\xec\x25\x1e" "\xcc\x2a\x0c\xe1\xd6\xb0\x75\x71\x16\xc8\xd1\xea\xd9\x21\x69\xb9\xd3\x3d" "\xab\xcd\xd7\x31\x1f\x28\x00\x16\x8d\xc0\xa3\xc9\xbf\x0d\x8d\x69\x01\x25" "\xdd\xcc\x93\x09\x3e\xa8\x54\xf7\x58\xd7\x02\x02\x2e\xe1\xc9\x59\x6e\xb4" "\xde\xde\xda\xb4\xde\xa4\xcf\x9b\xcd\xc7\xaa\x6c\x6e\x3e\x37\x0d\x3f\x92" "\x37\xb1\x42\xb6\xef\x6b\xe3\x6f\xe1\xee\x58\x0d\x47\x7f\x97\xab\x64\x0a" "\x68\x04\x54\x56\x07\x4f\xf6\xc9\x7f\x12\xba\x50\xa5\xfd\xec\xe2\x2f\x93" "\x7f\xb8\x85\xea\x37\x52\xe9\xfd\xea\xe2\x94\xe6\x7c\x79\xd2\x1d\xc7\x94" "\x10\xa5\xa6\xf8\x97\xf6\xd4\x8f\x96\x86\x43\x4a\x16\x58\x3f\x4b\x81\x5d" "\x55\x78\x6b\xd0\x38\x6c\x1e\x93\xf1\x07\x6b\x8e\x41\x95\x36\x92\x94\x28" "\xed\xe5\x6d\x5c\x49\x30\x04\xcc\xc1\x0f\x72\x79\x6a\xdb\xd8\x6f\xab\xb2" "\xec\x45\x6a\x2f\x38\x8f\x66\x50\x0c\xaf\x3e\x59\x68\x97\x91\x01\x9e\xf0" "\x71\xe0\xca\x83\xed\x9d\x04\xb2\x94\x25\x98\x8c\x53\x8c\x81\x78\x5d\x57" "\x4e\xc4\x2f\x10\xa6\x54\x8e\x80\x22\x4d\xdd\x6c\x45\xcf\xc9\x27\xc0\x47" "\x06\xa7\x41\x67\xc7\x64\x31\xc8\x32\xda\x8d\xae\x08\x27\x76\x08\x7b\xf6" "\x92\x3a\xdd\x29\x92\xfe\xd4\xec\x18\xc5\xe6\xc6\xb3\xc8\x2f\xba\x13\xea" "\x7c\x51", 4088); inject_fault(18); syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x50009401, /*arg=*/0x200000001600ul); } 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; if ((reason = setup_fault())) printf("the reproducer may not work as expected: fault injection setup " "failed: %s\n", reason); use_temporary_dir(); loop(); return 0; }