// https://syzkaller.appspot.com/bug?id=ef5c7d291bbe0e188ef011cd311245a93c1501f0 // 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 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_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20000080, "bcachefs\000", 9); memcpy((void*)0x20000000, "./file1\000", 8); memcpy( (void*)0x20000a40, "\x61\x63\x6c\x2c\x66\x69\x78\x5f\x65\x72\x72\x6f\x72\x73\x3d\x61\x73\x6b" "\x2c\x6e\x6f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x66\x69\x78\x5f\x65\x72" "\x72\x6f\x72\x73\x3d\x6e\x6f\x2c\x72\x65\x63\x6f\x76\x65\x72\x79\x5f\x70" "\x61\x73\x73\x5f\x6c\x61\x73\x74\x3d\x63\x68\x65\x63\x6b\x5f\x65\x78\x74" "\x65\x6e\x74\x73\x2c\x6e\x6f\x72\x65\x63\x6f\x76\x65\x72\x79\x2c\x65\x72" "\x72\x6f\x72\x3d\x72\x6f\x2c\x72\x65\x63\x6f\x6e\x73\x74\x72\x75\x63\x74" "\x5f\x61\x6c\x6c\x6f\x63\x2c\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c" "\x66\x73\x63\x6f\x6e\x74\x65\x78\x74\x3d\x72\x6f\x6f\x74\x2c\x66\x73\x6d" "\x61\x67\x69\x63\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x38\x30\x30\x30\x2c\x61\x70\x70\x72\x61\x69\x73\x65\x2c\x73\x75\x62" "\x6a\x5f\x74\x79\x90\x65\x3d\x6e\x6f\x5f\x64\x61\x74\x61\x5f\x69\x6f\x2c" "\x00\xb5\x9b\xa3\xdc\x7b\xbd\x64\xcf\x1c\xa6\x2d\x58\xcc\x2e\xe6\x5d\xce" "\xf1\x1e\x38\x4b\xed\x58\xdb\x42\x3f\x66\x1a\xc4\x75\xe1\xed\xf4\x8e\x97" "\x15\xf1\x25\xf1\xab\x86\x27\x60\x52\x4e\x2c\xbb\x0f\xe6\xfe\x3b\x33\xa7" "\x03\x65\x10\x61\xee\xdf\x21\xfd\xc6\x59\x6e\x7a\x6f\x9c\x3e\x1c\x6e\xea" "\x62\x4e\xa9\xea\x9e\xa6\xfc\x8c\x85\xd3\x20\x09\x9b\x2b\x71\xa4\x48\x25" "\xe9\x90\xec\xba\xce\x06\x7e\x4a\xef\xba\x3e\x86\xef\xc5\xd4\x12\x52\x6b" "\xb7\x82\xa0\xaa\xa2\x91\x89\xc7\xa5\xf0\x28\x06\xba\x48\xa4\x00\x00\x00" "\x00", 325); memcpy( (void*)0x20005cc0, "\x78\x9c\xec\xdd\x7f\x90\x5c\x55\xbd\x20\xf0\x73\xbb\x7b\x32\x9d\x99\x4c" "\x32\x09\xf0\x88\x20\x93\x21\x90\xf7\x78\xf0\x34\x13\x7e\x15\xea\xab\x67" "\xde\xdb\xf7\xf4\x15\xf0\xa8\x58\xbc\xf2\x11\x36\x0a\x03\x99\x60\x34\x09" "\xa9\x24\x08\x04\x94\xe0\x82\x0b\x05\x58\x68\x69\x29\xea\x1f\x68\x21\xb5" "\x68\xb4\xa8\x82\x55\x22\x25\xf2\x63\x13\x56\x50\x8a\xd5\xa5\xb6\x90\x5a" "\xdc\x45\xff\x70\x0b\x91\x94\x40\x96\xb2\x5c\x67\x6b\xa6\xef\xe9\xe9\xb9" "\xd3\x77\x6e\x4f\x4f\x4f\x48\xc2\xe7\x53\xc9\xdc\xbe\xa7\x6f\x7f\xcf\xb9" "\xe7\x9e\xbe\x7d\xbf\xa7\x7b\xa6\x03\x00\x00\x00\x6f\x0b\xfb\x6e\xde\x7e" "\xe0\x82\xe3\xfe\xe9\xa9\xcf\x8c\xbc\x71\xc3\x3f\xff\x70\xf3\x8d\xa1\xb7" "\x3c\x5e\x5e\x8d\x1b\xf4\xa7\xcb\x6b\xde\xaa\x16\x72\x30\x75\x57\x96\x8e" "\x2f\xb3\xe3\xe2\xaf\xae\xfb\xf6\x6f\x06\x2f\xff\x87\x9f\xdc\xdf\xf3\xad" "\x37\xf7\xae\x3f\x71\xc3\x2f\xff\xf1\xa8\xcb\x1f\xfe\xf8\xb9\x7b\xee\xfa" "\xda\x63\xaf\xf7\x3d\xf8\xe7\x97\x8a\xe2\xc6\xf1\x74\xea\xc4\x7a\xf2\x4a" "\x12\x42\xf5\x47\xfb\xbf\xf4\xd9\xbd\x4f\x1f\x3b\x56\x96\x84\x10\xca\x49" "\xff\xae\x10\x16\x27\x4b\x1e\x5b\x9c\x64\x42\x0c\xfd\x31\x84\xb0\x3e\x13" "\x2f\x7a\xe0\x8d\x33\x36\x8c\x2d\x6f\xbc\xad\x7b\x52\xf9\xa2\xcc\x76\xc6" "\xfb\xdb\x5b\x35\x1d\x67\x3b\x0f\x5c\x7d\x5a\x78\xf1\xef\xd7\xde\xf4\xb3" "\x65\xdf\xfb\x6e\xd7\xee\x97\x77\x4d\x6c\x92\x54\x1b\xc6\x53\x08\x0b\x2f" "\x6d\x7c\x7c\x57\x08\x61\x7e\xfa\x7f\x4c\x1c\x6d\x4b\xe3\x83\xd3\xe5\x9a" "\x10\x42\x4f\xc3\xe3\xce\xc9\x69\xcf\xef\xbf\xf0\xd4\x59\x63\xcb\x93\x5a" "\x6c\xff\xca\x9c\xf5\xe3\xd3\xe5\xbc\x74\xd9\x5b\x10\x27\xde\xbf\x3c\xb3" "\x5e\xca\x6c\x97\x5d\x8f\xba\x32\xcb\x9e\x82\xfa\x66\x2b\xaf\x1d\xed\x6e" "\x57\x64\x41\x66\x7d\xe2\x64\xf4\xe5\xa2\xae\x6d\x49\x5e\x3b\x63\xf9\xe2" "\x74\xf9\x83\x74\x79\xea\x0c\xe3\x97\xe3\xff\x24\x94\x92\x50\xa9\x37\x7f" "\x53\x32\x31\x46\x42\xc3\x71\x4b\x42\x32\xbe\x7d\xb5\xbe\x5e\xaa\x1f\xdb" "\x90\xee\x7f\x66\x3d\xc9\xac\x97\x32\xeb\xe5\xae\xcc\x7e\x8d\xd7\x9b\xf6" "\x5e\x39\x49\x26\x97\xc7\xed\x32\xe5\xf1\x74\x5c\x49\xcb\x4f\x6c\x72\xee" "\x6f\x74\x61\x4e\xf9\x3b\xd2\x65\x35\x7d\xa2\xbe\x19\xd7\x43\xf6\x46\x4d" "\xef\x94\x1b\xf5\xfd\x1a\x17\xdb\xb5\x7f\x9a\xb6\x1c\x0c\xa5\x86\x73\x50" "\xb3\xf2\xfa\x81\x4f\x0f\xc6\xd8\xee\x8c\x8e\x8e\x8e\xf6\x26\x4b\xa6\x3c" "\x66\xb4\x89\x78\xdf\xde\xb5\xb7\xaf\x28\xaf\x7b\x7c\x5f\x7f\x4e\x3b\x92" "\xfb\x93\x34\x7e\x32\x5e\xe7\x4c\xe3\xef\xfc\xe9\xe2\x05\x1f\xfd\xce\xad" "\x57\x2d\xcd\x8b\x7f\x69\x29\x8d\x5f\x6a\x2b\xfe\xaf\xce\x7b\xe6\xd5\x8b" "\x6f\xfd\xe6\x57\x73\xe3\xdf\x19\xe3\x97\xdb\x8a\x7f\xfa\x23\x3d\xaf\x9c" "\xf7\xc4\xcd\xcb\x73\xfb\x67\x7f\xec\x9f\x4a\x5b\xf1\x87\x5f\x7a\xf2\x8e" "\x65\x47\x5f\xb6\x3b\xb7\xfd\x77\xc7\xf8\xd5\xb6\xe2\xaf\xde\xf3\x4c\x77" "\xdf\x81\x47\x1e\xcd\x6d\xff\x50\xec\x9f\xf9\x6d\xc5\x7f\xe1\x7d\x1f\xf8" "\xf5\x7d\xcf\x3d\xf4\x72\x6e\xfc\x10\xe3\xf7\xb4\x15\x7f\xdd\x9e\xad\x9f" "\xeb\x1e\x38\x70\x4a\x6e\xfc\x47\x63\xff\xf4\xb6\x37\x7e\x5e\xdb\x7d\xf6" "\xf3\x03\x03\xbf\x1d\xcc\x8b\xff\x6c\x8c\xdf\xd7\x56\xfc\x7b\x77\xdd\xf5" "\xde\x7b\x16\xdd\x76\x6e\xee\xf1\x5d\x13\xfb\xa7\xbf\xad\xf8\xe7\x9f\xfc" "\xf0\x4d\x0b\x0e\x3c\x74\x42\xde\xb9\x33\xb9\xbb\x53\xaf\x9c\x00\x6f\x4f" "\x47\xa5\xd7\x58\xb7\xa4\xeb\xed\xe6\x99\xb3\xd5\x90\x2f\x7c\x65\xb0\x52" "\xbb\x0e\x5c\x90\xfe\xef\x0b\x5f\xea\x5c\x45\x99\x8b\xcf\xb1\x7a\x16\x76" "\x2e\x3a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x8c\x3b\xe6\xb4\xff\xfa\xc1\xff\xfd\xe1\xfe\x57\x2a\xe9\x7a" "\x77\x7a\xe3\x85\x52\x6d\x19\xcb\xe7\x85\x90\xcc\x0f\x21\x6c\xdf\x31\xbc" "\x6d\xc7\xc6\x2d\x57\x0c\x7e\xfc\xca\xab\xb6\x6d\x19\xde\x34\x38\xbc\x63" "\x70\x64\xcb\x8e\x6d\xd7\x0e\x9e\xf9\x37\x83\xdb\x46\xb6\x6e\x1a\xbe\x76" "\xec\xde\xa1\x77\x9d\x51\x7b\xdc\x92\x90\xd4\x96\xc9\x09\x53\xea\xee\x1e" "\x1d\x1d\x2d\xf5\x4f\x2e\x8b\xf5\xfd\xbb\x93\x77\xbf\xb8\xe2\x9c\xff\xf3" "\xbb\x10\x86\x8e\xf9\xc5\x40\x25\xb7\xfd\x2b\xef\xda\x7c\xcf\xd1\x4d\x7e" "\x66\x24\xab\x47\xdf\xbf\xf9\xaa\x0b\x7e\x71\xd6\x37\xd2\xfd\xea\x4f\xdb" "\xd5\xdf\xa4\x5d\xa3\xa3\xa3\xa3\x21\xa7\x5d\xbf\xbf\xe8\x4f\xf7\x7c\x61" "\xff\x6f\x4e\x09\x61\xe8\x2f\xa6\x6b\xd7\x93\x2f\xfc\xdd\x8f\x27\x35\x68" "\xbc\x60\x22\x4e\xaa\xd4\x1d\x6a\x0d\xea\x4e\x7a\x9a\xb6\xa3\xde\xea\xb4" "\x3d\xb1\xbf\x2a\x1b\x36\x6e\x1a\x19\x9a\xbe\x7f\xc7\x1e\x5f\xce\xd9\x8f" "\x7f\x7f\xdd\xcb\x7f\xdc\x70\xcd\xe7\xff\x54\xeb\xdf\x6a\xee\x7e\xb4\xd8" "\xbf\xf3\x57\x8f\x6e\x2a\x7d\x79\xed\xf9\xff\xef\xcb\xd7\xd7\x0a\x8a\xda" "\xf5\x56\x1d\xf7\xa2\xfe\x8e\x7b\x11\xdb\x17\xfb\xaf\x9a\xf6\xf7\xc2\x74" "\xbf\x16\xe6\xec\x57\x25\x67\xbf\x6e\xfe\xd9\xa3\xcf\xfd\xe8\xb8\x5b\x5f" "\xdf\x15\x86\x2a\xaf\x2d\x9b\x5a\x77\xd1\x7e\x75\xa5\x03\xa0\x2b\x79\x47" "\x4b\xf5\xc6\x1a\x7a\x92\xc5\x93\xca\xab\xe9\xf6\xf1\x88\xc7\xc7\xad\xdc" "\xb1\x79\xeb\xca\xed\xd7\xee\x7c\xd7\xc6\xcd\xc3\x57\x8c\x5c\x31\xb2\xe5" "\x3d\xab\xce\x5c\x75\xf6\xd0\x59\x67\x9f\xb5\x72\x7c\xcf\x57\x76\x78\xff" "\x63\xfd\x7f\xd9\xe2\xfe\x1f\x9c\xf1\xb4\xe8\x93\xbb\x7e\x10\x7f\xb6\x36" "\x9e\x8a\xda\x55\xd4\x1f\x63\xed\x2a\xee\x8f\xc6\x16\xe5\x3d\xff\x7a\x2e" "\xfc\xec\x17\xdf\x73\xd7\x13\x17\xd4\x0a\x8a\xc6\x79\xdc\xba\x7e\x3e\x49" "\x97\x3d\x63\xc7\x79\x55\x68\x18\x6f\x53\xfb\xaa\xd9\x7e\x15\xf5\x43\x08" "\x61\xb0\x59\x3f\xbc\xfa\xfa\xb9\xe1\xd8\xff\xb1\xf1\xa6\xa2\xf3\x50\xe3" "\x91\x69\xfc\x99\x91\xac\x1e\x7d\x7a\xf9\x1f\xbe\x71\xce\xd7\x97\xfe\x6d" "\xad\xe0\xa0\x9c\xe7\x1b\x1b\xd4\xe6\x79\xbe\xde\xea\x89\xf6\x8c\xf7\x57" "\x35\x3d\x1e\xa3\x87\x68\xff\x76\x87\x72\xba\x5f\xbd\x4d\xdb\xb5\xea\xe9" "\x27\xba\x6e\xdf\xf7\xbb\x4f\xd5\xdb\x37\x6f\x5e\xb8\x66\x78\xc7\x8e\x6d" "\xab\x6a\x3f\x17\xa4\x2d\x5d\x90\x1c\xdf\xb4\x5d\xd9\xd2\xb8\x5f\xcb\xc6" "\x7f\x96\x43\xda\x2d\xa1\x3e\x4c\x9b\x8c\xd7\x31\x5d\xa1\xd6\xbe\xec\xf9" "\x33\x6e\x9e\xed\xd5\xde\xf4\xbe\xde\x64\x49\xd3\xfd\xca\x8a\xf7\xed\x5d" "\x7b\xfb\x8a\xf2\xba\xc7\xf7\xe5\xf5\x74\x72\x7f\xad\xc6\xf9\xa1\xaf\xb6" "\x4c\xde\x99\xb3\xe5\xa6\xcc\x03\xcb\xf5\x06\x37\xab\xff\x50\x7d\xfe\x15" "\x8d\x8f\x81\x0f\x7e\xfd\xc1\x0f\x3f\xf8\xfd\x33\xa7\x8c\x8f\xd3\x6b\x3f" "\x8b\xf6\x2b\xc9\xd9\xaf\xef\x3d\x77\xef\x17\xbf\xf5\xf9\xff\xf8\xfd\xce" "\xed\xd7\x07\xff\xee\x99\xfe\x3f\xfc\xcf\x8f\xad\xa8\x15\x1c\x2e\xe7\x95" "\x7a\xab\xd3\xf6\x24\x8d\xe7\x95\xd3\x43\x28\x7a\xfe\x2d\x0b\xcd\xf7\x23" "\xf7\xf9\x57\x6a\xbe\x3f\x45\xcf\xbf\x6c\x3d\x13\xdb\x37\x8f\x37\x98\x59" "\xef\x0d\xe5\xb6\x9e\xaf\xa7\x3f\xd2\xf3\xca\x79\x4f\xdc\xbc\x3c\xf7\xf9" "\xba\xbf\xd5\xe7\xeb\xf5\x93\xd6\xca\x05\xcf\xd7\x43\x65\xfc\x64\x9f\x5f" "\x49\x65\x72\x3b\xe6\xee\xf9\x35\x69\xa0\x24\xab\x47\x7f\x72\xcb\x51\xbb" "\x1e\xbb\x61\xcd\x71\xb5\x82\xa2\x71\x5d\xdf\xba\xd9\xb8\x3e\xa3\x85\xfc" "\x23\x67\xbf\x7e\x7c\xf1\xf3\x03\x57\x0e\xfe\x87\xff\xde\xb9\xf3\xc6\xb7" "\xff\xe6\x81\x4b\x7e\x39\xbc\xfa\xd3\xb5\x82\xf6\x8f\x7b\x6c\x4b\x67\x8e" "\x7b\x35\xed\xdf\x6a\x4e\xff\xd6\x5b\x1d\xf3\xce\xc6\xfe\x7d\xf7\xe5\x57" "\x6e\x5a\x5f\x2b\x3f\x74\xaf\x7f\xd3\x65\x41\xfe\x13\x4f\x25\xdb\xaf\xdd" "\xf9\x89\xe1\x4d\x9b\x46\xb6\x6d\x6f\x6d\xbf\x5a\x7d\x3d\x8d\xf5\x64\x7b" "\xb9\xdd\xd7\xd3\x78\x76\x5b\x52\xb0\x5f\xa5\x29\xfb\x35\x77\x37\x5a\xe9" "\xaf\x56\x9f\x6f\x69\xfb\xcb\xd9\x18\xed\x3e\xdf\x7a\x43\xd2\xd6\xeb\xc2" "\xce\x9f\x2e\x5e\xf0\xd1\xef\xdc\x7a\x55\xff\x94\x47\xa5\x15\x5d\x5a\x4a" "\xe3\x97\xda\x8a\xff\xab\xf3\x9e\x79\xf5\xe2\x5b\xbf\xf9\xd5\xdc\xf8\x77" "\xc6\xf8\x95\xb6\xe2\x0f\xbf\xf4\xe4\x1d\xcb\x8e\xbe\x6c\x77\x6e\xfc\xbb" "\x93\x34\x7e\xb5\xad\xf8\xab\xf7\x3c\xd3\xdd\x77\xe0\x91\x47\x73\xe3\x0f" "\xc5\xf6\xcf\x6f\x2b\xfe\x0b\xef\xfb\xc0\xaf\xef\x7b\xee\xa1\x97\x73\xe3" "\x87\x18\xbf\xb7\xbd\xfe\x7f\x6d\xf7\xd9\xcf\x0f\x0c\xfc\x36\x37\xfe\xb3" "\x49\x5a\xcf\xd8\x35\x52\x08\x0f\xbc\x71\xc6\x86\xda\x7a\x12\xba\xd2\xe7" "\x5b\x6c\x47\xd7\xa4\x76\x85\xec\x7a\x92\x59\x2f\x65\xd6\xcb\x8d\xeb\xa5" "\xda\x5c\x6b\xbd\x82\x72\x92\x4c\x2e\x8f\xdb\xa5\xe5\x27\x36\xb4\xa5\x99" "\x7f\xcb\x29\x8f\x57\x61\xd5\xa5\xb5\xe5\x9b\x71\x3d\x64\x6f\x4c\x5f\x7e" "\xa8\x29\x35\x9c\xfb\x9b\x95\x17\x5d\xa7\x02\x00\x1c\xe9\xe2\xfb\xff\xf1" "\x1a\x34\xbe\xff\x3f\x92\x5e\x28\xe5\xcf\x34\xc0\x84\xd9\xe6\x61\x4b\x73" "\xe2\xc6\x3c\x6c\x62\x3e\x67\xde\xa4\xfb\x97\xa6\xf1\xe3\xe3\xe3\x3c\xe0" "\xc0\xbb\xc3\xd0\xd8\xf2\xc6\xc1\xda\x85\xfe\x4c\xdf\x47\x88\xcf\x87\xec" "\x3c\x67\xac\xe7\x94\x93\x26\xc7\x68\x77\x9e\xb3\x68\xfe\x7d\x79\x66\x3d" "\xb6\xab\x36\x5f\x5e\x69\xc8\x43\x53\x53\xf3\x9a\x4a\x68\x61\xfe\x7d\x6a" "\x3d\xd3\xcf\xbf\x67\x76\xbf\x78\x7e\x7c\xf0\x96\x29\xcd\x1a\x6c\x98\xb7" "\xca\x1e\xbf\xae\x74\xc6\xac\xd9\xe7\x1d\x32\xed\xad\x8c\x45\xc8\x1b\x1f" "\xd9\x79\xb1\xf8\x79\x8e\x81\x85\x61\xcd\x78\x7d\x2d\x8e\x8f\xec\xe7\x68" "\xe2\x71\xc8\x7e\x8e\x26\xd6\x73\x5c\xe6\xc4\xd9\xee\xe7\x68\x66\x3b\x3e" "\x62\xb3\xa7\x19\x1f\xe3\x4d\x2e\x7e\x7f\x63\xea\xf1\x0b\xd3\xf4\xef\xc4" "\xf1\x6b\x1e\x2d\x7b\xfc\x66\x70\xbc\xab\x63\xdb\xcf\xf5\xfb\xb3\x1d\x98" "\x37\x6c\x7a\x4a\x3b\x78\xf3\x86\x73\xfb\x7e\x98\x79\xc9\x9c\xf8\xe9\x13" "\xec\x50\x9f\x37\x8c\xe5\x71\x3f\x2a\x2d\xce\x27\x7e\x38\xa7\xbc\x53\xf3" "\x89\xf1\x74\x11\xdb\xb5\x7f\x9a\xb6\x1c\x0c\xe6\x13\x81\x23\x55\xcc\xff" "\xe3\x6b\xc4\x58\xfe\x3f\x76\x01\xfe\x7f\x33\xdb\x15\x5d\x87\x66\xaf\x1a" "\x63\xbc\xdc\xcf\x09\x4d\x79\x87\xb7\xa6\x28\xef\x98\xfa\x39\xbd\x9e\xb6" "\x5e\xc7\xd7\xed\xd9\xfa\xb9\xee\x81\x03\xa7\xe4\x5e\xe7\x3c\xda\xea\xe7" "\x7e\xb6\x4e\x5a\xeb\x29\xf8\xdc\x4f\x51\x3f\xae\xc8\xac\x17\xf6\x63\xce" "\x04\x4d\x51\xbe\x97\xad\xa7\xa8\xdf\xb3\x9f\xcb\xe8\x0d\x7d\x6d\xf5\xfb" "\xbd\xbb\xee\x7a\xef\x3d\x8b\x6e\x3b\x37\xb7\xdf\xd7\xd4\x5e\x48\x8b\xfb" "\xfd\x8b\x93\xd6\xfa\x0a\xfa\xfd\x30\xc8\x17\x9a\xc7\x97\x2f\xbc\x2d\xf2" "\x85\xb9\x9e\x3f\x7b\xcb\xf2\x91\xf4\x83\x4f\x73\x95\x8f\xfc\x6b\x4e\xf9" "\x4c\xf3\x91\x9e\x29\x37\xea\xfb\x35\xee\xb0\xcb\x47\xba\x0e\x6e\xbb\x00" "\x80\xc3\x47\xcc\xff\xeb\xef\x9f\xa5\xf9\xff\xff\x8a\x1b\xa4\xd7\x11\x45" "\x79\xeb\xa9\x99\xf5\x18\x2f\x37\x6f\xcd\xb9\x3e\xc9\xcb\x5b\xff\x25\x5d" "\x5e\x93\xd9\xbe\x37\xfd\x8d\x8a\x99\x5e\x37\x9f\x7f\xf2\xc3\x37\x2d\x38" "\xf0\xd0\x09\xb9\x79\xcb\xdd\xad\xe6\xa1\xff\x69\xd2\x5a\x7f\x61\x1e\x3a" "\xbb\xbc\x39\x37\x8f\x58\xd3\x99\xcf\x8b\xe7\xe6\x11\xf5\x3c\x6b\x76\x79" "\x62\x6e\xfb\xeb\x79\xe2\xec\xf2\xf4\xdc\xf8\xf5\x3c\x7d\x76\x79\x74\x6e" "\xff\xd4\xf3\xe8\xd9\xcd\x03\xe4\xc6\xaf\xcf\x03\x1c\xee\x79\x6e\xc1\x7c" "\x5d\xa6\xb2\xb8\xda\xea\x7c\xdd\x11\x9b\x47\xa7\xbf\x3e\x3b\x57\x79\xf4" "\x85\x39\xe5\x33\xcd\xa3\x7b\xa7\xdc\xa8\xef\xd7\x38\x79\x34\x00\xc0\x5b" "\x2b\xe6\xff\xf1\x32\x2e\xe6\xff\x4f\x64\xb6\x9b\xed\xfb\xec\xb9\x79\x41" "\x87\xae\xdb\xb3\x7f\x0f\xa4\x1e\xff\xd9\x83\x95\x57\xce\x75\xde\x37\xd7" "\x79\xeb\x5c\xe7\xf5\x73\x3d\x2f\x51\xcb\x8b\x4b\xe1\x70\xcd\x8b\xe7\x7a" "\x5e\x68\x6e\xe7\xc9\xde\xf6\x79\x71\x5a\xa9\xbc\x18\x00\x80\x43\x59\xcc" "\xff\xe7\xa7\xeb\xf9\xf9\xff\xec\xf2\x93\x66\xf9\x5b\xd7\xa4\xfc\x44\x7e" "\xde\x34\xfe\x11\x96\x9f\x1f\xb1\xef\x5b\xe7\xc4\x3f\x74\xe6\xbf\xe4\xff" "\xf3\x42\xb8\x31\x96\x7b\x5f\xbc\x39\xf9\x3f\x00\xc0\x91\x2d\xe6\xff\xf1" "\xd7\x1e\xe3\xdf\xff\xfb\x2f\xe9\x7a\xf6\xef\xd6\xcb\xd3\x73\xe2\xcb\xd3" "\xe5\xe9\xd3\x8d\x9f\x96\xf3\xf4\xce\xcf\xb3\x05\x9f\x03\x78\x6b\x3f\x1f" "\x3f\x7f\x62\x7b\xf3\x00\x00\x00\xbc\x15\xba\xc6\x33\xa5\xa9\xbf\x67\xff" "\x91\x74\x99\xfd\x3d\xfb\xbc\xdf\xcb\xbf\x38\x67\xfb\x56\x55\xd2\xcb\xe3" "\xcb\x76\x6c\x1b\x19\xb9\xe4\xaa\xad\xeb\x87\x77\x8c\x5c\xb2\xe5\xca\xf5" "\x23\xdb\x2f\xb9\x7a\xdb\xc6\x1d\x3b\x46\xb6\xd4\xb6\x9b\x6d\xde\x98\x9b" "\xb7\xa4\x79\x63\x57\xa8\xa4\xfd\xd1\x7c\xbb\x6c\xde\xb6\x28\xfd\x7b\x08" "\x8b\x72\xfe\x1e\x42\x76\xfb\x18\xf6\xf8\xf1\x1b\x53\xff\x1e\x42\xb6\xda" "\xf9\x05\x7f\x47\x60\xe2\xf8\xb5\xd6\xde\xbc\xe3\x57\x9a\x66\xfb\x66\xe3" "\x23\xef\x78\xe7\xc5\xff\xb7\x9c\xed\xa3\xfa\xf1\xbf\xfc\x63\xa7\x5f\xb2" "\x61\xfb\x25\x1b\xb7\x6c\xdc\xb1\x71\x78\xd3\xc6\x9d\x23\x93\xb7\x1b\xcb" "\x5a\x7b\x66\xf0\xbd\x99\xb1\x5b\x66\xf4\x7d\xa9\x99\x1f\x53\x94\x66\xfe" "\xfd\x9d\x9d\x69\x47\x69\x4a\x3b\xba\xd2\xfe\xc8\xfb\x7e\xf6\x24\xd3\x8e" "\xc5\x69\x4b\x16\xe7\x7d\xff\x41\x4e\xbb\x9f\xfa\x6f\x5f\xf8\xe4\xc9\xa3" "\x7f\xba\x2f\x84\xa1\x63\xca\xef\x9c\x55\xff\x25\xab\x47\xff\xf3\x45\x23" "\xff\xb2\x63\xdf\x2f\xb6\x8e\xb5\xbf\x34\x6d\xfb\xeb\x5b\xa6\xed\x2a\xfa" "\xbe\xd2\xec\xf6\x71\x7f\x2a\x9b\xae\xdc\xbe\xe3\xb4\x0d\x57\x5e\xb5\x65" "\x7d\x6e\xdb\x67\x22\xce\x67\x94\xea\xeb\x73\x34\x9f\x91\x3e\xfd\xcb\x2d" "\xce\x4f\xac\xcb\x29\x9f\xe9\xe7\x14\xca\x53\x6e\x1c\x9a\x5a\x9e\x9f\x00" "\x00\x60\x92\xf8\xfe\x7f\xbc\x9e\x8d\xef\x1f\x7e\x3e\xbd\x80\x8a\xe5\xad" "\xe7\xe9\xb3\x7b\xff\x38\x37\x4f\x1f\x6a\x2d\x4f\xcf\x7e\x2f\x59\x51\x9e" "\x9e\xdd\x3e\xee\x6f\xab\x79\x7a\x75\x96\x79\x7a\xb6\xfe\xa2\x3c\xbd\xd9" "\xf6\xcd\xf2\xf4\xbc\xbc\x3b\x2f\xfe\xbf\xe6\x6c\x3f\x53\xad\x8f\x93\xd9" "\x7d\xce\x23\x77\x9c\x5c\xda\xda\x38\xc9\x7e\x9f\x41\xd1\x38\xc9\x6e\x3f" "\xd3\x71\x92\xcc\x72\x9c\x64\xeb\x2f\x1a\x27\xcd\xb6\x6f\x36\x4e\xf2\x8e" "\x7b\x5e\xfc\x0f\xe5\x6c\x9f\xa7\xf5\xf1\x30\xbb\xcf\xe5\xe4\x8e\x87\x3b" "\x5b\x1b\x0f\x7f\x9d\x59\x2f\x1a\x0f\xd9\xed\x67\x3a\x1e\x4a\xb3\x1c\x0f" "\xd9\xfa\x8b\xc6\x43\xb3\xed\x9b\x8d\x87\xbc\xe3\x9b\x17\xff\x82\x9c\xed" "\x5b\x35\x79\x7c\x8c\x0d\x8c\xf1\x71\x31\x72\xc9\xd5\x57\x6e\xfb\x44\xc3" "\x76\x73\xfd\xfd\x17\x63\x5e\x9c\x55\xfb\xe6\xf6\xfb\x3f\xda\xd5\x7a\xfb" "\xe7\xf6\x73\x5f\x73\xdf\xfe\xb9\xfd\x5c\xd9\xdc\xb7\x7f\x76\x9f\x2b\xcb" "\x6d\xff\xb3\xb3\x9b\x09\x6b\xbd\xfd\x73\xfb\xfd\x2e\xed\x3a\x68\xf3\xb5" "\xe9\x87\xcd\x8a\x3e\x7f\x56\x34\x8f\xbb\x76\xea\x0e\x8c\x9b\xe9\x3c\xee" "\xbc\x29\x37\x0e\x4d\xe6\x71\xe1\xad\x13\xf3\xff\xf8\x76\x4f\xcc\xff\x6f" "\x4b\x97\x9d\x7e\x1b\xa8\x93\xd7\x49\xa3\x8b\x26\x6e\x1f\xbc\xef\x49\xf3" "\x3d\x66\x4d\xe3\x77\xe8\x7b\xcc\x8a\xae\x63\x0e\xfb\xd7\xf3\x54\xd1\xeb" "\xf9\xae\x7b\x27\x6f\xef\xf5\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xc8\xd2\x5d\x59\x3a\xbe\xdc\x77\xf3" "\xf6\x03\x17\x1c\xf7\x4f\x4f\x7d\x66\xe4\x8d\x1b\xfe\xf9\x87\x9b\x6f\xfc" "\xab\xeb\xbe\xfd\x9b\xc1\xcb\xff\xe1\x27\xf7\xf7\x7c\xeb\xcd\xbd\xeb\x4f" "\xdc\xf0\xcb\x7f\x3c\xea\xf2\x87\x3f\x7e\xee\x9e\xbb\xbe\xf6\xd8\xeb\x7d" "\x0f\xfe\xf9\xa5\xc2\xc0\xfd\xe3\x3f\x2b\xa7\xa6\xab\xd5\x10\x92\x57\x92" "\x10\xaa\x3f\xda\xff\xa5\xcf\xee\x7d\xfa\xd8\xb1\xb2\x24\x84\x50\x4e\xfa" "\x77\x85\xb0\x38\x59\xf2\xd8\xe2\x24\x13\x61\xe8\x8f\x21\x84\xf5\xf5\x76" "\x4e\xbe\xf3\x81\x37\xce\xd8\x30\xb6\xbc\xf1\xb6\xee\x49\xe5\x8b\x32\x41" "\xb2\xfb\x15\x7a\xcb\xb1\x3d\x8d\xed\x0c\xe1\x9a\xc2\x3d\xe2\x30\x54\x4d" "\xc7\xd9\xce\x03\x57\x9f\x16\x5e\xfc\xfb\xb5\x37\xfd\x6c\xd9\xf7\xbe\xdb" "\xb5\xfb\xe5\x5d\x13\x9b\x24\xd5\x86\xf1\x14\xc2\xc2\x4b\x1b\x1f\xdf\x15" "\x42\x98\x9f\xfe\x1f\x13\x47\xdb\xd2\xf8\xe0\x74\xb9\x26\x84\xd0\xd3\xf0" "\xb8\x73\x0a\xda\x75\x52\x8b\xed\x5f\x99\xb3\x7e\x7c\xba\x9c\x97\x2e\x7b" "\x0b\xe2\xc4\xfb\x97\x67\xd6\x4b\x99\xed\xb2\xeb\x51\x57\x66\xd9\x53\x50" "\xdf\x6c\xe5\xb5\xa3\xdd\xed\x8a\x2c\xc8\xac\x67\x4f\x46\xb3\x95\xd7\xce" "\x58\xbe\x38\x5d\xfe\x20\x5d\x9e\x3a\xc3\xf8\xe5\xf8\x3f\x09\xa5\x24\x54" "\xea\xcd\xdf\x94\x4c\x8c\x91\xd0\x70\xdc\x92\x90\x8c\x1f\xcb\x6a\x7d\xbd" "\x54\x3f\xb6\x21\xdd\xff\xcc\x7a\x92\x59\x2f\x65\xd6\xcb\x5d\x99\xfd\x1a" "\xaf\x37\x1d\x68\xe5\x24\x99\x5c\x1e\xb7\xcb\x94\xc7\xd3\x71\x25\x2d\x3f" "\xb1\xf1\x5c\xdd\xc4\x85\x39\xe5\xef\x48\x97\xd5\xf4\x89\xfa\x66\x5c\x0f" "\xd9\x1b\x35\xbd\x53\x6e\xd4\xf7\x6b\x5c\x6c\xd7\xfe\x69\xda\x72\x30\x94" "\x1a\xce\x41\xcd\xca\xeb\x07\x3e\x3d\x18\xbd\x69\x59\x6f\xb2\x64\xca\x63" "\x46\x9b\x88\xf7\xed\x5d\x7b\xfb\x8a\xf2\xba\xc7\xf7\xf5\xe7\xb4\x23\xb9" "\x3f\x49\xe3\x27\x6d\xc5\xdf\xf9\xd3\xc5\x0b\x3e\xfa\x9d\x5b\xaf\x5a\x9a" "\x17\xff\xd2\x52\x1a\xbf\xd4\x56\xfc\x5f\x9d\xf7\xcc\xab\x17\xdf\xfa\xcd" "\xaf\xe6\xc6\xbf\x33\xc6\x2f\xb7\x15\xff\xf4\x47\x7a\x5e\x39\xef\x89\x9b" "\x97\xe7\xf6\xcf\xfe\xd8\x3f\x95\xb6\xe2\x0f\xbf\xf4\xe4\x1d\xcb\x8e\xbe" "\x6c\x77\x6e\xfb\xef\x8e\xf1\xab\x2d\xc7\x9f\x17\x26\xe2\xaf\xde\xf3\x4c" "\x77\xdf\x81\x47\x1e\xcd\x6d\xff\x50\xec\x9f\xf9\x6d\xb5\xff\x85\xf7\x7d" "\xe0\xd7\xf7\x3d\xf7\xd0\xcb\xb9\xf1\x43\x8c\xdf\xd3\x56\xfc\x75\x7b\xb6" "\x7e\xae\x7b\xe0\xc0\x29\xb9\xf1\x1f\x8d\xfd\xd3\xdb\xde\xf8\x79\x6d\xf7" "\xd9\xcf\x0f\x0c\xfc\x76\x30\x2f\xfe\xb3\x31\x7e\x5f\x5b\xf1\xef\xdd\x75" "\xd7\x7b\xef\x59\x74\xdb\xb9\xb9\xc7\x77\x4d\xec\x9f\xfe\xb6\xe2\x9f\x7f" "\xf2\xc3\x37\x2d\x38\xf0\xd0\x09\x79\xe7\xce\xe4\xee\x4e\xbd\x72\x02\xbc" "\x3d\x1d\x95\x5e\x63\xdd\x92\xae\x37\xe4\x99\x7d\x33\xc9\x33\x67\xab\x21" "\x5f\xf8\xca\x60\xa5\x76\xcd\xb7\x20\xfd\xdf\xd7\xc9\x8a\x32\xc6\xea\x59" "\x38\x87\xf1\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x38\x32\xfd\xfc\xfa\x33\x3f\x72\xd1\xfb" "\x3f\xb4\xb6\x92\x84\x90\xe4\x6c\x33\xda\x44\xbc\xaf\x3c\x6f\xf5\xea\xc1" "\x36\xea\x1d\x7e\xe9\xc9\x3b\x96\x1d\x7d\xd9\xee\xc6\xb2\xa5\x6d\xc4\x01" "\x00\x00\x00\x8a\xc5\x3c\xbc\x54\x2f\xa9\x86\xa5\xe1\xea\x64\x7e\x38\xbe" "\xe9\xf6\x71\x8e\xe0\xf8\xb8\x96\x4c\x2e\xcf\xce\x21\xc4\x38\xd9\x39\x82" "\x76\xe3\x94\x3a\x14\xa7\xdc\xa1\x38\x95\x0e\xc5\xe9\xea\x50\x9c\x79\x1d" "\x8a\xd3\xdd\xa1\x38\xd5\x82\x38\xd5\xd0\x5a\x9c\xf9\xd3\xc4\xa9\x8c\x8d" "\x8a\x16\xdb\xd3\x33\x6d\x7b\x5a\x8f\xd3\xdb\xa1\x38\x0b\x3a\x14\xa7\xaf" "\x43\x71\x16\x76\x28\xce\xa2\x0e\xc5\xe9\x9f\x36\x4e\xeb\xe3\x70\x71\x87" "\xe2\x2c\xe9\x50\x9c\xa3\x3a\x14\xe7\xe8\x0e\xc5\x39\xa6\x43\x71\xfe\xa2" "\x43\x71\x8e\xed\x50\x9c\xec\x9c\xf2\x4c\xc7\x61\x5f\xba\xe5\x71\x79\x71" "\xc6\x6f\x94\x0b\xe3\x54\x92\x72\xfd\x8e\x66\xf3\xe9\xc7\xa6\xf5\x9c\x30" "\xcb\x7a\x7a\x0b\xea\xe9\x2b\x7a\x3d\x6e\xb1\x9e\xf9\x2d\xd6\x73\x52\xe6" "\x71\xa5\x19\xd6\x53\x6d\xb1\x9e\xbf\x9c\x65\x3d\x49\x8b\xf5\xfc\xf5\x2c" "\xeb\x29\x15\xd4\x13\xc7\xed\x35\xd9\xf6\xc5\x7a\xe2\x5a\x8b\xe3\xff\xda" "\x0e\xc5\xd9\xd9\xa1\x38\xd7\x75\x28\xce\xf5\x1d\x8a\xf3\xa9\x0e\xc5\xf9" "\x74\x87\xe2\xdc\x30\xcb\x38\x00\xad\x8a\xf9\xff\x44\xbe\xd7\x1f\xba\x2b" "\x7f\x1b\x7a\xd2\x33\x4e\x76\x16\x20\xe6\xbb\xcb\xc6\x7f\x4e\x7d\xbd\xcb" "\x3b\x21\xc5\x78\xef\xcc\x94\xcf\x2b\x8a\x97\x4d\xd4\x33\xf1\x96\xcd\xb4" "\x7d\xd9\x09\x84\x4c\xbc\xe5\x99\xf2\xae\x49\xf1\x2a\xf5\x7c\x64\x9a\x78" "\xd5\xc6\x78\x2b\x32\x77\x16\xee\x6f\x76\x42\x21\xd3\xbe\x53\x33\xe5\xdd" "\x45\xf1\xb2\x13\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x30\x87\x7e" "\x7e\xfd\x99\x1f\xb9\xe8\xfd\x1f\x5a\x1b\x92\x30\xf6\xaf\xa9\xd1\x26\xe2" "\x7d\xe5\x79\xab\x57\x0f\xb6\x51\xef\xde\xb5\xb7\xaf\x28\xaf\x7b\x7c\x5f" "\x63\x59\x77\xa5\x8d\x40\x00\x00\x00\x40\xa1\x98\x87\x77\xd5\x4b\xaa\xa1" "\xbb\xb2\x2a\x74\x27\xf3\x26\x6d\x57\x4d\xe7\x01\xaa\xe9\x7a\xb9\xbf\xb6" "\x1c\x58\x18\xd6\x8c\x2d\x93\xc1\xd2\xf8\x7a\x4f\xb2\x78\xda\xc7\x55\xd2" "\xc7\xad\xdc\xb1\x79\xeb\xca\xed\xd7\xee\x7c\xd7\xc6\xcd\xc3\x57\x8c\x5c" "\x31\xb2\xe5\x3d\xab\xce\x5c\x75\xf6\xd0\x59\x67\x9f\xb5\x72\xc3\xc6\x4d" "\x23\x43\xb5\x9f\x21\x74\x17\xc4\x0b\x21\x8c\x4f\x3f\x6c\xbf\x76\xe7\x27" "\x86\x37\x6d\x1a\xd9\xb6\xbd\x56\x98\x6d\xff\xd2\xf4\x71\x4b\xd3\xf5\x24" "\x7d\xdc\xc0\xbb\xc3\xd0\xd8\xf2\xc6\xb4\xfd\x4b\x0a\xea\x2b\x4d\xa9\x6f" "\xee\x6e\x14\x1f\x3d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xb3\x6b\x77\x21\x72\x5e\x65\x1c\xc0" "\xcf\x3b\x33\x3b\x33\xdd\x36\x66\xa5\x5f\xd3\xd0\x6c\x86\x7c\x94\xa8\x45" "\x93\xb8\x95\x54\x4b\xf7\x05\xc1\x42\x9b\x84\x2c\x05\x99\xad\xae\x25\xd8" "\x04\x8b\x9b\x26\xb4\x49\x89\x75\x6c\x03\xb6\x35\x41\x11\x5a\x02\x21\x92" "\x0b\x23\xb1\xd8\x5a\xbc\xe9\x87\x2d\x62\x3f\x08\x54\x6a\x34\xe0\xc6\x20" "\x6d\xd1\x5e\xe8\x85\xd2\x6a\x25\x2d\xb9\x90\x94\x91\xec\xce\x99\x9d\x99" "\x9d\xc9\xac\x63\x69\xda\xf4\xf7\xbb\x98\x77\xe6\x9c\xe7\x9c\xe7\x3d\x73" "\xb1\xf0\x7f\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xf7\xd7" "\x54\x75\x64\xa2\x32\x3a\x36\x3e\x98\x84\x90\x74\xa9\xa9\x75\x10\xe7\xb2" "\xf9\x34\x2d\xf7\xd1\xf7\xab\xcf\x6e\xff\x61\x61\xf8\xd4\xca\xe6\xb1\x42" "\xae\x8f\x8d\x00\x00\x00\x80\x9e\x62\x0e\x1f\x68\x8c\x14\x43\x21\x97\x0d" "\xd9\x70\xc5\xf4\xa7\xa5\xa1\x69\x22\xcc\xe6\x7e\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xa3\x67\xaa\x3a\x32\x51\x19\x1d\x1b" "\xbf\x30\x09\x21\xe9\x52\x53\xeb\x20\xce\x65\xf3\x69\x5a\xee\xa3\xef\xeb" "\x6f\x3f\xfe\xb9\x57\x86\x87\xff\xde\x3c\x56\xea\x63\x1f\x00\x00\x00\xa0" "\xb7\x98\xc3\x33\x8d\x91\x62\x28\x85\x65\x61\x20\xb9\xa2\xa5\x2e\x3e\x1b" "\x58\xd4\xb6\xbe\xbd\x2e\xee\xb3\x78\x9e\x75\xed\xcf\x0e\xba\xd5\x2d\x9b" "\x67\xdd\x55\xf3\xac\xfb\x44\x8f\xba\x0d\xf5\xeb\xae\x00\x00\x00\x00\x1f" "\x7e\x31\xff\xe7\x1a\x23\x43\xa1\x90\x5b\xd0\x35\xff\xf7\xca\xf5\xb1\x6e" "\x49\x5b\x5d\xb6\x7e\xed\xe7\xb7\x02\x00\x00\x00\xc0\xff\x27\xe6\xff\x42" "\x63\xa4\x14\x0a\xb9\x52\x23\xaf\xcf\x37\xef\x2f\x6d\xab\x8b\xeb\x7b\xfd" "\xdf\x3e\xae\x5f\xd1\x65\x7d\xaf\xff\xe7\xaf\xaf\x5f\xfd\x9f\x1e\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x3e\x3c\xa6\xaa\x23\x13\x95\xd1\xb1\xf1\x6c\x12\x42" "\xd2\xa5\xa6\xd6\x41\x9c\xcb\xe6\xd3\xb4\xdc\x47\xdf\x35\xcf\x0d\xfe\xf3" "\xa6\x23\x0f\x2c\x6d\x1e\x2b\xe4\xfa\xd8\x08\x00\x00\x00\xe8\x29\xe6\xf0" "\xd9\xe8\x5d\x0c\x85\xdc\x60\x18\x08\x17\x4e\xe7\xfe\xe1\x1b\x0e\x3e\xf9" "\xe5\x27\x9f\x1e\x09\x21\xcc\xc4\xfc\x7c\x3e\xec\xda\xb4\x63\xc7\x9d\x6b" "\x66\x5e\x63\xdd\xea\xa3\x47\x06\x7e\xf0\xd2\x9b\xdf\x99\x53\xb7\x7a\xe6" "\xf5\x9c\x1d\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x78\xcf\x4c\x55\x47\x26\x2a\xa3\x63\xe3\x17\x24\x21\x24\x5d\x6a\x6a\x1d" "\xc4\xb9\x6c\x3e\x4d\xcb\x7d\xf4\x7d\xed\x0b\x5f\xfa\xeb\xa3\x27\x9e\x79" "\xa3\x79\xac\xd4\xc7\x3e\x00\x00\x00\x40\x6f\x31\x87\xcf\x66\xff\x62\x28" "\x85\x7c\xc8\x87\xcb\xa6\x3f\x35\x67\xfd\x33\x32\x6d\xeb\xbb\x3d\x33\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x1f\x77" "\x7d\xeb\x9e\x6f\x6e\x9a\x9c\xdc\x7c\xa7\x37\xde\x78\xe3\x4d\xe3\xcd\xb9" "\xfe\xcb\x04\x00\x00\xbc\xd7\x96\x84\x24\xd4\xfe\x47\x97\x6f\x3c\xd7\x77" "\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x10\x4c" "\x55\x47\x26\x2a\xa3\x63\xe3\xc5\x24\x84\xa4\x4b\x4d\xad\x83\x38\x97\xcd" "\xa7\x69\xb9\x8f\xbe\xe9\xb3\xc7\x0a\x0b\x4e\x3d\xf7\x42\xf3\x58\xa9\x8f" "\x7d\x00\x00\x00\x80\xde\x62\x0e\x9f\xcd\xfe\xc5\x50\x0a\x03\x61\x20\x5c" "\x3a\xfd\xa9\xd3\x33\x81\xe9\xfc\x3f\xf4\x3e\xde\x24\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x81\x32\x55\x1d\x99\xa8\x8c" "\x8e\x8d\x2f\x48\x42\x48\xba\xd4\xd4\x3a\x88\x73\xd9\x7c\x9a\x96\xfb\xe8" "\xfb\xc8\xee\x03\x9f\x3f\xbc\xf0\xfb\x37\x36\x8f\x15\x72\x7d\x6c\x04\x00" "\x00\x00\xf4\x14\x73\x78\xbe\x31\x52\x0c\x85\xdc\x27\x43\x21\x5c\x59\xff" "\x3c\xd9\xba\x20\xc9\xd6\xaf\x9d\x9f\x0b\xcc\xae\xdb\xde\xb2\x6c\x70\xde" "\xeb\xaa\x2d\xeb\xb2\xf3\x5e\xb7\xa7\xed\x64\xb9\xfa\x69\x66\xd6\x15\xe3" "\x7e\x43\x33\xd7\xc6\xba\xf2\xdc\x75\xe5\xa6\x75\xa5\xd0\x68\x5f\x6e\x59" "\x17\xf6\xb5\xac\x5a\xd0\xe3\x3e\x03\x00\x00\x00\x9c\x43\x31\xff\x17\x1a" "\x23\x43\xa1\x90\x2b\x34\xe5\xdc\x9f\xb5\xd4\x0f\xc9\xb9\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\x17\x53\xd5\x91\x89\xca\xe8\xd8\x78\x92\x84" "\x90\x74\xa9\xa9\x75\x10\xe7\xb2\xf9\x34\x2d\xf7\xd1\xf7\x9e\xdf\x7d\xfc" "\xa2\xaf\xfd\x7c\xef\xce\xe6\xb1\x52\x1f\xfb\x00\x00\x00\x00\xbd\xc5\x1c" "\x3e\x9b\xfd\x8b\xa1\x14\x16\x87\x8f\x85\xc5\xd3\xb9\x3f\x0c\xb5\xd6\xc7" "\xba\x7f\x55\x4e\x1f\x7e\xf8\xdf\x7f\x5b\x19\xc2\xaa\xcb\x8e\x0f\xe7\xda" "\xb7\xfd\x71\x7c\xf3\x9b\xd7\xae\x7f\xbe\xfd\x25\x84\x4c\x6b\x75\x26\x84" "\x85\xf5\x7e\x49\x97\x7e\xbf\xfd\xc3\xc3\x77\x2f\xaf\x9d\x7e\x34\x84\x55" "\x97\x66\xaf\x9c\xd3\x2f\x9c\xbd\x5f\xeb\x96\x69\xed\xa9\xca\xe6\xf5\x3b" "\xb6\x87\xed\x3d\xbe\x1c\x00\x00\x00\x38\x4f\xc4\xfc\x3f\xd0\x18\x19\x0a" "\x85\xdc\x1d\x5d\xf3\x7f\x4c\xde\x3d\xf2\x7f\xc3\x74\x00\x5f\x78\xf7\xee" "\x5f\x5e\x52\x7f\xad\x27\xf2\xb6\x15\x99\xa1\x7a\xbf\x4c\x97\x7e\x5f\x5c" "\xfe\xf8\x5f\x56\xac\xfd\xc7\x9b\x67\xf2\xff\xd9\xfa\x7d\xe6\xc0\xd6\xc3" "\x97\xb4\x34\x9c\x19\x69\x93\xa4\xb5\xd1\xad\x3b\x37\x1c\xbf\xe6\x50\x26" "\x9e\x7a\xa6\x7f\xb6\xad\x7f\xfc\x5e\xbe\xf2\xed\x37\xfe\xb3\x65\xd7\x43" "\xa7\x67\xfa\x17\x43\xb1\x3e\xbe\x28\xd7\xa9\xff\xdc\xd7\x36\x17\xa4\xb5" "\xc9\xcc\xfe\xf1\x75\xef\xee\xaf\xb6\xf6\xcf\x75\x39\xff\x03\xbf\x7f\xe1" "\xc4\xaf\x17\xed\x7d\xe7\x4c\xff\xb7\x97\x0c\x36\xfa\x5f\x75\x96\xf3\x9f" "\xbd\xff\xe0\xcd\x0f\xee\xbb\xf6\xc0\x91\x0d\xad\xfd\x43\x08\xe5\x4e\xfd" "\xdf\x7a\xe7\xc6\x70\xf9\x9f\x6e\xbf\xbf\xfd\xfc\x83\x6d\x1b\x37\x7f\xf3" "\xcd\xaf\x6d\x92\xb4\x76\x74\xe9\xc9\x43\x6b\x0f\x96\xae\x6b\xed\x9f\xb4" "\xf5\x8f\xdf\xff\x2f\x4e\x3c\xb2\xef\xa7\x0f\x7d\xef\xe9\xd8\x3f\xfe\x56" "\x64\xe5\xb2\xf9\xf6\xcf\xb4\xf5\x7f\x79\xcf\xc5\xbb\x5f\xbc\x6f\xe3\xa2" "\xd6\xfe\x99\x2e\xe7\x7f\xfe\x96\x57\x86\xb7\x95\xbf\xfb\xc7\xf6\xf3\xdf" "\xd6\xb2\x6b\xae\xeb\x5d\xcc\x3d\xff\x63\x57\x3f\x71\xeb\xab\x9b\xd2\x7b" "\xdb\xa7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x2f\x53\xd5" "\x91\x89\xca\xe8\xd8\x78\x26\x09\x21\xe9\x52\x53\xeb\x20\xce\x65\xf3\x69" "\x5a\xee\xa3\xef\xeb\x37\x1d\x7b\xeb\x96\xbd\x3f\xf9\x51\xf3\x58\xa9\x8f" "\x7d\x00\x00\x00\x80\xde\x62\x0e\x9f\xcd\xfe\xc5\x50\x0a\xf9\x90\x0f\x83" "\xd3\xb9\xff\xa9\xca\xe6\xf5\x3b\x5e\x3a\xbe\x3d\x0c\xcd\xcc\x26\xf5\x6b" "\x6e\x72\xdb\x5d\x3b\x3e\xb5\x65\xdb\xce\x3b\x6e\x3b\x47\x77\x0e\x00\x00" "\x00\xcc\x57\xcc\xff\xb9\xc6\xc8\x50\x28\xe4\x96\x87\x81\x7a\xfe\x1f\xdd" "\xba\x73\xc3\xf1\x6b\x0e\x65\x62\xfe\xcf\xc4\xfc\xbf\xe5\xf6\xc9\xcd\xab" "\x42\xa3\xee\xe5\x3d\x17\xef\x7e\xf1\xbe\x8d\x8b\x1a\xcf\x09\x42\x98\xfe" "\x59\x40\xf1\x4c\xdd\x67\x67\xeb\x6e\xb8\xfe\xd8\xd0\xc9\x3f\x7f\x63\x45" "\xc7\xba\x35\xb3\x75\x47\x97\x9e\x3c\xb4\xf6\x60\xe9\xba\x58\x17\x9a\xeb" "\x56\x87\xc6\xf3\x89\xc7\xae\x7e\xe2\xd6\x57\x37\xa5\xf7\x36\xee\xaf\xb9" "\xee\xd3\x5f\xdf\x36\x59\x7f\x3c\x11\xf7\x1d\xbc\xf9\xc1\x7d\xd7\x1e\x38" "\xb2\xa1\x71\x8e\xfa\x75\xb0\xbe\x6f\xac\x9b\xcc\xec\x1f\x5f\xf7\xee\xfe" "\x6a\xac\xcb\xd6\xaf\xc5\xfa\xb9\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\xb9\xa6\xaa\x23\x13\x95\xd1\xb1\xf1\x90\x0d\x21\xe9\x52\x53\xeb\x20" "\xce\x65\xf3\x69\x5a\xee\xa3\xef\xba\xe5\xbf\xba\xff\xa2\x53\xcf\x2c\x6e" "\x1e\x2b\xe4\xfa\xd8\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xbf\xec\xc0\x81" "\x00\x00\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x61\xbf\xfe\x42\xa4\xaa\xe2\x38\x80\x9f\x33\xb3\xdb\x8e\x3b\xbb\xba" "\xab\x41\x5b\xd1\xba\x5a\x51\xd8\x43\x52\x10\x51\x2f\x15\x15\xa1\x21\x42" "\x4f\x86\x84\xa5\xf9\x10\x05\x41\x44\x61\x0f\xad\xa1\x91\x58\xd1\x4b\x90" "\xf5\x22\x51\x41\xb5\x85\x50\x90\x9b\x24\x5a\xac\xd1\x3f\xe9\xa5\x87\x0a" "\x0a\xac\x87\x40\xa4\x85\x72\x91\xa0\x3f\xec\xcc\xb9\xe3\xec\xdd\xb9\x4d" "\x5d\x2d\x28\x3f\x1f\x18\xce\x9c\x33\xf7\x7e\xe7\x77\xcf\x39\x73\x67\x06" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\xff\x94\xbe\x9e\x91\x46\x7b\x68\xfb\x03\x33\x6b" "\xce\xbb\xe9\xe3\xc7\xee\x3e\xfe\xe8\x2d\xef\xde\xb7\xf5\x92\x47\x5e\xfb" "\x7e\x6c\xe3\x0d\x1f\xed\xe9\x7f\xf9\xc4\xd4\xa6\x65\x9b\xbf\xba\x71\xc9" "\xc6\x7d\xf7\xac\x9a\xdc\xf5\xc2\xc1\x9f\x07\xdf\xfe\xed\x48\xd7\xe0\x87" "\x9b\xcd\x8a\xd4\xad\x85\x10\x8f\xc5\x10\x6a\xef\x4d\x3f\xfb\xf8\xd4\x27" "\xe7\xcc\x8e\xc5\x10\x42\x35\x0e\x8d\x87\x30\x1c\x17\x1f\x1c\x8e\xb9\x84" "\x95\xbf\x84\x10\x36\xb5\xea\x9c\xfb\xe2\x5b\xc7\xaf\xdc\x3c\xdb\x6e\xdd" "\xd9\x37\x67\x7c\x51\x2e\x24\x7f\x5d\xa1\x5e\xcd\xea\x69\x1a\x9a\x5b\x2f" "\xff\x2f\xb5\xb4\xcf\xb6\xcc\x3c\x74\x59\xf8\xe6\xfa\x75\xdb\x3e\x5b\xfa" "\xe6\x1b\xbd\x13\x47\xc7\x4f\x1e\x12\x6b\x6d\xfb\x29\x84\x85\x1b\xda\xcf" "\xef\x0d\x21\x2c\x48\x8f\x59\xd9\x6e\x1b\xc9\x4e\x4e\xed\xda\x10\x42\x7f" "\xdb\x79\x57\x77\xa9\xeb\xc2\xbf\x58\xff\xe5\x05\xfd\xf3\x53\x7b\x56\x6a" "\xeb\x5d\x72\xb2\xd7\x97\xe7\xfa\x95\xdc\x71\xf9\x7e\xa6\x37\x84\x5f\xd7" "\xa4\xf9\x08\xb9\x6b\xfd\x27\x14\xd5\x51\xf6\xb8\x6e\x06\x72\xfd\xfc\xcd" "\xe8\x54\x15\xd5\x99\x8d\x0f\xa7\xf6\x9d\xd4\xae\xf8\x9b\xf9\xd5\xec\x11" "\x43\x25\x86\x9e\x56\xf9\xf7\xc6\x93\x7b\x24\xb4\xad\x5b\x0c\xb1\xb1\x96" "\xb5\x56\xbf\xd2\x5a\xdb\x90\xae\x3f\xd7\x8f\xb9\x7e\x25\xd7\xaf\xf6\xe6" "\xae\xab\xf1\xbe\x69\xa3\x55\x63\x9c\x3b\x9e\x1d\x97\x1b\xcf\x6e\xc7\x3d" "\x69\x7c\x59\xfb\xbd\xba\x83\xdb\x0a\xc6\xcf\x4d\x6d\x2d\x7d\x50\x4f\x64" "\xfd\x90\x7f\xd2\x54\x9f\xf7\xa4\x75\x5d\x0d\x59\x5d\xd3\x7f\x52\xcb\xbf" "\xa1\xd2\x76\x0f\xea\x34\xde\x5a\xf8\xb4\x18\xf5\x34\x56\x8f\x8b\xe7\x9d" "\xf3\x7b\x07\xd9\x6b\x53\xeb\x9e\xbc\xb8\xba\xfe\xfd\x43\x43\x05\x75\xc4" "\x3d\x31\xe5\xc7\xee\xf9\x43\x61\x5e\xfe\x96\x4f\x87\x07\xee\x78\x7d\xc7" "\x83\x23\x45\xf9\x1b\x2a\x29\xbf\x52\xaa\xfe\x6f\x57\x1f\xfe\xf1\xf6\x1d" "\x2f\x3e\x5f\x98\xff\x4c\x96\x5f\x2d\x95\x7f\xc5\xfe\xfe\x63\xab\x3f\xd8" "\xbe\xbc\xc3\xfc\x2c\x6c\xe4\x4f\x67\xf3\xd3\x53\x2a\xff\xce\x23\x1f\x3e" "\xb5\xf4\xec\xbb\x26\x3a\xad\x75\x23\x7f\x77\x96\x5f\x2b\x95\x7f\xdd\xe4" "\xe1\xbe\xc1\x99\xfd\x07\x0a\xd7\x77\x65\x36\x3f\x0b\x4a\xe5\x7f\x7d\xed" "\xcd\xdf\xbd\xfa\xc5\xde\xa3\x85\xf9\x21\xcb\xef\x2f\x95\xbf\x7e\xf2\xfe" "\xa7\xfb\x46\x67\x2e\x2d\xcc\x3f\xd0\xfc\x28\xd4\x1b\x3b\xb4\xc4\xfe\xf9" "\x69\xe2\xaa\x2f\x47\x47\x7f\x18\x2b\xca\xff\x3c\x9b\xff\xc1\x0e\xf9\xb1" "\x6b\xfe\x2b\xe3\xbb\xae\x79\x69\xd1\xce\x55\x85\xfb\x73\x6d\x36\x3f\x43" "\xa5\xea\xbf\xf5\xa2\x7d\xdb\x06\x66\xf6\x5e\x50\x74\xef\x8c\xbb\x4f\xd7" "\x37\x27\xc0\x99\x69\x49\xfa\x8d\xf5\x44\xea\x97\xfd\x9f\x79\xaa\xda\xfe" "\x2f\x3c\x37\xd6\xd3\xfc\x06\x1a\x48\x8f\xc1\xd3\xf9\x46\x39\x31\xfb\xc1" "\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf0\x07\x3b\x70\x2c" "\x00\x00\x00\x00\x20\xcc\xdf\xba\x37\x88\x0d\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xa6\x00\x00\x00\xff\xff\x77\x0a\x2e\x9e", 22853); syz_mount_image(/*fs=*/0x20000080, /*dir=*/0x20000000, /*flags=MS_I_VERSION*/ 0x800000, /*opts=*/0x20000a40, /*chdir=*/1, /*size=*/0x5945, /*img=*/0x20005cc0); memcpy((void*)0x20000300, "./bus\000", 6); syscall(__NR_mkdir, /*path=*/0x20000300ul, /*mode=*/0ul); memcpy((void*)0x200003c0, "./file0\000", 8); memcpy((void*)0x20000200, "overlay\000", 8); memcpy((void*)0x20001100, "upperdir", 8); *(uint8_t*)0x20001108 = 0x3d; memcpy((void*)0x20001109, "./file0", 7); *(uint8_t*)0x20001110 = 0x2c; memcpy((void*)0x20001111, "lowerdir", 8); *(uint8_t*)0x20001119 = 0x3d; memset((void*)0x2000111a, 46, 1); *(uint8_t*)0x2000111b = 0x2c; memcpy((void*)0x2000111c, "workdir", 7); *(uint8_t*)0x20001123 = 0x3d; memcpy((void*)0x20001124, "./bus", 5); *(uint8_t*)0x20001129 = 0x2c; *(uint8_t*)0x2000112a = 0x2c; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200003c0ul, /*type=*/0x20000200ul, /*flags=*/0ul, /*opts=*/0x20001100ul); } 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; }