// https://syzkaller.appspot.com/bug?id=d7e13e816d5ba729b5232cfa81816187e468d7eb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void setup_sysctl() { int cad_pid = fork(); if (cad_pid < 0) exit(1); if (cad_pid == 0) { for (;;) sleep(100); } char tmppid[32]; snprintf(tmppid, sizeof(tmppid), "%d", cad_pid); struct { const char* name; const char* data; } files[] = { {"/sys/kernel/debug/x86/nmi_longest_ns", "10000000000"}, {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", tmppid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) { } } kill(cad_pid, SIGKILL); while (waitpid(cad_pid, NULL, 0) != cad_pid) ; } 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$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x1010000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 6f // 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 64 2c 65 // 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 68 61 72 73 // 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 ad d4 ce ec 7c // b8 70 2b 1b 4a 0f f3 22 83 9e 69 b5 07 d7 47 8e 07 06 b0 04 08 dc // 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 84 4e f8 e6 97 2c db // 3f 50 68 0f c9 60 2e d2 7c 1f 6b 47 a9 1f 94 1f 15 4a e2 05 d3 4a // 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 fc e1 2a e6 4a 5a 52 1a a8 // 30 80 b7 67 2c 4e 15 66 a6 1a 0a de 4b 6c 9d 78 15 10 53 d9 fb 31 // fd 2c fc 77 f2 69 f8 73 e1 4e 5f e3 c4 6c 0a cb b2 2d 40 39 1a e3 // 1d 20 25 dc d9 47 ad f7 67 39 ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d // 78 16 e0 b9 39 81 de 11 47 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 // 65 b9} (length 0x11a) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6210 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6213) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x2000000000c0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61\x74" "\x69\x61\x6e\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x33\x2c\x6e\x6f\x64\x69\x73" "\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e" "\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x79" "\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce\xec\x7c\xb8\x70\x2b\x1b" "\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47\x8e\x07\x06\xb0\x04\x08\xdc" "\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28\x9d\xcb\x18\x25\x04\x84\x4e\xf8" "\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xc9\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f" "\x94\x1f\x15\x4a\xe2\x05\xd3\x4a\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02" "\x51\xd6\x64\xfc\xe1\x2a\xe6\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e" "\x15\x66\xa6\x1a\x0a\xde\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xfd\x2c" "\xfc\x77\xf2\x69\xf8\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39" "\x1a\xe3\x1d\x20\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30" "\x04\x0b\x37\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2" "\xf4\x6d\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 282); memcpy( (void*)0x200000012d40, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x3f\xff\x09\x4d\xa3" "\x1e\xaa\x12\x21\xe4\xb6\x01\x5a\x4a\xf3\xb7\x84\x40\x81\xb6\x07\x38\x70" "\xe1\x80\x72\x45\x89\x5c\xb7\x8a\x48\x01\x25\x01\xa5\x95\x45\x5c\xf9\xc2" "\x81\x17\x01\x42\xe2\x08\x88\x23\x27\x5e\x40\x0f\x5c\xb9\xf1\x02\x88\x64" "\x23\x01\x3d\x75\xd0\xda\xcf\xe3\x8c\xb7\xbb\x59\x27\xa9\x77\xd6\x7e\x3e" "\x1f\xc9\x9d\xf9\xcd\x33\xe3\x7d\xa6\xdf\x1d\xef\x6e\x66\x66\x9f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x07\xdf\xff\xd1\x85" "\x2a\x22\xae\xfd\x32\x2d\x38\x15\xf1\xb9\xe8\x46\x74\x22\x96\x86\xf5\x4a" "\x44\x2c\xad\x9c\xca\xeb\xf7\x22\xe2\xb9\xd8\x69\x8e\x67\x23\xa2\xbf\x10" "\x51\xe5\xc6\xa7\x23\x5e\x8b\x88\x8f\x4e\x46\x6c\x6d\xaf\xaf\x0e\x17\x5d" "\x3c\x60\x3f\xbe\xf7\xe7\x7f\xfc\xfe\xc7\x27\x7e\xf8\xf7\x3f\xf6\xcf\xfd" "\xf7\x2f\x77\xba\xaf\x4f\x5a\xef\xee\xdd\xdf\xfc\xe7\xaf\xf7\x1e\x7f\x7f" "\x01\x00\x00\xa0\x44\x75\x5d\xd7\x55\xfa\x98\x7f\x3a\x7d\xbe\xef\xb4\xdd" "\x29\x00\x60\x26\xf2\xeb\x7f\x9d\xe4\xe5\xea\xb9\xab\x37\xe6\xac\x3f\x6a" "\xb5\x5a\xad\x3e\x82\x75\x53\x3d\xde\xbd\x66\x11\x11\x1b\xcd\x6d\x86\xef" "\x19\x9c\x8e\x07\x80\x23\x66\x23\x3e\x6e\xbb\x0b\xb4\x48\xfe\x45\xeb\x45" "\xc4\x89\xb6\x3b\x01\xcc\xb5\xaa\xed\x0e\x70\x28\xb6\xb6\xd7\x57\xab\x94" "\x6f\xd5\x7c\x3d\x58\xd9\x6d\xcf\xd7\x82\xec\xcb\x7f\xa3\xda\xbb\xbf\x63" "\xd2\x74\x9a\xd1\x6b\x4c\x66\xf5\xfc\xda\x8c\x6e\x3c\x33\xa1\x3f\x4b\x33" "\xea\xc3\x3c\xc9\xf9\x77\x46\xf3\xbf\xb6\xdb\x3e\x48\xeb\x1d\x76\xfe\xb3" "\x32\x29\xff\xc1\xee\xad\x4f\xc5\xc9\xf9\x77\x47\xf3\x1f\x71\x7c\xf2\xef" "\x8c\xcd\xbf\x54\x39\xff\xde\x23\xe5\xdf\x95\x3f\x00\x00\x00\x00\x00\xcc" "\xb1\xad\xed\xf5\xd5\x4e\x3a\xf7\xd5\xe6\xf9\xdf\x85\x27\xdf\x95\x03\x79" "\xd8\xf9\xdf\x95\x19\xf5\x01\x00\x00\x00\x00\x00\x00\x00\x3e\x6b\x4f\x3a" "\xfe\xdf\x9e\xca\xf8\x7f\x00\x00\x00\x30\xaf\x86\x9f\xd5\x87\x7e\x7b\xf2" "\xc1\xb2\x49\xdf\xc5\x36\x5c\x7e\xb5\x8a\x78\x6a\x64\x7d\xa0\x30\xe9\x66" "\x99\xe5\xb6\xfb\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\xe9\xed" "\x5e\xc3\x7b\xb5\x8a\xe8\x47\xc4\x53\xcb\xcb\x75\x5d\x0f\x7f\x9a\x46\xeb" "\x47\xf5\xa4\xdb\x1f\x75\xa5\xef\x3f\x94\xac\xed\x3f\xf2\x00\x00\xb0\xeb" "\xa3\x93\x23\xf7\xf2\x57\x11\x8b\x11\x71\x35\x7d\xd7\x5f\x7f\x79\x79\xb9" "\xae\x17\x97\x96\xeb\xe5\x7a\x69\x21\xbf\x9f\x1d\x2c\x2c\xd6\x4b\x8d\xcf" "\xb5\x79\x3a\x5c\xb6\x30\x38\xc0\x1b\xe2\xde\xa0\x1e\xfe\xb2\xc5\xc6\x76" "\x4d\xd3\x3e\x2f\x4f\x6b\x1f\xfd\x7d\xc3\xc7\x1a\xd4\xdd\x03\x74\x6c\x36" "\x5a\x0c\x1c\x00\x22\x62\xf7\xd5\x68\xcb\x2b\xd2\x31\x53\xd7\x4f\x47\xdb" "\xef\x72\x38\x1a\x1c\xff\xc7\x8f\xe3\x9f\x83\x68\xfb\x79\x0a\x00\x00\x00" "\x1c\xbe\xba\xae\xeb\x2a\x7d\x9d\xf7\xe9\x74\xce\xbf\xd3\x76\xa7\x00\x80" "\x99\xc8\xaf\xff\xa3\xe7\x05\xd4\x6a\xb5\x5a\xad\x56\x1f\xbf\xba\xa9\x1e" "\xef\x5e\xb3\x88\x88\x8d\xe6\x36\xc3\xf7\x0c\x86\xe3\x07\x80\x23\x66\x23" "\x3e\x6e\xbb\x0b\xb4\x48\xfe\x45\xeb\x45\xc4\x73\x6d\x77\x02\x98\x6b\x55" "\xdb\x1d\xe0\x50\x6c\x6d\xaf\xaf\x56\x29\xdf\xaa\xf9\x7a\x90\xc6\x77\xcf" "\xd7\x82\xec\xcb\x7f\xa3\xda\xd9\x2e\x6f\x3f\x6e\x3a\xcd\xe8\x35\x26\xb3" "\x7a\x7e\x6d\x46\x37\x9e\x99\xd0\x9f\x67\x67\xd4\x87\x79\x92\xf3\xef\x8c" "\xe6\x7f\x6d\xb7\x7d\x90\xd6\x3b\xec\xfc\x67\x65\x52\xfe\xc3\xfd\x3c\xd5" "\x42\x7f\xda\x96\xf3\xef\x8e\xe6\x3f\xe2\xf8\xe4\xdf\x19\x9b\x7f\xa9\x72" "\xfe\xbd\x47\xca\xbf\x2b\x7f\x00\x00\x00\x00\x00\x98\x63\xf9\xdf\xff\x4f" "\xcd\xd5\xf9\xdf\xc1\xe3\xee\xce\x54\x0f\x3b\xff\xbb\x72\x68\x8f\x0a\x00" "\x00\x00\x00\x00\x00\x00\x87\x6b\x6b\x7b\x7d\x35\xdf\xf7\x9a\xcf\xff\x7f" "\x61\xcc\x7a\xee\xff\x3c\x9e\x72\xfe\x95\xfc\x8b\x94\xf3\x4f\xf7\xff\xef" "\x5d\x78\xf3\xd2\xc8\x7a\xdd\xc6\xfc\xfd\xb7\x1e\xe4\xff\xef\xed\xf5\xd5" "\x3f\xdc\xf9\xd7\xe7\xf3\xf4\xa0\xf9\x2f\xe4\x99\x2a\x3d\xb3\xaa\xf4\x8c" "\xa8\xd2\x23\x55\xbd\x34\x7d\xcc\x1d\x9b\x60\xb3\xdf\x1d\x0c\x1f\xa9\x5f" "\x75\xba\xbd\x74\xcd\x4f\xdd\x7f\x27\x6e\xc4\xcd\x58\x8b\xf3\xfb\xd6\xed" "\xa4\xe3\xe1\x41\xfb\x85\x7d\xed\xc3\x9e\xf6\x77\xda\xeb\xee\x6e\xfb\xc5" "\x7d\xed\xbd\xbd\xf6\xbc\xfd\xa5\x7d\xed\xfd\x74\xa5\x53\xbd\x94\xdb\xcf" "\xc6\x6a\xfc\x2c\x6e\xc6\xdb\x3b\xed\xc3\xb6\x85\x29\xfb\xbf\x38\xa5\xbd" "\x9e\xd2\x9e\xf3\xef\x3a\xfe\x8b\x94\xf3\xef\x35\x7e\x86\xf9\x2f\xa7\xf6" "\x6a\x64\x3a\x74\xff\xc3\xce\xa7\x8e\xfb\xe6\x74\xdc\xe3\xbc\x79\xe3\x8b" "\xbf\x3e\x7f\xf8\xbb\x33\xd5\x66\x74\xf7\xf6\xad\x69\xb8\x7f\x2f\xb4\xd0" "\x9f\x9d\xff\x27\x27\x06\xf1\x8b\xdb\x6b\xb7\xce\xde\xbd\x7e\xe7\xce\xad" "\x0b\x91\x26\xfb\x96\x5e\x8c\x34\xf9\x8c\xe5\xfc\xfb\xe9\x27\xe7\xff\xd2" "\x8b\xbb\xed\xf9\xef\x7e\xf3\x78\xbd\xff\xe1\xe0\x91\xf3\x9f\x17\x9b\xd1" "\x9b\x98\xff\x8b\x8d\xf9\xe1\xfe\xbe\x3c\xe3\xbe\xb5\x21\xe7\x3f\x48\x3f" "\x39\xff\xb7\x53\xfb\xf8\xe3\xff\x28\xe7\x3f\xf9\xf8\x7f\xa5\x85\xfe\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xc3\xd4\x75\xbd\x73\x8b" "\xe8\x9b\x11\x71\x39\xdd\xff\xd3\xd6\xbd\x99\x00\xc0\x6c\xe5\xd7\xff\x3a" "\xc9\xcb\x67\x55\x77\x1f\x77\xfb\x3f\xed\xdf\x8f\xb6\xfa\xaf\x56\xcf\xb8" "\xae\xe6\xac\x3f\x33\xad\x3f\xa9\xe7\xab\x3f\xea\xb9\xac\xff\x37\x67\xfd" "\x99\xbb\xba\xa9\x1e\xef\x8d\x66\x11\x11\x7f\x6b\x6e\x33\x7c\xcf\xf0\xab" "\x71\xbf\x0c\x00\x98\x67\x9f\x44\xc4\x3f\xdb\xee\x04\xad\x91\x7f\xc1\xf2" "\xf7\xfd\x0d\xa7\x67\xda\xee\x0c\x30\x53\xb7\xdf\xff\xe0\x27\xd7\x6f\xde" "\x5c\xbb\x75\xbb\xed\x9e\x00\x00\x00\x00\x00\x00\x00\x00\x8f\x2b\x8f\xff" "\xb9\xd2\x18\xff\xf9\x4c\x5d\xd7\xf7\x46\xd6\xdb\x37\xfe\xeb\x5b\xb1\xf2" "\xa4\xe3\x7f\xf6\xf2\xcc\xde\x00\xa3\x13\x06\xaa\xee\x3e\xfa\x3e\x3d\xcc" "\x66\x67\xd0\xed\x34\x86\x1b\x7f\x3e\x26\x8d\xff\xdd\xdf\x9b\x7b\xd8\xf8" "\xdf\xbd\x29\x8f\xd7\x9f\xd2\x3e\x98\xd2\xbe\x30\xa5\x7d\x71\x4a\xfb\xd8" "\x1b\x3d\x1a\x72\xfe\xcf\x37\xc6\x3b\x3f\x13\x11\xa7\x47\x86\x5f\x2f\x61" "\xfc\xd7\xd1\x31\xef\x4b\x90\xf3\x7f\xa1\xf1\x7c\x1e\xe6\xff\x95\x91\xf5" "\x9a\xf9\xd7\xbf\x3b\xca\xf9\x77\xf6\xe5\x7f\xee\xce\x7b\x3f\x3f\x77\xfb" "\xfd\x0f\x5e\xbd\xf1\xde\xf5\x77\xd7\xde\x5d\xfb\xe9\xa5\x0b\x17\xce\x5f" "\xba\x7c\xf9\xca\x95\x2b\xe7\xde\xb9\x71\x73\xed\xfc\xee\x7f\x5b\xec\xf1" "\xe1\xca\xf9\xe7\xb1\xaf\x5d\x07\x5a\x96\x9c\x7f\xce\x5c\xfe\x65\xc9\xf9" "\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\xcb\xa9\x96\x7f\x59\x72\xfe\xf9\xfd\x9e" "\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f\x96\x9c\xff\xcb\xa9\x96\x7f\x59\x72" "\xfe\x5f\x4d\xb5\xfc\xcb\x92\xf3\x7f\x25\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9" "\x96\x7f\x59\x72\xfe\xaf\xa6\x5a\xfe\x65\xc9\xf9\x9f\x4d\xb5\xfc\xcb\x92" "\xf3\x3f\x97\xea\x03\xe6\xbf\x74\xd8\xfd\x62\x36\x72\xfe\xf9\x0c\x97\xe3" "\xbf\x2c\x39\xff\x7c\x65\x83\xfc\xcb\x92\xf3\xbf\x98\x6a\xf9\x97\x25\xe7" "\x7f\x29\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a" "\xfe\x65\xc9\xf9\x5f\x4e\xb5\xfc\xcb\x92\xf3\xff\x46\xaa\xe5\x5f\x96\x9c" "\xff\x95\x54\xcb\xbf\x2c\x39\xff\x6f\xa6\x5a\xfe\x65\xc9\xf9\x7f\x2b\xd5" "\xf2\x2f\x4b\xce\xff\xf5\x54\xcb\xbf\x2c\x39\xff\x6f\xa7\x5a\xfe\x65\xc9" "\xf9\x7f\x27\xd5\xf2\x2f\x4b\xce\xff\xbb\xa9\x96\x7f\x59\x72\xfe\x6f\xa4" "\x5a\xfe\x65\x79\xf0\xfd\xff\x66\xcc\x98\x31\x93\x67\xda\xfe\xcb\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x9a\xc5\xe5\xc4\x6d\xef\x23\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x67\x07\x0e\x04\x00\x00\x00\x00" "\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20" "\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\xd8\xbb\xb7\x18\xb9\xee\xfa\x0e\xe0\x67\xf6\xe6\xb5\x13\x12\x03\x21" "\x75\x52\x13\xd6\x8e\x31\xc6\xd9\x64\xd7\x97\xf8\x42\xeb\x62\xc2\xb5\xe1" "\x56\x12\x42\xa1\x17\x6c\xd7\xbb\x36\x0b\xbe\xe1\xb5\x4b\xa0\x51\xed\x28" "\x50\x22\x61\x54\x54\xd1\x36\x3c\xb4\x05\x84\xda\xbc\x54\x58\x55\x1e\x68" "\x15\x50\x1e\x50\xab\x4a\x95\x48\xfb\x40\x5f\x10\x15\x2a\x0f\x51\x15\x50" "\x40\xaa\x4a\x2b\xc8\x56\x33\xe7\xff\xff\xef\xcc\xec\x5c\x76\xbd\xe3\xcd" "\xcc\x39\x9f\x8f\x94\xfc\xb2\x33\x67\xe6\x9c\x39\xf3\x9f\xd9\xfd\xda\xf9" "\xee\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf5\xb6\xbc" "\x79\xf6\xb3\x95\x2c\xcb\x2a\x95\x4a\x7e\xc1\xc6\x2c\xbb\xb1\x3a\xd7\x4f" "\x6c\xac\x5d\xf2\x86\x97\xf6\xf8\x00\x00\x00\x80\xd5\xfb\x45\xed\xdf\x2f" "\xdc\x9c\x2e\x38\xbc\x8c\x1b\xd5\x6d\xf3\x4f\x77\x7c\xe7\xa9\x85\x85\x85" "\x85\xec\x83\xc3\x7f\x3a\xfa\xc5\x85\x85\x74\xc5\x44\x96\x8d\xae\xcb\xb2" "\xda\x75\xd1\xd5\x1f\x7c\xa8\x52\xbf\x4d\xf0\x58\x36\x5e\x19\xaa\xfb\x7a" "\xa8\xcb\xee\x87\xbb\x5c\x3f\xd2\xe5\xfa\xd1\x2e\xd7\x8f\x75\xb9\x7e\x5d" "\x97\xeb\xc7\xbb\x5c\xbf\xe4\x04\x2c\xb1\x3e\xab\xa4\x3b\xdb\x56\xfb\xcf" "\x8d\xf9\x29\xcd\x6e\xc9\x46\x6b\xd7\x6d\x6b\x71\xab\xc7\x2a\xeb\x86\xaa" "\xe7\x2e\xdd\x36\xab\xd4\x6e\xb3\x30\x7a\x22\x9b\xcb\x4e\x65\xb3\xd9\x74" "\xc3\xf6\xf9\xb6\x95\xda\xf6\x4f\x6f\xa9\xee\xeb\x1d\x59\xdc\xd7\x50\xdd" "\xbe\x36\x57\x57\xc8\x4f\x1e\x39\x1e\x8f\xa1\x12\xce\xf1\xb6\x86\x7d\x2d" "\xde\x67\xf4\xa3\x37\x65\x13\x3f\xfd\xc9\x23\xc7\xff\xfa\xc2\xf3\xb7\xb5" "\x9a\x5d\x4f\x43\xc3\xfd\xe5\xc7\xb9\x63\x6b\xf5\x38\x3f\x1d\x2e\xc9\x8f" "\xb5\x92\xad\x4b\xe7\x24\x1e\xe7\x50\xdd\x71\x6e\x6e\xf1\x9c\x0c\x37\x1c" "\x67\xa5\x76\xbb\xea\x7f\x37\x1f\xe7\x0b\xcb\x3c\xce\xe1\xc5\xc3\x5c\x53" "\xcd\xcf\xf9\x78\x36\x54\xfb\xef\x67\x6b\xe7\x69\xa4\x92\xb5\x38\x4f\x9b" "\xc3\x65\x3f\xbb\x33\xcb\xb2\xcb\x8b\x87\xdd\xbc\xcd\x92\x7d\x65\x43\xd9" "\x86\x86\x4b\x86\x16\x9f\x9f\xf1\x7c\x45\x56\xef\xa3\xba\x94\x5e\x91\x8d" "\xac\x68\x9d\x6e\x59\xc6\x3a\xad\xce\x99\x6d\x8d\xeb\xb4\xf9\x35\x11\x9f" "\xff\x2d\xe1\x76\x23\x6d\x8e\xa1\xfe\x69\xfa\xd1\xa3\x63\x75\xcf\xfb\xcf" "\x17\xae\x65\x9d\x46\xd5\x47\xdd\xee\xb5\xd2\xbc\x06\x7b\xfd\x5a\xe9\x97" "\x35\x18\xd7\xc5\xb3\xb5\x07\xfd\x78\xcb\x35\xb8\x2d\x3c\xfe\x47\xb6\xb7" "\x5f\x83\x2d\xd7\x4e\x8b\x35\x98\x1e\x77\xdd\x1a\xdc\xda\x6d\x0d\x0e\x8d" "\x0d\xd7\x8e\x39\x3d\x09\x95\xda\x6d\x16\xd7\xe0\xae\x86\xed\x87\x6b\x7b" "\xaa\xd4\xe6\x73\xdb\xdb\xae\xc1\x2d\xd5\x7d\x4d\x5d\x38\x7d\x6e\x6a\xfe" "\x93\x9f\xba\x7b\xee\xf4\xb1\x93\xb3\x27\x67\xcf\xec\xd9\xb5\x6b\x7a\xcf" "\xbe\x7d\x07\x0e\x1c\x98\x3a\x31\x77\x6a\x76\x3a\xff\xf7\x35\x9e\xed\xfe" "\xb7\x21\x1b\x4a\xaf\x81\xad\xe1\xdc\xc5\xd7\xc0\xeb\x9a\xb6\xad\x5f\xaa" "\x0b\x5f\x19\x5b\xf2\xfe\x7b\xad\xaf\xc3\xf1\x0e\xaf\xc3\x8d\x4d\xdb\xf6" "\xfa\x75\x38\xd2\xfc\xe0\x2a\x6b\xf3\x82\x5c\xba\xa6\xf3\xd7\xc6\xfb\xab" "\x27\x7d\xfc\xca\x50\xd6\xe6\x35\x56\x7b\x7e\x76\xae\xfe\x75\x98\x1e\x77" "\xdd\xeb\x70\xa4\xee\x75\xd8\xf2\x7b\x4a\x8b\xd7\xe1\xc8\x32\x5e\x87\xd5" "\x6d\xce\xed\x5c\xde\xcf\x2c\x23\x75\xff\xb4\x3a\x86\xf6\xdf\x0b\x56\xb7" "\x06\x37\xd6\xad\xc1\xe6\x9f\x47\x9a\xd7\x60\xaf\x7f\x1e\xe9\x97\x35\x38" "\x1e\xd6\xc5\xf7\x76\xb6\xff\x5e\xb0\x39\x1c\xef\xe3\x93\x2b\xfd\x79\x64" "\x78\xc9\x1a\x4c\x0f\x37\xbc\xf7\x54\x2f\x49\x3f\xef\x8f\x1f\xa8\x8d\x56" "\xeb\xf2\xf6\xea\x15\x37\x8c\x65\x17\xe7\x67\xcf\xdf\xf3\xf0\xb1\x0b\x17" "\xce\xef\xca\xc2\x58\x13\xaf\xac\x5b\x2b\xcd\xeb\x75\x43\xdd\x63\xca\x96" "\xac\xd7\xa1\x15\xaf\xd7\xc3\x73\x77\x3c\x7e\x7b\x8b\xcb\x37\x86\x73\x35" "\x7e\x77\xf5\x5f\xe3\x6d\x9f\xab\xea\x36\x7b\xef\xe9\xfc\x5c\xd5\xbe\xbb" "\xb5\x3e\x9f\x0d\x97\xee\xce\xc2\xe8\xb1\xb5\x3e\x9f\xad\xbe\x9b\x57\xcf" "\xe7\x58\x96\x7d\xe9\xdb\x8f\x3e\xf0\xcd\x47\xbe\xf4\xe6\xb6\xe7\xb3\x9a" "\x37\x3f\x3d\xb5\xfa\x9f\xc5\x53\x2e\xad\x7b\xff\x1d\x6d\xf3\xfe\x1b\x73" "\xff\x8b\xf9\xfe\xd2\x5d\x3d\x36\x3c\x3a\x92\xbf\x7e\x87\xd3\xd9\x19\x6d" "\x78\x3f\x6e\x7c\xaa\x46\x6a\xef\x5d\x95\xda\xbe\x5f\x98\x5a\xde\xfb\xf1" "\x68\xf8\x67\xad\xdf\x8f\x6f\xe9\xf0\x7e\xbc\xa9\x69\xdb\x5e\xbf\x1f\x8f" "\x36\x3f\xb8\xf8\x7e\x5c\xe9\xf6\xa7\x1d\xab\xd3\xfc\x7c\x8e\x87\x75\x72" "\x6a\xba\xf3\xfb\x71\x75\x9b\x4d\xbb\x57\xba\x26\x47\x3a\xbe\x1f\xdf\x19" "\x66\x25\x9c\xff\xd7\x87\xa4\x90\x72\x51\xdd\xda\x69\xb7\x6e\xd3\xbe\x46" "\x46\x46\xc3\xe3\x1a\x89\x7b\x68\x5c\xa7\x7b\x1a\xb6\x1f\x0d\xd9\xac\xba" "\xaf\x27\x77\x5f\xdb\x3a\xdd\x71\x67\x7e\x5f\xc3\xe9\xd1\x2d\x5a\xab\x75" "\x3a\xd1\xb4\x6d\xaf\xd7\x69\xfa\xb3\xaf\x76\xeb\xb4\xd2\xed\x4f\xdf\xae" "\x4d\xf3\xf3\x39\x1e\xd6\xc5\x2d\x7b\x3a\xaf\xd3\xea\x36\xcf\xec\x5d\xfd" "\x7b\xe7\xfa\xf8\x9f\x75\xef\x9d\x63\xdd\xd6\xe0\xe8\xf0\x58\xf5\x98\x47" "\xd3\x22\xac\xbd\xdf\x67\x0b\xeb\xe3\x1a\xbc\x27\x3b\x9e\x9d\xcd\x4e\x65" "\x33\xb5\x6b\xc7\x6a\xeb\xa9\x52\xdb\xd7\xe4\xbd\xcb\x5b\x83\x63\xe1\x9f" "\xb5\x7e\xaf\xdc\xd4\x61\x0d\xee\x68\xda\xb6\xd7\x6b\x30\x7d\x1f\x6b\xb7" "\xf6\x2a\x23\x4b\x1f\x7c\x0f\x34\x3f\x9f\xe3\x61\x5d\x3c\x71\x6f\xe7\x35" "\x58\xdd\xe6\x2d\xfb\x7b\xfb\xb3\xeb\x8e\x70\x49\xda\xa6\xee\x67\xd7\xe6" "\x3f\x5f\x6b\xf7\x67\x5e\xb7\x37\x9d\xa6\xeb\xb5\x56\x46\xc2\x71\x7e\x7b" "\x7f\xe7\x3f\x9b\xad\x6e\x73\xea\xc0\x4a\x73\x66\xe7\xf3\x74\x57\xb8\xe4" "\x86\x16\xe7\xa9\xf9\xf5\xdb\xee\x35\x35\x93\xad\xcd\x79\xda\x14\x8e\xf3" "\xf9\x03\xed\xcf\x53\xf5\x78\xaa\xdb\x7c\xf1\xe0\x32\xd7\xd3\xe1\x2c\xcb" "\x2e\x7d\xfc\xbe\xda\x9f\xf7\x86\xbf\x5f\xf9\xbb\x8b\xdf\x7d\xaa\xe1\xef" "\x5d\x5a\xfd\x9d\xce\xa5\x8f\xdf\xf7\xe3\x97\x9d\xf8\xc7\x95\x1c\x3f\x00" "\x83\xef\xc5\x7c\x6c\xc8\xbf\xd7\xd5\xfd\xcd\xd4\x72\xfe\xfe\x1f\x00\x00" "\x00\x18\x08\x31\xf7\x0f\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\xc7" "\xff\x2b\x3c\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x1f\x09\x33\x29\x49\xfe" "\xdf\xf4\x96\xe7\xe7\x5e\xbc\x94\xa5\x66\xfe\x42\x10\xaf\x4f\xa7\xe1\xfe" "\x7c\xbb\xd8\x71\x9d\x0e\x5f\x4f\x2c\x2c\xaa\x5e\x7e\xdf\xd7\x66\xff\xfb" "\x1f\x2e\x2d\x6f\xdf\x43\x59\x96\xfd\xfc\xfe\x3f\x68\xb9\xfd\xa6\xfb\xe3" "\x71\xe5\x26\xc2\x71\x5e\x7d\x6b\xe3\xe5\x4b\x3c\x75\xf7\xb2\xf6\x7d\xf4" "\xa1\x4b\x69\xbf\xf5\xfd\xf5\x2f\x87\xfb\x8f\x8f\x67\xb9\xcb\xa0\x55\x05" "\x77\x3a\xcb\xb2\xa7\x6f\xfe\x7c\x6d\x3f\x13\x1f\xba\x52\x9b\xcf\xdc\x7f" "\xb4\x36\x1f\xb8\xfc\xf8\x63\xd5\x6d\x5e\x38\x98\x7f\x1d\x6f\xff\xdc\x2b" "\xf3\xed\xff\x22\x94\x7f\x0f\x9f\x38\xd6\x70\xfb\xe7\xc2\x79\xf8\x61\x98" "\xd3\xef\x6c\x7d\x3e\xe2\xed\xbe\x7e\xe5\xf5\x9b\xf7\x7f\x60\x71\x7f\xf1" "\x76\x95\xad\x37\xd5\x1e\xf6\x13\x1f\xce\xef\x37\xfe\x9e\x9c\x2f\x3c\x96" "\x6f\x1f\xcf\x73\xbb\xe3\xff\xe6\xe7\x9e\xfc\x7a\x75\xfb\x87\x5f\xdb\xfa" "\xf8\x2f\x0d\xb5\x3e\xfe\x27\xc3\xfd\x7e\x2d\xcc\xff\x7d\x75\xbe\x7d\xfd" "\x73\x50\xfd\x3a\xde\xee\x33\xe1\xf8\xe3\xfe\xe2\xed\xee\xf9\xea\xb7\x5a" "\x1e\xff\xd5\xcf\xe6\xdb\x9f\x7b\x5b\xbe\xdd\xd1\x30\xe3\xfe\x77\x84\xaf" "\xb7\xbd\xed\xf9\xb9\xfa\xf3\xf5\x70\xe5\x58\xc3\xe3\xca\xde\x9e\x6f\x17" "\xf7\x3f\xfd\xdd\x3f\xae\x5d\x1f\xef\x2f\xde\x7f\xf3\xf1\x8f\x1f\xb9\xd2" "\x70\x3e\x9a\xd7\xc7\x33\xff\x96\xdf\xcf\x54\xd3\xf6\xf1\xf2\xb8\x9f\xe8" "\xef\x9b\xf6\x5f\xbd\x9f\xfa\xf5\x19\xf7\xff\xe4\x1f\x1d\x6d\x38\xcf\xdd" "\xf6\x7f\xf5\x81\xe7\x5e\x5d\xbd\xdf\xe6\xfd\xdf\xd5\xb4\xdd\xb9\x8f\xef" "\xac\xed\x7f\xf1\xfe\x1a\x7f\x63\xd3\x5f\x7e\xe6\xf3\x2d\xf7\x17\x8f\xe7" "\xf0\xdf\x9e\x6b\x78\x3c\x87\xdf\x17\x5e\xc7\x61\xff\x4f\x7c\x38\xac\xc7" "\x70\xfd\xff\x5d\xcd\xef\xaf\xf9\xb7\x2b\x1c\x7d\x5f\xe3\xfb\x4f\xdc\xfe" "\xcb\x1b\x2f\x35\x3c\x9e\xe8\x1d\x3f\xcd\xf7\x7f\xf5\x8d\x27\x6b\x73\xdd" "\xf8\xfa\x0d\x37\xdc\xf8\xb2\x9b\x2e\xbf\xa6\x7a\xee\xb2\xec\xd9\x75\xf9" "\xfd\x75\xdb\xff\xc9\xbf\x3a\xdb\x70\xfc\x5f\xb9\x35\x3f\x1f\xf1\xfa\xd8" "\xd1\x6f\xde\x7f\x3b\x71\xff\xe7\x3f\x31\x79\xe6\xec\xfc\xc5\xb9\x99\x74" "\x56\x1f\xb9\xb9\xf6\xbb\x73\xde\x95\x1f\x4f\x3c\xde\x9b\xc3\x7b\x6b\xf3" "\xd7\x47\xce\x5e\xf8\xc8\xec\xf9\x89\xe9\x89\xe9\x2c\x9b\x28\xee\xaf\xd0" "\xbb\x66\x5f\x0d\xf3\xc7\xf9\xb8\xdc\x79\xeb\x85\x25\xef\xa0\x3b\x1f\x0a" "\xcf\xe7\xed\x7f\xfe\xf4\x86\xed\xff\xfa\xb9\x78\xf9\xbf\xbf\x3f\xbf\xfc" "\xca\x3b\xf3\xef\x5b\xaf\x0b\xdb\x7d\x21\x5c\xbe\x31\x3c\x7f\x2b\xdb\xff" "\x52\x4f\x6c\xb9\xb5\xf6\xfa\xae\x3c\x13\x8e\x70\x61\xe9\xef\x0b\x5e\x8d" "\xcd\xdb\xfe\xeb\xc0\xb2\x36\x0c\x8f\xbf\xf9\xe7\x82\xb8\xde\xcf\xbd\xea" "\x23\xb5\xf3\x50\xbd\xae\xf6\x7d\x23\xbe\xae\x57\x79\xfc\xdf\x9f\xc9\xef" "\xe7\x1b\xe1\xbc\x2e\x84\xdf\xcc\xbc\xf5\xd6\xc5\xfd\xd5\x6f\x1f\x7f\x37" "\xc2\x95\x07\xf3\xd7\xfb\xaa\xcf\x5f\x78\x9b\x8b\xcf\xeb\xdf\x84\xe7\xfb" "\xdd\x3f\xcc\xef\x3f\x1e\x57\x7c\xbc\xdf\x0f\x3f\xc7\x7c\x6b\x53\xe3\xfb" "\x5d\x5c\x1f\xdf\xb8\x34\xd4\x7c\xff\xb5\xdf\xe2\x71\x39\xbc\x9f\x64\x97" "\xf3\xeb\xe3\x56\xf1\x7c\x5f\x79\xe1\xd6\x96\x87\x17\x7f\x0f\x49\x76\xf9" "\xb6\xda\xd7\x7f\x92\xee\xe7\xb6\x15\x3d\xcc\x76\xe6\x3f\x39\x3f\x75\x6a" "\xee\xcc\xc5\x87\xa7\x2e\xcc\xce\x5f\x98\x9a\xff\xe4\xa7\x8e\x9c\x3e\x7b" "\xf1\xcc\x85\x23\xb5\xdf\xe5\x79\xe4\xa3\xdd\x6e\xbf\xf8\xfe\xb4\xa1\xf6" "\xfe\x34\x33\xbb\x6f\x6f\x56\x7b\xb7\x3a\x9b\x8f\xeb\xec\xa5\x3e\xfe\x73" "\x0f\x1d\x9f\xd9\x3f\xbd\x7d\x66\xf6\xc4\xb1\x8b\x27\x2e\x3c\x74\x6e\xf6" "\xfc\xc9\xe3\xf3\xf3\xc7\x67\x67\xe6\xb7\x1f\x3b\x71\x62\xf6\x13\xdd\x6e" "\x3f\x37\x73\x68\xd7\xee\x83\x7b\xf6\xef\x9e\x3c\x39\x37\x73\xe8\xc0\xc1" "\x83\x7b\x0e\x4e\xce\x9d\x39\x5b\x3d\x8c\xfc\xa0\xba\xd8\x37\xfd\xb1\xc9" "\x33\xe7\x8f\xd4\x6e\x32\x7f\x68\xef\xc1\x5d\xf7\xde\xbb\x77\x7a\xf2\xf4" "\xd9\x99\xd9\x43\xfb\xa7\xa7\x27\x2f\x76\xbb\x7d\xed\x7b\xd3\x64\xf5\xd6" "\xbf\x3f\x79\x7e\xf6\xd4\xb1\x0b\x73\xa7\x67\x27\xe7\xe7\x3e\x35\x7b\x68" "\xd7\xc1\x7d\xfb\x76\x77\xfd\x6d\x80\xa7\xcf\x9d\x98\x9f\x98\x3a\x7f\xf1" "\xcc\xd4\xc5\xf9\xd9\xf3\x53\xf9\x63\x99\xb8\x50\xbb\xb8\xfa\xbd\xaf\xdb" "\xed\x29\xa6\xf9\xff\xc8\x7f\x9e\x6d\x56\xc9\x7f\x11\x5f\xf6\xde\xbb\xf6" "\xa5\xdf\xcf\x5a\xf5\xb5\x47\xdb\xde\x55\xbe\x49\xd3\x2f\x10\x7d\x3e\xfc" "\x2e\x9a\x7f\x7e\xf9\xb9\x03\xcb\xf9\x3a\xe6\xfe\xd1\x30\x93\x92\xe4\x7f" "\x00\x00\x00\x28\x83\x98\xfb\xc7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98" "\xfb\xd7\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x8f\x87\x99\x94\x24" "\xff\x17\xae\xff\xbf\xe9\xd2\xb2\xf6\xaf\xff\xaf\xff\x5f\x7f\xbe\xf4\xff" "\x4b\xd6\xff\x7f\xb0\xdf\xfa\xff\xf9\xfb\x85\xfe\x7f\x6f\xac\xb6\x7f\xaf" "\xff\x1f\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x03\xfd\xd6\xff\x8f" "\xb9\x7f\x7d\x96\x95\x32\xff\x03\x00\x00\x40\x19\xc4\xdc\xbf\x21\xcc\x44" "\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x86\x30\x13\xf9\x1f\x00\x00\x00\x0a" "\x23\xe6\xfe\x1b\xc3\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x5b\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xff\x54\x56" "\xae\xfe\xff\xe5\x5e\x1e\xbf\xfe\xbf\xfe\x3f\x4b\xf5\x5b\xff\x3f\xe6\xfe" "\x97\x85\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\x7f\x53\x98\x89\xfc" "\x0f\x00\x00\x00\x85\x11\x73\xff\xcd\x61\x26\xf2\x3f\x00\x00\x00\x14\x46" "\xcc\xfd\x1b\xc3\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\x5b\xef\x5f\xff\x7f\x30\xe9\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xcf\xff\xd7" "\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73\xff\xcb\xc3\x4c\x4a\x92\xff\x01" "\x00\x00\xa0\x0c\x62\xee\x7f\x45\x98\x89\xfc\x0f\x00\x00\x00\xfd\x67\xe4" "\xda\x6e\x16\x73\xff\x2b\xc3\x4c\x96\xe4\xff\x6b\xdc\x01\x00\x00\x00\xf0" "\x92\x8b\xb9\xff\x96\xac\xa9\x08\x5e\x92\xbf\xff\x1f\xdc\xfe\xff\x8d\x6d" "\x1e\x90\xfe\x7f\x56\xb8\xfe\xff\xba\x74\x9d\xfe\xbf\xfe\x7f\xd6\x97\xfd" "\xff\xe1\x4c\xff\xbf\x7f\xe8\xff\x77\xa6\xff\xdf\x85\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\x3f\x3d\xd5\x6f\xfd\xff\x5a\xee\xcf\xc6\xb3\x57\x85\x99\x94\x24" "\xff\x03\x00\x00\x40\x19\xc4\xdc\x7f\x6b\x98\x89\xfc\x0f\x00\x00\x00\x85" "\x11\x73\xff\x2f\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x6f\x0a\x33" "\x29\x49\xfe\x1f\xdc\xfe\x7f\xbb\x07\xa4\xff\x9f\x15\xae\xff\xef\xf3\xff" "\xf5\xff\xfb\xbd\xff\xef\xf3\xff\xfb\x89\xfe\x7f\x67\xfa\xff\x5d\xe8\xff" "\xeb\xff\xeb\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\xb6\x30\x93\x92" "\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\x6f\x0f\x33\x91\xff\x01\x00\x00\xa0" "\x30\x62\xee\xff\xe5\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xcd\x61" "\x26\x25\xc9\xff\xfa\xff\x7d\xde\xff\x8f\xcd\x51\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x65\xd1\xff\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\x7a\xaa\xdf\xfa\xff\x31\xf7\xbf\x3a\xcc\xa4\x24\xf9\x1f\x00\x00" "\x00\xca\x20\xe6\xfe\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x5f" "\x13\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x3f\x11\x66\x52\x92\xfc\xaf" "\xff\xdf\xe7\xfd\xff\xbc\x07\x3f\xe6\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\x97\x47\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\x7b\xd2\xff\x5f\xb8" "\xa4\xff\xaf\xff\x4f\xae\xdf\xfa\xff\x31\xf7\x6f\x09\x33\x29\x49\xfe\x07" "\x00\x00\x80\x32\x88\xb9\x7f\x6b\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73" "\xff\x9d\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xdb\xc2\x4c\x4a\x92" "\xff\xf5\xff\x07\xa2\xff\x9f\xe9\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x2f" "\x8f\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xfb\xfc\x7f\xfd\x7f\x7a\xaa" "\xdf\xfa\xff\x31\xf7\xbf\x36\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6" "\xfe\xed\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xaf\x0b\x33\x91\xff" "\x01\x00\x00\xa0\x30\x62\xee\xdf\x11\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xdf\x7a\xff\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff\x2e" "\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\xfa\x30" "\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\x77\x86\x99\xc8\xff\x00\x00" "\x00\x50\x18\x31\xf7\xdf\x15\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x3f" "\x19\x66\x52\x92\xfc\xaf\xff\xbf\x46\xfd\xff\xea\x05\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\xd7\x9d\xfe\x7f\x67\xfa\xff\x5d\xe8\xff\xeb\xff\xeb" "\xff\xeb\xff\xd3\x53\xfd\xd6\xff\x8f\xb9\xff\xee\x30\x93\x92\xe4\x7f\x00" "\x00\x00\x28\x83\x98\xfb\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee" "\x9f\x0a\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x9f\x0e\x33\x29\x49\xfe" "\xd7\xff\xf7\xf9\xff\xfa\xff\xfa\xff\x2b\xea\xff\xbf\x66\xf1\x7e\xf5\xff" "\x73\xfa\xff\xfd\x45\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff\x5f\xf2\xfe" "\xff\xa8\xfe\x3f\x85\xd2\x6f\xfd\xff\x98\xfb\x77\x85\x99\x94\x24\xff\x03" "\x00\x00\x40\x19\xc4\xdc\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9" "\x7f\x4f\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xde\x30\x93\x92\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xdf\x7a\xff\xfa\xff\x83\x49" "\xff\xbf\xb3\xde\xf7\xff\xe3\x43\xd4\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xfa" "\xff\x2c\xd5\x6f\xfd\xff\x98\xfb\xef\x0d\x33\x29\x49\xfe\x07\x00\x00\x80" "\x32\x88\xb9\x7f\x5f\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xfe\x30" "\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x03\x61\x26\x25\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\xaf\xff\x3f\x98\xf4\xff\x3b\xf3" "\xf9\xff\x5d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x4a\x0f\xfe\x61\xfd\x57" "\xfd\xd6\xff\x8f\xb9\xff\x60\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc" "\xfd\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x95\x30\x13\xf9" "\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x5f\x0d\x33\x29\x49\xfe\xd7\xff\x6f\xe8" "\x9e\x57\x1f\xae\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x8d\xfe\xff\x60\xd2\xff" "\xef\x4c\xff\xbf\x0b\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x7a\xaa\x6d\xff\x3f" "\x44\xef\xb5\xee\xff\xc7\xdc\x7f\x28\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca" "\x20\xe6\xfe\x5f\x0b\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x7f\x63\x98" "\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xe1\x30\x93\x92\xe4\x7f\xfd\x7f" "\x9f\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7a\xff\x6b\xdd\xff\x1f\x8b\xf7\xab" "\xff\xbf\x2a\xfa\xff\x9d\xe9\xff\x77\xa1\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x4f\xf5\xdb\xe7\xff\xc7\xdc\xff\xa6\x30\x93\x92\xe4\x7f\x00\x00\x00\x28" "\x83\x98\xfb\xef\x0b\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x7f\x73\x98" "\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x5b\xc2\x4c\x4a\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x5b\xef\xdf\xe7\xff\x0f\x26\xfd\xff\xce" "\xf4\xff\xbb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xa7\xfa\xad\xff\x1f\x73" "\xff\x5b\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\x7f\x5b\x98\x89" "\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xdb\xc3\x4c\xe4\x7f\x00\x00\x00\x28" "\x8c\x98\xfb\xdf\x11\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf" "\xff\xdf\x7a\xff\xfa\xff\x83\x49\xff\xbf\x33\xfd\xff\x2e\xf4\xff\xf5\xff" "\xf5\xff\xf5\xff\xe9\xa9\x7e\xeb\xff\xc7\xdc\xff\xeb\x61\x26\x25\xc9\xff" "\x00\x00\x00\x50\x06\x31\xf7\xdf\x1f\x66\x22\xff\x03\x00\x00\x40\x61\xc4" "\xdc\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x77\x85\x99\x94" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7\xde\xbf\xfe\xff\x60" "\xd2\xff\xef\x6c\xc0\xfa\xff\xbf\xb8\x29\x5c\xae\xff\x9f\xd3\xff\xef\xef" "\xe3\x5f\x69\xff\x7f\xa4\xe9\xeb\xeb\xd2\xff\xff\x41\xbb\xfe\xff\xc2\xba" "\xe6\xdb\xeb\xff\x73\x3d\xf4\x5b\xff\x3f\xe6\xfe\x77\x87\x99\x94\x24\xff" "\x03\x00\x00\x40\x19\xc4\xdc\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23" "\xe6\xfe\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\xff\x46\x98\x49" "\x49\xf2\xbf\xfe\x7f\xf5\x38\x16\xdb\xcb\xfa\xff\x45\xed\xff\x0f\xe9\xff" "\xeb\xff\xeb\xff\x97\x84\xfe\x7f\x67\x03\xd6\xff\xf7\xf9\xff\x4d\xf4\xff" "\xfb\xfb\xf8\x7d\xfe\xbf\xfe\x3f\x4b\xf5\x5b\xff\x3f\xe6\xfe\xf7\x85\x99" "\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xff\x40\x98\x89\xfc\x0f\x00\x00" "\x00\x85\x11\x73\xff\x83\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xef" "\x0f\x33\x29\x49\xfe\xd7\xff\xf7\xf9\xff\xe5\xe8\xff\xfb\xfc\xff\x4c\xff" "\x5f\xff\xbf\x24\xf4\xff\x3b\xd3\xff\xef\x42\xff\x5f\xff\xbf\xdf\xfa\xff" "\xff\xa9\xff\xcf\x60\xeb\xb7\xfe\x7f\xcc\xfd\x0f\x85\x99\x94\x24\xff\x03" "\x00\x00\x40\x19\xc4\xdc\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6" "\xfe\xdf\x0c\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x60\x98\x49\x49" "\xf2\xbf\xfe\xff\xa0\xf4\xff\x27\x06\xb4\xff\xff\xa8\xfe\xff\x75\xec\xff" "\xdf\x71\x53\xbe\x9d\xfe\xbf\xfe\x3f\x8b\xf4\xff\x3b\xd3\xff\xef\x42\xff" "\x5f\xff\xbf\xdf\xfa\xff\x3e\xff\x9f\x01\xd7\x6f\xfd\xff\x98\xfb\x3f\x14" "\x66\xb2\xfc\xfc\x3f\xbe\xec\x2d\x01\x00\x00\x80\x97\x44\xcc\xfd\xbf\x15" "\x66\x52\x92\xbf\xff\x07\x00\x00\x80\x32\x88\xb9\xff\xb7\xc3\x4c\xe4\x7f" "\x00\x00\x00\x28\x8c\x98\xfb\x7f\x27\xcc\xa4\x24\xf9\x5f\xff\x7f\x50\xfa" "\xff\x3e\xff\x3f\xd3\xff\xf7\xf9\xff\x4d\x8f\x47\xff\x5f\xff\xbf\x95\xb5" "\xeb\xff\xc7\x77\x1e\xfd\x7f\xfd\x7f\xfd\xff\x48\xff\x5f\xff\x5f\xff\x9f" "\x66\xfd\xd6\xff\x8f\xb9\xff\x77\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c" "\x62\xee\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\x03\xa1\xd5\xff\x93\xdd\x2c" "\xe6\xfe\x23\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x47\xc3\x4c\x4a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xfb\xb4\xff\xff\x67\x5b\xff\xe5\x7b\xdf" "\x79\xcf\xd1\x5d\xfa\xff\xfa\xff\xfa\xff\x2b\xb2\xa6\x9f\xff\x5f\x7d\xf1" "\xfb\xfc\x7f\xfd\x7f\xfd\xff\x44\xff\x5f\xff\x5f\xff\x9f\x66\xfd\xd6\xff" "\x8f\xb9\xff\x58\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xbf\x17" "\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x3c\xcc\x44\xfe\x07\x00\x00" "\x80\xc2\x88\xb9\x7f\x26\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x4f" "\xfb\xff\x03\xfc\xf9\xff\xf1\x7c\xe8\xff\x37\xea\x59\xff\x3f\xbe\xe9\xea" "\xff\xb7\x94\xf7\xef\xd3\x2a\xba\xbe\xfd\xff\x0f\x2c\xf6\xc4\xf5\xff\x57" "\xda\xff\x1f\x6b\x79\xa9\xfe\xbf\xfe\xff\x20\x1f\xbf\xfe\xbf\xfe\x3f\x4b" "\xf5\x5b\xff\x3f\xe6\xfe\xd9\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x90" "\xfb\x87\x4e\xe4\x73\xf1\x0a\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x93\x61" "\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x1f\x09\x33\x29\x49\xfe\xd7\xff" "\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xad\xf7\xdf\xa9\xff\x5f\x19\xf1\xf9" "\xff\xfd\x2a\xf5\xef\x7f\x56\x7b\xa1\xe8\xff\x37\xe9\x9f\xfe\x7f\x6b\xfa" "\xff\xfa\xff\x83\x7c\xfc\xfa\xff\xfa\xff\x2c\xd5\x6f\xfd\xff\x98\xfb\xe7" "\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xff\x68\x98\x89\xfc\x0f" "\x00\x00\x00\x85\x11\x73\xff\xc7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98" "\xfb\x4f\x85\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xb7" "\xde\x7f\xdf\x7e\xfe\xbf\xfe\x7f\x47\xab\xed\xdf\xeb\xff\x07\xfa\xff\xe5" "\xee\xff\xff\x8f\xfe\xbf\xfe\xbf\xfe\x3f\xbd\xd1\x6f\xfd\xff\x98\xfb\x4f" "\x87\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xff\xff\xec\xdd\x49\x73" "\x65\xf5\x79\xc7\xf1\x2b\x68\x68\x75\x91\x45\x76\x59\x64\x93\xaa\x2c\xf3" "\x12\x58\x24\xeb\xe4\x05\x64\x91\x4d\x36\xa9\x4a\x65\x41\x06\x92\x90\xc1" "\x36\x8d\xe7\x11\x1b\xdb\x78\xb6\x31\x78\x1e\xf0\x00\x06\x63\x6c\x83\xe7" "\x01\x3c\x61\xe3\x19\x6c\xe3\x79\x1e\xf0\x84\xb1\xa9\x76\x21\x3d\xcf\xd3" "\x2d\xe9\xe8\x5c\xa9\x75\x25\x9d\xf3\xff\x7f\x3e\x0b\x1e\x50\x5a\x7d\x6f" "\xa8\xae\x6e\x7e\xad\xfe\xfa\x5c\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xff\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x16\xb7\x74\xb2" "\xff\xf5\xff\x07\xe9\xff\xcf\x56\xca\xfa\xff\xad\xef\x7f\x12\xfd\xff\x5f" "\xeb\xff\x77\x7b\x7d\xfd\xbf\xfe\xbf\x65\xfa\xff\x71\xfa\xff\x25\xf4\xff" "\x9e\xff\xaf\xff\xd7\xff\xb3\x52\x53\xeb\xff\x73\xf7\xff\x7b\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\x8f\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xbf\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x33\x6e\xe9" "\x64\xff\x6f\xeb\xff\xd7\x16\x7d\xf6\xff\x99\xf1\x7a\xfe\x7f\x4b\xfd\xbf" "\xe7\xff\xef\xfa\xfa\xfa\x7f\xfd\x7f\xcb\x8e\xb6\xff\xbf\xea\xd1\x9f\xf9" "\xf4\xff\xfa\xff\x03\xf5\xff\x17\xe8\xff\x57\xe6\xb8\xdf\xff\x1e\xfb\xff" "\x93\xbb\x7d\xbe\xfe\x9f\x16\x4d\xad\xff\xcf\xdd\xff\x5f\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xbf\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\x8a\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x9f\xb8\xa5\x93" "\xfd\xbf\xba\xe7\xff\x9f\xda\xf8\xf8\x4c\xfb\xff\xa2\xff\xd7\xff\x6f\x7c" "\x40\xff\xaf\xff\xd7\xff\xcf\x96\xe7\xff\x8f\xdb\x7f\xff\xbf\xbe\xd8\xfc" "\x91\xbb\x69\x4e\xfd\xff\xe5\xf7\x5e\x72\xd9\x83\xb7\xfe\xf9\x6d\xfb\x79" "\x7d\xcf\xff\xd7\xff\x7b\xfe\xbf\xfe\x9f\xd5\x9a\x5a\xff\x9f\xbb\xff\x7f" "\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xff\xc5\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xff\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x63\xe2\x96\x4e\xf6\xff\xea\xfa\xff\x59\x3f\xff\xbf\xe8\xff\xf5\xff\x1b" "\x1f\xd0\xff\xeb\xff\xf5\xff\xb3\xa5\xff\x1f\xe7\xf9\xff\x4b\xe8\xff\xf5" "\xff\xfa\x7f\xfd\x3f\x2b\x35\xb5\xfe\x3f\x77\xff\x63\xe3\x96\x4e\xf6\x3f" "\x00\x00\x00\xf4\x20\x77\xff\xe3\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\xca\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x3f\x1d\xb7\x74\xb2\xff" "\xf5\xff\x87\xdf\xff\x3f\xa2\xff\xd7\xff\xc7\xd5\xff\xeb\xff\xf5\xff\x87" "\x4f\xff\x3f\x4e\xff\xbf\x84\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x52\x53\xeb" "\xff\x73\xf7\x5f\x15\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x1f" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x4f\x88\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x27\xc6\x2d\x9d\xec\x7f\xfd\xbf\xe7\xff\xeb\xff\xf5\xff" "\xfa\xff\xe1\xd7\xd7\xff\xcf\x93\xfe\x7f\x9c\xfe\x7f\x09\xfd\xff\x41\xfb" "\xf9\x8b\xf4\xff\xfa\x7f\xfd\x3f\xe7\xda\x67\xff\xff\xf0\xc8\x4f\xdb\x2b" "\xe9\xff\x73\xf7\x3f\x29\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f" "\x39\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x12\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\x4f\x8d\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x7f\xde\xfd\xff\xce\x1f\x7a\x1b\xf4\xff\xc3\xf4\xff\x47\x43\xff\x3f\x6e" "\x32\xfd\xff\xda\x89\xc1\x0f\xeb\xff\x67\xdf\xff\x7b\xfe\xbf\xfe\x5f\xff" "\xcf\x16\x53\x7b\xfe\x7f\xee\xfe\xa7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\xa7\xc7\x2d\x23\xfb\x7f\xdf\xbf\x99\x0f\x00\x00\x00\x1c\xab" "\xdc\xfd\xcf\x88\x5b\x7c\xfd\x1f\x00\x00\x00\x66\x2f\xab\xb3\xdc\xfd\xcf" "\x8c\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\xc3\xaf\x3f" "\xd6\xff\xdf\x76\xce\xfb\xd3\xff\x4f\x8b\xfe\x7f\xdc\x64\xfa\xff\x5d\xe8" "\xff\xf5\xff\x73\x7e\xff\xfa\x7f\xfd\x3f\x3b\x4d\xad\xff\xcf\xdd\xff\xac" "\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x75\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\x3f\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f" "\x13\xb7\x74\xb2\xff\x87\xfb\xff\xb3\xff\x77\xfd\xff\xde\xe8\xff\xb7\xbe" "\x7f\xfd\xff\xf0\x8f\x8f\x55\xf5\xff\xf9\x3d\xea\xff\x47\xfb\xff\xbf\xf1" "\xfc\xff\x3e\xe9\xff\xc7\x1d\x7d\xff\x7f\x52\xff\xbf\xf5\xfb\xd7\xff\x1f" "\xa2\xe3\x7e\xff\x8d\xf7\xff\xa7\x96\x7d\xbe\xfe\x9f\x21\x53\xeb\xff\x73" "\xf7\x5f\x13\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x1b\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\xe7\xc7\x2d\x9d\xec\x7f\xcf\xff\xd7\xff\xeb\xff\xe7\xd7\xff\x7b" "\xfe\xff\xa6\xe3\x7c\xfe\xff\xe2\xc8\xfb\xff\x13\xfa\xff\x3d\xd2\xff\x8f" "\x3b\x78\xff\x7f\x71\xfc\x9d\xe7\xff\xeb\xff\x77\xd2\xff\x37\xdd\xff\x7b" "\xfe\x3f\xe7\x65\x6a\xfd\x7f\xee\xfe\x6b\xe3\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\xe0\xda\x87\x16\x1b\xbb\xff\x05\x8b\x85\xfd\x0f\x00\x00\x00\x73\x74" "\xee\x9f\x1d\xd8\xfe\x07\x4a\x43\xee\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x8b\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\x87\x5f\x7f\x5a\xfd\xbf\xe7\xff\xef\x95\xfe\x7f\xdc\xd1\x3f\xff\x5f" "\xff\xbf\xed\xfb\xef\xb1\xff\x3f\xd1\x58\xff\x7f\xdd\x6e\x9f\x3f\x85\xfe" "\xff\x4a\xfd\x3f\x13\xb3\xa5\xff\xbf\xe3\xec\xc7\x8f\xab\xff\xcf\xdd\xff" "\xe2\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x92\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\x7f\x69\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\xbf\x2c\x6e\xe9\x64\xff\x1f\x7a\xff\x7f\x6a\xf7\xd7\xd6\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\xbf\xfe\x7f\xd5\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\x3d\xff" "\xdf\xf3\xff\xf5\xff\xac\xd4\xd9\xfe\x7f\xeb\xcf\x87\xc7\xd5\xff\xe7\xee" "\x7f\x79\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x45\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x5f\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xaf\x8c\x5b\x3a\xd9\xff\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3" "\xaf\xaf\xff\x9f\x27\xfd\xff\x38\xfd\xff\x12\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\xcf\x4a\x6d\x79\xfe\xff\x39\x8e\xab\xff\xcf\xdd\x7f\x7d\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\x5f\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8e\x5b\x3a\xd9" "\xff\xfa\xff\xc3\xed\xff\xf3\xe3\xfa\x7f\xfd\xff\x42\xff\xaf\xff\xd7\xff" "\x1f\x89\x6e\xfb\xff\xb5\xa1\x5f\x89\x76\xda\xa5\xff\xbf\xfb\x9f\x4f\xff" "\xdd\xd6\x8f\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x15\x98\x44\xff\x7f" "\xe6\xec\x7f\x5d\xe6\xee\x7f\x4d\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4" "\xee\x7f\x6d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x2e\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1f\xb7\xec\x73\xff\xff\xe9\x4a\xdf\xd5" "\xd1\xd1\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\x1f\x7e\x7d\xfd\xff\x3c\x75" "\xdb\xff\xef\x91\xe7\xff\x2f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd4\x24" "\xfa\xff\x73\xfe\x39\x77\xff\x1b\xe2\x16\x5f\xff\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x63\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x29\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x1c\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\x3f\xfc\xfa\xe7\xdb\xff\xaf\x2f\x86\xe9\xff\x8f\x86\xfe" "\x7f\x9c\xfe\x7f\x09\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa5\xa6\xd6\xff\xe7" "\xee\xbf\x31\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x25\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x6f\x8b\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x1f" "\x7e\x7d\xcf\xff\x9f\x27\xfd\xff\x38\xfd\xff\x62\xb1\xb8\x69\xe4\x0d\x0c" "\xf5\xff\x67\x4e\xea\xff\xf5\xff\xfa\x7f\xfd\x3f\xe7\x69\x6a\xfd\x7f\xee" "\xfe\xb7\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x9b\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\xe6\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\x7f\x47\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf0" "\xeb\xeb\xff\xe7\x49\xff\x3f\x4e\xff\xbf\x84\xe7\xff\xeb\xff\x8f\xb5\xff" "\x3f\xb1\xd0\xff\xd3\x9a\xa9\xf5\xff\xb9\xfb\x6f\x89\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\xb7\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x3b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xb6\xb8\xa5\x93\xfd\xaf" "\xff\xd7\xff\xeb\xff\xf5\xff\x87\xd2\xff\x9f\xd6\xff\x6f\xa7\xff\x3f\x1a" "\x87\xd7\xff\x2f\xf4\xff\xfa\x7f\xfd\xff\x12\xfa\x7f\xcf\xff\xd7\xff\xb3" "\xdd\x51\xf5\xff\x0f\xc7\xcf\xf7\xcb\xfa\xff\xdc\xfd\xef\x8a\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xb7\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xbb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x3d\x71\x4b\x27" "\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x3d\xff\x7f\xf8\xf5\xf5\xff\xf3\xe4" "\xf9\xff\xe3\xf4\xff\x4b\xe8\xff\xf5\xff\xf3\xee\xff\x2f\xd4\xff\x33\x35" "\x47\xd5\xff\xef\xd6\xfb\x6f\xff\xe7\xdc\xfd\xef\x8d\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\x77\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x9d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xbe\xb8\xa5\x93\xfd\xaf" "\xff\xd7\xff\x6f\xed\xff\x17\x0b\xfd\xbf\xfe\x5f\xff\xbf\xe9\x08\xfa\xff" "\xf5\x85\xfe\x7f\xe5\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\xdb\xec\xff\x2f\x58" "\x34\xd4\xff\x9f\xda\xf5\xf3\x3d\xff\x9f\x29\x9a\x5a\xff\x9f\xbb\xff\xfd" "\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x03\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xc1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x50\xdc\xd2\xd2\xfe\x7f\x64\xf7\xf4\x6d\xfe\xfd\xff\xc9\x6d\x9f\xa8\xff" "\x5f\x2c\x16\xf7\x5d\xe1\xf9\xff\xfa\xff\x91\xd7\xd7\xff\x4f\xa6\xff\xaf" "\x7f\xab\xfa\xff\xd5\xd1\xff\x8f\xd3\xff\x2f\xa1\xff\x6f\xb3\xff\xef\xe7" "\xf9\xff\xfa\x7f\x26\x67\x6a\xfd\x7f\xee\xfe\x0f\xc7\x2d\x2d\xed\x7f\x00" "\x00\x00\xe8\x5c\xee\xfe\x8f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x47\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x63\x71\x4b\x27\xfb\x7f" "\xfe\xfd\xff\xf6\x4f\xd4\xff\x2f\x0e\xf4\xfc\x7f\xfd\xff\xc6\x07\xf4\xff" "\xfa\x7f\xfd\xff\x6c\x1d\xb4\xbf\xbf\x7e\x3d\x7e\x4d\xd3\xff\xeb\xff\xf5" "\xff\x83\xfd\xfc\xda\x2e\xff\xdd\xb3\xd0\xff\xeb\xff\xf5\xff\x0c\x98\x5a" "\xff\x9f\xbb\xff\xe3\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xae" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x3b\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x3f\x11\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x3c\xfb" "\xff\x75\xfd\xbf\xfe\x5f\xff\x3f\x68\x2a\xcf\xff\xbf\xf4\xd2\xbf\xbd\x47" "\xff\xaf\xff\x6f\xb1\xff\x1f\xa3\xff\xd7\xff\xeb\xff\xd9\x6e\x6a\xfd\x7f" "\xee\xfe\x4f\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x4f\xc5\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xa7\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x33\x71\x4b\x27\xfb\x7f\x67\xff\x7f\xd1\x62\xb3\x50\xdd\x34" "\xd4\xff\x47\xa3\xa6\xff\x3f\x87\xfe\x7f\xeb\xfb\xd7\xff\x0f\xff\xf8\xf0" "\xfc\x7f\xfd\xbf\xfe\xff\xf0\x4d\xa5\xff\xf7\xfc\xff\xf3\x7b\xff\xfa\x7f" "\xfd\xff\x9c\xdf\xff\xbe\xfa\xff\xbf\xd8\xf9\xf9\xfa\x7f\x5a\x34\xb5\xfe" "\x3f\x77\xff\x3d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xb3\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb9\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xbf\x37\x6e\xe9\x64\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x0f\xbf\xbe\xfe\x7f\x9e\xf4\xff\xe3\xf4\xff\x4b\xe8\xff\x0f\xde\xcf" "\xe7\xcf\xaa\xfa\xff\xf9\x3e\xff\xff\x42\xfd\x3f\xab\x33\xb5\xfe\x3f\x77" "\xff\xe7\xe3\x96\x8d\xe1\xf7\x97\x7f\x72\x9e\xff\x6f\x02\x00\x00\x00\x13" "\x92\xbb\xff\x0b\x71\x4b\x27\x5f\xff\x07\x00\x00\x80\x1e\xe4\xee\xff\x62" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x29\x6e\xe9\x64\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5\xf5\xff\xf3\xa4\xff\x1f\xa7\xff" "\x5f\xa2\x9f\xfe\x7f\x7d\xe8\x83\xc7\xdd\xcf\x1f\xd4\x71\xbf\xff\x66\xfa" "\x7f\xcf\xff\x67\x85\xa6\xd6\xff\xe7\xee\xff\x72\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\xb6\x3d\xb4\xf1\xd7\xdc\xfd\x5f\x89\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x7d\x71\x4b" "\x27\xfb\x5f\xff\xaf\xff\x6f\xbf\xff\xff\x47\xfd\xff\xb6\xd7\xd7\xff\xeb" "\xff\x5b\xa6\xff\xcf\x5f\xd1\x87\xe9\xff\x97\xe8\xa7\xff\x1f\x74\xdc\xfd" "\xfc\xdc\xdf\xbf\xfe\x5f\xff\xcf\x4e\x53\xeb\xff\x73\xf7\xdf\x1f\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x16\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x5f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x6f\xc4\x2d" "\x9d\xec\x7f\xfd\x7f\x5f\xfd\xff\xda\xa2\xc7\xfe\xdf\xf3\xff\xf5\xff\xfa" "\xff\x9e\xcc\xa7\xff\xbf\xe1\xc4\xd0\x47\x3d\xff\x5f\xff\xaf\xff\x9f\xef" "\xfb\xd7\xff\xeb\xff\xd9\x69\x6a\xfd\x7f\xee\xfe\x07\xd6\x4e\x74\xb9\xff" "\x01\x00\x00\x60\xae\xfe\xfe\xaf\xfe\xe5\xfe\xbd\x7e\xdb\x07\x36\xfe\xba" "\xbe\xf8\x66\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2b\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x1d\xb7\x74\xb2\xff\xf5\xff\x7d\xf5\xff" "\x7d\x3e\xff\x5f\xff\xaf\xff\xd7\xff\xf7\x64\x3e\xfd\xff\x30\xfd\xbf\xfe" "\x5f\xff\x3f\xdf\xf7\xaf\xff\xd7\xff\xb3\xd3\xd4\xfa\xff\xdc\xfd\xdf\x89" "\x5b\xce\x19\x7e\x83\xff\x03\x3d\x00\x00\x00\xc0\xf1\xb9\x78\x7f\xdf\x3c" "\x77\xff\x77\xe3\x96\x4e\xbe\xfe\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xbd\xb8" "\x65\xc7\xfe\x3f\xb3\xc7\x3f\xd5\x0e\x00\x00\x00\x4c\x4d\xee\xfe\xef\xc7" "\x2d\x9d\x7c\xfd\x5f\xff\x3f\xf1\xfe\x7f\x71\x48\xfd\x7f\x7c\x3b\xfd\xff" "\x26\xfd\xbf\xfe\x7f\xe8\xf5\xf5\xff\xf3\xa4\xff\x1f\x77\xc0\xfe\xff\xcc" "\x9a\xfe\x5f\xff\x3f\x42\xff\xaf\xff\xd7\xff\xb3\xdd\xd4\xfa\xff\xdc\xfd" "\xb7\xdf\xb2\xe8\x72\xff\x03\x00\x00\x40\xa3\xb6\xfc\x8e\xc2\x0f\x36\xfe" "\xba\xbe\xf8\x61\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x28\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x1c\xb7\x74\xb2\xff\xf5\xff\x13\xef" "\xff\xcf\xeb\xf9\xff\xa7\xea\xef\x3c\xff\xbf\xf3\xfe\xff\xea\xf5\xc1\xd7" "\xd7\xff\xeb\xff\x5b\xa6\xff\x1f\xe7\xf9\xff\x4b\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\x2b\xb5\x8f\xfe\x7f\x63\x90\x1e\x76\xff\x9f\xbb\xff\x27\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xa7\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xb3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x79\xdc" "\xd2\xc9\xfe\xd7\xff\x1f\x43\xff\x7f\xcd\xc9\xc5\xe2\x50\xfb\xff\x3d\x3c" "\xff\x5f\xff\xdf\x47\xff\xbf\xcb\xeb\xb7\xd3\xff\xff\xd9\x25\xa7\xef\xfa" "\x87\x7f\xba\xf9\x46\xfd\x3f\x67\x1d\x65\xff\x9f\x3f\x16\xf4\xff\xfa\x7f" "\xfd\xff\x26\xfd\xbf\xfe\x5f\xff\xcf\x76\x53\x7b\xfe\x7f\xee\xfe\x5f\xc4" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x07\xe3\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\x97\x71\xcb\xa3\xfb\xff\xce\xe3\x7a\x57\x00\x00\x00" "\xc0\x2a\xe5\xee\xff\x55\xdc\xd2\xc9\xd7\xff\xf5\xff\x2d\x3e\xff\x7f\x9e" "\xfd\x7f\xfe\xbb\x3e\x86\xfe\xff\xf4\xfc\xfa\xff\x6c\x8a\x7b\xef\xff\x3d" "\xff\x5f\xff\xbf\x93\xe7\xff\x8f\xd3\xff\x2f\xa1\xff\xd7\xff\xeb\xff\xf5" "\xff\xac\xd4\xd4\xfa\xff\xdc\xfd\xbf\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\xbf\x89\x5b\x72\xff\xaf\xed\xfb\xb7\xee\x01\x00\x00\x80\x89" "\xc9\xdd\xff\xdb\xb8\xc5\xd7\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x8a\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xff\x54\xfa\xff\xe4\xf9\xff\x67\x3f\xcf\xf3\xff" "\x37\xe9\xff\xf5\xff\xfb\xa1\xff\x1f\xa7\xff\x5f\x42\xff\xbf\xa7\x7e\xfe" "\xe2\x5d\x3e\x5f\xff\xaf\xff\xd7\xff\xb3\xdd\xd4\xfa\xff\xdc\xfd\xbf\x8b" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x0f\xc7\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x0f" "\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xaf\xaf\xff" "\x9f\x27\xfd\xff\x38\xfd\xff\x12\xfa\x7f\xcf\xff\xd7\xff\xeb\xff\x59\xa9" "\xa9\xf5\xff\xb9\xfb\xff\x18\x00\x00\xff\xff\x36\xa1\x68\xae", 25107); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_POSIXACL|MS_STRICTATIME*/ 0x1010000, /*opts=*/0x2000000000c0, /*chdir=*/1, /*size=*/0x6210, /*img=*/0x200000012d40); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x143041 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000200, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000200ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|FASYNC|O_WRONLY*/ 0x143041, /*mode=*/0); if (res != -1) r[0] = res; // openat$cgroup_ro arguments: [ // fd: fd_cgroup (resource) // file: ptr[in, buffer] { // buffer: {62 6c 6b 69 6f 2e 62 66 71 2e 61 76 67 5f 71 75 65 75 65 5f // 73 69 7a 65 00} (length 0x19) // } // flags: const = 0x275a (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x2000000001c0, "blkio.bfq.avg_queue_size\000", 25); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000001c0ul, /*flags=*/0x275a, /*mode=*/0); // write$uinput_user_dev arguments: [ // fd: fd_uinput (resource) // data: ptr[in, uinput_user_dev] { // uinput_user_dev { // name: buffer: {73 79 7a 31 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00} (length 0x50) id: // input_id { // bustype: int16 = 0xf4 (2 bytes) // vendor: int16 = 0x4 (2 bytes) // product: int16 = 0x4 (2 bytes) // version: int16 = 0xa5 (2 bytes) // } // ff_effects_max: int32 = 0x4 (4 bytes) // absmax: array[int32] { // int32 = 0x800 (4 bytes) // int32 = 0xfffffffe (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x400 (4 bytes) // int32 = 0x24 (4 bytes) // int32 = 0x5c (4 bytes) // int32 = 0xfffff826 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x4613 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0xe (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0xfffffff7 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x280000 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x8000 (4 bytes) // int32 = 0x7ad (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0xfffffff8 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x56 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x3ff (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x4000 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0xd8 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x7fff (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0xfffffffd (4 bytes) // int32 = 0x10001 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0xf33 (4 bytes) // int32 = 0x81 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x200 (4 bytes) // int32 = 0xfff (4 bytes) // int32 = 0x49fa6641 (4 bytes) // int32 = 0x0 (4 bytes) // } // absmin: array[int32] { // int32 = 0x5 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0xc4f (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0xffffffff (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x7f (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0xe5c (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x8ee (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x48 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0xe (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x7f (4 bytes) // int32 = 0x468e (4 bytes) // int32 = 0xe0f (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x3ff (4 bytes) // int32 = 0x80000000 (4 bytes) // int32 = 0x400 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0xfffffff9 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x1000 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x7fffffff (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x10 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0xbae (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0xd03 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x200 (4 bytes) // } // absfuzz: array[int32] { // int32 = 0x4 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0xa (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0xd (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0xc (4 bytes) // int32 = 0xf6d9 (4 bytes) // int32 = 0x40 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0xfffffffb (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0xfff (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0xc5 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x10000 (4 bytes) // int32 = 0x200 (4 bytes) // int32 = 0x80000000 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0xfff (4 bytes) // int32 = 0xffff8000 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0xb6f8 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x800 (4 bytes) // int32 = 0xfffff001 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x8000 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x400 (4 bytes) // int32 = 0xfffff1fc (4 bytes) // int32 = 0x10001 (4 bytes) // int32 = 0x10000 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0xd (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0xd4 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x88 (4 bytes) // int32 = 0x42f (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x2f95 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0xfffffff4 (4 bytes) // int32 = 0x1000 (4 bytes) // } // absflat: array[int32] { // int32 = 0x4 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x81 (4 bytes) // int32 = 0xe (4 bytes) // int32 = 0x81 (4 bytes) // int32 = 0x90000000 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x2400000 (4 bytes) // int32 = 0x6800000 (4 bytes) // int32 = 0x18000000 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x432 (4 bytes) // int32 = 0x1899 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0xd88 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0xf9 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x7a000000 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0xe (4 bytes) // int32 = 0x3ff (4 bytes) // int32 = 0xfffffff0 (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0x0 (4 bytes) // int32 = 0x2e0000 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x2 (4 bytes) // int32 = 0x7ff (4 bytes) // int32 = 0x3 (4 bytes) // int32 = 0xfffffff9 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0xa86f (4 bytes) // int32 = 0x5 (4 bytes) // int32 = 0x483 (4 bytes) // int32 = 0x6 (4 bytes) // int32 = 0xa41d (4 bytes) // int32 = 0x31f9 (4 bytes) // int32 = 0x7 (4 bytes) // int32 = 0xe (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x8 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0xa (4 bytes) // int32 = 0x4 (4 bytes) // int32 = 0xb3 (4 bytes) // int32 = 0x1 (4 bytes) // int32 = 0x9 (4 bytes) // int32 = 0x1 (4 bytes) // } // } // } // len: len = 0x45c (8 bytes) // ] memcpy((void*)0x2000000007c0, "syz1\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000", 80); *(uint16_t*)0x200000000810 = 0xf4; *(uint16_t*)0x200000000812 = 4; *(uint16_t*)0x200000000814 = 4; *(uint16_t*)0x200000000816 = 0xa5; *(uint32_t*)0x200000000818 = 4; *(uint32_t*)0x20000000081c = 0x800; *(uint32_t*)0x200000000820 = 0xfffffffe; *(uint32_t*)0x200000000824 = 2; *(uint32_t*)0x200000000828 = 0x400; *(uint32_t*)0x20000000082c = 0x24; *(uint32_t*)0x200000000830 = 0x5c; *(uint32_t*)0x200000000834 = 0xfffff826; *(uint32_t*)0x200000000838 = 8; *(uint32_t*)0x20000000083c = 1; *(uint32_t*)0x200000000840 = 0x4613; *(uint32_t*)0x200000000844 = 8; *(uint32_t*)0x200000000848 = 0xe; *(uint32_t*)0x20000000084c = 2; *(uint32_t*)0x200000000850 = 2; *(uint32_t*)0x200000000854 = 9; *(uint32_t*)0x200000000858 = 4; *(uint32_t*)0x20000000085c = 0xfffffff7; *(uint32_t*)0x200000000860 = 1; *(uint32_t*)0x200000000864 = 0x280000; *(uint32_t*)0x200000000868 = 9; *(uint32_t*)0x20000000086c = 0x8000; *(uint32_t*)0x200000000870 = 0x7ad; *(uint32_t*)0x200000000874 = 9; *(uint32_t*)0x200000000878 = 6; *(uint32_t*)0x20000000087c = 3; *(uint32_t*)0x200000000880 = 6; *(uint32_t*)0x200000000884 = 0xfffffff8; *(uint32_t*)0x200000000888 = 5; *(uint32_t*)0x20000000088c = 0x56; *(uint32_t*)0x200000000890 = 7; *(uint32_t*)0x200000000894 = 4; *(uint32_t*)0x200000000898 = 0x3ff; *(uint32_t*)0x20000000089c = 0; *(uint32_t*)0x2000000008a0 = 0; *(uint32_t*)0x2000000008a4 = 8; *(uint32_t*)0x2000000008a8 = 3; *(uint32_t*)0x2000000008ac = 1; *(uint32_t*)0x2000000008b0 = 5; *(uint32_t*)0x2000000008b4 = 9; *(uint32_t*)0x2000000008b8 = 0x4000; *(uint32_t*)0x2000000008bc = 2; *(uint32_t*)0x2000000008c0 = 1; *(uint32_t*)0x2000000008c4 = 0xd8; *(uint32_t*)0x2000000008c8 = 0; *(uint32_t*)0x2000000008cc = 0x7fff; *(uint32_t*)0x2000000008d0 = 8; *(uint32_t*)0x2000000008d4 = 0xfffffffd; *(uint32_t*)0x2000000008d8 = 0x10001; *(uint32_t*)0x2000000008dc = 4; *(uint32_t*)0x2000000008e0 = 4; *(uint32_t*)0x2000000008e4 = 0xf33; *(uint32_t*)0x2000000008e8 = 0x81; *(uint32_t*)0x2000000008ec = 2; *(uint32_t*)0x2000000008f0 = 7; *(uint32_t*)0x2000000008f4 = 2; *(uint32_t*)0x2000000008f8 = 8; *(uint32_t*)0x2000000008fc = 6; *(uint32_t*)0x200000000900 = 3; *(uint32_t*)0x200000000904 = 3; *(uint32_t*)0x200000000908 = 0; *(uint32_t*)0x20000000090c = 0x200; *(uint32_t*)0x200000000910 = 0xfff; *(uint32_t*)0x200000000914 = 0x49fa6641; *(uint32_t*)0x200000000918 = 0; *(uint32_t*)0x20000000091c = 5; *(uint32_t*)0x200000000920 = 5; *(uint32_t*)0x200000000924 = 2; *(uint32_t*)0x200000000928 = 0xc4f; *(uint32_t*)0x20000000092c = 5; *(uint32_t*)0x200000000930 = 9; *(uint32_t*)0x200000000934 = 5; *(uint32_t*)0x200000000938 = 6; *(uint32_t*)0x20000000093c = -1; *(uint32_t*)0x200000000940 = 9; *(uint32_t*)0x200000000944 = 8; *(uint32_t*)0x200000000948 = 0x7f; *(uint32_t*)0x20000000094c = 5; *(uint32_t*)0x200000000950 = 1; *(uint32_t*)0x200000000954 = 3; *(uint32_t*)0x200000000958 = 6; *(uint32_t*)0x20000000095c = 6; *(uint32_t*)0x200000000960 = 5; *(uint32_t*)0x200000000964 = 3; *(uint32_t*)0x200000000968 = 0xe5c; *(uint32_t*)0x20000000096c = 6; *(uint32_t*)0x200000000970 = 3; *(uint32_t*)0x200000000974 = 0x8ee; *(uint32_t*)0x200000000978 = 4; *(uint32_t*)0x20000000097c = 8; *(uint32_t*)0x200000000980 = 1; *(uint32_t*)0x200000000984 = 0x48; *(uint32_t*)0x200000000988 = 0; *(uint32_t*)0x20000000098c = 5; *(uint32_t*)0x200000000990 = 2; *(uint32_t*)0x200000000994 = 0xe; *(uint32_t*)0x200000000998 = 7; *(uint32_t*)0x20000000099c = 9; *(uint32_t*)0x2000000009a0 = 0; *(uint32_t*)0x2000000009a4 = 0x7f; *(uint32_t*)0x2000000009a8 = 0x468e; *(uint32_t*)0x2000000009ac = 0xe0f; *(uint32_t*)0x2000000009b0 = 8; *(uint32_t*)0x2000000009b4 = 7; *(uint32_t*)0x2000000009b8 = 2; *(uint32_t*)0x2000000009bc = 2; *(uint32_t*)0x2000000009c0 = 0x3ff; *(uint32_t*)0x2000000009c4 = 0x80000000; *(uint32_t*)0x2000000009c8 = 0x400; *(uint32_t*)0x2000000009cc = 1; *(uint32_t*)0x2000000009d0 = 3; *(uint32_t*)0x2000000009d4 = 7; *(uint32_t*)0x2000000009d8 = 0xfffffff9; *(uint32_t*)0x2000000009dc = 8; *(uint32_t*)0x2000000009e0 = 0x1000; *(uint32_t*)0x2000000009e4 = 2; *(uint32_t*)0x2000000009e8 = 4; *(uint32_t*)0x2000000009ec = 7; *(uint32_t*)0x2000000009f0 = 8; *(uint32_t*)0x2000000009f4 = 0x7fffffff; *(uint32_t*)0x2000000009f8 = 4; *(uint32_t*)0x2000000009fc = 0x10; *(uint32_t*)0x200000000a00 = 0; *(uint32_t*)0x200000000a04 = 6; *(uint32_t*)0x200000000a08 = 0xbae; *(uint32_t*)0x200000000a0c = 2; *(uint32_t*)0x200000000a10 = 0xd03; *(uint32_t*)0x200000000a14 = 7; *(uint32_t*)0x200000000a18 = 0x200; *(uint32_t*)0x200000000a1c = 4; *(uint32_t*)0x200000000a20 = 0; *(uint32_t*)0x200000000a24 = 4; *(uint32_t*)0x200000000a28 = 0xa; *(uint32_t*)0x200000000a2c = 5; *(uint32_t*)0x200000000a30 = 8; *(uint32_t*)0x200000000a34 = 0xd; *(uint32_t*)0x200000000a38 = 6; *(uint32_t*)0x200000000a3c = 0xc; *(uint32_t*)0x200000000a40 = 0xf6d9; *(uint32_t*)0x200000000a44 = 0x40; *(uint32_t*)0x200000000a48 = 9; *(uint32_t*)0x200000000a4c = 1; *(uint32_t*)0x200000000a50 = 8; *(uint32_t*)0x200000000a54 = 1; *(uint32_t*)0x200000000a58 = 9; *(uint32_t*)0x200000000a5c = 0xfffffffb; *(uint32_t*)0x200000000a60 = 5; *(uint32_t*)0x200000000a64 = 0xfff; *(uint32_t*)0x200000000a68 = 6; *(uint32_t*)0x200000000a6c = 2; *(uint32_t*)0x200000000a70 = 6; *(uint32_t*)0x200000000a74 = 0; *(uint32_t*)0x200000000a78 = 0; *(uint32_t*)0x200000000a7c = 0xc5; *(uint32_t*)0x200000000a80 = 9; *(uint32_t*)0x200000000a84 = 0x10000; *(uint32_t*)0x200000000a88 = 0x200; *(uint32_t*)0x200000000a8c = 0x80000000; *(uint32_t*)0x200000000a90 = 9; *(uint32_t*)0x200000000a94 = 0xfff; *(uint32_t*)0x200000000a98 = 0xffff8000; *(uint32_t*)0x200000000a9c = 9; *(uint32_t*)0x200000000aa0 = 0xb6f8; *(uint32_t*)0x200000000aa4 = 4; *(uint32_t*)0x200000000aa8 = 6; *(uint32_t*)0x200000000aac = 0x800; *(uint32_t*)0x200000000ab0 = 0xfffff001; *(uint32_t*)0x200000000ab4 = 1; *(uint32_t*)0x200000000ab8 = 3; *(uint32_t*)0x200000000abc = 0; *(uint32_t*)0x200000000ac0 = 0x8000; *(uint32_t*)0x200000000ac4 = 2; *(uint32_t*)0x200000000ac8 = 0x400; *(uint32_t*)0x200000000acc = 0xfffff1fc; *(uint32_t*)0x200000000ad0 = 0x10001; *(uint32_t*)0x200000000ad4 = 0x10000; *(uint32_t*)0x200000000ad8 = 2; *(uint32_t*)0x200000000adc = 4; *(uint32_t*)0x200000000ae0 = 0xd; *(uint32_t*)0x200000000ae4 = 2; *(uint32_t*)0x200000000ae8 = 5; *(uint32_t*)0x200000000aec = 0xd4; *(uint32_t*)0x200000000af0 = 4; *(uint32_t*)0x200000000af4 = 8; *(uint32_t*)0x200000000af8 = 4; *(uint32_t*)0x200000000afc = 0x88; *(uint32_t*)0x200000000b00 = 0x42f; *(uint32_t*)0x200000000b04 = 7; *(uint32_t*)0x200000000b08 = 0x2f95; *(uint32_t*)0x200000000b0c = 1; *(uint32_t*)0x200000000b10 = 5; *(uint32_t*)0x200000000b14 = 0xfffffff4; *(uint32_t*)0x200000000b18 = 0x1000; *(uint32_t*)0x200000000b1c = 4; *(uint32_t*)0x200000000b20 = 9; *(uint32_t*)0x200000000b24 = 7; *(uint32_t*)0x200000000b28 = 0; *(uint32_t*)0x200000000b2c = 0x81; *(uint32_t*)0x200000000b30 = 0xe; *(uint32_t*)0x200000000b34 = 0x81; *(uint32_t*)0x200000000b38 = 0x90000000; *(uint32_t*)0x200000000b3c = 3; *(uint32_t*)0x200000000b40 = 5; *(uint32_t*)0x200000000b44 = 0x2400000; *(uint32_t*)0x200000000b48 = 0x6800000; *(uint32_t*)0x200000000b4c = 0x18000000; *(uint32_t*)0x200000000b50 = 7; *(uint32_t*)0x200000000b54 = 0x432; *(uint32_t*)0x200000000b58 = 0x1899; *(uint32_t*)0x200000000b5c = 4; *(uint32_t*)0x200000000b60 = 2; *(uint32_t*)0x200000000b64 = 3; *(uint32_t*)0x200000000b68 = 0xd88; *(uint32_t*)0x200000000b6c = 4; *(uint32_t*)0x200000000b70 = 0xf9; *(uint32_t*)0x200000000b74 = 9; *(uint32_t*)0x200000000b78 = 0x7a000000; *(uint32_t*)0x200000000b7c = 9; *(uint32_t*)0x200000000b80 = 9; *(uint32_t*)0x200000000b84 = 7; *(uint32_t*)0x200000000b88 = 0; *(uint32_t*)0x200000000b8c = 7; *(uint32_t*)0x200000000b90 = 7; *(uint32_t*)0x200000000b94 = 8; *(uint32_t*)0x200000000b98 = 1; *(uint32_t*)0x200000000b9c = 0xe; *(uint32_t*)0x200000000ba0 = 0x3ff; *(uint32_t*)0x200000000ba4 = 0xfffffff0; *(uint32_t*)0x200000000ba8 = 4; *(uint32_t*)0x200000000bac = 0; *(uint32_t*)0x200000000bb0 = 0x2e0000; *(uint32_t*)0x200000000bb4 = 9; *(uint32_t*)0x200000000bb8 = 6; *(uint32_t*)0x200000000bbc = 8; *(uint32_t*)0x200000000bc0 = 2; *(uint32_t*)0x200000000bc4 = 0x7ff; *(uint32_t*)0x200000000bc8 = 3; *(uint32_t*)0x200000000bcc = 0xfffffff9; *(uint32_t*)0x200000000bd0 = 7; *(uint32_t*)0x200000000bd4 = 0xa86f; *(uint32_t*)0x200000000bd8 = 5; *(uint32_t*)0x200000000bdc = 0x483; *(uint32_t*)0x200000000be0 = 6; *(uint32_t*)0x200000000be4 = 0xa41d; *(uint32_t*)0x200000000be8 = 0x31f9; *(uint32_t*)0x200000000bec = 7; *(uint32_t*)0x200000000bf0 = 0xe; *(uint32_t*)0x200000000bf4 = 8; *(uint32_t*)0x200000000bf8 = 8; *(uint32_t*)0x200000000bfc = 1; *(uint32_t*)0x200000000c00 = 1; *(uint32_t*)0x200000000c04 = 0xa; *(uint32_t*)0x200000000c08 = 4; *(uint32_t*)0x200000000c0c = 0xb3; *(uint32_t*)0x200000000c10 = 1; *(uint32_t*)0x200000000c14 = 9; *(uint32_t*)0x200000000c18 = 1; syscall(__NR_write, /*fd=*/r[0], /*data=*/0x2000000007c0ul, /*len=*/0x45cul); } 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); setup_sysctl(); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }