// https://syzkaller.appspot.com/bug?id=b3f85701fb031906ee7c2e8a273022ebd994c210 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_clone #define __NR_clone 220 #endif #ifndef __NR_exit #define __NR_exit 93 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 //% 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)) { } } 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); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } #define USLEEP_FORKED_CHILD (3 * 50 * 1000) static long handle_clone_ret(long ret) { if (ret != 0) { return ret; } usleep(USLEEP_FORKED_CHILD); syscall(__NR_exit, 0); while (1) { } } static long syz_clone(volatile long flags, volatile long stack, volatile long stack_len, volatile long ptid, volatile long ctid, volatile long tls) { long sp = (stack + stack_len) & ~15; long ret = (long)syscall(__NR_clone, flags & ~CLONE_VM, sp, ptid, ctid, tls); return handle_clone_ret(ret); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000700, "jfs\000", 4); memcpy((void*)0x20000300, "./bus\000", 6); memcpy( (void*)0x2000d780, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\xae\xd7\x2f\xa1\xa9" "\xd5\x43\x55\x22\x84\xdc\x94\xb7\x52\x9a\xd7\x12\x02\x05\x9a\x1e\xe0\xc0" "\x85\x03\xca\x15\x25\x72\xdd\x2a\xaa\x0b\x28\x09\x28\xad\x22\xe2\xca\x17" "\x0e\xfc\x11\x20\x24\x8e\x08\x71\xe4\xc4\x1f\xd0\x03\x57\x6e\xfc\x01\x44" "\x4a\x90\x40\x3d\x31\x68\xec\xe7\x89\x67\x27\xbb\x59\xa7\x8e\x77\xd6\x9e" "\xcf\x47\x72\x66\x7f\xf3\xcc\xac\x9f\xc9\x77\x67\x5f\x3c\x33\xfb\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x3f\xfa\xe1\x4f\xce" "\x17\x11\x71\xed\x57\x69\xc6\x6a\xc4\xe7\xa2\x1f\xd1\x8b\x58\xae\xea\xb5" "\x88\x58\x5e\x5b\xcd\xcb\x0f\x22\xe2\xa5\xd8\x69\x8e\x17\x23\x62\x61\x31" "\xa2\x5a\x7f\xe7\x9f\xe7\x23\xde\x88\x88\x4f\x4e\x46\x3c\x78\x78\x77\xbd" "\x9a\x7d\x61\x9f\xfd\xf8\xc1\x9f\xff\xf1\x87\x9f\x9e\xf8\xf1\xdf\xff\xb4" "\x70\xf6\xbf\x7f\xb9\xdd\x7f\x73\xd2\x72\x77\xee\xfc\xf6\x3f\x7f\xbd\x77" "\xb0\x6d\x06\x00\x00\x80\xae\x29\xcb\xb2\x2c\xd2\xc7\xfc\x53\xe9\xf3\x7d" "\xaf\xed\x4e\x01\x00\x33\x91\x5f\xff\xcb\x24\xcf\x3f\x0a\xf5\xb0\xb6\x1d" "\xf3\xd0\x1f\xb5\x7a\xa7\x18\xee\xcd\x98\x8b\xfe\xa8\x67\x58\x6f\x2e\xd5" "\xe7\xb4\xdf\x1f\xb5\xfa\xf1\xba\xae\x1c\xef\x5e\xbd\x88\x88\xad\xfa\x3a" "\xd5\x7b\x06\x87\xe3\x01\xe0\x88\xd9\x8a\x4f\xdb\xee\x02\x2d\x92\x7f\xa7" "\x0d\x22\xe2\x44\xdb\x9d\x00\xe6\x5a\xd1\x76\x07\x38\x14\x0f\x1e\xde\x5d" "\x2f\x52\xbe\x45\xfd\xf5\x60\x6d\xb7\x3d\x9f\x0b\x32\x92\xff\x56\xf1\xe8" "\xfa\x8e\x49\xd3\x69\x9a\xe7\x98\xcc\xea\xf1\xb5\x1d\xfd\x78\x61\x42\x7f" "\x96\x67\xd4\x87\x79\x92\xf3\xef\x35\xf3\xbf\xb6\xdb\x9e\x8f\xad\x1d\x76" "\xfe\xb3\x32\x29\xff\xe1\xee\xa5\x4f\x9d\x93\xf3\xef\x37\xf3\x6f\x38\x3e" "\xf9\xf7\xc6\xe6\xdf\x55\x39\xff\xc1\x53\xe5\xdf\x97\x3f\x00\x00\x00\x00" "\x00\xcc\xb1\xfc\xf7\xff\xd5\x96\x8f\xff\x2e\x1e\x7c\x53\xf6\xe5\x49\xc7" "\x7f\xd7\xf6\x77\x17\x57\x9e\x75\x9f\x00\x00\x00\x00\x00\x00\x00\xe0\xa0" "\x0e\x3a\xfe\xdf\x23\xc6\xff\x03\x00\x00\x80\xb9\x55\x7d\x56\xaf\xfc\xee" "\xe4\xde\xbc\x49\xdf\xc5\x56\xcd\xbf\x5a\x44\x3c\xd7\x58\x1e\xe8\x98\x74" "\xb1\xcc\x4a\xdb\xfd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x2e\x19" "\xec\x9e\xc3\x7b\xb5\x88\x58\x88\x88\xe7\x56\x56\xca\xb2\xac\x7e\xea\x9a" "\xf5\xd3\x3a\xe8\xfa\x47\x5d\xd7\xb7\x1f\xba\xac\xed\x27\x79\x00\x00\xd8" "\xf5\xc9\xc9\xc6\xb5\xfc\x45\xc4\x52\x44\x5c\x4d\xdf\xf5\xb7\xb0\xb2\xb2" "\x52\x96\x4b\xcb\x2b\xe5\x4a\xb9\xbc\x98\xdf\xcf\x0e\x17\x97\xca\xe5\xda" "\xe7\xda\x3c\xad\xe6\x2d\x0e\xf7\xf1\x86\x78\x30\x2c\xab\x3b\x5b\xaa\xad" "\x57\x37\xed\xf3\xf2\xb4\xf6\xe6\xfd\x55\xbf\x6b\x58\xf6\xf7\xd1\xb1\xd9" "\x68\x31\x70\x00\x88\x88\xdd\x57\xa3\x07\x5e\x91\x8e\x99\xb2\x7c\x3e\xda" "\x7e\x97\xc3\xd1\x60\xff\x3f\x7e\xec\xff\xec\x47\xdb\x8f\x53\x00\x00\x00" "\xe0\xf0\x95\x65\x59\x16\xe9\xeb\xbc\x4f\xa5\x63\xfe\xbd\xb6\x3b\x05\x00" "\xcc\x44\x7e\xfd\x6f\x1e\x17\x50\xab\xd5\x6a\xb5\x5a\x7d\xfc\xea\xba\x72" "\xbc\x7b\xf5\x22\x22\xb6\xea\xeb\x54\xef\x19\x0c\xc7\x0f\x00\x47\xcc\x56" "\x7c\xda\x76\x17\x68\x91\xfc\x3b\x6d\x10\x11\x2f\xb5\xdd\x09\x60\xae\x15" "\x6d\x77\x80\x43\xf1\xe0\xe1\xdd\xf5\x22\xe5\x5b\xd4\x5f\x0f\xd2\xf8\xee" "\xf9\x5c\x90\x91\xfc\xb7\x8a\x9d\xf5\xf2\xfa\xe3\xa6\xd3\x34\xcf\x31\x99" "\xd5\xe3\x6b\x3b\xfa\xf1\xc2\x84\xfe\xbc\x38\xa3\x3e\xcc\x93\x9c\x7f\xaf" "\x99\xff\xb5\xdd\xf6\x61\x5a\x6e\x24\x9f\x62\x72\xee\xfb\xcc\xbf\x68\xfc" "\x19\x71\x66\x26\xe5\x5f\x6d\xe7\x6a\x0b\xfd\x69\x5b\xce\xbf\xdf\xcc\xbf" "\xe1\xb0\xf7\xff\x59\xd9\x8e\xde\xd8\xfc\xbb\x2a\xe7\x3f\x78\xaa\xfc\xfb" "\xf2\x07\x00\x00\x00\x00\x80\x39\x96\xff\xfe\xbf\xea\xf8\x6f\xde\x64\x00" "\x00\x00\x00\x00\x00\x00\x38\x72\x1e\x3c\xbc\xbb\x9e\xaf\x7b\xcd\xc7\xff" "\xbf\x30\x66\x39\xd7\x7f\x1e\x4f\x39\xff\x42\xfe\x9d\x94\xf3\xef\x35\xf2" "\xff\x5a\x63\xb9\x7e\xed\xf6\xfd\xb7\xf7\xf2\xff\xf7\xc3\xbb\xeb\x7f\xbc" "\xfd\xaf\xcf\xe7\xe9\x7e\xf3\x5f\xcc\x37\x8a\xf4\xc8\x2a\xd2\x23\xa2\x48" "\xbf\xa9\x18\xa4\xe9\x41\xb6\xee\x71\xdb\x0b\xfd\xe1\xee\xb6\xee\xde\xf1" "\x5a\x44\x94\x0b\xef\xc6\x8d\xd8\x8c\x8d\x38\x37\xb2\x6c\x2f\xfd\x7f\xec" "\xb5\x9f\x1f\x69\xaf\x7a\xba\x30\xd2\x7e\x61\xa4\x7d\xf0\x58\xfb\xc5\x91" "\xf6\x85\xf4\xbd\x03\xe5\x72\x6e\x3f\x13\xeb\xf1\xf3\xd8\x8c\x77\x76\xda" "\xab\xb6\xc5\x29\xdb\xbf\x34\xa5\xbd\x9c\xd2\x9e\xf3\xef\xdb\xff\x3b\x29" "\xe7\x3f\xa8\xfd\x54\xf9\xaf\xa4\xf6\xa2\x31\xad\xdc\xff\xb8\xf7\xd8\x7e" "\x5f\x9f\x8e\xfb\x3d\x57\x6e\x7c\xf1\x37\xe7\x0e\x7f\x73\xa6\xda\x8e\xfe" "\xa3\x6d\xab\xab\xb6\xef\x74\x0b\xfd\xd9\xf9\x3f\x39\x31\x8c\x5f\xde\xda" "\xb8\x79\xe6\xce\xf5\xdb\xb7\x6f\x9e\x8f\x34\x19\x99\x7b\x21\xd2\xe4\x19" "\xcb\xf9\x2f\xa4\x9f\x47\xcf\xff\xaf\xec\xb6\xe7\xe7\xfd\xfa\xfe\x7a\xff" "\xe3\xe1\x53\xe7\x3f\x2f\xb6\x63\x30\x31\xff\x57\x6a\xb7\xab\xed\x7d\x75" "\xc6\x7d\x6b\x43\xce\x7f\x98\x7e\x72\xfe\xef\xa4\xf6\xf1\xfb\xff\x51\xce" "\x7f\xf2\xfe\xff\x5a\x0b\xfd\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x80\x27\x29\xcb\x72\xe7\x12\xd1\x2b\x11\x71\x29\x5d\xff\xd3\xd6\xb5" "\x99\x00\xc0\x6c\xe5\xd7\xff\x32\xc9\xf3\xd5\x6a\xb5\x5a\xad\x56\x1f\xbf" "\xba\xae\x1c\xef\xad\x7a\x11\x11\x7f\xab\xaf\x53\xbd\x67\xf8\xf5\xb8\x3b" "\x03\x00\xe6\xd9\xff\x22\xe2\x9f\x6d\x77\x82\xd6\xc8\xbf\xc3\xf2\xf7\xfd" "\x0d\xf6\xbe\x91\x17\xe8\x88\x5b\x1f\x7e\xf4\xfe\xf5\xcd\xcd\x8d\x9b\xb7" "\x22\x96\xda\xee\x0c\x00\x00\x00\x00\x00\x00\x00\xf0\x99\xe4\xf1\x3f\xd7" "\x6a\xe3\x3f\x7f\x29\x22\x56\x1b\xcb\x8d\x8c\xff\xfa\x76\xac\x1d\x74\xfc" "\xcf\x41\xbe\xf1\x68\x80\xd1\x67\x3c\xd0\xf7\x04\xdb\xbd\x61\xbf\x57\x1b" "\x6e\xfc\xe5\x78\xf2\xf8\xdf\xa7\xe3\xc9\xe3\x7f\x0f\xa6\xfc\xbe\x85\x29" "\xed\xc3\x29\xed\xd3\xce\xca\x9a\x76\xce\xc6\xd8\x0b\x3d\x6a\x72\xfe\x2f" "\xd7\xc6\x3b\xaf\xf2\x3f\xd5\x18\x7e\xbd\x0b\xe3\xbf\x36\xc7\xbc\xef\x82" "\x9c\xff\xe9\xda\xe3\xb9\xca\xff\xab\x8d\xe5\xea\xf9\x97\xbf\x3f\xca\xf9" "\xf7\x46\xf2\x3f\x7b\xfb\x83\x5f\x9c\xbd\xf5\xe1\x47\xaf\xdf\xf8\xe0\xfa" "\x7b\x1b\xef\x6d\xfc\xec\xe2\xf9\xf3\xe7\x2e\x5e\xba\x74\xf9\xf2\xe5\xb3" "\xef\xde\xd8\xdc\x38\xb7\xfb\x6f\x8b\x3d\x3e\x5c\x39\xff\x3c\xf6\x75\xce" "\x9f\x6e\xc8\xf9\xe7\xcc\xe5\xdf\x2d\x39\xff\x2f\xa7\x5a\xfe\xdd\x92\xf3" "\xff\x4a\xaa\xe5\xdf\x2d\x39\xff\xfc\x7e\x4f\xfe\xdd\x92\xf3\xcf\x9f\x7d" "\xe4\xdf\x2d\x39\xff\x57\x53\x2d\xff\x6e\xc9\xf9\x7f\x3d\xd5\xf2\xef\x96" "\x9c\xff\x6b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x91\x6a\xf9\x77\x4b\xce\xff\xf5" "\x54\xef\x2f\xff\xfe\xa1\xf7\x8b\xd9\xc8\xf9\x9f\x49\xb5\xfd\xbf\x5b\x72" "\xfe\x67\x53\x2d\xff\x6e\xc9\xf9\xe7\x23\x5c\xf2\xef\x96\x9c\x7f\x3e\xb3" "\x41\xfe\xdd\x92\xf3\xbf\x90\x6a\xf9\x77\x4b\xce\xff\x62\xaa\xe5\xdf\x2d" "\x39\xff\x37\x52\x2d\xff\x6e\xc9\xf9\x7f\x33\xd5\xf2\xef\x96\x9c\xff\xa5" "\x54\xcb\xbf\x5b\x72\xfe\xdf\x4a\xb5\xfc\xbb\x25\xe7\x7f\x39\xd5\xf2\xef" "\x96\x9c\xff\xb7\x53\x2d\xff\x6e\xc9\xf9\x7f\x27\xd5\xf2\xef\x96\x9c\xff" "\x9b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x9b\x6a\xf9\x77\x4b\xce\xff\x7b\xa9\x1e" "\x93\xbf\x83\xfd\xc7\x58\xce\xff\xfb\xa9\xb6\xff\x77\x4b\xce\xff\xad\x54" "\xcb\xbf\x5b\xf6\xbe\xff\xdf\x0d\x37\x66\x73\xe3\xfd\x34\x96\xe4\x67\xbf" "\x9f\x88\xd8\x6a\x7b\x2b\x8e\xfb\x8d\xb6\x9f\x99\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xa6\x59\x9c\x4e\xdc\xf6\x36\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\xea\xfb\x0e\xe0\x67\xd7\xbb\xf6\xda\x84\xe0\x04\x42\x0d\x35" "\x64\x6d\x1c\x63\xcc\xc2\xae\x2f\xf8\x92\xd6\xc5\x21\x84\x50\xc8\xa5\xdc" "\xd2\xd0\x0b\xb6\xeb\x5d\x9b\x4d\x7c\x59\xbc\x76\x03\x14\xc9\x8e\x48\x1a" "\xa4\x38\x6a\x54\xa5\x2d\x2f\x6d\x2e\x42\x2d\x2f\x55\xac\x2a\x0f\x69\x45" "\x23\x1e\x7a\x51\xa4\x4a\xa1\x7d\x48\x5f\xa2\x54\x95\xf2\x80\x2a\x12\x91" "\x48\x95\xd2\xa8\x65\xab\x39\xf3\xff\xff\x77\x66\x76\x2e\xbb\x78\x76\x3d" "\x73\xce\xe7\x23\xc1\x0f\xef\x9c\x99\x73\xe6\xcc\x7f\x66\xf7\xbb\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\x40\xad\x4d\x1f\x9c\xfa" "\xc2\x40\x96\x65\x95\x7f\xf2\x7f\xad\xcf\xb2\x77\x54\xfe\x7b\xed\xe8\xfa" "\xfc\x6b\xef\xbf\xd2\x47\x08\x00\x00\x00\x5c\xae\xff\xcb\xff\xfd\xe6\x35" "\xe9\x0b\x07\x17\x71\xa5\x9a\x6d\xfe\xf9\xe6\xef\x7d\x6b\x6e\x6e\x6e\x2e" "\xfb\xe4\xaa\x3f\x19\xfe\xca\xdc\x5c\xba\x60\x34\xcb\x86\xd7\x64\x59\x7e" "\x59\x74\xe9\x3f\x1f\x1f\xa8\xdd\x26\x78\x3e\x1b\x19\x18\xac\xf9\xf3\x60" "\x87\xdd\xaf\xea\x70\xf9\x50\x87\xcb\x87\x3b\x5c\xbe\xba\xc3\xe5\x6b\x3a" "\x5c\x3e\xd2\xe1\xf2\x05\x27\x60\x81\xb5\xd5\xdf\xc7\xe4\x37\xb6\x25\xff" "\xcf\xf5\xd5\x53\x9a\x5d\x97\x0d\xe7\x97\x6d\x69\x72\xad\xe7\x07\xd6\x0c" "\x0e\xc6\xdf\xe5\xe4\x06\xf2\xeb\xcc\x0d\x1f\xcb\xa6\xb3\x13\xd9\x54\x36" "\x51\xb7\x7d\x75\xdb\x81\x7c\xfb\x57\x36\x55\xf6\x75\x7f\x16\xf7\x35\x58" "\xb3\xaf\x8d\x95\x15\xf2\xd3\xe7\x8e\xc6\x63\x18\x08\xe7\x78\x4b\xdd\xbe" "\xe6\x6f\x33\xfa\xf1\x07\xb2\xd1\x9f\xfd\xf4\xb9\xa3\x7f\x79\xf6\x8d\x1b" "\x9a\xcd\x8e\xa7\xa1\xee\xf6\xaa\xc7\xb9\x6d\x73\xe5\x38\x3f\x17\xbe\x52" "\x3d\xd6\x81\x6c\x4d\x3a\x27\xf1\x38\x07\x6b\x8e\x73\x63\x93\xc7\x64\x55" "\xdd\x71\x0e\xe4\xd7\xab\xfc\x77\xe3\x71\xbe\xb9\xc8\xe3\x5c\x35\x7f\x98" "\x2b\xaa\xf1\x31\x1f\xc9\x06\xf3\xff\x7e\x2d\x3f\x4f\x43\xb5\xbf\xd6\x4b" "\xe7\x69\x63\xf8\xda\xcf\x6f\xc9\xb2\xec\xc2\xfc\x61\x37\x6e\xb3\x60\x5f" "\xd9\x60\xb6\xae\xee\x2b\x83\xf3\x8f\xcf\x48\x75\x45\x56\x6e\xa3\xb2\x94" "\xde\x9d\x0d\x2d\x69\x9d\x6e\x5a\xc4\x3a\xad\xcc\xc9\x2d\xf5\xeb\xb4\xf1" "\x39\x11\x1f\xff\x4d\xe1\x7a\x43\x2d\x8e\xa1\xf6\x61\xfa\xf1\x67\x57\x2f" "\x78\xdc\x97\xba\x4e\xa3\xca\xbd\x6e\xf5\x5c\x69\x5c\x83\xdd\x7e\xae\xf4" "\xca\x1a\x8c\xeb\xe2\xb5\xfc\x4e\xbf\xd0\x74\x0d\x6e\x09\xf7\xff\xb9\xad" "\xad\xd7\x60\xd3\xb5\xd3\x64\x0d\xa6\xfb\x5d\xb3\x06\x37\xa7\x35\xb8\xb6" "\xf9\x31\x0f\xae\x5e\x95\x1f\x73\x7a\x10\x06\xf2\xeb\xcc\xaf\xc1\x1d\x75" "\xdb\xaf\xca\xf7\x34\x90\xcf\xd7\xb7\xb6\x5f\x83\xe3\x67\x4f\xce\x8c\xcf" "\x3e\xf3\xec\x1d\xd3\x27\x8f\x1c\x9f\x3a\x3e\x75\x6a\xd7\x8e\x1d\x13\xbb" "\xf6\xec\xd9\xb7\x6f\xdf\xf8\xb1\xe9\x13\x53\x13\xd5\x7f\xbf\xad\x73\xdd" "\x0f\xd6\x65\x83\xe9\x39\xb0\x39\x9c\xbb\xf8\x1c\xb8\xb5\x61\xdb\xda\xa5" "\x3a\xf7\xf5\xee\x3d\x0f\x47\xda\x3c\x0f\xd7\x37\x6c\xdb\xed\xe7\xe1\x50" "\xe3\x9d\x1b\x58\x99\x27\xe4\xc2\x35\x5d\x7d\x6e\x3c\x5a\x39\xe9\x23\x17" "\x07\xb3\x16\xcf\xb1\xfc\xf1\xd9\x7e\xf9\xcf\xc3\x74\xbf\x6b\x9e\x87\x43" "\x35\xdf\x0b\x9a\x7e\x4f\x69\xf2\x3c\x1c\x5a\xc4\xf3\xb0\xb2\xcd\xcc\xf6" "\xc5\xfd\xcc\x32\x54\xf3\x4f\xb3\x63\x58\xae\xef\x05\xeb\x6b\xd6\x60\xe3" "\xcf\x23\x8d\x6b\xb0\xdb\x3f\x8f\xf4\xca\x1a\x1c\x09\xeb\xe2\x07\xdb\x5b" "\x7f\x2f\xd8\x18\x8e\xf7\x85\xb1\xa5\xfe\x3c\xb2\x6a\xc1\x1a\x4c\x77\x37" "\xbc\xf6\x54\xbe\x92\x7e\xde\x1f\xd9\x97\x8f\x66\xeb\xf2\xc6\xca\x05\x57" "\xad\xce\xce\xcd\x4e\x9d\xb9\xf3\xe9\x23\x67\xcf\x9e\xd9\x91\x85\xb1\x22" "\xae\xad\x59\x2b\x8d\xeb\x75\x5d\xcd\x7d\xca\x16\xac\xd7\xc1\x25\xaf\xd7" "\x83\xd3\x37\xbf\x70\x63\x93\xaf\xaf\x0f\xe7\x6a\xe4\x8e\xca\xbf\x46\x5a" "\x3e\x56\x95\x6d\x76\xdf\xd9\xfe\xb1\xca\xbf\xbb\x35\x3f\x9f\x75\x5f\xdd" "\x99\x85\xd1\x65\x2b\x7d\x3e\x9b\x7d\x37\xaf\x9c\xcf\x94\x25\xdb\x9c\xcf" "\xca\x36\x9f\x1b\xbf\xfc\x9f\xc5\x53\x2e\xad\x79\xfd\x1d\x6e\xf1\xfa\x1b" "\x73\xff\x5b\xd5\xfd\xa5\x9b\x7a\x7e\xd5\xf0\x50\xf5\xf9\xbb\x2a\x9d\x9d" "\xe1\xba\xd7\xe3\xfa\x87\x6a\x28\x7f\xed\x1a\xc8\xf7\xfd\xe6\xf8\xe2\x5e" "\x8f\x87\xc3\x3f\x2b\xfd\x7a\x7c\x5d\x9b\xd7\xe3\x0d\x0d\xdb\x76\xfb\xf5" "\x78\xb8\xf1\xce\xc5\xd7\xe3\x81\x4e\xbf\xed\xb8\x3c\x8d\x8f\xe7\x48\x58" "\x27\x27\x26\xda\xbf\x1e\x57\xb6\xd9\xb0\x73\xa9\x6b\x72\xa8\xed\xeb\xf1" "\x2d\x61\x0e\x84\xf3\x7f\x5b\x48\x0a\x29\x17\xd5\xac\x9d\x56\xeb\x36\xed" "\x6b\x68\x68\x38\xdc\xaf\xa1\xb8\x87\xfa\x75\xba\xab\x6e\xfb\xe1\x90\xcd" "\x2a\xfb\x7a\x79\xe7\xdb\x5b\xa7\xdb\x6e\xa9\xde\xd6\xaa\x74\xef\xe6\xad" "\xd4\x3a\x1d\x6d\xd8\xb6\xdb\xeb\x34\xbd\x5e\xb5\x5a\xa7\x03\x9d\x7e\xfb" "\xf6\xf6\x34\x3e\x9e\x23\x61\x5d\x5c\xb7\xab\xfd\x3a\xad\x6c\xf3\xea\xee" "\xcb\x7f\xed\x4c\x29\xb1\xe6\xb5\x73\x75\xa7\x35\x38\xbc\x6a\x75\xe5\x98" "\x87\xd3\x22\xac\xbe\xde\xcf\xad\x8d\x6b\xf0\xce\xec\x68\x76\x3a\x3b\x91" "\x4d\xe6\x97\xae\xce\xd7\x53\x35\x91\x8e\xdd\xb5\xb8\x35\xb8\x3a\xfc\xb3" "\xd2\xaf\x95\x1b\xda\xac\xc1\x6d\x0d\xdb\x76\x7b\x0d\xa6\xef\x63\xad\xd6" "\xde\xc0\xd0\xc2\x3b\xdf\x05\x8d\x8f\xe7\x48\x58\x17\x2f\xde\xd5\x7e\x0d" "\x56\xb6\xb9\x77\x6f\x77\x7f\x76\xdd\x16\xbe\x92\xb6\xa9\xf9\xd9\xb5\xf1" "\xf7\x6b\xad\x7e\xe7\x75\x63\xc3\x69\x5a\xce\xdf\x79\x55\x8e\xf3\x1f\xf6" "\xb6\xff\xdd\x6c\x65\x9b\x13\xfb\x96\x9a\x33\xdb\x9f\xa7\xdb\xc3\x57\xae" "\x6a\x72\x9e\x1a\x9f\xbf\xad\x9e\x53\x93\xd9\xca\x9c\xa7\x0d\xe1\x38\xdf" "\xd8\xd7\xfa\x3c\x55\x8e\xa7\xb2\xcd\x57\xf6\x2f\x72\x3d\x1d\xcc\xb2\xec" "\xfc\x53\xf7\xe4\xbf\xef\x0d\x7f\xbf\xf2\x37\xe7\xbe\xff\xad\xba\xbf\x77" "\x69\xf6\x77\x3a\xe7\x9f\xba\xe7\x27\x57\x1f\xfb\xa7\xa5\x1c\x3f\x00\xfd" "\xef\xad\xea\x58\x57\xfd\x5e\x57\xf3\x37\x53\x8b\xf9\xfb\x7f\x00\x00\x00" "\xa0\x2f\xc4\xdc\x3f\x18\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x1f\xff" "\xaf\xf0\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x28\xcc\xa4\x24\xf9\x7f" "\xc3\xbd\x6f\x4c\xbf\x75\x3e\x4b\xcd\xfc\xb9\x20\x5e\x9e\x4e\xc3\x03\xd5" "\xed\x62\xc7\x75\x22\xfc\x79\x74\x6e\x5e\xe5\xeb\xf7\xbc\x34\xf5\xdf\x7f" "\x77\x7e\x71\xfb\x1e\xcc\xb2\xec\x7f\x1f\xf8\x83\xa6\xdb\x6f\x78\x20\x1e" "\x57\xd5\x68\x38\xce\x4b\x1f\xaa\xff\xfa\xc2\x2b\x9e\x5f\xd4\xfe\x0f\x3f" "\x36\xbf\x5d\x6d\x7f\xfd\x6b\xe1\xf6\xe3\xfd\x59\xec\x32\x68\x56\xc1\x9d" "\xc8\xb2\xec\x95\x6b\xbe\x94\xef\x67\xf4\xf1\x8b\xf9\x7c\xf5\x81\xc3\xf9" "\x7c\xf8\xc2\x0b\xcf\x57\xb6\x79\x73\x7f\xf5\xcf\xf1\xfa\xaf\x5f\x5b\xdd" "\xfe\xcf\x43\xf9\xf7\xe0\xb1\x23\x75\xd7\x7f\x3d\x9c\x87\x1f\x85\x39\xf1" "\x60\xf3\xf3\x11\xaf\xf7\xcd\x8b\xb7\x6d\xdc\xfb\x89\xf9\xfd\xc5\xeb\x0d" "\x6c\x7e\x67\x7e\xb7\x5f\x7c\xa2\x7a\xbb\xf1\x7d\x72\xbe\xfc\x7c\x75\xfb" "\x78\x9e\x5b\x1d\xff\xdf\x7f\xf1\xe5\x6f\x56\xb6\x7f\xfa\x7d\xcd\x8f\xff" "\xfc\x60\xf3\xe3\x7f\x39\xdc\xee\x4b\x61\xfe\xcf\x4d\xd5\xed\x6b\x1f\x83" "\xca\x9f\xe3\xf5\x3e\x1f\x8e\x3f\xee\x2f\x5e\xef\xce\x6f\x7c\xa7\xe9\xf1" "\x5f\xfa\x42\x75\xfb\x99\xfb\xde\x98\xae\x3c\x9d\x0f\xdf\x17\xd6\x69\xd8" "\xff\xb6\xf0\xe7\x2d\x95\xcb\x6b\x3c\x3d\x70\xa4\xee\x7e\x65\x1f\xae\x6e" "\x17\xf7\x3f\xf1\xfd\x3f\xca\x2f\x8f\xb7\x37\x73\x5f\xf3\xe3\x1f\x39\x74" "\xb1\xee\x7c\x34\xae\x8f\x57\xff\xad\x7a\x3b\xe3\x0d\xdb\xc7\xaf\xc7\xfd" "\x44\x7f\xdb\xb0\xff\xca\xed\xd4\xae\xcf\xb8\xff\x97\xff\xf0\x70\xdd\x79" "\xee\xb4\xff\x4b\x0f\xbf\x7e\x53\xe5\x76\x1b\xf7\x7f\x7b\xc3\x76\x33\x4f" "\x6d\xcf\xf7\x3f\x7f\x7b\xf5\xef\xd8\xf4\x17\x9f\xff\x52\xd3\xfd\xc5\xe3" "\x39\xf8\xd7\x33\x75\xf7\xe7\xe0\x43\xe1\x79\x1c\xf6\xff\xe2\x13\x61\x3d" "\x86\xcb\x7f\x71\xa9\x7a\x7b\x8d\xef\xae\x70\xf8\xa1\xfa\xd7\x9f\xb8\xfd" "\xd7\xd6\x9f\xaf\xbb\x3f\xd1\xfd\x3f\xab\xee\xff\xd2\xdd\xc7\xf3\xb9\x66" "\x64\xed\xba\xab\xde\x71\xf5\x3b\x2f\xbc\xb7\x72\xee\xb2\xec\xb5\x47\xaa" "\xb7\xd7\x69\xff\xc7\xbf\x7a\xba\xee\xf8\xbf\x7e\x7d\xf5\x7c\xc4\xcb\x63" "\x47\xbf\x71\xff\xad\xc4\xfd\x9f\xf9\xcc\xd8\xa9\xd3\xb3\xe7\xa6\x27\x6b" "\xce\x6a\xfe\xde\x39\x1f\xa9\x1e\x4f\x3c\xde\x6b\xc2\x6b\x6b\xe3\x9f\x0f" "\x9d\x3e\xfb\xe4\xd4\x99\xd1\x89\xd1\x89\x2c\x1b\x2d\xee\x5b\xe8\xbd\x6d" "\xdf\x08\xf3\x27\xd5\x71\x61\xa9\xd7\xdf\xfe\x58\x78\x3c\x6f\xfc\xb3\x57" "\xd6\x6d\xfd\xd7\x2f\xc6\xaf\xff\xfb\xa3\xd5\xaf\x5f\x7c\xb0\xfa\x7d\xeb" "\xd6\xb0\xdd\x97\xc3\xd7\xd7\x87\xc7\xef\x72\xf7\xff\xe2\xa6\xeb\xf3\xe7" "\xf7\xc0\xab\xf9\x1f\x87\xb3\xb9\x85\xef\x17\x7c\x39\x36\x6e\xf9\xaf\x7d" "\x8b\xda\x30\xdc\xff\xc6\x9f\x0b\xe2\x7a\x9f\x79\xcf\x93\xf9\x79\xa8\x5c" "\x96\x7f\xdf\x88\xcf\xeb\xfa\xe3\xaf\x7f\xff\xe3\x45\xf8\xe1\x64\xf5\x76" "\xbe\x1d\xce\xeb\x5c\x78\x67\xe6\xcd\xd7\xcf\xef\xaf\x76\xfb\xf8\xde\x08" "\x17\x1f\xa9\x3e\xdf\x2f\x77\xff\xf1\x65\x2e\x3e\xae\x7f\x15\x1e\xef\x8f" "\xfe\xa8\x7a\xfb\xf1\xb8\xe2\xfd\xfd\x61\xf8\x39\xe6\x3b\x1b\xea\x5f\xef" "\xe2\xfa\xf8\xf6\xf9\xc1\xc6\xdb\xcf\xdf\xc5\xe3\x42\x78\x3d\xc9\x2e\x54" "\x2f\x8f\x5b\xc5\xf3\x7d\xf1\xcd\xeb\x9b\x1e\x5e\x7c\x1f\x92\xec\xc2\x0d" "\xf9\x9f\xff\x38\xdd\xce\x0d\x4b\xba\x9b\xad\xcc\x3e\x33\x3b\x7e\x62\xfa" "\xd4\xb9\xa7\xc7\xcf\x4e\xcd\x9e\x1d\x9f\x7d\xe6\xd9\x43\x27\x4f\x9f\x3b" "\x75\xf6\x50\xfe\x5e\x9e\x87\x3e\xd5\xe9\xfa\xf3\xaf\x4f\xeb\xf2\xd7\xa7" "\xc9\xa9\x3d\xbb\xb3\xfc\xd5\xea\x74\x75\x2c\xb3\x2b\x7d\xfc\x33\x8f\xdd" "\x9d\x65\xd9\xd6\xc9\xa9\x63\x47\xce\x1d\x3b\xfb\xd8\xcc\xd4\x99\xe3\x47" "\x67\x67\x8f\x4e\x4d\xce\x6e\x3d\x72\xec\xd8\xd4\x67\x3a\x5d\x7f\x7a\xf2" "\xc0\x8e\x9d\xfb\x77\xed\xdd\x39\x76\x7c\x7a\xf2\xc0\xbe\xfd\xfb\x77\xed" "\x1f\x9b\x3e\x75\xba\x72\x18\xd5\x83\xea\x60\xcf\xc4\xa7\xc7\x4e\x9d\x39" "\x94\x5f\x65\xf6\xc0\xee\xfd\x3b\xee\xba\x6b\xf7\xc4\xd8\xc9\xd3\x93\x53" "\x07\xf6\x4e\x4c\x8c\x9d\xeb\x74\xfd\xfc\x7b\xd3\x58\xe5\xda\xbf\x3f\x76" "\x66\xea\xc4\x91\xb3\xd3\x27\xa7\xc6\x66\xa7\x9f\x9d\x3a\xb0\x63\xff\x9e" "\x3d\x3b\x3b\xbe\x1b\xe0\xc9\x99\x63\xb3\xa3\xe3\x67\xce\x9d\x1a\x3f\x37" "\x3b\x75\x66\xbc\x7a\x5f\x46\xcf\xe6\x5f\xae\x7c\xef\xeb\x74\x7d\x8a\x69" "\xf6\x3f\xaa\x3f\xcf\x36\x1a\xa8\xbe\x11\x5f\xf6\xf1\xdb\xf7\xa4\xf7\x67" "\xad\x78\xe9\xb3\x2d\x6f\xaa\xba\x49\xc3\x1b\x88\xbe\x11\xde\x8b\xe6\xbb" "\xef\x9a\xd9\xb7\x98\x3f\xc7\xdc\x3f\x1c\x66\x52\x92\xfc\x0f\x00\x00\x00" "\x65\x10\x73\xff\xea\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x35\x61" "\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x23\x61\x26\x25\xc9\xff\xfa\xff" "\xfa\xff\x45\xed\xff\xbf\x75\x5e\xff\xbf\xd5\xfe\xf5\xff\xf5\xff\x8b\xac" "\x60\xfd\xff\xa5\xf7\xd7\x3b\xd0\xff\xef\x40\xff\x5f\xff\xff\xb2\xfa\xff" "\x47\x27\xf7\x4e\xf4\x64\xff\x7f\xae\xf1\x7b\x6b\x33\xfa\xff\x2c\x87\x5e" "\xeb\xff\xc7\xdc\xbf\x36\xcb\x4a\x99\xff\x01\x00\x00\xa0\x0c\x62\xee\x5f" "\x17\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x55\x98\x89\xfc\x0f\x00" "\x00\x00\x85\x11\x73\xff\x3b\xc2\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x9b\xef\x5f\xff\xbf\x3f\xe9\xff\xb7\xa7\xff\xdf\x81\xfe" "\xbf\xfe\x7f\x31\xfb\xff\x3e\xff\x9f\x2b\xa6\xd7\xfa\xff\x31\xf7\x5f\x1d" "\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\x3b\xc3\x4c\xe4\x7f\x00" "\x00\x00\x28\x8c\x98\xfb\xaf\x09\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee" "\x5f\x1f\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7c" "\xff\xfa\xff\xfd\xe9\x6d\xf4\xef\x7f\x5e\x5b\x11\xef\xdd\xfe\xff\xda\xa5" "\xde\x54\x53\xfa\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xd3\x55\xbd\xd6" "\xff\x8f\xb9\xff\x5d\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7\xbf" "\x3b\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\xda\x30\x13\xf9\x1f\x00" "\x00\x00\x0a\x23\xe6\xfe\xeb\xc2\x4c\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\xf5\xff\x9b\xef\x5f\xff\xbf\x3f\x95\xf5\xf3\xff\x57\x2f\xf2\xf6" "\xf5\xff\x5b\xcb\x37\xd4\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a\xad\xff" "\x1f\x73\xff\x7b\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xbf\x3e" "\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x97\xc2\x4c\xe4\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\x37\x84\x99\x94\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\x37\xdf\xbf\xfe\x7f\x7f\x5a\xc6\xfe\x7f\xde\x48\xec\xd5\xfe" "\xff\x62\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff" "\x3f\xe6\xfe\x1b\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xbf\x31" "\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x97\xc3\x4c\xe4\x7f\x00\x00" "\x00\x28\x8c\x98\xfb\x37\x86\x99\x94\x24\xff\xeb\xff\x77\xb5\xff\x7f\x5b" "\x6d\x31\x4b\xff\x5f\xff\xbf\x61\x7d\xe8\xff\xeb\xff\xeb\xff\xaf\x80\xb2" "\x7e\xfe\xff\x62\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5" "\x5a\xff\x3f\xe6\xfe\x9b\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee" "\xbf\x39\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\xbd\x61\x26\xf2\x3f" "\x00\x00\x00\x14\x46\xcc\xfd\xa3\x61\x66\xab\xc3\x05\x25\xc9\xff\xfa\xff" "\x3e\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf9\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b" "\xfa\xff\x1d\x2c\x77\xff\xbf\xfa\x83\xa7\xfe\xff\x32\xb9\xd2\xc7\xaf\xff" "\xaf\xff\xcf\x42\xbd\xd6\xff\x8f\xb9\x7f\x53\x98\x49\x49\xf2\x3f\x00\x00" "\x00\x94\x41\xcc\xfd\x9b\xc3\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x6f" "\x09\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xdf\x12\x66\x52\x92\xfc\xdf" "\xa7\xfd\xff\xc1\xd6\x77\x48\xff\x3f\xd3\xff\xd7\xff\xef\xb0\x7f\xfd\x7f" "\xfd\xff\x22\xeb\xdd\xfe\x7f\xb3\xef\x14\x0b\xe9\xff\x17\xbc\xff\xef\xf3" "\xff\x97\xd5\x95\x3e\xfe\x65\xec\xff\x7f\xb7\x66\xb9\xb7\xa4\xff\x4f\x2f" "\xea\xb5\xfe\x7f\xcc\xfd\xef\x0b\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88" "\xb9\x7f\x6b\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xad\x61\x26\xf2" "\x3f\x00\x00\x00\x14\x46\xcc\xfd\xdb\xc2\x4c\x4a\x92\xff\xfb\xb4\xff\xdf" "\xe6\x0e\xe9\xff\x67\xfa\xff\xcb\xdf\xff\xdf\xfe\xd5\xea\x15\xf5\xff\xf5" "\xff\xf5\xff\x7b\x4e\xef\xf6\xff\x17\x47\xff\x5f\xff\x5f\xff\xbf\x7f\x8f" "\xdf\xe7\xff\xeb\xff\xb3\x50\xaf\xf5\xff\x63\xee\xbf\x2d\xcc\xa4\x24\xf9" "\x1f\x00\x00\x00\xca\x20\xe6\xfe\xed\x61\x26\xf2\x3f\x00\x00\x00\x14\x46" "\xcc\xfd\xb7\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x8f\x85\x99\x94" "\x24\xff\xeb\xff\xeb\xff\xeb\xff\xfb\xfc\x7f\xfd\xff\xe6\xfb\xd7\xff\xef" "\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xdf\xf2\xf8\xaf\xee\xb8\x7f" "\xfd\x7f\xfd\x7f\x16\xea\xb5\xfe\x7f\xcc\xfd\x77\x84\x99\x94\x24\xff\x03" "\x00\x00\x40\x19\xc4\xdc\x7f\x67\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73" "\xff\x78\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x44\x98\x49\x49\xf2" "\xff\x4a\xf7\xff\x6b\xce\xb0\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x7f\xd7\xe9\xff\xb7\x77\xe5\xfa\xff\xcd\xbe\x53\x2e\xa4\xff\xaf\xff\xdf" "\xcf\xc7\xaf\xff\xaf\xff\xcf\x42\xbd\xd6\xff\x8f\xb9\x7f\x47\x98\xe9\x27" "\xba\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\x77\x86\x99\xc8\xff\x00\x00" "\x00\x50\x18\x31\xf7\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xdf" "\x1d\x66\x52\x92\xfc\xef\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x9b\xef" "\x5f\xff\xbf\x3f\x34\x16\xec\xf5\xff\xdb\xf3\xf9\xff\x1d\xe8\xff\xeb\xff" "\xeb\xff\xeb\xff\xd3\x55\xbd\xd6\xff\x8f\xb9\xff\xae\x30\x93\x92\xe4\x7f" "\x00\x00\x00\x28\x83\x98\xfb\xf7\x84\x99\xc8\xff\x00\x00\x00\x50\x18\x31" "\xf7\xef\x0d\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xdf\x17\x66\x52\x92" "\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7c\xff\xfa\xff\xfd\x49" "\xff\xbf\xbd\xb2\xf4\xff\x23\xfd\xff\xa5\xb9\xd2\xfd\xf9\x7e\x3f\x7e\xfd" "\x7f\xfd\x7f\x16\xea\xb5\xfe\x7f\xcc\xfd\xfb\xc3\x4c\x4a\x92\xff\x01\x00" "\x00\xa0\x0c\x62\xee\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff" "\xaf\x84\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\xff\x6a\x98\x49\x49\xf2" "\xbf\xfe\xbf\xfe\xbf\xfe\xff\x95\xed\xff\x5f\xd0\xff\xd7\xff\xd7\xff\xef" "\x2a\xfd\xff\xf6\xca\xd2\xff\x5f\x9e\xcf\xff\x1f\xd1\xff\xef\x40\xff\x5f" "\xff\x5f\xff\x9f\x46\xbd\xd6\xff\x8f\xb9\xff\x40\x98\x49\x49\xf2\x3f\x00" "\x00\x00\x94\x41\xcc\xfd\xbf\x16\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc" "\x7f\x77\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xc1\x30\x93\x92\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\xdf\x7c\xff\xfa\xff\xfd\x49" "\xff\xbf\xbd\xde\xed\xff\xc7\x67\x56\x2f\xf7\xff\x7d\xfe\x7f\xa7\xeb\xeb" "\xff\xeb\xff\xeb\xff\xd3\xa8\xd7\xfa\xff\x31\xf7\x7f\x20\xcc\xa4\x24\xf9" "\x1f\x00\x00\x00\xca\x20\xe6\xfe\x7b\xc2\x4c\x16\xe6\xff\xc1\x95\x3b\x2a" "\x00\x00\x00\xa0\x9b\x62\xee\xff\x60\x98\x89\xbf\xff\x07\x00\x00\x80\xc2" "\x88\xb9\xff\xde\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\xff\x96\xfd\xff\xca\x83" "\xad\xff\xaf\xff\xaf\xff\x9f\xe8\xff\xf7\x07\xfd\xff\xf6\x7a\xb7\xff\x5f" "\xd5\xdb\x9f\xff\xaf\xff\xdf\xe9\xfa\xfa\xff\xfa\xff\xfa\xff\x34\xea\xb5" "\xfe\x7f\xcc\xfd\x1f\x0a\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\xff" "\xbe\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x0f\x87\x99\xc8\xff\x00" "\x00\x00\x50\x18\x31\xf7\xdf\x1f\x66\x52\x92\xfc\xaf\xff\xaf\xff\xef\xf3" "\xff\x57\xac\xff\x3f\x91\xe9\xff\x17\xbe\xff\xdf\xf8\x1a\x5a\x4b\xff\x7f" "\x65\xe8\xff\xb7\xa7\xff\xdf\x81\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x5d\xd5" "\x6b\xfd\xff\x98\xfb\x7f\x3d\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6" "\xfe\x07\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x1f\x0c\x33\x91\xff" "\x01\x00\x00\xa0\x30\x62\xee\xff\x48\x98\x49\x49\xf2\xbf\xfe\xbf\xfe\xbf" "\xfe\xbf\xcf\xff\xd7\xff\x6f\xbe\x7f\x9f\xff\xdf\x9f\xf4\xff\xdb\xd3\xff" "\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd\x1f" "\x0d\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\x63\x61\x26\xf2\x3f" "\x00\x00\x00\x14\x46\xcc\xfd\x1f\x0f\x33\x91\xff\x01\x00\x00\xa0\x30\x62" "\xee\xff\x8d\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff" "\xe6\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff" "\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\x87\xc2\x4c\x4a\x92\xff\x01\x00" "\x00\xa0\x0c\x62\xee\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff" "\x91\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x47\xc3\x4c\x4a\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x9b\xef\x5f\xff\xbf\x3f\xe9\xff" "\xb7\x57\xd7\xff\xff\xc5\x48\xeb\x0d\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5" "\xff\xe9\x82\x5e\xeb\xff\xc7\xdc\xff\x58\x98\x49\x49\xf2\x3f\x00\x00\x00" "\x94\x41\xcc\xfd\x9f\x08\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\xcd" "\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x4f\x86\x99\x94\x24\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x37\xdf\xbf\xfe\x7f\x7f\xd2\xff\x6f" "\xcf\xe7\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f" "\xe6\xfe\xc7\xc3\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62\xee\xff\xad\x30" "\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\xdf\x0e\x33\x91\xff\x01\x00\x00" "\xa0\x30\x62\xee\xff\x9d\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xe6\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf" "\xff\xaf\xff\xaf\xff\x4f\x57\xf5\x5a\xff\x3f\xe6\xfe\xdf\x0d\x33\x29\x49" "\xfe\x07\x00\x00\x80\x32\x88\xb9\xff\x89\x30\x13\xf9\x1f\x00\x00\x00\x0a" "\x23\xe6\xfe\x43\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\x87\xc3\x4c" "\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xb4\xff\xff\xa7\x9b\xff\xe5\x07" "\xdf\xfb\xd8\xe1\x1d\xfa\xff\xfa\xff\xfa\xff\x4b\xa2\xff\xdf\x9e\xfe\x7f" "\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74\x55\xaf\xf5\xff\x63\xee\x3f\x12" "\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xef\x85\x99\xc8\xff\x00" "\x00\x00\x50\x18\x31\xf7\x1f\x0d\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee" "\x9f\x0c\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xef\xd1\xfe\xbf\xcf\xff" "\x4f\xf4\xff\xf5\xff\x97\x42\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff\xf5" "\xff\xf5\xff\xe9\xaa\x25\xf7\xff\x47\x5b\xde\x54\x57\xfa\xff\x31\xf7\x4f" "\x85\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\x7f\x2c\xcc\x44\xfe\x07" "\x00\x00\x80\xc2\x88\xb9\xff\x78\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73" "\xff\x93\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xcd" "\xf7\xaf\xff\xdf\x9f\xf4\xff\xdb\xd3\xff\xef\x40\xff\x5f\xff\x5f\xff\x5f" "\xff\x9f\xae\xea\xb5\xcf\xff\x8f\xb9\x7f\x3a\xcc\xa4\x24\xf9\x1f\x00\x00" "\x00\xca\x20\xe6\xfe\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31\xf7\x7f" "\x3a\xcc\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\xff\x44\x98\x49\x49\xf2\xbf" "\xfe\xbf\xfe\xbf\xfe\xff\x32\xf4\xff\xff\xb1\xf9\xfa\xd0\xff\xd7\xff\xd7" "\xff\x5f\x7e\xfa\xff\xed\xe9\xff\x77\xa0\xff\xaf\xff\xaf\xff\xaf\xff\x4f" "\x57\x75\xa7\xff\x3f\x97\x75\xab\xff\x1f\x73\xff\xc9\x30\x93\x92\xe4\x7f" "\x00\x00\x00\x28\x83\x98\xfb\x4f\x85\x99\xc8\xff\x00\x00\x00\x50\x18\x31" "\xf7\x9f\x0e\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\x9f\x09\x33\x29\x49" "\xfe\xd7\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xfa\xff\xcd\xf7\xaf\xff\xdf\x9f" "\xf4\xff\xff\x9f\xbd\xfb\xf8\xf9\xac\xae\xe2\x38\xfe\x4c\x64\x04\xc3\x42" "\xe3\xc6\x85\x0b\x37\xfe\x01\xee\xd9\xb0\x32\xc1\xc4\xbf\xc0\xb8\xd4\x9d" "\x46\x05\x7b\x01\x7b\xef\xbd\xf7\x2e\xa2\xa0\x88\xbd\x37\xac\x28\xf6\x8e" "\x05\x45\x45\xc5\x82\x8a\x0b\x03\x73\xce\x99\xcc\x33\xbf\xb9\x77\xca\x9d" "\x99\x7b\xbf\xe7\xf5\xda\x9c\x90\xe1\x99\xfb\x9b\x9a\x7c\x32\x79\xe7\x4e" "\xd3\xff\xcf\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x16\xb5\xb6\xf7\xff\xe7\xee" "\x7f\x78\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x1f\x11\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x17\xc7\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77" "\xff\x25\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x9f\xbd\xfe\xff\xc0\x39\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xbf\xb4\x61\xfb\xff\xfd\x7f\x30\x4e\x92\xfe\x7f\x86" "\xfe\xbf\x41\xff\x7f\xec\x3f\x4c\xfa\x7f\xfd\x3f\xcb\x5b\x5b\xff\x9f\xbb" "\xff\x91\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x54\xdc\x62\xff" "\x03\x00\x00\xc0\x30\x72\xf7\x3f\x3a\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9" "\xfb\x1f\x13\xb7\x34\xd9\xff\xfa\x7f\xfd\xbf\xf7\xff\xeb\xff\xf5\xff\xbb" "\x9f\xaf\xff\xdf\xa6\x61\xfb\xff\x85\x74\xea\xff\x2f\xbe\xfe\xfc\x87\xde" "\x72\xf5\x3d\xaf\x39\x91\xe7\xeb\xff\x3b\xf4\xff\xa7\xef\xf3\xeb\xff\xf5" "\xff\x1c\x6d\x6d\xfd\x7f\xee\xfe\xc7\xc6\x2d\x4d\xf6\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x71\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\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xbf\xfe\x7f\xf7\xf3\xf5\xff\xdb\xa4\xff\x9f\xd6\xa9\xff\x3f" "\x99\xe7\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xcb\x5a\x5b\xff\x9f\xbb\xff\x89" "\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x52\xdc\x62\xff\x03\x00" "\x00\xc0\x30\x72\xf7\x5f\x1a\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x97" "\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x3f\x5f\xff" "\xbf\x4d\x2b\xea\xff\x0f\xea\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\x92\x87" "\x3c\xec\xc1\xe7\xea\xff\x1b\x5b\x5b\xff\x9f\xbb\xff\xc9\x71\xeb\x34\xd9" "\xff\x00\x00\x00\xd0\x41\xee\xfe\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23" "\x77\xff\x53\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x69\x71\x4b\x93" "\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xdd\xcf\xd7\xff\x6f\xd3\x7c" "\xff\x7f\xf7\x8b\xa6\xbe\xde\xfb\xff\x83\xfe\x5f\xff\xaf\xff\xd7\xff\x7b" "\xff\x3f\x0b\x58\x5b\xff\x9f\xbb\xff\xe9\x71\x4b\x93\xfd\x0f\x00\x00\x00" "\x1d\xe4\xee\x7f\x46\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x33\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x15\xb7\x34\xd9\xff\xfa\xff\xd3" "\xd3\xff\x67\xaf\xa8\xff\xd7\xff\xef\xe9\xff\x0f\xff\xbe\xd4\xff\xeb\xff" "\xcf\x80\x15\xbd\xff\xff\xa4\x9e\xaf\xff\xd7\xff\xeb\xff\xb7\xfb\xf9\xf5" "\xff\xfa\x7f\x8e\xb6\xb6\xfe\x3f\x77\xff\xb3\xe3\x96\x26\xfb\x1f\x00\x00" "\x00\x3a\xc8\xdd\xff\x9c\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6e" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2f\x6e\x69\xb2\xff\xf5\xff" "\xde\xff\xaf\xff\xd7\xff\xeb\xff\x77\x3f\x5f\xff\xbf\x4d\xfa\xff\x69\xfa" "\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa2\xd6\xd6\xff\xe7\xee\x7f\x7e" "\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x5f\x10\xb7\xd8\xff\x00\x00" "\x00\x30\x8c\xdc\xfd\x2f\x8c\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x17" "\xc5\x2d\x4d\xf6\xff\x12\xfd\xff\x65\xfa\x7f\xfd\xff\xbe\xcf\xaf\xff\xdf" "\xfd\xfb\x43\xff\xaf\xff\xd7\xff\x9f\x7e\xfa\xff\x69\xfa\xff\x19\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\xcf\xa2\xd6\xd6\xff\xe7\xee\x7f\x71\xdc\xd2\x64\xff" "\x03\x00\x00\x40\x07\xb9\xfb\x5f\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x2f\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x97\xc5\x2d\xb3\xfb" "\xff\xd6\x85\x8b\xbc\xb3\xe3\xc8\xfe\xff\x80\xf7\xff\xeb\xff\xf5\xff\x7b" "\xfa\x7f\xfd\xff\x21\xfa\xff\x6d\xd2\xff\x4f\xd3\xff\xcf\xd0\xff\xeb\xff" "\x57\xd1\xff\x5f\xa1\xff\x67\x18\x6b\xeb\xff\x73\xf7\xbf\x3c\x6e\xf1\xef" "\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x88\x5b\xec\x7f\x00\x00\x00\x18\x46" "\xee\xfe\x57\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xab\xe2\x96\x26" "\xfb\x7f\x89\xf7\xff\x0f\xdc\xff\x9f\xa7\xff\xd7\xff\xb7\xe8\xff\x6f\xff" "\x01\xe8\xff\xf5\xff\x83\x58\xae\xff\xbf\xf7\x5d\xf5\xff\xfa\xff\xfd\xfd" "\xff\xc1\x7d\x3f\x0f\xfa\xff\x23\xe9\xff\xbd\xff\xff\xb8\xfa\xff\x73\xe6" "\xbe\x27\x46\xb2\xb6\xfe\x3f\x77\xff\xab\xe3\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\x9a\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x6d\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x2e\x6e\x69\xb2\xff\xf5\xff\xde" "\xff\xaf\xff\x5f\x67\xff\x7f\xa9\xf7\xff\x17\xfd\xbf\xfe\xff\x44\x78\xff" "\xff\xb4\x93\xea\xff\xf7\xf4\xff\xde\xff\xaf\xff\xd7\xff\x7b\xff\x3f\x27" "\x67\x6d\xfd\x7f\xee\xfe\xd7\xc7\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb" "\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xc6\xb8\xc5\xfe\x07" "\x00\x00\x80\x61\xe4\xee\x7f\x53\xdc\xd2\x64\xff\x2f\xda\xff\xdf\xfe\x55" "\xfa\xff\xa2\xff\xd7\xff\xef\xff\xfd\xb1\xda\xf7\xff\xeb\xff\x77\x3e\x5f" "\xff\xbf\x4d\xfa\xff\x69\xde\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59" "\xd4\xda\xfa\xff\xdc\xfd\x6f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77" "\xff\x5b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xad\x71\x8b\xfd\x0f" "\x00\x00\x00\xc3\xc8\xdd\xff\xb6\xb8\xa5\xc9\xfe\xf7\xfe\xff\xbd\x7b\xe9" "\xff\xf5\xff\xfa\x7f\xfd\xff\xae\xe7\xeb\xff\xb7\x49\xff\x3f\x4d\xff\x3f" "\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xd4\xda\xfa\xff\xdc\xfd\x6f\x8f\x5b" "\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x3b\xe2\x16\xfb\x1f\x00\x00\x00" "\x86\x91\xbb\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xae\xb8" "\xa5\xc9\xfe\xd7\xff\x9f\xf2\xfb\xff\xef\x48\x80\xf5\xff\x47\x7e\xfe\x63" "\xf4\xff\xf5\xd3\xa4\xff\x3f\xf2\xff\xd7\xff\x1f\xa2\xff\xd7\xff\x2f\x41" "\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xd4\xda\xfa\xff" "\xdc\xfd\xef\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x7b\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xbd\x71\x8b\xfd\x0f\x00\x00\x00\xc3" "\xc8\xdd\xff\xbe\xb8\xa5\xc9\xfe\xd7\xff\x9f\x72\xff\x7f\x87\xd1\xfa\xff" "\x3b\x45\x67\xee\xfd\xff\xfa\x7f\xfd\xff\xe1\xef\x57\xff\xbf\x0d\xfa\xff" "\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa2\xd6\xd6\xff\xe7\xee" "\xbf\x3c\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\xef\x8f\x5b\xec\x7f" "\x00\x00\x00\x18\x46\xee\xfe\x2b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb" "\xff\x03\x71\x4b\x93\xfd\xaf\xff\xd7\xff\x9f\xc1\xf7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\x69\xa7\xff\x9f\xa6\xff\xdf\xdb\xdb\xbb\x72\xe2\x03\xe8" "\xff\xf5\xff\xfa\x7f\xfd\x3f\x8b\x5a\x5b\xff\x9f\xbb\xff\x83\x71\x4b\x93" "\xfd\x0f\x00\x00\x00\x1d\xe4\xee\xbf\x32\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\xaf\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x0f\xc5\x2d\x4d" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x3f\x5f\xff\xbf\x4d\xbd" "\xfb\xff\xac\xe5\x8f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xd4" "\xda\xfa\xff\xdc\xfd\x1f\x8e\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\xd5\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\x91\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\xbf\x26\x6e\x69\xb2\xff\x8f\xe8\xff\x33\x6a\xd5\xff" "\xeb\xff\x4f\x63\xff\x7f\xdb\x49\xf4\xff\x07\xe3\xdb\xf4\xff\xcb\xf5\xff" "\x17\xed\x78\xbe\xfe\x5f\xff\x3f\x82\xde\xfd\xff\x3c\xfd\xff\x8c\xbb\x1d" "\xfa\x2b\x41\xff\xaf\xff\xd7\xff\xeb\xff\x59\xc6\xda\xfa\xff\xdc\xfd\x1f" "\x8d\x5b\x2e\xdc\x37\x0c\x01\x00\x00\x80\xcd\xca\xdd\xff\xb1\xb8\xa5\xc9" "\xbf\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x1e\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x9f\x88\x5b\x9a\xec\x7f\xef\xff\xd7\xff\x7b\xff\x7f\xcf\xfe" "\xdf\xfb\xff\xf5\xff\xa3\xd2\xff\x4f\xd3\xff\xcf\xf0\xfe\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\xa2\xd6\xd6\xff\xe7\xee\xff\x64\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\x3f\x15\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x9f\x8e" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xcf\xc4\x2d\x4d\xf6\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x77\x3f\x5f\xff\xbf\x4d\xfa\xff\x69\xfa\xff" "\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa2\xd6\xd6\xff\xe7\xee\xff\x6c\xdc" "\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x3f\x17\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x9f\x8f\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x2f\xc4" "\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x3f\x5f\xff\xbf" "\x4d\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa2\xd6\xd6" "\xff\xe7\xee\xff\x62\xdc\xd2\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\xbf\x14" "\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x5f\x8e\x5b\xec\x7f\x00\x00\x00" "\x18\x46\xee\xfe\xaf\xc4\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\x77\x3f\x5f\xff\xbf\x4d\xfa\xff\x69\xfa\xff\x19\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\xa2\xd6\xd6\xff\xe7\xee\xff\x6a\xdc\xd2\x64\xff\x03\x00\x00" "\x40\x07\xb9\xfb\xaf\x8d\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xaf\xc5" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xd7\xe3\x96\x26\xfb\x5f\xff\xaf" "\xff\xd7\xff\x8f\xda\xff\xdf\xe5\x98\xcf\xd7\xff\xeb\xff\x47\xb6\x96\xfe" "\xff\x82\x0b\xee\x77\x9d\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdd" "\xad\xad\xff\xcf\xdd\xff\x8d\xb8\xe5\x98\xc3\xef\xd6\xfb\x1f\xc7\x0f\x13" "\x00\x00\x00\x58\x91\xdc\xfd\xdf\x8c\x5b\x9a\xfc\xfb\x3f\x00\x00\x00\x74" "\x90\xbb\xff\x5b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xed\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xa3\xf6\xff\x47\x3e\xff\xbe\xfa\x7f\xfd" "\x7f\x13\x6b\xe9\xff\xbd\xff\xff\xe4\x3e\xbf\xfe\x5f\xff\xbf\xe5\xcf\xaf" "\xff\xd7\xff\x73\xb4\xb5\xf5\xff\xb9\xfb\xaf\x8b\x5b\x9a\xec\x7f\x00\x00" "\x00\xe8\x20\x77\xff\x77\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xbb" "\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x7d\xdc\xd2\x64\xff\xeb\xff" "\xa7\xfa\xff\x3b\xeb\xff\xf5\xff\xc3\xf4\xff\x7b\xfa\x7f\xfd\x7f\x13\x9b" "\xee\xff\xcf\xd3\xff\xeb\xff\xcf\x66\xff\x7f\xe1\x19\xec\xe7\x6f\x5c\xe0" "\xf3\x1e\x25\xff\x5a\xd6\xff\xeb\xff\x59\x91\xb5\xf5\xff\xb9\xfb\xbf\x17" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x0f\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x87" "\x71\x4b\x93\xfd\xaf\xff\xf7\xfe\x7f\xfd\xbf\xfe\x5f\xff\xbf\xfb\xf9\xfa" "\xff\x6d\xda\x74\xff\xef\xfd\xff\xfa\x7f\xef\xff\xdf\xf4\xe7\xd7\xff\xeb" "\xff\x39\xda\xda\xfa\xff\xdc\xfd\x3f\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8" "\x20\x77\xff\x8f\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x27\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xd3\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xee\xe7\xeb\xff\xb7\x49\xff\x3f\x4d\xff\x3f\x43" "\xff\xaf\xff\xd7\xff\xeb\xff\x59\xd4\xda\xfa\xff\xdc\xfd\x3f\x8b\x5b\x9a" "\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xcf\xe3\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x17\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xcb\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xee\xe7\xeb\xff\xb7\x49" "\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xd4\xda\xfa\xff" "\xdc\xfd\xbf\x8a\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\x0d\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xeb\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x4d\xdc\xd2\x64\xff\xb7\xec\xff\x0f\xe8\xff\x4f\xa0\xff\xbf" "\xe1\xa6\x43\xdf\xd4\xb8\xff\x3f\xfc\xab\xab\xff\xd7\xff\x9f\x89\xfe\xff" "\x80\xfe\xff\x94\xe8\xff\xa7\xe9\xff\x67\xe8\xff\xf5\xff\x33\x9f\xff\xe0" "\xc4\xd7\x0f\xdf\xff\x9f\x33\xfd\xf5\x73\xfd\xff\xcc\x97\x33\xa8\xb5\xf5" "\xff\xb9\xfb\x7f\x1b\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xdf\xc5" "\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00" "\xc3\xc8\xdd\xff\xfb\xb8\xa5\xc9\xfe\x6f\xd9\xff\x7b\xff\xbf\xf7\xff\x7b" "\xff\xbf\xfe\x7f\xc5\xfd\xbf\xf7\xff\x9f\x1a\xfd\xff\xb4\xb3\xd9\xff\xdf" "\x7c\x1c\x8f\xd5\xff\xeb\xff\xb7\xfc\xf9\x87\xef\xff\x67\x78\xff\x3f\xbb" "\xac\xad\xff\xcf\xdd\xff\x87\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7" "\xdf\x14\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x8c\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x3f\xc5\x2d\x4d\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\xeb\xff\x77\x3f\x5f\xff\xbf\x4d\xfa\xff\x69\xde\xff\x3f\x43\xff\xaf" "\xff\xd7\xff\xeb\xff\x59\xd4\xda\xfa\xff\xdc\xfd\x7f\x8e\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\xcd\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd" "\xff\x97\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x6b\xdc\xd2\x64\xff" "\xeb\xff\x57\xd2\xff\xc7\x87\xd0\xff\xeb\xff\xf5\xff\x27\xd2\xff\xdf\xe3" "\xfc\xcb\xae\x7d\xc0\x83\xae\xba\x5c\xff\xcf\x61\xfa\xff\x69\xfa\xff\x19" "\xcb\xf5\xff\x0f\xbc\x8f\xfe\x5f\xff\xaf\xff\xd7\xff\x73\xa6\xfa\xff\xf3" "\x8e\xb7\xff\xcf\xdd\xff\xb7\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7" "\xdf\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x7f\x8f\x5b\xec\x7f\x00" "\x00\x00\x18\x46\xee\xfe\x7f\xc4\x2d\x4d\xf6\xbf\xfe\x7f\x25\xfd\x7f\x7c" "\x8d\xfe\x5f\xff\xbf\xea\xfe\xff\xdc\x23\xbf\xdf\xb3\xdf\xff\x7b\xff\xbf" "\xfe\xff\x68\xfa\xff\x69\xfa\xff\x19\xc7\xdb\xff\xdf\xfe\x17\x87\xf7\xff" "\x1f\x45\xff\xaf\xff\xd7\xff\xb3\xdf\x19\xea\xff\x8f\xd9\xfb\xef\xff\xef" "\xdc\xfd\xff\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xbf\xe2\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80\x61" "\xe4\xee\xff\x77\xdc\xd2\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x76\xdf" "\xff\x7f\xda\xfa\xff\x3b\x7e\x49\xf5\xff\xdb\xa4\xff\x9f\xa6\xff\x9f\xb1" "\xdc\xfb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x15\xf6\xff\xb9\xfb\xff\x13" "\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\xff\xc6\x2d\xf6\x3f\x00\x00" "\x00\x0c\x23\x77\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xbf" "\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xee\xe7\xeb\xff" "\xb7\x49\xff\x3f\x4d\xff\x3f\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xd4\xda" "\xfa\xff\xdc\xfd\xff\x0f\x00\x00\xff\xff\xc6\x52\x6e\xe2", 24746); syz_mount_image(/*fs=*/0x20000700, /*dir=*/0x20000300, /*flags=MS_LAZYTIME|MS_NOSUID*/ 0x2000002, /*opts=*/0x20000100, /*chdir=*/0xfe, /*size=*/0x60aa, /*img=*/0x2000d780); syz_clone(/*flags=CLONE_CHILD_CLEARTID|CLONE_SETTLS|CLONE_PTRACE*/ 0x282000, /*stack=*/0, /*stack_len=*/0xfffffffffffffdd7, /*parentid=*/0, /*childtid=*/0, /*tls=*/0); } 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; use_temporary_dir(); do_sandbox_none(); return 0; }