// https://syzkaller.appspot.com/bug?id=78f98000deba69b5db400d53ad5890d7f51f16d6 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); initialize_cgroups(); 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 setup_loop() { setup_cgroups_loop(); } 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(); setup_cgroups_test(); 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) { setup_loop(); 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*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20000200, "./file0\000", 8); memcpy((void*)0x20000280, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x6e" "\x6f\x63\x6f\x77\x5f\x65\x6e\x61\x62\x6c\x65\x64\x2c\x64\x69\x72\x65" "\x63\x74\x5f\x69\x6f\x2c\x6a\x6f\x75\x72\x6e\x61\x6c\x5f\x74\x72\x61" "\xb6\x37\xc3\x93\xbe\xcc\x2f\xca\x5f\x6e\x61\x6d\x65\x73\x2c\x72\x65" "\x61\x64\x5f\x6f\x6e\x6c\x79\x2c\x00", 77); memcpy( (void*)0x2000bb80, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\x2b\xc1" "\x4a\x16\x46\x42\x42\x08\x23\xdb\x11\x17\x6c\x81\x02\xb1\x7c\xe7\xb0\x71" "\xce\x8e\xed\x60\x23\x0b\x0b\xb0\x38\x4e\x92\x61\xb1\x75\x16\x92\xac\x0f" "\xc4\xc7\x25\x7c\xe5\x30\xc1\x4e\x4a\x55\x50\x07\x81\x38\xe1\xc0\xe5\x5c" "\xa5\xae\x12\x5c\xba\x84\xf8\x8e\x54\xc9\x18\xe3\x8b\xaf\x8a\x02\x3b\xfe" "\xc3\x47\xbe\x8e\x8a\x9d\x3f\xe2\x23\xaa\xb3\xc4\x39\xc2\xf1\x5e\xed\x6e" "\xf7\x6a\xa6\xb7\x9f\xe9\xd9\x99\x59\x21\xf0\xef\x57\xa5\x9d\x79\x7b\x9f" "\x79\xde\xf7\xe9\x79\xa7\xa7\xdf\xd6\xee\x6c\x02\x00\x00\xc0\x2f\x85\xe7" "\x7f\x67\xdf\x6b\x9f\x38\xe7\x43\xdf\xbd\x67\xec\xf8\x9d\x1f\xf9\xa3\x9b" "\xef\x4e\x86\xeb\x93\xdb\x87\xf2\x80\x91\xec\xf6\xd6\x37\x6a\x84\xcc\xa5" "\xb5\xdf\x7b\xbd\xe5\x99\x1d\x6c\x2c\x9b\xbc\x2d\xce\x8b\xb3\xff\x78\xe9" "\x6b\x23\xf7\x5e\xf1\xf1\x07\x36\x7c\xf8\x7b\xdb\xfe\x64\xf1\xe8\xaa\x35" "\x63\x97\x7d\xfd\xf0\x95\xf7\xdd\xfb\xec\x07\x7e\xfe\xec\xc3\x8f\x5e\x51" "\xd5\x4f\x3e\x9f\x2e\x3c\xd9\x4e\xff\x22\x4d\x92\x55\x3f\x3a\xfc\xf0\x7d" "\xdf\xfe\xd3\xb3\x27\xb6\xa5\x13\xfd\xa7\x23\x77\x25\x8b\x17\xa7\x4b\xbe" "\xb9\x38\x2d\xa4\x58\x77\x22\x49\x92\x1b\xa7\xc7\xd9\xfa\xcd\xc3\xc7\xd7" "\xdf\x34\x71\x7b\xf7\x97\x06\x5b\xb6\x9f\x59\x48\x62\xbe\xff\x72\x1b\xca" "\xe6\xd9\x1d\x5b\x3f\xf3\xc4\x91\xcf\x8f\x7e\xfb\xf0\xea\x3d\xeb\x7f\x72" "\xec\xd2\xdd\x77\x9d\x0c\x49\x87\x9a\xe6\x53\x92\x9c\xb1\xad\xf9\xf1\x03" "\x49\x92\xcc\xcf\xfe\x4d\xc8\x67\xdb\xb2\xfc\xc1\xd9\xed\xc6\x24\x49\x16" "\x34\x3d\xee\x7d\x15\xe3\xba\xa0\xc3\xf1\x5f\x14\xb4\x57\x66\xb7\xf3\xb2" "\xdb\xe1\x8a\x3c\xf9\xf7\xcf\x2f\xb4\x1b\x1d\x8e\xa3\x51\xb8\x1d\xec\xf0" "\x71\xdd\xaa\xcd\x71\xfe\xa2\xe2\xfe\x2b\x1e\x8c\xe6\x4a\x5e\xe7\x19\xd9" "\xed\xd3\xd9\xed\x85\xb3\xcc\x53\xcf\xff\xa5\x49\x2d\x4d\x1a\xd3\xc3\xdf" "\x99\x9e\x9c\x23\x49\xd3\xf3\x96\x26\xe9\xe4\xdc\x1e\x9a\x6e\xd7\x26\xdb" "\xc9\x74\x3b\x29\xb6\xd3\x42\xbb\x56\x68\xd7\x07\x0a\x75\x4d\xf6\x9b\xed" "\xd8\x7a\x9a\xb6\x6e\xcf\xe3\x0a\xdb\xf3\xc3\x71\x23\xdb\x7e\x7e\xf3\xb1" "\xba\xc4\xa6\x60\xfb\xf2\xec\x76\x28\x7b\xa1\xfe\x2c\x6f\x27\xc5\x3b\x53" "\x86\x67\xdc\x39\x59\x47\xd2\x34\xae\xa3\xa7\x6a\x62\x04\x6a\xc1\x6b\x2f" "\xdf\x3e\x3d\xbc\xec\xc9\x18\xce\xb6\x0d\xa7\x4b\x66\x3c\x66\xbc\x44\xfe" "\xbd\xa3\xdf\xd9\xbe\xe5\xd5\x1f\xde\xfe\xf4\x48\x30\x8e\xf4\xa9\x34\xcb" "\x9f\x76\x95\x7f\x74\xec\xb1\x23\x5f\xbb\xf6\x99\xe5\xcb\xa2\xfc\xdb\x6a" "\x59\xfe\x5a\x57\xf9\x9f\xaf\xbf\x70\xe2\xab\xc7\x96\x2d\x0c\xf3\x1f\xca" "\xf3\xd7\xbb\xca\xbf\xf9\x17\x3f\xbe\xff\x9e\xab\x0e\x2e\x0d\xf7\xcf\xd1" "\x7c\xff\x34\xba\xca\xbf\xe6\xcb\x0b\xef\x38\x7e\x70\xd3\xe0\xea\x28\xff" "\xe3\x79\xfe\xa1\xae\xf2\x5f\x76\xfd\xaa\x0d\xe7\x1e\x3b\x70\x4b\x38\xfe" "\x75\xf9\xfe\x99\xdf\x55\xfe\x1f\x3c\xb8\xf6\xf5\xeb\x0f\x7d\xe3\x99\x30" "\x7f\x92\xe7\x5f\xd0\x55\xfe\x97\x1f\x7b\x72\x65\x7d\xf9\x43\x2f\x85\xf9" "\x8f\xe4\xfb\x67\xb8\xab\xfc\x57\xaf\x7f\xe4\xf2\x8f\xad\xb8\xf7\xd1\x70" "\xff\xbf\x98\xe7\x5f\xd4\x55\xfe\x2d\x2f\xdd\xb7\x6d\xcf\x13\xcf\xad\x0d" "\xe7\xe7\xc6\x7c\xff\x8c\x74\x95\xff\xc4\xe5\xdf\x7f\xe5\xf5\x91\x2b\x9e" "\x8c\x8e\x9d\xe9\xe3\xa7\xfa\x1d\x16\xe0\xad\xe5\x6d\xd9\x39\xd6\xfd\x59" "\xbb\xdb\x75\x66\xaf\x9a\xd6\x0b\x8f\xac\x6e\x4c\x9d\xf3\x2d\xcc\xfe\x2d" "\xea\x67\x47\x05\x69\xd3\xda\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\xf5\xd0\xe5\xff\xfe\x0b\xcd\xed" "\x77\xfe\x9f\x5b\x36\xbf\xf4\x1f\x56\xed\x68\x64\xed\xc1\x46\x92\xa4\x49" "\x92\xbc\x5a\x9f\x6a\xe7\xdb\xe7\x25\x49\x3a\x3f\x49\x92\x7d\xfb\xb7\xef" "\xdd\xbf\x63\xd7\x67\x57\xff\xd6\xee\x03\x7b\x77\x6d\xdf\xb9\x7a\xfb\xfe" "\xd5\x63\xbb\xf6\xef\xbd\x6d\xf5\xdf\xfa\x9b\xab\xf7\x8e\xed\xd9\xb9\xfd" "\xb6\x89\xef\xae\xbb\x68\xfd\xd4\xe3\x96\x4c\x66\x4b\x92\x25\xe9\xb9\x33" "\xc6\x32\x3e\x3e\x3e\x9e\x24\xc9\xea\xe6\x6d\x79\x7f\xbf\xf7\xd1\xa7\xfe" "\xdf\xe6\x47\xff\xf2\xd3\x49\xb2\xee\xac\xef\xaf\x6a\x84\xf5\xbc\xf7\xbf" "\xbe\xf2\xa1\xa5\x25\x5f\x0b\xd2\xd1\xf1\x8d\xff\xe2\xd2\x07\x6f\x9f\xf7" "\xbf\xce\x9c\xda\x30\x92\x8d\x6b\x24\x1a\xd7\x48\xeb\xb6\x7c\x04\xc3\xa3" "\x2f\xfe\xd9\x07\x9f\xfe\xe1\xc4\xb8\xde\xde\x6e\x5c\x0f\xbf\x70\xcd\xff" "\x6d\x19\xd0\xe4\x86\x93\x79\x32\xb5\xc1\xa4\x36\x79\x67\x30\x5d\x50\x3a" "\x8e\xe9\x51\x9f\x1c\xcf\xe4\xfe\x6a\xdc\xb4\x63\xe7\xd8\xba\xea\xfd\x9b" "\x06\xfb\xf7\xdd\xcf\xfd\xe1\xb1\x7f\x77\xeb\xe6\x7f\x3a\xb5\x7f\x87\xc2" "\x3a\x3a\xdc\xbf\x13\x7b\xb5\x31\xfe\xc0\x4f\xef\x79\xf7\x5d\x1f\x1c\x7b" "\xff\x69\xfc\xbc\x57\xed\xef\xa6\x12\x26\xc7\x97\xef\xbf\xa1\x6c\x7f\x9f" "\x91\xd5\x75\x46\x50\x57\x2d\xa8\xeb\x96\xd5\x2f\x1f\xfd\x67\xff\xf6\x3f" "\x7d\xf5\xae\x64\x5d\xe3\xa7\xe7\xcd\xec\xbb\xaa\xae\x81\x6c\x02\x0c\xa4" "\xcb\x3b\xea\x37\xef\x61\x41\xba\xb8\x25\x76\x28\x8b\xcf\x9f\xf1\xfc\x71" "\xef\xdd\x7f\xf3\x9e\xf7\xee\xbb\xed\xf6\x8b\x76\xdc\xbc\xfd\xb3\x63\x9f" "\x1d\xdb\xb5\x7e\xfd\xa5\x1b\x2e\x5e\x7f\xf1\x25\x1b\xd6\xbf\x77\xb2\xf4" "\xa9\xaf\x7d\xab\x3f\xef\xff\xdd\x1d\xd6\xbf\x30\xcb\xb4\x30\x5d\x51\xba" "\xdf\x8a\x5b\xf3\x7e\xcf\x9b\xfc\x5a\x4f\xb2\x61\xe7\x37\x4d\x77\x5a\x0d" "\x24\xc3\x53\xb7\x85\xfd\x9c\x87\x17\xab\x1e\xce\xbe\x37\x9c\x2e\x99\x91" "\x6b\xbc\x44\xfe\xbd\xa3\xdf\xd9\xbe\xe5\xd5\x1f\xde\xfe\x74\xf4\xca\x4b" "\x9f\x9a\xea\x71\x7e\xb2\x68\xea\x36\x5d\x19\x44\xee\x2c\x3c\xb0\x3e\x3d" "\xe0\xb2\xfe\x4f\xcd\xeb\x72\xf7\xef\x0e\xed\xcc\xbf\x76\xf6\xba\xac\x1a" "\x57\xd5\xbc\x9a\x18\x57\xf5\xbc\x6a\x1e\x51\x9b\xe3\xd8\x0b\x17\xdc\xff" "\xd3\x27\xbe\xf8\xcf\xaf\xeb\xe0\x78\xd1\x14\x3a\x39\xbe\x7c\x9c\x0b\x26" "\x5e\x2e\x17\x27\x4d\xaf\xdb\x99\xfb\xaa\xac\xae\x0e\x9e\x9f\xd1\xb2\xfd" "\x70\xc3\x45\x7b\xff\xf0\xb6\x1d\x5b\x0e\x55\x1d\xcf\x9b\x9f\x99\xe6\xaf" "\x05\xe9\xe8\xf8\xff\x5c\x99\x7e\xfc\xc0\xbe\x3f\xdb\x3b\xb5\xe1\x94\xbc" "\x5f\x36\x0f\xa8\xcb\xf7\xcb\xe9\x51\x9f\x1c\xcf\xe4\xfe\x1a\xca\x9e\x8f" "\xd3\x75\xff\x0e\x26\xf5\xac\xae\xe1\xd2\x71\x6d\x4a\x9f\xf8\xc0\xbb\x6f" "\x7e\xe6\x57\xa6\xc7\x37\x6f\x5e\x72\xeb\xf6\xfd\xfb\xf7\x5e\x3c\xf5\xf5" "\xcd\x5a\xd7\x9f\xcf\x3b\x73\xe9\x8e\xbb\x57\x9c\x3b\xa3\xae\x4b\xa6\xbe" "\x56\x1d\xf7\xcf\x2b\xb4\x2b\x8f\xfb\xb5\xf2\xfa\xaa\x8e\xfb\xc5\x7e\x4e" "\xc6\x97\xe7\x5b\x5d\x68\x0f\x27\xf5\xae\xde\x27\x36\xff\xe2\xc7\xf7\xdf" "\x73\xd5\xc1\xa5\xe1\xfb\xc4\xd1\x4e\xdf\x27\x7e\xbb\xa5\x55\xef\xf1\x7d" "\xa2\x16\xbc\xde\x1f\xf8\xcb\xaf\xac\x7e\xed\xba\x4f\xbd\x56\x35\x9f\xae" "\xdc\xb7\xe2\xce\xa5\x25\x5f\x8b\xe5\x8d\x8e\x7f\xe3\x0f\x7e\xf5\xe2\xf7" "\x5f\x73\xd5\x87\xa7\x36\x9c\x92\xe3\x50\xf3\x80\xba\x3c\x0e\x4d\x8f\x3a" "\x1b\x4f\xbe\xbf\x26\x8f\x43\x97\x9c\x3e\x75\xbc\x71\xcf\x73\xcb\x0b\x31" "\x1d\x1d\x3f\xef\xeb\xef\xba\xfa\xf5\xe3\x5f\xf8\xe4\xd4\x86\xaa\xfd\x3b" "\x1d\x5d\xb6\x7f\xd7\x57\x1f\xe7\xeb\x41\x5d\xd7\x0d\xbc\x63\xf1\x83\x3f" "\x59\xf1\x8e\xfe\xcd\xdf\x7d\x5b\xff\xea\x82\xf7\x2c\x58\x78\x9a\xcd\xdf" "\xa1\x6c\xff\x0e\x05\xfb\x77\x7a\xd4\xd9\x78\xea\xcd\xfb\xf7\x3d\x37\xec" "\xde\x79\xe3\x54\xfb\xf4\x3d\x6f\x9b\x32\x58\xb1\xfe\xc9\xdf\x77\xf6\xdd" "\x76\xfb\xe7\xb7\xef\xdc\x39\xb6\x77\x5f\x67\x75\x75\xfa\x7e\x9a\xf7\x53" "\xdc\xcb\xdd\xbe\x9f\xe6\xef\x1e\x4b\x2a\xea\xca\x9f\xaf\x93\x75\xcd\xdd" "\x9d\x4e\xf6\x57\xa7\xaf\xb7\x7c\xfc\x37\x16\x72\x74\xfb\x7a\x03\xc8\x9d" "\x7c\x5f\x98\xd7\xb2\xbd\x78\xfc\xcc\xaf\xfb\xad\x3a\x23\xd9\xfc\x9e\x2f" "\x7e\xeb\x85\x74\xf5\xd4\xfb\x65\xbf\xae\xb7\xe6\xfd\x9c\x53\x78\x63\xee" "\xf6\x7a\x6b\xd5\x3a\xe9\x1d\x85\x76\xeb\x3a\xa9\x91\x34\xd5\x3d\x65\xe6" "\x3a\x69\xf2\x21\x55\xeb\xa4\x62\x3f\x55\xeb\xa4\x0b\x0a\xed\xea\x75\xcc" "\xfd\xa5\x95\x44\xcf\xdf\x40\xf6\xce\x5b\x76\xdd\xb4\x30\xde\xc6\x44\x86" "\x68\x7e\x2c\xcb\xf2\x2f\xcb\xda\xf9\xf9\xe6\xaa\xf7\x24\x97\xd6\x9f\x7e" "\xe7\x47\xd3\xd1\xce\xe6\x47\xa7\xe7\xd3\x79\x3f\x7f\xa3\xb0\x83\xba\x3d" "\x9f\xae\x9a\x1f\x6b\x92\xf2\x71\xf5\x7b\x7e\xbc\xab\xf0\xa0\xea\xe7\xfb" "\x50\xe9\xc8\x86\x82\xe7\xa3\xea\xf9\x5e\xd3\x92\x68\x7c\xbc\xd7\x75\xf9" "\x48\x30\xea\x7c\x5d\x3e\x9c\xa4\x5d\xe5\x1f\x1d\x7b\xec\xc8\xd7\xae\x7d" "\x66\x79\x98\x7f\x5b\x2d\xcb\x5f\xeb\x2a\xff\xf3\xf5\x17\x4e\x7c\xf5\xd8" "\xb2\x85\x61\xfe\x43\x79\xfe\x46\x57\xf9\xd7\x7c\x79\xe1\x1d\xc7\x0f\x6e" "\x1a\x0c\xf3\x3f\x9e\xef\x9f\xa1\xae\xf2\x5f\x76\xfd\xaa\x0d\xe7\x1e\x3b" "\x70\x4b\x98\x7f\x5d\x3e\xfe\xf9\x5d\xe5\xff\xc1\x83\x6b\x5f\xbf\xfe\xd0" "\x37\x9e\x09\xf3\x27\x79\xfe\xe1\xae\xf2\x5f\xbd\xfe\x91\xcb\x3f\xb6\xe2" "\xde\x47\xc3\xfc\x2f\xa6\x59\x3f\x13\xaf\xdd\x24\x39\x7c\x7c\xfd\x4d\x53" "\xed\x34\x19\xc8\xe6\x7f\x3e\x8e\x81\x96\x71\x25\xc5\x76\x3a\xdd\x9e\x57" "\x56\x47\x52\x6f\x8e\xaf\xe5\x61\x59\x07\xf5\x34\x6d\xdd\x9e\xc7\x15\xb6" "\xe7\x75\x34\xb2\xed\xe7\x37\x8d\xb1\xcc\xe6\x60\x7b\xfe\xaa\x1d\xca\x5e" "\xd8\x3f\xcb\xdb\x49\xf1\x4e\xfb\xed\xf9\xe1\x29\x1f\xd7\xd1\xe0\xfd\xe7" "\x54\xa9\x35\x9d\x7b\x94\x6d\xaf\xba\x3e\xd9\x2f\xaf\xfe\x68\xd9\xef\x35" "\xb7\xf3\xff\xff\xcf\xe7\xc0\x60\x63\xea\xb9\xbb\xa4\xb0\xbf\xaa\xde\x3f" "\x8a\x47\xef\x3c\x5f\x78\x1d\x36\xb8\x84\x51\x75\xbe\x30\xf3\xff\xdf\x16" "\x74\xf5\xfa\x7b\xf9\xb1\x27\x57\xd6\x97\x3f\xf4\x52\x78\x5d\xf5\x48\x47" "\xd7\x55\x07\x92\x64\x4f\xcb\x86\x05\x15\xd7\x55\x7b\x1d\x6f\x78\xbc\x38" "\x92\x1f\x4f\x7b\x3b\x1e\x2d\x8b\xf2\xbf\x98\xe7\xef\xed\xfd\x20\xcc\x9f" "\xbd\x1f\x54\xcd\xb3\x77\x16\xda\x95\xf3\x6c\xa0\xbc\xbf\xaa\x79\x56\x3c" "\x4f\x19\x4e\x16\x75\x55\xf7\x96\x97\xee\xdb\xb6\xe7\x89\xe7\xd6\x86\xf3" "\x6c\xe3\xd4\x0b\xbe\xfa\x3c\xe8\xa1\x96\xd6\xa2\xca\x79\xd6\xdb\xff\x4b" "\x87\xf3\xec\xa9\xb4\x2f\xfb\x23\xcc\xbf\xb1\x3f\xe7\x35\xe1\x3c\xcb\xce" "\x6b\xaa\xe6\xd9\x85\x85\x76\xef\xf3\xac\xf5\x7c\xf4\xe3\xd9\xed\xad\x85" "\xf8\xe1\xec\x0a\xf1\x6c\xeb\x3e\x71\xf9\xf7\x5f\x79\x7d\xe4\x8a\x27\xc3" "\x79\xf6\x78\xa7\xf3\xec\xf7\x5b\x5a\x23\x95\xf3\xac\xb7\xf3\xdb\xf0\x79" "\x9a\x3e\xbf\x9d\xeb\xf3\xf3\x37\xf7\xf9\x67\x5f\xcf\x0f\xa7\xda\xb5\x42" "\xbb\xfc\xfc\x30\xfb\xef\xdc\xb9\x3a\x3f\xdc\x14\x6c\x9f\xed\xf9\xe1\xf0" "\x8c\x3b\x27\xeb\x48\xde\x8c\xe7\x87\xc1\x71\x06\x00\xda\xf9\xee\x03\xb7" "\xfd\xef\xe6\x76\xbe\xfe\xcf\xdf\xbb\xf3\xf5\xff\xb7\x0a\x8f\xeb\x75\x5d" "\x59\xfc\x79\xa8\x5c\xbf\xd6\x95\x61\xfe\xc7\xfb\xb3\x5e\x09\xcf\x53\xa7" "\xd7\x2b\x73\xbd\xde\x9a\xeb\xf3\xec\xb9\x5d\x6f\x39\x8f\x0f\xf2\x4f\x5f" "\x47\x8e\xae\x0b\xd5\xfa\x74\x5d\x68\x6e\xd7\x95\xd6\x21\x59\x3b\x29\xde" "\x99\x62\x1d\x02\x00\xc0\x1b\xe1\xfc\x7f\xfd\x95\x5f\x6f\x6e\xe7\xeb\xff" "\xe9\x9f\x7b\xcb\x7e\xff\xff\xb9\xbc\x5d\x78\xbc\x75\x6e\x90\xff\x94\xad" "\x73\xe7\xfa\x3a\xc9\x5b\x75\x1d\x7d\x7a\xfc\x7c\x45\xf5\x75\xb0\xb9\xbe" "\x4e\x35\x9b\xeb\x00\xff\xf9\xac\xfc\x7b\xae\x03\x94\x73\x1d\xe0\xd4\x8e" "\x0b\x00\x80\xd9\xd9\x7a\xd3\xde\xb1\xb1\x7d\x7b\xb6\xdf\x30\xb6\x75\xc7" "\xae\x1d\xfb\xa7\xb7\x0f\x4c\xae\x9c\x66\xfe\x9c\xea\xdf\xce\x6e\x37\x16" "\xf2\x54\xfd\xfc\x74\x59\xfc\x82\x36\xf1\x9f\x0c\xf3\xb7\x8e\xe7\x7d\x41" "\x7c\xa4\x31\xf9\x33\xaf\x49\xf2\x99\x1b\x3e\x77\xc9\xd6\x1b\xc7\x6e\x99" "\x6d\xfd\x51\x7f\x55\xf5\x97\xc5\xb7\xab\xbf\xb8\xbe\x88\xea\xdf\x10\xc4" "\x47\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\x5f\x15\xe6\x6f\x1d\xcf" "\xfb\x83\xf8\x48\xaf\xf5\x47\xfd\x55\xd5\x5f\x16\xdf\xae\xfe\x4f\x85\xf9" "\x5b\xc7\xf3\xab\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x9f\x8c\x1f\x4f\x4b" "\xf2\x97\xc7\x17\x7f\x1f\x2c\xaa\xff\xd7\x82\xf8\x48\xaf\xf5\x47\xfd\x55" "\xd5\x5f\x16\xdf\xae\xfe\xab\xc3\xfc\xad\xe3\xf9\x40\x10\x1f\xe9\xb5\xfe" "\xa8\xbf\xaa\xfa\xcb\xe2\xdb\xd5\x7f\x4d\x98\xbf\x75\x3c\x7f\x27\x88\x8f" "\xf4\x5a\x7f\xd4\x5f\x55\xfd\x65\xf1\xed\xea\xbf\x36\xcc\xdf\x3a\x9e\xcb" "\x83\xf8\x48\xaf\xf5\x47\xfd\x55\xd5\x5f\x16\xdf\xae\xfe\x4f\x87\xf9\x5b" "\xc7\x33\x1a\xc4\x47\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\x6f\x09" "\xf3\xb7\x8e\xe7\xef\x06\xf1\x91\x5e\xeb\x8f\xfa\xab\xaa\xbf\x2c\xbe\x5d" "\xfd\xd7\x85\xf9\x5b\xc7\xf3\xc1\x20\x3e\xd2\x6b\xfd\x51\x7f\x55\xf5\x97" "\xc5\xb7\xab\xff\x37\xc2\xfc\xad\xe3\xf9\x7b\x41\x7c\xa4\x6d\xfd\xa5\xe3" "\xeb\xac\xbf\xaa\xfa\xcb\xe2\xdb\xd5\x7f\x7d\x98\xbf\x75\x3c\xbf\x1e\xc4" "\x47\x7a\x7d\xfe\xa3\xfe\xaa\xea\x2f\x8b\x6f\x57\xff\x6f\x86\xf9\x5b\xc7" "\xf3\xa1\x20\x3e\xd2\x6b\xfd\x51\x7f\x55\xf5\x97\xc5\xb7\xab\x7f\x6b\x98" "\xbf\x75\x3c\x1f\x0e\xe2\x23\xb3\xad\xbf\x28\xea\xaf\xaa\xfe\xb2\xf8\x76" "\xf5\x6f\x0b\xf3\xb7\xd6\xff\xf7\x83\xf8\x48\xaf\xcf\x7f\xd4\x5f\x55\xfd" "\x65\xf1\xed\xea\xdf\x1e\xe6\x6f\x1d\xcf\x47\x82\xf8\x48\xaf\xf5\x47\xfd" "\x55\xd5\x5f\x16\xdf\xae\xfe\xcf\x84\xf9\x5b\xc7\xf3\xd1\x20\x3e\xd2\x6b" "\xfd\x51\x7f\x55\xf5\x97\xc5\xb7\xab\xff\x86\x30\x7f\xeb\x78\x3e\x16\xc4" "\x47\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\x17\x3f\xef\x30\xaa\xff" "\x1f\x04\xf1\x91\x5e\xeb\x8f\xfa\xab\xaa\xbf\x2c\xbe\x5d\xfd\x63\x61\xfe" "\xd6\xf1\x5c\x11\xc4\x47\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\xdf" "\x14\xe6\x2f\xff\xdc\x80\x62\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x2f\x8b\x6f" "\x57\xff\x67\xc3\xfc\xad\xe3\xf9\x44\x10\x1f\xe9\xb5\xfe\xa8\xbf\xaa\xfa" "\xcb\xe2\xdb\xd5\xff\xb9\x30\x7f\xeb\x78\xae\x0c\xe2\x23\xbd\xd6\x1f\xf5" "\x57\x55\x7f\x59\x7c\xbb\xfa\x77\x84\xf9\x5b\xc7\xb3\x31\x88\x8f\xf4\x5a" "\x7f\xd4\x5f\x55\xfd\x65\xf1\xed\xea\xff\xad\x30\x7f\xeb\x78\x3e\x19\xc4" "\x47\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\x7f\x3e\xcc\xdf\x3a\x9e" "\x4d\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x2f\x8b\x6f\x57\xff\xce\x30\x7f" "\xeb\x78\xae\x0a\xe2\x23\xbd\xd6\x1f\xf5\x57\x55\x7f\x59\x7c\xbb\xfa\x6f" "\x0e\xf3\xb7\x8e\xe7\x53\x41\x7c\xa4\xd7\xfa\x27\xfa\xfb\x57\x25\x79\xab" "\xea\x2f\xab\xa7\x5d\xfd\xbb\xc2\xfc\xad\xe3\xd9\x1c\xc4\x47\x7a\xad\x3f" "\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\xef\x0e\xf3\xb7\x8e\xe7\xea\x20\x3e\xd2" "\x6b\xfd\x51\x7f\x55\xf5\x97\xc5\xb7\xab\x7f\x4f\x98\x7f\x79\xbd\x79\xfb" "\x35\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x2f\x8b\x6f\x57\xff\x17\xc2\xfc" "\xad\xe3\xb9\x36\x88\x8f\xf4\x5a\x7f\xd4\x5f\x55\xfd\x65\xf1\xed\xea\xdf" "\x1b\xe6\x6f\x1d\xcf\xa7\x83\xf8\x48\xaf\xf5\x47\xfd\x55\xd5\x5f\x16\xdf" "\xae\xfe\x7d\x61\xfe\xd6\xf1\x6c\x09\xe2\x23\xbd\xd6\x1f\xf5\x57\x55\x7f" "\x59\x7c\xbb\xfa\xf7\x87\xf9\x5b\xc7\x73\x5d\x10\x1f\xe9\xb5\xfe\xa8\xbf" "\xaa\xfa\xcb\xe2\xdb\xd5\x7f\x20\xcc\xdf\x3a\x9e\xdf\x08\xe2\x23\xbd\xd6" "\x1f\xf5\x57\x55\x7f\x59\x7c\xbb\xfa\x6f\x09\xf3\xb7\x8e\xe7\xfa\x20\x3e" "\x32\xa3\xfe\x0d\xb3\xab\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\x1f\x0c\xf3" "\xb7\x8e\xe7\x37\x83\xf8\x48\xaf\xcf\x7f\xd4\x5f\x55\xfd\x65\xf1\xed\xea" "\x2f\x7e\x0e\x64\x54\xff\xd6\x20\x3e\x32\x5d\xff\xfe\xbd\x63\x63\x5b\x0f" "\xec\xb9\x71\xfb\xfe\xb1\xad\xbb\x76\xdf\x38\xb6\x6f\xeb\xc1\xbd\x3b\xf6" "\xef\x1f\xcb\x4e\xd4\x7a\xfd\xbd\xb2\xf8\xf7\x82\xde\xe0\x5f\x64\xa1\xad" "\x96\xd7\xc7\xd4\x24\xd9\xb1\x6b\xdf\xd8\xde\x99\xc7\xef\xf9\x6d\xe7\x6f" "\xf3\x9c\x48\x26\x7f\xed\x69\xfe\xd4\x6d\xfa\xf6\x8e\xe2\x8b\x1f\x7b\xdd" "\xed\xac\x39\x5d\xe6\xfb\x40\xd2\x68\xbb\xbf\xce\x29\xb4\xcf\xcc\x3e\x8f" "\xf6\xcc\xe0\xf3\x68\x8b\xf1\x79\xda\x15\x93\x77\x66\x7e\x1e\x6d\xb1\xdb" "\x46\xc5\xe7\xb8\x56\x1d\x9f\x8a\xfd\x47\xc7\xa7\xb4\x4d\x7c\xd9\xf1\x35" "\x3a\x9e\x55\xbd\xff\xcd\xfa\xf8\x57\x39\xbf\x87\xda\xd6\x5f\xdc\x3c\x98" "\xfd\x62\xdf\x60\x7a\x56\x47\xf1\x49\x9b\xbf\xef\xd6\xd9\x7c\xed\xed\xf7" "\x4e\xc3\xf9\xfa\x62\x67\xf3\xb5\xf8\xb9\xeb\x55\xf3\xb5\x18\x3f\xdb\xf9" "\x3a\xdc\xe3\x7c\x2d\xf6\x1f\xcd\xa7\x5a\x9b\xf8\x76\xe7\x43\x9d\xce\xd7" "\x2d\x41\x7c\xae\xf3\xf9\x99\x86\xf5\x96\xcd\xab\xd9\xfe\x9d\xc1\x3c\xed" "\xac\xfe\xce\x60\xe1\xcb\x0c\x5d\xfc\x2d\x83\xce\x5f\x0f\xbd\xfd\x1e\x79" "\xf8\x7a\xc8\x06\x5d\xf5\x7a\x28\xfe\x1e\x77\xd5\xeb\xa1\x18\x3f\xdb\xd7" "\xc3\xfc\x1e\x5f\x0f\xc5\xfe\xab\x5e\x0f\x65\xf1\xed\xd6\xc7\x9d\xbe\x1e" "\xae\x09\xe2\x23\x9d\xcf\x87\xde\x3e\xb7\x20\x9c\x0f\xeb\x3a\x9b\x0f\xc5" "\xbf\x63\x55\x35\x1f\x8a\xf1\xb3\x9d\x0f\x43\x3d\xce\x87\x62\xff\x55\xf3" "\xa1\x2c\xbe\xdd\xf5\xc2\x4e\xe7\xc3\xa7\x82\xf8\x4e\x75\x3e\x3f\x7a\xfb" "\x5c\x91\x70\x7e\x6c\xeb\x6c\x7e\x14\xff\x9e\x44\xd5\xfc\x28\xc6\xcf\x76" "\x7e\xa4\x3d\xce\x8f\x62\xff\x55\xf3\xa3\x2c\x3e\xfa\xff\x94\x64\x16\xf3" "\xe3\x93\x41\x7c\xae\xe5\xfd\xf3\xa6\x7d\x93\x8b\xfa\x1d\xdb\x77\xee\xb8" "\xbd\xf0\x03\x18\x23\xd9\xfb\xe7\x1b\xfd\x7e\x78\x4a\xde\x97\xff\xea\xd7" "\xfe\xfc\x67\x53\x5f\xb2\x71\xd4\x66\x8c\xa3\xea\x7c\x22\x2d\x8c\x63\x71" "\x36\x92\xc5\xd1\xdf\x3d\x0c\xc6\x7d\xc3\x7f\xf9\x37\x9b\xbf\xf5\xf3\x2f" "\x7e\x25\x49\xd6\x9d\x55\x5f\x19\x8f\xfb\xe4\x90\x4f\x7e\x29\x48\x47\xc7" "\x97\xdc\xb9\xe6\x6b\xd7\xbe\xfd\xa5\x0f\x4e\x8c\xbf\xd6\x76\xfc\xd3\x91" "\xf9\xdf\x2d\xae\xf8\x7b\xc7\xc5\xf8\xbc\x9e\xc6\xce\xdd\xfb\xf6\xff\xca" "\x4d\xbb\x0f\xec\xea\xf4\x27\xae\xda\xcb\x3f\x0f\xa5\x36\xdd\x9e\xa3\xcf" "\x43\xc9\x36\xd6\x3b\xfc\x7c\x93\xe8\xf7\x09\x66\xfb\xf9\x26\x03\x33\xee" "\x9c\x9e\x3a\xfe\x7c\x13\x80\xb7\x88\x33\x1f\x7f\x6a\x51\x73\x3b\xff\xfc" "\xbf\xfc\xfd\x68\x59\x76\xec\x9b\x9f\x1d\x00\xf3\xed\x9d\x9f\x67\xf7\xf6" "\xf9\x7a\xe1\x79\xf6\xa1\xce\xce\xb3\xd7\x16\xeb\xad\x38\xcf\x2e\xc6\xe7" "\xf5\x76\x7a\x9e\x5d\xeb\xf1\x3c\xbb\xd8\x7f\xd5\x79\x76\x59\x7c\xbb\x9f" "\xdb\xeb\xf4\x3c\xfb\x13\x41\xfc\x6c\xb5\xce\x93\x89\x09\x32\x39\x3f\xc6" "\xb6\x1e\xdc\xbd\xb7\xf9\x67\xe2\xe6\xfa\xef\xd6\xf6\x7f\xbc\x73\xfb\x77" "\x7c\x7b\x1f\xdf\xdc\x7e\x6e\x63\xb7\x3a\x1f\xff\xdc\x7e\x2e\xe4\xdc\x8f" "\x7f\x6e\xff\x0e\xf0\xdc\x8f\x7f\x6e\xff\xce\x73\xb7\x4e\xd9\x7a\x29\xfb" "\xb0\xc8\xaa\xcf\x8f\xac\x5a\x47\x45\xbf\x97\x3e\xdb\x75\xd4\xbc\x19\x77" "\x4e\x4f\xd6\x51\x00\x70\xfa\xfb\x27\x7b\x7f\xf4\x2f\x9b\xdb\xf9\xfa\x3f" "\xff\x25\x83\x7c\xfd\xff\xa5\xac\x5d\xef\x73\xff\x73\xbd\x8e\x8a\xd6\x95" "\x83\x7d\x5a\x57\xce\xf5\x79\xf2\x9b\xff\xf3\xf7\xe7\x76\x1d\x64\x3d\xd0" "\xa6\xb3\xd3\x80\xf5\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\xb9\xdf\xff\xef\xff\xf1\x9b\xcd\xed\xc1\xc6" "\xb2\xc9\xdb\xe7\x7f\x67\xdf\x6b\x9f\x38\xe7\x43\xdf\xbd\x67\xec\xf8\x9d" "\x1f\xf9\xa3\x9b\xef\x3e\xfb\x8f\x97\xbe\x36\x72\xef\x15\x1f\x7f\x60\xc3" "\x87\xbf\xb7\xed\x4f\x16\x8f\xae\x5a\x33\x76\xd9\xd7\x0f\x5f\x79\xdf\xbd" "\xcf\x7e\xe0\xe7\xcf\x3e\xfc\xe8\x15\x95\x1d\x8d\x4c\xdd\x5c\x98\x35\x87" "\x92\x24\xfd\x8b\x34\x49\x56\xfd\xe8\xf0\xc3\xf7\x7d\xfb\x4f\xcf\x9e\xd8" "\x96\x4e\xf4\x9f\x8e\xdc\x95\x2c\x5e\x9c\x2e\xf9\xe6\xe2\xb4\x90\x61\xdd" "\x89\x24\x49\x6e\x9c\x1e\x67\xeb\x37\x0f\x1f\x5f\x7f\xd3\xc4\xed\xdd\x5f" "\x1a\x6c\xd9\x7e\x66\x21\x49\xb1\xae\x64\xb8\x9e\x8f\xa7\x65\x9c\xc9\xad" "\x95\x15\xf1\x26\x34\x94\xcd\xb3\x3b\xb6\x7e\xe6\x89\x23\x9f\x1f\xfd\xf6" "\xe1\xd5\x7b\xd6\xff\xe4\xd8\xa5\xbb\xef\x3a\x19\x92\x0e\x35\xcd\xa7\x24" "\x39\x63\x5b\xf3\xe3\x07\x92\x24\x99\x9f\xfd\x9b\x90\xcf\xb6\x65\xf9\x83" "\xb3\xdb\x8d\x49\x92\x2c\x68\x7a\xdc\xfb\x2a\xc6\x75\x41\x87\xe3\xbf\x28" "\x68\xaf\xcc\x6e\xe7\x65\xb7\xc3\x15\x79\xf2\xef\x9f\x5f\x68\x37\x3a\x1c" "\x47\xa3\x70\x3b\xd8\xe1\xe3\xba\xf4\xff\x6b\x73\x9b\x7f\x86\xe2\xfe\x2b" "\x1e\x8c\xe6\x4a\x5e\xe7\x19\xd9\xed\xd3\xd9\xed\x85\xb3\xcc\x53\xcf\xff" "\xa5\x49\x2d\x4d\x1a\xd3\xc3\xdf\x99\x9e\x9c\x23\x49\xd3\xf3\x96\x26\xe9" "\xe4\xdc\x1e\x9a\x6e\xd7\x26\xdb\xc9\x74\x3b\x29\xb6\xd3\x42\xbb\x56\x68" "\xd7\x07\x0a\x75\x4d\xf6\x9b\xed\xd8\x7a\x9a\xb6\x6e\xcf\xe3\x0a\xdb\xf3" "\xc3\x71\x23\xdb\x7e\x7e\xf3\xb1\xba\xc4\xa6\x60\xfb\xf2\xec\x76\x28\x7b" "\xa1\xfe\x2c\x6f\x27\xc5\x3b\x53\x86\x67\xdc\x39\x59\x47\xd2\x34\xae\xa3" "\xa7\x6a\x62\x04\x6a\xc1\x6b\x2f\xdf\x3e\x3d\xbc\xec\xc9\x18\xce\xb6\x0d" "\xa7\x4b\x66\x3c\x66\xbc\x44\xfe\xbd\xa3\xdf\xd9\xbe\xe5\xd5\x1f\xde\xfe" "\xf4\x48\x30\x8e\xf4\xa9\x34\xcb\x9f\x76\x95\x7f\x74\xec\xb1\x23\x5f\xbb" "\xf6\x99\xe5\xcb\xa2\xfc\xdb\x6a\x59\xfe\x5a\x57\xf9\x9f\xaf\xbf\x70\xe2" "\xab\xc7\x96\x2d\x0c\xf3\x1f\xca\xf3\xd7\xbb\xca\xbf\xf9\x17\x3f\xbe\xff" "\x9e\xab\x0e\x2e\x0d\xf7\xcf\xd1\x7c\xff\x34\xba\xca\xbf\xe6\xcb\x0b\xef" "\x38\x7e\x70\xd3\xe0\xea\x28\xff\xe3\x79\xfe\xa1\xae\xf2\x5f\x76\xfd\xaa" "\x0d\xe7\x1e\x3b\x70\x4b\x38\xfe\x75\xf9\xfe\x99\xdf\x55\xfe\x1f\x3c\xb8" "\xf6\xf5\xeb\x0f\x7d\xe3\x99\x30\x7f\x92\xe7\x5f\xd0\x55\xfe\x97\x1f\x7b" "\x72\x65\x7d\xf9\x43\x2f\x85\xf9\x8f\xe4\xfb\x67\xb8\xab\xfc\x57\xaf\x7f" "\xe4\xf2\x8f\xad\xb8\xf7\xd1\x70\xff\xbf\x98\xe7\x5f\xd4\x55\xfe\x2d\x2f" "\xdd\xb7\x6d\xcf\x13\xcf\xad\x0d\xe7\xe7\xc6\x7c\xff\x8c\x74\x95\xff\xc4" "\xe5\xdf\x7f\xe5\xf5\x91\x2b\x9e\x8c\x8e\x9d\xe9\xe3\xa7\xfa\x1d\x16\xe0" "\xad\xe5\x6d\xd9\x39\xd6\xfd\x59\xbb\xdb\x75\x66\xaf\x9a\xd6\x0b\x8f\xac" "\x6e\x4c\x9d\xf3\x2d\xcc\xfe\x2d\xea\x67\x47\x05\x69\xd3\xda\x05\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x22\xbb\xc7\xeb\x07\x9a\xdb\xaf\x3c\xf3\xc0\x95\x9f\xfb\x1f" "\x5b\xff\x5b\x23\x4d\x92\x34\x78\xcc\x78\x89\xfc\x7b\xf5\x79\xa3\xa3\xab" "\xbb\x18\xc7\x9a\x2f\x2f\xbc\xe3\xf8\xc1\x4d\x83\x79\x7b\xa2\xef\x65\x5d" "\xe4\x01\x00\x00\x00\x66\x5a\xf1\xf2\x17\xbf\xd0\xdc\xce\xd7\xe1\xb5\xac" "\x9d\x26\x43\xc9\xb2\xe4\x60\x3a\x3f\x59\x51\xfa\xf8\xfc\x1a\xc1\x8a\xbc" "\x95\xb6\x6e\x2f\x5e\x43\x98\x7f\x32\xb2\x2f\x79\x6a\x7d\xca\x53\xef\x53" "\x9e\x46\x9f\xf2\x0c\xf4\x29\xcf\xbc\x3e\xe5\x19\xec\x53\x9e\xa1\x8a\x3c" "\x43\x49\x67\x79\xe6\xb7\xcd\x53\xeb\x78\x3c\x0b\xfa\x94\x67\xb8\x4f\x79" "\x16\xf6\x29\xcf\xa2\x3e\xe5\x39\xa3\xfb\x3c\x8d\xe6\x3c\x67\xf6\x69\x3c" "\x23\x6d\xf3\x74\x3e\x0f\x17\xf7\x29\xcf\x92\x3e\xe5\x79\x5b\x9f\xf2\x2c" "\xed\x53\x9e\xb3\xfa\x94\xe7\xed\x7d\xca\x73\x76\x9f\xf2\x14\xaf\x29\xcf" "\x76\x1e\x2e\xca\x22\xcf\x89\xf2\x4c\xde\xa9\x57\xe6\x69\xa4\xf5\xe9\x6f" "\x94\x5d\x4f\xcf\xfb\x39\xb7\xc7\x7e\x86\x3b\xec\xa7\x78\xcd\x7e\xb6\xfd" "\xcc\xef\xb0\x9f\x0b\x7a\xec\x67\xa8\xc3\x7e\xde\xd5\x63\x3f\x69\x87\xfd" "\xac\x2d\x3c\xae\x36\xcb\x7e\x6a\x15\xfd\xe4\xf3\xf6\xd6\xa8\x9e\xbc\xd5" "\xe1\xfc\xbf\xad\x4f\x79\x6e\xef\x53\x9e\x3b\xfa\x94\xe7\xb7\xfb\x94\xe7" "\x1f\xf6\x29\xcf\x3f\xea\x53\x9e\x3b\x7b\xcc\x03\x10\xf9\xdd\x67\x2f\xfc" "\x83\xe6\x76\xbe\xfe\xcf\xd7\x9f\x69\x32\x92\x0c\x36\x2e\x49\x16\x64\x47" "\x9c\xe2\x55\x80\x7c\xbd\x7b\xde\xe4\xd7\x99\xef\x77\xd1\x01\x29\xcf\xb7" "\xb2\xb0\x7d\xa0\x2a\x5f\x71\x81\x5d\xc8\x77\xde\x6c\xc7\x57\xbc\x80\x50" "\xc8\xf7\x8e\xb6\xf9\x1a\x33\xd6\xab\x25\xf9\x1a\xcd\xf9\xd6\xf4\x29\x1f" "\x00\x00\x00\xcc\xc6\x3f\x3e\x71\x47\xcb\x7f\xcd\xcd\x5c\xff\x2f\x4b\x06" "\x1b\x4b\xa7\xd7\xaf\xef\x2c\x3c\xbe\x72\xbd\x5e\xfc\x8f\xec\x4c\x9e\xef" "\xc2\x3e\xe5\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\x80\xbf\x66\xd7\x5e\x63\xa4\xaa\xcf\x06\x80\xff\xcf\xce\xec" "\xcc\xbc\xeb\x85\xd5\x00\x0e\x72\xdb\x00\xaf\x68\x8c\x5c\x24\xbc\x79\xf5" "\x7d\xab\x13\x92\x9a\xd8\x54\x17\x6b\xc1\x0b\x31\x2b\xd5\xd5\x25\xae\xa0" "\x2c\xa8\xd0\x36\x58\x6d\x0a\xd9\xc4\xc6\x16\x7b\xf1\xf6\xa1\x68\x4d\x63" "\x4c\xd5\xc4\x84\xd8\x6e\x13\x1b\x6d\x4d\x3f\x94\x94\x58\x1b\x2f\xdd\xae" "\x6e\x8d\x7e\x31\xd5\xca\x4d\xc5\x76\x9a\xd9\x3d\x87\x3d\x33\xb3\xe3\xe2" "\xb4\x82\xb4\xbf\x5f\xcc\x99\x79\xce\x79\x9e\xff\xf3\x3f\xc7\x40\xf2\x9c" "\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\x80\xcf\xbe\x3f\x7c\xef\xaf\xcf\xa5\xe3\xe1\x81" "\xfe\xce\x9e\xa1\xae\xc1\x10\x85\xca\x7f\xe3\x2a\x8f\x23\xb9\x96\xc9\x95" "\x4a\x1d\x4d\xec\xe3\xdd\xe7\x57\x5f\xf9\x97\x97\x37\xef\x4c\xe2\x4a\xef" "\x7c\xb6\x89\x85\x00\x00\x00\x80\x3a\x4f\x9c\x37\xed\xf4\x74\x9c\xcc\xe1" "\xc9\xe8\x1d\x85\x42\xc8\x67\x17\x87\x7c\x94\xab\xaa\x2b\xc6\xef\x01\x8a" "\x71\xdc\xd2\x3e\xfa\x39\x6b\x41\x58\x9a\xd9\xf9\xdf\x17\x46\xa5\x96\x91" "\xf8\xe4\xe8\xa4\xaa\xba\x42\x5c\x57\x88\xe3\x4c\x5c\xd7\xb7\x69\xf3\x0d" "\xab\x7b\x7b\xbb\xd7\x7f\x8a\x5f\x2a\x7d\x6a\xef\xa3\x76\x3f\x51\x08\x23" "\xaf\x2f\x66\x9d\x18\x56\x2c\xd8\xfa\xec\xae\xa8\x63\xf4\x3e\xda\x26\xb8" "\x8f\x96\xb8\x6e\xe1\x86\x1b\x6f\x5a\xd8\xb7\x69\xf3\x59\x6b\x6e\x5c\x7d" "\x7d\xf7\xf5\xdd\x6b\x97\x2c\x59\x7a\xce\xe2\x25\x8b\xcf\x3e\x67\xc9\xc2" "\xeb\xd6\xf4\x76\x2f\x1a\x3d\x86\xfc\x04\xeb\x85\x10\x4a\xd5\xcf\x65\x82" "\xff\x91\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x04" "\x6c\xf9\xcd\xce\x6f\xa6\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1\xb6\x28\x84" "\xa8\x41\x4d\x79\x1c\xc9\xb5\x4c\xae\x54\xea\x68\x62\x1f\xaf\xde\xff\xd0" "\x8c\xcc\xb4\x7b\x76\x27\x71\xa5\x77\x3e\xdb\xc4\x42\x00\x00\x00\x40\x9d" "\x5f\x3e\x31\xed\xfc\x74\x9c\xcc\xe1\xc9\xe8\x1d\x85\x42\xc8\x67\x73\x21" "\x13\xa6\x8d\xc4\x73\xc6\x52\xb3\x21\x94\xcb\xc9\xf9\x79\x35\xe7\x8f\xc4" "\xde\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\x80\x23\x6b" "\xcf\xfe\xce\x3f\xa5\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1\xe3\xa2\x10\xa2" "\x06\x35\xe5\x71\x24\xd7\x32\xb9\x52\xa9\xa3\x89\x7d\xac\x5c\xf2\xc3\xf3" "\xbf\x30\xfd\xce\xfb\x92\xb8\xd2\xbb\xd8\xc4\x3a\x00\x00\x00\x40\xbd\x17" "\x4f\x6f\xbd\x33\x1d\x27\x73\x78\x4b\x1c\x47\xa1\x10\x8a\x61\x6e\x68\x8d" "\xa6\x55\xd5\x25\xef\x06\x4e\xad\x59\xaf\x36\x2f\x59\x67\x66\x75\x5a\x26" "\x34\xc8\xab\x7d\x77\xd0\x68\xbd\xb9\x87\x99\x77\xda\x61\xe6\x9d\x31\x41" "\xde\xc5\xf1\xe7\x6d\x01\x00\x00\x00\x8e\x3d\x57\xb4\xff\x76\x65\x3a\x4e" "\xe6\xff\xd6\x38\x8e\x42\x7b\xc8\x67\x8b\x21\x13\xc7\x35\x73\x7c\xc3\xf7" "\x02\xb3\x6b\xf2\x92\xfa\x89\xe6\xfb\xa4\x7e\x4e\x83\xfa\x89\xe6\xfe\xa4" "\xbe\x76\xee\x07\x00\x00\x80\xff\x64\x67\xbd\xf5\xe4\x47\xe9\xb8\x7e\xfe" "\x2f\x86\x7c\xb6\x70\x68\xfe\x9e\xe8\xf7\xf4\x8b\xe2\x4f\xbf\x93\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x8d\xfc\x6a\xff\x85\x3f\x4f\xc7\xc3\x03\xfd\x9d" "\x3d\x43\x5d\x83\x99\x28\x84\xe8\x63\xea\xca\x35\x92\xf3\x99\x5c\xa9\xd4" "\xd1\xc4\x3e\x56\xfc\xfd\xcd\x6d\x77\x5c\x7a\xeb\xe4\x24\xae\xf4\xce\x67" "\x9b\x58\x08\x00\x00\x00\xa8\xf3\x58\xee\x7f\x6f\x4d\xc7\xc9\x1c\x9e\x8c" "\xde\x51\x28\x84\x7c\xb6\x2d\xb4\x86\xe3\x46\x66\xfe\xd7\x73\x93\x26\xaf" "\xf9\xc6\xf4\x99\x21\x84\xd2\x48\x42\x2e\x17\x6e\x5b\xbd\x61\xc3\xfa\xb3" "\x47\x8f\x49\xde\x97\xa2\x1d\x9f\x9b\x7f\xe3\xc0\x99\x75\x79\x8b\x47\x8f" "\x47\xfe\x4e\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\x80" "\x7f\xd6\x92\x47\xb7\xaf\x4a\xc7\xc3\x03\xfd\x9d\x3d\x43\x5d\x83\xff\x15" "\x85\x10\x35\xa8\x29\x8f\x23\xb9\x96\xc9\x95\x4a\x1d\x4d\xec\xe3\xc5\xed" "\x67\x1c\xbc\xea\xee\xa7\x07\x92\xb8\xd2\xbb\xd8\xc4\x3a\x00\x00\x00\x40" "\xbd\x19\xbd\xcf\xfc\x39\x1d\x27\x73\x78\x32\xfb\x47\xa1\x10\x8a\x21\x17" "\x72\x61\xea\x48\x9c\x9e\xf5\x2b\x5a\x6a\xd6\x6b\xf4\xce\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\xf7\xd1\xb7\x69\xf3" "\x0d\xab\x7b\x7b\xbb\xd7\xfb\xe2\x8b\x2f\x9f\xc1\x2f\x57\xb7\x8c\xfe\x49" "\x3d\xd2\xdd\x8f\xf6\xdf\x4c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xc0\xd1\xf2\xb3\xb5\xdf\x7d\x27\x1d\x0f\x0f\xf4" "\x77\xf6\x0c\x75\x0d\x16\xa2\x10\xa2\x06\x35\xe5\x71\x24\xd7\x32\xb9\x52" "\xa9\xa3\x89\x7d\xfc\xcf\x55\xb3\xce\x99\xb9\x77\xe3\x2d\x49\x5c\xe9\x5d" "\x6c\x62\x1d\x00\x00\x00\xa0\xde\xaa\xb7\x37\xee\x4d\xc7\xc9\x1c\x9e\xcc" "\xfe\x51\x28\x84\x62\x68\x0d\xad\x61\x4a\x1c\xd7\x1b\x99\xff\xdb\x8f\xc4" "\x6e\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\x80\xa3\x69" "\x76\x88\x42\xf9\x13\x3a\x65\xf9\xd1\xde\x35\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\x69\xd8\xf7\xd2\x8a\xfb" "\xd3\xf1\xf0\x40\x7f\x67\xcf\x50\xd7\xe0\x09\x51\x08\x51\x83\x9a\xf2\x38" "\x92\x6b\x99\x5c\xa9\xd4\xd1\xc4\x3e\xae\xdc\xfd\xad\xab\x6f\xda\xf1\xdc" "\x19\x49\x5c\xe9\x9d\xcf\x36\xb1\x10\x00\x00\x00\x50\xa7\xf5\xad\x97\xbe" "\x92\x8e\x93\x39\x3c\x19\xbd\xa3\x50\x08\xf9\xec\x8c\x90\x0f\x33\xe2\x33" "\xbd\xd5\x0b\x44\x99\x24\x71\xdc\xf7\x02\x63\x75\x5f\xab\x2a\xcb\x1c\x76" "\xdd\xb6\x9a\x1d\x8f\xee\xac\x10\xbf\x87\x28\x1c\xda\x67\x18\x79\xed\x30" "\x56\x77\xf7\xc7\xd6\x15\xe3\xb3\x2d\xed\x87\xf7\x9c\x00\x00\x00\xe0\x58" "\x36\x65\xdb\xc5\x5f\x4f\xc7\xc9\xfc\xdf\x1a\xc7\x51\x68\x0f\xf9\xec\x94" "\xd4\x5c\x7d\x53\x55\x7d\xdb\x61\xcf\xf1\xf7\x54\xd5\x9d\x70\xd8\x75\x3f" "\xa9\xaa\x6b\x9f\xa0\xee\x5f\xf0\x48\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x26\xdd\xb5\xfc\xf9\x53\xd2\xf1\xf0\x40\x7f\x67\xcf\x50\xd7\x60" "\x14\x85\x10\x35\xa8\x29\x8f\x23\xb9\x96\xc9\x95\x4a\x1d\x4d\xec\xa3\xd4" "\x7d\xff\x33\x8f\x5c\x3e\x30\x2d\x89\x2b\xbd\x8b\x4d\xac\x03\x00\x00\x00" "\xd4\xbb\xf4\xcd\xc2\x77\xd2\x71\x32\x87\x27\xb3\x7f\x14\x0a\xa1\x18\x66" "\x86\x13\xc3\xcc\x91\xb9\x3f\xb4\x57\xd7\x27\x79\xc7\x95\x7e\xf7\xca\xb2" "\x9d\x2f\x5f\x11\xc2\xa2\xa9\x2f\xcc\xca\x36\xec\xf7\x83\x5d\x97\xbd\x13" "\x0e\xfc\xff\xeb\xef\x8f\x1e\x46\xc2\x10\x5a\xaa\x93\x5a\x42\x98\x14\xf7" "\x8b\x1a\xf4\xbb\xe6\xf7\x8f\xae\x78\xf6\xa3\xad\x0f\x86\xb0\x68\x4a\x66" "\x46\xe3\x7e\x63\xad\xc6\x0e\x35\xa2\x52\xf9\xe4\x2d\xf3\x1e\xb9\x7c\xea" "\xee\x65\x0d\x97\x01\x00\x00\x80\x63\x5a\xe1\xa1\x7d\x3f\x4e\xc7\xc9\xfc" "\x9f\x4c\xd4\x51\x68\x0f\xf9\xec\xda\x86\xf3\x7f\x92\xf7\x89\xe6\xff\xce" "\xbe\xe9\x5b\x26\xc7\xc7\xf8\x0d\x40\x4d\x45\x4b\x7b\xdc\xaf\xa5\x41\xbf" "\xfe\xf7\x1e\xec\xd8\xbf\xea\xcb\xfb\x2b\xf3\xff\x0b\xb3\x0a\x87\xfe\xad" "\xc0\xe9\x73\xab\xf3\xd3\xad\xd2\xc7\x9a\x77\x0e\x51\xa9\x3c\xfb\xc9\xd3" "\x56\x1e\xdc\x77\xf3\x25\xa3\x27\x92\xfe\x99\x06\xfd\x57\xb5\xce\x39\x69" "\xfb\xdb\xd3\xe7\x24\xfd\x0b\xf1\xf9\x6b\xc3\xe1\xf6\x0f\x35\xfd\xfb\xba" "\x0e\xcc\x5d\xd0\x76\xfc\x05\xd5\xfd\x43\x08\x1d\xe3\xf5\xff\xd1\x85\x4f" "\x7c\xb0\xe2\xbe\xf7\xae\x18\xed\xdf\xf8\x79\x2f\xfc\xe3\xf0\xe7\x27\x87" "\x75\xdf\x2f\xf4\x26\xc7\xd1\x33\xf5\xfd\x97\x3f\xb0\x74\xfb\xe6\xdc\x1b" "\x93\xaa\xfb\x47\x0d\xfa\xcf\x7f\xee\xa9\xbd\x8f\xdf\xb6\xe2\xae\xda\xfb" "\x3f\x35\x3b\x5e\xff\xfa\x63\x8d\x4a\xd7\x6c\xb9\x7f\xcf\x1d\xf3\x6f\x5f" "\xd6\x7d\x6e\xaa\x7f\x4b\x83\xfe\xb7\x74\xbc\xfa\xee\xb7\x7f\xfa\x8b\x87" "\x2b\xfd\xf7\xcc\x6e\x3b\xd4\x7f\xfe\xc7\xdc\xff\x84\xfd\x77\xcd\xdd\xb6" "\x67\xc7\xd6\x7b\x57\x55\x3f\xff\x52\x7d\xff\xdb\xc3\x35\x67\xad\x7f\x6a" "\xd3\x9a\x2b\xef\xae\xbd\xff\xb6\x9a\x85\xd3\x4f\x3e\x7d\xac\x7f\xfe\xaf" "\xcd\x88\x2e\xda\xd8\xf7\xca\xfa\xda\x4b\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc7\xb6\xae\xc7\x3f\x3c\x90\x8e\x87\x07\xfa\x3b\x7b\x86" "\xba\x06\x5b\xa2\x10\xa2\x06\x35\xe5\x71\x24\xd7\x32\xb9\x52\xa9\xa3\x89" "\x7d\xfc\x3a\xb3\xeb\xc3\x87\xf7\x16\x8f\x4f\xe2\x4a\xef\x62\x13\xeb\x00" "\x00\x00\x00\xf5\x2e\x59\xf6\xda\xf5\xe9\x38\x99\xc3\x93\xd9\x3f\x0a\x85" "\x50\x0c\xb9\x90\x0b\x6d\x23\x73\xff\xc9\x5b\xe6\x3d\x72\xf9\xd4\xdd\xcb" "\x42\x7b\x7c\x3d\xfe\xcc\xf6\xae\xeb\xdb\x70\xe6\x75\xeb\x36\xae\xbd\xf6" "\x48\xdf\x02\x00\x00\x00\x30\x81\x1d\xe7\x7d\xb0\x2c\x1d\x27\xf3\x7f\x36" "\x8e\xa3\xd0\x1e\xf2\xd9\x79\xa1\x35\x9e\xff\x97\x3f\xb0\x74\xfb\xe6\xdc" "\x1b\x93\x92\xf9\x3f\x84\x30\xf2\x73\x7f\xf6\xba\x35\xbd\xdd\x8b\xc2\xa1" "\xf7\x04\x7d\x5d\x07\xe6\x2e\x68\x3b\xfe\x82\x24\x2f\x13\x7f\x16\x2a\x79" "\x0b\xae\x59\xd7\x1b\xbf\x26\x48\xd6\x7d\xfa\xb1\xff\x5b\x7c\xee\x65\x97" "\x1e\xca\x6f\x49\xe7\x9f\x3d\x96\x37\xfb\xc9\xd3\x56\x1e\xdc\x77\xf3\x25" "\xe3\xe6\x2d\x19\xcb\x7b\x6d\x46\x74\xd1\xc6\xbe\x57\xd6\xa7\xf6\x59\x3a" "\x94\xb7\x78\x2c\xaf\x7f\xcf\x1d\xf3\x6f\x5f\xd6\x7d\x6e\x72\x1f\x51\xfc" "\x59\x88\xef\x27\xc9\xdb\x35\x77\xdb\x9e\x1d\x5b\xef\x5d\x95\xe4\xb5\xc4" "\x9f\x6d\xf1\x7a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x08\x27\xbd" "\xff\xb7\xaf\xa6\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1\x90\x09\x21\x6a\x50" "\x53\x1e\x47\x72\x2d\x93\x2b\x95\x3a\x9a\xd8\xc7\x87\xe7\xbf\x30\x7c\xb0" "\xfd\x8b\x0f\x25\x71\xa5\x77\x3e\xdb\xc4\x42\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x60" "\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b\xa1\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\x0a\x7b\xf5\x17\x22\x55\x15\xc7\x01\xfc\x9c\x99\xb1\x1d\x1d" "\xb3\x59\x11\xdc\x2d\x5b\x94\x7c\x51\x08\x84\x25\xc9\x87\x70\x5f\xfa\x43" "\x6c\x25\x46\x51\x82\xb4\x45\xdb\x4b\x45\x42\x94\x91\x0f\xa9\x4b\x4b\x54" "\x0f\x42\x81\xa1\x2f\xa2\xd1\x73\xb1\x0f\x52\xf9\xb0\x49\x5a\x14\x44\x16" "\x3d\x44\x4f\x05\xf5\x54\xb1\x0f\xbb\x12\x6b\x54\xcc\xec\x3d\xb3\x33\x57" "\x2f\xbb\x5d\x50\x22\x3e\x1f\x18\xce\xfc\xce\x9d\xfb\xbd\xbf\x7b\xe6\xcc" "\x1d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xd3\x1e\xfd\xf1\xee\x5a\x77" "\xdd\x57\x1b\x68\x8f\xe7\x5f\x7d\xfe\xe2\xfd\x37\xde\xf9\xc5\xe1\xf1\xb9" "\x57\xee\xf9\xe8\xd9\x43\xeb\x3f\x5e\x77\xb1\x39\x31\x7a\xdf\xeb\x3b\xee" "\xfa\x66\xec\xf3\xfe\x91\xa1\xcd\xe3\xdb\x3f\x98\x7a\x60\x72\xe2\xec\x1d" "\x7f\x9e\x3d\x7a\x6c\x74\xc9\x0b\xbd\xb4\x30\x6c\xcd\xca\x7a\x08\xf1\xb7" "\x18\xc2\xd0\xcf\x53\x47\x27\xcf\x7d\xb9\xbe\x35\x17\x5b\xd7\x8f\xcd\x83" "\xa1\xbf\x3f\xae\xfd\xa4\x3f\xe6\x12\xb6\xcd\x87\x10\x9e\xec\xf4\xd9\x7b" "\x70\x6a\x6e\xf8\xa9\xd6\x78\xe8\x8d\xbe\x9e\xf9\x1b\x72\x21\xf9\xfb\x0a" "\x8d\x6a\xea\x67\x41\xb3\xb7\x5f\xfe\x5f\xea\xd9\x3e\x3b\xf0\xd8\x13\x27" "\xa7\x9f\x1e\x39\x37\xb5\x71\xdf\xf0\xaf\xb3\xb7\x3d\x77\x70\xf1\x23\xb1" "\xde\xb5\x9f\x42\x58\x33\xd6\x7d\xfe\x8a\x10\xc2\xca\xec\xd5\x92\x76\xdb" "\x40\x3a\x39\x1b\x77\x85\x10\x56\x75\x9d\x77\xfb\x12\x7d\xdd\xb2\xcc\xfe" "\x6f\x2d\xa8\x37\x64\xe3\x75\xd9\xd8\x58\x22\x27\x1d\xdf\x94\xab\x6b\xcb" "\xec\xa3\x96\x1b\xfb\x96\x79\x5e\x59\x95\xab\x9c\x9f\x97\x5f\xbf\xfc\xc3" "\xe8\x6a\x49\xf7\xb9\x26\x1b\x4f\x67\xe3\xd6\x7f\x99\x53\x4d\xaf\x18\x2a" "\x31\xd4\x3a\xed\x3f\x13\x17\xf7\x48\xe8\xfa\xde\x62\x88\xed\xbd\x5d\xef" "\xd4\x95\x76\x1d\x3a\x75\xc8\xd7\x31\x57\x57\x72\x75\x75\x45\xee\xbe\xda" "\xd7\xcd\x16\xb6\x1a\x63\xef\x7c\xfa\x5c\x6e\x3e\x3d\x8e\x6b\xd9\xfc\xa6" "\xee\x67\xf5\x15\xec\x2e\x98\x1f\xcc\xc6\x7a\xf6\x43\xfd\x23\xd5\x21\xff" "\x66\x41\xe3\xb2\x37\x8b\xf7\x11\xba\xfa\x9a\xb9\x56\x1b\xa3\x40\xa5\xe0" "\xb7\x97\xe6\x3b\xed\x65\x5f\x46\x23\x9b\x6b\xc4\xb5\x97\x9d\xf3\xf7\x15" "\xa4\x63\x33\x9f\x3d\xbe\xe7\xf7\xef\x5f\x3e\xdd\x2c\xe8\x23\xbe\x1f\xb3" "\xfc\x58\x2a\x7f\x64\xfc\xf8\xf4\x7b\x8f\x9c\x19\x1c\x28\xca\x1f\xab\x64" "\xf9\x95\x52\xf9\xe7\xab\x5f\xcd\xbf\x3b\x3b\xb0\xba\x30\xff\x48\xca\xaf" "\x96\xca\x7f\xe8\xaf\x5f\x5e\x3b\xfc\xe0\xfe\x75\x85\xeb\x33\x93\xd6\xa7" "\x56\x2a\x7f\xf3\x9b\xab\x0f\xcc\xed\xdf\xdd\xb7\xb1\x28\xff\x44\xca\xaf" "\x97\xca\xdf\xbe\x77\x68\xc7\xcd\xb3\x2f\xbc\x58\xd8\xff\xb6\xb4\x3e\x2b" "\x4b\xe5\x7f\xf7\xd6\x96\x4b\x7b\x8f\x7c\x78\xa6\x30\x3f\xa4\xfc\x55\xa5" "\xf2\x7f\x38\x7e\x6a\x43\x75\xf0\xed\x0b\x85\xf9\xd3\x69\x7d\x1a\xa5\xf2" "\x1f\x1e\x7e\x67\xe7\xbd\x37\x4d\x1c\x2b\x5c\xff\xaf\x53\xfe\xf5\xa5\xf2" "\xf7\x5c\x98\x1c\xdb\x77\xf2\xd3\x2d\x85\xfb\x73\x57\x5a\x9f\x66\xa9\xfc" "\xf9\x9d\xdf\xfe\x74\xa9\x39\x7a\xaa\xe8\xd9\x19\x4f\x5c\xeb\x7f\x58\x80" "\x7f\xd8\xaf\x63\x13\x80\x41\x20\x0c\xa3\x04\x52\x26\x55\x16\xc8\xb8\x19" "\x21\xe3\x5a\x78\xc2\x61\xa9\x56\xf2\x1e\x58\x58\x5d\xfb\x7f\x7b\x79\x62" "\x63\x7d\xf1\x1f\xed\xcc\x59\xa9\x17\xfe\xf7\xac\x9b\xef\x8a\x77\xaf\x3c" "\xd4\x39\x52\xbb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x53\x02\x00\x00\xff\xff\xca\x11\x60" "\x24", 23976); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20000200, /*flags=*/0, /*opts=*/0x20000280, /*chdir=*/1, /*size=*/0x5da8, /*img=*/0x2000bb80); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_cgroups(); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }