// 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*)0x20005dc0, "./file0\000", 8); memcpy((void*)0x20000040, "errors=continue", 15); *(uint8_t*)0x2000004f = 0x2c; *(uint8_t*)0x20000050 = 0; memcpy( (void*)0x2000bb80, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x91\x76\xa5\x95\x60" "\x25\x0b\xb3\x20\x21\x16\x23\xdb\x11\x17\x6c\x81\x02\x31\xbe\x73\xd8\x38" "\x67\xc7\x76\xb0\x91\x85\x05\x58\x1c\x27\xc9\xb0\xd8\x3a\x0b\x49\xd6\x07" "\xe2\xe3\x12\xbe\x72\x98\x60\x27\xa5\x2a\xa8\x83\x40\x9c\xe8\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\x59\xd8\xbf\x5f\x95\x76\xf6\xed\x7d" "\xe6\x79\xdf\xa7\xe7\x9d\x9e\x7e\x5b\xbb\x33\x09\x00\x00\x00\xbf\x14\x5e" "\xf8\x9d\xbd\xaf\x7f\xec\xdc\x0f\x7c\xfb\xbe\xf1\xe3\x77\x7f\xe8\x8f\x6e" "\xbd\x37\x19\xaa\x4f\x6d\x1f\xcc\x03\x86\xb3\xdb\xdb\x7f\x5e\x23\x64\x3e" "\xad\xfd\xce\x1b\x2d\x8f\xec\x40\x63\x64\xea\xb6\x38\x2f\xce\xfe\xe3\x15" "\xaf\x0f\xdf\x7f\xd5\x47\x1f\xba\xe2\x83\xdf\xd9\xfa\x27\xcb\xc6\x56\xaf" "\x19\xbf\xfc\xab\x87\xaf\x7e\xe0\xfe\xe7\xde\xf7\xd3\xe7\x1e\x7d\xfc\xaa" "\xaa\x7e\xf2\xf9\x74\xd1\xc9\x76\xfa\x17\x69\x92\xac\xfe\xc1\xe1\x47\x1f" "\xf8\xe6\x9f\x9e\x3d\xb9\x2d\x9d\xec\x3f\x1d\xbe\x27\x59\xb6\x2c\x5d\xfe" "\xf5\x65\x69\x21\xc5\xba\x13\x49\x92\xdc\x3c\x33\xce\xd6\x1f\x1e\x3e\xbe" "\xfe\x96\xc9\xdb\x7b\xbf\x30\xd0\xb2\xfd\xcc\x42\x12\xf3\xfd\x97\xdb\x60" "\x36\xcf\xee\xda\xf2\xa9\x27\x8f\x7c\x76\xec\x9b\x87\x47\x77\xaf\xff\xd1" "\xb1\xcb\x76\xdd\x73\x32\x24\x1d\x6c\x9a\x4f\x49\x72\xc6\xd6\xe6\xfb\x2f" "\x48\x92\x64\x51\xf6\x6f\x52\x3e\xdb\x46\xf2\x3b\x67\xb7\x1b\x92\x24\x59" "\xdc\x74\xbf\xf7\x54\x8c\xeb\xc2\x0e\xc7\x7f\x71\xd0\x5e\x95\xdd\x2e\xcc" "\x6e\x87\x2a\xf2\xe4\x3f\xbf\xa0\xd0\x6e\x74\x38\x8e\x46\xe1\x76\xa0\xc3" "\xfb\x75\xab\x36\xcf\xf9\x8b\x8a\xfb\xaf\x78\x30\x9a\x2f\x79\x9d\x67\x64" "\xb7\xcf\x64\xb7\x17\xcd\x31\x4f\x3d\xff\x97\x26\xb5\x34\x69\xcc\x0c\x7f" "\x47\x7a\x72\x8e\x24\x4d\x8f\x5b\x9a\xa4\x53\x73\x7b\x70\xa6\x5d\x9b\x6a" "\x27\x33\xed\xa4\xd8\x4e\x0b\xed\x5a\xa1\x5d\x5f\x50\xa8\x6b\xaa\xdf\x6c" "\xc7\xd6\xd3\xb4\x75\x7b\x1e\x57\xd8\x9e\x1f\x8e\x1b\xd9\xf6\x0b\x9a\x8f" "\xd5\x25\x36\x06\xdb\xcf\xc9\x6e\x07\xb3\x27\xea\x4f\xf2\x76\x52\xfc\x66" "\xda\xd0\xac\x6f\x4e\xd6\x91\x34\x8d\xeb\xe8\xa9\x9a\x18\x81\x5a\xf0\xdc" "\xcb\xb7\xcf\x0c\x2f\x7b\x30\x86\xb2\x6d\x43\xe9\xf2\x59\xf7\x99\x28\x91" "\xff\xec\xe8\xb7\xb6\x6d\x7e\xed\xfb\x77\x3e\x33\x1c\x8c\x23\x7d\x3a\xcd" "\xf2\xa7\x5d\xe5\x1f\x1b\x7f\xe2\xc8\x57\xae\x7f\xf6\x9c\x91\x28\xff\xd6" "\x5a\x96\xbf\xd6\x55\xfe\x17\xea\x2f\x9e\xf8\xf2\xb1\x91\x25\x61\xfe\x83" "\x79\xfe\x7a\x57\xf9\x37\xfd\xec\x87\x0f\xde\x77\xcd\x81\x15\xe1\xfe\x39" "\x9a\xef\x9f\x46\x57\xf9\xd7\x7c\x71\xc9\x5d\xc7\x0f\x6c\x1c\x18\x8d\xf2" "\x1f\xca\xf3\x0f\x76\x95\xff\xf2\x1b\x57\x5f\x71\xde\xb1\xfd\xb7\x85\xe3" "\x5f\x97\xef\x9f\x45\x5d\xe5\xff\xde\xc3\x6b\xdf\xb8\xf1\xe0\xd7\x9e\x0d" "\xf3\x27\x79\xfe\xc5\x5d\xe5\x7f\xe5\x89\xa7\x56\xd5\xcf\x79\xe4\xe5\x30" "\xff\x91\x7c\xff\x0c\x75\x95\xff\xda\xf5\x8f\x5d\xf9\x91\x95\xf7\x3f\x1e" "\xee\xff\x97\xf2\xfc\x4b\xbb\xca\xbf\xf9\xe5\x07\xb6\xee\x7e\xf2\xf9\xb5" "\xe1\xfc\xdc\x90\xef\x9f\xe1\xae\xf2\x9f\xb8\xf2\xbb\xaf\xbe\x31\x7c\xd5" "\x53\xd1\xb1\x33\x3d\x74\xaa\x5f\x61\x01\x7e\xb1\xbc\x25\x3b\xc7\x7a\x30" "\x6b\x77\xbb\xce\xec\x55\xd3\x7a\xe1\xb1\xd1\xc6\xf4\x39\xdf\x92\xec\xdf" "\xd2\x7e\x76\x54\x90\x36\xad\x5d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x5b\x8f\x5c\xf9\xef\x3f\xd7\xdc" "\x7e\xfb\xff\xb9\x6d\xd3\xcb\xff\x61\xf5\xf6\x46\xd6\x1e\x68\x24\x49\x9a" "\x24\xc9\x6b\xf5\xe9\x76\xbe\x7d\x61\x92\xa4\x8b\x92\x24\xd9\xbb\x6f\xdb" "\x9e\x7d\xdb\x77\x7e\x7a\xf4\xb7\x76\xed\xdf\xb3\x73\xdb\x8e\xd1\x6d\xfb" "\x46\xc7\x77\xee\xdb\x73\xc7\xe8\xdf\xfa\x9b\xa3\x7b\xc6\x77\xef\xd8\x76" "\xc7\xe4\x4f\xd7\x5d\xbc\x7e\xfa\x7e\xcb\xa7\xb2\x25\xc9\xf2\xf4\xbc\x59" "\x63\x99\x98\x98\x98\x48\x92\x64\xb4\x79\x5b\xde\xdf\xef\x7d\xf8\xe9\xff" "\xb7\xe9\xf1\xbf\xfc\x64\x92\xac\x3b\xeb\xbb\xab\x1b\x61\x3d\xef\xfe\xaf" "\xaf\x7e\x60\x45\xc9\xd7\x82\x74\x6c\x62\xc3\xbf\xb8\xec\xe1\x3b\x17\xfe" "\xaf\x33\xa7\x37\x0c\x67\xe3\x1a\x8e\xc6\x35\xdc\xba\x2d\x1f\xc1\xd0\xd8" "\x4b\x7f\xf6\xfe\x67\xbe\x3f\x39\xae\xb7\xb6\x1b\xd7\xa3\x2f\x5e\xf7\x7f" "\x5b\x06\x34\xb5\xe1\x64\x9e\x4c\x6d\x20\xa9\x4d\x7d\x33\x90\x2e\x2e\x1d" "\xc7\xcc\xa8\x4f\x8e\x67\x6a\x7f\x35\x6e\xd9\xbe\x63\x7c\x5d\xf5\xfe\x4d" "\x83\xfd\xfb\xce\xe7\xff\xf0\xd8\xbf\xbb\x7d\xd3\x3f\x9d\xde\xbf\x83\x61" "\x1d\x1d\xee\xdf\xc9\xbd\xda\x98\x78\xe8\xc7\xf7\xbd\xf3\x9e\xf7\x8f\xbf" "\xf7\x34\x7e\xdc\xab\xf6\x77\x53\x09\x53\xe3\xcb\xf7\xdf\x60\xb6\xbf\xcf" "\xc8\xea\x3a\x23\xa8\xab\x16\xd4\x75\xdb\xe8\x2b\x47\xff\xd9\xbf\xfd\x4f" "\x5f\xbe\x27\x59\xd7\xf8\xf1\xf9\xb3\xfb\xae\xaa\x6b\x41\x36\x01\x16\xa4" "\xe7\x74\xd4\x6f\xde\xc3\xe2\x74\x59\x4b\xec\x60\x16\x9f\x3f\xe2\xf9\xfd" "\xde\xbd\xef\xd6\xdd\xef\xde\x7b\xc7\x9d\x17\x6f\xbf\x75\xdb\xa7\xc7\x3f" "\x3d\xbe\x73\xfd\xfa\xcb\xae\xb8\x64\xfd\x25\x97\x5e\xb1\xfe\xdd\x53\xa5" "\x4f\x7f\xed\x5b\xfd\x79\xff\xef\xec\xb0\xfe\x25\x59\xa6\x25\xe9\xca\xd2" "\xfd\x56\xdc\x9a\xf7\x7b\xfe\xd4\xd7\x7a\x92\x0d\x3b\xbf\x69\xfa\xa6\xd5" "\x82\x64\x68\xfa\xb6\xb0\x9f\xf3\xf0\x62\xd5\x43\xd9\xcf\x86\xd2\xe5\xb3" "\x72\x4d\x94\xc8\x7f\x76\xf4\x5b\xdb\x36\xbf\xf6\xfd\x3b\x9f\x89\x9e\x79" "\xe9\xd3\xd3\x3d\x2e\x4a\x96\x4e\xdf\xa6\xab\x82\xc8\x1d\x85\x3b\xd6\x67" "\x06\x5c\xd6\xff\xa9\x79\x5e\xee\xfa\xdd\xc1\x1d\xf9\xd7\xce\x9e\x97\x55" "\xe3\xaa\x9a\x57\x93\xe3\xaa\x9e\x57\xcd\x23\x6a\x73\x1c\x7b\xf1\xc2\x07" "\x7f\xfc\xe4\xe7\xff\xf9\x0d\x1d\x1c\x2f\x9a\x42\xa7\xc6\x97\x8f\x73\xf1" "\xe4\xd3\xe5\x92\xa4\xe9\x79\x3b\x7b\x5f\x95\xd5\xd5\xc1\xe3\x33\x56\xb6" "\x1f\x6e\xba\x78\xcf\x1f\xde\xb1\x7d\xf3\xc1\xaa\xe3\x79\xf3\x23\xd3\xfc" "\xb5\x20\x1d\x9b\xf8\x9f\xab\xd2\x8f\xee\xdf\xfb\x67\x7b\xa6\x37\x9c\x92" "\xd7\xcb\xe6\x01\x75\xf9\x7a\x39\x33\xea\x93\xe3\x99\xda\x5f\x83\xd9\xe3" "\x71\xba\xee\xdf\x81\xa4\x9e\xd5\x35\x54\x3a\xae\x8d\xe9\x93\xef\x7b\xe7" "\xad\xcf\xfe\xca\xcc\xf8\x16\x2e\x4c\x6e\xdf\xb6\x6f\xdf\x9e\x4b\xa6\xbf" "\xbe\x59\xeb\xfa\xf3\x85\x67\xae\xd8\x7e\xef\xca\xf3\x66\xd5\x75\xe9\xf4" "\xd7\xaa\xe3\xfe\xf9\x85\x76\xe5\x71\xbf\x56\x5e\x5f\xd5\x71\xbf\xd8\xcf" "\xc9\xf8\xf2\x7c\xa3\x85\xf6\x50\x52\xef\xea\x75\x62\xd3\xcf\x7e\xf8\xe0" "\x7d\xd7\x1c\x58\x11\xbe\x4e\x1c\xed\xf4\x75\xe2\xb7\x5b\x5a\xf5\x1e\x5f" "\x27\x6a\xc1\xf3\xfd\xa1\xbf\xfc\xd2\xe8\xeb\x37\x7c\xe2\xf5\xaa\xf9\x74" "\xf5\xde\x95\x77\xaf\x28\xf9\x5a\x2c\x6f\x6c\xe2\x6b\x7f\xf0\xab\x97\xbc" "\xf7\xba\x6b\x3e\x38\xbd\xe1\x94\x1c\x87\x9a\x07\xd4\xe5\x71\x68\x66\xd4" "\xd9\x78\xf2\xfd\x35\x75\x1c\xba\xf4\xf4\xa9\xe3\xe7\xf7\x38\xb7\x3c\x11" "\xd3\xb1\x89\xf3\xbf\xfa\x8e\x6b\xdf\x38\xfe\xb9\x8f\x4f\x6f\xa8\xda\xbf" "\x33\xd1\x65\xfb\x77\x7d\xf5\x71\xbe\x1e\xd4\x75\xc3\x82\xb7\x2d\x7b\xf8" "\x47\x2b\xdf\xd6\xbf\xf9\xbb\x77\xcb\x5f\x5d\xf8\xae\xc5\x4b\x4e\xb3\xf9" "\x3b\x98\xed\xdf\xc1\x60\xff\xce\x8c\x3a\x1b\x4f\xbd\x79\xff\xbe\xeb\xa6" "\x5d\x3b\x6e\x9e\x6e\x9f\xbe\xe7\x6d\xd3\x06\x2a\xd6\x3f\xf9\xeb\xce\xde" "\x3b\xee\xfc\xec\xb6\x1d\x3b\xc6\xf7\xec\xed\xac\xae\x4e\x5f\x4f\xf3\x7e" "\x8a\x7b\xb9\xdb\xd7\xd3\xfc\xd5\x63\x79\x45\x5d\xf9\xe3\x75\xb2\xae\xf9" "\xfb\xa6\x93\xfd\xd5\xe9\xf3\x2d\x1f\xff\xcd\x85\x1c\xdd\x3e\xdf\x00\x72" "\x27\x5f\x17\x16\xb6\x6c\x2f\x1e\x3f\xf3\xeb\x7e\xab\xcf\x48\x36\xbd\xeb" "\xf3\xdf\x78\x31\x1d\x9d\x7e\xbd\xec\xd7\xf5\xd6\xbc\x9f\x73\x0b\x2f\xcc" "\xdd\x5e\x6f\xad\x5a\x27\xbd\xad\xd0\x6e\x5d\x27\x35\x92\xa6\xba\xa7\xcd" "\x5e\x27\x4d\xdd\xa5\x6a\x9d\x54\xec\xa7\x6a\x9d\x74\x61\xa1\x5d\xbd\x8e" "\x79\xb0\xb4\x92\xe8\xf1\x5b\x90\xbd\xf2\x96\x5d\x37\x2d\x8c\xb7\x31\x99" "\x21\x9a\x1f\x23\x59\xfe\x91\xac\x9d\x9f\x6f\xae\x7e\x57\x72\x59\xfd\x99" "\xb7\x7f\x38\x1d\xeb\x6c\x7e\x74\x7a\x3e\x9d\xf7\xf3\x37\x0a\x3b\xa8\xdb" "\xf3\xe9\xaa\xf9\xb1\x26\x29\x1f\x57\xbf\xe7\xc7\x3b\x0a\x77\xaa\x7e\xbc" "\x0f\x96\x8e\x6c\x30\x78\x3c\xaa\x1e\xef\x35\x2d\x89\x26\x26\x7a\x5d\x97" "\x0f\x07\xa3\xce\xd7\xe5\x43\x49\xda\x55\xfe\xb1\xf1\x27\x8e\x7c\xe5\xfa" "\x67\xcf\x09\xf3\x6f\xad\x65\xf9\x6b\x5d\xe5\x7f\xa1\xfe\xe2\x89\x2f\x1f" "\x1b\x59\x12\xe6\x3f\x98\xe7\x6f\x74\x95\x7f\xcd\x17\x97\xdc\x75\xfc\xc0" "\xc6\x81\x30\xff\xa1\x7c\xff\x0c\x76\x95\xff\xf2\x1b\x57\x5f\x71\xde\xb1" "\xfd\xb7\x85\xf9\xd7\xe5\xe3\x5f\xd4\x55\xfe\xef\x3d\xbc\xf6\x8d\x1b\x0f" "\x7e\xed\xd9\x30\x7f\x92\xe7\x1f\xea\x2a\xff\xb5\xeb\x1f\xbb\xf2\x23\x2b" "\xef\x7f\x3c\xcc\xff\x52\x9a\xf5\x33\xf9\xdc\x4d\x92\xc3\xc7\xd7\xdf\x32" "\xdd\x4e\x93\x05\xd9\xfc\xcf\xc7\xb1\xa0\x65\x5c\x49\xb1\x9d\xce\xb4\x17" "\x96\xd5\x91\xd4\x9b\xe3\x6b\x79\x58\xd6\x41\x3d\x4d\x5b\xb7\xe7\x71\x85" "\xed\x79\x1d\x8d\x6c\xfb\x05\x4d\x63\x2c\xb3\x29\xd8\x9e\x3f\x6b\x07\xb3" "\x27\xf6\x4f\xf2\x76\x52\xfc\xa6\xfd\xf6\xfc\xf0\x94\x8f\xeb\x68\xf0\xfa" "\x73\xaa\xd4\x9a\xce\x3d\xca\xb6\x57\x5d\x9f\xec\x97\xd7\x7e\x30\xf2\x7b" "\xcd\xed\xfc\xff\xff\xf3\x39\x30\xd0\x98\x7e\xec\x2e\x2d\xec\xaf\xaa\xd7" "\x8f\xe2\xd1\x3b\xcf\x17\x5e\x87\x0d\x2e\x61\x54\x9d\x2f\xcc\xfe\xff\xb7" "\xc5\x5d\x3d\xff\x5e\x79\xe2\xa9\x55\xf5\x73\x1e\x79\x39\xbc\xae\x7a\xa4" "\xd3\xeb\xaa\xbb\x5b\x5a\x8b\x2b\xae\xab\xf6\x3a\xde\xf0\x78\x71\x24\x3f" "\x9e\xf6\x76\x3c\x1a\x89\xf2\xbf\x94\xe7\xef\xed\xf5\x20\xcc\x9f\xbd\x1e" "\x54\xcd\xb3\xb7\x17\xda\x95\xf3\x6c\x41\x79\x7f\x55\xf3\xac\x78\x9e\x32" "\x94\x2c\xed\xaa\xee\xcd\x2f\x3f\xb0\x75\xf7\x93\xcf\xaf\x0d\xe7\xd9\x86" "\xe9\x27\x7c\xf5\x3c\x7b\xa4\xa5\xb5\xb4\x72\x9e\xf5\xf6\xff\xd2\xe1\x3c" "\x7b\x3a\xed\xcb\xfe\x08\xf3\x6f\xe8\xcf\x79\x4d\x38\xcf\xb2\xf3\x9a\xaa" "\x79\x76\x51\xa1\xdd\xfb\x3c\x6b\x3d\x1f\xfd\x68\x76\x7b\x7b\x21\x7e\x28" "\xbb\x42\x3c\xd7\xba\x4f\x5c\xf9\xdd\x57\xdf\x18\xbe\xea\xa9\x70\x9e\x1d" "\xea\x74\x9e\xfd\x7e\x4b\x6b\xb8\x72\x9e\xf5\x76\x7e\x1b\x3e\x4e\x33\xe7" "\xb7\xf3\x7d\x7e\xfe\xe6\x3e\xff\xec\xeb\xf9\xe1\x74\xbb\x56\x68\x97\x9f" "\x1f\x66\xff\x9d\x3b\x5f\xe7\x87\x1b\x83\xed\x73\x3d\x3f\x1c\x9a\xf5\x4d" "\x5e\x47\xbd\xa5\xfd\xa6\x39\x3f\x0c\x8e\x33\x00\xd0\xce\xb7\x1f\xba\xe3" "\x7f\x37\xb7\xf3\xf5\x7f\xfe\xda\x9d\xaf\xff\xbf\x51\xb8\x5f\xaf\xeb\xca" "\xe2\xef\x43\xe5\xfa\xb5\xae\x0c\xf3\x1f\xea\xcf\x7a\x25\x3c\x4f\x9d\x59" "\xaf\xcc\xf7\x7a\x6b\xbe\xcf\xb3\xe7\x77\xbd\xe5\x3c\x3e\xc8\x3f\x73\x1d" "\x79\xbe\xaf\x0b\xcd\xef\xba\xd2\x3a\x24\x6b\x27\xc5\x6f\xa6\xc5\xeb\x90" "\x69\x6f\xba\xeb\xd4\xd6\x21\x00\x00\x6f\x0a\x17\xfc\xeb\x2f\xfd\x7a\x73" "\x3b\x5f\xff\xcf\xfc\xde\x5b\xf6\xf7\xff\xcf\xe7\xed\xc2\xfd\xad\x73\x83" "\xfc\xa7\x6c\x9d\xdb\xc5\x75\x92\x43\x73\xb9\x4e\x62\x1d\x5d\x9a\xbf\x4f" "\xbf\x5f\x51\x7d\x1d\x6c\xbe\xaf\x53\xcd\xe5\x3a\xc0\x7f\x3e\x2b\xff\x99" "\xeb\x00\xe5\x5c\x07\x38\xb5\xe3\x02\x00\x60\x6e\xb6\xdc\xb2\x67\x7c\x7c" "\xef\xee\x6d\x37\x8d\x6f\xd9\xbe\x73\xfb\xbe\x99\xed\x0b\xa6\x56\x4e\xb3" "\x7f\x4f\xf5\x6f\x67\xb7\x1b\x0a\x79\xaa\x7e\x7f\xba\x2c\x7e\x71\x9b\xf8" "\x8f\x87\xf9\x5b\xc7\xf3\x9e\x20\x3e\xd2\x98\xfa\x9d\xd7\x24\xf9\xd4\x4d" "\x9f\xb9\x74\xcb\xcd\xe3\xb7\xcd\xb5\xfe\xa8\xbf\xaa\xfa\xcb\xe2\xdb\xd5" "\x5f\x5c\x5f\x44\xf5\x5f\x11\xc4\x47\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2\xf8" "\x76\xf5\x5f\x13\xe6\x6f\x1d\xcf\x7b\x83\xf8\x48\xaf\xf5\x47\xfd\x55\xd5" "\x5f\x16\xdf\xae\xfe\x4f\x84\xf9\x5b\xc7\xf3\xab\x41\x7c\xa4\xd7\xfa\xa3" "\xfe\xaa\xea\x2f\x8b\x6f\x57\x7f\xf1\xef\xc1\xa2\xfa\x7f\x2d\x88\x8f\xf4" "\x5a\x7f\xd4\x5f\x55\xfd\x65\xf1\xed\xea\xbf\x36\xcc\xdf\x3a\x9e\xf7\x05" "\xf1\x91\x5e\xeb\x8f\xfa\xab\xaa\xbf\x2c\xbe\x5d\xfd\xd7\x85\xf9\x5b\xc7" "\xf3\x77\x82\xf8\x48\xaf\xf5\x47\xfd\x55\xd5\x5f\x16\xdf\xae\xfe\xeb\xc3" "\xfc\xad\xe3\xb9\x32\x88\x8f\xf4\x5a\x7f\xd4\x5f\x55\xfd\x65\xf1\xed\xea" "\xff\x64\x98\xbf\x75\x3c\x63\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x2f\x8b" "\x6f\x57\xff\xe6\x30\x7f\xeb\x78\xfe\x6e\x10\x1f\xe9\xb5\xfe\xa8\xbf\xaa" "\xfa\xcb\xe2\xdb\xd5\x7f\x43\x98\xbf\x75\x3c\xef\x0f\xe2\x23\xbd\xd6\x1f" "\xf5\x57\x55\x7f\x59\x7c\xbb\xfa\x7f\x23\xcc\xdf\x3a\x9e\xbf\x17\xc4\x47" "\xda\xd6\x5f\x3a\xbe\xce\xfa\xab\xaa\xbf\x2c\xbe\x5d\xfd\x37\x86\xf9\x5b" "\xc7\xf3\xeb\x41\x7c\xa4\xd7\xc7\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\xff" "\x66\x98\xbf\x75\x3c\x1f\x08\xe2\x23\xbd\xd6\x1f\xf5\x57\x55\x7f\x59\x7c" "\xbb\xfa\xb7\x84\xf9\x5b\xc7\xf3\xc1\x20\x3e\xd2\x6b\xfd\x51\x7f\x55\xf5" "\x97\xc5\xb7\xab\x7f\x6b\x98\xbf\x75\x3c\x7f\x3f\x88\x8f\xf4\x5a\x7f\xd4" "\x5f\x3e\xbe\x92\xb7\x94\x08\xe3\xdb\xd5\xbf\x2d\xc8\x5f\x1c\xcf\x87\x82" "\xf8\x48\xaf\xf5\x47\xfd\x55\x3d\xfe\x65\xf1\xed\xea\xff\x54\x98\xbf\x75" "\x3c\x1f\x0e\xe2\x23\xbd\xd6\x1f\xf5\x57\x55\x7f\x59\x7c\xbb\xfa\x6f\x0a" "\xf3\xb7\x8e\xe7\x23\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x2f\x8b\x6f\x57" "\x7f\xf1\xfd\x0e\xa3\xfa\xff\x41\x10\x1f\xe9\xb5\xfe\xa8\xbf\xaa\xfa\xcb" "\xe2\xdb\xd5\x3f\x1e\xe6\x6f\x1d\xcf\x55\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa" "\xea\x2f\x8b\x6f\x57\xff\x2d\x61\xfe\xf2\xf7\x0d\x28\xc6\x47\x7a\xad\x3f" "\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\x7f\x3a\xcc\xdf\x3a\x9e\x8f\x05\xf1\x91" "\x5e\xeb\x8f\xfa\xab\xaa\xbf\x2c\xbe\x5d\xfd\x9f\x09\xf3\xb7\x8e\xe7\xea" "\x20\x3e\xd2\x6b\xfd\x51\x7f\x55\xf5\x97\xc5\xb7\xab\x7f\x7b\x98\xbf\x75" "\x3c\x1b\x82\xf8\x48\xaf\xf5\x47\xfd\x55\xd5\x5f\x16\xdf\xae\xfe\xdf\x0a" "\xf3\xb7\x8e\xe7\xe3\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x2f\x8b\x6f\x57" "\xff\x67\xc3\xfc\xad\xe3\xd9\x18\xc4\x47\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2" "\xf8\x76\xf5\xef\x08\xf3\xb7\x8e\xe7\x9a\x20\x3e\xd2\x6b\xfd\x51\x7f\x55" "\xf5\x97\xc5\xb7\xab\xff\xd6\x30\x7f\xeb\x78\x3e\x11\xc4\x47\x7a\xad\x7f" "\xb2\xbf\x7f\x55\x92\xb7\xaa\xfe\xb2\x7a\xda\xd5\xbf\x33\xcc\xdf\x3a\x9e" "\x4d\x41\x7c\xa4\xd7\xfa\xa3\xfe\xaa\xea\x2f\x8b\x6f\x57\xff\xae\x30\x7f" "\xeb\x78\xae\x0d\xe2\x23\xbd\xd6\x1f\xf5\x57\x55\x7f\x59\x7c\xbb\xfa\x77" "\x87\xf9\x5b\xc7\x73\x5d\x10\x1f\xe9\xb5\xfe\xa8\xbf\xaa\xfa\xcb\xe2\xdb" "\xd5\xff\xb9\x30\x7f\xeb\x78\xae\x0f\xe2\x23\xbd\xd6\x1f\xf5\x57\x55\x7f" "\x59\x7c\xbb\xfa\xf7\x84\xf9\x5b\xc7\xf3\xc9\x20\x3e\xd2\x6b\xfd\x51\x7f" "\x55\xf5\x97\xc5\xb7\xab\x7f\x6f\x98\xbf\x75\x3c\x9b\x83\xf8\x48\xaf\xf5" "\x47\xfd\x55\xd5\x5f\x16\xdf\xae\xfe\x7d\x61\xfe\xd6\xf1\xdc\x10\xc4\x47" "\x7a\xad\x3f\xea\xaf\xaa\xfe\xb2\xf8\x76\xf5\xef\x0f\xf3\xb7\x8e\xe7\x37" "\x82\xf8\x48\xaf\xf5\x47\xfd\x55\xd5\x5f\x16\xdf\xae\xfe\xdb\xc2\xfc\xad" "\xe3\xb9\x31\x88\x8f\xf4\x5a\x7f\xd4\x5f\x55\xfd\x65\xf1\xed\xea\x3f\x10" "\xe6\x6f\x1d\xcf\x6f\x06\xf1\x91\x5e\xeb\x8f\xfa\xab\xaa\xbf\x2c\xbe\x5d" "\xfd\xc5\xf7\x81\x8c\xea\xdf\x12\xc4\x47\x66\xea\xdf\xb7\x67\x7c\x7c\xcb" "\xfe\xdd\x37\x6f\xdb\x37\xbe\x65\xe7\xae\x9b\xc7\xf7\x6e\x39\xb0\x67\xfb" "\xbe\x7d\xe3\xd9\x89\x5a\xaf\xef\xbf\x13\xff\x5d\xd0\xcf\xf9\x0f\x59\x68" "\xab\xe5\xf9\x31\x3d\x49\xb6\xef\xdc\x3b\xbe\x67\xf6\xf1\x7b\x51\xdb\xf9" "\xdb\x3c\x27\x92\xa9\x3f\x7b\x5a\x34\x7d\x9b\xbe\xb5\xa3\xf8\xe2\xdb\x5e" "\x77\x3b\x6b\x4e\x97\xf9\xbe\x20\x69\xb4\xdd\x5f\xe7\x16\xda\x67\x66\xef" "\x47\x7b\x66\xf0\x7e\xb4\xc5\xf8\x3c\xed\xca\xa9\x6f\x66\xbf\x1f\x6d\xb1" "\xdb\x46\xc5\xfb\xb8\x56\x1d\x9f\x8a\xfd\x47\xc7\xa7\xb4\x4d\x7c\xd9\xf1" "\x35\x3a\x9e\x55\xbd\xfe\xcd\xf9\xf8\x57\x39\xbf\x07\xdb\xd6\x5f\xdc\x3c" "\x90\xfd\x61\xdf\x40\x7a\x56\x47\xf1\x49\x9b\xcf\x77\xeb\x6c\xbe\xf6\xf6" "\x77\xa7\xe1\x7c\x7d\xa9\xb3\xf9\x5a\x7c\xdf\xf5\xaa\xf9\x5a\x8c\x9f\xeb" "\x7c\x1d\xea\x71\xbe\x16\xfb\x8f\xe6\x53\xad\x4d\x7c\xbb\xf3\xa1\x4e\xe7" "\xeb\xe6\x20\x3e\xd7\xf9\xfc\x4c\xc3\x7a\xcb\xe6\xd5\x5c\x3f\x67\x30\x4f" "\x3b\xa7\xcf\x19\x2c\x7c\x99\xa5\x8b\xcf\x32\xe8\xfc\xf9\xd0\xdb\xdf\x91" "\x87\xcf\x87\x6c\xd0\x55\xcf\x87\xe2\xdf\x71\x57\x3d\x1f\x8a\xf1\x73\x7d" "\x3e\x2c\xea\xf1\xf9\x50\xec\xbf\xea\xf9\x50\x16\xdf\x6e\x7d\xdc\xe9\xf3" "\xe1\xba\x20\x3e\xd2\xf9\x7c\xe8\xed\x7d\x0b\xc2\xf9\xb0\xae\xb3\xf9\x50" "\xfc\x1c\xab\xaa\xf9\x50\x8c\x9f\xeb\x7c\x18\xec\x71\x3e\x14\xfb\xaf\x9a" "\x0f\x65\xf1\xed\xae\x17\x76\x3a\x1f\x3e\x11\xc4\x77\xaa\xf3\xf9\xd1\xdb" "\xfb\x8a\x84\xf3\x63\x6b\x67\xf3\xa3\xf8\x79\x12\x55\xf3\xa3\x18\x3f\xd7" "\xf9\x91\xf6\x38\x3f\x8a\xfd\x57\xcd\x8f\xb2\xf8\xe8\xff\x53\x92\x39\xcc" "\x8f\x8f\x07\xf1\xb9\x96\xd7\xcf\x5b\xf6\x4e\x2d\xea\xb7\x6f\xdb\xb1\xfd" "\xce\xc2\x2f\x60\x0c\x67\xaf\x9f\x3f\xef\xd7\xc3\x53\xf2\xba\xfc\x57\xbf" "\xf6\xe7\x3f\x99\xfe\x92\x8d\xa3\x36\x6b\x1c\x55\xe7\x13\x69\x61\x1c\xcb" "\xb2\x91\x2c\x8b\x3e\xf7\x30\x18\xf7\x4d\xff\xe5\xdf\x6c\xfa\xc6\x4f\x3f" "\xff\xa5\x24\x59\x77\x56\x7d\x55\x3c\xee\x93\x43\x3e\xf9\xa5\x20\x1d\x9b" "\x58\x7e\xf7\x9a\xaf\x5c\xff\xd6\x97\xdf\x3f\x39\xfe\x5a\xdb\xf1\xcf\x44" "\xe6\x9f\x5b\x5c\xf1\x79\xc7\xc5\xf8\xbc\x9e\xc6\x8e\x5d\x7b\xf7\xfd\xca" "\x2d\xbb\xf6\xef\xec\xf4\x37\xae\xda\xcb\xdf\x0f\xa5\x36\xd3\x9e\xa7\xf7" "\x43\xc9\x36\xd6\x3b\x7c\x7f\x93\xe8\xef\x09\xe6\xfa\xfe\x26\x0b\x66\x7d" "\x73\x7a\xea\xf8\xfd\x4d\x00\x7e\x41\x9c\x79\xe8\xe9\xa5\xcd\xed\xfc\xfd" "\xff\xf2\xd7\xa3\x91\xec\xd8\xb7\x28\x3b\x00\xe6\xdb\x3b\x3f\xcf\xee\xed" "\xfd\xf5\xc2\xf3\xec\x83\x9d\x9d\x67\xaf\x2d\xd6\x5b\x71\x9e\x5d\x8c\xcf" "\xeb\xed\xf4\x3c\xbb\xd6\xe3\x79\x76\xb1\xff\xaa\xf3\xec\xb2\xf8\x76\xbf" "\xb7\xd7\xe9\x79\xf6\xc7\x82\xf8\xb9\x6a\x9d\x27\x93\x13\x64\x6a\x7e\x8c" "\x6f\x39\xb0\x6b\x4f\xf3\xef\xc4\xcd\xf7\xe7\xd6\xf6\x7f\xbc\xf3\xfb\x39" "\xbe\xbd\x8f\x6f\x7e\xdf\xb7\xb1\x5b\x9d\x8f\x7f\x7e\xdf\x17\x72\xfe\xc7" "\x3f\xbf\x9f\x03\x3c\xff\xe3\x9f\xdf\xcf\x79\xee\xd6\x29\x5b\x2f\x65\x7f" "\xc8\x56\xf5\xfe\x91\x55\xeb\xa8\xe8\xef\xd2\xe7\xba\x8e\x5a\x38\xeb\x9b" "\xd3\x93\x75\x14\x00\x9c\xfe\xfe\xc9\x9e\x1f\xfc\xcb\xe6\x76\xbe\xfe\xcf" "\x3f\x0d\x37\x5f\xff\x7f\x21\x6b\xd7\xfb\xdc\xff\x7c\xaf\xa3\xe6\x7b\x5d" "\x39\xdf\xe7\xc9\x6f\xfe\xf7\xdf\x9f\xdf\x75\x90\xf5\x40\x9b\xce\x4e\x03" "\xd6\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xe5\x7e\xff\xbf\xff\xc7\xaf\x37\xb7\x07\x1a\x23\x53\xb7\x2f" "\xfc\xce\xde\xd7\x3f\x76\xee\x07\xbe\x7d\xdf\xf8\xf1\xbb\x3f\xf4\x47\xb7" "\xde\x7b\xf6\x1f\xaf\x78\x7d\xf8\xfe\xab\x3e\xfa\xd0\x15\x1f\xfc\xce\xd6" "\x3f\x59\x36\xb6\x7a\xcd\xf8\xe5\x5f\x3d\x7c\xf5\x03\xf7\x3f\xf7\xbe\x9f" "\x3e\xf7\xe8\xe3\x57\x55\x76\x34\x3c\x7d\x73\x51\xd6\x1c\x4c\x92\xf4\x2f" "\xd2\x24\x59\xfd\x83\xc3\x8f\x3e\xf0\xcd\x3f\x3d\x7b\x72\x5b\x3a\xd9\x7f" "\x3a\x7c\x4f\xb2\x6c\x59\xba\xfc\xeb\xcb\xd2\x42\x86\x75\x27\x92\x24\xb9" "\x79\x66\x9c\xad\x3f\x3c\x7c\x7c\xfd\x2d\x93\xb7\xf7\x7e\x61\xa0\x65\xfb" "\x99\x85\x24\xc5\xba\x92\xa1\x7a\x3e\x9e\x96\x71\x26\xb7\x57\x56\xc4\x9b" "\xd0\x60\x36\xcf\xee\xda\xf2\xa9\x27\x8f\x7c\x76\xec\x9b\x87\x47\x77\xaf" "\xff\xd1\xb1\xcb\x76\xdd\x73\x32\x24\x1d\x6c\x9a\x4f\x49\x72\xc6\xd6\xe6" "\xfb\x2f\x48\x92\x64\x51\xf6\x6f\x52\x3e\xdb\x46\xf2\x3b\x67\xb7\x1b\x92" "\x24\x59\xdc\x74\xbf\xf7\x54\x8c\xeb\xc2\x0e\xc7\x7f\x71\xd0\x5e\x95\xdd" "\x2e\xcc\x6e\x87\x2a\xf2\xe4\x3f\xbf\xa0\xd0\x6e\x74\x38\x8e\x46\xe1\x76" "\xa0\xc3\xfb\x75\xe9\xff\xd7\xe6\x37\xff\x2c\xc5\xfd\x57\x3c\x18\xcd\x97" "\xbc\xce\x33\xb2\xdb\x67\xb2\xdb\x8b\xe6\x98\xa7\x9e\xff\x4b\x93\x5a\x9a" "\x34\x66\x86\xbf\x23\x3d\x39\x47\x92\xa6\xc7\x2d\x4d\xd2\xa9\xb9\x3d\x38" "\xd3\xae\x4d\xb5\x93\x99\x76\x52\x6c\xa7\x85\x76\xad\xd0\xae\x2f\x28\xd4" "\x35\xd5\x6f\xb6\x63\xeb\x69\xda\xba\x3d\x8f\x2b\x6c\xcf\x0f\xc7\x8d\x6c" "\xfb\x05\xcd\xc7\xea\x12\x1b\x83\xed\xe7\x64\xb7\x83\xd9\x13\xf5\x27\x79" "\x3b\x29\x7e\x33\x6d\x68\xd6\x37\x27\xeb\x48\x9a\xc6\x75\xf4\x54\x4d\x8c" "\x40\x2d\x78\xee\xe5\xdb\x67\x86\x97\x3d\x18\x43\xd9\xb6\xa1\x74\xf9\xac" "\xfb\x4c\x94\xc8\x7f\x76\xf4\x5b\xdb\x36\xbf\xf6\xfd\x3b\x9f\x19\x0e\xc6" "\x91\x3e\x9d\x66\xf9\xd3\xae\xf2\x8f\x8d\x3f\x71\xe4\x2b\xd7\x3f\x7b\xce" "\x48\x94\x7f\x6b\x2d\xcb\x5f\xeb\x2a\xff\x0b\xf5\x17\x4f\x7c\xf9\xd8\xc8" "\x92\x30\xff\xc1\x3c\x7f\xbd\xab\xfc\x9b\x7e\xf6\xc3\x07\xef\xbb\xe6\xc0" "\x8a\x70\xff\x1c\xcd\xf7\x4f\xa3\xab\xfc\x6b\xbe\xb8\xe4\xae\xe3\x07\x36" "\x0e\x8c\x46\xf9\x0f\xe5\xf9\x07\xbb\xca\x7f\xf9\x8d\xab\xaf\x38\xef\xd8" "\xfe\xdb\xc2\xf1\xaf\xcb\xf7\xcf\xa2\xae\xf2\x7f\xef\xe1\xb5\x6f\xdc\x78" "\xf0\x6b\xcf\x86\xf9\x93\x3c\xff\xe2\xae\xf2\xbf\xf2\xc4\x53\xab\xea\xe7" "\x3c\xf2\x72\x98\xff\x48\xbe\x7f\x86\xba\xca\x7f\xed\xfa\xc7\xae\xfc\xc8" "\xca\xfb\x1f\x0f\xf7\xff\x4b\x79\xfe\xa5\x5d\xe5\xdf\xfc\xf2\x03\x5b\x77" "\x3f\xf9\xfc\xda\x70\x7e\x6e\xc8\xf7\xcf\x70\x57\xf9\x4f\x5c\xf9\xdd\x57" "\xdf\x18\xbe\xea\xa9\xe8\xd8\x99\x1e\x3a\xd5\xaf\xb0\x00\xbf\x58\xde\x92" "\x9d\x63\x3d\x98\xb5\xbb\x5d\x67\x96\xeb\x74\x75\xd6\xb2\x5e\x78\x6c\xb4" "\x31\x7d\xce\xb7\x24\xfb\xb7\xb4\xe3\x2c\x73\x97\x36\xad\x5d\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x20\xb2\x6b\xa2\xbe\xbf\xb9\xfd\xea\xb3\x0f\x5d\xfd\x99\xff\xb1" "\xe5\xbf\x35\xd2\x24\x49\x83\xfb\x4c\x94\xc8\x7f\x56\x5f\x38\x36\x36\xda" "\xc5\x38\xd6\x7c\x71\xc9\x5d\xc7\x0f\x6c\x1c\xc8\xdb\x93\x7d\x8f\x74\x91" "\x07\x00\x00\x00\x98\x6d\xe5\x2b\x9f\xff\x5c\x73\x3b\x5f\x87\xd7\xb2\x76" "\x9a\x0c\x26\x23\xc9\x81\x74\x51\xb2\xb2\xf4\xfe\xf9\x35\x82\x95\x79\x2b" "\x6d\xdd\x5e\xbc\x86\xb0\xe8\x64\x64\x5f\xf2\xd4\xfa\x94\xa7\xde\xa7\x3c" "\x8d\x3e\xe5\x59\xd0\xa7\x3c\x0b\xfb\x94\x67\xa0\x4f\x79\x06\x2b\xf2\x0c" "\x26\x9d\xe5\x59\xd4\x36\x4f\xad\xe3\xf1\x2c\xee\x53\x9e\xa1\x3e\xe5\x59" "\xd2\xa7\x3c\x4b\xfb\x94\xe7\x8c\xee\xf3\x34\x9a\xf3\x9c\xd9\xa7\xf1\x0c" "\xb7\xcd\xd3\xf9\x3c\x5c\xd6\xa7\x3c\xcb\xfb\x94\xe7\x2d\x7d\xca\xb3\xa2" "\x4f\x79\xce\xea\x53\x9e\xb7\xf6\x29\xcf\xd9\x7d\xca\x53\xbc\xa6\x3c\xd7" "\x79\xb8\x34\x8b\x3c\x37\xca\x33\xf5\x4d\xbd\x32\x4f\x23\xad\xcf\xfc\xa0" "\xec\x7a\x7a\xde\xcf\x79\x3d\xf6\x33\xd4\x61\x3f\xc5\x6b\xf6\x73\xed\x67" "\x51\x87\xfd\x5c\xd8\x63\x3f\x83\x1d\xf6\xf3\x8e\x1e\xfb\x49\x3b\xec\x67" "\x6d\xe1\x7e\xb5\x39\xf6\x53\xab\xe8\x27\x9f\xb7\xb7\x47\xf5\xe4\xad\x0e" "\xe7\xff\x1d\x7d\xca\x73\x67\x9f\xf2\xdc\xd5\xa7\x3c\xbf\xdd\xa7\x3c\xff" "\xb0\x4f\x79\xfe\x51\x9f\xf2\xdc\xdd\x63\x1e\x80\xc8\xef\x3e\x77\xd1\x1f" "\x34\xb7\xf3\xf5\x7f\xbe\xfe\x4c\x93\xe1\x64\xa0\x71\x69\xb2\x38\x3b\xe2" "\x14\xaf\x02\xe4\xeb\xdd\xf3\xa7\xbe\xce\x7e\xbd\x8b\x0e\x48\x79\xbe\x55" "\x85\xed\x0b\xaa\xf2\x15\x17\xd8\x85\x7c\xe7\xcf\x75\x7c\xc5\x0b\x08\x85" "\x7c\x6f\x6b\x9b\xaf\x31\x6b\xbd\x5a\x92\xaf\xd1\x9c\x6f\x4d\x9f\xf2\x01" "\x00\x00\xc0\x5c\xfc\xe3\x13\x77\xb5\xfc\xd7\xdc\xec\xf5\xff\x48\x32\xd0" "\x58\x31\xb3\x7e\x7d\x7b\xe1\xfe\x95\xeb\xf5\xe2\x7f\x64\x67\xf2\x7c\x17" "\xf5\x29\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x7f\xcd\xae\xbd\xc7\xc8\x55\xb6\x05\x00\x7f\xcf\xce" "\xec\xcc\xb8\x5c\xba\x90\xb6\x4c\xe9\x6d\xd3\x56\x0a\x21\xf4\x42\x53\x23" "\xa8\x30\x69\x22\x09\x46\xd8\x22\xb6\x5c\x1a\xb2\x56\x58\xd8\x86\xa5\x85" "\x6e\x0b\xb4\x6a\x8a\x60\x6c\xb3\x09\x06\x2d\x5e\xb8\xfd\x61\x41\x62\x08" "\x11\x48\x48\x1a\x74\x4d\x30\xa0\xc4\x3f\x6c\x6c\x10\xc3\xc5\x75\x61\x25" "\xf0\x0f\x11\xa4\x37\xa0\xe8\x98\xd9\x9d\x77\xf7\xcc\xcc\x0e\xbb\xcc\xf7" "\xd1\x7e\xfd\xbe\xdf\x2f\xe4\xcc\x79\xce\x79\x9e\xf7\x79\xcf\x21\x21\x79" "\xce\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x3f\xf9\xfe\xfd\x4f\xff\xe7\xcd\x74\x3c\x3a\x34" "\xd8\xdd\x37\xd2\x33\x1c\x92\x50\xf9\x67\x4a\xe5\x29\xc4\x7b\x99\x5c\xa9" "\xd4\xd5\xc2\x3e\xbe\x78\x6b\xf3\xad\xff\xfd\xde\xee\x83\x31\xae\xf4\xce" "\x67\x5b\x58\x08\x00\x00\x00\x68\xf0\xf2\x55\xf3\x2e\x4e\xc7\x71\x0e\x8f" "\xa3\x77\x12\x0a\x21\x9f\x5d\x1d\xf2\x49\xae\xa6\xae\x58\xfd\x0e\x50\xac" "\xc6\x6d\x9d\xe3\xbf\x8b\x56\x84\xb5\x99\x83\x3f\x7f\x6d\x52\x6a\x1b\x8b" "\xcf\x4f\xce\xab\xa9\x2b\x54\xeb\x0a\xd5\x38\x53\xad\x1b\xd8\xb5\xfb\xee" "\xcd\xfd\xfd\xbd\xdb\x7f\xc0\x93\x4a\x9f\xfa\xe7\xa8\xdf\x4f\x12\xc2\xd8" "\xe7\x8b\x45\xe7\x86\x0d\x2b\xf6\xbe\x71\x28\xe9\x1a\x7f\x8e\x8e\x69\x9e" "\xa3\xad\x5a\xb7\x72\xc7\x3d\xf7\xae\x1c\xd8\xb5\xfb\xb2\x2d\xf7\x6c\xbe" "\xab\xf7\xae\xde\xad\x6b\xd6\xac\xbd\x62\xf5\x9a\xd5\x97\x5f\xb1\x66\xe5" "\x9d\x5b\xfa\x7b\x57\x8d\x1f\x43\x7e\x9a\xf5\x42\x08\xa5\xda\xf7\x32\xcd" "\xbf\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\x00\x00\x00\x00\x38\x05" "\xf6\xfc\xf3\xc1\x3f\x48\xc7\xa3\x43\x83\xdd\x7d\x23\x3d\xc3\x1d\x49\x08" "\x49\x93\x9a\xf2\x14\xe2\xbd\x4c\xae\x54\xea\x6a\x61\x1f\x1f\x3c\xf5\xec" "\x82\xcc\xbc\xc7\x0f\xc7\xb8\xd2\x3b\x9f\x6d\x61\x21\x00\x00\x00\xa0\xc1" "\x3f\xbc\x3c\xef\xea\x74\x1c\xe7\xf0\x38\x7a\x27\xa1\x10\xf2\xd9\x5c\xc8" "\x84\x79\x63\xf1\x92\xc9\xd4\x6c\x08\xe5\x72\xbc\xbe\xac\xee\xfa\xa9\xd8" "\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x6a\x1d" "\x39\xde\xfd\x9f\xe9\x78\x74\x68\xb0\xbb\x6f\xa4\x67\xf8\xac\x24\x84\xa4" "\x49\x4d\x79\x0a\xf1\x5e\x26\x57\x2a\x75\xb5\xb0\x8f\x8d\x6b\xfe\xe2\xea" "\x5f\x9b\xff\xc8\x93\x31\xae\xf4\x2e\xb6\xb0\x0e\x00\x00\x00\xd0\xe8\x9d" "\x8b\xdb\x1f\x49\xc7\x71\x0e\x6f\xab\xc6\x49\x28\x84\x62\x58\x1a\xda\x93" "\x79\x35\x75\xf1\xdb\xc0\x85\x75\xeb\xd5\xe7\xc5\x75\x16\xce\x30\xaf\xfe" "\xdb\x41\xb3\xbc\xa5\x33\xcc\xbb\x68\x86\x79\x97\x4c\x93\x77\x7d\xf5\xf7" "\xc1\x00\x00\x00\x00\x67\x9e\x5b\x3a\xff\x65\x63\x3a\x8e\xf3\x7f\x7b\x35" "\x4e\x42\x67\xc8\x67\x8b\x21\x53\x8d\xa7\x9b\xe3\xe3\x77\x81\xc5\x75\x79" "\xb1\x7e\xba\xf9\x3e\xd6\x2f\x69\x52\x3f\xdd\xdc\x1f\xeb\xeb\xe7\x7e\x00" "\x00\x00\xf8\x59\x76\xd9\xa7\xaf\x7c\x9b\x8e\x1b\xe7\xff\x62\xc8\x67\x0b" "\x13\xf3\xf7\x74\x7f\x4f\xbf\xae\xfa\xeb\xef\xe4\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x33\xff\x78\xfc\xda\xbf\x4b\xc7\xa3\x43\x83\xdd\x7d\x23\x3d\xc3" "\x99\x24\x84\xa4\x49\x4d\x79\x0a\xf1\x5e\x26\x57\x2a\x75\xb5\xb0\x8f\x0d" "\xff\xf7\xc9\xbe\x87\x6f\x7c\x60\x76\x8c\x2b\xbd\xf3\xd9\x16\x16\x02\x00" "\x00\x00\x1a\xbc\x98\xfb\xc5\x07\xd2\x71\x9c\xc3\xe3\xe8\x9d\x84\x42\xc8" "\x67\x3b\x42\x7b\x38\x6b\x6c\xee\xff\x28\x37\x6b\xf6\x96\xdf\x9f\xbf\x30" "\x84\x50\x1a\x4b\xc8\xe5\xc2\x83\x9b\x77\xec\xd8\x7e\xf9\xf8\x31\xe6\xfd" "\x46\x72\xe0\x57\x96\xdf\x33\x74\x69\x43\xde\xea\xf1\xe3\xa9\x7f\x52\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x47\xb5\xe6\x85" "\xfd\x9b\xd2\xf1\xe8\xd0\x60\x77\xdf\x48\xcf\xf0\xcf\x25\x21\x24\x4d\x6a" "\xca\x53\x88\xf7\x32\xb9\x52\xa9\xab\x85\x7d\xbc\xb3\xff\x92\x93\xb7\x3d" "\xf6\xda\x50\x8c\x2b\xbd\x8b\x2d\xac\x03\x00\x00\x00\x34\x5a\xd0\xff\xfa" "\x7f\xa5\xe3\x38\x87\xc7\xd9\x3f\x09\x85\x50\x0c\xb9\x90\x0b\x73\xc7\xe2" "\xf4\xac\x5f\xd1\x56\xb7\x5e\xb3\x6f\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\x4f\x8f\x81\x5d\xbb\xef\xde\xdc\xdf\xdf" "\xbb\xdd\x89\x13\x27\x4e\x26\x4e\x4e\xf7\x7f\x99\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xd3\xe5\x6f\xb7\xfe\xc9" "\xe7\xe9\x78\x74\x68\xb0\xbb\x6f\xa4\x67\xb8\x90\x84\x90\x34\xa9\x29\x4f" "\x21\xde\xcb\xe4\x4a\xa5\xae\x16\xf6\xf1\x0b\xb7\x2d\xba\x62\xe1\xd1\x9d" "\xf7\xc7\xb8\xd2\xbb\xd8\xc2\x3a\x00\x00\x00\x40\xa3\x4d\x9f\xed\x3c\x9a" "\x8e\xe3\x1c\x1e\x67\xff\x24\x14\x42\x31\xb4\x87\xf6\x30\xa7\x1a\x37\x1a" "\x9b\xff\x3b\x4f\xc5\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\xd3\x69\x71\x48\x42\xf9\x7b\xba\x60\xfd\xe9\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\x43" "\x38\xf6\xee\x86\xa7\xd2\xf1\xe8\xd0\x60\x77\xdf\x48\xcf\xf0\x39\x49\x08" "\x49\x93\x9a\xf2\x14\xe2\xbd\x4c\xae\x54\xea\x6a\x61\x1f\xb7\x1e\xfe\xc3" "\xdf\xba\xf7\xc0\x9b\x97\xc4\xb8\xd2\x3b\x9f\x6d\x61\x21\x00\x00\x00\xa0" "\x41\xfb\xa7\xef\xfe\x76\x3a\x8e\x73\x78\x1c\xbd\x93\x50\x08\xf9\xec\x82" "\x90\x0f\x0b\xaa\x57\xfa\x6b\x17\x48\x32\x31\x71\xca\xef\x02\x93\x75\xbf" "\x5b\x53\x96\x99\x71\xdd\xbe\xba\x1d\x8f\xef\xac\x50\xfd\x0e\x51\x98\xd8" "\x67\x18\xfb\xec\x30\x59\xf7\xd8\x77\xd6\x15\xab\x57\xdb\x3a\x67\xf6\x9e" "\x00\x00\x00\xe0\x4c\x36\x67\xdf\xf5\xbf\x97\x8e\xe3\xfc\xdf\x5e\x8d\x93" "\xd0\x19\xf2\xd9\x39\xa9\xb9\xfa\xde\x9a\xfa\x8e\x19\xcf\xf1\x8f\xd7\xd4" "\x9d\x33\xe3\xba\xbf\xae\xa9\xeb\x9c\xa6\xee\xc7\xf0\x4a\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\x16\x3d\xba\xfe\xad\x0b\xd2\xf1\xe8\xd0\x60" "\x77\xdf\x48\xcf\x70\x92\x84\x90\x34\xa9\x29\x4f\x21\xde\xcb\xe4\x4a\xa5" "\xae\x16\xf6\x51\xea\x7d\xea\xf5\xe7\x6f\x1e\x9a\x17\xe3\x4a\xef\x62\x0b" "\xeb\x00\x00\x00\x00\x8d\x6e\xfc\xa4\xf0\xc7\xe9\x38\xce\xe1\x71\xf6\x4f" "\x42\x21\x14\xc3\xc2\x70\x6e\x58\x38\x36\xf7\x87\xce\xda\xfa\x98\x77\x56" "\xe9\x5f\xdf\x5f\x77\xf0\xbd\x5b\x42\x58\x35\xf7\xed\x45\xd9\xa6\xfd\xfe" "\xfc\xd0\x4d\x9f\x87\x13\xbf\xfc\xd1\x57\xe3\x87\xb1\x30\x84\xb6\xda\xa4" "\xb6\x10\x66\x55\xfb\x25\x4d\xfa\xdd\xfe\x6f\x2f\x6c\x78\xe3\xdb\xbd\xcf" "\x84\xb0\x6a\x4e\x66\x41\xf3\x7e\x93\xad\x26\x0f\x75\x92\x52\xf9\xfc\x3d" "\xcb\x9e\xbf\x79\xee\xe1\x75\x4d\x97\x01\x00\x00\x80\x33\x5a\xe1\xd9\x63" "\x7f\x95\x8e\xe3\xfc\x1f\x27\xea\x24\x74\x86\x7c\x76\x6b\xd3\xf9\x3f\xe6" "\x7d\xaf\xf9\xbf\x7b\x60\xfe\x9e\xd9\xd5\x63\xf5\x0b\x40\x5d\x45\x5b\x67" "\xb5\x5f\x5b\x93\x7e\x83\x5f\x3e\xd3\x75\x7c\xd3\x6f\x1e\xaf\xcc\xff\x6f" "\x2f\x2a\x4c\xfc\xbf\x02\x17\x2f\xad\xcd\x4f\xb7\x4a\x1f\xeb\xbe\x39\x24" "\xa5\xf2\xe2\x57\x2e\xda\x78\xf2\xd8\x7d\x37\x8c\x5f\x88\xfd\x33\x9d\xb5" "\x9b\x8b\xa7\x9b\xda\x97\x9c\xb7\xff\xb3\xf9\x4b\x62\xff\x42\xf5\xfa\x1d" "\x61\xa6\xfd\x43\x5d\xff\x81\x9e\x13\x4b\x57\x74\x9c\x7d\x4d\x6d\xff\x10" "\x42\xd7\x54\xcf\xff\x97\xd7\xbe\xfc\xf5\x86\x27\xbf\xbc\x65\xbc\x7f\xf3" "\xf7\xbd\xf2\x3f\x46\x7f\x75\x76\xd8\xf6\x67\x85\xfe\x78\x1c\xbf\xd2\xd8" "\x7f\xfd\xd3\x6b\xf7\xef\xce\x7d\x3c\xab\xb6\x7f\xd2\xa4\xff\xf2\x37\x5f" "\x3d\xfa\xd2\x83\x1b\x1e\xad\x7f\xfe\x0b\xb3\x53\xf5\x6f\x3c\xd6\xa9\x74" "\xcd\x96\x07\x8f\x3c\xbc\xfc\xa1\x75\xbd\x57\xa6\xfa\xb7\x35\xe9\x7f\x7f" "\xd7\x07\x5f\xfc\xd1\xdf\xfc\xfd\x73\x95\xfe\x47\x16\x77\x4c\xf4\x5f\xfe" "\x1d\xcf\x3f\x6d\xff\x43\x4b\xf7\x1d\x39\xb0\xf7\x89\x4d\xb5\xef\xbf\xd4" "\xd8\xff\xa1\x70\xfb\x65\xdb\x5f\xdd\xb5\xe5\xd6\xc7\xea\x9f\xbf\xa3\x6e" "\xe1\xf4\x9b\x4f\x1f\x1b\xdf\xff\x87\x0b\x92\xeb\x76\x0e\xbc\xbf\xbd\xfe" "\x16\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\x99\xad\xe7\xa5\x6f" "\x4e\xa4\xe3\xd1\xa1\xc1\xee\xbe\x91\x9e\xe1\xb6\x24\x84\xa4\x49\x4d\x79" "\x0a\xf1\x5e\x26\x57\x2a\x75\xb5\xb0\x8f\x7f\xca\x1c\xfa\xe6\xb9\xa3\xc5" "\xb3\x63\x5c\xe9\x5d\x6c\x61\x1d\x00\x00\x00\xa0\xd1\x0d\xeb\x3e\xbc\x2b" "\x1d\xc7\x39\x3c\xce\xfe\x49\x28\x84\x62\xc8\x85\x5c\xe8\x18\x9b\xfb\xcf" "\xdf\xb3\xec\xf9\x9b\xe7\x1e\x5e\x17\x3a\xab\xf7\xab\xbf\xd9\xfe\x6d\x03" "\x3b\x2e\xbd\x73\xdb\xce\xad\x77\x9c\xea\x47\x00\x00\x00\x00\xa6\x71\xe0" "\xaa\xaf\xd7\xa5\xe3\x38\xff\x67\xab\x71\x12\x3a\x43\x3e\xbb\x2c\xb4\x57" "\xe7\xff\xf5\x4f\xaf\xdd\xbf\x3b\xf7\xf1\xac\x38\xff\x87\x10\xc6\xfe\xdc" "\x9f\xbd\x73\x4b\x7f\xef\xaa\x30\xf1\x9d\x60\xa0\xe7\xc4\xd2\x15\x1d\x67" "\x5f\x13\xf3\x32\xd5\xdf\x42\x25\x6f\xc5\xed\xdb\xfa\xab\x9f\x09\xe2\xba" "\xaf\xbd\xf8\x4b\xab\xaf\xbc\xe9\xc6\x89\xfc\xb6\x74\xfe\xe5\x93\x79\x8b" "\x5f\xb9\x68\xe3\xc9\x63\xf7\xdd\x30\x65\xde\x9a\xc9\xbc\x0f\x17\x24\xd7" "\xed\x1c\x78\x7f\x7b\x6a\x9f\xa5\x89\xbc\xd5\x93\x79\x83\x47\x1e\x5e\xfe" "\xd0\xba\xde\x2b\xe3\x73\x24\xd5\xdf\x42\xf5\x79\x62\xde\xa1\xa5\xfb\x8e" "\x1c\xd8\xfb\xc4\xa6\x98\xd7\x56\xfd\xed\xa8\xae\x07\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x84\x70\xde\x57\xff\xfb\x3b\xe9\x78\x74\x68\xb0\xbb" "\x6f\xa4\x67\x38\x64\x42\x48\x9a\xd4\x94\xa7\x10\xef\x65\x72\xa5\x52\x57" "\x0b\xfb\xf8\xe6\xea\xb7\x47\x4f\x76\xfe\xfa\xb3\x31\xae\xf4\xce\x67\x5b" "\x58\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x76\xe0\x40\x00\x00\x00\x00" "\x00\xc8\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x5f\x3f" "\xa1\x71\x55\x6d\x1c\x80\xcf\x99\x99\x7e\x99\x76\xfa\xd5\x49\x2d\x34\xd1" "\x1a\x5a\xec\xa6\x05\xa1\x10\x2c\x76\x21\xcd\xc6\x3f\x48\xd4\x52\x51\xb4" "\x50\x8c\x62\xdc\xa8\x58\x10\xad\xd8\x85\x6d\x83\xa1\xa8\x8b\x82\x42\x4b" "\xbb\x29\xad\xb8\x56\xb2\x28\x6a\x17\xb1\xd8\x2a\x0a\x62\x15\x17\xe2\x4a" "\x41\x57\x2a\x59\x24\x45\x52\x51\x49\x72\xcf\xe4\xe6\xb6\x97\xc4\x2b\x2d" "\x52\x9e\x07\x86\x33\xef\x99\xb9\xbf\xfb\xde\x33\x67\x6e\x32\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x9f\xf6\xd8\x0f\xf7\x34\xf2\x75\x57\xa3\x67\x76\x3c\xff" "\xda\x0b\x17\x1f\xb8\xe9\xae\xcf\x0f\x0e\x4f\xbd\x7a\xef\x87\xcf\x1d\x58" "\xfb\xd1\x9a\x8b\xed\x91\xc1\xfb\x5f\xdf\x76\xf7\xd7\x43\x9f\x75\x0f\xf4" "\x6d\x1c\xde\xfa\xfe\xd8\x83\xa3\x23\x67\xef\xfc\xe3\xec\x91\x63\x83\x8b" "\x9e\xe8\xe5\xb9\x61\x73\x56\x36\x43\x88\xbf\xc6\x10\xfa\x7e\x1a\x3b\x32" "\x7a\xee\x8b\xb5\x33\x73\x71\xe6\xfc\xb1\xbd\x3f\x74\x77\xc7\xd5\x1f\x77" "\xc7\x42\xc2\x96\xe9\x10\xc2\x53\x9d\x3e\x17\xbe\x38\x36\xd5\xff\xf4\xcc" "\x78\xe0\x8d\xae\x05\xf3\x37\x14\x42\x8a\xd7\x15\x5a\xf5\xd4\xcf\x9c\xf6" "\xc2\x7e\xb9\xbe\x34\xb3\x7d\xb6\xef\xf1\x27\x4f\x8e\x3f\x33\x70\x6e\x6c" "\xfd\x9e\xfe\x5f\x26\x6f\x7f\x7e\xff\xfc\x5b\x62\x33\xb7\x9f\x42\x58\x35" "\x94\x3f\x7e\x59\x08\x61\x79\xf6\x98\x91\x76\x5b\x4f\x3a\x38\x1b\x77\x84" "\x10\x56\xe4\x8e\xbb\x63\x91\xbe\x6e\x5d\x62\xff\xb7\x95\xd4\xeb\xb2\xf1" "\x7f\xd9\xd8\x5a\x24\x27\xbd\xbe\xa1\x50\x37\x96\xd8\x47\xa3\x30\x76\x2d" "\xf1\xb8\xaa\x6a\x57\x39\xbf\xa8\xb8\x7e\xc5\x9b\xd1\xd5\x92\xae\x73\x55" "\x36\x9e\xce\xc6\xcd\xff\x30\xa7\x9e\x1e\x31\xd4\x62\x68\x74\xda\x7f\x36" "\xce\xef\x91\x90\xfb\xdc\x62\x88\xb3\x7b\xbb\xd9\xa9\x6b\xb3\x75\xe8\xd4" "\xa1\x58\xc7\x42\x5d\x2b\xd4\xf5\x65\x85\xeb\x9a\x3d\x6f\xb6\xb0\xf5\x18" "\x17\xce\xa7\xf7\x15\xe6\xd3\xed\xb8\x91\xcd\x6f\xc8\xdf\xab\xaf\x60\x67" "\xc9\x7c\x6f\x36\x36\xb3\x2f\xea\xef\xa9\x0e\xc5\x27\x73\x5a\x97\x3d\x99" "\xbf\x8e\x90\xeb\x6b\xe2\x5a\x6d\x8c\x12\xb5\x92\xef\x5e\x9a\xef\xb4\x97" "\x7d\x18\xad\x6c\xae\x15\x57\x5f\x76\xcc\x5f\x57\x90\x5e\x9b\xf8\xf4\x89" "\x5d\xbf\x7d\xf7\xca\xe9\x76\x49\x1f\xf1\xbd\x98\xe5\xc7\x4a\xf9\x03\xc3" "\xc7\xc7\xdf\x7d\xf4\x4c\x6f\x4f\x59\xfe\x50\x2d\xcb\xaf\x55\xca\x3f\x5f" "\xff\x72\xfa\x9d\xc9\x9e\x95\xa5\xf9\x87\x53\x7e\xbd\x52\xfe\xc3\x7f\xfe" "\x7c\xe8\xe0\x43\x7b\xd7\x94\xae\xcf\x44\x5a\x9f\x46\xa5\xfc\x8d\x6f\xae" "\xdc\x37\xb5\x77\x67\xd7\xfa\xb2\xfc\x13\x29\xbf\x59\x29\x7f\xeb\xee\xbe" "\x6d\xb7\x4c\xbe\xf8\x52\x69\xff\x5b\xd2\xfa\x2c\xaf\x94\xff\xed\x5b\x9b" "\x2e\xed\x3e\xfc\xc1\x99\xd2\xfc\x90\xf2\x57\x54\xca\xff\xfe\xf8\xa9\x75" "\xf5\xde\xb7\x2f\x94\xe6\x8f\xa7\xf5\x69\x2d\x35\x3f\xe4\xf3\x1f\xe9\x3f" "\xba\xfd\xbe\x9b\x47\x8e\x95\xae\xff\x57\x29\xff\xff\x95\xfa\xdf\x75\x61" "\x74\x68\xcf\xc9\x4f\x36\x95\xee\xcf\x1d\x69\x7d\xda\x95\xf2\xa7\xb7\x7f" "\xf3\xe3\xa5\xf6\xe0\xa9\xb2\x7b\x67\x3c\x71\xad\xff\xc2\x02\x5c\x5f\x6e" "\xcc\xfe\xc7\x3a\x94\xd5\x55\x7f\x67\xfe\x5b\xb9\xdf\x0b\x47\xff\x66\xbf" "\x8e\x51\x00\x00\x61\x18\x00\x22\x38\xea\x1f\xfc\xff\x2b\x1d\xb4\x50\x3a" "\x77\xbc\x83\xcc\x59\x93\x33\xdf\xe6\x5b\x3f\xbb\xb3\xa8\x18\xe9\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\xb8\x01\x00\x00\xff\xff\x44\xf7\x65\xfe", 23971); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x20000040, /*chdir=*/1, /*size=*/0x5da3, /*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; }