// https://syzkaller.appspot.com/bug?id=9cad29221c2001f84c41303bff1acd9b5694746a // 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_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_openat2 #define __NR_openat2 437 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 328 #endif #ifndef __NR_renameat2 #define __NR_renameat2 316 #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"); } 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_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/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_binderfs(); setup_fusectl(); } 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); } 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); } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000040, "./file0\000", 8); memcpy( (void*)0x2000cd80, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\x25\x34\xb1\x7a" "\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x4d\x0f\x70\xe0" "\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x84\x2a\xad\x2c\xe2\xca\x17" "\x0e\x9c\xf8\x0b\x40\x48\x1c\x11\xe2\x88\x38\xf0\x07\xf4\xc0\x95\x1b\x27" "\x4e\x44\xb2\x91\x40\x3d\x31\x68\xec\xe7\x89\x67\x37\xbb\x5d\x1b\xdb\x3b" "\x6b\xcf\xe7\x23\x39\x33\xbf\x79\x66\xbd\xcf\xf8\xbb\xb3\x2f\x99\x99\x7d" "\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\x88\xef\x7f\xef" "\x07\x2b\xad\x88\xb8\xf5\x7e\x5a\xb0\x14\xf1\x99\xe8\x44\xb4\x23\x16\xca" "\x7a\x39\x22\x16\x96\x97\xf2\xfa\xdd\x88\x78\x3e\x76\x9a\xe3\xb9\x88\xe8" "\xcd\x45\x94\xb7\xdf\xf9\xe7\x5c\xc4\x6b\x11\xf1\xf1\xd9\x88\xad\xed\xf5" "\xd5\x72\xf1\x95\x7d\xf6\xe3\xbb\x7f\xf8\xdb\x6f\x7f\x78\xe6\xad\xbf\xfe" "\xbe\x77\xe9\x3f\x7f\x7c\xd0\x79\x7d\xdc\x7a\x0f\x1f\xfe\xf2\xdf\x7f\x7a" "\x74\xb8\x6d\x06\x00\x00\x80\xa6\x29\x8a\xa2\x68\xa5\x8f\xf9\xe7\xd3\xe7" "\xfb\x76\xdd\x9d\x02\x00\xa6\x22\xbf\xfe\x17\x49\x5e\x7e\xea\xeb\x5f\xfd" "\xe3\xad\x3f\xcf\x52\x7f\xd4\x6a\xb5\x5a\xad\x9e\x42\x5d\x55\x8c\xf6\xa8" "\x5a\x44\xc4\x46\xf5\x36\xe5\x7b\x06\x87\xe3\x01\xe0\x84\xd9\x88\x4f\xea" "\xee\x02\x35\x92\x7f\xa3\x75\x23\xe2\x4c\xdd\x9d\x00\x66\x5a\xab\xee\x0e" "\x70\x2c\xb6\xb6\xd7\x57\x5b\x29\xdf\x56\xf5\xf5\x60\x79\xb7\x3d\x9f\x0b" "\x32\x90\xff\x46\xeb\xc9\xf5\x1d\xe3\xa6\x93\x0c\x9f\x63\x32\xad\xc7\xd7" "\x66\x74\xe2\xd9\x31\xfd\x59\x98\x52\x1f\x66\x49\xce\xbf\x3d\x9c\xff\xad" "\xdd\xf6\x7e\x5a\xef\xb8\xf3\x9f\x96\x71\xf9\xf7\x77\x2f\x7d\x6a\x9c\x9c" "\x7f\x67\x38\xff\x21\xa7\x27\xff\xf6\xc8\xfc\x9b\x2a\xe7\xdf\x3d\x50\xfe" "\x1d\xf9\x03\x00\x00\x00\x00\xc0\x0c\xcb\xff\xff\xbf\x54\xf3\xf1\xdf\xb9" "\xc3\x6f\xca\xbe\x7c\xda\xf1\xdf\xe5\x29\xf5\x01\x00\x00\x00\x00\x00\x00" "\x00\x8e\xda\x61\xc7\xff\x7b\xc2\xf8\x7f\x00\x00\x00\x30\xb3\xca\xcf\xea" "\xa5\x5f\x9f\xdd\x5b\x36\xee\xbb\xd8\xca\xe5\x37\x5b\x11\xcf\x0c\xad\x0f" "\x34\x4c\xba\x58\x66\xb1\xee\x7e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\x93\x74\x77\xcf\xe1\xbd\xd9\x8a\xe8\x45\xc4\x33\x8b\x8b\x45\x51\x94" "\x3f\x55\xc3\xf5\x41\x1d\xf6\xf6\x27\x5d\xd3\xb7\x1f\x9a\xac\xee\x27\x79" "\x00\x00\xd8\xf5\xf1\xd9\xa1\x6b\xf9\x5b\x11\xf3\x11\x71\x33\x7d\xd7\x5f" "\x6f\x71\x71\xb1\x28\xe6\x17\x16\x8b\xc5\x62\x61\x2e\xbf\x9f\xed\xcf\xcd" "\x17\x0b\x95\xcf\xb5\x79\x5a\x2e\x9b\xeb\xef\xe3\x0d\x71\xb7\x5f\x94\xbf" "\x6c\xbe\x72\xbb\xaa\x49\x9f\x97\x27\xb5\x0f\xff\xbe\xf2\xbe\xfa\x45\x67" "\x1f\x1d\x3b\x22\xbd\xf4\xd7\x1c\xd3\x5c\x53\xd8\x00\x90\xec\xbe\x1a\x6d" "\x79\x45\x3a\x65\x8a\xe2\xdc\xb8\x37\x1f\x30\xc0\xfe\x7f\x0a\x2d\xc5\x52" "\xdd\x8f\x2b\x66\x5f\xdd\x0f\x53\x00\x00\x00\xe0\xf8\x15\x45\x51\xb4\xd2" "\xd7\x79\x9f\x4f\xc7\xfc\xdb\x75\x77\x0a\x00\x98\x8a\xfc\xfa\x3f\x7c\x5c" "\xe0\x50\x75\x7b\x4c\x7b\xc4\xd1\xfc\x7e\xb5\x5a\xad\x9e\x5a\xbd\xf0\x64" "\xc9\x6c\xf4\x47\xad\x3e\x5c\x5d\x55\x8c\xf6\xa8\x5a\x44\xc4\x46\xf5\x36" "\xe5\x7b\x06\xc3\xf1\x03\xc0\x09\xb3\x11\x9f\xd4\xdd\x05\x6a\x24\xff\x46" "\xeb\x46\xc4\xf3\x75\x77\x02\x98\x69\xad\xba\x3b\xc0\xb1\xd8\xda\x5e\x5f" "\x6d\xa5\x7c\x5b\xd5\xd7\x83\x34\xbe\x7b\x3e\x17\x64\x20\xff\x8d\xd6\xce" "\xed\xf2\xed\x47\x4d\x27\x19\x3e\xc7\x64\x5a\x8f\xaf\xcd\xe8\xc4\xb3\x63" "\xfa\xf3\xdc\x94\xfa\x30\x4b\x72\xfe\xed\xe1\xfc\x6f\xed\xb6\xf7\xd3\x7a" "\x39\x9f\x73\x71\x3c\xf9\x4f\xcb\xb8\xfc\xfb\x3b\x97\xcc\x35\x4f\xce\xbf" "\x33\x9c\xff\x90\xe3\xde\xff\xa7\x65\x33\xda\x23\xf3\x6f\xaa\x9c\x7f\xf7" "\x40\xf9\x77\xe4\x0f\x00\x00\x00\x00\x00\x33\x2c\xff\xff\xff\x92\xe3\xbf" "\x79\x93\x01\x00\x00\x00\x00\x00\x00\xe0\xc4\xd9\xda\x5e\x5f\xcd\xd7\xbd" "\xe6\xe3\xff\x9f\x1b\xb1\x9e\xeb\x3f\x4f\xa7\x9c\x7f\xeb\xa0\xf9\x2f\xa4" "\x79\xf9\x9f\x68\x39\xff\xf6\x50\xfe\x5f\x1e\x5a\xaf\x53\x99\x7f\xfc\xe6" "\xde\xfe\xff\xaf\xed\xf5\xd5\xdf\x3d\xf8\xe7\x67\xf3\x74\xbf\xf9\xcf\xe5" "\x99\x56\x7a\x64\xb5\xd2\x23\xa2\x95\xee\xa9\xd5\x4d\xd3\xc3\x6c\xdd\xd3" "\x36\x7b\x9d\x7e\x79\x4f\xbd\x56\xbb\xd3\x4d\xe7\xfc\x14\xbd\x77\xe2\x4e" "\xdc\x8d\xb5\xb8\x3c\xb0\x6e\x3b\xfd\x3d\xf6\xda\x57\x06\xda\xcb\x9e\xf6" "\x06\xda\xaf\x0c\xb4\x77\x9f\x6a\xbf\x3a\xd0\xde\x4b\xdf\x3b\x50\x2c\xe4" "\xf6\x8b\xb1\x1a\x3f\x89\xbb\xf1\xf6\x4e\x7b\xd9\x36\x37\x61\xfb\xe7\x27" "\xb4\x17\x13\xda\x73\xfe\x1d\xcf\xff\x8d\x54\xe6\x35\x9f\x72\xef\x56\xf2" "\x5f\x4c\xed\xad\xa1\x69\xe9\xf1\x47\xed\xa7\xf6\xfb\xea\x74\xd4\xfd\xdc" "\xb8\xf3\xf9\x5f\x5c\x3e\xfe\xcd\x99\x68\x33\x3a\x4f\xb6\xad\xaa\xdc\xbe" "\x0b\x35\xf4\x67\xe7\x6f\x72\xa6\x1f\x3f\xbb\xbf\x76\xef\xe2\xc3\xdb\x0f" "\x1e\xdc\x5b\x89\x34\x19\x58\x7a\x25\xd2\xe4\x88\xe5\xfd\xbf\xb7\xf3\x33" "\xb7\xf7\xfc\xff\xe2\x6e\x7b\x7e\xde\xaf\xee\xaf\x8f\x3f\xea\x1f\x38\xff" "\x59\xb1\x19\xdd\xb1\xf9\xbf\x58\x99\x2f\xb7\xf7\xe5\x29\xf7\xad\x0e\x39" "\xff\x7e\xfa\xc9\xf9\xbf\x9d\xda\x47\xef\xff\x27\x39\xff\xf1\xfb\xff\x2b" "\x35\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3e\x4d\x51" "\x14\x3b\x97\x88\xde\x88\x88\x6b\xe9\xfa\x9f\xba\xae\xcd\x04\x00\xa6\xeb" "\x46\xbe\xd0\xbb\xd8\x15\x83\xa5\x5a\xad\x56\xab\xd5\xea\x53\x54\x57\x15" "\xa3\xbd\x51\x2d\x22\xe2\x2f\xd5\xdb\x5c\x8b\x88\x9f\x8f\xfa\x65\x00\xc0" "\x2c\xfb\x6f\x44\xfc\xbd\xee\x4e\x50\x1b\xf9\x37\x58\xfe\xbe\xbf\x72\xfa" "\x52\xdd\x9d\x01\xa6\xea\xfe\x07\x1f\xfe\xe8\xf6\xdd\xbb\x6b\xf7\xee\xd7" "\xdd\x13\x00\x00\x00\x00\x00\x00\x00\xe0\xff\x95\xc7\xff\x5c\xae\x8c\xff" "\xfc\x52\x44\x2c\x0d\xad\x37\x30\xfe\xeb\x9b\xb1\x7c\xd8\xf1\x3f\xbb\x79" "\xe6\xc9\x00\xa3\x47\x3c\xd0\xf7\x18\x9b\xed\x7e\xa7\x5d\x19\x6e\xfc\x85" "\xd8\x19\x9f\xfb\xe2\xb8\xf1\xbf\x2f\xc4\xd3\xe3\x7f\xe7\x4b\x25\x3b\xd5" "\xed\x18\xa3\x37\xa1\xbd\x3f\xa1\x7d\x6e\x42\xfb\xfc\xc8\xa5\x7b\x69\x8d" "\xbc\xd0\xa3\x22\xe7\xff\x42\x65\xbc\xf3\x32\xff\xf3\x43\xc3\xaf\x37\x61" "\xfc\xd7\xe1\x31\xef\x9b\x20\xe7\x7f\xa1\xf2\x78\x2e\xf3\xff\xd2\xd0\x7a" "\xd5\xfc\x8b\xdf\xcc\x5c\xfe\x1b\xfb\x5d\x71\x33\xda\x03\xf9\x5f\x7a\xf0" "\xde\x4f\x2f\xdd\xff\xe0\xc3\x57\xef\xbc\x77\xfb\xdd\xb5\x77\xd7\x7e\x7c" "\x75\x65\xe5\xf2\xd5\x6b\xd7\xae\x5f\xbf\x7e\xe9\x9d\x3b\x77\xd7\x2e\xef" "\xfe\x7b\x3c\xbd\x9e\x01\x39\xff\x3c\xf6\xb5\xf3\x40\x9b\x25\xe7\x9f\x33" "\x97\x7f\xb3\xe4\xfc\xbf\x90\x6a\xf9\x37\x4b\xce\xff\x8b\xa9\x96\x7f\xb3" "\xe4\xfc\xf3\xfb\x3d\xf9\x37\x4b\xce\x3f\x7f\xf6\x91\x7f\xb3\xe4\xfc\x5f" "\x4e\xb5\xfc\x9b\x25\xe7\xff\x95\x54\xcb\xbf\x59\xb6\xb6\xd7\xe7\xca\xfc" "\x5f\x49\xb5\xfc\x9b\x25\xef\xff\x5f\x4d\xb5\xfc\x9b\x25\xe7\xff\x6a\xaa" "\xe5\xdf\x2c\x39\xff\x8b\xa9\x96\x7f\xb3\xe4\xfc\x2f\xa5\x7a\x1f\xf9\xfb" "\x7a\xf8\x53\x24\xe7\x9f\x8f\x70\xd9\xff\x9b\x25\xe7\xbf\x92\x6a\xf9\x37" "\x4b\xce\xff\x4a\xaa\xe5\xdf\x2c\x39\xff\xab\xa9\x96\x7f\xb3\xe4\xfc\x5f" "\x4b\xb5\xfc\x9b\x25\xe7\xff\xb5\x54\xcb\xbf\x59\x72\xfe\xd7\x52\x2d\xff" "\x66\xc9\xf9\x7f\x3d\xd5\xf2\x6f\x96\x9c\xff\xf5\x54\xcb\xbf\x59\x72\xfe" "\xdf\x48\xb5\xfc\x9b\x25\xe7\xff\xcd\x54\xcb\xbf\x59\x72\xfe\xaf\xa7\x5a" "\xfe\xcd\x92\xf3\xff\x56\xaa\xe5\xdf\x2c\x39\xff\x6f\xa7\x5a\xfe\xcd\x92" "\xf3\xff\x4e\xaa\xe5\xdf\x2c\x39\xff\x37\x52\x2d\xff\x66\xd9\xfb\xfe\x7f" "\x33\x66\xcc\x98\xc9\x33\x75\x3f\x33\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc3\xc6\x9e\x06\xfc\x7e\x44\x1c\xd1\xe9\xc4\x75\x6f\x23\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\x63\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\xd7\x18" "\xb9\xce\xf2\x0e\xe0\x67\xf6\xe6\xb5\x43\x12\x03\x21\x38\xa9\x81\xb5\x63" "\x8c\x71\x96\xec\xfa\x12\x5f\x68\x5d\x4c\xb8\x36\x40\x29\x90\x50\xe8\x05" "\xdb\xf5\xae\xcd\x82\x6f\x78\xed\x12\x28\x92\x4d\xc3\x25\x12\x46\x45\x15" "\x55\xd3\x0f\x6d\x01\xa1\x36\x52\x55\x61\x55\x7c\xa0\x15\xa5\xf9\x50\xf5" "\xa2\x7e\x28\xed\x07\xfa\xa5\xa2\xaa\x84\xd4\xa8\x0a\x28\xa0\x22\xb5\x85" "\xb2\xd5\xcc\x79\xdf\x77\x67\x66\x67\x67\x66\xbd\xe3\xf5\xd9\x73\x7e\x3f" "\x29\x79\x76\x67\xce\x99\xf3\xce\x99\xf7\x9c\x9d\x67\xd7\xff\x39\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xb3\x6d" "\xaf\x9b\xfd\x74\x2d\xcb\xb2\xfa\x7f\x8d\xff\x6d\xce\xb2\xe7\xd5\xbf\xde" "\x38\xb1\xb9\x71\xdb\xab\x6f\xf5\x08\x01\x00\x00\x80\xd5\xfa\xbf\xc6\xff" "\x9f\xbb\x33\xdd\x70\xb4\x8f\x95\x9a\x96\xf9\xdb\x97\xfe\xe3\x57\x17\x16" "\x16\x16\xb2\xf7\x0c\xff\xce\xe8\xe7\x17\x16\xd2\x1d\x13\x59\x36\xba\x21" "\xcb\x1a\xf7\x45\xd7\xff\xfd\xbd\xb5\xe6\x65\x82\xc7\xb3\xf1\xda\x50\xd3" "\xf7\x43\x3d\x36\x3f\xdc\xe3\xfe\x91\x1e\xf7\x8f\xf6\xb8\x7f\xac\xc7\xfd" "\x1b\x7a\xdc\x3f\xde\xe3\xfe\x25\x3b\x60\x89\x8d\xf9\xef\x63\x1a\x0f\xb6" "\xa3\xf1\xe5\xe6\x7c\x97\x66\x77\x65\xa3\x8d\xfb\x76\x74\x58\xeb\xf1\xda" "\x86\xa1\xa1\xf8\xbb\x9c\x86\x5a\x63\x9d\x85\xd1\x53\xd9\x5c\x76\x26\x9b" "\xcd\xa6\x5b\x96\xcf\x97\xad\x35\x96\xff\xfa\xb6\xfa\xb6\xde\x9c\xc5\x6d" "\x0d\x35\x6d\x6b\x6b\x7d\x86\x7c\xff\x63\x27\xe3\x18\x6a\x61\x1f\xef\x68" "\xd9\xd6\xe2\x63\x46\xdf\x7d\x6d\x36\xf1\x83\xef\x7f\xec\xe4\x1f\x5d\x7a" "\xf6\x9e\x4e\xb5\xe7\x6e\x68\x79\xbc\x7c\x9c\xbb\xb6\xd7\xc7\xf9\x89\x70" "\x4b\x3e\xd6\x5a\xb6\x21\xed\x93\x38\xce\xa1\xa6\x71\x6e\xed\xf0\x9a\x0c" "\xb7\x8c\xb3\xd6\x58\xaf\xfe\x75\xfb\x38\x9f\xeb\x73\x9c\xc3\x8b\xc3\x5c" "\x53\xed\xaf\xf9\x78\x36\xd4\xf8\xfa\x9b\x8d\xfd\x34\xd2\xfc\x6b\xbd\xb4" "\x9f\xb6\x86\xdb\xfe\xfb\xbe\x2c\xcb\xae\x2e\x0e\xbb\x7d\x99\x25\xdb\xca" "\x86\xb2\x4d\x2d\xb7\x0c\x2d\xbe\x3e\xe3\xf9\x8c\xac\x3f\x46\x7d\x2a\xbd" "\x20\x1b\x59\xd1\x3c\xdd\xd6\xc7\x3c\xad\xd7\x99\x1d\xad\xf3\xb4\xfd\x98" "\x88\xaf\xff\xb6\xb0\xde\xc8\x32\x63\x68\x7e\x99\xbe\xfb\xf1\xb1\x25\xaf" "\xfb\x4a\xe7\x69\x54\x7f\xd6\xcb\x1d\x2b\xed\x73\x70\xd0\xc7\x4a\x51\xe6" "\x60\x9c\x17\xdf\x6c\x3c\xe9\x27\x3a\xce\xc1\x1d\xe1\xf9\x7f\x6c\xe7\xf2" "\x73\xb0\xe3\xdc\xe9\x30\x07\xd3\xf3\x6e\x9a\x83\xdb\x7b\xcd\xc1\xa1\xb1" "\xe1\xc6\x98\xd3\x8b\x50\x6b\xac\xb3\x38\x07\xf7\xb4\x2c\x3f\xdc\xd8\x52" "\xad\x51\x9f\xd9\xd9\x7d\x0e\x4e\x5d\x3a\x7b\x61\x6a\xfe\x23\x1f\x7d\xd5" "\xdc\xd9\x13\xa7\x67\x4f\xcf\x9e\xdb\xb7\x67\xcf\xf4\xbe\x03\x07\x0e\x1d" "\x3a\x34\x75\x6a\xee\xcc\xec\x74\xfe\xff\x1b\xdc\xdb\xc5\xb7\x29\x1b\x4a" "\xc7\xc0\xf6\xb0\xef\xe2\x31\xf0\x8a\xb6\x65\x9b\xa7\xea\xc2\x17\x07\x77" "\x1c\x8e\x77\x39\x0e\x37\xb7\x2d\x3b\xe8\xe3\x70\xa4\xfd\xc9\xd5\xd6\xe6" "\x80\x5c\x3a\xa7\xf3\x63\xe3\x91\xfa\x4e\x1f\xbf\x36\x94\x2d\x73\x8c\x35" "\x5e\x9f\xdd\xab\x3f\x0e\xd3\xf3\x6e\x3a\x0e\x47\x9a\x8e\xc3\x8e\x3f\x53" "\x3a\x1c\x87\x23\x7d\x1c\x87\xf5\x65\x2e\xec\xee\xef\x3d\xcb\x48\xd3\x7f" "\x9d\xc6\x70\xb3\x7e\x16\x6c\x6e\x9a\x83\xed\xef\x47\xda\xe7\xe0\xa0\xdf" "\x8f\x14\x65\x0e\x8e\x87\x79\xf1\xaf\xbb\x97\xff\x59\xb0\x35\x8c\xf7\x89" "\xc9\x95\xbe\x1f\x19\x5e\x32\x07\xd3\xd3\x0d\xe7\x9e\xfa\x2d\xe9\xfd\xfe" "\xf8\xa1\x46\xe9\x34\x2f\xef\xad\xdf\x71\xdb\x58\x76\x79\x7e\xf6\xe2\x03" "\x8f\x9d\xb8\x74\xe9\xe2\x9e\x2c\x94\x35\xf1\xc2\xa6\xb9\xd2\x3e\x5f\x37" "\x35\x3d\xa7\x6c\xc9\x7c\x1d\x5a\xf1\x7c\x3d\x3a\xf7\xd2\x27\xee\xed\x70" "\xfb\xe6\xb0\xaf\xc6\x5f\x55\xff\xdf\xf8\xb2\xaf\x55\x7d\x99\xfd\x0f\x74" "\x7f\xad\x1a\x3f\xdd\x3a\xef\xcf\x96\x5b\xf7\x66\xa1\x0c\xd8\x5a\xef\xcf" "\x4e\x3f\xcd\xeb\xfb\x33\xf5\x92\x5d\xf6\x67\x7d\x99\x4f\x4c\xad\xfe\xbd" "\x78\xea\x4b\x9b\xce\xbf\xa3\xcb\x9c\x7f\x63\xdf\xff\x93\x7c\x7b\xe9\xa1" "\x1e\x1f\x1e\x1d\xc9\x8f\xdf\xe1\xb4\x77\x46\x5b\xce\xc7\xad\x2f\xd5\x48" "\xe3\xdc\x55\x6b\x6c\xfb\xb9\xa9\xfe\xce\xc7\xa3\xe1\xbf\xb5\x3e\x1f\xdf" "\xd5\xe5\x7c\xbc\xa5\x6d\xd9\x41\x9f\x8f\x47\xdb\x9f\x5c\x3c\x1f\xd7\x7a" "\xfd\xb6\x63\x75\xda\x5f\xcf\xf1\x30\x4f\xce\x4c\x77\x3f\x1f\xd7\x97\xd9" "\xb2\x77\xa5\x73\x72\xa4\xeb\xf9\xf8\xbe\x50\x6b\x61\xff\xbf\x32\x74\x0a" "\xa9\x2f\x6a\x9a\x3b\xcb\xcd\xdb\xb4\xad\x91\x91\xd1\xf0\xbc\x46\xe2\x16" "\x5a\xe7\xe9\xbe\x96\xe5\x47\x43\x6f\x56\xdf\xd6\x53\x7b\x6f\x6c\x9e\xee" "\xba\x2f\x7f\xac\xe1\xf4\xec\x16\xad\xd5\x3c\x9d\x68\x5b\x76\xd0\xf3\x34" "\x9d\xaf\x96\x9b\xa7\xb5\x5e\xbf\x7d\xbb\x31\xed\xaf\xe7\x78\x98\x17\x77" "\xed\xeb\x3e\x4f\xeb\xcb\x3c\xbd\x7f\xf5\xe7\xce\x8d\xf1\xcb\xa6\x73\xe7" "\x58\xaf\x39\x38\x3a\x3c\x56\x1f\xf3\x68\x9a\x84\xf9\xf9\x7e\x61\x63\x9c" "\x83\x0f\x64\x27\xb3\xf3\xd9\x99\x6c\xa6\x71\xef\x58\x63\x3e\xd5\x1a\xdb" "\x9a\x7c\xb0\xbf\x39\x38\x16\xfe\x5b\xeb\x73\xe5\x96\x2e\x73\x70\x57\xdb" "\xb2\x83\x9e\x83\xe9\xe7\xd8\x72\x73\xaf\x36\xb2\xf4\xc9\x0f\x40\xfb\xeb" "\x39\x1e\xe6\xc5\x93\x0f\x76\x9f\x83\xf5\x65\x5e\x7f\x70\xb0\xef\x5d\x77" "\x85\x5b\xd2\x32\x4d\xef\x5d\xdb\x7f\xbf\xb6\xdc\xef\xbc\xee\x6d\xdb\x4d" "\x37\xf3\x77\x5e\xf5\x71\xfe\xf5\xc1\xee\xbf\x9b\xad\x2f\x73\xe6\x50\xd7" "\x3e\x73\xc9\x2b\xda\x6b\x3f\xdd\x1f\x6e\xb9\xad\xc3\x7e\x6a\x3f\x7e\x97" "\x3b\xa6\x66\xb2\xb5\xd9\x4f\x5b\xc2\x38\x9f\x3d\xb4\xfc\x7e\xaa\x8f\xa7" "\xbe\xcc\xe7\x0f\xf7\x39\x9f\x8e\x66\x59\x76\xe5\x43\x0f\x35\x7e\xdf\x1b" "\xfe\xbe\xf2\x67\x97\xbf\xf5\xd5\x96\xbf\xbb\x74\xfa\x9b\xce\x95\x0f\x3d" "\xf4\xbd\xdb\x4f\xfd\xcd\x4a\xc6\x0f\xc0\xfa\xf7\x93\xbc\x6c\xca\x7f\xd6" "\x35\xfd\x65\xaa\x9f\xbf\xff\x03\x00\x00\x00\xeb\x42\xec\xfb\x87\x42\x4d" "\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x8f\xff\x2a\x3c\xd1\xff\x03\x00\x00" "\x40\x69\xc4\xbe\x7f\x24\xd4\xa4\x22\xfd\xff\x96\xd7\x3f\x3b\xf7\x93\x2b" "\x59\x4a\xe6\x2f\x04\xf1\xfe\xb4\x1b\x1e\xce\x97\x8b\x19\xd7\xe9\xf0\xfd" "\xc4\xc2\xa2\xfa\xed\x0f\x7d\x79\xf6\x87\x7f\x71\xa5\xbf\x6d\x0f\x65\x59" "\xf6\xe3\x87\x7f\xa3\xe3\xf2\x5b\x1e\x8e\xe3\xca\x4d\x84\x71\x5e\x7f\x43" "\xeb\xed\x4b\x57\xbc\xd2\xd7\xf6\x8f\x3f\x7a\xe5\x87\xe3\x4d\xe3\x88\xbe" "\x10\x1e\x3f\x3e\x9f\x7e\xa7\x41\xa7\x08\xee\x74\x96\x65\x5f\xbf\xf3\xb3" "\x8d\xf1\x4c\xbc\xf7\x5a\xa3\x3e\xfd\xf0\xf1\x46\x7d\xe7\xd5\x27\x1e\xaf" "\x2f\xf3\xdc\xe1\xfc\xfb\xb8\xfe\x33\x2f\xcc\x97\xff\xfd\x10\xfe\x3d\x7a" "\xea\x44\xcb\xfa\xcf\x84\xfd\xf0\x9d\x50\xa7\xdf\xd2\x79\x7f\xc4\xf5\xbe" "\x72\xed\x95\x5b\x0f\xbe\x7b\x71\x7b\x71\xbd\xda\xf6\x3b\x1a\x4f\xfb\xc9" "\xf7\xe5\x8f\x1b\x3f\x27\xe7\x73\x8f\xe7\xcb\xc7\xfd\xbc\xdc\xf8\xff\xf2" "\x33\x4f\x7d\xa5\xbe\xfc\x63\x2f\xef\x3c\xfe\x2b\x43\x9d\xc7\xff\x54\x78" "\xdc\x2f\x87\xfa\x3f\x2f\xc9\x97\x6f\x7e\x0d\xea\xdf\xc7\xf5\x3e\x19\xc6" "\x1f\xb7\x17\xd7\x7b\xe0\x4b\xdf\xe8\x38\xfe\xeb\x9f\xce\x97\xbf\xf0\xc6" "\x7c\xb9\xe3\xa1\xc6\xed\xef\x0a\xdf\xef\x78\xe3\xb3\x73\xcd\xfb\xeb\xb1" "\xda\x89\x96\xe7\x95\xbd\x29\x5f\x2e\x6e\x7f\xfa\x5b\xbf\xd5\xb8\x3f\x3e" "\x5e\x7c\xfc\xf6\xf1\x8f\x1f\xbb\xd6\xb2\x3f\xda\xe7\xc7\xd3\xff\x9c\x3f" "\xce\x54\xdb\xf2\xf1\xf6\xb8\x9d\xe8\xcf\xdb\xb6\x5f\x7f\x9c\xe6\xf9\x19" "\xb7\xff\xd4\xa7\x8e\xb7\xec\xe7\x5e\xdb\xbf\xfe\xce\x67\x5e\x52\x7f\xdc" "\xf6\xed\xdf\xdf\xb6\xdc\x70\xdb\xfa\xed\x9f\xd8\xf4\x07\x9f\xfc\x6c\xc7" "\xed\xc5\xf1\x1c\xfd\xd3\x0b\x2d\xcf\xe7\xe8\x3b\xc2\x71\x1c\xb6\xff\xe4" "\xfb\xc2\x7c\x0c\xf7\xff\xef\xf5\xcf\xb6\x6c\x37\x3a\xfe\x8e\xd6\xf3\x4f" "\x5c\xfe\x0b\x9b\xaf\xb4\x3c\x9f\xe8\xcd\x3f\xc8\xb7\x7f\xfd\x35\xa7\x1b" "\xf5\x3f\x26\x7e\xf8\x7b\xb7\x3d\xef\xf6\x3b\xae\xbe\xac\xbe\xef\xb2\xec" "\x9b\xef\xca\x1f\xaf\xd7\xf6\x4f\xff\xe1\xf9\x96\xf1\x7f\xf1\xee\xdd\x8d" "\xd7\x23\xde\x1f\x33\xfa\xed\xdb\x5f\x4e\xdc\xfe\xc5\x0f\x4f\x9e\x3b\x3f" "\x7f\x79\x6e\xa6\x69\xaf\x36\x3e\x3b\xe7\xad\xf9\x78\x36\x8c\x6f\xdc\x54" "\x1f\xef\x9d\xe1\xdc\xda\xfe\xfd\xb1\xf3\x97\xde\x3f\x7b\x71\x62\x7a\x62" "\x3a\xcb\x26\xca\xfb\x11\x7a\x37\xec\x4b\xa1\x7e\x2f\x2f\x57\x57\xba\xfe" "\xee\x47\xc3\xeb\x79\xef\xef\x7e\x7d\xd3\xce\x7f\xfa\x4c\xbc\xfd\x5f\x1e" "\xc9\x6f\xbf\xf6\x96\xfc\xe7\xd6\x2b\xc2\x72\x9f\x0b\xb7\x6f\xce\x5f\xbf" "\x85\xda\x2a\xb7\xff\xe4\xb6\xbb\x1b\xc7\x77\xed\xe9\xfc\xfb\x96\x1c\xfb" "\x00\x6c\xdd\xf1\x9f\x87\xfa\x5a\x30\x3c\xff\xf6\xf7\x05\x71\xbe\x5f\x78" "\xd1\xfb\x1b\xfb\xa1\x7e\x5f\xe3\xe7\x46\x3c\xae\x57\x39\xfe\x6f\xcf\xe4" "\x8f\xf3\xb5\xb0\x5f\x17\xc2\x27\x33\x6f\xbf\x7b\x71\x7b\xcd\xcb\xc7\xcf" "\x46\xb8\xf6\xae\xfc\x78\x5f\xf5\xfe\x0b\xa7\xb9\xf8\xba\xfe\x71\x78\xbd" "\xdf\xf6\x9d\xfc\xf1\xe3\xb8\xe2\xf3\xfd\x76\x78\x1f\xf3\x8d\x2d\xad\xe7" "\xbb\x38\x3f\xbe\x76\x65\xa8\xfd\xf1\x1b\x9f\xe2\x71\x35\x9c\x4f\xb2\xab" "\xf9\xfd\x71\xa9\xb8\xbf\xaf\x3d\x77\x77\xc7\xe1\xc5\xcf\x21\xc9\xae\xde" "\xd3\xf8\xfe\xb7\xd3\xe3\xdc\xb3\xa2\xa7\xb9\x9c\xf9\x8f\xcc\x4f\x9d\x99" "\x3b\x77\xf9\xb1\xa9\x4b\xb3\xf3\x97\xa6\xe6\x3f\xf2\xd1\x63\x67\xcf\x5f" "\x3e\x77\xe9\x58\xe3\xb3\x3c\x8f\x7d\xa0\xd7\xfa\x8b\xe7\xa7\x4d\x8d\xf3" "\xd3\xcc\xec\x81\xfd\xd9\xf4\xc6\x2c\xcb\xce\x67\xd3\x6b\x70\xc2\xba\x39" "\xe3\xaf\x7f\xd5\xdf\xf8\x2f\x3c\x7a\x72\xe6\xe0\xf4\xce\x99\xd9\x53\x27" "\x2e\x9f\xba\xf4\xe8\x85\xd9\x8b\xa7\x4f\xce\xcf\x9f\x9c\x9d\x99\xdf\x79" "\xe2\xd4\xa9\xd9\x0f\xf7\x5a\x7f\x6e\xe6\xc8\x9e\xbd\x87\xf7\x1d\xdc\x3b" "\x79\x7a\x6e\xe6\xc8\xa1\xc3\x87\xf7\x1d\x9e\x9c\x3b\x77\xbe\x3e\x8c\x7c" "\x50\x3d\x1c\x98\xfe\xe0\xe4\xb9\x8b\xc7\x1a\xab\xcc\x1f\xd9\x7f\x78\xcf" "\x83\x0f\xee\x9f\x9e\x3c\x7b\x7e\x66\xf6\xc8\xc1\xe9\xe9\xc9\xcb\xbd\xd6" "\x6f\xfc\x6c\x9a\xac\xaf\xfd\xeb\x93\x17\x67\xcf\x9c\xb8\x34\x77\x76\x76" "\x72\x7e\xee\xa3\xb3\x47\xf6\x1c\x3e\x70\x60\x6f\xcf\x4f\x03\x3c\x7b\xe1" "\xd4\xfc\xc4\xd4\xc5\xcb\xe7\xa6\x2e\xcf\xcf\x5e\x9c\xca\x9f\xcb\xc4\xa5" "\xc6\xcd\xf5\x9f\x7d\xbd\xd6\xa7\x9c\xe6\xff\x2d\x7f\x3f\xdb\xae\x96\x7f" "\x10\x5f\xf6\xf6\xfb\x0f\xa4\xcf\x67\xad\xfb\xf2\xc7\x97\x7d\xa8\x7c\x91" "\xb6\x0f\x10\x7d\x36\x7c\x16\xcd\xdf\x3f\xff\xc2\xa1\x7e\xbe\x8f\x7d\xff" "\x68\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\x8f\x85\x9a\xe8\xff" "\x01\x00\x00\xa0\x34\x62\xdf\xbf\x21\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11" "\xfb\xfe\xf1\x50\x93\xb2\xf4\xff\xb5\xee\xd1\xc3\x2a\xe7\xff\xe3\x72\xf2" "\xff\xfd\xe4\xff\xf3\xfb\xe5\xff\xab\x95\xff\xbf\xf0\xa1\x3c\x57\xba\xde" "\xf3\xff\x31\x3f\x2f\xff\x5f\x0d\xb7\x38\xff\xbf\xea\xed\xcb\xff\xcb\xff" "\x97\x2f\xff\xdf\x7f\x7e\x7e\xbd\x8f\x5f\xfe\x5f\xfe\x9f\xa5\x8a\x96\xff" "\x8f\x7d\xff\xc6\x2c\x2b\x67\xff\x0f\x00\x00\x00\xa4\xbe\x7f\x53\xa8\x89" "\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\xb7\x85\x9a\xe8\xff\x01\x00\x00\xa0" "\x34\x62\xdf\xff\xbc\x50\x93\x8a\xf4\xff\xf2\xff\x7d\xe5\xff\xf7\xf6\x0a" "\x5c\x2d\xe6\x9f\x7f\x94\xf6\x5e\xb9\xf2\xff\xae\xff\x2f\xff\x9f\xad\xcf" "\xfc\x7f\x7c\x71\xe4\xff\x2b\x63\xc5\xf9\xfb\x77\x3f\xd2\xf2\xad\xfc\x7f" "\x20\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xcf\xaa\x8d\x2e\x7b\xcf\xad\xca" "\xff\xc7\xbe\xff\xf6\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\xbf" "\x23\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x3b\x43\x4d\xf4\xff\x00" "\x00\x00\x50\x1a\xb1\xef\xdf\x1c\x6a\x52\x91\xfe\x5f\xfe\xdf\xf5\xff\xe5" "\xff\xe5\xff\x4b\x9d\xff\x5f\xed\xf5\xff\x9b\x06\x23\xff\xbf\x3e\xb8\xfe" "\x7f\x77\xf2\xff\x3d\xdc\x70\xfe\x7f\x5c\xfe\x7f\x3d\xe6\xff\x47\x07\x3b" "\xfe\x62\xe7\xff\x7b\x0e\x5f\xfe\x9f\x9b\xa2\x68\xd7\xff\x8f\x7d\xff\xf3" "\x43\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x05\xa1\x26\x1b\x6e" "\xd5\x88\x00\x00\x00\x80\x41\x8b\x7d\xff\x0b\x43\x4d\xfc\xfd\x1f\x00\x00" "\x00\x4a\x23\xf6\xfd\x77\x85\x9a\x54\xa4\xff\x97\xff\x97\xff\x97\xff\x97" "\xff\x97\xff\xef\xbc\xfd\xde\xd7\xff\xcf\xbf\x92\xff\x2f\x16\xf9\xff\xee" "\xe4\xff\x7b\x70\xfd\xff\x6a\xe5\xff\x07\x3c\xfe\x62\xe7\xff\x07\x7d\xfd" "\xff\xd1\x37\xb4\xaf\x2f\xff\x4f\x27\x45\xcb\xff\xc7\xbe\xff\x45\xa1\x26" "\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\x7f\x77\xa8\x89\xfe\x1f\x00\x00" "\x00\x4a\x23\xf6\xfd\x2f\x0e\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\x7f" "\x4b\xa8\x49\x45\xfa\x7f\xf9\xff\xc1\xe4\xff\xff\xe1\xc4\xd2\xdb\xe4\xff" "\xe5\xff\x23\xf9\xff\x30\x1f\x4a\x97\xff\xcf\xdd\x58\xfe\x7f\x71\xb7\xc9" "\xff\x0f\x96\xfc\x7f\x77\xf2\xff\x3d\xc8\xff\xcb\xff\xcb\xff\xf7\x97\xff" "\xef\xf0\xe1\x57\xf2\xff\x74\x52\xb4\xfc\x7f\xec\xfb\xef\x09\x35\xa9\x48" "\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x7b\x43\x4d\xf4\xff\x00\x00\x00\x50" "\x1a\xb1\xef\xff\xa9\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\xb7\x86" "\x9a\x54\xa4\xff\x97\xff\x77\xfd\x7f\xf9\xff\x6a\xe5\xff\xef\x1f\x93\xff" "\x2f\x46\xfe\xdf\xf5\xff\x6f\x16\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97\xff" "\x97\xff\xef\xf3\xfa\xff\x4b\xad\x24\xff\xbf\xa1\xd7\x83\x51\x1a\x45\xcb" "\xff\xc7\xbe\xff\x25\xa1\x26\x15\xe9\xff\x01\x00\x00\xa0\x0a\x62\xdf\xff" "\xd2\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x5f\x16\x6a\xa2\xff\x07" "\x00\x00\x80\xd2\x88\x7d\xff\x44\xa8\x49\x45\xfa\x7f\xf9\xff\x72\xe5\xff" "\xff\xe4\xaf\x9e\x7c\x59\x26\xff\x2f\xff\xdf\x63\xfb\x25\xcd\xff\xc7\x69" "\x20\xff\x5f\x71\xf2\xff\xdd\x0d\x28\xff\xff\xa3\x4c\xfe\x5f\xfe\xbf\x03" "\xf9\x7f\xf9\x7f\xd7\xff\xa7\x5d\xd1\xf2\xff\xb1\xef\xdf\x16\x6a\x52\x91" "\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\xdb\x43\x4d\xf4\xff\x00\x00\x00\x50" "\x1a\xb1\xef\xbf\x2f\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x1d\xa1" "\x26\x15\xe9\xff\xe5\xff\xcb\x95\xff\x8f\xe4\xff\xe5\xff\xbb\x6d\xbf\xa4" "\xf9\xff\x44\xfe\xbf\xda\xe4\xff\x3b\x68\x3a\x48\x6f\xe5\xf5\xff\x3b\xfd" "\xac\x6c\x27\xff\x2f\xff\xbf\x9e\xc7\x5f\x8e\xfc\x7f\x7c\xf7\x2b\xff\xcf" "\x60\x14\x2d\xff\x1f\xfb\xfe\x97\x87\x9a\x54\xa4\xff\x07\x00\x00\x80\x2a" "\x88\x7d\xff\xce\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb\x5f\x11\x6a" "\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xae\x50\x93\x8a\xf4\xff\xf2\xff" "\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x9d\xb7\x2f\xff\xbf\x3e\xc9\xff\x77\xb7" "\xd2\xfc\xff\xd8\x00\xf3\xff\xfd\x90\xff\x97\xff\x5f\xcf\xe3\x2f\x47\xfe" "\xdf\xf5\xff\x19\xac\xa2\xe5\xff\x63\xdf\xff\xca\x50\x93\x8a\xf4\xff\x00" "\x00\x00\x50\x05\xb1\xef\xdf\x1d\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\xff" "\x7e\x33\xff\x77\xaf\xfa\x7f\x00\x00\x00\x28\xa3\xd8\xf7\x4f\x86\x9a\x54" "\xa4\xff\x97\xff\x97\xff\xaf\x52\xfe\xbf\x26\xff\x2f\xff\x2f\xff\x5f\x7a" "\xf2\xff\xdd\xdd\xca\xeb\xff\xf7\x43\xfe\xbf\xbc\xf9\xff\xe6\xb7\xd9\x37" "\x8b\xfc\xbf\xfc\x3f\xc5\x53\xb4\xfc\x7f\xec\xfb\x5f\x15\x6a\x52\x91\xfe" "\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x0f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x34" "\x62\xdf\x3f\x15\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\x74\xa8\x49" "\x45\xfa\x7f\xf9\x7f\xf9\xff\x2a\xe5\xff\x5d\xff\x5f\xfe\x5f\xfe\xbf\xfc" "\xe4\xff\xbb\x93\xff\xef\x41\xfe\xdf\xf5\xff\xcb\x96\xff\xcf\x32\xf9\x7f" "\x6e\xa9\xa2\xe5\xff\x63\xdf\xbf\x27\xd4\xa4\x22\xfd\x3f\x00\x00\x00\x54" "\x41\xec\xfb\xf7\x86\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xbf\x2f\xd4" "\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\xfd\xa1\x26\x15\xe9\xff\xe5\xff" "\xe5\xff\x57\x9b\xff\xbf\x43\xfe\x5f\xfe\xbf\x6d\x7b\xf2\xff\x9d\xc9\xff" "\xaf\x0d\xf9\xff\xee\xe4\xff\x7b\x90\xff\x97\xff\x2f\x5b\xfe\xdf\xf5\xff" "\xb9\x25\x16\x4f\x88\x45\xcb\xff\xc7\xbe\xff\xc1\x50\x93\x8a\xf4\xff\x00" "\x00\x00\x50\x05\xb1\xef\x3f\x10\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d" "\xff\xc1\x50\x93\xd0\xff\x77\xfa\x77\xdd\x00\x00\x00\xc0\xfa\x12\xfb\xfe" "\x43\xa1\x26\x15\xf9\xfb\xbf\xfc\x7f\x49\xf2\xff\xbf\xf9\x77\x2d\xdb\x76" "\xfd\x7f\xf9\xff\x6e\xdb\x1f\x4c\xfe\x7f\xa3\xfc\x7f\xa8\xf2\xff\xc5\x52" "\xd2\xfc\x7f\xfb\x61\x71\xc3\xe4\xff\x7b\x90\xff\x97\xff\x97\xff\x97\xff" "\x67\xa0\x8a\x96\xff\x8f\x7d\xff\xe1\x50\x93\x8a\xf4\xff\x00\x00\x00\x50" "\x05\xb1\xef\x7f\x75\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x3f\x1d" "\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xcf\x84\x9a\x54\xa4\xff\x97" "\xff\x2f\x49\xfe\xbf\x8d\xfc\xbf\xfc\x7f\xb7\xed\xbb\xfe\xbf\xfc\x7f\x99" "\x95\x34\xff\x3f\x30\xa5\xca\xff\x0f\xc9\xff\xcb\xff\x17\x6b\xfc\xf2\xff" "\xf2\xff\x2c\x75\xf3\xf3\xff\xf1\xab\xfe\xf2\xff\xb1\xef\x3f\x12\x6a\x52" "\x91\xfe\x1f\x00\x00\x00\xaa\x20\xf6\xfd\x3f\x1b\x6a\xa2\xff\x07\x00\x00" "\x80\xd2\x88\x7d\xff\x6b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x3f" "\x1a\x6a\x52\x91\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x5f\xfe\xff\xe6\xe4\xff\x5f" "\x93\xb5\x2b\x62\xfe\xbf\x3e\x79\xe4\xff\xcb\x45\xfe\xbf\xbb\x52\xe5\xff" "\x5d\xff\x5f\xfe\xbf\x60\xe3\xbf\xb5\xf9\xff\x8f\x67\x59\x26\xff\x4f\xf1" "\x14\xed\xfa\xff\xb1\xef\x7f\x6d\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82" "\xd8\xf7\x3f\x14\x6a\xa2\xff\x07\x00\x00\x80\xd2\x88\x7d\xff\xeb\x42\x4d" "\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f\x7d\xa8\x49\x45\xfa\x7f\xf9\x7f" "\xf9\x7f\xf9\x7f\xf9\x7f\xd7\xff\xef\xbc\x7d\xf9\xff\xf5\x49\xfe\xbf\x3b" "\xf9\xff\x1e\xe4\xff\xe5\xff\xd7\x6d\xfe\xdf\xf5\xff\x29\xa6\xa2\xe5\xff" "\x63\xdf\xff\x86\x50\x93\x8a\xf4\xff\x00\x00\x00\x50\x05\xb1\xef\x7f\x63" "\xa8\x89\xfe\x1f\x00\x00\x00\x4a\x23\xf6\xfd\x6f\x0a\x35\xd1\xff\x03\x00" "\x00\x40\x69\xc4\xbe\xff\xcd\xa1\x26\x15\xe9\xff\xe5\xff\xe5\xff\xe5\xff" "\xe5\xff\xe5\xff\x3b\x6f\x5f\xfe\x7f\x7d\x92\xff\xef\x4e\xfe\xbf\x07\xf9" "\x7f\xf9\x7f\xf9\x7f\xf9\x7f\x06\xaa\x68\xf9\xff\xd8\xf7\xff\x5c\xa8\x49" "\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\x3f\x1c\x6a\xa2\xff\x07\x00\x00" "\x80\xd2\x88\x7d\xff\x5b\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x7f" "\x6b\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xce\xdb" "\x97\xff\x5f\x9f\xe4\xff\xbb\x93\xff\xef\x41\xfe\x7f\x3d\xe6\xff\x47\x8a" "\x32\x7e\xf9\x7f\xf9\x7f\x96\x2a\x5a\xfe\x3f\xf6\xfd\x6f\x0b\x35\xa9\x48" "\xff\x0f\x00\x00\x00\x55\x10\xfb\xfe\x9f\x0f\x35\xd1\xff\x03\x00\x00\x40" "\x69\xc4\xbe\xff\xed\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xff\x42" "\xa8\x49\x45\xfa\x7f\xf9\x7f\xf9\xff\x62\xe5\xff\x17\xae\x34\xaf\x27\xff" "\x2f\xff\x9f\x0d\x2a\xff\x5f\x5f\x49\xfe\xbf\x12\xe4\xff\xbb\x93\xff\xef" "\xa1\x43\xfe\x7f\x43\x71\xf2\xff\xe3\xf2\xff\xc5\x1e\x7f\x59\xf2\xff\x9f" "\xba\x2d\xcb\xe4\xff\x19\x94\xa2\xe5\xff\x63\xdf\xff\x8e\x50\x93\x8a\xf4" "\xff\x00\x00\x00\x50\x05\xb1\xef\x7f\x67\xa8\x89\xfe\x1f\x00\x00\x00\x4a" "\x23\xf6\xfd\xef\x0a\x35\xd1\xff\x03\x00\x00\x40\x69\xc4\xbe\xff\x91\x50" "\x93\x8a\xf4\xff\xf2\xff\x95\xcc\xff\xa7\xa7\x5c\xbc\xfc\xbf\xeb\xff\xcb" "\xff\xbb\xfe\xbf\xfc\xff\xea\xc8\xff\x77\x27\xff\xdf\x83\xeb\xff\xcb\xff" "\xcb\xff\xbb\xfe\x3f\x03\x55\xb4\xfc\x7f\xec\xfb\x1f\x0d\x35\xa9\x48\xff" "\x0f\x00\x00\x00\x55\x10\xfb\xfe\x77\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34" "\x62\xdf\xff\x8b\xa1\x26\xfa\x7f\x00\x00\x00\x28\x8d\xd8\xf7\xbf\x27\xd4" "\xa4\x22\xfd\xbf\xfc\x7f\x25\xf3\xff\x05\xbe\xfe\x7f\xd9\xf2\xff\x23\x2d" "\xf3\xa3\x4a\xf9\xff\xf1\xa6\xd7\x33\xcd\x4b\xf9\x7f\xf9\xff\x35\x20\xff" "\xdf\x9d\xfc\x7f\x0f\xf2\xff\xf2\xff\x45\xce\xff\x87\xd9\xbc\x71\x99\xf5" "\xe5\xff\x29\xa2\xa2\xe5\xff\x63\xdf\xff\xde\x50\x93\x8a\xf4\xff\x00\x00" "\x00\x50\x05\xb1\xef\xff\xa5\x50\x13\xfd\x3f\x00\x00\x00\x94\x46\xec\xfb" "\x7f\x39\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x5f\x09\x35\xa9\x48" "\xff\x2f\xff\x2f\xff\x2f\xff\xef\xfa\xff\xae\xff\xdf\x79\xfb\xf2\xff\xeb" "\x93\xfc\x7f\x77\xf2\xff\x6d\xc6\xda\xbe\x97\xff\x97\xff\x2f\x72\xfe\xbf" "\x07\xf9\x7f\x8a\xa8\x68\xf9\xff\xd8\xf7\xff\x6a\xa8\xc9\xb2\x8d\xdf\xf7" "\xfe\xab\x8f\xa7\x09\x00\x00\x00\x14\x48\xec\xfb\xdf\x17\x6a\x52\x91\xbf" "\xff\x03\x00\x00\x40\x15\xc4\xbe\xff\x58\xa8\x89\xfe\x1f\x00\x00\x00\x4a" "\x23\xf6\xfd\xc7\x43\x4d\x2a\xd2\xff\xcb\xff\xb7\xe7\xff\xe3\x15\x55\xe5" "\xff\xe5\xff\xe5\xff\xe5\xff\xe5\xff\xd7\xa3\xc1\xe5\xff\x5f\x7c\x7b\x96" "\xc9\xff\x97\x3e\xff\xdf\x4e\xfe\x5f\xfe\x5f\xfe\x5f\xfe\x9f\x81\x2a\x5a" "\xfe\x3f\xf6\xfd\x27\x42\x4d\x2a\xd2\xff\x03\x00\x00\x40\x15\xc4\xbe\xff" "\xd7\x42\x4d\xf4\xff\x00\x00\x00\x50\x1a\xb1\xef\x3f\x19\x6a\xa2\xff\x07" "\x00\x00\x80\xd2\x88\x7d\xff\x4c\xa8\x49\x45\xfa\xff\x5b\x98\xff\x1f\x2d" "\x66\xfe\xdf\xf5\xff\x6f\x34\xff\xff\x63\xf9\x7f\xf9\xff\x40\xfe\xbf\x33" "\xf9\xff\xb5\xe1\xfa\xff\xdd\xc9\xff\xf7\x20\xff\x2f\xff\x5f\x92\xfc\x7f" "\xfd\x7b\xf9\x7f\x8a\xa0\x68\xf9\xff\xd8\xf7\xcf\x86\x9a\x54\xa4\xff\x07" "\x00\x00\x80\x12\x4b\xbf\x0e\x8e\x7d\xff\xa9\x50\x13\xfd\x3f\x00\x00\x00" "\x94\x46\xec\xfb\x4f\x87\x9a\xe8\xff\x01\x00\x00\xa0\x34\x62\xdf\xff\xfe" "\x50\x93\x8a\xf4\xff\xae\xff\x7f\x0b\xf3\xff\x71\x37\x97\x24\xff\x9f\xc9" "\xff\xaf\x20\xff\x3f\xd2\xb2\xbc\xfc\x7f\x4e\xfe\x5f\xfe\x7f\x10\xe4\xff" "\xbb\x93\xff\xef\x41\xfe\x5f\xfe\xbf\x24\xf9\x7f\xd7\xff\xa7\x28\x8a\x96" "\xff\x8f\x7d\xff\x5c\xa8\x49\x45\xfa\x7f\x00\x00\x00\xa8\x82\xd8\xf7\x7f" "\x20\xd4\x44\xff\x0f\x00\x00\x00\xa5\x11\xfb\xfe\x0f\x86\x9a\xe8\xff\x01" "\x00\x00\xa0\x34\x62\xdf\x7f\x26\xd4\xa4\x22\xfd\xbf\xfc\xbf\xeb\xff\x57" "\x3d\xff\xff\xff\xec\xdd\xc7\x93\x5e\x67\x95\xc7\xf1\xd7\x1e\xc5\xd5\xcc" "\xfc\x07\xb3\x9e\x15\x4b\x58\x99\x3f\x81\x2d\x2b\xa8\x62\x6d\xc0\x60\x72" "\x90\x8d\xc9\xd9\xe4\x1c\x4c\xb4\x09\xc6\xe4\x8c\xc9\x39\xe7\x6c\x72\x8e" "\x26\x1a\xaa\x44\xb9\xfb\x9c\xa3\x6e\xf5\xdb\xf7\xaa\xa5\xdb\xfd\xde\xfb" "\x3c\x9f\xcf\xe6\x8c\x85\xe5\xee\x96\x1a\x4f\xfd\x50\x7d\xeb\xb9\x6c\xb5" "\xba\xc6\xfb\xff\xfa\xff\x75\x1f\x5f\xff\xbf\x4c\xfa\xff\x61\xfa\xff\x11" "\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xd6\xff\xe7\xee\xbf\x32\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xdf\x37\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\xef\x17\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xf7\x8f\x5b" "\x3a\xd9\xff\xad\xf7\xff\xc7\xf7\xf9\xdb\xf4\xff\xfa\xff\x9d\xbf\x5e\x1b" "\xef\xff\x4f\xac\xf4\xff\xfa\xff\x35\xfd\xff\xb1\xad\x7f\x2b\xeb\xff\x0f" "\x66\x4f\x7f\x7f\x6c\xfd\xdf\xb7\x5f\x14\xbe\x6f\xff\x7f\x97\xbb\x5e\x7d" "\x6f\xfd\xbf\xfe\x5f\xff\x3f\x48\xff\xaf\xff\xd7\xff\x73\xbe\xb9\xf5\xff" "\xb9\xfb\xaf\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x0f\x88\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x07\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xd5\x71\x4b\x27\xfb\xbf\xf5\xfe\x7f\x3f\x87\xd3\xff\xdf\x6b" "\x57\xe4\xa7\xff\xd7\xff\xef\xfe\xfe\x58\xc8\xfb\xff\xb7\xea\xff\xe7\xd3" "\xff\x7b\xff\xff\x62\x78\xff\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff\xd7" "\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x1f\x14\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x1f\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x0f\x89\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x87\xc6\x2d\x9d\xec\x7f\xfd\xbf\xf7" "\xff\xf5\xff\x4b\xe9\xff\x4f\x78\xff\xff\xbc\xaf\x47\xff\xaf\xff\x5f\x47" "\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff" "\xdc\xfd\x0f\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x0f\x8f\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x47\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x23\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\x5f\x4a\xff\x7f" "\x44\xef\xff\xeb\xff\xf5\xff\x0b\x77\xc3\xea\xdc\xbf\x13\xf4\xff\x7b\xe9" "\xff\x47\x8c\xf4\xff\xab\x95\xfe\x7f\xc8\x05\xf7\xf3\xeb\xbf\xbc\xe5\x7c" "\xfe\xfb\xd0\xff\xeb\xff\xd9\x6b\x6e\xfd\x7f\xee\xfe\x47\xc5\x2d\x77\x5f" "\xad\x4e\x5c\xec\x17\x09\x00\x00\x00\xcc\x4a\xee\xfe\x47\xc7\x2d\x9d\xfc" "\xf9\x3f\x00\x00\x00\xf4\x20\x77\xff\x99\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xbf\x26\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xfd\xc7\xd7\xff\x2f\x93\xf7\xff\x87\x5d\x7a\xff\xff\xff\xff\x73\xe5\x7d" "\xfa\xed\xff\xbd\xff\x3f\xcc\xfb\xff\x53\xf7\xff\x77\x7e\x67\xe8\xff\x59" "\xb6\xb9\xf5\xff\xb9\xfb\xaf\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x8f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xeb\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xb1\x71\x4b\x27\xfb\x5f\xff\xdf\x5a\xff\xff" "\x5f\xbb\x7e\xde\x8e\xfe\x7f\xab\x76\xd1\xff\xeb\xff\x47\xfb\xff\xfc\xc5" "\xd4\xff\xeb\xff\x17\x4a\xff\x3f\xcc\xfb\xff\x23\xb6\xfe\x35\x77\xba\xfe" "\x72\x06\xfd\xff\x75\x3b\x7f\xba\xfe\x7f\xde\x9f\xbf\xf7\xff\xf5\xff\xec" "\x35\xb7\xfe\x3f\x77\xff\xe3\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x09\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xc4\xb8\xa5\x93\xfd\xaf\xff\x6f\xad\xff\xdf" "\xfd\xf3\xbc\xff\xaf\xff\x5f\xf7\xf1\xbd\xff\xaf\xff\x6f\x99\xfe\x7f\x98" "\xfe\x7f\xc4\x32\xde\xff\x3f\x33\xda\xff\x5f\xe4\x77\xcd\xa6\xfb\xf9\x4b" "\xb5\xe9\xcf\x5f\xff\xaf\xff\x67\xaf\xb9\xf5\xff\xb9\xfb\x9f\x14\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x1c\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\x4f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xa7\xc6\x2d" "\x9d\xec\x7f\xfd\xbf\xfe\x7f\x19\xfd\x7f\x7e\x04\xfd\xbf\xfe\xff\xf0\xfb" "\xff\xa4\xff\x5f\x26\xfd\xff\x30\xfd\xff\x88\x65\xf4\xff\xde\xff\x9f\xe9" "\xe7\xaf\xff\xd7\xff\xb3\xd7\xdc\xfa\xff\xdc\xfd\x4f\x8b\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x4f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x67\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x33\xe3\x96\x4e\xf6" "\xbf\xfe\x5f\xff\xbf\x8c\xfe\xdf\xfb\xff\xfa\x7f\xef\xff\xeb\xff\x2f\x8c" "\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5\xff" "\xb9\xfb\xaf\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xcf\x8a\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x67\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x73\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\xd7\x7f\xfc\x4d\xf7\xff\xb7\xdc\xb8\xfd\x7b\xad\xff\x3f\x18\xfd\xff\x30" "\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x33\xea\xff\x77\xfc\xac" "\x53\xab\xe7\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xe7\xc5\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xf3\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x05\x71\x4b\x27\xfb\x5f\xff\x3f\x9b\xfe\x7f\x2b\xe7\x6b\xab" "\xff\x3f\xbd\x5a\xad\xf4\xff\xab\x4e\xfb\xff\xd3\x3b\x7e\x3f\xeb\xfb\x52" "\xff\xef\xfd\xff\x23\xa0\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5" "\xff\x4c\x6a\x46\xfd\xff\xd6\x5f\xe7\xee\x7f\x61\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\x1e\xe4\xee\x7f\x51\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf" "\x38\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x12\xb7\x74\xb2\xff\xf5" "\xff\xb3\xe9\xff\xb7\xb4\xd5\xff\x7b\xff\xff\xfc\xef\x8f\x9e\xfa\x7f\xef" "\xff\xef\xa5\xff\x3f\x1a\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\x5f" "\xff\xcf\xa4\xe6\xd6\xff\xe7\xee\x7f\x69\xdc\x74\xe2\xf8\x45\x7f\x89\x00" "\x00\x00\xc0\xcc\xe4\xee\x7f\x59\xdc\xd2\xc9\x9f\xff\x03\x00\x00\x40\x0f" "\x72\xf7\xbf\x3c\x6e\xb1\xff\x01\x00\x00\x60\xa1\xae\xdf\xf3\x23\xb9\xfb" "\x5f\x11\xb7\x74\xb2\xff\xf5\xff\xd3\xf6\xff\x27\x76\xfc\x98\xfe\x5f\xff" "\x7f\xfe\xf7\x87\xfe\x5f\xff\xaf\xff\x3f\x7c\xfa\xff\x61\xfa\xff\x11\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xd6\xff\xe7\xee\x7f\x65\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x5f\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8e\x5b\x3a" "\xd9\xff\xfa\x7f\xef\xff\xeb\xff\xf5\xff\xfa\xff\xf5\x1f\x5f\xff\xbf\x4c" "\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xff\x66\xfb\xff\x93\xe7\xfe\x4f\xfd" "\x3f\x6d\x38\x40\xff\x7f\xf6\xec\xd9\x33\x87\xde\xff\xe7\xee\x7f\x4d\xdc" "\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x6d\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xbf\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1f" "\xb7\x74\xb2\xff\xf5\xff\x07\xec\xff\x8f\xaf\xff\xe7\x2d\xae\xff\xcf\x6f" "\xf5\x65\xf5\xff\xd7\xac\x56\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\x4c\xff\x3f" "\x4c\xff\x3f\x42\xff\xaf\xff\xf7\xfe\xbf\xfe\x9f\x49\xcd\xed\xfd\xff\xdc" "\xfd\x37\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x9b\xe2\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x0d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xc6\xb8\xa5\x93\xfd\xaf\xff\xf7\xfe\xff\x82\xfa\x7f\xef\xff\xeb" "\xff\x77\x7d\x3d\x0b\xeb\xff\xef\x58\xe9\xff\x8f\xc4\x22\xfa\xff\xd3\xfb" "\x7f\xfc\xb9\xf7\xff\xd7\xea\xff\xf5\xff\x03\xba\xeb\xff\xef\x71\xb7\x5d" "\x7f\xa9\xff\xd7\xff\xb3\xd7\xdc\xfa\xff\xdc\xfd\x6f\x8a\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x2d\x71\xd3\xb1\x4e" "\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xd7\x7f\xfc\x23\x7e\xff\xff" "\xc4\x6a\xb5\xd2\xff\x4f\x60\x11\xfd\xff\x80\xb9\xf7\xff\xd3\xbc\xff\x7f" "\xfe\x7f\xcb\xcf\xd1\xff\xeb\xff\x97\xfc\xf9\xeb\xff\xf5\xff\xec\x35\xb7" "\xfe\x3f\x77\xff\x2d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xad" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xb6\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\x7f\x7b\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xe6\xfb\xff\x6b\x17\xd1\xff\x7b\xff\x7f\x22\xfa\xff\x61\xf3\xe8\xff\xf7" "\xa7\xff\xd7\xff\x2f\xf9\xf3\xd7\xff\xeb\xff\xb9\x70\x9b\xea\xff\x73\xf7" "\xbf\x23\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xbf\x33\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x37\xc7\x2d\x9d\xec\x7f\xfd\xbf\xfe\xff\x20\xfd\x7f\x7e\x9e\xfa\xff" "\xb6\xfa\xff\x93\xb3\xeb\xff\x4f\xed\xfa\xe7\x75\xf2\xfe\xbf\xfe\x7f\x22" "\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\xff\x7a\xfd\x3f\x53\x9a\xdb" "\xfb\xff\xef\xde\xfa\x59\xa7\x56\xef\x89\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\xef\x8d\x5b\xff\xd3\xad\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\xbe\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x7f\xdc\xd2\xc9\xfe\xd7" "\xff\xeb\xff\xbd\xff\xaf\xff\x6f\xfe\xfd\x7f\xfd\x7f\x57\xf4\xff\xc3\xf4" "\xff\x23\xf4\xff\xfa\x7f\xfd\xbf\xf7\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\x1f" "\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x1f\x8c\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x0f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xad\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xdb\xbf\x87" "\xfa\xff\x36\xe8\xff\x87\x1d\x4d\xff\x7f\x5a\xff\xaf\xff\xaf\x7e\xfe\xb2" "\xf8\x6f\x81\xfe\x5f\xff\x3f\xf6\xf3\x69\xd3\xdc\xfa\xff\xdc\xfd\x1f\x8e" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x1f\x89\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x8f\xc6\x2d\xf6\x3f\x00\x00\x00\x2c\xd2\xb1\x35\x3f" "\x96\xbb\xff\x63\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37\xde" "\xff\xc7\x3f\xd6\xfb\xff\xfa\xff\x29\x1c\x4d\xff\x7f\x55\xfe\xf6\x6f\x77" "\xe2\xf9\x4d\xa1\xff\xf7\xfe\x7f\xe8\xa7\xff\xff\xbf\x5d\x7f\xb5\xb4\xf7" "\xff\xcf\xff\xff\x5f\xfa\x7f\xfd\x3f\xd3\x9b\x5b\xff\x9f\xbb\xff\xe3\x71" "\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x13\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xc9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x54" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x8d\xf7\xff\xf1\x9f\xeb" "\xff\xf5\xff\x53\xf0\xfe\xff\x30\xfd\xff\x08\xfd\xff\x46\xdf\xcf\x5f\xfa" "\xe7\xaf\xff\xd7\xff\xb3\xd7\xdc\xfa\xff\xdc\xfd\x9f\x8e\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\x9f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\xcf\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x63\x6b\xf7\x67\x5c\xd6\xe1\xfe" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xfa\x8f\xaf\xff\x5f\x26\xfd\xff" "\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x3f\xb7" "\xf5\xb3\x4e\xad\x3e\x1f\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf" "\x10\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x8c\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x2f\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\xff\x48\xfb\xff" "\xff\x3d\xb1\xfd\x1f\x1c\xb8\xff\x3f\x7b\xf6\xec\x19\xfd\xbf\xfe\x7f\xf7" "\xd7\x73\xae\xff\xbf\x6d\x19\xfd\xff\x4d\xfa\xff\xa3\xa0\xff\x1f\xa6\xff" "\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\x2f\xc7" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xaf\xc4\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x57\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6b" "\x71\x4b\x27\xfb\x5f\xff\x3f\x83\xfe\xff\x54\x47\xfd\xbf\xf7\xff\xf5\xff" "\xde\xff\xd7\xff\x1f\x32\xfd\xff\x30\xfd\xff\x88\x16\xfb\xff\x53\x17\xfe" "\xe5\x6f\xba\x9f\xbf\x54\x9b\xfe\xfc\xf5\xff\xfa\x7f\xf6\x9a\x5b\xff\x9f" "\xbb\xff\xeb\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x1b\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcd\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xff\x56\xdc\xd2\xc9\xfe\xd7\xff\x1f\x5d\xff\x7f\xe7\xaf\x5d\x2f" "\xef\xff\x9f\x5e\xad\xff\xfc\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xb0\xe9\xff" "\x87\xe9\xff\x47\xb4\xd8\xff\x1f\xc0\xa6\xfb\xf9\xa5\x7f\xfe\xfa\x7f\xfd" "\x3f\x7b\xcd\xad\xff\xcf\xdd\xff\xed\xb8\x65\xf7\xf0\x3b\x7e\xb0\xaf\x12" "\x00\x00\x00\x98\x93\xdc\xfd\xdf\x89\x5b\x3a\xf9\xf3\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\xef\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xf7\xe2\x96" "\x4e\xf6\xbf\xfe\x7f\x06\xef\xff\x37\xd8\xff\x7b\xff\x7f\xfd\xf7\x87\xfe" "\x7f\xd6\xfd\xff\xe5\xfa\xff\x36\xe8\xff\x87\xe9\xff\x47\xe8\xff\xf5\xff" "\xfa\xff\x89\xfa\xff\xfc\x6e\xd6\xff\xf7\x6e\x6e\xfd\x7f\xee\xfe\xef\xc7" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1f\xc4\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x0f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xb6" "\xb8\x65\xc7\xfe\x5f\xd7\x76\xb7\x42\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\xeb\x3f\xbe\xfe\x7f\x99\xf4\xff\xc3\x2e\xb4\xff\x3f\xb9\xba\xb4\xfe\x3f" "\xe9\xff\xf5\xff\xfa\xff\x5e\xfb\x7f\xef\xff\xb3\x6d\x6e\xfd\x7f\xee\xfe" "\x1f\xc5\x2d\xfe\xfc\x1f\x00\x00\x00\x16\xe7\xf8\x3e\x3f\x9e\xbb\xff\xc7" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x93\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x69\xdc\x72\xfb\xe5\x9b\xfa\x94\x8e\x94\xfe\x5f\xff" "\xaf\xff\xd7\xff\xeb\xff\xd7\x7f\x7c\xfd\xff\x32\xe9\xff\x87\x79\xff\x7f" "\x84\xfe\x7f\x8a\x7e\xfe\x0a\xfd\x7f\x1b\xfd\xff\x6a\xa5\xff\xe7\xd2\xcd" "\xad\xff\xcf\xdd\xff\xb3\xb8\xc5\x9f\xff\x03\x00\x00\x40\x33\x72\xf7\xff" "\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x11\xb7\xd8\xff\x00\x00" "\x00\xd0\x8c\xdc\xfd\xbf\x8c\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x25\xf6\xff" "\x5b\x69\xa6\xfe\x7f\x9b\xfe\x7f\x9b\xfe\x7f\x3d\xfd\xff\xd1\xd0\xff\x0f" "\xd3\xff\x8f\xd0\xff\x7b\xff\x5f\xff\xef\xfd\x7f\x26\x35\xb7\xfe\x3f\x77" "\xff\xaf\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xaf\xe3\x16\xfb" "\x1f\x00\x00\x00\x9a\x91\xbb\xff\x37\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xdb\xb8\xa5\x93\xfd\xbf\xb1\xfe\x3f\x7e\xa9\xf5\xff\x8b\xef\xff" "\xbd\xff\xaf\xff\xd7\xff\xeb\xff\x67\x45\xff\x3f\x4c\xff\x3f\x42\xff\xaf" "\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\xbf\x8b\x5b\x3a\xd9\xff" "\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x3f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x1f\xe3\x96\x4e\xf6" "\x7f\xf6\xff\xd9\xd7\x79\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\xb7\xe9\xff" "\x97\x49\xff\x3f\x4c\xff\xbf\x5e\xfd\x46\xe9\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x93\x9a\x5b\xff\x9f\xbb\xff\x4f\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90" "\xbb\xff\xcf\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x7b\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\xff\x25\x6e\xe9\x64\xff\x6f\xec\xfd\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xd7\xaf\xaa\xfe\x7f\x3a\xfa\xff\x61\x9b" "\xec\xff\xef\xf9\xdf\xe3\x1f\xd6\xfb\xff\x1b\xef\xff\xf3\x53\xd0\xff\xeb" "\xff\xf5\xff\x4c\x62\x6e\xfd\x7f\xee\xfe\xbf\xc6\x2d\x9d\xec\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\xbf\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xdf" "\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f\x71\x4b\x27\xfb\x7f\xa4" "\xff\x3f\x59\x7f\xa3\xfe\x7f\x90\xfe\x7f\xf7\xe7\xaf\xff\x5f\xff\xfd\xa1" "\xff\xd7\xff\xeb\xff\x0f\x9f\xfe\x7f\x98\xf7\xff\x47\xe8\xff\xbd\xff\xaf" "\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\xff\x19\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\xef\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x7f" "\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbf\xe3\x96\x4e\xf6\xbf\xf7" "\xff\x97\xd4\xff\x5f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x11\xfa\xff" "\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\xe6\xd6\xff\xe7\xee" "\xff\x4f\x00\x00\x00\xff\xff\x74\x6c\x44\x1d", 25121); syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x20000040, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x20108c0, /*opts=*/0x20006780, /*chdir=*/0xfe, /*size=*/0x6221, /*img=*/0x2000cd80); memcpy((void*)0x20000080, "./file1\000", 8); res = syscall(__NR_open, /*file=*/0x20000080ul, /*flags=O_NONBLOCK|O_NOFOLLOW|O_NOATIME|O_DIRECT|O_CREAT|0x2002*/ 0x66842ul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint64_t*)0x20000240 = 0x20000000; memset((void*)0x20000000, 133, 1); *(uint64_t*)0x20000248 = 0xffffffe4; syscall(__NR_pwritev2, /*fd=*/r[0], /*vec=*/0x20000240ul, /*vlen=*/1ul, /*off_low=*/0x1400, /*off_high=*/0, /*flags=*/0ul); memcpy((void*)0x2000c380, "./file0\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000c380ul, /*flags=O_CLOEXEC*/ 0x80000, /*mode=*/0); if (res != -1) r[1] = res; memcpy((void*)0x20000040, ".\000", 2); *(uint64_t*)0x20000080 = 0; *(uint64_t*)0x20000088 = 0; *(uint64_t*)0x20000090 = 0; res = syscall(__NR_openat2, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20000040ul, /*how=*/0x20000080ul, /*size=*/0x18ul); if (res != -1) r[2] = res; memcpy((void*)0x20000080, "./file1\000", 8); memcpy((void*)0x200000c0, "./file0\000", 8); syscall(__NR_renameat2, /*oldfd=*/r[2], /*old=*/0x20000080ul, /*newfd=*/r[1], /*new=*/0x200000c0ul, /*flags=*/0ul); memcpy((void*)0x20000400, "./file1\000", 8); syscall(__NR_mkdir, /*path=*/0x20000400ul, /*mode=*/0ul); memcpy((void*)0x20000000, "./bus\000", 6); syscall(__NR_mkdir, /*path=*/0x20000000ul, /*mode=*/0ul); memcpy((void*)0x200000c0, "./bus\000", 6); memcpy((void*)0x20000080, "overlay\000", 8); memcpy((void*)0x20000400, "workdir", 7); *(uint8_t*)0x20000407 = 0x3d; memcpy((void*)0x20000408, "./bus", 5); *(uint8_t*)0x2000040d = 0x2c; memcpy((void*)0x2000040e, "lowerdir", 8); *(uint8_t*)0x20000416 = 0x3d; memcpy((void*)0x20000417, "./file0", 7); *(uint8_t*)0x2000041e = 0x2c; memcpy((void*)0x2000041f, "upperdir", 8); *(uint8_t*)0x20000427 = 0x3d; memcpy((void*)0x20000428, "./file1", 7); *(uint8_t*)0x2000042f = 0x2c; *(uint8_t*)0x20000430 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000c0ul, /*type=*/0x20000080ul, /*flags=*/0ul, /*opts=*/0x20000400ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-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=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); do_sandbox_none(); return 0; }