// https://syzkaller.appspot.com/bug?id=98023c05a2fb89a0ee02dc1974d8ab6315d75639 // 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 #ifndef __NR_ioctl #define __NR_ioctl 29 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #endif static unsigned long long procid; 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); } uint64_t r[1] = {0xffffffffffffffff}; void loop(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x1010003 (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 { // discard: buffer: {64 69 73 63 61 72 64} (length 0x7) // } // 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 { // 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 31 32 35 35} (length 0x6) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // 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 { // 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) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x23 (1 bytes) // size: len = 0x6180 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6180) // } // ] // returns fd_dir memcpy((void*)0x20000100, "jfs\000", 4); memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20000700, "discard", 7); *(uint8_t*)0x20000707 = 0x2c; memcpy((void*)0x20000708, "nodiscard", 9); *(uint8_t*)0x20000711 = 0x2c; memcpy((void*)0x20000712, "iocharset", 9); *(uint8_t*)0x2000071b = 0x3d; memcpy((void*)0x2000071c, "cp1255", 6); *(uint8_t*)0x20000722 = 0x2c; memcpy((void*)0x20000723, "errors=remount-ro", 17); *(uint8_t*)0x20000734 = 0x2c; memcpy((void*)0x20000735, "errors=remount-ro", 17); *(uint8_t*)0x20000746 = 0x2c; memcpy((void*)0x20000747, "nodiscard", 9); *(uint8_t*)0x20000750 = 0x2c; memcpy((void*)0x20000751, "uid", 3); *(uint8_t*)0x20000754 = 0x3d; sprintf((char*)0x20000755, "0x%016llx", (long long)0); *(uint8_t*)0x20000767 = 0x2c; memcpy((void*)0x20000768, "grpquota", 8); *(uint8_t*)0x20000770 = 0x2c; memcpy((void*)0x20000771, "gid", 3); *(uint8_t*)0x20000774 = 0x3d; sprintf((char*)0x20000775, "0x%016llx", (long long)0); *(uint8_t*)0x20000787 = 0x2c; *(uint8_t*)0x20000788 = 0; memcpy( (void*)0x20006840, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x42\xd3\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x44\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20\x52" "\x82\x04\xea\x01\x75\xd0\xd8\xcf\xe3\x8c\xa7\xbb\x5e\x3b\x89\x77\x76\x33" "\x9f\x8f\xe4\xcc\xfc\xf6\x99\xf1\x3e\x93\xef\xee\xce\xae\x67\x66\x9f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x87\x3f\xf8\xf1" "\xb9\x22\x22\xae\xfc\x2a\xdd\x70\x22\xe2\x73\xd1\x8f\xe8\x45\xac\x54\xf5" "\x5a\x44\xac\xac\x9d\xa8\xaf\xf3\x42\x6c\x37\xc7\xf3\x11\x31\x5c\x8a\xa8" "\xd6\xdf\xfe\xe7\xd9\x88\xd7\x23\xe2\xe3\xe3\x11\xf7\x1f\xdc\x59\xaf\x6e" "\x3e\x7f\xc0\x7e\x7c\xff\xcf\xff\xf8\xc3\x4f\x8e\xfd\xe8\xef\x7f\x1a\x9e" "\xf9\xef\x5f\x6e\xf5\xdf\x98\xb4\xdc\xed\xdb\xbf\xfd\xcf\x5f\xef\x3e\xfa" "\xf6\x02\x00\x00\x40\x17\x95\x65\x59\x16\xe9\x63\xfe\xc9\x88\x18\xa4\xcf" "\xf6\x00\xc0\xd3\x2f\xef\xff\xcb\x24\xdf\xae\x9e\xbb\x7a\x73\xce\xfa\xa3" "\x56\xab\xd5\xea\x05\xac\xeb\xca\xf1\xee\xd6\x8b\x88\xd8\xac\xaf\x53\xbd" "\x67\x70\x38\x1e\x00\x16\xcc\x66\x7c\xd2\x76\x17\x68\x91\xfc\x3b\x6d\x10" "\x11\xc7\xda\xee\x04\x30\xd7\x8a\xb6\x3b\xc0\x91\xb8\xff\xe0\xce\x7a\x91" "\xf2\x2d\xea\xfb\x83\xb5\x9d\xf6\x7c\x2e\xc8\x9e\xfc\x37\x8b\xdd\xeb\x3b" "\x26\x4d\xa7\x69\x9e\x63\x32\xab\xc7\xd7\x56\xf4\xe3\xb9\x09\xfd\x59\x99" "\x51\x1f\xe6\x49\xce\xbf\xd7\xcc\xff\xca\x4e\xfb\x28\x2d\x77\xd4\xf9\xcf" "\xca\xa4\xfc\x47\x3b\x97\x3e\x75\x4e\xce\xbf\xdf\xcc\xbf\xe1\xe9\xc9\xbf" "\x37\x36\xff\xae\xca\xf9\x0f\x0e\x95\x7f\x5f\xfe\x00\x00\x00\x00\x00\x30" "\xc7\xf2\xdf\xff\x4f\xb4\x7c\xfc\x77\xe9\xf1\x37\xe5\x40\xf6\x3b\xfe\xbb" "\x36\xa3\x3e\x00\x00\x00\x00\x00\x00\x00\xc0\x93\x76\xd8\xf1\xff\x06\x8d" "\xf1\xff\x76\x19\xff\x0f\x00\x00\x00\xe6\x56\xf5\x59\xbd\xf2\xbb\xe3\x0f" "\x6f\x9b\xf4\x5d\x6c\xd5\xed\x97\x8b\x88\x67\x1a\xcb\x03\x1d\x93\x2e\x96" "\x59\x6d\xbb\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x25\x83\x9d" "\x73\x78\x2f\x17\x11\xc3\x88\x78\x66\x75\xb5\x2c\xcb\xea\xa7\xae\x59\x1f" "\xd6\xe3\xae\xbf\xe8\xba\xbe\xfd\xd0\x65\x6d\xbf\xc8\x03\x00\xc0\x8e\x8f" "\x8f\x37\xae\xe5\x2f\x22\x96\x23\xe2\x72\xfa\xae\xbf\xe1\xea\xea\x6a\x59" "\x2e\xaf\xac\x96\xab\xe5\xca\x52\x7e\x3f\x3b\x5a\x5a\x2e\x57\x6a\x9f\x6b" "\xf3\xb4\xba\x6d\x69\x74\x80\x37\xc4\x83\x51\x59\xfd\xb2\xe5\xda\x7a\x75" "\xd3\x3e\x2f\x4f\x6b\x6f\xfe\xbe\xea\xbe\x46\x65\xff\x00\x1d\x9b\x8d\x16" "\x03\x07\x80\x88\xd8\xd9\x1b\xdd\x9f\xb4\x47\xfa\x9f\xfd\xd5\x62\x2a\xcb" "\x67\xa3\xe5\x37\x39\x2c\x88\x7d\x9e\xff\x2c\x28\xcf\x7f\x0e\xa2\xed\xc7" "\x29\x00\x00\x00\x70\xf4\xca\xb2\x2c\x8b\xf4\x75\xde\x27\xd3\x31\xff\x5e" "\xdb\x9d\x02\x00\x66\x22\xef\xff\x9b\xc7\x05\xd4\x6a\xb5\x5a\xad\x56\x3f" "\x7d\x75\x5d\x39\xde\xdd\x7a\x11\x11\x9b\xf5\x75\xaa\xf7\x0c\x86\xe3\x07" "\x80\x05\xb3\x19\x9f\xb4\xdd\x05\x5a\x24\xff\x4e\x1b\x44\xc4\x0b\x6d\x77" "\x02\x98\x6b\x45\xdb\x1d\xe0\x48\xdc\x7f\x70\x67\xbd\x48\xf9\x16\xf5\xfd" "\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\x3b\xea\xfc\x67\x65\x52\xfe" "\xd5\x76\x9e\x68\xa1\x3f\x6d\xcb\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\xb9\x3a\xfe\x3b\x7a\xd4\xcd\x99\x6a\xbf\xe3\xbf\x6b\x63" "\xd7\x38\xba\xbe\x00\x00\x00\x00\x00\x00\x00\xc0\x93\x72\xff\xc1\x9d\xf5" "\x7c\xdd\x6b\x3e\xfe\xff\x85\x31\xcb\xb9\xfe\xf3\xe9\x94\xf3\x2f\xe4\xdf" "\x49\x39\xff\x5e\x23\xff\xaf\x36\x96\xeb\xd7\xe6\xef\xbd\xfd\x30\xff\x7f" "\x3f\xb8\xb3\xfe\xc7\x5b\xff\xfa\x7c\x9e\x1e\x34\xff\xa5\x3c\x53\xa4\x47" "\x56\x91\x1e\x11\x45\xba\xa7\x62\x90\xa6\x8f\xb3\x75\x9f\xb5\x35\xec\x8f" "\xaa\x7b\x1a\x16\xbd\xfe\x20\x9d\xf3\x53\x0e\xdf\x8d\x6b\x71\x3d\x36\xe2" "\xec\x9e\x65\x7b\xe9\xff\xe3\x61\xfb\xb9\x3d\xed\x55\x4f\x87\xdb\xed\x65" "\x7f\xa7\xfd\xfc\x9e\xf6\xc1\x6e\x7b\x5e\xff\xc2\x9e\xf6\x61\x3a\xbb\xa8" "\x5c\xc9\xed\xa7\x63\x3d\x7e\x1e\xd7\xe3\x9d\xed\xf6\xaa\x6d\x69\xca\xf6" "\x2f\x4f\x69\x2f\xa7\xb4\xe7\xfc\xfb\x9e\xff\x9d\x94\xf3\x1f\xd4\x7e\xaa" "\xfc\x57\x53\x7b\xd1\x98\x56\xee\x7d\xd4\xfb\xcc\xf3\xbe\x3e\x1d\x77\x3f" "\x6f\x5d\xfb\xe2\x6f\xce\x1e\xfd\xe6\x4c\xb5\x15\xfd\xdd\x6d\xab\xab\xb6" "\xef\xa5\x16\xfa\xb3\xfd\x7f\x72\x6c\x14\xbf\xbc\xb9\x71\xe3\xf4\xed\xab" "\xb7\x6e\xdd\x38\x17\x69\xb2\xe7\xd6\xf3\x91\x26\x4f\x58\xce\x7f\x98\x7e" "\x76\x5f\xff\x5f\xde\x69\xcf\xaf\xfb\xf5\xe7\xeb\xbd\x8f\x46\x87\xce\xbf" "\x35\xfd\xbd\xe5\x56\x0c\x26\xe6\xff\x72\x6d\xbe\xda\xde\x57\x66\xd1\xbf" "\x96\xe5\xfc\x47\xe9\x27\xe7\xff\x4e\x6a\x1f\xff\xfc\x5f\xa0\xfc\x1b\xf6" "\x7b\xfe\xbf\xda\x42\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x3f\x65\x59\x6e\x5f\x22\xfa\x56\x44\x5c\x4c\xd7\xff\xb4\x75\x6d\x26" "\x00\x30\x5b\x79\xff\x5f\x26\xf9\xf6\x59\xd5\xfd\x19\xdf\x9f\x5a\xbd\xe0" "\x75\x31\x67\xfd\x99\x69\xfd\x69\x39\x5f\xfd\x51\xab\x17\xb1\xae\x2b\xc7" "\x7b\xb3\x5e\x44\xc4\xdf\xea\xeb\x54\xef\x19\x7e\x3d\xee\x97\x01\x00\xf3" "\xec\xd3\x88\xf8\x67\xdb\x9d\xa0\x35\xf2\xef\xb0\xfc\x7d\x7f\xd5\xf4\x54" "\xdb\x9d\x01\x66\xea\xe6\x07\x1f\xfe\xf4\xea\xf5\xeb\x1b\x37\x6e\xb6\xdd" "\x13\x00\x00\x00\x00\x00\x00\x00\xe0\x51\xe5\xf1\x3f\xd7\x6a\xe3\x3f\x9f" "\x2a\xcb\xf2\x6e\x63\xb9\x3d\xe3\xbf\xbe\x1d\x6b\x8f\x3b\xfe\xe7\x20\xcf" "\xec\x0e\x30\x3a\x61\xa0\xea\xfe\xe1\xb7\x69\x3f\x5b\xbd\x51\xbf\x57\x1b" "\x6e\xfc\xc5\x98\x34\xfe\xf7\x70\x77\x6e\xbf\xf1\xbf\x07\x53\xee\x6f\x38" "\xa5\x7d\x34\xa5\x7d\x69\x4a\xfb\xf2\x94\xf6\xb1\x17\x7a\xd4\xe4\xfc\x5f" "\xac\x8d\x77\x7e\x2a\x22\x4e\x36\x86\x5f\xef\xc2\xf8\xaf\xcd\x31\xef\xbb" "\x20\xe7\xff\x52\xed\xf1\x5c\xe5\xff\x95\xc6\x72\xf5\xfc\xcb\xdf\x2f\x72" "\xfe\xbd\x3d\xf9\x9f\xb9\xf5\xfe\x2f\xce\xdc\xfc\xe0\xc3\xd7\xae\xbd\x7f" "\xf5\xbd\x8d\xf7\x36\x7e\x76\xe1\xdc\xb9\xb3\x17\x2e\x5e\xbc\x74\xe9\xd2" "\x99\x77\xaf\x5d\xdf\x38\xbb\xf3\x6f\x8b\x3d\x3e\x5a\x39\xff\x3c\xf6\xb5" "\xf3\x40\xbb\x25\xe7\x9f\x33\x97\x7f\xb7\xe4\xfc\xbf\x94\x6a\xf9\x77\x4b" "\xce\xff\xcb\xa9\x96\x7f\xb7\xe4\xfc\xf3\xfb\x3d\xf9\x77\x4b\xce\x3f\x7f" "\xf6\x91\x7f\xb7\xe4\xfc\x5f\x49\xb5\xfc\xbb\x25\xe7\xff\xb5\x54\xcb\xbf" "\x5b\x72\xfe\xaf\xa6\x5a\xfe\xdd\x92\xf3\xff\x7a\xaa\xe5\xdf\x2d\x39\xff" "\xd7\x52\x2d\xff\x6e\xc9\xf9\x9f\x4e\xb5\xfc\xbb\x25\xe7\x7f\x26\xd5\x07" "\xcc\x7f\xe5\xa8\xfb\xc5\x6c\xe4\xfc\xf3\x11\x2e\xcf\xff\x6e\xc9\xf9\xe7" "\x33\x1b\xe4\xdf\x2d\x39\xff\xf3\xa9\x96\x7f\xb7\xe4\xfc\x2f\xa4\x5a\xfe" "\xdd\x92\xf3\x7f\x3d\xd5\xf2\xef\x96\x9c\xff\x37\x52\x2d\xff\x6e\xc9\xf9" "\x5f\x4c\xb5\xfc\xbb\x25\xe7\xff\xcd\x54\xcb\xbf\x5b\x72\xfe\x97\x52\x2d" "\xff\x6e\xc9\xf9\x7f\x2b\xd5\xf2\xef\x96\x9c\xff\xb7\x53\x2d\xff\x6e\xc9" "\xf9\xbf\x91\x6a\xf9\x77\x4b\xce\xff\x3b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x9b" "\x6a\xf9\x77\x4b\xce\xff\x7b\xa9\x96\x7f\xb7\xe4\xfc\xdf\x4c\xb5\xfc\xbb" "\xe5\xe1\xf7\xff\x9b\x31\x63\xc6\x4c\x9e\x69\xfb\x95\x09\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x68\x9a\xc5\xe9\xc4\x6d\x6f\x23\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xff\x67\x07\x0e\x04\x00\x00\x00\x00\x80\xfc" "\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a\x3b\x70\x20\x00\x00" "\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8" "\xbb\xb7\x18\xb9\xee\xfa\x0e\xe0\x67\xaf\xde\x38\x90\x18\x08\xa9\x93\x1a" "\xd8\x38\x26\x18\x67\x93\x5d\x5f\xe2\x0b\xad\x8b\x09\xd7\x86\x5b\x09\x84" "\x42\x2f\xd8\xae\x77\x6d\x16\x7c\xc3\x6b\x97\x40\x23\xd9\x28\x50\x22\x61" "\x54\x54\xd1\x36\x3c\xb4\x05\x84\xda\xbc\x54\xf8\x81\x07\x5a\x01\xca\x03" "\x6a\x85\x54\x09\xda\x07\xfa\x82\xa8\x50\x79\x88\x2a\x83\x02\x52\x25\x5a" "\x41\xb6\x9a\x73\xfe\xff\xff\xce\xcc\xce\xce\xec\xda\x93\xf5\x99\x73\x3e" "\x1f\x29\xf9\x65\x67\xce\xcc\x39\x73\xe6\xcc\xd9\xfd\xee\xe6\x3b\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x34\xbb\xeb\xf5\x73\x9f\x1e" "\xca\xb2\xac\xf1\x4f\xfe\xaf\x4d\x59\xf6\x82\xc6\x7f\xdf\x34\xb9\x29\xbf" "\xec\x35\x37\x7a\x0b\x01\x00\x00\x80\xeb\xf5\xab\xfc\xdf\xcf\xde\x9a\x2e" "\x38\xb4\x8a\x1b\x35\x2d\xf3\x2f\x2f\xff\xee\xd7\x16\x17\x17\x17\xb3\xf7" "\x8d\xfc\xc5\xd8\xe7\x17\x17\xd3\x15\x93\x59\x36\xb6\x21\xcb\xf2\xeb\xa2" "\x2b\x3f\x7a\xff\x50\xf3\x32\xc1\xe3\xd9\xc4\xd0\x70\xd3\xd7\xc3\x3d\x56" "\x3f\xd2\xe3\xfa\xd1\x1e\xd7\x8f\xf5\xb8\x7e\xbc\xc7\xf5\x1b\x7a\x5c\x3f" "\xd1\xe3\xfa\x65\x3b\x60\x99\x9b\x8a\xdf\xc7\xe4\x77\xb6\x2d\xff\xcf\x4d" "\xc5\x2e\xcd\x6e\xcb\xc6\xf2\xeb\xb6\x75\xb8\xd5\xe3\x43\x1b\x86\x87\xe3" "\xef\x72\x72\x43\xf9\x6d\x16\xc7\x8e\x67\xf3\xd9\xc9\x6c\x2e\x9b\x69\x59" "\xbe\x58\x76\x28\x5f\xfe\x1b\x77\x35\xd6\xf5\x96\x2c\xae\x6b\xb8\x69\x5d" "\x5b\x1a\x47\xc8\xcf\x1e\x3b\x16\xb7\x61\x28\xec\xe3\x6d\x2d\xeb\x5a\xba" "\xcf\xe8\x27\xaf\xcb\x26\x7f\xfe\xb3\xc7\x8e\xfd\xdd\xf9\xab\x77\x74\x9a" "\x3d\x77\x43\xcb\xfd\x15\xdb\xb9\x7d\x6b\x63\x3b\x3f\x19\x2e\x29\xb6\x75" "\x28\xdb\x90\xf6\x49\xdc\xce\xe1\xa6\xed\xdc\xd2\xe1\x39\x19\x69\xd9\xce" "\xa1\xfc\x76\x8d\xff\x6e\xdf\xce\x67\x57\xb9\x9d\x23\x4b\x9b\xb9\xae\xda" "\x9f\xf3\x89\x6c\x38\xff\xef\xef\xe5\xfb\x69\xb4\xf9\xd7\x7a\x69\x3f\x6d" "\x09\x97\xfd\xe2\xee\x2c\xcb\x2e\x2d\x6d\x76\xfb\x32\xcb\xd6\x95\x0d\x67" "\x1b\x5b\x2e\x19\x5e\x7a\x7e\x26\x8a\x23\xb2\x71\x1f\x8d\x43\xe9\xc5\xd9" "\xe8\x9a\x8e\xd3\xbb\x56\x71\x9c\x36\xe6\xec\xb6\xd6\xe3\xb4\xfd\x35\x11" "\x9f\xff\xbb\xc2\xed\x46\x57\xd8\x86\xe6\xa7\xe9\x27\x9f\x18\x6f\x7a\xde" "\x7f\xb9\x78\x2d\xc7\x69\xd4\x78\xd4\x2b\xbd\x56\xda\x8f\xc1\x7e\xbf\x56" "\xca\x72\x0c\xc6\xe3\xe2\x7b\xf9\x83\x7e\xa2\xe3\x31\xb8\x2d\x3c\xfe\xc7" "\xee\x59\xf9\x18\xec\x78\xec\x74\x38\x06\xd3\xe3\x6e\x3a\x06\xb7\xf6\x3a" "\x06\x87\xc7\x47\xf2\x6d\x4e\x4f\xc2\x50\x7e\x9b\xa5\x63\x70\x67\xcb\xf2" "\x23\xf9\x9a\x86\xf2\xf9\xcc\x3d\xdd\x8f\xc1\xe9\xf3\xa7\xce\x4e\x2f\x7c" "\xec\xe3\xf7\xcd\x9f\x3a\x7a\x62\xee\xc4\xdc\xe9\xdd\x3b\x77\xce\xec\xde" "\xbb\x77\xff\xfe\xfd\xd3\xc7\xe7\x4f\xce\xcd\x14\xff\xbe\xc6\xbd\x5d\x7e" "\x1b\xb3\xe1\xf4\x1a\xd8\x1a\xf6\x5d\x7c\x0d\xbc\xaa\x6d\xd9\xe6\x43\x75" "\xf1\x4b\xe3\xcb\xce\xbf\xd7\xfa\x3a\x9c\xe8\xf2\x3a\xdc\xd4\xb6\x6c\xbf" "\x5f\x87\xa3\xed\x0f\x6e\x68\x7d\x5e\x90\xcb\x8f\xe9\xe2\xb5\xf1\x9e\xc6" "\x4e\x9f\xb8\x3c\x9c\xad\xf0\x1a\xcb\x9f\x9f\x1d\xd7\xff\x3a\x4c\x8f\xbb" "\xe9\x75\x38\xda\xf4\x3a\xec\xf8\x3d\xa5\xc3\xeb\x70\x74\x15\xaf\xc3\xc6" "\x32\x67\x77\xac\xee\x67\x96\xd1\xa6\x7f\x3a\x6d\xc3\xca\xdf\x0b\xae\xef" "\x18\xdc\xd4\x74\x0c\xb6\xff\x3c\xd2\x7e\x0c\xf6\xfb\xe7\x91\xb2\x1c\x83" "\x13\xe1\xb8\xf8\xc1\x8e\x95\xbf\x17\x6c\x09\xdb\xfb\xc4\xd4\x5a\x7f\x1e" "\x19\x59\x76\x0c\xa6\x87\x1b\xce\x3d\x8d\x4b\xd2\xcf\xfb\x13\xfb\xf3\xd1" "\xe9\xb8\xbc\xb3\x71\xc5\xcd\xe3\xd9\x85\x85\xb9\x73\xf7\x3f\x7a\xf4\xfc" "\xf9\x73\x3b\xb3\x30\xd6\xc5\x4b\x9a\x8e\x95\xf6\xe3\x75\x63\xd3\x63\xca" "\x96\x1d\xaf\xc3\x6b\x3e\x5e\x0f\xcd\xbf\xfc\x89\x3b\x3b\x5c\xbe\x29\xec" "\xab\x89\xfb\x1a\xff\x9a\x58\xf1\xb9\x6a\x2c\xb3\xe7\xfe\xee\xcf\x55\xfe" "\xdd\xad\xf3\xfe\x6c\xb9\x74\x57\x16\x46\x9f\xad\xf7\xfe\xec\xf4\xdd\xbc" "\xb1\x3f\xc7\xb3\xec\x0b\xdf\xfe\xc4\xc3\xdf\x7c\xec\x0b\xaf\x5f\x71\x7f" "\x36\xf2\xe6\x27\xa7\xaf\xff\x67\xf1\x94\x4b\x9b\xce\xbf\x63\x2b\x9c\x7f" "\x63\xee\x7f\xae\x58\x5f\xba\xab\xc7\x47\xc6\x46\x8b\xd7\xef\x48\xda\x3b" "\x63\x2d\xe7\xe3\xd6\xa7\x6a\x34\x3f\x77\x0d\xe5\xeb\x7e\x76\x7a\x75\xe7" "\xe3\xb1\xf0\xcf\x7a\x9f\x8f\x6f\xeb\x72\x3e\xde\xdc\xb6\x6c\xbf\xcf\xc7" "\x63\xed\x0f\x2e\x9e\x8f\x87\x7a\xfd\xb6\xe3\xfa\xb4\x3f\x9f\x13\xe1\x38" "\x39\x39\xd3\xfd\x7c\xdc\x58\x66\xf3\xae\xb5\x1e\x93\xa3\x5d\xcf\xc7\x77" "\x87\x39\x14\xf6\xff\xab\x43\x52\x48\xb9\xa8\xe9\xd8\x59\xe9\xb8\x4d\xeb" "\x1a\x1d\x1d\x0b\x8f\x6b\x34\xae\xa1\xf5\x38\xdd\xdd\xb2\xfc\x58\xc8\x66" "\x8d\x75\x3d\xb5\xeb\x1a\x8e\xd3\x9f\x65\xd9\xf6\xbb\x8b\xfb\x1a\x49\x8f" "\x6e\xc9\x7a\x1d\xa7\x93\x6d\xcb\xf6\xfb\x38\x4d\xbf\xfb\x5a\xe9\x38\x1d" "\xea\xf5\xdb\xb7\x6b\xd3\xfe\x7c\x4e\x84\xe3\xe2\xb6\xdd\xdd\x8f\xd3\xc6" "\x32\x4f\xef\xb9\xfe\x73\xe7\x4d\xf1\x3f\x9b\xce\x9d\xe3\xbd\x8e\xc1\xb1" "\x91\xf1\xc6\x36\x8f\xa5\x83\x30\x3f\xdf\x67\x8b\x37\xc5\x63\xf0\xfe\xec" "\x58\x76\x26\x3b\x99\xcd\xe6\xd7\x8e\xe7\xc7\xd3\x50\xbe\xae\xa9\x07\x56" "\x77\x0c\x8e\x87\x7f\xd6\xfb\x5c\xb9\xb9\xcb\x31\xb8\xbd\x6d\xd9\x7e\x1f" "\x83\xe9\xfb\xd8\x4a\xc7\xde\xd0\xe8\xf2\x07\xdf\x07\xed\xcf\xe7\x44\x38" "\x2e\x9e\x7c\xa0\xfb\x31\xd8\x58\xe6\x0d\xfb\xfa\xfb\xb3\xeb\xf6\x70\x49" "\x5a\xa6\xe9\x67\xd7\xf6\xdf\xaf\xad\xf4\x3b\xaf\x3b\xdb\x76\xd3\xf3\x75" "\xac\x8c\x86\xed\xfc\xf6\xbe\xee\xbf\x9b\x6d\x2c\x73\x72\xff\x5a\x73\x66" "\xf7\xfd\x74\x6f\xb8\xe4\xe6\x0e\xfb\xa9\xfd\xf5\xbb\xd2\x6b\x6a\x36\x5b" "\x9f\xfd\xb4\x39\x6c\xe7\xd5\xfd\x2b\xef\xa7\xc6\xf6\x34\x96\xf9\xfc\x81" "\x55\x1e\x4f\x87\xb2\x2c\xbb\xf8\x91\x07\xf3\xdf\xf7\x86\xbf\xaf\x5c\xbc" "\xf0\xfd\xaf\xb5\xfc\xdd\xa5\xd3\xdf\x74\x2e\x7e\xe4\xc1\x9f\xbe\xf0\xf8" "\x3f\xaf\x65\xfb\x01\x18\x7c\xcf\x15\x63\x63\xf1\xbd\xae\xe9\x2f\x53\xab" "\xf9\xfb\x3f\x00\x00\x00\x30\x10\x62\xee\x1f\x0e\x33\x91\xff\x01\x00\x00" "\xa0\x32\x62\xee\x8f\xff\x57\x78\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x3f" "\x1a\x66\x52\x93\xfc\xbf\xf9\x0d\x57\xe7\x9f\xbb\x98\xa5\x66\xfe\x62\x10" "\xaf\x4f\xbb\xe1\xa1\x62\xb9\xd8\x71\x9d\x09\x5f\x4f\x2e\x2e\x69\x5c\xfe" "\xe0\x57\xe6\xfe\xe7\x9f\x2e\xae\x6e\xdd\xc3\x59\x96\xfd\xf2\xa1\x3f\xe9" "\xb8\xfc\xe6\x87\xe2\x76\x15\x26\xc3\x76\x5e\x79\x63\xeb\xe5\xcb\x7c\xed" "\xbe\x55\xad\xfb\xc8\x23\x17\xd3\x7a\x9b\xfb\xeb\x5f\x0c\xf7\x1f\x1f\xcf" "\x6a\x0f\x83\x4e\x15\xdc\x99\x2c\xcb\xbe\x71\xeb\x67\xf3\xf5\x4c\xbe\xff" "\x72\x3e\x9f\x7e\xe8\x48\x3e\x1f\xbe\xf4\xc4\xe3\x8d\x65\x9e\x3d\x50\x7c" "\x1d\x6f\xff\xcc\x4b\x8a\xe5\xff\x3a\x94\x7f\x0f\x1d\x3f\xda\x72\xfb\x67" "\xc2\x7e\xf8\x71\x98\x33\x6f\xed\xbc\x3f\xe2\xed\xbe\x7a\xf9\xd5\x5b\xf6" "\xbd\x77\x69\x7d\xf1\x76\x43\x5b\x6f\xc9\x1f\xf6\x93\x1f\x28\xee\x37\xbe" "\x4f\xce\xe7\x1e\x2f\x96\x8f\xfb\x79\xa5\xed\xff\xe6\x67\x9e\xfa\x6a\x63" "\xf9\x47\x5f\xd9\x79\xfb\x2f\x0e\x77\xde\xfe\xa7\xc2\xfd\x7e\x25\xcc\xff" "\x7d\x59\xb1\x7c\xf3\x73\xd0\xf8\x3a\xde\xee\x53\x61\xfb\xe3\xfa\xe2\xed" "\xee\xff\xf2\xb7\x3a\x6e\xff\x95\x4f\x17\xcb\x9f\x7d\x53\xb1\xdc\x91\x30" "\xe3\xfa\xb7\x87\xaf\xb7\xbd\xe9\xea\x7c\xf3\xfe\x7a\x74\xe8\x68\xcb\xe3" "\xca\xde\x5c\x2c\x17\xd7\x3f\xf3\xfd\x3f\xcb\xaf\x8f\xf7\x17\xef\xbf\x7d" "\xfb\x27\x0e\x5f\x6e\xd9\x1f\xed\xc7\xc7\xd3\xff\x5e\xdc\xcf\x74\xdb\xf2" "\xf1\xf2\xb8\x9e\xe8\x1f\xdb\xd6\xdf\xb8\x9f\xe6\xe3\x33\xae\xff\xa9\x3f" "\x3d\xd2\xb2\x9f\x7b\xad\xff\xca\xc3\xcf\xbc\xac\x71\xbf\xed\xeb\xbf\xb7" "\x6d\xb9\xb3\x1f\xd9\x91\xaf\x7f\xe9\xfe\x5a\xdf\xb1\xe9\x6f\x3e\xf5\xd9" "\x8e\xeb\x8b\xdb\x73\xe8\x1f\xce\xb6\x3c\x9e\x43\xef\x0a\xaf\xe3\xb0\xfe" "\x27\x3f\x10\x8e\xc7\x70\xfd\xff\x5d\x29\xee\xaf\xfd\xdd\x15\x8e\xbc\xab" "\xf5\xfc\x13\x97\xff\xe2\xa6\x8b\x2d\x8f\x27\x7a\xcb\xcf\x8b\xf5\x5f\x79" "\xed\x89\x7c\x6e\x98\xb8\x69\xe3\xcd\x2f\x78\xe1\x2d\x97\x5e\xd1\xd8\x77" "\x59\xf6\xbd\x0d\xc5\xfd\xf5\x5a\xff\x89\xbf\x3d\xd3\xb2\xfd\x5f\xba\xbd" "\xd8\x1f\xf1\xfa\xd8\xd1\x6f\x5f\xff\x4a\xe2\xfa\xcf\x7d\x74\xea\xf4\x99" "\x85\x0b\xf3\xb3\x69\xaf\x3e\x76\x6b\xfe\xde\x39\x6f\x2b\xb6\x27\x6e\xef" "\xad\xe1\xdc\xda\xfe\xf5\xe1\x33\xe7\x3f\x38\x77\x6e\x72\x66\x72\x26\xcb" "\x26\xab\xfb\x16\x7a\xd7\xec\xcb\x61\xfe\xb4\x18\x97\xba\x2f\xbd\xb8\xec" "\x0c\xba\xe3\x91\xf0\x7c\xde\xf9\x57\xdf\xd8\x78\xcf\xbf\x7d\x26\x5e\xfe" "\x1f\xef\x29\x2e\xbf\xfc\xd6\xe2\xfb\xd6\xab\xc2\x72\x9f\x0b\x97\x6f\x0a" "\xcf\xdf\xda\xd6\xbf\xdc\x93\x77\xdd\x9e\xbf\xbe\x87\x9e\x0e\x5b\xb8\xb8" "\xfc\xfd\x82\xaf\xc7\x96\x6d\xff\xbd\x7f\x55\x0b\x86\xc7\xdf\xfe\x73\x41" "\x3c\xde\xcf\xbe\xf4\x83\xf9\x7e\x68\x5c\x97\x7f\xdf\x88\xaf\xeb\xeb\xdc" "\xfe\x1f\xce\x16\xf7\xf3\xf5\xb0\x5f\x17\xc3\x3b\x33\x6f\xbd\x7d\x69\x7d" "\xcd\xcb\xc7\xf7\x46\xb8\xfc\xee\xe2\xf5\x7e\xdd\xfb\x2f\x9c\xe6\xe2\xf3" "\xfa\xf7\xe1\xf9\x7e\xfb\x8f\x8b\xfb\x8f\xdb\x15\x1f\xef\x0f\xc3\xcf\x31" "\xdf\xda\xdc\x7a\xbe\x8b\xc7\xc7\xd7\x2f\x0e\xb7\xdf\x7f\xfe\x2e\x1e\x97" "\xc2\xf9\x24\xbb\x54\x5c\x1f\x97\x8a\xfb\xfb\xf2\xb3\xb7\x77\xdc\xbc\xf8" "\x3e\x24\xd9\xa5\x3b\xf2\xaf\xff\x3c\xdd\xcf\x1d\x6b\x7a\x98\x2b\x59\xf8" "\xd8\xc2\xf4\xc9\xf9\xd3\x17\x1e\x9d\x3e\x3f\xb7\x70\x7e\x7a\xe1\x63\x1f" "\x3f\x7c\xea\xcc\x85\xd3\xe7\x0f\xe7\xef\xe5\x79\xf8\x43\xbd\x6e\xbf\x74" "\x7e\xda\x98\x9f\x9f\x66\xe7\xf6\xee\xc9\xf2\xb3\xd5\x99\x62\x3c\xcf\x6e" "\xf4\xf6\x9f\x7d\xe4\xd8\xec\xbe\x99\x7b\x66\xe7\x8e\x1f\xbd\x70\xfc\xfc" "\x23\x67\xe7\xce\x9d\x38\xb6\xb0\x70\x6c\x6e\x76\xe1\x9e\xa3\xc7\x8f\xcf" "\x7d\xb4\xd7\xed\xe7\x67\x0f\xee\xdc\x75\x60\xf7\xbe\x5d\x53\x27\xe6\x67" "\x0f\xee\x3f\x70\x60\xf7\x81\xa9\xf9\xd3\x67\x1a\x9b\x51\x6c\x54\x0f\x7b" "\x67\x3e\x3c\x75\xfa\xdc\xe1\xfc\x26\x0b\x07\xf7\x1c\xd8\xf9\xc0\x03\x7b" "\x66\xa6\x4e\x9d\x99\x9d\x3b\xb8\x6f\x66\x66\xea\x42\xaf\xdb\xe7\xdf\x9b" "\xa6\x1a\xb7\xfe\xe3\xa9\x73\x73\x27\x8f\x9e\x9f\x3f\x35\x37\xb5\x30\xff" "\xf1\xb9\x83\x3b\x0f\xec\xdd\xbb\xab\xe7\xbb\x01\x9e\x3a\x7b\x7c\x61\x72" "\xfa\xdc\x85\xd3\xd3\x17\x16\xe6\xce\x4d\x17\x8f\x65\xf2\x7c\x7e\x71\xe3" "\x7b\x5f\xaf\xdb\x53\x4d\x0b\xff\x59\xfc\x3c\xdb\x6e\xa8\x78\x23\xbe\xec" "\x9d\xf7\xee\x4d\xef\xcf\xda\xf0\x95\x4f\xac\x78\x57\xc5\x22\x6d\x6f\x20" "\x7a\x35\xbc\x17\xcd\x77\x5e\x74\x76\xff\x6a\xbe\x8e\xb9\x7f\x2c\xcc\xa4" "\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xf1\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x0d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x13\x61" "\xa6\xff\x25\xa0\x26\xf9\xbf\x72\xfd\xff\xcd\x17\x57\xb5\x7e\xfd\x7f\xfd" "\xff\xe6\xfd\xa5\xff\x5f\xb3\xfe\xff\xbb\xcb\xd6\xff\x2f\xce\x17\xfa\xff" "\xfd\x71\xbd\xfd\x7b\xfd\xff\x40\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f" "\x3e\x28\x5b\xff\x3f\xe6\xfe\x9b\xb2\xcc\xdf\xff\x01\x00\x00\xa0\xa2\x62" "\xee\xdf\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x73\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\x0b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\x3b\xaf\x5f\xff\x7f\x30\xe9\xff\x77\xa7\xff\xdf" "\x83\xfe\xff\x74\x56\xaf\xfe\xff\xa5\x7e\x6e\xbf\xfe\xbf\xfe\x3f\xcb\x95" "\xad\xff\x1f\x73\xff\x0b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee" "\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xd6\x30\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\x4d\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xfa\xff\x9d\xd7\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\xef\x41" "\xff\xdf\xe7\xff\xeb\xff\xeb\xff\xd3\x57\x65\xeb\xff\xc7\xdc\xff\xa2\x30" "\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x5f\x1c\x66\x22\xff\x03\x00" "\x00\x40\xf9\x8c\x5e\xdb\xcd\x62\xee\x7f\x49\x98\xc9\xb2\xfc\x7f\x8d\x2b" "\x00\x00\x00\x00\x6e\xb8\x98\xfb\x6f\xcb\xda\x8a\xe0\x35\xf9\xfb\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\xe7\xf5\xaf\xbe\xff\x3f\x92\xe9\xff" "\x97\x87\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x57" "\x65\xeb\xff\xe7\xb9\x3f\x9b\xc8\x5e\x1a\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\xed\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xbf\x16" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x39\xcc\xa4\x26\xf9\x5f\xff" "\xbf\x32\xfd\xff\x5f\x34\x3f\x75\xfa\xff\x57\xe7\x9f\xfb\xc5\x52\x5f\x7f" "\x44\xff\xbf\x65\xfd\xfa\xff\x3e\xff\xbf\xca\xf4\xff\xbb\xd3\xff\xef\x41" "\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe\x2a\x5b\xff\x3f\xe6\xfe\x3b\xc2\x4c" "\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\xbf\x33\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\xd7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xb7" "\x84\x99\xd4\x24\xff\xeb\xff\x97\xbc\xff\x1f\x9b\xa3\x3e\xff\xdf\xe7\xff" "\xeb\xff\x97\xb2\xff\x3f\xa1\xff\x5f\x3a\xfa\xff\xdd\xe9\xff\xf7\xa0\xff" "\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x95\xad\xff\x1f\x73\xff\xcb\xc2\x4c\x6a" "\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\x7f\x79\x98\x89\xfc\x0f\x00\x00\x00" "\x95\x11\x73\xff\x2b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x27\xc3" "\x4c\x6a\x92\xff\xf5\xff\x4b\xde\xff\x2f\x7a\xf0\xe3\xab\xf8\xfc\xff\x16" "\xfa\xff\xfa\xff\xdd\xd6\xaf\xff\xef\xf3\xff\xab\x4c\xff\xbf\x3b\xfd\xff" "\x1e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xab\xb2\xf5\xff\x63\xee\xbf\x2b" "\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xad\x61\x26\xf2\x3f\x00" "\x00\x00\x54\x46\xcc\xfd\x77\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\x6f\x0b\x33\xa9\x49\xfe\xd7\xff\x1f\x88\xfe\x7f\xa6\xff\xaf\xff\xaf\xff" "\xaf\xff\xaf\xff\xbf\x3a\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x5f\x95\xad\xff\x1f\x73\xff\x2b\xc3\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\x55\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xdb\xc3\x4c\x6a\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xaf\x5f\xff\x7f\x30\xe9\xff" "\x77\xa7\xff\xdf\x83\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x7d\x55\xb6\xfe\x7f" "\xcc\xfd\xaf\x0e\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\x7f\x47\x98" "\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xbd\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\x53\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x9d\xd7\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\xbe\x2a\x5b\xff\x3f\xe6\xfe\xfb\xc2\x4c\x6a\x92\xff" "\x01\x00\x00\xa0\x0e\x62\xee\xbf\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88" "\xb9\x7f\x3a\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x26\xcc\xa4\x26" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x7f\x4d\xfd\xff\x57\x2c\xdd\xaf\xfe" "\x7f\x41\xff\xbf\x5c\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff\xff\x86\xf7" "\xff\xc7\xf4\xff\xa9\x94\xb2\xf5\xff\x63\xee\xdf\x19\x66\x52\x93\xfc\x0f" "\x00\x00\x00\x75\x10\x73\xff\xae\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6" "\xfe\xdd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x7b\xc2\x4c\x6a\x92" "\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\x7f\xe7\xf5\xeb\xff\x0f\x26" "\xfd\xff\xee\xfa\xdf\xff\x8f\x0f\x51\xff\x5f\xff\x5f\xff\xdf\xe7\xff\xeb" "\xff\xb3\x5c\xd9\xfa\xff\x31\xf7\x3f\x10\x66\x52\x93\xfc\x0f\x00\x00\x00" "\x75\x10\x73\xff\xde\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x7d\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xfb\xc3\x4c\x6a\x92\xff\xf5\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xaf\x5f\xff\x7f\x30\xe9\xff\x77\xe7" "\xf3\xff\x7b\xd0\xff\xd7\xff\x1f\xe0\xfe\x7f\xe3\xd8\xd2\xff\xa7\x6c\xca" "\xd6\xff\x8f\xb9\xff\x40\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd" "\xaf\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x8d\x30\x13\xf9\x1f" "\x00\x00\x00\x2a\x23\xe6\xfe\xdf\x0c\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7" "\xff\xd7\xff\x2f\x7b\xff\x7f\x5c\xff\x5f\xff\x7f\x0d\xf4\xff\xbb\xd3\xff" "\xef\x41\xff\x5f\xff\x7f\x80\xfb\xff\x3e\xff\x9f\x32\x2a\x5b\xff\x3f\xe6" "\xfe\x83\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xff\x56\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x0f\x85\x99\xd4\x24\xff\xeb\xff\xaf\x53\xff\x3f\x5e\xa8\xff" "\xaf\xff\xaf\xff\xef\xf3\xff\xf5\xff\x9f\x57\xfa\xff\xdd\xe9\xff\xf7\xa0" "\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x5f\x95\xad\xff\x1f\x73\xff\xeb\xc2\x4c" "\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62\xee\x7f\x30\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\xf5\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x6f" "\x08\x33\xa9\x49\xfe\xd7\xff\xf7\xf9\xff\x37\xbe\xff\x3f\xd6\xb2\xed\xfa" "\xff\x4b\xb7\xd3\xff\x2f\xe8\xff\xeb\xff\xaf\x85\xfe\x7f\x77\xfa\xff\x3d" "\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x57\x65\xeb\xff\xc7\xdc\xff\xc6\x30" "\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xdf\x14\x66\x22\xff\x03\x00" "\x00\x40\x65\xc4\xdc\xff\xe6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\xb7\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xdf\xf8\xfe\xbf\xcf\xff\xd7\xff" "\x2f\xe8\xff\xeb\xff\xf7\x83\xfe\x7f\x77\xfa\xff\x3d\xe8\xff\xeb\xff\xeb" "\xff\xeb\xff\xd3\x57\x65\xeb\xff\xc7\xdc\xff\xdb\x61\x26\x35\xc9\xff\x00" "\x00\x00\x50\x07\x31\xf7\x3f\x14\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xff\xd6\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xb7\x85\x99\xd4\x24" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5e\xbf\xfe\xff\x60\xd2" "\xff\xef\x6e\xc0\xfa\xff\xbf\xba\x25\x5c\xae\xff\x5f\xd0\xff\x2f\xf7\xf6" "\xaf\xb5\xff\x3f\xda\xf6\xf5\xf3\xd2\xff\xff\xd1\x4a\xfd\xff\xc5\x0d\xed" "\xb7\xd7\xff\xe7\xf9\x50\xb6\xfe\x7f\xcc\xfd\x6f\x0f\x33\xa9\x49\xfe\x07" "\x00\x00\x80\x3a\x88\xb9\xff\x1d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc" "\xfd\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x9d\x30\x93\x9a" "\xe4\x7f\xfd\xff\xc6\x76\x2c\xb5\x97\xf5\xff\xf5\xff\xf3\x0b\xf4\xff\xf5" "\xff\xf5\xff\x07\x96\xfe\x7f\x77\x03\xd6\xff\xf7\xf9\xff\x6d\xf4\xff\xcb" "\xbd\xfd\x3e\xff\x5f\xff\x9f\xe5\xca\xd6\xff\x8f\xb9\xff\x5d\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x3f\x1c\x66\x22\xff\x03\x00\x00\x40" "\x65\xc4\xdc\xff\xee\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf7\x84" "\x99\xd4\x24\xff\xeb\xff\xfb\xfc\x7f\xfd\x7f\xfd\x7f\xfd\xff\xce\xeb\xd7" "\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\x5f\xb6\xfe\xff\x7f" "\xe9\xff\x33\xd8\xca\xd6\xff\x8f\xb9\xff\x91\x30\x93\x9a\xe4\x7f\x00\x00" "\x00\xa8\x83\x98\xfb\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff" "\xbb\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x0b\x33\xa9\x49\xfe" "\xd7\xff\x1f\x94\xfe\xff\xa4\xfe\xbf\xfe\xbf\xfe\x7f\xdb\xe3\xd1\xff\xd7" "\xff\xef\x44\xff\xbf\x3b\xfd\xff\x1e\xf4\xff\xf5\xff\xcb\xd6\xff\xf7\xf9" "\xff\x0c\xb8\xb2\xf5\xff\x63\xee\x7f\x7f\x98\xc9\xea\xf3\xff\xc4\xaa\x97" "\x04\x00\x00\x00\x6e\x88\x98\xfb\x7f\x2f\xcc\xa4\x26\x7f\xff\x07\x00\x00" "\x80\x3a\x88\xb9\xff\xf7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xff" "\x20\xcc\xa4\x26\xf9\x5f\xff\x7f\x50\xfa\xff\x3e\xff\x3f\xd3\xff\xd7\xff" "\x6f\x7b\x3c\xfa\xff\xfa\xff\x9d\xac\x5f\xff\x3f\x9e\x79\xf4\xff\xf5\xff" "\xf5\xff\x23\xfd\x7f\xfd\x7f\xfd\x7f\xda\x95\xad\xff\x1f\x73\xff\x1f\x86" "\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\x81\x30\x13\xf9\x1f\x00" "\x00\x00\x06\x42\xa7\xff\x27\xbb\x5d\xcc\xfd\x87\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\x8f\x84\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\x97" "\xb4\xff\xff\x97\x5b\xff\xf5\x07\xdf\x7d\xc7\x91\x9d\xfa\xff\xfa\xff\xfa" "\xff\x6b\xb2\xae\x9f\xff\xdf\x78\xf1\xfb\xfc\x7f\xfd\x7f\xfd\xff\x44\xff" "\x5f\xff\x5f\xff\x9f\x76\x65\xeb\xff\xc7\xdc\x7f\x34\xcc\x64\x29\xf8\xbd" "\xcd\x07\xfc\x03\x00\x00\xc0\x60\x8b\xb9\xff\x8f\xc2\x4c\x6a\xf2\xf7\x7f" "\x00\x00\x00\xa8\x83\x98\xfb\x8f\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31" "\xf7\xcf\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\x97\xb4\xff\x3f\xc0" "\x9f\xff\x1f\xf7\xc7\x20\xf5\xff\xa7\x36\x0c\x50\xff\x3f\x9e\x74\xf5\xff" "\x3b\x5a\xd7\xfe\xff\x7b\x97\x7a\xe2\xfa\xff\x6b\xed\xff\x8f\x77\xbc\x54" "\xff\x5f\xff\xbf\xcf\xdb\xff\x9d\x2c\xcb\xf4\xff\xf5\xff\xb9\x81\xca\xd6" "\xff\x8f\xb9\x7f\x2e\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe4\xfe\xe1" "\xe3\xc5\x5c\xba\x42\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x44\x98\x89\xfc" "\x0f\x00\x00\x00\x95\x11\x73\xff\x07\xc3\x4c\x6a\x92\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x7d\xfe\x7f\xe7\xf5\x97\xb6\xff\xef\xf3\xff\xbb\xd2\xff" "\xef\xae\x3c\xfd\xff\xce\xf4\xff\xf5\xff\x07\x79\xfb\xf5\xff\xf5\xff\x59" "\xae\x6c\xfd\xff\x98\xfb\xe7\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x62" "\xee\xff\x50\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x87\xc3\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x4f\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\x77\x5e\xbf\xfe\xff\x60\xd2\xff\xef\x4e\xff\xbf" "\x07\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\xaa\x6c\xfd\xff\x98\xfb\x4f\x85" "\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x3a\xcc\x44\xfe\x07\x00" "\x00\xfe\x9f\xbd\xfb\x68\xd2\xac\xbe\xee\x38\xde\x83\x87\x62\xa6\xd8\x78" "\xe7\x85\x17\xf6\xde\x2f\x81\x85\xbd\xb6\x5f\x80\x17\xde\x78\xe3\x2a\x97" "\x17\x4e\x38\x27\x06\x2b\x27\x94\x73\x40\x59\x28\xa0\x00\x12\x42\x09\xe5" "\x00\x28\x21\xa1\x2c\x24\xa1\x9c\x03\xca\x48\xaa\x51\x89\x3e\xe7\x4c\xf7" "\xf4\xed\xfb\x74\x0f\x4f\x77\xdf\xe7\x7f\x3e\x9f\x85\x0e\x6a\x18\xdd\x47" "\xaa\x29\xe0\x47\xcf\x57\x17\x18\x46\xee\xfe\x7f\x88\x5b\xec\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x7f\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\xd8\xfe\xff" "\x4f\xf5\xff\xfb\x3d\x5f\xff\xaf\xff\x1f\x99\xfe\x7f\x9e\xfe\x7f\x05\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xad\x96\xd6\xff\xe7\xee\xff\xa7\xb8\xa5\xc9" "\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x73\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x5f\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xff\x12\xb7\x34" "\xd9\xff\x17\xf5\xff\xa7\xb6\x7a\xf6\xff\x99\xf1\xea\xff\x47\xea\xff\xbd" "\xff\x7f\xdf\xe7\xeb\xff\xf5\xff\x23\x3b\xde\xfe\xff\xda\xdf\xfd\x99\x4f" "\xff\xaf\xff\xd7\xff\x07\xfd\xbf\xfe\x5f\xff\xcf\xc5\x96\xd6\xff\xe7\xee" "\xff\xd7\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x5b\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\xff\x7b\xdc\x62\xff\x03\x00\x00\xc0\x30\x72" "\xf7\xff\x47\xdc\xd2\x64\xff\x7b\xff\xbf\xf7\xff\xeb\xff\xf5\xff\xfa\xff" "\xe9\xe7\xeb\xff\x37\x93\xf7\xff\xcf\xeb\xd4\xff\x5f\x7d\xf7\x95\x7f\x7f" "\xdf\x2d\x7f\x78\xeb\x61\x9e\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd7\xd2" "\xfa\xff\xdc\xfd\xff\x19\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xff" "\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xff\x8e\x5b\xec\x7f\x00\x00" "\x00\xd8\x40\x67\x27\xbf\x9a\xbb\xff\x7f\xe2\x96\x26\xfb\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xd7\xff\x6f\x26\xfd\xff\xbc\x4e\xfd\xff" "\xa5\x3c\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x59\xaf\xa5\xf5\xff\xb9\xfb\xff" "\x37\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xff\x17\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\xd7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\xb9\xb8\xa5\xc9\xfe\xd7\xff\x1f\x7d\xff\xff\x1b\xfd\xbf\xfe\x3f\xae\xfe" "\x5f\xff\xaf\xff\x3f\x7a\xfa\xff\x79\xfa\xff\x15\xf4\xff\xfa\x7f\xfd\xbf" "\xfe\x9f\xb5\x5a\x5a\xff\x9f\xbb\xff\xda\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\xff\x7f\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x24\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1a\xb7\x34\xd9\xff\xfa\x7f\xef" "\xff\xd7\xff\xeb\xff\xf5\xff\xd3\xcf\xd7\xff\x6f\x26\xfd\xff\x3c\xfd\xff" "\x0a\xfa\xff\x07\xdb\xcf\x5f\xae\xff\xd7\xff\xeb\xff\xd9\xe9\x90\xfd\xff" "\xfd\x33\x7f\xda\x5e\x4b\xff\x9f\xbb\xff\x61\x71\x4b\x93\xfd\x0f\x00\x00" "\x00\x1d\xe4\xee\x7f\x78\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x22" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x19\xb7\x34\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x7f\xc9\xfd\xff\xde\x9f\x7a\x0f\xd0\xff\x4f\xd3\xff" "\x1f\x8f\x75\xf6\xff\x3b\xff\xdc\xa4\xff\xdf\xb6\xb6\xfe\xff\xd4\xe9\xc9" "\x2f\xeb\xff\x37\xbe\xff\xf7\xfe\x7f\xfd\xbf\xfe\x9f\x5d\x96\xf6\xfe\xff" "\xdc\xfd\x8f\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xa3\xe3\x96" "\x99\xfd\x7f\xe8\x7f\x98\x0f\x00\x00\x00\x9c\xa8\xdc\xfd\x8f\x89\x5b\x7c" "\xff\x1f\x00\x00\x00\x36\x5e\x56\x67\xb9\xfb\x1f\x1b\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xef\xfd\xff\xd3\xcf\x9f\xeb\xff\x6f\xdd\xf1\xf9" "\xf4\xff\xcb\xe2\xfd\xff\xf3\x16\xd3\xff\xef\x43\xff\xaf\xff\xdf\xe4\xcf" "\xaf\xff\xd7\xff\xb3\xd7\xd2\xfa\xff\xdc\xfd\x8f\x8b\x5b\x9a\xec\x7f\x00" "\x00\x00\xe8\x20\x77\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff" "\xf8\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x42\xdc\xd2\x64\xff\x4f" "\xf7\xff\x17\x7e\xbf\xfe\xff\x60\xf4\xff\xbb\x3f\xbf\xfe\x7f\xfa\xe7\xc7" "\xba\xfa\xff\xfc\x4f\xd4\xff\xcf\xf6\xff\x7f\xe6\xfd\xff\x3d\xe9\xff\xe7" "\xe9\xff\x57\xd0\xff\xeb\xff\xf5\xff\xfb\xf5\xff\x67\x57\xfd\x78\xfd\x3f" "\x53\x96\xd6\xff\xe7\xee\x7f\x62\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9" "\xfb\x9f\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8e\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\xa7\xc4\x2d\x4d\xf6\xbf\xf7\xff\xeb\xff\xf5" "\xff\x9b\xd7\xff\x7b\xff\xff\xb6\x93\x7c\xff\xff\xd6\xb1\xf7\xff\xa7\xf5" "\xff\x07\xa4\xff\x9f\xa7\xff\x5f\x41\xff\xaf\xff\xd7\xff\xcf\xbf\xff\x7f" "\xe6\xff\x05\x40\xff\xcf\x94\xa5\xf5\xff\xb9\xfb\x9f\x1a\xb7\x34\xd9\xff" "\x00\x00\x00\xd0\x41\xee\xfe\xa7\xc5\x2d\xf6\x3f\x00\x00\x00\x6c\x86\x9d" "\xbf\x76\xe0\xe2\x5f\x50\x1a\x72\xf7\x3f\x3d\x6e\xb1\xff\x01\x00\x00\x60" "\x18\xb9\xfb\x9f\x11\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x9f\x7e\xfe\xb2\xfa\x7f\xef\xff\x3f\x28\xfd\xff\x3c\xfd\xff\x0a\xfa\xff" "\xa3\xe8\xe7\x4f\x0f\xd6\xff\x5f\xbf\xdf\x8f\x5f\x42\xff\x7f\xcd\x51\xf7" "\xff\x33\xf4\xff\x4c\xd9\xd5\xff\xdf\x76\xe1\xeb\x27\xd5\xff\xe7\xee\x7f" "\x66\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x15\xb7\xd8\xff\x00" "\x00\x00\x30\x8c\xdc\xfd\xcf\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe" "\xe7\xc4\x2d\x4d\xf6\xff\x91\xf7\xff\x33\xef\x08\xd5\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xdd\xf4\xff\xf3\xf4\xff\x2b\xe8\xff\xbd\xff\xdf" "\xfb\xff\xf5\xff\xac\xd5\xae\xfe\x7f\x87\x93\xea\xff\x73\xf7\x3f\x37\x6e" "\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xcf\x8b\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xeb\xe3\xa6\xcb\x4e\xec\x13\x01\x00\x00\x00\xeb\x96\xbb" "\xff\xf9\x71\x4b\x93\xef\xff\x7b\xff\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f" "\x3f\x5f\xff\xbf\x99\xf4\xff\xf3\xf4\xff\x2b\xe8\xff\xf5\xff\xfa\x7f\xfd" "\x3f\x6b\xb5\xb4\xfe\x3f\x77\xff\x0b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a" "\xc8\xdd\xff\xc2\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x51\xdc\x62" "\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x38\x6e\x69\xb2\xff\xf5\xff\x47\xdb" "\xff\xe7\xd7\xf5\xff\xfa\xff\x2d\xfd\xbf\xfe\x5f\xff\x7f\x2c\xda\xf6\xff" "\xa7\xa6\xfe\x4a\xb4\xd7\x3e\xfd\xff\x9d\x7f\x7b\xee\x2f\x76\x7f\x45\xff" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x1c\xd0\xef\xcf\xfc\xbe\x45\xf4\xff\xe7" "\x2f\xfc\xdd\x65\xee\xfe\x97\xc4\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\xa5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xb2\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\xbf\x21\x6e\x39\xe4\xfe\x9f\x6b\x1e\x96\x4c\xff" "\xef\xfd\xff\xfa\x7f\xfd\xbf\xfe\x7f\xfa\xf9\xfa\xff\xcd\xd4\xb6\xff\x3f" "\x20\xef\xff\x5f\x41\xff\xaf\xff\xd7\xff\xeb\xff\x59\xab\x45\xf4\xff\x3b" "\xfe\x7d\xee\xfe\x97\xc7\x2d\xbe\xff\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x8a" "\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x65\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xbf\x2a\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\x3f\xfd\x7c\xfd\xff\x66\xd2\xff\xcf\xd3\xff\xaf\xb0\x49\xfd\xff\x0d" "\xfa\xff\x4b\xfc\xfc\xb7\x1f\xd5\xe7\xd7\xff\xeb\xff\xd9\x6b\x69\xfd\x7f" "\xee\xfe\x1b\xe3\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xea\xb8\xc5" "\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x4d\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\xbf\x36\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f" "\xfd\x7c\xfd\xff\x66\xd2\xff\xcf\x1b\xa0\xff\x3f\xb3\xf3\x8f\xbf\xa4\xfe" "\xff\xa6\x99\x0f\x30\xd5\xff\x9f\xbf\x62\x99\xfd\xbf\xf7\xff\x2f\xee\xf3" "\xeb\xff\xf5\xff\xec\xb5\xb4\xfe\x3f\x77\xff\xeb\xe2\x96\x26\xfb\x1f\x00" "\x00\x00\x3a\xc8\xdd\x7f\x53\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xdf" "\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x8f\x5b\x9a\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x4f\x3f\x5f\xff\xbf\x99\xf4\xff\xf3\x06" "\xe8\xff\xbd\xff\x7f\x4b\xff\xbf\xd4\xcf\xaf\xff\xd7\xff\xb3\xd7\xd2\xfa" "\xff\xdc\xfd\x6f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x2d\x71" "\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc6\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\xbf\x35\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff" "\x3f\xfd\x7c\xfd\xff\x66\x3a\xba\xfe\x7f\x4b\xff\xaf\xff\xd7\xff\xaf\xa0" "\xff\xd7\xff\xeb\xff\xb9\xd8\xd2\xfa\xff\xdc\xfd\x6f\x8a\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\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xf4\xf3\xf5\xff\x9b\xc9\xfb\xff" "\xe7\xe9\xff\x57\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x6a\xba\xff\xbf\xe6" "\xc4\xfa\xff\xdc\xfd\x6f\x8b\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xf6\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\x7f\x47\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xbb\xfb\xff" "\xad\x2d\xfd\xbf\xfe\x5f\xff\xbf\xed\x18\xfa\xff\x33\x5b\xfa\xff\xb5\xd3" "\xff\xcf\xd3\xff\xaf\xa0\xff\x1f\xb3\xff\xbf\x6c\x6b\xa0\xfe\xff\xec\xbe" "\x3f\x5e\xff\xcf\x12\x2d\xed\xfd\xff\xb9\xfb\xdf\x19\xb7\x34\xd9\xff\x00" "\x00\x00\xd0\x41\xee\xfe\x77\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\xbb\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x3d\x71\x4b\x93\xfd\xaf" "\xff\xd7\xff\x7b\xff\xbf\xfe\x5f\xff\x3f\xfd\x7c\xef\xff\xdf\x4c\xfa\xff" "\x79\xfa\xff\x15\xf4\xff\x63\xf6\xff\xde\xff\xaf\xff\xe7\xc4\x2c\xad\xff" "\xcf\xdd\xff\xde\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2f\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x1f\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x1f\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff" "\x4f\x3f\x5f\xff\xbf\x99\xf4\xff\xf3\xf4\xff\x2b\xe8\xff\xf5\xff\xfa\x7f" "\xfd\x3f\x6b\xb5\xb4\xfe\x3f\x77\xff\xed\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xbf\x23\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xef\x8c\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff" "\xaf\xff\xdf\xcc\xfe\xff\x8c\xfe\x5f\xff\xaf\xff\x9f\xb4\x94\xfe\xff\xaa" "\xab\xfe\xfc\x2e\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xbb\x5b\x5a" "\xff\x9f\xbb\xff\x43\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xff\x70" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x24\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x3f\x1a\xb7\x34\xd9\xff\x7b\xfb\xff\xcb\xb7\xb6\x0b\xd5" "\x6d\x53\xfd\x7f\x34\x6a\xfa\xff\x1d\xf4\xff\xbb\x3f\xbf\xfe\x7f\xfa\xe7" "\x87\xf7\xff\xeb\xff\xf5\xff\x47\x6f\x29\xfd\xbf\xf7\xff\x5f\xda\xe7\xd7" "\xff\xeb\xff\x37\xf9\xf3\x1f\xaa\xff\xff\xe3\xbd\x3f\x5e\xff\xcf\x88\x96" "\xd6\xff\xe7\xee\xbf\x2b\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x1f" "\x8b\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x8f\xc7\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\xdd\x71\x4b\x93\xfd\xef\xfd\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\x3f\xfd\x7c\xfd\xff\x66\x3a\xba\xfe\x7f\xfb\xef\x11\xf4\xff\xfa" "\x7f\xfd\xff\xfe\xf4\xff\x83\xbc\xff\xff\xf7\xf4\xff\xac\xcf\xd2\xfa\xff" "\xdc\xfd\x9f\x88\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x27\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x53\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xe9\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff" "\xf4\xf3\xf5\xff\x9b\xc9\xfb\xff\xe7\xe9\xff\x57\xe8\xd3\xff\x9f\x99\xfa" "\xe2\x49\xf7\xf3\x0f\xd6\x49\x7f\xfe\x61\xfa\x7f\xef\xff\x67\x8d\x96\xd6" "\xff\xe7\xee\xff\x4c\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x1b" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x8b\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xcf\xc7\x2d\x4d\xf6\xbf\xfe\x5f\xff\x3f\x7e\xff\xff\xd7" "\xfa\xff\x8b\x9e\xaf\xff\xd7\xff\x8f\x4c\xff\x9f\x7f\x45\x9f\xa6\xff\x5f" "\xa1\x4f\xff\x3f\xe9\xa4\xfb\xf9\x4d\xff\xfc\xfa\x7f\xfd\x3f\x7b\x2d\xad" "\xff\xcf\xdd\x7f\x4f\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x10" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x8c\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x2f\xc5\x2d\x4d\xf6\xbf\xfe\xbf\x57\xff\x7f\x6a\xab\x63" "\xff\xef\xfd\xff\xfa\x7f\xfd\x7f\x27\xfa\xff\x79\xfa\xff\x15\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\xb5\x5a\x5a\xff\x9f\xbb\xff\xde\x53\xa7\x5b\xee\x7f" "\x00\x00\x00\xd8\x54\x7f\xf9\x27\x7f\x77\xcf\x41\xff\xd8\x7b\x1f\xf8\xd7" "\x33\x5b\x5f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xaf\xc4\x2d\xf6" "\x3f\x00\x00\x00\x0c\x23\x77\xff\x57\xe3\x96\x26\xfb\x5f\xff\xdf\xab\xff" "\xef\xf9\xfe\x7f\xfd\xbf\xfe\x5f\xff\xdf\x89\xfe\x7f\x9e\xfe\x7f\x05\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x67\xad\x96\xd6\xff\xe7\xee\xff\x5a\xdc\xb2\x63" "\xf8\x9d\x3e\xf4\x7f\x4b\x00\x00\x00\x60\x49\x72\xf7\x7f\x3d\x6e\x69\xf2" "\xfd\x7f\x00\x00\x00\xe8\x20\x77\xff\x37\xe2\x96\x3d\xfb\xff\xfc\x01\x7f" "\x55\x3b\x00\x00\x00\xb0\x34\xb9\xfb\xbf\x19\xb7\x34\xf9\xfe\xbf\xfe\x7f" "\xe1\xfd\xff\xd6\x11\xf5\xff\xf1\xc7\xe9\xff\xb7\xe9\xff\xf5\xff\x53\xcf" "\xd7\xff\x6f\x26\xfd\xff\xbc\x07\xd9\xff\x9f\x3f\xa5\xff\xd7\xff\xcf\xd0" "\xff\xeb\xff\xf5\xff\x5c\x6c\x69\xfd\x7f\xee\xfe\x6f\xc5\x2d\x4d\xf6\x3f" "\x00\x00\x00\x0c\x6a\xd7\x3f\x51\xc8\xdd\xff\xed\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xff\x4e\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x37" "\x6e\x69\xb2\xff\xf5\xff\xc7\xde\xff\x67\xaa\x7e\x84\xef\xff\x3f\x5b\xbf" "\xe5\xfd\xff\xcd\xfb\xff\xeb\xce\x4c\x3e\x5f\xff\xaf\xff\x1f\x99\xfe\x7f" "\x9e\xf7\xff\xaf\xa0\xff\x1f\xa5\xff\xbf\x42\xff\xaf\xff\x67\x19\x96\xd6" "\xff\xe7\xee\xff\x5e\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x1f" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x88\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\x1f\xc6\x2d\x4d\xf6\xbf\xfe\x7f\xe1\xef\xff\xbf\xa4\xfe" "\xff\x00\xef\xff\xd7\xff\xf7\xe8\xff\xf7\x79\xfe\x38\xfd\xff\x1f\x5c\x79" "\xee\x8e\xbf\xfa\x9b\x9b\x6f\xd4\xff\x73\xc1\x71\xf6\xff\xf9\x73\x41\xff" "\xaf\xff\xd7\xff\x6f\x5b\x50\xff\xef\xfd\xff\xfa\x7f\x16\x62\xfd\xfd\xff" "\xe9\x5d\x5f\x3c\x6c\xff\x9f\xbb\xff\x47\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\xbf\x2f\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x7f\x1c\xb7" "\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x3f\x89\x5b\x9a\xec\x7f\xfd\xbf\xfe" "\x7f\x29\xfd\x7f\xfe\x6f\x7d\x02\xfd\xff\xb9\xcd\xeb\xff\xb3\x29\xee\xde" "\xff\x7b\xff\xbf\xfe\x7f\x2f\xef\xff\x9f\xa7\xff\x5f\x41\xff\xaf\xff\xd7" "\xff\xeb\xff\x59\xab\xf5\xf7\xff\xbb\xbf\x78\xd8\xfe\x3f\x77\xff\x4f\xe3" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xb3\xb8\x25\xf7\xff\xa9\x43" "\xff\xa3\x7b\x00\x00\x00\x60\x61\x72\xf7\xff\x3c\x6e\xf1\xfd\x7f\x00\x00" "\x00\x18\x46\xee\xfe\x5f\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xbf\x94\xfe\x3f" "\x79\xff\xff\x85\x1f\xe7\xfd\xff\xdb\xc6\xe8\xff\xff\xa8\x7e\x4b\xff\x7f" "\xb4\x2e\xa5\xbf\xdf\xf9\x73\x58\xff\x1f\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xcf\x1a\x2c\xad\xff\xcf\xdd\xff\xcb\xb8\xa5\xc9\xfe\x07\x00\x00\x80" "\x0e\x72\xf7\xdf\x1f\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xbf\x8a\x5b" "\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x5f\xc7\x2d\x4d\xf6\xbf\xfe\x7f\xd4" "\xfe\x3f\x8b\x78\xfd\xbf\xfe\x5f\xff\xbf\x8c\xfe\xdf\xfb\xff\x8f\x8b\xf7" "\xff\xcf\xd3\xff\xaf\xa0\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd5\xd2\xfa\xff" "\xdc\xfd\xbf\x0d\x00\x00\xff\xff\x8f\x7a\x72\x46", 24960); syz_mount_image( /*fs=*/0x20000100, /*dir=*/0x20000000, /*flags=MS_POSIXACL|MS_STRICTATIME|MS_RDONLY|MS_NOSUID*/ 0x1010003, /*opts=*/0x20000700, /*chdir=*/0x23, /*size=*/0x6180, /*img=*/0x20006840); // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x20000140, "./file1\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000140ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[0] = res; // ioctl$FITRIM arguments: [ // fd: fd (resource) // cmd: const = 0xc0185879 (4 bytes) // arg: ptr[in, fstrim_range] { // fstrim_range { // start: int64 = 0x0 (8 bytes) // len: int64 = 0x20000000003 (8 bytes) // minlen: int64 = 0x0 (8 bytes) // } // } // ] *(uint64_t*)0x20000180 = 0; *(uint64_t*)0x20000188 = 0x20000000003; *(uint64_t*)0x20000190 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0xc0185879, /*arg=*/0x20000180ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*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=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; do_sandbox_none(); return 0; }