// https://syzkaller.appspot.com/bug?id=e2c3120dce1d421ce5fa3cf845d6fd4a8c120e51 // 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 #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } void loop(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x1000c00 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // quota: buffer: {71 75 6f 74 61} (length 0x5) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0xaff9 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6e 6f 6e 65} (length 0x4) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 34 33 37} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 37} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x21 (1 bytes) // size: len = 0x61e2 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61e2) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000100, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000000, "./file1\000", 8)); NONFAILING(memcpy((void*)0x200000000140, "quota", 5)); NONFAILING(*(uint8_t*)0x200000000145 = 0x2c); NONFAILING(memcpy((void*)0x200000000146, "discard", 7)); NONFAILING(*(uint8_t*)0x20000000014d = 0x3d); NONFAILING(sprintf((char*)0x20000000014e, "0x%016llx", (long long)0xaff9)); NONFAILING(*(uint8_t*)0x200000000160 = 0x2c); NONFAILING(memcpy((void*)0x200000000161, "iocharset", 9)); NONFAILING(*(uint8_t*)0x20000000016a = 0x3d); NONFAILING(memcpy((void*)0x20000000016b, "none", 4)); NONFAILING(*(uint8_t*)0x20000000016f = 0x2c); NONFAILING(memcpy((void*)0x200000000170, "iocharset", 9)); NONFAILING(*(uint8_t*)0x200000000179 = 0x3d); NONFAILING(memcpy((void*)0x20000000017a, "cp437", 5)); NONFAILING(*(uint8_t*)0x20000000017f = 0x2c); NONFAILING(memcpy((void*)0x200000000180, "iocharset", 9)); NONFAILING(*(uint8_t*)0x200000000189 = 0x3d); NONFAILING(memcpy((void*)0x20000000018a, "iso8859-7", 9)); NONFAILING(*(uint8_t*)0x200000000193 = 0x2c); NONFAILING(memcpy((void*)0x200000000194, "nodiscard", 9)); NONFAILING(*(uint8_t*)0x20000000019d = 0x2c); NONFAILING(memcpy((void*)0x20000000019e, "errors=continue", 15)); NONFAILING(*(uint8_t*)0x2000000001ad = 0x2c); NONFAILING(memcpy((void*)0x2000000001ae, "errors=continue", 15)); NONFAILING(*(uint8_t*)0x2000000001bd = 0x2c); NONFAILING(memcpy((void*)0x2000000001be, "uid", 3)); NONFAILING(*(uint8_t*)0x2000000001c1 = 0x3d); NONFAILING(sprintf((char*)0x2000000001c2, "0x%016llx", (long long)0xee01)); NONFAILING(*(uint8_t*)0x2000000001d4 = 0x2c); NONFAILING(*(uint8_t*)0x2000000001d5 = 0); NONFAILING(memcpy( (void*)0x2000000063c0, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x17\x13\xc7\xca" "\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82\x0d" "\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0\x44\xb3\x61" "\xc1\x43\x80\x90\x58\x22\xc4\x92\x15\x0f\x90\x05\x5b\x76\x3c\x00\x96\x6c" "\x24\x50\x16\x28\x85\x6a\xe6\x9c\x71\x4d\xa5\x7b\x7a\xc6\xf6\x74\x75\xbb" "\x7e\x3f\x69\x5c\xf5\xf5\xa9\x9a\x3e\xe5\x7f\x57\x5f\xa6\xaa\xfa\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x3f\xfc\xc1\x8f\xcf" "\x15\x11\x71\xe5\x57\xe9\x86\x13\x11\x9f\x8b\x7e\x44\x2f\x62\xa5\xaa\xd7" "\x22\x62\x65\xed\x44\x7d\x9d\x17\x62\xbb\x39\x9e\x8f\x88\xe1\x52\x44\xb5" "\xfe\xf6\x3f\xcf\x46\xbc\x1e\x11\x1f\x1f\x8f\xb8\xff\xe0\xce\x7a\x75\xf3" "\xf9\x03\xf6\xe3\xfb\x7f\xfe\xc7\x1f\x7e\x72\xec\x47\x7f\xff\xd3\xf0\xcc" "\x7f\xff\x72\xab\xff\xc6\xa4\xe5\x6e\xdf\xfe\xed\x7f\xfe\x7a\xf7\xd1\xb7" "\x17\x00\x00\x00\xba\xa8\x2c\xcb\xb2\x48\x1f\xf3\x4f\x46\xc4\x20\x7d\xb6" "\x07\x00\x9e\x7e\xf9\xf5\xbf\x4c\xf2\xed\xea\xb9\xab\x37\xe7\xac\x3f\x6a" "\xb5\x5a\xad\x5e\xc0\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa\x3a\xd5\x7b" "\x06\x87\xe3\x01\x60\xc1\x6c\xc6\x27\x6d\x77\x81\x16\xc9\xbf\xd3\x06\x11" "\x71\xac\xed\x4e\x00\x73\xad\x68\xbb\x03\x1c\x89\xfb\x0f\xee\xac\x17\x29" "\xdf\xa2\xfe\x7a\xb0\xb6\xd3\x9e\xcf\x05\xd9\x93\xff\x66\xb1\x7b\x7d\xc7" "\xa4\xe9\x34\xcd\x73\x4c\x66\xf5\xf8\xda\x8a\x7e\x3c\x37\xa1\x3f\x2b\x33" "\xea\xc3\x3c\xc9\xf9\xf7\x9a\xf9\x5f\xd9\x69\x1f\xa5\xe5\x8e\x3a\xff\x59" "\x99\x94\xff\x68\xe7\xd2\xa7\xce\xc9\xf9\xf7\x9b\xf9\x37\x3c\x3d\xf9\xf7" "\xc6\xe6\xdf\x55\x39\xff\xc1\xa1\xf2\xef\xcb\x1f\x00\x00\x00\x00\x00\xe6" "\x58\xfe\xfb\xff\x89\x96\x8f\xff\x2e\x3d\xfe\xa6\x1c\xc8\x7e\xc7\x7f\xd7" "\x66\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78\xd2\x0e\x3b\xfe\xdf\xa0\x31" "\xfe\xdf\x2e\xe3\xff\x01\x00\x00\xc0\xdc\xaa\x3e\xab\x57\x7e\x77\xfc\xe1" "\x6d\x93\xbe\x8b\xad\xba\xfd\x72\x11\xf1\x4c\x63\x79\xa0\x63\xd2\xc5\x32" "\xab\x6d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x64\xb0\x73" "\x0e\xef\xe5\x22\x62\x18\x11\xcf\xac\xae\x96\x65\x59\xfd\xd4\x35\xeb\xc3" "\x7a\xdc\xf5\x17\x5d\xd7\xb7\x1f\xba\xac\xed\x27\x79\x00\x00\xd8\xf1\xf1" "\xf1\xc6\xb5\xfc\x45\xc4\x72\x44\x5c\x4e\xdf\xf5\x37\x5c\x5d\x5d\x2d\xcb" "\xe5\x95\xd5\x72\xb5\x5c\x59\xca\xef\x67\x47\x4b\xcb\xe5\x4a\xed\x73\x6d" "\x9e\x56\xb7\x2d\x8d\x0e\xf0\x86\x78\x30\x2a\xab\x5f\xb6\x5c\x5b\xaf\x6e" "\xda\xe7\xe5\x69\xed\xcd\xdf\x57\xdd\xd7\xa8\xec\x1f\xa0\x63\xb3\xd1\x62" "\xe0\x00\x10\x11\x3b\xaf\x46\xf7\x27\xbd\x22\xfd\xcf\xeb\xd5\x62\x2a\xcb" "\x67\xa3\xe5\x37\x39\x2c\x88\x7d\xf6\x7f\x16\x94\xfd\x9f\x83\x68\xfb\x71" "\x0a\x00\x00\x00\x1c\xbd\xb2\x2c\xcb\x22\x7d\x9d\xf7\xc9\x74\xcc\xbf\xd7" "\x76\xa7\x00\x80\x99\xc8\xaf\xff\xcd\xe3\x02\x6a\xb5\x5a\xad\x56\xab\x9f" "\xbe\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa\x3a\xd5\x7b\x06\xc3\xf1\x03" "\xc0\x82\xd9\x8c\x4f\xda\xee\x02\x2d\x92\x7f\xa7\x0d\x22\xe2\x85\xb6\x3b" "\x01\xcc\xb5\xa2\xed\x0e\x70\x24\xee\x3f\xb8\xb3\x5e\xa4\x7c\x8b\xfa\xeb" "\x41\x1a\xdf\x3d\x9f\x0b\xb2\x27\xff\xcd\x62\x7b\xbd\xbc\xfe\xb8\xe9\x34" "\xcd\x73\x4c\x66\xf5\xf8\xda\x8a\x7e\x3c\x37\xa1\x3f\xcf\xcf\xa8\x0f\xf3" "\x24\xe7\xdf\x6b\xe6\x7f\x65\xa7\x7d\x94\x96\x7b\xfc\xfc\xcb\x3d\x7f\x26" "\x6c\xeb\x1c\xa3\x49\xf9\x57\xdb\x79\xa2\x85\xfe\xb4\x2d\xe7\xdf\x6f\xe6" "\xdf\x70\xd4\xfb\xff\xac\x6c\x45\x6f\x6c\xfe\x5d\x95\xf3\x1f\x1c\x2a\xff" "\xbe\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xbf\xff\x9f\x98\xab\xe3\xbf\xa3" "\x47\xdd\x9c\xa9\xf6\x3b\xfe\xbb\x36\x76\x8d\xa3\xeb\x0b\x00\x00\x00\x00" "\x00\x00\x00\x3c\x29\xf7\x1f\xdc\x59\xcf\xd7\xbd\xe6\xe3\xff\x5f\x18\xb3" "\x9c\xeb\x3f\x9f\x4e\x39\xff\x42\xfe\x9d\x94\xf3\xef\x35\xf2\xff\x6a\x63" "\xb9\x7e\x6d\xfe\xde\xdb\x0f\xf3\xff\xf7\x83\x3b\xeb\x7f\xbc\xf5\xaf\xcf" "\xe7\xe9\x41\xf3\x5f\xca\x33\x45\x7a\x64\x15\xe9\x11\x51\xa4\x7b\x2a\x06" "\x69\xfa\x38\x5b\xf7\x59\x5b\xc3\xfe\xa8\xba\xa7\x61\xd1\xeb\x0f\xd2\x39" "\x3f\xe5\xf0\xdd\xb8\x16\xd7\x63\x23\xce\xee\x59\xb6\x97\xfe\x3f\x1e\xb6" "\x9f\xdb\xd3\x5e\xf5\x74\xb8\xdd\x5e\xf6\x77\xda\xcf\xef\x69\x1f\xec\xb6" "\xe7\xf5\x2f\xec\x69\x1f\xa6\xb3\x8b\xca\x95\xdc\x7e\x3a\xd6\xe3\xe7\x71" "\x3d\xde\xd9\x6e\xaf\xda\x96\xa6\x6c\xff\xf2\x94\xf6\x72\x4a\x7b\xce\xbf" "\x6f\xff\xef\xa4\x9c\xff\xa0\xf6\x53\xe5\xbf\x9a\xda\x8b\xc6\xb4\x72\xef" "\xa3\xde\x67\xf6\xfb\xfa\x74\xdc\xfd\xbc\x75\xed\x8b\xbf\x39\x7b\xf4\x9b" "\x33\xd5\x56\xf4\x77\xb7\xad\xae\xda\xbe\x97\x5a\xe8\xcf\xf6\xff\xc9\xb1" "\x51\xfc\xf2\xe6\xc6\x8d\xd3\xb7\xaf\xde\xba\x75\xe3\x5c\xa4\xc9\x9e\x5b" "\xcf\x47\x9a\x3c\x61\x39\xff\x61\xfa\xd9\x7d\xfe\x7f\x79\xa7\x3d\x3f\xef" "\xd7\xf7\xd7\x7b\x1f\x8d\x0e\x9d\xff\xbc\xd8\x8a\xc1\xc4\xfc\x5f\xae\xcd" "\x57\xdb\xfb\xca\x8c\xfb\xd6\x86\x9c\xff\x28\xfd\xe4\xfc\xdf\x49\xed\xe3" "\xf7\xff\x45\xce\x7f\xf2\xfe\xff\x6a\x0b\xfd\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\xfd\x94\x65\xb9\x7d\x89\xe8\x5b\x11\x71\x31\x5d" "\xff\xd3\xd6\xb5\x99\x00\xc0\x6c\xe5\xd7\xff\x32\xc9\xb7\xcf\xaa\xee\xcf" "\xf8\xfe\xd4\xea\x05\xaf\x8b\x39\xeb\xcf\x4c\xeb\x4f\xcb\xf9\xea\x8f\x5a" "\xbd\x88\x75\x5d\x39\xde\x9b\xf5\x22\x22\xfe\x56\x5f\xa7\x7a\xcf\xf0\xeb" "\x71\xbf\x0c\x00\x98\x67\x9f\x46\xc4\x3f\xdb\xee\x04\xad\x91\x7f\x87\xe5" "\xef\xfb\xab\xa6\xa7\xda\xee\x0c\x30\x53\x37\x3f\xf8\xf0\xa7\x57\xaf\x5f" "\xdf\xb8\x71\xb3\xed\x9e\x00\x00\x00\x00\x00\x00\x00\x00\x8f\x2a\x8f\xff" "\xb9\x56\x1b\xff\xf9\x54\x59\x96\x77\x1b\xcb\xed\x19\xff\xf5\xed\x58\x7b" "\xdc\xf1\x3f\x07\x79\x66\x77\x80\xd1\x09\x03\x55\xf7\x0f\xbf\x4d\xfb\xd9" "\xea\x8d\xfa\xbd\xda\x70\xe3\x2f\xc6\xa4\xf1\xbf\x87\xbb\x73\xfb\x8d\xff" "\x3d\x98\x72\x7f\xc3\x29\xed\xa3\x29\xed\x4b\x53\xda\x97\xa7\xb4\x8f\xbd" "\xd0\xa3\x26\xe7\xff\x62\x6d\xbc\xf3\x53\x11\x71\xb2\x31\xfc\x7a\x17\xc6" "\x7f\x6d\x8e\x79\xdf\x05\x39\xff\x97\x6a\x8f\xe7\x2a\xff\xaf\x34\x96\xab" "\xe7\x5f\xfe\x7e\x91\xf3\xef\xed\xc9\xff\xcc\xad\xf7\x7f\x71\xe6\xe6\x07" "\x1f\xbe\x76\xed\xfd\xab\xef\x6d\xbc\xb7\xf1\xb3\x0b\xe7\xce\x9d\xbd\x70" "\xf1\xe2\xa5\x4b\x97\xce\xbc\x7b\xed\xfa\xc6\xd9\x9d\x7f\x5b\xec\xf1\xd1" "\xca\xf9\xe7\xb1\xaf\x9d\x07\xda\x2d\x39\xff\x9c\xb9\xfc\xbb\x25\xe7\xff" "\xa5\x54\xcb\xbf\x5b\x72\xfe\x5f\x4e\xb5\xfc\xbb\x25\xe7\x9f\xdf\xef\xc9" "\xbf\x5b\x72\xfe\xf9\xb3\x8f\xfc\xbb\x25\xe7\xff\x4a\xaa\xe5\xdf\x2d\x39" "\xff\xaf\xa5\x5a\xfe\xdd\x92\xf3\x7f\x35\xd5\xf2\xef\x96\x9c\xff\xd7\x53" "\x2d\xff\x6e\xc9\xf9\xbf\x96\x6a\xf9\x77\x4b\xce\xff\x74\xaa\xe5\xdf\x2d" "\x39\xff\x33\xa9\x3e\x60\xfe\x2b\x47\xdd\x2f\x66\x23\xe7\x9f\x8f\x70\xd9" "\xff\xbb\x25\xe7\x9f\xcf\x6c\x90\x7f\xb7\xe4\xfc\xcf\xa7\x5a\xfe\xdd\x92" "\xf3\xbf\x90\x6a\xf9\x77\x4b\xce\xff\xf5\x54\xcb\xbf\x5b\x72\xfe\xdf\x48" "\xb5\xfc\xbb\x25\xe7\x7f\x31\xd5\xf2\xef\x96\x9c\xff\x37\x53\x2d\xff\x6e" "\xc9\xf9\x5f\x4a\xb5\xfc\xbb\x25\xe7\xff\xad\x54\xcb\xbf\x5b\x72\xfe\xdf" "\x4e\xb5\xfc\xbb\x25\xe7\xff\x46\xaa\xe5\xdf\x2d\x39\xff\xef\xa4\x5a\xfe" "\xdd\x92\xf3\xff\x6e\xaa\xe5\xdf\x2d\x39\xff\xef\xa5\x5a\xfe\xdd\x92\xf3" "\x7f\x33\xd5\xf2\xef\x96\x87\xdf\xff\x6f\xc6\x8c\x19\x33\x79\xa6\xed\x67" "\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x69\x16\xa7\x13\xb7\xbd" "\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xff\xd9\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2" "\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x15\xf6\xee\x2d\x46\xae\xbb\xbe\x03\xf8\x99\xbd\x79\xed\x40" "\x62\x20\xa4\x4e\x6a\x60\xe3\x98\x10\x92\x4d\x76\x6d\x27\xbe\xd0\xa6\x98" "\x70\x6d\xb8\x95\x40\x28\xf4\x82\xed\x7a\xd7\x66\xc1\x37\xbc\x76\x09\x34" "\x92\x4d\x03\x25\x12\x46\x45\x15\x6d\xc3\x43\x5b\x40\xa8\xcd\x4b\x45\x1e" "\x78\xa0\x15\xa0\x3c\xa0\x56\x48\x95\xa0\x7d\xa0\x2f\x88\x0a\x95\x87\xa8" "\x0a\x28\x20\x55\x82\x0a\xd8\x6a\xce\xf9\xff\xff\x3b\x33\x3b\x3b\xb3\x6b" "\x8f\xd7\x67\xce\xf9\x7c\xa4\xe4\x97\x9d\x39\x33\xe7\xcc\x99\x33\xb3\xfb" "\xdd\xcd\x77\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xad" "\x6e\x7d\xed\xfc\x27\x1b\x59\x96\x35\xff\xc9\xff\xb5\x35\xcb\x9e\xd7\xfc" "\xef\xcd\x53\x5b\xf3\xcb\x5e\x75\xad\xb7\x10\x00\x00\x00\xb8\x52\xbf\xcc" "\xff\xfd\xdc\x0d\xe9\x82\x83\x6b\xb8\x51\xcb\x32\xff\xfa\xd2\x6f\x7f\x65" "\x69\x69\x69\x29\x7b\xcf\xe8\x5f\x8e\x7f\x76\x69\x29\x5d\x31\x95\x65\xe3" "\x9b\xb2\x2c\xbf\x2e\x7a\xea\x07\xef\x6d\xb4\x2e\x13\x3c\x96\x4d\x36\x46" "\x5a\xbe\x1e\xe9\xb3\xfa\xd1\x3e\xd7\x8f\xf5\xb9\x7e\xbc\xcf\xf5\x13\x7d" "\xae\xdf\xd4\xe7\xfa\xc9\x3e\xd7\xaf\xd8\x01\x2b\x6c\x2e\x7e\x1f\x93\xdf" "\xd9\xce\xfc\x3f\xb7\x16\xbb\x34\xbb\x31\x1b\xcf\xaf\xdb\xd9\xe5\x56\x8f" "\x35\x36\x8d\x8c\xc4\xdf\xe5\xe4\x1a\xf9\x6d\x96\xc6\x8f\x65\x0b\xd9\x89" "\x6c\x3e\x9b\x6d\x5b\xbe\x58\xb6\x91\x2f\xff\xb5\x5b\x9b\xeb\x7a\x53\x16" "\xd7\x35\xd2\xb2\xae\xed\xcd\x23\xe4\x27\x8f\x1e\x8d\xdb\xd0\x08\xfb\x78" "\x67\xdb\xba\x96\xef\x33\xfa\xd1\x6b\xb2\xa9\x9f\xfe\xe4\xd1\xa3\x7f\x7f" "\xee\xd9\x9b\xbb\xcd\xbe\xbb\xa1\xed\xfe\x8a\xed\xbc\x63\x47\x73\x3b\x3f" "\x1e\x2e\x29\xb6\xb5\x91\x6d\x4a\xfb\x24\x6e\xe7\x48\xcb\x76\x6e\xef\xf2" "\x9c\x8c\xb6\x6d\x67\x23\xbf\x5d\xf3\xbf\x3b\xb7\xf3\xb9\x35\x6e\xe7\xe8" "\xf2\x66\x6e\xa8\xce\xe7\x7c\x32\x1b\xc9\xff\xfb\x3b\xf9\x7e\x1a\x6b\xfd" "\xb5\x5e\xda\x4f\xdb\xc3\x65\x3f\xbb\x2d\xcb\xb2\x8b\xcb\x9b\xdd\xb9\xcc" "\x8a\x75\x65\x23\xd9\x96\xb6\x4b\x46\x96\x9f\x9f\xc9\xe2\x88\x6c\xde\x47" "\xf3\x50\x7a\x61\x36\xb6\xae\xe3\xf4\xd6\x35\x1c\xa7\xcd\x39\xb7\xb3\xfd" "\x38\xed\x7c\x4d\xc4\xe7\xff\xd6\x70\xbb\xb1\x55\xb6\xa1\xf5\x69\xfa\xd1" "\xc7\x26\x5a\x9e\xf7\x5f\x2c\x5d\xce\x71\x1a\x35\x1f\xf5\x6a\xaf\x95\xce" "\x63\x70\xd0\xaf\x95\xb2\x1c\x83\xf1\xb8\xf8\x4e\xfe\xa0\x1f\xef\x7a\x0c" "\xee\x0c\x8f\xff\xd1\xdb\x57\x3f\x06\xbb\x1e\x3b\x5d\x8e\xc1\xf4\xb8\x5b" "\x8e\xc1\x1d\xfd\x8e\xc1\x91\x89\xd1\x7c\x9b\xd3\x93\xd0\xc8\x6f\xb3\x7c" "\x0c\xee\x6a\x5b\x7e\x34\x5f\x53\x23\x9f\xcf\xdc\xde\xfb\x18\x9c\x39\x77" "\xf2\xcc\xcc\xe2\x47\x3e\x7a\xf7\xc2\xc9\x23\xc7\xe7\x8f\xcf\x9f\xda\xb3" "\x6b\xd7\xec\x9e\xbd\x7b\xf7\xef\xdf\x3f\x73\x6c\xe1\xc4\xfc\x6c\xf1\xef" "\xcb\xdc\xdb\xe5\xb7\x25\x1b\x49\xaf\x81\x1d\x61\xdf\xc5\xd7\xc0\x2b\x3a" "\x96\x6d\x3d\x54\x97\xbe\x30\xb1\xe2\xfd\xf7\x72\x5f\x87\x93\x3d\x5e\x87" "\x5b\x3b\x96\x1d\xf4\xeb\x70\xac\xf3\xc1\x35\x36\xe6\x05\xb9\xf2\x98\x2e" "\x5e\x1b\xef\x6a\xee\xf4\xc9\x4b\x23\xd9\x2a\xaf\xb1\xfc\xf9\xb9\xf3\xca" "\x5f\x87\xe9\x71\xb7\xbc\x0e\xc7\x5a\x5e\x87\x5d\xbf\xa7\x74\x79\x1d\x8e" "\xad\xe1\x75\xd8\x5c\xe6\xcc\x9d\x6b\xfb\x99\x65\xac\xe5\x9f\x6e\xdb\xb0" "\xfa\xf7\x82\x2b\x3b\x06\xb7\xb6\x1c\x83\x9d\x3f\x8f\x74\x1e\x83\x83\xfe" "\x79\xa4\x2c\xc7\xe0\x64\x38\x2e\xbe\x77\xe7\xea\xdf\x0b\xb6\x87\xed\x7d" "\x7c\x7a\xbd\x3f\x8f\x8c\xae\x38\x06\xd3\xc3\x0d\xef\x3d\xcd\x4b\xd2\xcf" "\xfb\x93\xfb\xf3\xd1\xed\xb8\xbc\xa5\x79\xc5\x75\x13\xd9\xf9\xc5\xf9\xb3" "\xf7\x3c\x72\xe4\xdc\xb9\xb3\xbb\xb2\x30\x36\xc4\x8b\x5a\x8e\x95\xce\xe3" "\x75\x4b\xcb\x63\xca\x56\x1c\xaf\x23\xeb\x3e\x5e\x0f\x2e\xbc\xf4\xf1\x5b" "\xba\x5c\xbe\x35\xec\xab\xc9\xbb\x9b\xff\x9a\x5c\xf5\xb9\x6a\x2e\x73\xef" "\x3d\xbd\x9f\xab\xfc\xbb\x5b\xf7\xfd\xd9\x76\xe9\xee\x2c\x8c\x01\xdb\xe8" "\xfd\xd9\xed\xbb\x79\x73\x7f\x4e\x64\xd9\xe7\xbe\xf9\xb1\x87\xbe\xfe\xe8" "\xe7\x5e\xbb\xea\xfe\x6c\xe6\xcd\x8f\xcf\x5c\xf9\xcf\xe2\x29\x97\xb6\xbc" "\xff\x8e\xaf\xf2\xfe\x1b\x73\xff\xaf\x8a\xf5\xa5\xbb\x7a\x6c\x74\x7c\xac" "\x78\xfd\x8e\xa6\xbd\x33\xde\xf6\x7e\xdc\xfe\x54\x8d\xe5\xef\x5d\x8d\x7c" "\xdd\xcf\xcd\xac\xed\xfd\x78\x3c\xfc\xb3\xd1\xef\xc7\x37\xf6\x78\x3f\xde" "\xd6\xb1\xec\xa0\xdf\x8f\xc7\x3b\x1f\x5c\x7c\x3f\x6e\xf4\xfb\x6d\xc7\x95" "\xe9\x7c\x3e\x27\xc3\x71\x72\x62\xb6\xf7\xfb\x71\x73\x99\x6d\xbb\xd7\x7b" "\x4c\x8e\xf5\x7c\x3f\xbe\x2d\xcc\x46\xd8\xff\xaf\x0c\x49\x21\xe5\xa2\x96" "\x63\x67\xb5\xe3\x36\xad\x6b\x6c\x6c\x3c\x3c\xae\xb1\xb8\x86\xf6\xe3\x74" "\x4f\xdb\xf2\xe3\x21\x9b\x35\xd7\xf5\xe4\xee\xf0\x43\x61\xda\xca\xb5\x1d" "\xa7\x77\xdc\x56\x2c\x3f\xda\x72\xbb\x68\xa3\x8e\xd3\xa9\x8e\x65\x07\x7d" "\x9c\xa6\xdf\x7d\xad\x76\x9c\x36\xfa\xfd\xf6\xed\xf2\x74\x3e\x9f\x93\xe1" "\xb8\xb8\x71\x4f\xef\xe3\xb4\xb9\xcc\xd3\xf7\x5e\xf9\x7b\xe7\xe6\xf8\x9f" "\x2d\xef\x9d\x13\xfd\x8e\xc1\xf1\xd1\x89\xe6\x36\x8f\xa7\x83\x30\x7f\xbf" "\xcf\x96\x36\xc7\x63\xf0\x9e\xec\x68\x76\x3a\x3b\x91\xcd\xe5\xd7\x4e\xe4" "\xc7\x53\x23\x5f\xd7\xf4\x7d\x6b\x7b\xaf\x9c\x08\xff\x6c\xf4\x7b\xe5\xb6" "\x1e\xc7\xe0\x1d\x1d\xcb\x0e\xfa\x18\x4c\xdf\xc7\x56\x3b\xf6\x1a\x63\x2b" "\x1f\xfc\x00\x74\x3e\x9f\x93\xe1\xb8\x78\xe2\xbe\xde\xc7\x60\x73\x99\xd7" "\xed\x1b\xec\xcf\xae\x77\x84\x4b\xd2\x32\x2d\x3f\xbb\x76\xfe\x7e\x6d\xb5" "\xdf\x79\xdd\xd2\xb1\x9b\xae\xd6\xb1\x32\x16\xb6\xf3\x9b\xfb\x7a\xff\x6e" "\xb6\xb9\xcc\x89\xfd\xeb\xcd\x99\xbd\xf7\xd3\x5d\xe1\x92\xeb\xba\xec\xa7" "\xce\xd7\xef\x6a\xaf\xa9\xb9\x6c\x63\xf6\xd3\xb6\xb0\x9d\xcf\xee\x5f\x7d" "\x3f\x35\xb7\xa7\xb9\xcc\x67\x0f\xac\xf1\x78\x3a\x98\x65\xd9\x85\x0f\x3d" "\x90\xff\xbe\x37\xfc\x7d\xe5\xc2\xf9\xef\x7e\xa5\xed\xef\x2e\xdd\xfe\xa6" "\x73\xe1\x43\x0f\xfc\xf8\xf9\xc7\xfe\x65\x3d\xdb\x0f\xc0\xf0\xfb\x55\x31" "\xb6\x14\xdf\xeb\x5a\xfe\x32\xb5\x96\xbf\xff\x03\x00\x00\x00\x43\x21\xe6" "\xfe\x91\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf8\x7f\x85\x27\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\x63\x61\x26\x55\xc8\xff\x7f\xda\x7f\x91" "\x6d\xaf\x7b\x76\xe1\x57\x17\xb2\xd4\xcc\x5f\x0a\xe2\xf5\x69\x37\x3c\x58" "\x2c\x17\x3b\xae\xb3\xe1\xeb\xa9\xa5\x65\xcd\xcb\x1f\xf8\xd2\xfc\xff\xfe" "\xf3\x85\xb5\x6d\xde\x48\x96\x65\xbf\x78\xf0\x4f\xba\x2e\xbf\xed\xc1\xb8" "\x5d\x85\xa9\xb0\x9d\x4f\xbd\xbe\xfd\xf2\x15\xbe\x72\xf7\x9a\xd6\x7d\xf8" "\xe1\x0b\x69\xbd\xad\xfd\xf5\xcf\x87\xfb\x8f\x8f\x67\xad\x87\x41\xb7\x0a" "\xee\x6c\x96\x65\x5f\xbb\xe1\xd3\xf9\x7a\xa6\xde\x7b\x29\x9f\x4f\x3f\x78" "\x38\x9f\x0f\x5d\x7c\xfc\xb1\xe6\x32\xcf\x1d\x28\xbe\x8e\xb7\x7f\xe6\x45" "\xc5\xf2\x7f\x13\xca\xbf\x07\x8f\x1d\x69\xbb\xfd\x33\x61\x3f\xfc\x30\xcc" "\xd9\x37\x77\xdf\x1f\xf1\x76\x5f\xbe\xf4\xca\xed\xfb\xde\xbd\xbc\xbe\x78" "\xbb\xc6\x8e\xeb\xf3\x87\xfd\xc4\xfb\x8a\xfb\x8d\x9f\x93\xf3\x99\xc7\x8a" "\xe5\xe3\x7e\x5e\x6d\xfb\xbf\xfe\xa9\x27\xbf\xdc\x5c\xfe\x91\x97\x77\xdf" "\xfe\x0b\x23\xdd\xb7\xff\xc9\x70\xbf\x5f\x0a\xf3\xe7\x2f\x29\x96\x6f\x7d" "\x0e\x9a\x5f\xc7\xdb\x7d\x22\x6c\x7f\x5c\x5f\xbc\xdd\x3d\x5f\xfc\x46\xd7" "\xed\x7f\xea\x93\xc5\xf2\x67\xde\x50\x2c\x77\x38\xcc\xb8\xfe\x3b\xc2\xd7" "\x3b\xdf\xf0\xec\x42\xeb\xfe\x7a\xa4\x71\xa4\xed\x71\x65\x6f\x2c\x96\x8b" "\xeb\x9f\xfd\xee\x9f\xe7\xd7\xc7\xfb\x8b\xf7\xdf\xb9\xfd\x93\x87\x2e\xb5" "\xed\x8f\xce\xe3\xe3\xe9\xff\x28\xee\x67\xa6\x63\xf9\x78\x79\x5c\x4f\xf4" "\x4f\x1d\xeb\x6f\xde\x4f\xeb\xf1\x19\xd7\xff\xe4\x9f\x1d\x6e\xdb\xcf\xfd" "\xd6\xff\xd4\x43\xcf\xbc\xa4\x79\xbf\x9d\xeb\xbf\xab\x63\xb9\x33\x1f\xba" "\x33\x5f\xff\xf2\xfd\xb5\x7f\x62\xd3\xdf\x7e\xe2\xd3\x5d\xd7\x17\xb7\xe7" "\xe0\x3f\x9e\x69\x7b\x3c\x07\xdf\x11\x5e\xc7\x61\xfd\x4f\xbc\x2f\x1c\x8f" "\xe1\xfa\xff\x7b\xaa\xb8\xbf\xce\x4f\x57\x38\xfc\x8e\xf6\xf7\x9f\xb8\xfc" "\xe7\xb7\x5e\x68\x7b\x3c\xd1\x9b\x7e\x5a\xac\xff\xa9\x57\x1f\xcf\xe7\xa6" "\xc9\xcd\x5b\xae\x7b\xde\xf3\xaf\xbf\xf8\xb2\xe6\xbe\xcb\xb2\xef\x6c\x2a" "\xee\xaf\xdf\xfa\x8f\xff\xdd\xe9\xb6\xed\xff\xc2\x4d\xc5\xfe\x88\xd7\xc7" "\x8e\x7e\xe7\xfa\x57\x13\xd7\x7f\xf6\xc3\xd3\xa7\x4e\x2f\x9e\x5f\x98\x4b" "\x7b\xf5\xd1\x1b\xf2\xcf\xce\x79\x4b\xb1\x3d\x71\x7b\x6f\x08\xef\xad\x9d" "\x5f\x1f\x3a\x7d\xee\xfd\xf3\x67\xa7\x66\xa7\x66\xb3\x6c\xaa\xba\x1f\xa1" "\x77\xd9\xbe\x18\xe6\x8f\x8b\x71\xb1\xf7\xd2\x4b\x2b\xde\x41\xef\x7c\x38" "\x3c\x9f\xb7\xfc\xf5\xd7\xb6\xdc\xfe\xef\x9f\x8a\x97\xff\xe7\xbb\x8a\xcb" "\x2f\xbd\xb9\xf8\xbe\xf5\x8a\xb0\xdc\x67\xc2\xe5\x5b\xc3\xf3\xb7\xbe\xf5" "\xaf\xf4\xc4\xad\x37\xe5\xaf\xef\xc6\xd3\x61\x0b\x97\x56\x7e\x5e\xf0\x95" "\xd8\xbe\xf3\x7f\xf6\xaf\x69\xc1\xf0\xf8\x3b\x7f\x2e\x88\xc7\xfb\x99\x17" "\xbf\x3f\xdf\x0f\xcd\xeb\xf2\xef\x1b\xf1\x75\x7d\x85\xdb\xff\xfd\xb9\xe2" "\x7e\xbe\x1a\xf6\xeb\x52\xf8\x64\xe6\x1d\x37\x2d\xaf\xaf\x75\xf9\xf8\xd9" "\x08\x97\xde\x59\xbc\xde\xaf\x78\xff\x85\xb7\xb9\xf8\xbc\xfe\x43\x78\xbe" "\xdf\xfa\xc3\xe2\xfe\xe3\x76\xc5\xc7\xfb\xfd\xf0\x73\xcc\x37\xb6\xb5\xbf" "\xdf\xc5\xe3\xe3\xab\x17\x46\x3a\xef\x3f\xff\x14\x8f\x8b\xe1\xfd\x24\xbb" "\x58\x5c\x1f\x97\x8a\xfb\xfb\xd2\x73\x37\x75\xdd\xbc\xf8\x39\x24\xd9\xc5" "\x9b\xf3\xaf\xff\x22\xdd\xcf\xcd\xeb\x7a\x98\xab\x59\xfc\xc8\xe2\xcc\x89" "\x85\x53\xe7\x1f\x99\x39\x37\xbf\x78\x6e\x66\xf1\x23\x1f\x3d\x74\xf2\xf4" "\xf9\x53\xe7\x0e\xe5\x9f\xe5\x79\xe8\x03\xfd\x6e\xbf\xfc\xfe\xb4\x25\x7f" "\x7f\x9a\x9b\xdf\x7b\x6f\x96\xbf\x5b\x9d\x2e\xc6\x55\x76\xad\xb7\xff\xcc" "\xc3\x47\xe7\xf6\xcd\xde\x3e\x37\x7f\xec\xc8\xf9\x63\xe7\x1e\x3e\x33\x7f" "\xf6\xf8\xd1\xc5\xc5\xa3\xf3\x73\x8b\xb7\x1f\x39\x76\x6c\xfe\xc3\xfd\x6e" "\xbf\x30\x77\xff\xae\xdd\x07\xf6\xec\xdb\x3d\x7d\x7c\x61\xee\xfe\xfd\x07" "\x0e\xec\x39\x30\xbd\x70\xea\x74\x73\x33\x8a\x8d\xea\x63\xef\xec\x07\xa7" "\x4f\x9d\x3d\x94\xdf\x64\xf1\xfe\x7b\x0f\xec\xba\xef\xbe\x7b\x67\xa7\x4f" "\x9e\x9e\x9b\xbf\x7f\xdf\xec\xec\xf4\xf9\x7e\xb7\xcf\xbf\x37\x4d\x37\x6f" "\xfd\xc7\xd3\x67\xe7\x4f\x1c\x39\xb7\x70\x72\x7e\x7a\x71\xe1\xa3\xf3\xf7" "\xef\x3a\xb0\x77\xef\xee\xbe\x9f\x06\x78\xf2\xcc\xb1\xc5\xa9\x99\xb3\xe7" "\x4f\xcd\x9c\x5f\x9c\x3f\x3b\x53\x3c\x96\xa9\x73\xf9\xc5\xcd\xef\x7d\xfd" "\x6e\x4f\x35\x2d\xfe\x57\xf1\xf3\x6c\xa7\x46\xf1\x41\x7c\xd9\xdb\xef\xda" "\x9b\x3e\x9f\xb5\xe9\x4b\x1f\x5b\xf5\xae\x8a\x45\x3a\x3e\x40\xf4\xd9\xf0" "\x59\x34\xdf\x7a\xc1\x99\xfd\x6b\xf9\x3a\xe6\xfe\xf1\x30\x93\x2a\xe4\x7f" "\x00\x00\x00\x20\x17\x73\xff\x44\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xa6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xc9\x30\xd3\xff\x12" "\x50\x93\xfc\x5f\xb9\xfe\xff\xb6\x0b\x6b\x5a\xbf\xfe\xbf\xfe\x7f\xeb\xfe" "\xd2\xff\xaf\x59\xff\xff\x9d\x65\xeb\xff\x17\xef\x17\xfa\xff\x83\x71\xa5" "\xfd\x7b\xfd\xff\x40\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x01\x28\x5b" "\xff\x3f\xe6\xfe\xcd\x59\xe6\xef\xff\x00\x00\x00\x50\x51\x31\xf7\x6f\x09" "\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2e\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x79\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xdd\xd7\xaf\xff\x3f\x9c\xf4\xff\x7b\xd3\xff\xef\x43\xff\x7f" "\x26\xab\x57\xff\xff\xe2\x20\xb7\xff\x1a\xf4\xff\x37\xb7\x7e\xa1\xff\x4f" "\x19\x95\xad\xff\x1f\x73\xff\xf3\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xbf\x3e\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x86\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xad\x61\x26\x35\xc9\xff\xfa\xff\x57" "\xd4\xff\x4f\x9d\x2b\xfd\xff\xf6\xed\xd7\xff\x6f\xa7\xff\x1f\x8e\x07\xfd" "\x7f\xfd\xff\x0d\xa0\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xce\xff\x3f\x5c\xfd" "\xff\x36\xfa\xff\x94\x51\xd9\xfa\xff\x31\xf7\xbf\x20\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\x17\x86\x99\xc8\xff\x00\x00\x00\x50\x3e\x63" "\x97\x77\xb3\x98\xfb\x5f\x14\x66\xb2\x22\xff\x5f\xe6\x0a\x00\x00\x00\x80" "\x6b\x2e\xe6\xfe\x1b\xb3\x8e\x22\x78\x4d\xfe\xfe\xaf\xff\xef\xfc\xff\xfa" "\xff\xfa\xff\xfa\xff\xdd\xd7\xbf\xf6\xfe\xff\x68\xa6\xff\x5f\x1e\xfa\xff" "\xbd\xe9\xff\xf7\xa1\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x40\x95\xad\xff\x9f" "\xe7\xfe\x6c\x32\x7b\x71\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd" "\x37\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x5a\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\xb6\x30\x93\x9a\xe4\x7f\xfd\xff\xca\xf4\xff" "\x7f\xd6\xfa\xd4\xe9\xff\xeb\xff\xf7\x5a\xbf\xfe\xbf\xf3\xff\x57\x99\xfe" "\x7f\x6f\xfa\xff\x7d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\x33\x50\x65\xeb\xff" "\xc7\xdc\x7f\x73\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xb7\x84" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x7a\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\xf6\x30\x93\x9a\xe4\x7f\xfd\xff\x92\xf7\xff\x63\x73" "\xd4\xf9\xff\xf5\xff\xf5\xff\x4b\xd9\xff\x9f\xd4\xff\x2f\x1d\xfd\xff\xde" "\xf4\xff\xfb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff\x8f\xb9" "\xff\x25\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x34\xcc\x44" "\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x65\x61\x26\xf2\x3f\x00\x00\x00\x54" "\x46\xcc\xfd\x53\x61\x26\x35\xc9\xff\xeb\xe9\xff\x37\x2e\xea\xff\xaf\xe6" "\x2a\x9f\xff\x7f\x62\x0d\xe7\xff\x6f\xa3\xff\xaf\xff\xdf\x6b\xfd\xfa\xff" "\xce\xff\x5f\x65\xfa\xff\xbd\xe9\xff\xf7\xa1\xff\xaf\xff\xaf\xff\xaf\xff" "\xcf\x40\x95\xad\xff\x1f\x73\xff\xad\x61\x26\x35\xc9\xff\x00\x00\x00\x50" "\x07\x31\xf7\xef\x08\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2d\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x67\x98\x49\x4d\xf2\xbf\xf3\xff" "\x0f\x45\xff\x3f\xd3\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\x5f\x1b\xfd\xff" "\xde\xf4\xff\xfb\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\xca\xd6\xff\x8f" "\xb9\xff\xe5\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xdf\x1e\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x8a\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x3b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xbb\xaf\x5f\xff\x7f\x38\xe9\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\x3f\x03\x55\xb6\xfe\x7f\xcc\xfd\xaf\x0c\x33\xa9\x49\xfe" "\x07\x00\x00\x80\x3a\x88\xb9\xff\xce\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23" "\xe6\xfe\xbb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xa7\xc3\x4c\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xbb\xaf\x5f\xff\x7f\x38" "\xe9\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03\x55\xb6" "\xfe\x7f\xcc\xfd\x77\x87\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f" "\x4f\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x4c\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x6c\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe\xbf" "\xfe\xff\xba\xfa\xff\x2f\x5b\xbe\x5f\xfd\xff\x82\xfe\x7f\xb9\xe8\xff\xf7" "\xd6\xde\xff\xef\x7c\xb5\xb5\xd0\xff\xd7\xff\xd7\xff\xbf\x46\xfd\xff\xf1" "\xea\xf5\xff\x7f\xde\xf1\x46\x42\xad\x94\xad\xff\x1f\x73\xff\xae\x30\x93" "\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x77\x87\x99\xc8\xff\x00\x00\x00" "\x50\x19\x31\xf7\xef\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x37" "\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf\xf9\xff\xbb\xaf\x5f" "\xff\x7f\x38\xe9\xff\xf7\x36\xf8\xf3\xff\xc7\x87\xa8\xff\xaf\xff\xaf\xff" "\xef\xfc\xff\xce\xff\xcf\x4a\x65\xeb\xff\xc7\xdc\x7f\x5f\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\xa9" "\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbe\x7e\xfd\xff\xe1" "\xa4\xff\xdf\xdb\xe0\xfb\xff\xce\xff\xaf\xff\xbf\x4c\xff\xff\xda\xf6\xff" "\x9b\xc7\x96\xfe\x3f\x65\x53\xb6\xfe\x7f\xcc\xfd\x07\xc2\x4c\x6a\x92\xff" "\x01\x00\x00\xa0\x0e\x62\xee\x7f\x55\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x6f\x84\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x66\x98\x49" "\x4d\xf2\x7f\xcf\xfe\xff\xa8\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\xb5\xef\xff" "\x4f\xe8\xff\xeb\xff\xaf\x83\xfe\x7f\x6f\xfa\xff\x7d\xe8\xff\xeb\xff\x0f" "\x71\xff\xdf\xf9\xff\x29\xa3\xb2\xf5\xff\x63\xee\xbf\x3f\xcc\xa4\x26\xf9" "\x1f\x00\x00\x00\xea\x20\xe6\xfe\xdf\x0a\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\x7f\x75\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xc1\x30\x93" "\x9a\xe4\x7f\xe7\xff\xdf\xa0\xfe\x7f\xbc\x50\xff\x5f\xff\x5f\xff\xdf\xf9" "\xff\xf5\xff\xaf\xaa\x8e\xfe\xfd\xba\xe9\xff\x07\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x0c\x40\xd9\xfa\xff\x31\xf7\xbf\x26\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\x07\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98" "\xfb\x5f\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xba\x30\x93\x9a" "\xe4\x7f\xfd\x7f\xe7\xff\xbf\xf6\xfd\xff\xf1\xb6\x6d\xd7\xff\x5f\xbe\x9d" "\xfe\x7f\x41\xff\x5f\xff\x7f\x3d\x9c\xff\xbf\x37\xfd\xff\x3e\xf4\xff\xf5" "\xff\xf5\xff\xf5\xff\x19\xa8\xb2\xf5\xff\x63\xee\x7f\x7d\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x6f\x08\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\x7f\x63\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x9b\xc2\x4c" "\x6a\x92\xff\xf5\xff\xf5\xff\xaf\x7d\xff\xdf\xf9\xff\xf5\xff\x0b\xfa\xff" "\xfa\xff\x83\xa0\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x0c\x54\xd9\xfa\xff\x31\xf7\xff\x76\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4" "\x41\xcc\xfd\x0f\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x39\xcc" "\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x2d\x61\x26\x35\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xdd\xd7\xaf\xff\x3f\x9c\xf4\xff\x7b\x1b" "\xb2\xfe\xff\x2f\xaf\x0f\x97\xeb\xff\x17\xf4\xff\xcb\xbd\xfd\xeb\xed\xff" "\x8f\x75\x7c\x7d\x55\xfa\xff\x3f\x58\xad\xff\xbf\xb4\xa9\xf3\xf6\xfa\xff" "\x5c\x0d\x65\xeb\xff\xc7\xdc\xff\xd6\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8" "\x83\x98\xfb\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xf6\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xdf\x09\x33\xa9\x49\xfe\xd7\xff" "\x6f\x6e\xc7\x72\x7b\x59\xff\x5f\xff\x3f\xbf\x40\xff\x5f\xff\x5f\xff\x7f" "\x68\xe9\xff\xf7\x36\x64\xfd\x7f\xe7\xff\xef\xa0\xff\x5f\xee\xed\x77\xfe" "\x7f\xfd\x7f\x56\x2a\x5b\xff\x3f\xe6\xfe\x77\x84\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x3b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x15\x66\x52\x93\xfc" "\xaf\xff\xef\xfc\xff\xfa\xff\xfa\xff\xfa\xff\xdd\xd7\xaf\xff\x3f\x9c\xf4" "\xff\x7b\xd3\xff\xef\x43\xff\x5f\xff\xbf\x6c\xfd\xff\xff\xd6\xff\x67\xb8" "\x95\xad\xff\x1f\x73\xff\xc3\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31" "\xf7\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x77\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x13\x66\x52\x93\xfc\xaf\xff\x3f\x2c" "\xfd\xff\x29\xfd\xff\x75\xf6\xff\x27\xc2\x65\xfa\xff\xfa\xff\xfa\xff\xf5" "\xa2\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xfa\xff\x65\xeb\xff\x3b\xff\x3f\x43" "\xae\x6c\xfd\xff\x98\xfb\xdf\x1b\x66\xb2\xf6\xfc\x3f\xb9\xe6\x25\x01\x00" "\x00\x80\x6b\x22\xe6\xfe\xdf\x0b\x33\xa9\xc9\xdf\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xff\xfd\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x3f\x08\x33" "\xa9\x49\xfe\xd7\xff\x1f\x96\xfe\xbf\xf3\xff\x67\xce\xff\xaf\xff\xdf\xf1" "\x78\xf4\xff\xf5\xff\xbb\xd9\xb8\xfe\x7f\x7c\xe7\xd1\xff\xd7\xff\xd7\xff" "\x8f\xf4\xff\xf5\xff\xf5\xff\xe9\x54\xb6\xfe\x7f\xcc\xfd\x7f\x18\x66\x52" "\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\xfb\xc2\x4c\xe4\x7f\x00\x00\x00" "\x18\x0a\xdd\xfe\x9f\xec\x4e\x31\xf7\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\x3f\x1c\x66\x52\x93\xfc\xaf\xff\xaf\xff\xaf\xff\x5f\xd2\xfe" "\xff\x5f\xed\xf8\xb7\xef\x7d\xfb\x6d\x87\x77\xe9\xff\xeb\xff\xeb\xff\xaf" "\xcb\x86\x9e\xff\xbf\xf9\xe2\x77\xfe\x7f\xfd\x7f\xfd\xff\x44\xff\x5f\xff" "\x5f\xff\x9f\x4e\x65\xeb\xff\xc7\xdc\x7f\x24\xcc\x64\x39\xf8\xbd\xc5\x09" "\xfe\x01\x00\x00\x60\xb8\xc5\xdc\xff\x47\x61\x26\x35\xf9\xfb\x3f\x00\x00" "\x00\xd4\x41\xcc\xfd\x47\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xe7" "\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x4b\xda\xff\x1f\xe2\xf3\xff" "\xc7\xfd\x31\x4c\xfd\xff\xe9\x4d\x43\xd4\xff\x8f\x6f\xba\xfa\xff\x5d\x6d" "\x68\xff\xff\xdd\xcb\x3d\x71\xfd\xff\xf5\xf6\xff\x27\xba\x5e\xda\xd9\xff" "\x6f\xe8\xff\xb7\xd1\xff\x5f\xf7\xf6\x7f\x2b\xcb\x32\xfd\x7f\xfd\x7f\xae" "\xa1\xb2\xf5\xff\x63\xee\x9f\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x08" "\xb9\x7f\xe4\x58\x31\x97\xaf\x90\xff\x01\x00\x00\xa0\x32\x62\xee\x3f\x1e" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xfe\x30\x93\x9a\xe4\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xe7\xff\xef\xbe\xfe\xd2\xf6\xff\x9d\xff\xbf" "\x27\xfd\xff\xde\xca\xd3\xff\xef\xce\xf9\xff\xf5\xff\x87\x79\xfb\xf5\xff" "\xf5\xff\x59\xa9\x6c\xfd\xff\x98\xfb\x17\xc2\x4c\x6a\x92\xff\x01\x00\x00" "\xa0\x0e\x62\xee\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x07" "\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x4f\x84\x99\xd4\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5f\xbf\xfe\xff\x70\xd2\xff\xef" "\x4d\xff\xbf\x0f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x06\xaa\x6c\xfd\xff\x98" "\xfb\x4f\x86\x99\xd4\x24\xff\x03\x00\x00\xff\xcf\xde\x7d\x7c\x59\x5e\xa7" "\x75\x1c\xbf\x85\xd5\xd2\x7d\xd8\xb8\x73\xe1\x42\xf7\xfe\x09\x2c\x64\xad" "\x7f\x80\x0b\x36\x2e\xf4\x1c\x8f\x0b\x50\x31\x27\x1a\x73\xc4\x9c\x03\x66" "\x31\x60\x00\x45\x4c\x98\x13\x4c\x62\x86\xc9\xc3\xcc\x30\x39\x07\x26\x33" "\x33\xa7\xe7\x40\x3d\xcf\xd3\x15\x7e\xf5\xbb\x55\xdd\xb7\xaa\x7e\xf7\xfb" "\xbc\x5e\x0b\x9f\xa1\x86\xf6\x16\x9e\x3e\xe0\x87\xe6\xcd\x17\xe8\x20\x77" "\xff\x5d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x77\xdc\x62\xff\x03" "\x00\x00\xc0\x30\x72\xf7\x7f\x73\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xc3\xf6" "\xff\x5f\xa5\xff\x3f\xee\xf3\xf5\xff\xfa\xff\x91\xe9\xff\xe7\xe9\xff\xd7" "\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x69\xfd\x7f\xee\xfe\x6f\x89\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xb7\xc6\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\x3d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x6d\x71" "\x4b\x93\xfd\x7f\xa8\xff\xdf\x59\xf5\xec\xff\x33\xe3\xd5\xff\x8f\xd4\xff" "\x7b\xff\xff\xd8\xcf\xd7\xff\xeb\xff\x47\x76\xbe\xfd\xff\x7d\x2f\xfc\x99" "\x4f\xff\xaf\xff\xd7\xff\x07\xfd\xbf\xfe\x5f\xff\xcf\x61\x4b\xeb\xff\x73" "\xf7\x7f\x7b\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x23\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x33\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xbf\x2b\x6e\x69\xb2\xff\xbd\xff\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff" "\x3f\xfd\xf9\xfa\xff\xed\xe4\xfd\xff\x79\x9d\xfa\xff\x7b\x9e\xbe\xed\xae" "\xe7\x1e\xfd\xb2\xc7\x4e\xf3\xf9\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x66\x2d" "\xad\xff\xcf\xdd\xff\xdd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff" "\x9e\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\xde\xb8\xc5\xfe\x07\x00" "\x00\x80\x2d\x74\x65\xf2\xab\xb9\xfb\xbf\x2f\x6e\x69\xb2\xff\xf5\xff\xfa" "\x7f\xfd\x7f\xf4\xff\x97\xf5\xff\xfa\x7f\xfd\xff\x08\xf4\xff\xf3\x3a\xf5" "\xff\x37\xf2\xf9\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x66\x2d\xad\xff\xcf\xdd" "\xff\xfd\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x81\xb8\xc5\xfe" "\x07\x00\x00\x80\xe5\x9a\xfa\x07\xb1\x67\xe4\xee\xbf\x37\x6e\xb1\xff\x01" "\x00\x00\x60\x18\xb9\xfb\xaf\xc6\x2d\x4d\xf6\xbf\xfe\xff\xec\xfb\xff\xcf" "\xeb\xff\xb7\xa3\xff\xf7\xfe\xbf\xfe\x5f\xff\x3f\x04\xfd\xff\x3c\xfd\xff" "\x1a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x46\x2d\xad\xff\xcf\xdd\x7f\x5f\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x30\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x7f\x28\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x38" "\x6e\x69\xb2\xff\xf5\xff\xde\xff\xd7\xff\xeb\xff\xf5\xff\xd3\x9f\xaf\xff" "\xdf\x4e\xfa\xff\x79\xfa\xff\x35\xf4\xff\x37\xdb\xcf\x5f\xd2\xff\xeb\xff" "\xf5\xff\xec\x77\xca\xfe\xff\xf9\x99\x3f\x6d\x6f\xa4\xff\xcf\xdd\xff\x23" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\xd1\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\xff\xb1\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff" "\xf1\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x1b\xee\xff\x8f\xfe" "\xd4\x7b\x91\xfe\x7f\x9a\xfe\xff\x7c\xe8\xff\xe7\x2d\xa6\xff\xdf\xd9\x9d" "\xfc\xb2\xfe\x7f\xeb\xfb\x7f\xef\xff\xeb\xff\xf5\xff\x1c\xb0\xb4\xf7\xff" "\x73\xf7\xff\x44\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x7f\x32\x6e" "\x99\xd9\xff\xa7\xfe\x9b\xf9\x00\x00\x00\xc0\x85\xca\xdd\xff\x53\x71\x8b" "\x5f\xff\x07\x00\x00\x80\xad\x97\xd5\x59\xee\xfe\x9f\x8e\x5b\x9a\xec\x7f" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7\xfe\xff\xf4\xe7\xcf\xf5\xff\x8f\xed\xfb" "\xfe\xf4\xff\xcb\xa2\xff\x9f\xb7\x98\xfe\xff\x18\xfa\x7f\xfd\xff\x36\x7f" "\xff\xfa\x7f\xfd\x3f\x47\x2d\xad\xff\xcf\xdd\xff\x33\x71\x4b\x93\xfd\x0f" "\x00\x00\x00\x1d\xe4\xee\xbf\x3f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x7f\x36\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x2e\x6e\x69\xb2\xff" "\xa7\xfb\xff\xeb\xff\xbd\xfe\xff\x64\xf4\xff\x07\xbf\x7f\xfd\xff\xf4\xcf" "\x8f\x4d\xf5\xff\xf9\xbf\x51\xff\x3f\xdb\xff\xdf\xe1\xfd\xff\x9e\xf4\xff" "\xf3\xf4\xff\x6b\xe8\xff\xf5\xff\xfa\xff\xe3\xfa\xff\x2b\xeb\x7e\xbc\xfe" "\x9f\x29\x4b\xeb\xff\x73\xf7\xff\x7c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07" "\xb9\xfb\x7f\x21\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x31\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x29\x6e\x69\xb2\xff\xbd\xff\xaf\xff" "\xd7\xff\x6f\x5f\xff\xef\xfd\xff\x3d\x17\xf9\xfe\xff\xea\xdc\xfb\xff\x5d" "\xfd\xff\x09\xe9\xff\xe7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xf3\xef\xff" "\xcf\xfc\x5b\x00\xf4\xff\x4c\x59\x5a\xff\x9f\xbb\xff\x97\xe3\x96\x26\xfb" "\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x2b\x71\x8b\xfd\x0f\x00\x00\x00\xdb\x61" "\xff\x3f\x3b\x70\xf8\x1f\x28\x0d\xb9\xfb\x7f\x35\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x7f\x2d\x6e\x19\x67\xff\xcf\xbe\xd5\xa9\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\xe9\xcf\x5f\x56\xff\xef\xfd\xff\x93\xd2\xff\xcf\xd3" "\xff\xaf\xa1\xff\x3f\x8b\x7e\x7e\x77\xb0\xfe\xff\x81\xe3\x7e\xfc\x12\xfa" "\xff\x7b\xcf\xba\xff\x9f\xa1\xff\x67\xca\x81\xfe\xff\xf1\xeb\x5f\xbf\xa8" "\xfe\x3f\x77\xff\xaf\xc7\x2d\xe3\xec\x7f\x00\x00\x00\x68\x2f\x77\xff\x6f" "\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x6f\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x6f\xc5\x2d\x4d\xf6\xff\x99\xf7\xff\x33\xff\xf6\x01" "\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37\x4d\xff\x3f\x4f\xff\xbf" "\x86\xfe\xdf\xfb\xff\xde\xff\xd7\xff\xb3\x51\x07\xfa\xff\x7d\x2e\xaa\xff" "\xcf\xdd\xff\xdb\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x9d\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x20\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x7f\x37\x6e\x69\xb2\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xd3\x9f\xaf\xff\xdf\x4e\x37\xd5\xdf\xdf\xa2\xff\x2f\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x67\x03\x96\xd6\xff\xe7\xee\xff\xbd\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\xff\x7e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xff\x41\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x61\xdc\xd2\x64" "\xff\xeb\xff\xcf\xb6\xff\xcf\xaf\xeb\xff\xf5\xff\x2b\xfd\xbf\xfe\x5f\xff" "\x7f\x2e\xda\xbe\xff\xbf\x33\xf5\x57\xa2\xa3\x8e\xe9\xff\x9f\xfc\xc6\xab" "\x5f\x73\xf0\x2b\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xe7\x84\xbe\x64\xe6" "\xbf\x5b\x44\xff\x7f\xed\xfa\xff\x77\x99\xbb\xff\x8f\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xc7\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x27\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x60\xdc\x72\xca\xfd" "\x3f\xd7\x3c\x2c\x99\xfe\xdf\xfb\xff\xfa\x7f\xfd\xff\xbe\xfe\xff\xd2\x4a" "\xff\xaf\xff\xdf\x72\x6d\xfb\xff\x13\xf2\xfe\xff\x1a\xfa\x7f\xfd\xff\x96" "\xf6\xff\xd7\x6e\xd5\xff\xb3\x4c\x8b\xe8\xff\xf7\xfd\x76\xee\xfe\x3f\x8d" "\x5b\xfc\xfa\x3f\x00\x00\x00\x0c\x23\x77\xff\x9f\xc5\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x9f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x5f" "\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x7b\xff\x7f\xfa\xf3\xf5" "\xff\xdb\x49\xff\x3f\x4f\xff\xbf\xc6\x36\xf5\xff\x0f\xde\x44\xff\xbf\x3b" "\xfd\xe5\x8b\xee\xe7\x6f\xd6\x45\x7f\xff\xde\xff\xd7\xff\x73\xd4\xd2\xfa" "\xff\xdc\xfd\x0f\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x2f\xe3" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xaf\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\xaf\xe3\x96\x26\xfb\x5f\xff\xdf\xb2\xff\xbf\xa4\xff\xd7" "\xff\xeb\xff\xf5\xff\xa3\xd2\xff\xcf\xd3\xff\xaf\x56\xab\x87\x67\xbe\x81" "\xa9\xfe\xff\xda\xad\xcb\xec\xff\xbd\xff\xbf\xb8\xef\x5f\xff\xaf\xff\xe7" "\xa8\xa5\xf5\xff\xb9\xfb\xff\x26\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc" "\xfd\x0f\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x23\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xb7\x71\x4b\x93\xfd\xaf\xff\x6f\xd9\xff\x7b" "\xff\x5f\xff\xaf\xff\xd7\xff\x0f\x4b\xff\x3f\x4f\xff\xbf\xc6\x36\xbd\xff" "\xaf\xff\x5f\xdc\xf7\xaf\xff\xd7\xff\x73\xd4\xd2\xfa\xff\xdc\xfd\x7f\x17" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x47\xe3\x16\xfb\x1f\x00\x00" "\x00\x86\x91\xbb\xff\xef\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xb1" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4\xe7\x57\xff" "\x7f\x65\xef\xb7\xf5\xff\xdb\xe1\xec\xfa\xff\x95\xfe\x5f\xff\xaf\xff\x5f" "\x43\xff\xaf\xff\xd7\xff\x73\xd8\xd2\xfa\xff\xdc\xfd\xff\x10\xb7\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\x7f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x7f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x7f\x8e\x5b\x9a" "\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x7f\xbe\xf7\xff\xb7\x93" "\xf7\xff\xe7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\xba\xff" "\xbf\xf7\xc2\xfa\xff\xdc\xfd\xff\x12\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\xc7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x5f\xe3\x16\xfb" "\x1f\x00\x00\x00\x86\x91\xbb\xff\xdf\xe2\x96\x26\xfb\x5f\xff\xaf\xff\x3f" "\xd8\xff\xaf\x56\xfa\x7f\xfd\xbf\xfe\x7f\xcf\x39\xf4\xff\x97\x57\xfa\xff" "\x8d\xd3\xff\xcf\xd3\xff\xaf\xa1\xff\x1f\xb3\xff\xbf\x65\x35\x50\xff\x7f" "\xe5\xd8\x1f\xaf\xff\x67\x89\x96\xf6\xfe\x7f\xee\xfe\x7f\x8f\x5b\x9a\xec" "\x7f\x00\x00\x00\xe8\x20\x77\xff\x7f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x7f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x7f\xc5\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xef\xfd\x7f\xfd\xbf\xfe\x7f\xfa\xf3\xbd\xff\xbf\x9d" "\xf4\xff\xf3\xf4\xff\x6b\xe8\xff\xc7\xec\xff\xbd\xff\xaf\xff\xe7\xc2\x2c" "\xad\xff\xcf\xdd\xff\xdf\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff" "\x9f\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\xdf\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\xff\xbf\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xf4\xe7\xeb\xff\xb7\x93\xfe\x7f\xde\xc6\xfb\xff\x2f\x5e\xad" "\x56\xfa\x7f\xfd\x7f\xd0\xff\xeb\xff\xf5\xff\x1c\xb6\xb4\xfe\x3f\x77\xff" "\xff\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x89\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\x7f\x32\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb" "\x5f\x12\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x3b\xfb\xff\xcb\xfa\x7f" "\xfd\xbf\xfe\x7f\xd2\x52\xfa\xff\xdb\x6f\xff\xea\xa7\x5a\xf4\xff\xde\xff" "\xd7\xff\xef\xa3\xff\xd7\xff\xeb\xff\x39\x6c\x69\xfd\x7f\xee\xfe\x97\xc6" "\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\xf2\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x45" "\xdc\xd2\x64\xff\x1f\xed\xff\x2f\xad\xf6\x0a\xd5\x3d\x53\xfd\x7f\x34\x6a" "\xfa\xff\x7d\xf4\xff\x07\xbf\x7f\xfd\xff\xf4\xcf\x0f\xef\xff\xeb\xff\xf5" "\xff\x67\x6f\x29\xfd\x7f\x9b\xf7\xff\xf5\xff\xfa\xff\x7d\xf4\xff\xa7\xe8" "\xff\xbf\xe2\xe8\x8f\xd7\xff\x33\xa2\xa5\xf5\xff\xb9\xfb\x9f\x8a\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x2b\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x74\xdc\xd2" "\x64\xff\x7b\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xa7\x3f\x5f\xff\xbf\x9d" "\xf4\xff\xf3\xf4\xff\x6b\xe8\xff\xf5\xff\xde\xff\xbf\xfb\xeb\xbf\x48\xff" "\xcf\xe6\x2c\xad\xff\xcf\xdd\xff\xea\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\xbf\x26\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x1b\xb7\xd8" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8b\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x4f\x7f\xbe\xfe\x7f\x3b\xe9\xff\xe7\xe9\xff\xcb\xe1" "\x3f\xb4\x3d\x7d\xfa\xff\xcb\x53\x5f\xbc\xe8\x7e\xfe\x66\x5d\xf4\xf7\x3f" "\x4c\xff\xef\xfd\x7f\x36\x68\x69\xfd\x7f\xee\xfe\xd7\xc7\x2d\x4d\xf6\x3f" "\x00\x00\x00\x74\x90\xbb\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x53\xdc\xd2\x64\xff" "\xeb\xff\xf5\xff\xe3\xf7\xff\x5f\xa7\xff\x3f\xf4\xf9\xfa\x7f\xfd\xff\xc8" "\xf4\xff\xf9\x57\xf4\x69\xfa\xff\x35\xfa\xf4\xff\x93\x2e\xba\x9f\xdf\xf6" "\xef\x5f\xff\xaf\xff\xe7\xa8\xa5\xf5\xff\xb9\xfb\x9f\x89\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x2d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd6\xb8\xa5\xc9\xfe" "\xd7\xff\xf7\xea\xff\x77\x56\x1d\xfb\x7f\xef\xff\xeb\xff\xf5\xff\x9d\xe8" "\xff\xe7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\x69\xfd\x7f" "\xee\xfe\x67\x77\x76\x5b\xee\x7f\x00\x00\x00\xd8\x56\x5f\xfb\x95\xdf\xf4" "\xcc\x49\x7f\xdf\x67\x5f\xfc\x9f\x97\x57\x6f\x8b\x5b\xee\x58\x5d\x3b\xe1" "\x2f\x63\x03\x00\x00\x00\x0b\xf7\xc2\xee\xdf\xd9\x5d\xad\xde\xfe\xe2\x6f" "\xf9\xf5\x7f\x00\x00\x00\x18\x51\xee\xfe\x77\xc4\x2d\x4d\xf6\xbf\xfe\xbf" "\x57\xff\xdf\xf3\xfd\x7f\xfd\xbf\xfe\x5f\xff\xdf\x89\xfe\x7f\x9e\xfe\x7f" "\x0d\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa3\x96\xd6\xff\xe7\xee\x7f\x67\xdc" "\xb2\x6f\xf8\xed\x9e\xfa\x8f\x12\x00\x00\x00\x58\x92\xdc\xfd\xef\x8a\x5b" "\x9a\xfc\xfa\x3f\x00\x00\x00\x74\x90\xbb\xff\xdd\x71\xcb\x91\xfd\xef\x5f" "\x07\x08\x00\x00\x00\xdb\x2a\x77\xff\x7b\xe2\x96\x26\xbf\xfe\xaf\xff\x5f" "\x78\xff\xbf\x3a\xa3\xfe\x3f\x7e\x3f\xfd\xff\x1e\xfd\xbf\xfe\x7f\xea\xf3" "\xf5\xff\xdb\x49\xff\x3f\xef\x26\xfb\xff\x6b\x3b\xfa\x7f\xfd\xff\x0c\xfd" "\xbf\xfe\x5f\xff\xcf\x61\x4b\xeb\xff\x73\xf7\xbf\x37\x6e\x69\xb2\xff\x01" "\x00\x00\x60\x50\x07\xfe\x8e\x42\xee\xfe\xf7\xc5\x2d\xf6\x3f\x00\x00\x00" "\x0c\x23\x77\xff\xfb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x03\x71" "\x4b\x93\xfd\xaf\xff\x3f\xf7\xfe\x3f\x53\xf5\x33\x7c\xff\xff\x4a\xfd\x27" "\xef\xff\x37\xef\xff\xef\xbf\x3c\xf9\xf9\x07\xfa\xff\x95\xfe\x5f\xff\x3f" "\x16\xfd\xff\x3c\xef\xff\xaf\xa1\xff\x1f\xa5\xff\xbf\x55\xff\xaf\xff\x67" "\x19\x96\xd6\xff\xe7\xee\xff\x60\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9" "\xfb\x3f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x1f\x8e\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\x8f\xc4\x2d\x4d\xf6\xbf\xfe\x7f\xe1\xef\xff" "\xdf\x50\xff\x7f\x82\xf7\xff\xf5\xff\x3d\xfa\xff\x63\x3e\x7f\x9c\xf7\xff" "\xbf\xf4\xb6\xab\x4f\xdc\xf9\x0d\x8f\x3c\xa4\xff\xe7\xba\xf3\xec\xff\xf3" "\xe7\x82\xfe\x5f\xff\xaf\xff\xdf\xb3\xa0\xfe\xdf\xfb\xff\xfa\x7f\x16\x62" "\xf3\xfd\xff\xee\x81\x2f\x9e\xb6\xff\xcf\xdd\xff\xd1\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\x3f\x17\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\x1f\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x8f\xc7\x2d\x4d\xf6\xbf" "\xfe\x5f\xff\xbf\x94\xfe\x3f\xff\x6f\x7d\x01\xfd\xff\xd5\x1b\xee\xff\xaf" "\xac\x56\xab\x0b\xe9\xff\xb3\x29\xee\xde\xff\x7b\xff\x5f\xff\x7f\x94\xf7" "\xff\xe7\xe9\xff\xd7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x36\x6a\xf3\xfd\xff" "\xc1\x2f\x9e\xb6\xff\xcf\xdd\xff\x89\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e" "\x72\xf7\x7f\x32\x6e\xc9\xfd\xbf\x73\xea\xbf\x75\x0f\x00\x00\x00\x2c\x4c" "\xee\xfe\x4f\xc5\x2d\x7e\xfd\x1f\x00\x00\x00\x86\x91\xbb\xff\xd3\x71\x4b" "\x93\xfd\xaf\xff\xd7\xff\x2f\xa5\xff\x4f\xde\xff\xbf\xfe\xe3\xc6\x7a\xff" "\xff\xce\x8a\x53\x7b\xf6\xff\x5f\x5e\xff\x49\xff\x7f\xb6\xf4\xff\xf3\xf4" "\xff\x6b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x1b\xb5\xb4\xfe\x3f\x77\xff\x67" "\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\x7c\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x7f\x36\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x3f" "\x17\xb7\x34\xd9\xff\xfa\xff\x51\xfb\xff\x2c\xe2\xf5\xff\xfa\xff\xa5\xf4" "\xff\xde\xff\xf7\xfe\xff\xf9\xd0\xff\xcf\xd3\xff\xaf\xa1\xff\xd7\xff\xeb" "\xff\xf5\xff\x6c\xd4\xd2\xfa\xff\xdc\xfd\x5f\x08\x00\x00\xff\xff\x2d\x60" "\x77\x10", 25058)); NONFAILING(syz_mount_image( /*fs=*/0x200000000100, /*dir=*/0x200000000000, /*flags=MS_STRICTATIME|MS_NODIRATIME|MS_NOATIME*/ 0x1000c00, /*opts=*/0x200000000140, /*chdir=*/0x21, /*size=*/0x61e2, /*img=*/0x2000000063c0)); // syz_mount_image$vfat arguments: [ // fs: ptr[in, buffer] { // buffer: {76 66 61 74 00} (length 0x5) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0xc0000 (8 bytes) // opts: nil // chdir: int8 = 0xbe (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x2000000002c0, "vfat\000", 5)); NONFAILING(memcpy((void*)0x2000000000c0, "./bus\000", 6)); NONFAILING(syz_mount_image(/*fs=*/0x2000000002c0, /*dir=*/0x2000000000c0, /*flags=MS_SLAVE|MS_PRIVATE*/ 0xc0000, /*opts=*/0, /*chdir=*/0xbe, /*size=*/0, /*img=*/0x2000000007c0)); // rename arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // new: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 2f 66 69 6c 65 30 00} (length 0xc) // } // ] NONFAILING(memcpy((void*)0x200000000180, "./file0\000", 8)); NONFAILING(memcpy((void*)0x200000000a00, "./bus/file0\000", 12)); syscall(__NR_rename, /*old=*/0x200000000180ul, /*new=*/0x200000000a00ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); do_sandbox_none(); return 0; }