// https://syzkaller.appspot.com/bug?id=523458049e7a152fa28fa89d6a6c7754220fe788 // 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 #include #include #ifndef __NR_bpf #define __NR_bpf 321 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } static int runcmdline(char* cmdline) { int ret = system(cmdline); if (ret) { } return ret; } #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 const char* setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:") || !write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } #define SWAP_FILE "./swap-file" #define SWAP_FILE_SIZE (128 * 1000 * 1000) static const char* setup_swap() { swapoff(SWAP_FILE); unlink(SWAP_FILE); int fd = open(SWAP_FILE, O_CREAT | O_WRONLY | O_CLOEXEC, 0600); if (fd == -1) return "swap file open failed"; fallocate(fd, FALLOC_FL_ZERO_RANGE, 0, SWAP_FILE_SIZE); close(fd); char cmdline[64]; sprintf(cmdline, "mkswap %s", SWAP_FILE); if (runcmdline(cmdline)) return "mkswap failed"; if (swapon(SWAP_FILE, SWAP_FLAG_PREFER) == 1) return "swapon failed"; return NULL; } 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); } } uint64_t r[6] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$xfs arguments: [ // fs: ptr[in, buffer] { // buffer: {78 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x4 (8 bytes) // opts: ptr[in, fs_options[xfs_options]] { // fs_options[xfs_options] { // elems: array[fs_opt_elem[xfs_options]] { // fs_opt_elem[xfs_options] { // elem: union xfs_options { // nolazytime: buffer: {6e 6f 6c 61 7a 79 74 69 6d 65} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[xfs_options] { // elem: union xfs_options { // dax_never: buffer: {64 61 78 3d 6e 65 76 65 72} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[xfs_options] { // elem: union xfs_options { // inode32: buffer: {69 6e 6f 64 65 33 32} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[xfs_options] { // elem: union xfs_options { // sysvgroups: buffer: {73 79 73 76 67 72 6f 75 70 73} (length // 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[xfs_options] { // elem: union xfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[xfs_options] { // elem: union xfs_options { // dax: buffer: {64 61 78} (length 0x3) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[xfs_options] { // elem: union xfs_options { // nouuid: buffer: {6e 6f 75 75 69 64} (length 0x6) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x4 (1 bytes) // size: len = 0x9736 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x9736) // } // ] // returns fd_dir memcpy((void*)0x2000000001c0, "xfs\000", 4); memcpy((void*)0x200000009640, "./file1\000", 8); memcpy((void*)0x200000000100, "nolazytime", 10); *(uint8_t*)0x20000000010a = 0x2c; memcpy((void*)0x20000000010b, "dax=never", 9); *(uint8_t*)0x200000000114 = 0x2c; memcpy((void*)0x200000000115, "inode32", 7); *(uint8_t*)0x20000000011c = 0x2c; memcpy((void*)0x20000000011d, "sysvgroups", 10); *(uint8_t*)0x200000000127 = 0x2c; memcpy((void*)0x200000000128, "grpquota", 8); *(uint8_t*)0x200000000130 = 0x2c; memcpy((void*)0x200000000131, "dax", 3); *(uint8_t*)0x200000000134 = 0x2c; memcpy((void*)0x200000000135, "nouuid", 6); *(uint8_t*)0x20000000013b = 0x2c; *(uint8_t*)0x20000000013c = 0; memcpy( (void*)0x200000012d80, "\x78\x9c\xec\xdc\x09\xb8\xa6\x73\xe1\xb8\xf1\xf7\xcc\x18\xfb\x64\x0c\x95" "\x94\x9a\x8a\x68\x91\x35\x4b\x94\x99\xc1\x0c\x85\x64\x89\xd2\x82\x2c\x29" "\x4b\x49\x45\x2b\x95\x94\x36\x4a\xda\x17\xc9\x92\x12\x85\x42\x59\xda\x95" "\xec\x2d\x94\xec\x95\x2c\x91\x16\xdb\x30\xff\xeb\xcc\x9c\x61\x8c\xdb\xc4" "\xbf\xdf\xef\xa7\xdc\xf7\x7d\x5d\xe7\xbc\xef\xfb\xbc\xcf\xf3\x9c\xef\xfb" "\xfd\x3c\xcb\x39\x9a\xab\xad\xa7\x6c\x3e\x79\x30\x98\x7f\x30\xb3\x09\x83" "\x39\x3b\xe3\xd2\xa9\xd3\xc6\x5d\xbc\xc9\x8d\x47\x6c\xbf\xe8\xd1\x2b\x9d" "\x70\xeb\xc1\xf7\x5d\x71\xe9\x89\x23\x8f\x93\x46\x1e\x27\x0f\x06\x83\x51" "\x23\x6f\x0f\xcd\x5c\x36\x7e\x70\xe2\x49\xa3\x06\xf3\xcc\x58\x7e\x6f\x0b" "\x2d\xb0\xe0\xd0\xd8\xc1\x60\xe5\x91\x97\x23\xfb\x19\xac\x3e\xf3\x61\xec" "\x05\xb3\xd6\x9b\x3e\x47\x73\x0e\x74\xe8\xde\x6f\x07\xce\xfc\x9a\xd1\x22" "\xc3\x3f\x62\xf8\xc9\x97\x0f\xde\xff\xf0\xc1\x60\x30\x6e\xb6\xed\x87\x06" "\x83\xa1\x7d\xef\xf7\x41\xa5\x6d\x3d\x69\xea\x94\x7b\xad\xee\x71\x1b\xb6" "\x1a\x33\xf2\x7c\xf6\xaf\x79\x67\x7e\x8d\x3d\x7b\x30\x18\x7b\xf2\x80\x8f" "\x8f\xd9\xd7\x1d\x7a\x18\x3e\xd2\xf0\xcf\xdc\xf7\x19\xa7\x8f\xd9\xe4\x61" "\xf8\xd9\xff\x75\x6d\x3d\x69\xea\x86\x73\xf8\x0f\x9f\x8b\xa3\x47\x96\xad" "\x3e\x7c\x8e\xcf\x79\x0e\x1a\x9b\xf3\x38\xbf\x7e\x99\x6d\xd7\x1c\x99\xc2" "\x19\xc7\xdb\x60\x30\x7c\x89\xbb\xcf\xb9\xf2\x5f\xd1\xd6\x93\xa6\x6c\x34" "\x78\xe0\xeb\xfc\xe0\x88\xb5\xce\x3a\x70\xfa\xcc\xeb\xe6\x7c\x83\x99\x37" "\x8a\x05\x06\x83\xc1\x82\x23\xd7\xd7\x85\x1f\x6e\x97\xfa\xf7\x9a\x34\x79" "\x95\x19\xf7\xec\x59\xaf\x47\xd8\x67\x1d\xcb\xfb\xd2\x71\xf1\xf5\x57\x1e" "\x77\xf7\xf0\x4d\x7a\x30\x18\x2c\x36\x18\x8c\xdf\x60\xd6\xbd\xa0\xaa\xaa" "\xaa\xfe\x3b\x9a\x34\x79\x95\x75\xe1\xfe\x3f\xff\xdc\xee\xff\xc7\x1f\xbf" "\xe4\xc9\xdd\xff\xab\xaa\xaa\xfe\x7b\xdb\x70\xd2\xe4\x55\x86\xef\xf5\x73" "\xdc\xff\x17\x9e\xdb\xfd\x7f\xcf\x25\x7f\xf6\xee\x99\xff\xed\x7f\xe2\xea" "\x33\xb7\xba\xfb\xe1\xfd\x10\x55\x55\x55\xf5\x90\x9a\xb2\x21\xde\xff\xc7" "\xcd\xed\xfe\xbf\xfa\xba\xe7\x6d\xd4\xfd\xbf\xaa\xaa\xea\xbf\xb7\xcd\x36" "\x9e\x71\xff\x5f\x78\x8e\xfb\xff\xe2\x73\xbb\xff\x6f\x73\xdc\x5a\x4b\x8d" "\xac\x37\xeb\xf7\x86\xbb\x66\xdb\xe5\xd0\x6c\xff\x7b\xc2\x9d\xb3\x2d\x1f" "\x3d\xdb\xf2\x3b\x66\x5b\x3e\x66\xb6\xfd\xcc\xbe\xfe\xbc\xb3\x2d\xbf\x6d" "\xb6\xe5\xf3\x0d\xbf\x07\xeb\x4f\x18\x0c\xc6\xcf\xfa\xf7\x82\xd3\xee\x5d" "\x3c\x7e\xc2\xf0\x7b\x23\xcb\x6f\x9f\x6d\xf9\xc4\x7b\xff\x9d\xce\xd2\xeb" "\xcd\xb6\x7c\xd2\x6c\xcb\xa7\xcc\xb6\x7c\xf2\xc8\x58\x87\x97\x4f\x9d\x6d" "\xf9\xd4\xd9\xd6\xdf\x60\x2e\x53\x5d\x55\x55\xf5\x1f\xd3\x66\xab\x4c\x59" "\x77\x30\xdb\xbf\xb3\x1f\x59\xbc\xc4\xac\xf7\xe9\xfe\xff\xfd\x53\x2e\x5b" "\xfe\xe1\x1a\x6f\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xfd\x77" "\x76\xf7\x8d\xa7\x9e\x3e\x18\x0c\x86\x06\x83\xc1\xa8\xc1\x60\xda\x60\xe4" "\xf9\xec\x8f\x83\xe9\xd3\xa7\x4f\x1f\x7e\x7d\xfc\x99\xe7\x9f\xff\xb0\x0d" "\xf4\x3f\xa3\xa1\x33\x2e\x9d\x3a\x6d\xdc\xc5\x9b\xdc\x78\xc4\xf6\x8b\x1e" "\xbd\xd2\x09\xb7\x1e\x7c\xef\x2c\xfd\xd7\xf6\xdf\xff\x09\xea\xdf\x69\xd8" "\x7f\xfe\x63\x26\x0c\x06\xbb\x6f\xf9\x70\x0f\xa5\x1e\x86\x3a\xff\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\x5f\xdc\xdd\x37\x9e\x7a\xfa\xc8\x31\x30\x6a\x30\x98\x36" "\x18\x79\xbe\xef\xac\xc7\x53\x0e\x7a\xd9\xcb\x47\x56\x5d\x73\xab\x13\x6e" "\x3e\xf4\xde\x2d\x97\x9e\xb8\xcb\xc8\xb3\x33\x2e\x9d\x3a\x6d\x97\x87\x61" "\xec\x0f\x43\x43\xc3\x9f\x75\xdc\xc5\x9b\xdc\x78\xc4\xf6\x8b\x1e\xbd\xd2" "\x09\xb7\x1e\xfc\x08\x38\x7b\xfe\xfb\x3f\x41\xfd\x3b\xcd\xf0\xdf\x65\x68" "\x30\x18\x39\xbf\xc7\x0d\x9f\xcb\x9b\x4c\xda\x6c\x8b\xe5\x06\x83\xc1\xa1" "\x37\x9f\xb0\xd5\x6a\x83\x7b\xde\x5b\x63\xf8\xbd\xb5\xc6\x8f\x1e\x8c\x9e" "\xb1\xe9\x72\x33\xbe\xaf\xbf\x34\xef\x78\xdf\x0d\x66\x3e\x4e\x1c\xfe\xb6" "\xf8\x3d\xfb\x38\x7e\xc6\xfe\x37\x9c\x7e\xd8\xe8\xa1\x39\x06\x31\x5b\xcf" "\x3b\xe3\xaa\x23\x5e\xb3\xf5\xad\xab\xce\xf9\xb8\xec\x03\x7f\x8e\x51\xb3" "\x9e\x1c\x7e\xf9\xb7\x6f\x99\x3e\x7d\xfa\xf4\xfb\x2c\x1c\x69\xfe\x07\xd8" "\x78\xd6\xfe\x67\x7d\x96\x39\xcf\xf3\x91\xb1\x2f\x37\x3c\xf6\x15\xf6\xda" "\xed\xf5\x2b\xbc\x71\x9f\xb7\x2e\xbf\xcb\x6e\xdb\xed\xbc\xe3\xce\x3b\xee" "\xbe\xd2\x2a\x6b\xac\xba\xda\xca\x2b\xad\xb6\xe6\x73\x56\xd8\x69\x97\x5d" "\x77\x5c\x71\xe6\xf7\x07\x98\xb3\x09\x33\xbe\xaf\xfb\x60\xe6\x6c\xe1\x39" "\xe7\xec\xc6\x49\xb3\xcf\xd9\x9c\x9f\xed\x81\xe6\x6c\xc2\xdc\xe7\x6c\xc6" "\x1e\xa7\xbd\x75\x68\x8b\x59\x73\x36\xcf\x43\x9c\xb3\x75\xe7\x3e\x67\x13" "\x76\x19\xf9\x41\x4b\x4f\x1c\x33\xd8\x76\xc6\xd4\x0c\x0d\x06\x4b\xaf\x37" "\x66\xb0\xf7\xf0\x8b\x95\xe6\x1b\x0c\x96\x5e\x7f\x64\xdd\x25\x86\xd7\x5d" "\x7b\xfc\xa8\xc1\xe0\xa0\x7b\x3f\xe8\xf0\xb3\xf9\xee\x39\x06\x87\xf6\x1d" "\x5e\x67\xeb\x29\x9b\x4f\xbe\x77\x64\xf7\xff\x84\xf7\xbb\x4e\xdf\x67\xc5" "\xa5\x27\x8e\x3c\x4e\x1a\x79\x9c\x3c\x73\x88\x13\x06\xf7\x1e\x8a\xe3\x07" "\x27\x9e\x34\x6a\x78\x2e\xee\x33\xcd\x0b\x2d\xb0\xe0\xd0\xd8\xc1\x60\xe5" "\x91\x97\x23\xfb\x19\xac\x39\xf2\xee\x97\x66\xad\x37\x7d\x8e\xe6\x1c\xe8" "\xd0\xbd\xdf\x0e\x9c\xf9\x35\xa3\x45\x86\x77\x32\xfc\xe4\xb5\x2b\x9e\x7a" "\xc9\xf0\xb9\x38\xc7\xf6\xff\x1b\xfd\x7f\x5d\xff\xef\xe7\xb5\xc6\xd0\x3d" "\x13\x35\x34\xf2\x35\xb2\xce\x4c\xaf\x49\x53\x37\xbc\xf7\x67\xcd\x98\x86" "\xe1\xb9\x1b\x3d\xb2\x6c\xf5\x61\x93\x39\xe7\xec\x7f\xb2\xfb\x8d\x77\xc2" "\x3c\x83\x71\x73\x19\xef\x94\x0d\x27\xaf\x32\xbc\x78\x8e\xf9\x9f\xb5\x09" "\x1e\x5f\x37\x2d\x73\xd6\xdb\x66\x1e\x5b\x13\x57\x9f\xb9\xd5\xdd\xff\xdf" "\x28\x34\xde\x85\xe7\x32\xde\x0d\x27\xe1\x78\x17\x9e\xdb\x78\x8f\x79\xfb" "\xb9\x27\xcd\xdc\xd5\xff\xd8\x78\xe7\xb8\xd6\x6d\x34\xe3\xfb\xc4\x07\x73" "\xad\x1b\xcc\xfd\x5a\x37\x9a\x76\xb0\xe3\x39\x4b\xcd\x79\xad\x7b\xe1\x03" "\x0f\xf1\x3e\xe7\xf1\xac\x39\x9a\x6f\x8e\x95\x1e\xe8\x5a\xb7\xf7\x27\x57" "\xde\x77\x78\xff\x13\xe7\x7e\xad\xdb\x68\x78\xec\x63\xee\x73\xad\x1b\x35" "\x18\x2c\xbd\xee\xac\x6b\xdd\xf0\x85\x6f\xca\x98\xc1\x41\xc3\x2f\x56\x1e" "\x7e\x31\x75\xcc\xe0\xe8\xe1\x17\xab\xcc\x78\xb1\xc0\xe0\xcc\xe1\x17\xcf" "\x7e\xf5\x1e\xbb\xee\x30\xbc\x60\x83\x59\x73\xb2\xe2\xf0\x7e\x27\x8e\x1f" "\x9a\xe1\x7e\xd6\xea\xd7\x2d\x3b\xfd\xe3\xd3\xa7\xaf\x37\x32\x96\x89\xe3" "\xef\x3b\xd6\x91\xe3\x63\xc2\xec\xf7\xf3\x49\xe3\x67\x4e\xe6\xac\x6d\x67" "\xed\x77\x78\xd5\x59\xfb\xbd\xf6\xb1\x33\xdf\x9b\x32\xb2\xdf\x49\x0f\x61" "\xbf\xb3\xb6\xa5\xf1\xde\xbc\xc8\xcc\xf7\xa6\x8e\xec\x77\xf2\x1c\xfb\x1d" "\x33\x97\xfd\xce\xda\xf6\x7e\xe7\xc3\x72\x43\xf7\x5c\xb8\x1e\xe0\x7a\x33" "\x65\x8e\xeb\xcd\xc8\xdf\x38\xb3\x7e\xdc\x7d\xbe\xe6\x9d\xf9\x35\xf6\xec" "\xc1\x60\xec\xc9\xe4\x3b\xc7\xba\xff\xf2\x9a\x49\xe7\xef\xfc\x73\x19\xef" "\xa4\xc9\xab\xac\x3b\x3c\xbe\x39\xce\xdf\x7b\x0e\x47\x3a\x7f\xcf\x9d\x7a" "\xf1\xf0\xbd\x62\xec\x60\x30\x58\x6c\x30\x18\xbf\xc1\xac\xb1\x3f\xc4\x86" "\x1e\x68\xbc\xf3\xcc\x7d\xbc\x93\x61\xbc\xf3\xcc\x6d\xbc\x17\x7e\x75\xb7" "\x8d\xff\x07\xc6\x3b\x98\x6d\xbc\xf7\x39\xce\xb6\xde\x6c\xe6\xb1\xb2\xc1" "\xc8\x71\x36\xf5\x21\x1c\xbf\xb3\xb6\x9d\xf3\x3a\x36\x66\xc6\xbb\x33\x2f" "\xfb\x1b\x3c\x98\xeb\xd8\x84\xfb\x5d\xc7\xf6\x1b\x3d\x6a\x8e\xc9\x9e\xad" "\x07\xfa\x9d\x6d\x07\x58\x7f\xe6\xf3\x25\xee\xfd\x3d\xf7\xd2\x6f\x1c\x35" "\x6b\xee\xc7\xcc\xb1\xdf\x7f\xf5\x3b\xdb\x6c\x9f\x65\x08\xae\x63\xe3\xe6" "\xf8\x7b\x7e\xd4\x06\x57\x0c\x86\x68\xce\xf7\x3d\x66\xed\xf3\x86\x0e\x99" "\xfb\x9c\x8f\x19\xdc\xf7\x6f\x8b\x59\x73\x3e\x6b\xdb\xb9\xcd\xf9\xd4\x07" "\x33\xe7\x4f\x98\xfb\x9c\x3f\xd8\xdf\x93\x97\x7b\xea\xcc\xf7\xc7\xcc\x31" "\xfe\xd9\xe7\x7c\xd3\x0f\x3d\xfe\x83\xb3\xe6\x7c\xde\x39\xf6\xfb\xaf\xe6" "\x7c\xea\xdc\xef\x1d\xf7\x9f\xf3\x89\x83\x31\x34\xe7\x2b\xde\x31\x73\xde" "\xe6\x76\x3d\x7d\xa0\x39\x9f\xb5\xed\xac\x39\x1f\xfe\x88\x6b\x8d\x9f\x67" "\xb0\xfe\xf0\x3d\x6b\x64\xce\xa7\x3c\x98\x39\x5f\xe2\x7f\xe6\x38\x5f\x10" "\xd6\x9f\xf9\x7c\xc7\x7b\x16\x9d\x76\xc4\x09\x2f\x99\x35\xe7\x73\xce\xf1" "\xbf\x9a\xf3\x29\x0f\x75\xce\x27\xdc\x73\x9c\x2f\x3d\xe3\xbd\xa7\x8c\x1a" "\xcc\x3b\xef\x60\xef\xed\xf6\xda\x6b\xcf\x95\x66\x7e\x9f\xf5\x72\xe5\x99" "\xdf\xf9\x5a\x74\xdb\xa5\x33\xe7\x79\x6e\xf7\xd2\x07\x32\x9a\xb5\xed\xdc" "\xce\x8b\xf5\x1e\x8c\xd1\xb8\x07\x65\x34\xf4\xaf\x8c\x96\x9c\xe7\x81\x8c" "\xee\x3d\xb5\xbe\xb2\xc7\x9e\x8f\xf9\xff\xbd\x16\xad\xf7\x50\x8d\x06\x7c" "\x2d\x9a\xef\xa8\x99\xf3\x36\xb7\xdf\x8b\x1e\x68\xce\x2f\x3e\xea\x3e\x73" "\x7e\x9f\xfb\xe0\xe2\xb3\x6d\x3f\xe7\xdf\xa1\x9b\x6d\x3c\xe3\xf7\xee\x85" "\xe7\xb8\x0f\xce\xda\x04\xef\x83\xa7\x9d\xb2\xd1\x01\xb3\x76\x39\xb2\xd9" "\x5d\x73\x0c\x73\xd6\x7d\xf5\xce\xd9\x96\x8f\x9e\x6d\xf9\x1d\xb3\x2d\x1f" "\x33\xdb\x7e\x66\x5f\x7f\xde\xd9\x96\xdf\x36\xdb\xf2\xe1\x8f\x30\xef\x6c" "\xeb\xcf\x62\x9d\x30\xfc\x37\xef\xc8\xf2\x69\xf7\xae\x3e\x7e\xf8\x97\xa7" "\x09\x23\xcb\x6f\x9f\x6d\xf9\xc4\x7b\xb7\x5d\x7a\xbd\xd9\x96\x4f\x9a\x6d" "\xf9\x94\xd9\x96\x4f\xbe\xf7\xd0\x58\x7a\xea\x6c\xcb\xa7\xce\xb6\xfe\x06" "\x83\x87\xd8\xac\xff\x26\xbd\xcb\x9c\x17\xf9\x7a\xb0\xf5\xdf\x7f\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\xee\x3e\xfe\x0b\x3c\x7c\xe3\xa8\x87\xa7\xce\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x71\x77\xdf\x78\xea\xe9\x23\xc7\xc0" "\xa8\xc1\x60\xda\x60\xe6\xf3\xa1\x91\xc7\xc1\xbe\x43\x9b\xde\xb0\xce\xf0" "\xe3\x60\x30\x18\xb3\xfa\xb1\xd3\x37\x7d\xb8\xc7\xfb\x30\x37\x74\xc6\xa5" "\x53\xa7\x8d\xbb\x78\x93\x1b\x8f\xd8\x7e\xd1\xa3\x57\x3a\xe1\xd6\x83\x1f" "\x01\x67\xcf\x7f\xff\x27\xa8\x7f\xa7\x19\xfe\xbb\x0c\x0d\x06\x23\xe7\xf7" "\xb8\x5d\x06\x83\xc1\x26\x93\x36\xdb\x62\xb9\xc1\x60\xb0\xe9\xf4\x63\x57" "\x1f\x35\xb8\xe7\xbd\x25\x86\xdf\x5b\x7b\xfc\xa8\xc1\xe0\xa0\xa1\xfb\xec" "\x60\xbe\x7b\xd6\x19\xda\x77\x78\x9d\xad\xa7\x6c\x3e\x79\x30\x98\x7f\x64" "\x8d\x09\xf7\xfb\xa1\xf7\x3b\x8f\xee\xb3\xe2\xd2\x13\x47\x1e\x27\x8d\x3c" "\x4e\x9e\x79\x7d\x9a\x30\xb8\xf7\x78\x1d\x3f\x38\xf1\xa4\x51\x83\x79\x66" "\x2c\xbf\xb7\x85\x16\x58\x70\x68\xec\x60\xb0\xf2\xc8\xcb\x91\xfd\x0c\x56" "\x9f\xf9\x30\xf6\x82\x59\xeb\x4d\x9f\xa3\x39\x07\x3a\x74\xef\xb7\x03\x67" "\x7e\xcd\x68\x91\xe1\x1f\x31\xfc\x64\xef\x9d\xa7\x3e\x71\x78\xae\xe6\xd8" "\xfe\x3f\xa6\x59\xd7\xea\x5d\x46\xfd\xcb\x55\x3b\xff\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\x1e\x9a\x7f\x47\xcb\x23\xad\x44\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\xdd\x43\xf7\x5f\xe0\x7f" "\x65\x1c\xf5\xf0\xd4\xf9\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb" "\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xc5\xdd\x7d\xe3" "\xa9\xa7\x8f\x1c\x03\xa3\x06\x83\x69\x83\x99\xcf\x87\xf6\x1d\x79\x1c\x0c" "\x1d\x77\xe2\xd3\x47\x0e\x91\x31\xfb\x5c\x74\xe4\x61\x0f\xf7\x78\x1f\xe6" "\x86\xce\xb8\x74\xea\xb4\x71\x17\x6f\x72\xe3\x11\xdb\x2f\x7a\xf4\x4a\x27" "\xdc\x7a\xf0\x23\xe0\xec\xf9\xef\xff\x04\xf5\xef\x34\xc3\x7f\x97\xa1\xc1" "\x60\xe4\xfc\x1e\xb7\xcb\x60\x30\xd8\x64\xd2\x66\x5b\x2c\x37\x18\x0c\x0e" "\x3b\xf2\xa2\x7d\x46\x0d\xee\x79\x6f\x89\xe1\xf7\xd6\x1e\x3f\x6a\x30\x38" "\x68\xe8\x3e\x3b\x98\xef\x9e\x75\x86\xf6\x1d\x5e\x67\xeb\x29\x9b\x4f\x1e" "\x0c\xe6\x1f\x59\x63\xc2\xfd\x7e\xe8\xfd\xce\xa3\xfb\xac\xb8\xf4\xc4\x91" "\xc7\x49\x23\x8f\x93\x67\x5e\x9f\x26\x0c\xee\x3d\x5e\xc7\x0f\x4e\x3c\x69" "\xd4\x60\x9e\x19\xcb\xef\x6d\xa1\x05\x16\x1c\x1a\x3b\x18\xac\x3c\xf2\x72" "\x64\x3f\x83\xd5\x67\x3e\x8c\xbd\x60\xd6\x7a\xd3\xe7\x68\xce\x81\x0e\xdd" "\xfb\xed\xc0\x99\x5f\x33\x5a\x64\xf8\x47\x0c\x3f\xd9\x7f\xe1\x4b\x8f\x1b" "\x9e\xab\x39\xb6\xff\x8f\x69\xd6\xb5\x7a\x97\x51\xff\x72\xd5\xce\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf" "\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb" "\xdf\x5d\xfe\xee\xf2\x17\x77\xf7\x8d\xa7\x9e\x3e\x72\x0c\x8c\x1a\x0c\xa6" "\x0d\x66\x3e\x1f\x35\xf2\x38\xb4\xef\x35\x57\xbf\x73\x8b\xe1\xc7\xe1\xd7" "\x8b\x6e\x70\xc0\xa5\x0f\xf7\x78\x1f\xe6\x86\xce\xb8\x74\xea\xb4\x71\x17" "\x6f\x72\xe3\x11\xdb\x2f\x7a\xf4\x4a\x27\xdc\x7a\xf0\x23\xe0\xec\xf9\xef" "\xff\x04\xf5\xef\x34\xec\x3f\xff\x31\x13\x06\x83\xdd\xb7\x7c\xb8\x87\x52" "\x0f\x43\x9d\xff\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9" "\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77" "\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f" "\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e" "\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef" "\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5" "\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd" "\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb\xfc" "\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf\xbb" "\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97\xbf" "\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77\x97" "\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2\x77" "\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee\xf2" "\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe\xee" "\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d\xfe" "\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\xef\x2e\x7f\x77\xf9\xbb\xcb\xdf\x5d" "\xfe\xee\xf2\x77\x97\xbf\xbb\xfc\xdd\xe5\x2f\xee\xee\x1b\x4f\x3d\x7d\xe4" "\xe9\xa8\x7b\x97\x8e\xda\xb7\xe3\x02\x1b\x3a\xe3\xd2\xa9\xd3\xc6\x5d\xbc" "\xc9\x8d\x47\x6c\xbf\xe8\xd1\x2b\x9d\x70\xeb\xc1\x0f\xf7\x80\xfe\xdd\x1e" "\xc0\x7f\xbf\xfc\x31\x8b\xff\xbb\xf3\xc7\x2c\xfe\xef\xc9\x1f\xb3\xf8\xbf" "\x37\x7f\xcc\xe2\xbf\x7f\xfe\x98\xc5\xff\x7d\xf9\x63\x16\xff\x03\xf2\xc7" "\x2c\xfe\xef\xcf\x1f\xb3\xf8\x7f\x20\x7f\xcc\xe2\x7f\x60\xfe\x98\xc5\xff" "\x83\xf9\x63\x16\xff\x0f\xe5\x8f\x59\xfc\x3f\x9c\x3f\x66\xf1\xff\x48\xfe" "\x98\xc5\xff\xa3\xf9\x63\x16\xff\x83\xf2\xc7\x2c\xfe\x07\xe7\x8f\x59\xfc" "\x3f\x96\x3f\x66\xf1\xff\x78\xfe\x98\xc5\xff\x90\xfc\x31\x8b\xff\x27\xf2" "\xc7\x2c\xfe\x87\xe6\x8f\x59\xfc\x3f\x99\x3f\x66\xf1\xff\x54\xfe\x98\xc5" "\xff\xd3\xf9\x63\x16\xff\xcf\xe4\x8f\x59\xfc\x3f\x9b\x3f\x66\xf1\xff\x5c" "\xfe\x98\xc5\xff\xf3\xf9\x63\x16\xff\x2f\xe4\x8f\x59\xfc\xbf\x98\x3f\x66" "\xf1\xff\x52\xfe\x98\xc5\xff\xb0\xfc\x31\x8b\xff\x97\xf3\xc7\x2c\xfe\x87" "\xe7\x8f\x59\xfc\xbf\x92\x3f\x66\xf1\x3f\x22\x7f\xcc\xe2\x7f\x64\xfe\x98" "\xc5\xff\xa8\xfc\x31\x8b\xff\xd1\xf9\x63\x16\xff\xaf\xe6\x8f\x59\xfc\x8f" "\xc9\x1f\xb3\xf8\x7f\x2d\x7f\xcc\xe2\xff\xf5\xfc\x31\x8b\xff\xb1\xf9\x63" "\x16\xff\x6f\xe4\x8f\x59\xfc\x8f\xcb\x1f\xb3\xf8\x1f\x9f\x3f\x66\xf1\xff" "\x66\xfe\x98\xc5\xff\x5b\xf9\x63\x16\xff\x13\xf2\xc7\x2c\xfe\x27\xe6\x8f" "\x59\xfc\x4f\xca\x1f\xb3\xf8\x7f\x3b\x7f\xcc\xe2\xff\x9d\xfc\x31\x8b\xff" "\xc9\xf9\x63\x16\xff\x53\xf2\xc7\x2c\xfe\xa7\xe6\x8f\x59\xfc\xbf\x9b\x3f" "\x66\xf1\xff\x5e\xfe\x98\xc5\xff\xb4\xfc\x31\x8b\xff\xe9\xf9\x63\x16\xff" "\x33\xf2\xc7\x2c\xfe\x67\xe6\x8f\x59\xfc\xbf\x9f\x3f\x66\xf1\xff\x41\xfe" "\x98\xc5\xff\x87\xf9\x63\x16\xff\x1f\xe5\x8f\x59\xfc\x7f\x9c\x3f\x66\xf1" "\xff\x49\xfe\x98\xc5\xff\xa7\xf9\x63\x16\xff\xb3\xf2\xc7\x2c\xfe\x3f\xcb" "\x1f\xb3\xf8\xff\x3c\x7f\xcc\xe2\x7f\x76\xfe\x98\xc5\xff\x17\xf9\x63\x16" "\xff\x73\xf2\xc7\x2c\xfe\xe7\xe6\x8f\x59\xfc\xcf\xcb\x1f\xb3\xf8\x9f\x9f" "\x3f\x66\xf1\xbf\x20\x7f\xcc\xe2\x7f\x61\xfe\x98\xc5\xff\xa2\xfc\x31\x8b" "\xff\x2f\xf3\xc7\x2c\xfe\xbf\xca\x1f\xb3\xf8\xff\x3a\x7f\xcc\xe2\xff\x9b" "\xfc\x31\x8b\xff\xc5\xf9\x63\x16\xff\x4b\xf2\xc7\x2c\xfe\xbf\xcd\x1f\xb3" "\xf8\xff\x2e\x7f\xcc\xe2\x7f\x69\xfe\x98\xc5\xff\xf7\xf9\x63\x16\xff\xcb" "\xf2\xc7\x2c\xfe\x97\xe7\x8f\x59\xfc\xaf\xc8\x1f\xb3\xf8\x5f\x99\x3f\x66" "\xf1\xbf\x2a\x7f\xcc\xe2\x7f\x75\xfe\x98\xc5\xff\x9a\xfc\x31\x8b\xff\x1f" "\xf2\xc7\x2c\xfe\x7f\xcc\x1f\xb3\xf8\xff\x29\x7f\xcc\xe2\x7f\x6d\xfe\x98" "\xc5\xff\xcf\xf9\x63\x16\xff\xeb\xf2\xc7\x2c\xfe\xd7\xe7\x8f\x59\xfc\x6f" "\xc8\x1f\xb3\xf8\xdf\x98\x3f\x66\xf1\xff\x4b\xfe\x98\xc5\xff\xa6\xfc\x31" "\x8b\xff\xcd\xf9\x63\x16\xff\xbf\xe6\x8f\x59\xfc\x6f\xc9\x1f\xb3\xf8\xff" "\x2d\x7f\xcc\xe2\xff\xf7\xfc\x31\x8b\xff\x3f\xf2\xc7\x2c\xfe\xff\xcc\x1f" "\xb3\xf8\xdf\x9a\x3f\x66\xf1\xbf\x2d\x7f\xcc\xe2\x7f\x7b\xfe\x98\xc5\xff" "\x8e\xfc\x31\x8b\xff\x9d\xf9\x63\x16\xff\x69\xf9\x63\x16\xff\xbb\xf2\xc7" "\x2c\xfe\x77\xe7\x8f\x59\xfc\xa7\xe7\x8f\x49\xfc\x47\x0f\xf2\xc7\x2c\xfe" "\x43\xf9\x63\x16\xff\x51\xf9\x63\x16\xff\xd1\xf9\x63\x16\xff\x79\xf2\xc7" "\x2c\xfe\x63\xf2\xc7\x2c\xfe\xf3\xe6\x8f\x59\xfc\xe7\xcb\x1f\xb3\xf8\xcf" "\x9f\x3f\x66\xf1\x5f\x20\x7f\xcc\xe2\xbf\x60\xfe\x98\xc5\x7f\xa1\xfc\x31" "\x8b\xff\xc2\xf9\x63\x16\xff\xb1\x73\xfa\xcf\xf3\x7f\x3c\xae\xff\xd0\x2c" "\xfe\x8f\xea\xfc\xc7\x2c\xfe\x8b\xe4\x8f\x59\xfc\xc7\xe5\x8f\x59\xfc\x17" "\xcd\x1f\xb3\xf8\x8f\xcf\x1f\xb3\xf8\x2f\x96\x3f\x66\xf1\x5f\x3c\x7f\xcc" "\xe2\xff\xe8\xfc\x31\x8b\xff\x63\xf2\xc7\x2c\xfe\x8f\xcd\x1f\xb3\xf8\x2f" "\x91\x3f\x66\xf1\x7f\x5c\xfe\x98\xc5\x7f\xc9\xfc\x31\x8b\xff\xe3\xf3\xc7" "\x2c\xfe\x4f\xc8\x1f\xb3\xf8\x2f\x95\x3f\x66\xf1\x7f\x62\xfe\x98\xc5\xff" "\x49\xf9\x63\x16\xff\x09\xf9\x63\x16\xff\x27\xe7\x8f\x59\xfc\x9f\x92\xff" "\xfd\x9a\xf5\x4f\x60\x0d\xfe\x4f\xcd\x1f\xb3\x9c\xff\x4b\xe7\x8f\x59\xfc" "\x97\xc9\x1f\xb3\xf8\x3f\x2d\x7f\xcc\xe2\xbf\x6c\xfe\x98\xc5\x7f\xb9\xfc" "\x31\x8b\xff\xd3\xf3\xc7\x2c\xfe\xcf\xc8\x1f\xb3\xf8\x3f\x33\x7f\xcc\xe2" "\xff\xac\xfc\x31\x8b\xff\xf2\xf9\x63\x16\xff\x67\xe7\x8f\x59\xfc\x57\xc8" "\x1f\xb3\xf8\xaf\x98\x3f\x66\xf1\x5f\x29\x7f\xcc\xe2\xbf\x72\xfe\x98\xc5" "\x7f\x95\xfc\x31\x8b\xff\xaa\xf9\x63\x16\xff\xe7\xe4\x8f\x59\xfc\x57\xcb" "\x1f\xb3\xf8\xaf\x9e\x3f\x66\xf1\x5f\x23\x7f\xcc\xe2\xbf\x66\xfe\x98\xc5" "\xff\xb9\xf9\x63\x16\xff\xb5\xf2\xc7\x2c\xfe\x6b\xe7\x8f\x59\xfc\x9f\x97" "\x3f\x66\xf1\x7f\x7e\xfe\x98\xc5\x7f\x9d\xfc\x31\x8b\xff\xc4\xfc\x31\x8b" "\xff\xa4\xfc\x31\x8b\xff\xe4\xfc\x31\x8b\xff\xba\xf9\x63\x16\xff\xf5\xf2" "\xc7\x2c\xfe\xeb\xe7\x8f\x59\xfc\xa7\xe4\x8f\x59\xfc\xa7\xaa\xfc\x47\x3f" "\xe8\x35\x2d\xfe\x1b\xa8\xfc\x1f\x7c\x16\xff\x0d\xf3\xc7\x2c\xfe\x2f\xc8" "\x1f\xb3\xf8\xbf\x30\x7f\xcc\xe2\xbf\x51\xfe\x98\xc5\x7f\xe3\xfc\x31\x8b" "\xff\x26\xf9\x63\x16\xff\x17\xe5\x8f\x59\xfc\x37\xcd\x1f\xb3\xf8\xbf\x38" "\x7f\xcc\xe2\xbf\x59\xfe\x98\xc5\x7f\xf3\xfc\x31\x8b\xff\x16\xf9\x63\x16" "\xff\x2d\xf3\xc7\x2c\xfe\x2f\xc9\x1f\xb3\xf8\x6f\x95\x3f\x66\xf1\xdf\x3a" "\x7f\xcc\xe2\xff\xd2\xfc\x31\x8b\xff\xcb\xf2\xc7\x2c\xfe\xdb\xe4\x8f\x59" "\xfc\x5f\x9e\x3f\x66\xf1\x7f\x45\xfe\x98\xc5\xff\x95\xf9\x63\x16\xff\x57" "\xe5\x8f\x59\xfc\xb7\xcd\x1f\xb3\xf8\x6f\x97\x3f\x66\xf1\xdf\x3e\x7f\xcc" "\xe2\xff\xea\xfc\x31\x8b\xff\x0e\xf9\x63\x16\xff\x1d\xf3\xc7\x2c\xfe\x3b" "\xe5\x8f\x59\xfc\x77\xce\x1f\xb3\xf8\xbf\x26\x7f\xcc\xe2\xbf\x4b\xfe\x98" "\xc5\xff\xb5\xf9\x63\x16\xff\xd7\xe5\x8f\x59\xfc\x77\xcd\x1f\xb3\xf8\xef" "\x96\x3f\x66\xf1\xdf\x3d\x7f\xcc\xe2\xbf\x47\xfe\x98\xc5\xff\xf5\xf9\x63" "\x16\xff\x37\xe4\x8f\x59\xfc\xf7\xcc\x1f\xb3\xf8\xbf\x31\x7f\xcc\xe2\xbf" "\x57\xfe\x98\xc5\xff\x4d\xf9\x63\x16\xff\x37\xe7\x8f\x59\xfc\xdf\x92\x3f" "\x66\xf1\xdf\x3b\x7f\xcc\xe2\xbf\x4f\xfe\x98\xc5\xff\xad\xf9\x63\x16\xff" "\xb7\xe5\x8f\x59\xfc\xdf\x9e\x3f\x66\xf1\x7f\x47\xfe\x98\xc5\xff\x9d\xf9" "\x63\x16\xff\x77\xe5\x8f\x59\xfc\xf7\xcd\x1f\xb3\xf8\xef\x97\x3f\x66\xf1" "\x7f\x77\xfe\x98\xc5\xff\x3d\xf9\x63\x16\xff\xf7\xe6\x8f\x59\xfc\xf7\xcf" "\x1f\xb3\xf8\xbf\x2f\x7f\xcc\xe2\x7f\x40\xfe\x98\xc5\xff\xfd\xf9\x63\x16" "\xff\x0f\xe4\x8f\x59\xfc\x0f\xcc\x1f\xb3\xf8\x7f\x30\x7f\xcc\xe2\xff\xa1" "\xfc\x31\x8b\xff\x87\xf3\xc7\x2c\xfe\x1f\xc9\x1f\xb3\xf8\x7f\x34\x7f\xcc" "\xe2\x7f\x50\xfe\x98\xc5\xff\xe0\xfc\x31\x8b\xff\xc7\xf2\xc7\x2c\xfe\x1f" "\xcf\x1f\xb3\xf8\x1f\x92\x3f\x66\xf1\xff\x44\xfe\x98\xc5\xff\xd0\xfc\x31" "\x8b\xff\x27\xf3\xc7\x2c\xfe\x9f\xca\x1f\xb3\xf8\x7f\x3a\x7f\xcc\xe2\xff" "\x99\xfc\x31\x8b\xff\x67\xf3\xc7\x2c\xfe\x9f\xcb\x1f\xb3\xf8\x7f\x3e\x7f" "\xcc\xe2\xff\x85\xfc\x31\x8b\xff\x17\xf3\xc7\x2c\xfe\x5f\xca\x1f\xb3\xf8" "\x1f\x96\x3f\x66\xf1\xff\x72\xfe\x98\xc5\xff\xf0\xfc\x31\x8b\xff\x57\xf2" "\xc7\x2c\xfe\x47\xe4\x8f\x59\xfc\x8f\xcc\x1f\xb3\xf8\x1f\x95\x3f\x66\xf1" "\x3f\x3a\x7f\xcc\xe2\xff\xd5\xfc\x31\x8b\xff\x31\xf9\x63\x16\xff\xaf\xe5" "\x8f\x59\xfc\xbf\x9e\x3f\x66\xf1\x3f\x36\x7f\xcc\xe2\xff\x8d\xfc\x31\x8b" "\xff\x71\xf9\x63\x16\xff\xe3\xf3\xc7\x2c\xfe\xdf\xcc\x1f\xb3\xf8\x7f\x2b" "\x7f\xcc\xe2\x7f\x42\xfe\x98\xc5\xff\xc4\xfc\x31\x8b\xff\x49\xf9\x63\x16" "\xff\x6f\xe7\x8f\x59\xfc\xbf\x93\x3f\x66\xf1\x3f\x39\x7f\xcc\xe2\x7f\x4a" "\xfe\x98\xc5\xff\xd4\xfc\x31\x8b\xff\x77\xf3\xc7\x2c\xfe\xdf\xcb\x1f\xb3" "\xf8\x9f\x96\x3f\x66\xf1\x3f\x3d\xff\x19\x1d\x32\xfa\xbe\xaf\x2d\xfe\x67" "\xe4\x8f\x59\xfc\xcf\xcc\x1f\xb3\xf8\x7f\x3f\x7f\xcc\xe2\xff\x83\xfc\x31" "\x8b\xff\x0f\xf3\xc7\x2c\xfe\x3f\xca\x1f\xb3\xf8\xff\x38\x7f\xcc\xe2\xff" "\x93\xfc\x31\x8b\xff\x4f\xf3\xc7\x2c\xfe\x67\xe5\x8f\x59\xfc\x7f\x96\x3f" "\x66\xf1\xff\x79\xfe\x98\xc5\xff\xec\xfc\x31\x8b\xff\x2f\xf2\xc7\x2c\xfe" "\xe7\xe4\x8f\x59\xfc\xcf\xcd\x1f\xb3\xf8\x9f\x97\x3f\x66\xf1\x3f\x3f\x7f" "\xcc\xe2\x7f\x41\xfe\x98\xc5\xff\xc2\xfc\x31\x8b\xff\x45\xf9\x63\x16\xff" "\x5f\xe6\x8f\x59\xfc\x7f\x95\x3f\x66\xf1\xff\x75\xfe\x98\xc5\xff\x37\xf9" "\x63\x16\xff\x8b\xf3\xc7\x1e\x71\xfe\xc7\xb0\xff\x25\xf9\x63\x8f\x38\xff" "\x07\x38\xff\x7f\x9b\x3f\x66\xf1\xff\x5d\xfe\x98\xc5\xff\xd2\xfc\x31\x8b" "\xff\xef\xf3\xc7\x2c\xfe\x97\xe5\x8f\x59\xfc\x2f\xcf\x1f\xb3\xf8\x5f\x91" "\x3f\x66\xf1\xbf\x32\x7f\xcc\xe2\x7f\x55\xfe\x98\xc5\xff\xea\xfc\x31\x8b" "\xff\x35\xf9\x63\x16\xff\x3f\xe4\x8f\x59\xfc\xff\x98\x3f\x66\xf1\xff\x53" "\xfe\x98\xc5\xff\xda\xfc\x31\x8b\xff\x9f\xf3\xc7\x2c\xfe\xd7\xe5\x8f\x59" "\xfc\xaf\xcf\x1f\xb3\xf8\xdf\x90\x3f\x66\xf1\xbf\x31\x7f\xcc\xe2\xff\x97" "\xfc\x31\x8b\xff\x4d\xf9\x63\x16\xff\x9b\xf3\xc7\x2c\xfe\x7f\xcd\x1f\xb3" "\xf8\xdf\x92\x3f\x66\xf1\xff\x5b\xfe\x98\xc5\xff\xef\xf9\x63\x16\xff\x7f" "\xe4\x8f\x59\xfc\xff\x99\x3f\x66\xf1\xbf\x35\x7f\xcc\xe2\x7f\x5b\xfe\x98" "\xc5\xff\xf6\xfc\x31\x8b\xff\x1d\xf9\x63\x16\xff\x3b\xf3\xc7\x2c\xfe\xd3" "\xf2\xc7\x2c\xfe\x77\xe5\x8f\x59\xfc\xef\xce\x1f\xb3\xf8\x4f\xcf\x1f\x93" "\xf8\xcf\x33\xc8\x1f\xb3\xf8\x0f\xe5\x8f\x59\xfc\x47\xe5\x8f\x59\xfc\x47" "\xe7\x8f\x59\xfc\xe7\xc9\x1f\xb3\xf8\x8f\xc9\x1f\xb3\xf8\xcf\x9b\x3f\x66" "\xf1\x9f\x2f\x7f\xcc\xe2\x3f\x7f\xfe\x98\xc5\x7f\x81\xfc\x31\x8b\xff\x82" "\xf9\x63\x16\xff\x85\xf2\xc7\x2c\xfe\x0b\xe7\x8f\x59\xfc\xc7\xe6\x8f\x59" "\xfc\x1f\x95\x3f\x66\xf1\x5f\x24\x7f\xcc\xe2\x3f\x2e\x7f\xcc\xe2\xbf\x68" "\xfe\x98\xc5\x7f\x7c\xfe\x98\xc5\x7f\xb1\xfc\x31\x8b\xff\xe2\xf9\x63\x16" "\xff\x47\xe7\x8f\x59\xfc\x1f\x93\x3f\x66\xf1\x7f\x6c\xfe\x98\xc5\x7f\x89" "\xfc\x31\x8b\xff\xe3\xf2\xc7\x2c\xfe\x4b\xe6\x8f\x59\xfc\x1f\x9f\x3f\x66" "\xf1\x7f\x42\xfe\x98\xc5\x7f\xa9\xfc\x31\x8b\xff\x13\xf3\xc7\x2c\xfe\x4f" "\xca\x1f\xb3\xf8\x4f\xc8\x1f\xb3\xf8\x3f\x39\x7f\xcc\xe2\xff\x94\xfc\x31" "\x8b\xff\x53\xf3\xc7\x2c\xfe\x4b\xe7\x8f\x59\xfc\x97\xc9\x1f\xb3\xf8\x3f" "\x2d\x7f\xcc\xe2\xbf\x6c\xfe\x98\xc5\x7f\xb9\xfc\x31\x8b\xff\xd3\xf3\xc7" "\x2c\xfe\xcf\xc8\x1f\xb3\xf8\x3f\x33\x7f\xcc\xe2\xff\xac\xfc\x31\x8b\xff" "\xf2\xf9\x63\x16\xff\x67\xe7\x8f\x59\xfc\x57\xc8\x1f\xb3\xf8\xaf\x98\x3f" "\x66\xf1\x5f\x29\x7f\xcc\xe2\xbf\x72\xfe\x98\xc5\x7f\x95\xfc\x31\x8b\xff" "\xaa\xf9\x63\x16\xff\xe7\xe4\x8f\x59\xfc\x57\xcb\x1f\xb3\xf8\xaf\x9e\x3f" "\x66\xf1\x5f\x23\x7f\xcc\xe2\xbf\x66\xfe\x98\xc5\xff\xb9\xf9\x63\x16\xff" "\xb5\xf2\xc7\x2c\xfe\x6b\xe7\x8f\x59\xfc\x9f\x97\x3f\x66\xf1\x7f\x7e\xfe" "\x98\xc5\x7f\x9d\xfc\x31\x8b\xff\xc4\xfc\x31\x8b\xff\xa4\xfc\x31\x8b\xff" "\xe4\xfc\x31\x8b\xff\xba\xf9\x63\x16\xff\xf5\xf2\xc7\x2c\xfe\xeb\xe7\x8f" "\x59\xfc\xa7\xe4\x8f\x59\xfc\xa7\xe6\x8f\x59\xfc\x37\xc8\x1f\xb3\xf8\x6f" "\x98\x3f\x66\xf1\x7f\x41\xfe\x98\xc5\xff\x85\xf9\x63\x16\xff\x8d\x84\xfe" "\xeb\x3c\x88\x75\x2c\xfe\x1b\x0b\xfd\x1f\x4c\x16\xff\x4d\xf2\xc7\x2c\xfe" "\x2f\xca\x1f\xb3\xf8\x6f\x9a\x3f\x66\xf1\x7f\xf1\xe0\xfc\xfc\x21\x8b\xff" "\x66\x9d\xff\x98\xc5\x7f\xf3\xfc\x31\x8b\xff\x16\xf9\x63\x16\xff\x2d\xf3" "\xc7\x2c\xfe\x2f\xc9\x1f\xb3\xf8\x6f\x95\x3f\x66\xf1\xdf\x3a\x7f\xcc\xe2" "\xff\xd2\xfc\x31\x8b\xff\xcb\xf2\xc7\x2c\xfe\xdb\xe4\x8f\x59\xfc\x5f\x9e" "\x3f\x66\xf1\x7f\x45\xfe\x98\xc5\xff\x95\xf9\x63\x16\xff\x57\xe5\x8f\x59" "\xfc\xb7\xcd\x1f\xb3\xf8\x6f\x97\x3f\x66\xf1\xdf\x3e\x7f\xcc\xe2\xff\xea" "\xfc\x31\x8b\xff\x0e\xf9\x63\x16\xff\x1d\xf3\xc7\x2c\xfe\x3b\xe5\x8f\x59" "\xfc\x77\xce\x1f\xb3\xf8\xbf\x26\x7f\xcc\xe2\xbf\x4b\xfe\x98\xc5\xff\xb5" "\xf9\x63\x16\xff\xd7\xe5\x8f\x59\xfc\x77\xcd\x1f\xb3\xf8\xef\x96\x3f\x66" "\xf1\xdf\x3d\x7f\xcc\xe2\xbf\x47\xfe\x98\xc5\xff\xf5\xf9\x63\x16\xff\x37" "\xe4\x8f\x59\xfc\xf7\xcc\x1f\xb3\xf8\xbf\x31\x7f\xcc\xe2\xbf\x57\xfe\x98" "\xc5\xff\x4d\xf9\x63\x16\xff\x37\xe7\x8f\x59\xfc\xdf\x92\x3f\x66\xf1\xdf" "\x3b\x7f\xcc\xe2\xbf\x4f\xfe\x98\xc5\xff\xad\xf9\x63\x16\xff\xb7\xe5\x8f" "\x59\xfc\xdf\x9e\x3f\x66\xf1\x7f\x47\xfe\x98\xc5\xff\x9d\xf9\x63\x16\xff" "\x77\xe5\x8f\x59\xfc\xf7\xcd\x1f\xb3\xf8\xef\x97\x3f\x66\xf1\x7f\x77\xfe" "\x98\xc5\xff\x3d\xf9\x63\x16\xff\xf7\xe6\x8f\x59\xfc\xf7\xcf\x1f\xb3\xf8" "\xbf\x2f\x7f\xcc\xe2\x7f\x40\xfe\x98\xc5\xff\xfd\xf9\x63\x16\xff\x0f\xe4" "\x8f\x59\xfc\x0f\xcc\x1f\xb3\xf8\x7f\x30\x7f\xcc\xe2\xff\xa1\xfc\x31\x8b" "\xff\x87\xf3\xc7\x2c\xfe\x1f\xc9\x1f\xb3\xf8\x7f\x34\x7f\xcc\xe2\x7f\x50" "\xfe\x98\xc5\xff\xe0\xfc\x31\x8b\xff\xc7\xf2\xc7\x2c\xfe\x1f\xcf\x1f\xb3" "\xf8\x1f\x92\x3f\x66\xf1\xff\x44\xfe\x98\xc5\xff\xd0\xfc\x31\x8b\xff\x27" "\xf3\xc7\x2c\xfe\x9f\xca\x1f\xb3\xf8\x7f\x3a\x7f\xcc\xe2\xff\x99\xfc\x31" "\x8b\xff\x67\xf3\xc7\x2c\xfe\x9f\xcb\x1f\xb3\xf8\x7f\x3e\x7f\xcc\xe2\xff" "\x85\xfc\x31\x8b\xff\x17\xf3\xc7\x2c\xfe\x5f\xca\x1f\xb3\xf8\x1f\x96\x3f" "\x66\xf1\xff\x72\xfe\x98\xc5\xff\xf0\xfc\x31\x8b\xff\x57\xf2\xc7\x2c\xfe" "\x47\xe4\x8f\x59\xfc\x8f\xcc\x1f\xb3\xf8\x1f\x95\x3f\x66\xf1\x3f\x3a\x7f" "\xcc\xe2\xff\xd5\xfc\x31\x8b\xff\x31\xf9\x63\x16\xff\xaf\xe5\x8f\x59\xfc" "\xbf\x9e\x3f\x66\xf1\x3f\x36\x7f\xcc\xe2\xff\x8d\xfc\x31\x8b\xff\x71\xf9" "\x63\x16\xff\xe3\xf3\xc7\x2c\xfe\xdf\xcc\x1f\xb3\xf8\x7f\x2b\x7f\xcc\xe2" "\x7f\x42\xfe\x98\xc5\xff\xc4\xfc\x31\x8b\xff\x49\xf9\x63\x16\xff\x6f\xe7" "\x8f\x59\xfc\xbf\x93\x3f\x66\xf1\x3f\x39\x7f\xcc\xe2\x7f\x4a\xfe\x98\xc5" "\xff\xd4\xfc\x31\x8b\xff\x77\xf3\xc7\x2c\xfe\xdf\xcb\x1f\xb3\xf8\x9f\x96" "\x3f\x66\xf1\x3f\x3d\x7f\xcc\xe2\x7f\x46\xfe\x98\xc5\xff\xcc\xfc\x31\x8b" "\xff\xf7\xf3\xc7\x2c\xfe\x3f\xc8\x1f\xb3\xf8\xff\x30\x7f\xcc\xe2\xff\xa3" "\xfc\x31\x8b\xff\x8f\xf3\xc7\x2c\xfe\x3f\xc9\x1f\xb3\xf8\xff\x34\x7f\xcc" "\xe2\x7f\x56\xfe\x98\xc5\xff\x67\xf9\x63\x16\xff\x9f\xe7\x8f\x59\xfc\xcf" "\xce\x1f\xb3\xf8\xff\x22\x7f\xcc\xe2\x7f\x4e\xfe\x98\xc5\xff\xdc\xfc\x31" "\x8b\xff\x79\xf9\x63\x16\xff\xf3\xf3\xc7\x2c\xfe\x17\xe4\x8f\x59\xfc\x2f" "\xcc\x1f\xb3\xf8\x5f\x94\x3f\x66\xf1\xff\x65\xfe\x98\xc5\xff\x57\xf9\x63" "\x16\xff\x5f\xe7\x8f\x59\xfc\x7f\x93\x3f\x66\xf1\xbf\x38\x7f\xcc\xe2\x7f" "\x49\xfe\x98\xc5\xff\xb7\xf9\x63\x16\xff\xdf\xe5\x8f\x59\xfc\x2f\xcd\x1f" "\xb3\xf8\xff\x3e\x7f\xcc\xe2\x7f\x59\xfe\x98\xc5\xff\xf2\xfc\x31\x8b\xff" "\x15\xf9\x63\x16\xff\x2b\xf3\xc7\x2c\xfe\x57\xe5\x8f\x59\xfc\xaf\xce\x1f" "\xb3\xf8\x5f\x93\x3f\x66\xf1\xff\x43\xfe\x98\xc5\xff\x8f\xf9\x63\x16\xff" "\x3f\xe5\x8f\x59\xfc\xaf\xcd\x1f\xb3\xf8\xff\x39\x7f\xcc\xe2\x7f\x5d\xfe" "\x98\xc5\xff\xfa\xfc\x31\x8b\xff\x0d\xf9\x63\x16\xff\x1b\xf3\xc7\x2c\xfe" "\x7f\xc9\x1f\xb3\xf8\xdf\x94\x3f\x66\xf1\xbf\x39\x7f\xcc\xe2\xff\xd7\xfc" "\x31\x8b\xff\x2d\xf9\x63\x16\xff\xbf\xe5\x8f\x59\xfc\xff\x9e\x3f\x66\xf1" "\xff\x47\xfe\x98\xc5\xff\x9f\xf9\x63\x16\xff\x5b\xf3\xc7\x2c\xfe\xb7\xe5" "\x8f\x59\xfc\x6f\xcf\x1f\xb3\xf8\xdf\x91\x3f\x66\xf1\xbf\x33\x7f\xcc\xe2" "\x3f\x2d\x7f\xcc\xe2\x7f\x57\xfe\x98\xc5\xff\xee\xfc\x31\x8b\xff\xf4\xfc" "\x31\x89\xff\x98\x41\xfe\x98\xc5\x7f\x28\x7f\xcc\xe2\x3f\x2a\x7f\xcc\xe2" "\x3f\x3a\x7f\xcc\xe2\x3f\x4f\xfe\x98\xc5\x7f\x4c\xfe\x98\xc5\x7f\xde\xfc" "\x31\x8b\xff\x7c\xf9\x63\x16\xff\xf9\xf3\xc7\x2c\xfe\x0b\xe4\x8f\x59\xfc" "\x17\xcc\x1f\xb3\xf8\x2f\x94\x3f\x66\xf1\x5f\x38\x7f\xcc\xe2\x3f\x36\x7f" "\xcc\xe2\xff\xa8\xfc\x31\x8b\xff\x22\xf9\x63\x16\xff\x71\xf9\x63\x16\xff" "\x45\xf3\xc7\x2c\xfe\xe3\xf3\xc7\x2c\xfe\x8b\xe5\x8f\x59\xfc\x17\xcf\x1f" "\xb3\xf8\x3f\x3a\x7f\xcc\xe2\xff\x98\xfc\x31\x8b\xff\x63\xf3\xc7\x2c\xfe" "\x4b\xe4\x8f\x59\xfc\x1f\x97\x3f\x66\xf1\x5f\x32\x7f\xcc\xe2\xff\xf8\xfc" "\x31\x8b\xff\x13\xf2\xc7\x2c\xfe\x4b\xe5\x8f\x59\xfc\x9f\x98\x3f\x66\xf1" "\x7f\x52\xfe\x98\xc5\x7f\x42\xfe\x98\xc5\xff\xc9\xf9\x63\x16\xff\xa7\xe4" "\x8f\x59\xfc\x9f\x9a\x3f\x66\xf1\x5f\x3a\x7f\xcc\xe2\xbf\x4c\xfe\x98\xc5" "\xff\x69\xf9\x63\x16\xff\x65\xf3\xc7\x2c\xfe\xcb\xe5\x8f\x59\xfc\x9f\x9e" "\x3f\x66\xf1\x7f\x46\xfe\x98\xc5\xff\x99\xf9\x63\x16\xff\x67\xe5\x8f\x59" "\xfc\x97\xcf\x1f\xb3\xf8\x3f\x3b\x7f\xcc\xe2\xbf\x42\xfe\x98\xc5\x7f\xc5" "\xfc\x31\x8b\xff\x4a\xf9\x63\x16\xff\x95\xf3\xc7\x2c\xfe\xab\xe4\x8f\x59" "\xfc\x57\xcd\x1f\xb3\xf8\x3f\x27\x7f\xcc\xe2\xbf\x5a\xfe\x98\xc5\x7f\xf5" "\xfc\x31\x8b\xff\x1a\xf9\x63\x16\xff\x35\xf3\xc7\x2c\xfe\xcf\xcd\x1f\xb3" "\xf8\xaf\x95\x3f\x66\xf1\x5f\x3b\x7f\xcc\xe2\xff\xbc\xfc\x31\x8b\xff\xf3" "\xf3\xc7\x2c\xfe\xeb\xe4\x8f\x59\xfc\x27\xe6\x8f\x59\xfc\x27\xe5\x8f\x59" "\xfc\x27\xe7\x8f\x59\xfc\xd7\xcd\x1f\xb3\xf8\xaf\x97\x3f\x66\xf1\x5f\x3f" "\x7f\xcc\xe2\x3f\x25\x7f\xcc\xe2\x3f\x35\x7f\xcc\xe2\xbf\x41\xfe\x98\xc5" "\x7f\xc3\xfc\x31\x8b\xff\x0b\xf2\xc7\x2c\xfe\x2f\xcc\x1f\xb3\xf8\x6f\x94" "\x3f\x66\xf1\xdf\x38\x7f\xcc\xe2\xbf\x49\xfe\x98\xc5\xff\x45\xf9\x63\x16" "\xff\x4d\xf3\xc7\x2c\xfe\x2f\xce\x1f\xb3\xf8\x6f\x96\x3f\x66\xf1\xdf\x3c" "\x7f\xcc\xe2\xbf\x45\xfe\x98\xc5\x7f\xcb\xfc\x31\x8b\xff\x4b\xf2\xc7\x2c" "\xfe\x5b\xe5\x8f\x59\xfc\xb7\xce\x1f\xb3\xf8\xbf\x34\x7f\xcc\xe2\xff\xb2" "\xfc\x31\x8b\xff\x36\xf9\x63\x16\xff\x97\xe7\x8f\x59\xfc\x5f\x91\x3f\x66" "\xf1\x7f\x65\xfe\x98\xc5\xff\x55\xf9\x63\x16\xff\x6d\xf3\xc7\x2c\xfe\xdb" "\xe5\x8f\x59\xfc\xb7\xcf\x1f\xb3\xf8\xbf\x3a\x7f\xcc\xe2\xbf\x43\xfe\x98" "\xc5\x7f\xc7\xfc\x31\x8b\xff\x4e\xf9\x63\x16\xff\x9d\xf3\xc7\x2c\xfe\xaf" "\xc9\x1f\xb3\xf8\xef\x92\x3f\x66\xf1\x7f\x6d\xfe\x98\xc5\xff\x75\xf9\x63" "\x16\xff\x5d\xf3\xc7\x2c\xfe\xbb\xe5\x8f\x59\xfc\x77\xcf\x1f\xb3\xf8\xef" "\x91\x3f\x66\xf1\x7f\x7d\xfe\x98\xc5\xff\x0d\xf9\x63\x16\xff\x3d\xf3\xc7" "\x2c\xfe\x6f\xcc\x1f\xb3\xf8\xef\x95\x3f\x66\xf1\x7f\x53\xfe\x98\xc5\xff" "\xcd\xf9\x63\x16\xff\xb7\xe4\x8f\x59\xfc\xf7\xce\x1f\xb3\xf8\xef\x93\x3f" "\x66\xf1\x7f\x6b\xfe\x98\xc5\xff\x6d\xf9\x63\x16\xff\xb7\xe7\x8f\x59\xfc" "\xdf\x91\x3f\x66\xf1\x7f\x67\xfe\x98\xc5\xff\x5d\xf9\x63\x16\xff\x7d\xf3" "\xc7\x2c\xfe\xfb\xe5\x8f\x59\xfc\xdf\x9d\x3f\x66\xf1\x7f\x4f\xfe\x98\xc5" "\xff\xbd\xf9\x63\x16\xff\xfd\xf3\xc7\x2c\xfe\xef\xcb\x1f\xb3\xf8\x1f\x90" "\x3f\x66\xf1\x7f\x7f\xfe\x98\xc5\xff\x03\xf9\x63\x16\xff\x03\xf3\xc7\x2c" "\xfe\x1f\xcc\x1f\xb3\xf8\x7f\x28\x7f\xcc\xe2\xff\xe1\xfc\x31\x8b\xff\x47" "\xf2\xc7\x2c\xfe\x1f\xcd\x1f\xb3\xf8\x1f\x94\x3f\x66\xf1\x3f\x38\x7f\xcc" "\xe2\xff\xb1\xfc\x31\x8b\xff\xc7\xf3\xc7\x2c\xfe\x87\xe4\x8f\x59\xfc\x3f" "\x91\x3f\x66\xf1\x3f\x34\x7f\xcc\xe2\xff\xc9\xfc\x31\x8b\xff\xa7\xf2\xc7" "\x2c\xfe\x9f\xce\x1f\xb3\xf8\x7f\x26\x7f\xcc\xe2\xff\xd9\xfc\x31\x8b\xff" "\xe7\xf2\xc7\x2c\xfe\x9f\xcf\x1f\xb3\xf8\x7f\x21\x7f\xcc\xe2\xff\xc5\xfc" "\x31\x8b\xff\x97\xf2\xc7\x2c\xfe\x87\xe5\x8f\x59\xfc\xbf\x9c\x3f\x66\xf1" "\x3f\x3c\x7f\xcc\xe2\xff\x95\xfc\x31\x8b\xff\x11\xf9\x63\x16\xff\x23\xf3" "\xc7\x2c\xfe\x47\xe5\x8f\x59\xfc\x8f\xce\x1f\xb3\xf8\x7f\x35\x7f\xcc\xe2" "\x7f\x4c\xfe\x98\xc5\xff\x6b\xf9\x63\x16\xff\xaf\xe7\x8f\x59\xfc\x8f\xcd" "\x1f\xb3\xf8\x7f\x23\x7f\xcc\xe2\x7f\x5c\xfe\x98\xc5\xff\xf8\xfc\x31\x8b" "\xff\x37\xf3\xc7\x2c\xfe\xdf\xca\x1f\xb3\xf8\x9f\x90\x3f\x66\xf1\x3f\x31" "\x7f\xcc\xe2\x7f\x52\xfe\x98\xc5\xff\xdb\xf9\x63\x16\xff\xef\xe4\x8f\x59" "\xfc\x4f\xce\x1f\xb3\xf8\x9f\x92\x3f\x66\xf1\x3f\x35\x7f\xcc\xe2\xff\xdd" "\xfc\x31\x8b\xff\xf7\xf2\xc7\x2c\xfe\xa7\xe5\x8f\x59\xfc\x4f\xcf\x1f\xb3" "\xf8\x9f\x91\x3f\x66\xf1\x3f\x33\x7f\xcc\xe2\xff\xfd\xfc\x31\x8b\xff\x0f" "\xf2\xc7\x2c\xfe\x3f\xcc\x1f\xb3\xf8\xff\x28\x7f\xcc\xe2\xff\xe3\xfc\x31" "\x8b\xff\x4f\xf2\xc7\x2c\xfe\x3f\xcd\x1f\xb3\xf8\x9f\x95\x3f\x66\xf1\xff" "\x59\xfe\x98\xc5\xff\xe7\xf9\x63\x16\xff\xb3\xf3\xc7\x2c\xfe\xbf\xc8\x1f" "\xb3\xf8\x9f\x93\x3f\x66\xf1\x3f\x37\x7f\xcc\xe2\x7f\x5e\xfe\x98\xc5\xff" "\xfc\xfc\x31\x8b\xff\x05\xf9\x63\x16\xff\x0b\xf3\xc7\x2c\xfe\x17\xe5\x8f" "\x59\xfc\x7f\x99\x3f\x66\xf1\xff\x55\xfe\x98\xc5\xff\xd7\xf9\x63\x16\xff" "\xdf\xe4\x8f\x59\xfc\x2f\xce\x1f\xb3\xf8\x5f\x92\x3f\x66\xf1\xff\x6d\xfe" "\x98\xc5\xff\x77\xf9\x63\x16\xff\x4b\xf3\xc7\x2c\xfe\xbf\xcf\x1f\xb3\xf8" "\x5f\x96\x3f\x66\xf1\xbf\x3c\x7f\xcc\xe2\x7f\x45\xfe\x98\xc5\xff\xca\xfc" "\x31\x8b\xff\x55\xf9\x63\x16\xff\xab\xf3\xc7\x2c\xfe\xd7\xe4\x8f\x59\xfc" "\xff\x90\x3f\x66\xf1\xff\x63\xfe\x98\xc5\xff\x4f\xf9\x63\x16\xff\x6b\xf3" "\xc7\x2c\xfe\x7f\xce\x1f\xb3\xf8\x5f\x97\x3f\x66\xf1\xbf\x3e\x7f\xcc\xe2" "\x7f\x43\xfe\x98\xc5\xff\xc6\xfc\x31\x8b\xff\x5f\xf2\xc7\x2c\xfe\x37\xe5" "\x8f\x59\xfc\x6f\xce\x1f\xb3\xf8\xff\x35\x7f\xcc\xe2\x7f\x4b\xfe\x98\xc5" "\xff\x6f\xf9\x63\x16\xff\xbf\xe7\x8f\x59\xfc\xff\x91\x3f\x66\xf1\xff\x67" "\xfe\x98\xc5\xff\xd6\xfc\x31\x8b\xff\x6d\xf9\x63\x16\xff\xdb\xf3\xc7\x2c" "\xfe\x77\xe4\x8f\x59\xfc\xef\xcc\x1f\xb3\xf8\x4f\xcb\x1f\xb3\xf8\xdf\x95" "\x3f\x66\xf1\xbf\x3b\x7f\xcc\xe2\x3f\x3d\x7f\x4c\xe2\x3f\xef\x20\x7f\xcc" "\xe2\x3f\x94\x3f\x66\xf1\x1f\x95\x3f\x66\xf1\x1f\x9d\x3f\x66\xf1\x9f\x27" "\x7f\xcc\xe2\x3f\x26\x7f\xcc\xe2\x3f\x6f\xfe\x98\xc5\x7f\xbe\xfc\x31\x8b" "\xff\xfc\xf9\x63\x16\xff\x05\xf2\xc7\x2c\xfe\x0b\xe6\x8f\x59\xfc\x17\xca" "\x1f\xb3\xf8\x2f\x9c\x3f\x66\xf1\x1f\x9b\x3f\x66\xf1\x7f\x54\xfe\x98\xc5" "\x7f\x91\xfc\x31\x8b\xff\xb8\xfc\x31\x8b\xff\xa2\xf9\x63\x16\xff\xf1\xf9" "\x63\x16\xff\xc5\xf2\xc7\x2c\xfe\x8b\xe7\x8f\x59\xfc\x1f\x9d\x3f\x66\xf1" "\x7f\x4c\xfe\x98\xc5\xff\xb1\xf9\x63\x16\xff\x25\xf2\xc7\x2c\xfe\x8f\xcb" "\x1f\xb3\xf8\x2f\x99\x3f\x66\xf1\x7f\x7c\xfe\x98\xc5\xff\x09\xf9\x63\x16" "\xff\xa5\xf2\xc7\x2c\xfe\x4f\xcc\x1f\xb3\xf8\x3f\x29\x7f\xcc\xe2\x3f\x21" "\x7f\xcc\xe2\xff\xe4\xfc\x31\x8b\xff\x53\xf2\xc7\x2c\xfe\x4f\xcd\x1f\xb3" "\xf8\x2f\x9d\x3f\x66\xf1\x5f\x26\x7f\xcc\xe2\xff\xb4\xfc\x31\x8b\xff\xb2" "\xf9\x63\x16\xff\xe5\xf2\xc7\x2c\xfe\x4f\xcf\x1f\xb3\xf8\x3f\x23\x7f\xcc" "\xe2\xff\xcc\xfc\x31\x8b\xff\xb3\xf2\xc7\x2c\xfe\xcb\xe7\x8f\x59\xfc\x9f" "\x9d\x3f\x66\xf1\x5f\x21\x7f\xcc\xe2\xbf\x62\xfe\x98\xc5\x7f\xa5\xfc\x31" "\x8b\xff\xca\xf9\x63\x16\xff\x55\xf2\xc7\x2c\xfe\xab\xe6\x8f\x59\xfc\x9f" "\x93\x3f\x66\xf1\x5f\x2d\x7f\xcc\xe2\xbf\x7a\xfe\x98\xc5\x7f\x8d\xfc\x31" "\x8b\xff\x9a\xf9\x63\x16\xff\xe7\xe6\x8f\x59\xfc\xd7\xca\x1f\xb3\xf8\xaf" "\x9d\x3f\x66\xf1\x7f\x5e\xfe\x98\xc5\xff\xf9\xf9\x63\x16\xff\x75\xf2\xc7" "\x2c\xfe\x13\xf3\xc7\x2c\xfe\x93\xf2\xc7\x2c\xfe\x93\xf3\xc7\x2c\xfe\xeb" "\xe6\x8f\x59\xfc\xd7\xcb\x1f\xb3\xf8\xaf\x9f\x3f\x66\xf1\x9f\x92\x3f\x66" "\xf1\x9f\x9a\x3f\x66\xf1\xdf\x20\x7f\xcc\xe2\xbf\x61\xfe\x98\xc5\xff\x05" "\xf9\x63\x16\xff\x17\xe6\x8f\x59\xfc\x37\xca\x1f\xb3\xf8\x6f\x9c\x3f\x66" "\xf1\xdf\x24\x7f\xcc\xe2\xff\xa2\xfc\x31\x8b\xff\xa6\xf9\x63\x16\xff\x17" "\xe7\x8f\x59\xfc\x37\xcb\x1f\xb3\xf8\x6f\x9e\x3f\x66\xf1\xdf\x22\x7f\xcc" "\xe2\xbf\x65\xfe\x98\xc5\xff\x25\xf9\x63\x16\xff\xad\xf2\xc7\x2c\xfe\x5b" "\xe7\x8f\x59\xfc\x5f\x9a\x3f\x66\xf1\x7f\x59\xfe\x98\xc5\x7f\x9b\xfc\x31" "\x8b\xff\xcb\xf3\xc7\x2c\xfe\xaf\xc8\x1f\xb3\xf8\xbf\x32\x7f\xcc\xe2\xff" "\xaa\xfc\x31\x8b\xff\xb6\xf9\x63\x16\xff\xed\xf2\xc7\x2c\xfe\xdb\xe7\x8f" "\x59\xfc\x5f\x9d\x3f\x66\xf1\xdf\x21\x7f\xcc\xe2\xbf\x63\xfe\x98\xc5\x7f" "\xa7\xfc\x31\x8b\xff\xce\xf9\x63\x16\xff\xd7\xe4\x8f\x59\xfc\x77\xc9\x1f" "\xb3\xf8\xbf\x36\x7f\xcc\xe2\xff\xba\xfc\x31\x8b\xff\xae\xf9\x63\x16\xff" "\xdd\xf2\xc7\x2c\xfe\xbb\xe7\x8f\x59\xfc\xf7\xc8\x1f\xb3\xf8\xbf\x3e\x7f" "\xcc\xe2\xff\x86\xfc\x31\x8b\xff\x9e\xf9\x63\x16\xff\x37\xe6\x8f\x59\xfc" "\xf7\xca\x1f\xb3\xf8\xbf\x29\x7f\xcc\xe2\xff\xe6\xfc\x31\x8b\xff\x5b\xf2" "\xc7\x2c\xfe\x7b\xe7\x8f\x59\xfc\xf7\xc9\x1f\xb3\xf8\xbf\x35\x7f\xcc\xe2" "\xff\xb6\xfc\x31\x8b\xff\xdb\xf3\xc7\x2c\xfe\xef\xc8\x1f\xb3\xf8\xbf\x33" "\x7f\xcc\xe2\xff\xae\xfc\x31\x8b\xff\xbe\xf9\x63\x16\xff\xfd\xf2\xc7\x2c" "\xfe\xef\xce\x1f\xb3\xf8\xbf\x27\x7f\xcc\xe2\xff\xde\xfc\x31\x8b\xff\xfe" "\xf9\x63\x16\xff\xf7\xe5\x8f\x59\xfc\x0f\xc8\x1f\xb3\xf8\xbf\x3f\x7f\xcc" "\xe2\xff\x81\xfc\x31\x8b\xff\x81\xf9\x63\x16\xff\x0f\xe6\x8f\x59\xfc\x3f" "\x94\x3f\x66\xf1\xff\x70\xfe\x98\xc5\xff\x23\xf9\x63\x16\xff\x8f\xe6\x8f" "\x59\xfc\x0f\xca\x1f\xb3\xf8\x1f\x9c\x3f\x66\xf1\xff\x58\xfe\x98\xc5\xff" "\xe3\xf9\x63\x16\xff\x43\xf2\xc7\x2c\xfe\x9f\xc8\x1f\xb3\xf8\x1f\x9a\x3f" "\x66\xf1\xff\x64\xfe\x98\xc5\xff\x53\xf9\x63\x16\xff\x4f\xe7\x8f\x59\xfc" "\x3f\x93\x3f\x66\xf1\xff\x6c\xfe\x98\xc5\xff\x73\xf9\x63\x16\xff\xcf\xe7" "\x8f\x59\xfc\xbf\x90\x3f\x66\xf1\xff\x62\xfe\x98\xc5\xff\x4b\xf9\x63\x16" "\xff\xc3\xf2\xc7\x2c\xfe\x5f\xce\x1f\xb3\xf8\x1f\x9e\x3f\x66\xf1\xff\x4a" "\xfe\x98\xc5\xff\x88\xfc\x31\x8b\xff\x91\xf9\x63\x16\xff\xa3\xf2\xc7\x2c" "\xfe\x47\xe7\x8f\x59\xfc\xbf\x9a\x3f\x66\xf1\x3f\x26\x7f\xcc\xe2\xff\xb5" "\xfc\x31\x8b\xff\xd7\xf3\xc7\x2c\xfe\xc7\xe6\x8f\x59\xfc\xbf\x91\x3f\x66" "\xf1\x3f\x2e\x7f\xcc\xe2\x7f\x7c\xfe\x98\xc5\xff\x9b\xf9\x63\x16\xff\x6f" "\xe5\x8f\x59\xfc\x4f\xc8\x1f\xb3\xf8\x9f\x98\x3f\x66\xf1\x3f\x29\x7f\xcc" "\xe2\xff\xed\xfc\x31\x8b\xff\x77\xf2\xc7\x2c\xfe\x27\xe7\x8f\x59\xfc\x4f" "\xc9\x1f\xb3\xf8\x9f\x9a\x3f\x66\xf1\xff\x6e\xfe\x98\xc5\xff\x7b\xf9\x63" "\x16\xff\xd3\xf2\xc7\x2c\xfe\xa7\xe7\x8f\x59\xfc\xcf\xc8\x1f\xb3\xf8\x9f" "\x99\x3f\x66\xf1\xff\x7e\xfe\x98\xc5\xff\x07\xf9\x63\x16\xff\x1f\xe6\x8f" "\x59\xfc\x7f\x94\x3f\x66\xf1\xff\x71\xfe\x98\xc5\xff\x27\xf9\x63\x16\xff" "\x9f\xe6\x8f\x59\xfc\xcf\xca\x1f\xb3\xf8\xff\x2c\x7f\xcc\xe2\xff\xf3\xfc" "\x31\x8b\xff\xd9\xf9\x63\x16\xff\x5f\xe4\x8f\x59\xfc\xcf\xc9\x1f\xb3\xf8" "\x9f\x9b\x3f\x66\xf1\x3f\x2f\x7f\xcc\xe2\x7f\x7e\xfe\x98\xc5\xff\x82\xfc" "\x31\x8b\xff\x85\xf9\x63\x16\xff\x8b\xf2\xc7\x2c\xfe\xbf\xcc\x1f\xb3\xf8" "\xff\x2a\x7f\xcc\xe2\xff\xeb\xfc\x31\x8b\xff\x6f\xf2\xc7\x2c\xfe\x17\xe7" "\x8f\x59\xfc\x2f\xc9\x1f\xb3\xf8\xff\x36\x7f\xcc\xe2\xff\xbb\xfc\x31\x8b" "\xff\xa5\xf9\x63\x16\xff\xdf\xe7\x8f\x59\xfc\x2f\xcb\x1f\xb3\xf8\x5f\x9e" "\x3f\x66\xf1\xbf\x22\x7f\xcc\xe2\x7f\x65\xfe\x98\xc5\xff\xaa\xfc\x31\x8b" "\xff\xd5\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe\x7f\xc8\x1f\xb3\xf8\xff\x31" "\x7f\xcc\xe2\xff\xa7\xfc\x31\x8b\xff\xb5\xf9\x63\x16\xff\x3f\xe7\x8f\x59" "\xfc\xaf\xcb\x1f\xb3\xf8\x5f\x9f\x3f\x66\xf1\xbf\x21\x7f\xcc\xe2\x7f\x63" "\xfe\x98\xc5\xff\x2f\xf9\x63\x16\xff\x9b\xf2\xc7\x2c\xfe\x37\x5b\xfd\x17" "\x98\xfb\xdb\x16\xff\xbf\x5a\xfd\xff\x45\x16\xff\x5b\xf2\xc7\x2c\xfe\x7f" "\xcb\x1f\xb3\xf8\xff\x3d\x7f\xcc\xe2\xff\x8f\xfc\x31\x8b\xff\x3f\xf3\xc7" "\x2c\xfe\xb7\xe6\x8f\x59\xfc\x6f\xcb\x1f\xb3\xf8\xdf\x9e\x3f\x66\xf1\xbf" "\x23\x7f\xcc\xe2\x7f\x67\xfe\x98\xc5\x7f\x5a\xfe\x98\xc5\xff\xae\xfc\x31" "\x8b\xff\xdd\xf9\x63\x16\xff\xe9\xf9\x63\x12\xff\xf9\x06\xf9\x63\x16\xff" "\xa1\xfc\x31\x8b\xff\xa8\xfc\x31\x8b\xff\xe8\xfc\x31\x8b\xff\x3c\xf9\x63" "\x16\xff\x31\xf9\x63\x16\xff\x79\xf3\xc7\x2c\xfe\xf3\xe5\x8f\x59\xfc\xe7" "\xcf\x1f\xb3\xf8\x2f\x90\x3f\x66\xf1\x5f\x30\x7f\xcc\xe2\xbf\x50\xfe\x98" "\xc5\x7f\xe1\xfc\x31\x8b\xff\xd8\xfc\x31\x8b\xff\xa3\xf2\xc7\x2c\xfe\x8b" "\xe4\x8f\x59\xfc\xc7\xe5\x8f\x59\xfc\x17\xcd\x1f\xb3\xf8\x8f\xcf\x1f\xb3" "\xf8\x2f\x96\x3f\x66\xf1\x5f\x3c\x7f\xcc\xe2\xff\xe8\xfc\x31\x8b\xff\x63" "\xf2\xc7\x2c\xfe\x8f\xcd\x1f\xb3\xf8\x2f\x91\x3f\x66\xf1\x7f\x5c\xfe\x98" "\xc5\x7f\xc9\xfc\x31\x8b\xff\xe3\xf3\xc7\x2c\xfe\x4f\xc8\x1f\xb3\xf8\x2f" "\x95\x3f\x66\xf1\x7f\x62\xfe\x98\xc5\xff\x49\xf9\x63\x16\xff\x09\xf9\x63" "\x16\xff\x27\xe7\x8f\x59\xfc\x9f\x92\x3f\x66\xf1\x7f\x6a\xfe\x98\xc5\x7f" "\xe9\xfc\x31\x8b\xff\x32\xf9\x63\x16\xff\xa7\xe5\x8f\x59\xfc\x97\xcd\x1f" "\xb3\xf8\x2f\x97\x3f\x66\xf1\x7f\x7a\xfe\x98\xc5\xff\x19\xf9\x63\x16\xff" "\x67\xe6\x8f\x59\xfc\x9f\x95\x3f\x66\xf1\x5f\x3e\x7f\xcc\xe2\xff\xec\xfc" "\x31\x8b\xff\x0a\xf9\x63\x16\xff\x15\xf3\xc7\x2c\xfe\x2b\xe5\x8f\x59\xfc" "\x57\xce\x1f\xb3\xf8\xaf\x92\x3f\x66\xf1\x5f\x35\x7f\xcc\xe2\xff\x9c\xfc" "\x31\x8b\xff\x6a\xf9\x63\x16\xff\xd5\xf3\xc7\x2c\xfe\x6b\xe4\x8f\x59\xfc" "\xd7\xcc\x1f\xb3\xf8\x3f\x37\x7f\xcc\xe2\xbf\x56\xfe\x98\xc5\x7f\xed\xfc" "\x31\x8b\xff\xf3\xf2\xc7\x2c\xfe\xcf\xcf\x1f\xb3\xf8\xaf\x93\x3f\x66\xf1" "\x9f\x98\x3f\x66\xf1\x9f\x94\x3f\x66\xf1\x9f\x9c\x3f\x66\xf1\x5f\x37\x7f" "\xcc\xe2\xbf\x5e\xfe\x98\xc5\x7f\xfd\xfc\x31\x8b\xff\x94\xfc\x31\x8b\xff" "\xd4\xfc\x31\x8b\xff\x06\xf9\x63\x16\xff\x0d\xf3\xc7\x2c\xfe\x2f\xc8\x1f" "\xb3\xf8\xbf\x30\x7f\xcc\xe2\xbf\x51\xfe\x98\xc5\x7f\xe3\xfc\x31\x8b\xff" "\x26\xf9\x63\x16\xff\x17\xe5\x8f\x59\xfc\x37\xcd\x1f\xb3\xf8\xbf\x38\x7f" "\xcc\xe2\xbf\x59\xfe\x98\xc5\x7f\xf3\xfc\x31\x8b\xff\x16\xf9\x63\x16\xff" "\x2d\xf3\xc7\x2c\xfe\x2f\xc9\x1f\xb3\xf8\x6f\x95\x3f\x66\xf1\xdf\x3a\x7f" "\xcc\xe2\xff\xd2\xfc\x31\x8b\xff\xcb\xf2\xc7\x2c\xfe\xdb\xe4\x8f\x59\xfc" "\x5f\x9e\x3f\x66\xf1\x7f\x45\xfe\x98\xc5\xff\x95\xf9\x63\x16\xff\x57\xe5" "\x8f\x59\xfc\xb7\xcd\x1f\xb3\xf8\x6f\x97\x3f\x66\xf1\xdf\x3e\x7f\xcc\xe2" "\xff\xea\xfc\x31\x8b\xff\x0e\xf9\x63\x16\xff\x1d\xf3\xc7\x2c\xfe\x3b\xe5" "\x8f\x59\xfc\x77\xce\x1f\xb3\xf8\xbf\x26\x7f\xcc\xe2\xbf\x4b\xfe\x98\xc5" "\xff\xb5\xf9\x63\x16\xff\xd7\xe5\x8f\x59\xfc\x77\xcd\x1f\xb3\xf8\xef\x96" "\x3f\x66\xf1\xdf\x3d\x7f\xcc\xe2\xbf\x47\xfe\x98\xc5\xff\xf5\xf9\x63\x16" "\xff\x37\xe4\x8f\x59\xfc\xf7\xcc\x1f\xb3\xf8\xbf\x31\x7f\xcc\xe2\xbf\x57" "\xfe\x98\xc5\xff\x4d\xf9\x63\x16\xff\x37\xe7\x8f\x59\xfc\xdf\x92\x3f\x66" "\xf1\xdf\x3b\x7f\xcc\xe2\xbf\x4f\xfe\x98\xc5\xff\xad\xf9\x63\x16\xff\xb7" "\xe5\x8f\x59\xfc\xdf\x9e\x3f\x66\xf1\x7f\x47\xfe\x98\xc5\xff\x9d\xf9\x63" "\x16\xff\x77\xe5\x8f\x59\xfc\xf7\xcd\x1f\xb3\xf8\xef\x97\x3f\x66\xf1\x7f" "\x77\xfe\x98\xc5\xff\x3d\xf9\x63\x16\xff\xf7\xe6\x8f\x59\xfc\xf7\xcf\x1f" "\xb3\xf8\xbf\x2f\x7f\xcc\xe2\x7f\x40\xfe\x98\xc5\xff\xfd\xf9\x63\x16\xff" "\x0f\xe4\x8f\x59\xfc\x0f\xcc\x1f\xb3\xf8\x7f\x30\x7f\xcc\xe2\xff\xa1\xfc" "\x31\x8b\xff\x87\xf3\xc7\x2c\xfe\x1f\xc9\x1f\xb3\xf8\x7f\x34\x7f\xcc\xe2" "\x7f\x50\xfe\x98\xc5\xff\xe0\xfc\x31\x8b\xff\xc7\xf2\xc7\x2c\xfe\x1f\xcf" "\x1f\xb3\xf8\x1f\x92\x3f\x66\xf1\xff\x44\xfe\x98\xc5\xff\xd0\xfc\x31\x8b" "\xff\x27\xf3\xc7\x2c\xfe\x9f\xca\x1f\xb3\xf8\x7f\x3a\x7f\xcc\xe2\xff\x99" "\xfc\x31\x8b\xff\x67\xf3\xc7\x2c\xfe\x9f\xcb\x1f\xb3\xf8\x7f\x3e\x7f\xcc" "\xe2\xff\x85\xfc\x31\x8b\xff\x17\xf3\xc7\x2c\xfe\x5f\xca\x1f\xb3\xf8\x1f" "\x96\x3f\x66\xf1\xff\x72\xfe\x98\xc5\xff\xf0\xfc\x31\x8b\xff\x57\xf2\xc7" "\x2c\xfe\x47\xe4\x8f\x59\xfc\x8f\xcc\x1f\xb3\xf8\x1f\x95\x3f\x66\xf1\x3f" "\x3a\x7f\xcc\xe2\xff\xd5\xfc\x31\x8b\xff\x31\xf9\x63\x16\xff\xaf\xe5\x8f" "\x59\xfc\xbf\x9e\x3f\x66\xf1\x3f\x36\x7f\xcc\xe2\xff\x8d\xfc\x31\x8b\xff" "\x71\xf9\x63\x16\xff\xe3\xf3\xc7\x2c\xfe\xdf\xcc\x1f\xb3\xf8\x7f\x2b\x7f" "\xcc\xe2\x7f\x42\xfe\x98\xc5\xff\xc4\xfc\x31\x8b\xff\x49\xf9\x63\x16\xff" "\x6f\xe7\x8f\x59\xfc\xbf\x93\x3f\x66\xf1\x3f\x39\x7f\xcc\xe2\x7f\x4a\xfe" "\x98\xc5\xff\xd4\xfc\x31\x8b\xff\x77\xf3\xc7\x2c\xfe\xdf\xcb\x1f\xb3\xf8" "\x9f\x96\x3f\x66\xf1\x3f\x3d\x7f\xcc\xe2\x7f\x46\xfe\x98\xc5\xff\xcc\xfc" "\x31\x8b\xff\xf7\xf3\xc7\x2c\xfe\x3f\xc8\x1f\xb3\xf8\xff\x30\x7f\xcc\xe2" "\xff\xa3\xfc\x31\x8b\xff\x8f\xf3\xc7\x2c\xfe\x3f\xc9\x1f\xb3\xf8\xff\x34" "\x7f\xcc\xe2\x7f\x56\xfe\x98\xc5\xff\x67\xf9\x63\x16\xff\x9f\xe7\x8f\x59" "\xfc\xcf\xce\x1f\xb3\xf8\xff\x22\x7f\xcc\xe2\x7f\x4e\xfe\x98\xc5\xff\xdc" "\xfc\x31\x8b\xff\x79\xf9\x63\x16\xff\xf3\xf3\xc7\x2c\xfe\x17\xe4\x8f\x59" "\xfc\x2f\xcc\x1f\xb3\xf8\x5f\x94\x3f\x66\xf1\xff\x65\xfe\x98\xc5\xff\x57" "\xf9\x63\x16\xff\x5f\xe7\x8f\x59\xfc\x7f\x93\x3f\x66\xf1\xbf\x38\x7f\xcc" "\xe2\x7f\x49\xfe\x98\xc5\xff\xb7\xf9\x63\x16\xff\xdf\xe5\x8f\x59\xfc\x2f" "\xcd\x1f\xb3\xf8\xff\x3e\x7f\xcc\xe2\x7f\x59\xfe\x98\xc5\xff\xf2\xfc\x31" "\x8b\xff\x15\xf9\x63\x16\xff\x2b\xf3\xc7\x2c\xfe\x57\xe5\x8f\x59\xfc\xaf" "\xce\x1f\xb3\xf8\x5f\x93\x3f\x66\xf1\xff\x43\xfe\x98\xc5\xff\x8f\xf9\x63" "\x16\xff\x3f\xe5\x8f\x59\xfc\xaf\xcd\x1f\xb3\xf8\xff\x39\x7f\xcc\xe2\x7f" "\x5d\xfe\x98\xc5\xff\xfa\xfc\x31\x8b\xff\x0d\xf9\x63\x16\xff\x1b\xf3\xc7" "\x2c\xfe\x7f\xc9\x1f\xb3\xf8\xdf\x94\x3f\x66\xf1\xbf\x39\x7f\xcc\xe2\xff" "\xd7\xfc\x31\x8b\xff\x2d\xf9\x63\x16\xff\xbf\xe5\x8f\x59\xfc\xff\x9e\x3f" "\x66\xf1\xff\x47\xfe\x98\xc5\xff\x9f\xf9\x63\x16\xff\x5b\xf3\xc7\x2c\xfe" "\xb7\xe5\x8f\x59\xfc\x6f\xcf\x1f\xb3\xf8\xdf\x91\x3f\x66\xf1\xbf\x33\x7f" "\xcc\xe2\x3f\x2d\x7f\xcc\xe2\x7f\x57\xfe\x98\xc5\xff\xee\xfc\x31\x8b\xff" "\xf4\xfc\x31\x89\xff\xfc\x83\xfc\x31\x8b\xff\x50\xfe\x98\xc5\x7f\x54\xfe" "\x98\xc5\x7f\x74\xfe\x98\xc5\x7f\x9e\xfc\x31\x8b\xff\x98\xfc\x31\x8b\xff" "\xbc\xf9\x63\x16\xff\xf9\xf2\xc7\x2c\xfe\xf3\xe7\x8f\x59\xfc\x17\xc8\x1f" "\xbb\x8f\xff\xb5\x0b\x3d\xdc\xc3\xf9\xf7\x7b\x00\xff\x05\xf3\xc7\x2c\xe7" "\xff\x42\xf9\x63\x16\xff\x85\xf3\xc7\x2c\xfe\x63\xf3\xc7\x2c\xfe\x8f\xca" "\x1f\xb3\xf8\x2f\x92\x3f\x66\xf1\x1f\x97\x3f\x66\xf1\x5f\x34\x7f\xcc\xe2" "\x3f\x3e\x7f\xcc\xe2\xbf\x58\xfe\x98\xc5\x7f\xf1\xfc\x31\x8b\xff\xa3\xf3" "\xc7\x2c\xfe\x8f\xc9\x1f\xb3\xf8\x3f\x36\x7f\xcc\xe2\xbf\x44\xfe\x98\xc5" "\xff\x71\xf9\x63\x16\xff\x25\xf3\xc7\x2c\xfe\x8f\xcf\x1f\xb3\xf8\x3f\x21" "\x7f\xcc\xe2\xbf\x54\xfe\x98\xc5\xff\x89\xf9\x63\x16\xff\x27\xe5\x8f\x59" "\xfc\x27\xe4\x8f\x59\xfc\x9f\x9c\x3f\x66\xf1\x7f\x4a\xfe\x98\xc5\xff\xa9" "\xf9\x63\x16\xff\xa5\xf3\xc7\x2c\xfe\xcb\xe4\x8f\x59\xfc\x9f\x96\x3f\x66" "\xf1\x5f\x36\x7f\xcc\xe2\xbf\x5c\xfe\x98\xc5\xff\xe9\xf9\x63\x16\xff\x67" "\xe4\x8f\x59\xfc\x9f\x99\x3f\x66\xf1\x7f\x56\xfe\x98\xc5\x7f\xf9\xfc\x31" "\x8b\xff\xb3\xf3\xc7\x2c\xfe\x2b\xe4\x8f\x59\xfc\x57\xcc\x1f\xb3\xf8\xaf" "\x94\x3f\x66\xf1\x5f\x39\x7f\xcc\xe2\xbf\x4a\xfe\x98\xc5\x7f\xd5\xfc\x31" "\x8b\xff\x73\xf2\xc7\x2c\xfe\xab\xe5\x8f\x59\xfc\x57\xcf\x1f\xb3\xf8\xaf" "\x91\x3f\x66\xf1\x5f\x33\x7f\xcc\xe2\xff\xdc\xfc\x31\x8b\xff\x5a\xf9\x63" "\x16\xff\xb5\xf3\xc7\x2c\xfe\xcf\xcb\x1f\xb3\xf8\x3f\x3f\x7f\xcc\xe2\xbf" "\x4e\xfe\x98\xc5\x7f\x62\xfe\x98\xc5\x7f\x52\xfe\x98\xc5\x7f\x72\xfe\x98" "\xc5\x7f\xdd\xfc\x31\x8b\xff\x7a\xf9\x63\x16\xff\xf5\xf3\xc7\x2c\xfe\x53" "\xf2\xc7\x2c\xfe\x53\xf3\xc7\x2c\xfe\x1b\xe4\x8f\x59\xfc\x37\xcc\x1f\xb3" "\xf8\xbf\x20\x7f\xcc\xe2\xff\xc2\xfc\x31\x8b\xff\x46\xf9\x63\x16\xff\x8d" "\xf3\xc7\x2c\xfe\x9b\xe4\x8f\x59\xfc\x5f\x94\x3f\x66\xf1\xdf\x34\x7f\xcc" "\xe2\xff\xe2\xfc\x31\x8b\xff\x66\xf9\x63\x16\xff\xcd\xf3\xc7\x2c\xfe\x5b" "\xe4\x8f\x59\xfc\xb7\xcc\x1f\xb3\xf8\xbf\x24\x7f\xcc\xe2\xbf\x55\xfe\x98" "\xc5\x7f\xeb\xfc\x31\x8b\xff\x4b\xf3\xc7\x2c\xfe\x2f\xcb\x1f\xb3\xf8\x6f" "\x93\x3f\x66\xf1\x7f\x79\xfe\x98\xc5\xff\x15\xf9\x63\x16\xff\x57\xe6\x8f" "\x59\xfc\x5f\x35\x77\xff\xf9\xfe\xd7\xc7\xf5\x1f\x9a\xc5\x7f\xdb\xce\x7f" "\xcc\xe2\xbf\x5d\xfe\x98\xc5\x7f\xfb\xfc\x31\x8b\xff\xab\xf3\xc7\x2c\xfe" "\x3b\xe4\x8f\x59\xfc\x77\xcc\x1f\xb3\xf8\xef\x94\x3f\x66\xf1\xdf\x39\x7f" "\xcc\xe2\xff\x9a\xfc\x31\x8b\xff\x2e\xf9\x63\x16\xff\xd7\xe6\x8f\x59\xfc" "\x5f\x97\x3f\x66\xf1\xdf\x35\x7f\xcc\xe2\xbf\x5b\xfe\x98\xc5\x7f\xf7\xfc" "\x31\x8b\xff\x1e\xf9\x63\x16\xff\xd7\xe7\x8f\x59\xfc\xdf\x90\x3f\x66\xf1" "\xdf\x33\x7f\xcc\xe2\xff\xc6\xfc\x31\x8b\xff\x5e\xf9\x63\x16\xff\x37\xe5" "\x8f\x59\xfc\xdf\x9c\x3f\x66\xf1\x7f\x4b\xfe\x98\xc5\x7f\xef\xfc\x31\x8b" "\xff\x3e\xf9\x63\x16\xff\xb7\xe6\x8f\x59\xfc\xdf\x96\x3f\x66\xf1\x7f\x7b" "\xfe\x98\xc5\xff\x1d\xf9\x63\x16\xff\x77\xe6\x8f\x59\xfc\xdf\x95\x3f\x66" "\xf1\xdf\x37\x7f\xcc\xe2\xbf\x5f\xfe\x98\xc5\xff\xdd\xf9\x63\x16\xff\xf7" "\xe4\x8f\x59\xfc\xdf\x9b\x3f\x66\xf1\xdf\x3f\x7f\xcc\xe2\xff\xbe\xfc\x31" "\x8b\xff\x01\xf9\x63\x16\xff\xf7\xe7\x8f\x59\xfc\x3f\x90\x3f\x66\xf1\x3f" "\x30\x7f\xcc\xe2\xff\xc1\xfc\x31\x8b\xff\x87\xf2\xc7\x2c\xfe\x1f\xce\x1f" "\xb3\xf8\x7f\x24\x7f\xcc\xe2\xff\xd1\xfc\x31\x8b\xff\x41\xf9\x63\x16\xff" "\x83\xf3\xc7\x2c\xfe\x1f\xcb\x1f\xb3\xf8\x7f\x3c\x7f\xcc\xe2\x7f\x48\xfe" "\x98\xc5\xff\x13\xf9\x63\x16\xff\x43\xf3\xc7\x2c\xfe\x9f\xcc\x1f\xb3\xf8" "\x7f\x2a\x7f\xcc\xe2\xff\xe9\xfc\x31\x8b\xff\x67\xf2\xc7\x2c\xfe\x9f\xcd" "\x1f\xb3\xf8\x7f\x2e\x7f\xcc\xe2\xff\xf9\xfc\x31\x8b\xff\x17\xf2\xc7\x2c" "\xfe\x5f\xcc\x1f\xb3\xf8\x7f\x29\x7f\xcc\xe2\x7f\x58\xfe\x98\xc5\xff\xcb" "\xf9\x63\x16\xff\xc3\xf3\xc7\x2c\xfe\x5f\xc9\x1f\xb3\xf8\x1f\x91\x3f\x66" "\xf1\x3f\x32\x7f\xcc\xe2\x7f\x54\xfe\x98\xc5\xff\xe8\xfc\x31\x8b\xff\x57" "\xf3\xc7\x2c\xfe\xc7\xe4\x8f\x59\xfc\xbf\x96\x3f\x66\xf1\xff\x7a\xfe\x98" "\xc5\xff\xd8\xfc\x31\x8b\xff\x37\xf2\xc7\x2c\xfe\xc7\xe5\x8f\x59\xfc\x8f" "\xcf\x1f\xb3\xf8\x7f\x33\x7f\xcc\xe2\xff\xad\xfc\x31\x8b\xff\x09\xf9\x63" "\x16\xff\x13\xf3\xc7\x2c\xfe\x27\xe5\x8f\x59\xfc\xbf\x9d\x3f\x66\xf1\xff" "\x4e\xfe\x98\xc5\xff\xe4\xfc\x31\x8b\xff\x29\xf9\x63\x16\xff\x53\xf3\xc7" "\x2c\xfe\xdf\xcd\x1f\xb3\xf8\x7f\x2f\x7f\xcc\xe2\x7f\x5a\xfe\x98\xc5\xff" "\xf4\xfc\x31\x8b\xff\x19\xf9\x63\x16\xff\x33\xf3\xc7\x2c\xfe\xdf\xcf\x1f" "\xb3\xf8\xff\x20\x7f\xcc\xe2\xff\xc3\xfc\x31\x8b\xff\x8f\xf2\xc7\x2c\xfe" "\x3f\xce\x1f\xb3\xf8\xff\x24\x7f\xcc\xe2\xff\xd3\xfc\x31\x8b\xff\x59\xf9" "\x63\x16\xff\x9f\xe5\x8f\x59\xfc\x7f\x9e\x3f\x66\xf1\x3f\x3b\x7f\xcc\xe2" "\xff\x8b\xfc\x31\x8b\xff\x39\xf9\x63\x16\xff\x73\xf3\xc7\x2c\xfe\xe7\xe5" "\x8f\x59\xfc\xcf\xcf\x1f\xb3\xf8\x5f\x90\x3f\x66\xf1\xbf\x30\x7f\xcc\xe2" "\x7f\x51\xfe\x98\xc5\xff\x97\xf9\x63\x16\xff\x5f\xe5\x8f\x59\xfc\x7f\x9d" "\x3f\x66\xf1\xff\x4d\xfe\x98\xc5\xff\xe2\xfc\x31\x8b\xff\x25\xf9\x63\x16" "\xff\xdf\xe6\x8f\x59\xfc\x7f\x97\x3f\x66\xf1\xbf\x34\x7f\xcc\xe2\xff\xfb" "\xfc\x31\x8b\xff\x65\xf9\x63\x16\xff\xcb\xf3\xc7\x2c\xfe\x57\xe4\x8f\x59" "\xfc\xaf\xcc\x1f\xb3\xf8\x5f\x95\x3f\x66\xf1\xbf\x3a\x7f\xcc\xe2\x7f\x4d" "\xfe\x98\xc5\xff\x0f\xf9\x63\x16\xff\x3f\xe6\x8f\x59\xfc\xff\x94\x3f\x66" "\xf1\xbf\x36\x7f\xcc\xe2\xff\xe7\xfc\x31\x8b\xff\x75\xf9\x63\x16\xff\xeb" "\xf3\xc7\x2c\xfe\x37\xe4\x8f\x59\xfc\x6f\xcc\x1f\xb3\xf8\xff\x25\x7f\xcc" "\xe2\x7f\x53\xfe\x98\xc5\xff\xe6\xfc\x31\x8b\xff\x5f\xf3\xc7\x2c\xfe\xb7" "\xe4\x8f\x59\xfc\xff\x96\x3f\x66\xf1\xff\x7b\xfe\x98\xc5\xff\x1f\xf9\x63" "\x16\xff\x7f\xe6\x8f\x59\xfc\x6f\xcd\x1f\xb3\xf8\xdf\x96\x3f\x66\xf1\xbf" "\x3d\x7f\xcc\xe2\x7f\x47\xfe\x98\xc5\xff\xce\xfc\x31\x8b\xff\xb4\xfc\x31" "\x8b\xff\x5d\xf9\x63\x16\xff\xbb\xf3\xc7\x2c\xfe\xd3\xf3\xc7\x24\xfe\x0b" "\x0c\xf2\xc7\x2c\xfe\x43\xf9\x63\x16\xff\x51\xf9\x63\x16\xff\xd1\xf9\x63" "\x16\xff\x79\xf2\xc7\x2c\xfe\x63\xf2\xc7\x2c\xfe\xf3\xe6\x8f\x59\xfc\xe7" "\xcb\x1f\xb3\xf8\xcf\x9f\x3f\x66\xf1\x5f\x20\x7f\xcc\xe2\xbf\x60\xfe\x98" "\xc5\x7f\xa1\xfc\x31\x8b\xff\xc2\xf9\x63\x16\xff\xb1\xf9\x63\x16\xff\x47" "\xe5\x8f\x59\xfc\x17\xc9\x1f\xb3\xf8\x8f\xcb\x1f\xb3\xf8\x2f\x9a\x3f\x66" "\xf1\x1f\x9f\x3f\x66\xf1\x5f\x2c\x7f\xcc\xe2\xbf\x78\xfe\x98\xc5\xff\xd1" "\xf9\x63\x16\xff\xc7\xe4\x8f\x59\xfc\x1f\x9b\x3f\x66\xf1\x5f\x22\x7f\xcc" "\xe2\xff\xb8\xfc\x31\x8b\xff\x92\xf9\x63\x16\xff\xc7\xe7\x8f\x59\xfc\x9f" "\x90\x3f\x66\xf1\x5f\x2a\x7f\xcc\xe2\xff\xc4\xfc\x31\x8b\xff\x93\xf2\xc7" "\x2c\xfe\x13\xf2\xc7\x2c\xfe\x4f\xb6\xf8\x3f\xc4\x0f\x69\xf1\x7f\x8a\xc5" "\xff\x21\x66\xf1\x7f\x6a\xfe\x98\xc5\x7f\xe9\xfc\x31\x8b\xff\x32\xf9\x63" "\x16\xff\xa7\x59\xfd\xaf\xdc\x66\xae\x6f\x5b\xfc\x97\xb5\xfa\xff\x8b\x2c" "\xfe\xcb\xe5\x8f\x59\xfc\x9f\x9e\x3f\x66\xf1\x7f\x46\xfe\x98\xc5\xff\x99" "\xf9\x63\x16\xff\x67\xe5\x8f\x59\xfc\x97\xcf\x1f\xb3\xf8\x3f\x3b\x7f\xcc" "\xe2\xbf\x42\xfe\x98\xc5\x7f\xc5\xfc\x31\x8b\xff\x4a\xf9\x63\x16\xff\x95" "\xf3\xc7\x2c\xfe\xab\xe4\x8f\x59\xfc\x57\xcd\x1f\xb3\xf8\x3f\x27\x7f\xcc" "\xe2\xbf\x5a\xfe\x98\xc5\x7f\xf5\xfc\x31\x8b\xff\x1a\xf9\x63\x16\xff\x35" "\xf3\xc7\x2c\xfe\xcf\xcd\x1f\xb3\xf8\xaf\x95\x3f\x66\xf1\x5f\x3b\x7f\xcc" "\xe2\xff\xbc\xfc\x31\x8b\xff\xf3\xf3\xc7\x2c\xfe\xeb\xe4\x8f\x59\xfc\x27" "\xe6\x8f\x59\xfc\x27\xe5\x8f\x59\xfc\x27\xe7\x8f\x59\xfc\xd7\xcd\x1f\xb3" "\xf8\xaf\x97\x3f\x66\xf1\x5f\x3f\x7f\xcc\xe2\x3f\x25\x7f\xcc\xe2\x3f\x35" "\x7f\xcc\xe2\xbf\x41\xfe\x98\xc5\x7f\xc3\xfc\x31\x8b\xff\x0b\xf2\xc7\x2c" "\xfe\x2f\xcc\x1f\xb3\xf8\x6f\x94\x3f\x66\xf1\xdf\x38\x7f\xcc\xe2\xbf\x49" "\xfe\x98\xc5\xff\x45\xf9\x63\x16\xff\x4d\xf3\xc7\x2c\xfe\x2f\xce\x1f\xb3" "\xf8\x6f\x96\x3f\x66\xf1\xdf\x3c\x7f\xcc\xe2\xbf\x45\xfe\x98\xc5\x7f\xcb" "\xfc\x31\x8b\xff\x4b\xf2\xc7\x2c\xfe\x5b\xe5\x8f\x59\xfc\xb7\xce\x1f\xb3" "\xf8\xbf\x34\x7f\xcc\xe2\xff\xb2\xfc\x31\x8b\xff\x36\xf9\x63\x16\xff\x97" "\xe7\x8f\x59\xfc\x5f\x91\x3f\x66\xf1\x7f\x65\xfe\x98\xc5\xff\x55\xf9\x63" "\x16\xff\x6d\xf3\xc7\x2c\xfe\xdb\xe5\x8f\x59\xfc\xb7\xcf\x1f\xb3\xf8\xbf" "\x3a\x7f\xcc\xe2\xbf\x43\xfe\x98\xc5\x7f\xc7\xfc\x31\x8b\xff\x4e\xf9\x63" "\x16\xff\x9d\xf3\xc7\x2c\xfe\xaf\xc9\x1f\xb3\xf8\xef\x92\x3f\x66\xf1\x7f" "\x6d\xfe\x98\xc5\xff\x75\xf9\x63\x16\xff\x5d\xf3\xc7\x2c\xfe\xbb\xe5\x8f" "\x59\xfc\x77\xcf\x1f\xb3\xf8\xef\x91\x3f\x66\xf1\x7f\x7d\xfe\x98\xc5\xff" "\x0d\xf9\x63\x16\xff\x3d\xf3\xc7\x2c\xfe\x6f\xcc\x1f\xb3\xf8\xef\x95\x3f" "\x66\xf1\x7f\x53\xfe\x98\xc5\xff\xcd\xf9\x63\x16\xff\xb7\xe4\x8f\x59\xfc" "\xf7\xce\x1f\xb3\xf8\xef\x93\x3f\x66\xf1\x7f\x6b\xfe\x98\xc5\xff\x6d\xf9" "\x63\x16\xff\xb7\xe7\x8f\x59\xfc\xdf\x91\x3f\x66\xf1\x7f\x67\xfe\x98\xc5" "\xff\x5d\xf9\x63\x16\xff\x7d\xf3\xc7\x2c\xfe\xfb\xe5\x8f\x59\xfc\xdf\x9d" "\x3f\x66\xf1\x7f\x4f\xfe\x98\xc5\xff\xbd\xf9\x63\x16\xff\xfd\xf3\xc7\x2c" "\xfe\xef\xcb\x1f\xb3\xf8\x1f\x90\x3f\x66\xf1\x7f\x7f\xfe\x98\xc5\xff\x03" "\xf9\x63\x16\xff\x03\xf3\xc7\x2c\xfe\x1f\xcc\x1f\xb3\xf8\x7f\x28\x7f\xcc" "\xe2\xff\xe1\xfc\x31\x8b\xff\x47\xf2\xc7\x2c\xfe\x1f\xcd\x1f\xb3\xf8\x1f" "\x94\x3f\x66\xf1\x3f\x38\x7f\xcc\xe2\xff\xb1\xfc\x31\x8b\xff\xc7\xf3\xc7" "\x2c\xfe\x87\xe4\x8f\x59\xfc\x3f\x91\x3f\x66\xf1\x3f\x34\x7f\xcc\xe2\xff" "\xc9\xfc\x31\x8b\xff\xa7\xf2\xc7\x2c\xfe\x9f\xce\x1f\xb3\xf8\x7f\x26\x7f" "\xcc\xe2\xff\xd9\xfc\x31\x8b\xff\xe7\xf2\xc7\x2c\xfe\x9f\xcf\x1f\xb3\xf8" "\x7f\x21\x7f\xcc\xe2\xff\xc5\xfc\x31\x8b\xff\x97\xf2\xc7\x2c\xfe\x87\xe5" "\x8f\x59\xfc\xbf\x9c\x3f\x66\xf1\x3f\x3c\x7f\xcc\xe2\xff\x95\xfc\x31\x8b" "\xff\x11\xf9\x63\x16\xff\x23\xf3\xc7\x2c\xfe\x47\xe5\x8f\x59\xfc\x8f\xce" "\x1f\xb3\xf8\x7f\x35\x7f\xcc\xe2\x7f\x4c\xfe\x98\xc5\xff\x6b\xf9\x63\x16" "\xff\xaf\xe7\x8f\x59\xfc\x8f\xcd\x1f\xb3\xf8\x7f\x23\x7f\xcc\xe2\x7f\x5c" "\xfe\x98\xc5\xff\xf8\xfc\x31\x8b\xff\x37\xf3\xc7\x2c\xfe\xdf\xca\x1f\xb3" "\xf8\x9f\x90\x3f\x66\xf1\x3f\x31\x7f\xcc\xe2\x7f\x52\xfe\x98\xc5\xff\xdb" "\xf9\x63\x16\xff\xef\xe4\x8f\x59\xfc\x4f\xce\x1f\xb3\xf8\x9f\x92\x3f\x66" "\xf1\x3f\x35\x7f\xcc\xe2\xff\xdd\xfc\x31\x8b\xff\xf7\xf2\xc7\x2c\xfe\xa7" "\xe5\x8f\x59\xfc\x4f\xcf\x1f\xb3\xf8\x9f\x91\x3f\x66\xf1\x3f\x33\x7f\xcc" "\xe2\xff\xfd\xfc\x31\x8b\xff\x0f\xf2\xc7\x2c\xfe\x3f\xcc\x1f\xb3\xf8\xff" "\x28\x7f\xcc\xe2\xff\xe3\xfc\x31\x8b\xff\x4f\xf2\xc7\x2c\xfe\x3f\xcd\x1f" "\xb3\xf8\x9f\x95\x3f\x66\xf1\xff\x59\xfe\x98\xc5\xff\xe7\xf9\x63\x16\xff" "\xb3\xf3\xc7\x2c\xfe\xbf\xc8\x1f\xb3\xf8\x9f\x93\x3f\x66\xf1\x3f\x37\x7f" "\xcc\xe2\x7f\x5e\xfe\x98\xc5\xff\xfc\xfc\x31\x8b\xff\x05\xf9\x63\x16\xff" "\x0b\xf3\xc7\x2c\xfe\x17\xe5\x8f\x59\xfc\x7f\x99\x3f\x66\xf1\xff\x55\xfe" "\x98\xc5\xff\xd7\xf9\x63\x16\xff\xdf\xe4\x8f\x59\xfc\x2f\xce\x1f\xb3\xf8" "\x5f\x92\x3f\x66\xf1\xff\x6d\xfe\x98\xc5\xff\x77\xf9\x63\x16\xff\x4b\xf3" "\xc7\x2c\xfe\xbf\xcf\x1f\xbb\xaf\xff\x98\x87\x7b\x38\xff\x7e\x0f\xe0\x7f" "\x59\xfe\x98\xe5\xfc\xbf\x3c\x7f\xcc\xe2\x7f\x45\xfe\x98\xc5\xff\xca\xfc" "\x31\x8b\xff\x55\xf9\x63\x16\xff\xab\xf3\xc7\x2c\xfe\xd7\xe4\x8f\x59\xfc" "\xff\x90\x3f\x66\xf1\xff\x63\xfe\x98\xc5\xff\x4f\xf9\x63\x16\xff\x6b\xf3" "\xc7\x2c\xfe\x7f\xce\x1f\xb3\xf8\x5f\x97\x3f\x66\xf1\xbf\x3e\x7f\xcc\xe2" "\x7f\x43\xfe\x98\xc5\xff\xc6\xfc\x31\x8b\xff\x5f\xf2\xc7\x2c\xfe\x37\xe5" "\x8f\x59\xfc\x6f\xce\x1f\xb3\xf8\xff\x35\x7f\xcc\xe2\x7f\x4b\xfe\x98\xc5" "\xff\x6f\xf9\x63\x16\xff\xbf\xe7\x8f\x59\xfc\xff\x91\x3f\x66\xf1\xff\x67" "\xfe\x98\xc5\xff\xd6\x39\xfc\xe7\xf9\xbf\x1e\xd7\x7f\x68\x16\xff\xdb\x3a" "\xff\x31\x8b\xff\xed\xf9\x63\x16\xff\x3b\xf2\xc7\x2c\xfe\x77\xe6\x8f\x59" "\xfc\xa7\xe5\x8f\x59\xfc\xef\xca\x1f\xb3\xf8\xdf\x9d\x3f\x66\xf1\x9f\x9e" "\x3f\x26\xf1\x5f\x70\x90\x3f\x66\xf1\x1f\xca\x1f\xb3\xf8\x8f\xca\x1f\xb3" "\xf8\x8f\xce\x1f\xb3\xf8\xcf\x93\x3f\x66\xf1\x1f\x93\x3f\x66\xf1\x9f\x37" "\x7f\xcc\xe2\x3f\x5f\xfe\x98\xc5\x7f\xfe\xfc\x31\x8b\xff\x02\xf9\x63\x16" "\xff\x05\xf3\xc7\x1e\xf9\xfe\xf3\xdf\xf3\x56\xfe\xf7\xef\x91\xef\x3f\xa3" "\x05\x17\xce\x1f\xb3\xf8\x8f\xcd\x1f\xb3\xf8\x3f\x2a\x7f\xcc\xe2\xbf\x48" "\xfe\x98\xc5\x7f\x5c\xfe\x98\xc5\x7f\xd1\xfc\x31\x8b\xff\xf8\xfc\x31\x8b" "\xff\x62\xf9\x63\x16\xff\xc5\xf3\xc7\x2c\xfe\x8f\xce\x1f\xb3\xf8\x3f\x26" "\x7f\xcc\xe2\xff\xd8\xfc\x31\x8b\xff\x12\xf9\x63\x16\xff\xc7\xe5\x8f\x59" "\xfc\x97\xcc\x1f\xb3\xf8\x3f\x3e\x7f\xcc\xe2\xff\x84\xfc\x31\x8b\xff\x52" "\xf9\x63\x16\xff\x27\xe6\x8f\x59\xfc\x9f\x94\x3f\x66\xf1\x9f\x90\x3f\x66" "\xf1\x7f\x72\xfe\x98\xc5\xff\x29\xf9\x63\x16\xff\xa7\xe6\x8f\x59\xfc\x97" "\xce\x1f\xb3\xf8\x2f\x93\x3f\x66\xf1\x7f\x5a\xfe\x98\xc5\x7f\xd9\xfc\x31" "\x8b\xff\x72\xf9\x63\x16\xff\xa7\xe7\x8f\x59\xfc\x9f\x91\x3f\x66\xf1\x7f" "\x66\xfe\x98\xc5\xff\x59\xf9\x63\x16\xff\xe5\xf3\xc7\x2c\xfe\xcf\xce\x1f" "\xb3\xf8\xaf\x90\x3f\x66\xf1\x5f\x31\x7f\xcc\xe2\xbf\x52\xfe\x98\xc5\x7f" "\xe5\xfc\x31\x8b\xff\x2a\xf9\x63\x16\xff\x55\xf3\xc7\x2c\xfe\xcf\xc9\x1f" "\xb3\xf8\xaf\xa6\xf4\x9f\xfe\xae\x7f\xb5\x86\xc5\x7f\x75\xa5\xff\xbf\xce" "\xe2\xbf\x46\xfe\x98\xc5\x7f\xcd\xfc\x31\x8b\xff\x73\xf3\xc7\x2c\xfe\x6b" "\xe5\x8f\x59\xfc\xd7\xce\x1f\xb3\xf8\x3f\x2f\x7f\xcc\xe2\xff\xfc\xfc\x31" "\x8b\xff\x3a\xf9\x63\x16\xff\x89\xf9\x63\x16\xff\x49\xf9\x63\x16\xff\xc9" "\xf9\x63\x16\xff\x75\xf3\xc7\x2c\xfe\xeb\xe5\x8f\x59\xfc\xd7\xcf\x1f\xb3" "\xf8\x4f\xc9\x1f\xb3\xf8\x4f\xcd\x1f\xb3\xf8\x6f\x90\x3f\x66\xf1\xdf\x30" "\x7f\xcc\xe2\xff\x82\xfc\x31\x8b\xff\x0b\xf3\xc7\x2c\xfe\x1b\xe5\x8f\x59" "\xfc\x37\xce\x1f\xb3\xf8\x6f\x92\x3f\x66\xf1\x7f\x51\xfe\x98\xc5\x7f\xd3" "\xfc\x31\x8b\xff\x8b\xf3\xc7\x2c\xfe\x9b\xe5\x8f\x59\xfc\x37\xcf\x1f\xb3" "\xf8\x6f\x91\x3f\x66\xf1\xdf\x32\x7f\xcc\xe2\xff\x92\xfc\x31\x8b\xff\x56" "\xf9\x63\x16\xff\xad\xf3\xc7\x2c\xfe\x2f\xcd\x1f\xb3\xf8\xbf\x2c\x7f\xcc" "\xe2\xbf\x4d\xfe\x98\xc5\xff\xe5\xf9\x63\x16\xff\x57\xe4\x8f\x59\xfc\x5f" "\x99\x3f\x66\xf1\x7f\x55\xfe\x98\xc5\x7f\xdb\xfc\x31\x8b\xff\x76\xf9\x63" "\x16\xff\xed\xf3\xc7\x2c\xfe\xaf\xce\x1f\xb3\xf8\xef\x90\x3f\x66\xf1\xdf" "\x31\x7f\xcc\xe2\xbf\x53\xfe\x98\xc5\x7f\xe7\xfc\x31\x8b\xff\x6b\xf2\xc7" "\x2c\xfe\xbb\xe4\x8f\x59\xfc\x5f\x9b\x3f\x66\xf1\x7f\x5d\xfe\x98\xc5\x7f" "\xd7\xfc\x31\x8b\xff\x6e\xf9\x63\x16\xff\xdd\xf3\xc7\x2c\xfe\x7b\xe4\x8f" "\x59\xfc\x5f\x9f\x3f\x66\xf1\x7f\x43\xfe\x98\xc5\x7f\xcf\xfc\x31\x8b\xff" "\x1b\xf3\xc7\x2c\xfe\x7b\xe5\x8f\x59\xfc\xdf\x94\x3f\x66\xf1\x7f\x73\xfe" "\x98\xc5\xff\x2d\xf9\x63\x16\xff\xbd\xf3\xc7\x2c\xfe\xfb\xe4\x8f\x59\xfc" "\xdf\x9a\x3f\x66\xf1\x7f\x5b\xfe\x98\xc5\xff\xed\xf9\x63\x16\xff\x77\xe4" "\x8f\x59\xfc\xdf\x99\x3f\x66\xf1\x7f\x57\xfe\x98\xc5\x7f\xdf\xfc\x31\x8b" "\xff\x7e\xf9\x63\x16\xff\x77\xe7\x8f\x59\xfc\xdf\x93\x3f\x66\xf1\x7f\x6f" "\xfe\x98\xc5\x7f\xff\xfc\x31\x8b\xff\xfb\xf2\xc7\x2c\xfe\x07\xe4\x8f\x59" "\xfc\xdf\x9f\x3f\x66\xf1\xff\x40\xfe\x98\xc5\xff\xc0\xfc\x31\x8b\xff\x07" "\xf3\xc7\x2c\xfe\x1f\xca\x1f\xb3\xf8\x7f\x38\x7f\xcc\xe2\xff\x91\xfc\x31" "\x8b\xff\x47\xf3\xc7\x2c\xfe\x07\xe5\x8f\x59\xfc\x0f\xce\x1f\xb3\xf8\x7f" "\x2c\x7f\xcc\xe2\xff\xf1\xfc\x31\x8b\xff\x21\xf9\x63\x16\xff\x4f\xe4\x8f" "\x59\xfc\x0f\xcd\x1f\xb3\xf8\x7f\x32\x7f\xcc\xe2\xff\xa9\xfc\x31\x8b\xff" "\xa7\xf3\xc7\x2c\xfe\x9f\xc9\x1f\xb3\xf8\x7f\x36\x7f\xcc\xe2\xff\xb9\xfc" "\x31\x8b\xff\xe7\xf3\xc7\x2c\xfe\x5f\xc8\x1f\xb3\xf8\x7f\x31\x7f\xcc\xe2" "\xff\xa5\xfc\x31\x8b\xff\x61\xf9\x63\x16\xff\x2f\xe7\x8f\x59\xfc\x0f\xcf" "\x1f\xb3\xf8\x7f\x25\x7f\xcc\xe2\x7f\x44\xfe\x98\xc5\xff\xc8\xfc\x31\x8b" "\xff\x51\xf9\x63\x16\xff\xa3\xf3\xc7\x2c\xfe\x5f\xcd\x1f\xb3\xf8\x1f\x93" "\x3f\x66\xf1\xff\x5a\xfe\x98\xc5\xff\xeb\xf9\x63\x16\xff\x63\xf3\xc7\x2c" "\xfe\xdf\xc8\x1f\xb3\xf8\x1f\x97\x3f\x66\xf1\x3f\x3e\x7f\xcc\xe2\xff\xcd" "\xfc\x31\x8b\xff\xb7\xf2\xc7\x2c\xfe\x27\xe4\x8f\x59\xfc\x4f\xcc\x1f\xb3" "\xf8\x9f\x94\x3f\x66\xf1\xff\x76\xfe\x98\xc5\xff\x3b\xf9\x63\x16\xff\x93" "\xf3\xc7\x2c\xfe\xa7\xe4\x8f\x59\xfc\x4f\xcd\x1f\xb3\xf8\x7f\x37\x7f\xcc" "\xe2\xff\xbd\xfc\x31\x8b\xff\x69\xf9\x63\x16\xff\xd3\xf3\xc7\x2c\xfe\x67" "\xe4\x8f\x59\xfc\xcf\xcc\x1f\xb3\xf8\x7f\x3f\x7f\xcc\xe2\xff\x83\xfc\x31" "\x8b\xff\x0f\xf3\xc7\x2c\xfe\x3f\xca\x1f\xb3\xf8\xff\x38\x7f\xcc\xe2\xff" "\x93\xfc\x31\x8b\xff\x4f\xf3\xc7\x2c\xfe\x67\xe5\x8f\x59\xfc\x7f\x96\x3f" "\x66\xf1\xff\x79\xfe\x98\xc5\xff\xec\xfc\x31\x8b\xff\x2f\xf2\xc7\x2c\xfe" "\xe7\xe4\x8f\x59\xfc\xcf\xcd\x1f\xb3\xf8\x9f\x97\x3f\x66\xf1\x3f\x3f\x7f" "\xcc\xe2\x7f\x41\xfe\x98\xc5\xff\xc2\xb9\xf8\xef\xfb\x7f\x31\xae\xff\xd0" "\x2c\xfe\x17\x75\xfe\x63\x16\xff\x5f\xe6\x8f\x59\xfc\x7f\x95\x3f\x66\xf1" "\xff\x75\xfe\x98\xc5\xff\x37\xf9\x63\x16\xff\x8b\xf3\xc7\x2c\xfe\x97\xe4" "\x8f\x59\xfc\x7f\x3b\xbb\xff\x50\x07\xc3\xac\x2c\xfe\xbf\x8b\x1c\xb3\xf8" "\x5f\x9a\x3f\x66\xf1\xff\x7d\xfe\x98\xc5\xff\xb2\xfc\x31\x8b\xff\xe5\xf9" "\x63\x16\xff\x2b\xf2\xc7\x2c\xfe\x57\xe6\x8f\x59\xfc\xaf\xca\x1f\xb3\xf8" "\x5f\x9d\x3f\x66\xf1\xbf\x26\x7f\xcc\xe2\xff\x87\xfc\x31\x8b\xff\x1f\xf3" "\xc7\x2c\xfe\x7f\xca\x1f\xb3\xf8\x5f\x9b\x3f\x66\xf1\xff\x73\xfe\x98\xc5" "\xff\xba\xfc\x31\x8b\xff\xf5\xf9\x63\x16\xff\x1b\xf2\xc7\x2c\xfe\x37\xe6" "\x8f\x59\xfc\xff\x92\x3f\x66\xf1\xbf\x29\x7f\xcc\xe2\x7f\x73\xfe\x98\xc5" "\xff\xaf\xf9\x63\x16\xff\x5b\xf2\xc7\x2c\xfe\x7f\xcb\x1f\xb3\xf8\xff\x3d" "\x7f\xcc\xe2\xff\x8f\xfc\x31\x8b\xff\x3f\xf3\xc7\x2c\xfe\xb7\xe6\x8f\x59" "\xfc\x6f\xcb\x1f\xb3\xf8\xdf\x9e\x3f\x66\xf1\xbf\x23\x7f\xcc\xe2\x7f\x67" "\xfe\x98\xc5\x7f\x5a\xfe\x98\xc5\xff\xae\xfc\x31\x8b\xff\xdd\xf9\x63\x16" "\xff\xe9\xf9\x63\x12\xff\x85\x06\xf9\x63\x16\xff\xfe\x2f\xdf\x38\x8b\xff" "\xa8\xfc\x31\x8b\xff\xe8\xfc\x31\x8b\xff\x3c\xf9\x63\x16\xff\x31\xf9\x63" "\x16\xff\x79\xf3\xc7\x2c\xfe\xf3\xe5\x8f\x59\xfc\xe7\xcf\x1f\xb3\xf8\x2f" "\x90\x3f\x66\xf1\x5f\x30\x7f\xcc\xe2\xbf\x50\xfe\x98\xc5\x7f\xe1\xfc\x31" "\x8b\xff\xd8\xfc\x31\x8b\xff\xa3\xf2\xc7\x2c\xfe\x8b\xe4\x8f\x59\xfc\xc7" "\xe5\x8f\x59\xfc\x17\xcd\x1f\xb3\xf8\x8f\xcf\x1f\xb3\xf8\x2f\x96\x3f\x66" "\xf1\x5f\x3c\x7f\xcc\xe2\xff\xe8\xfc\x31\x8b\xff\x63\xf2\xc7\x2c\xfe\x8f" "\xcd\x1f\xb3\xf8\x2f\x91\x3f\x66\xf1\x7f\x5c\xfe\x98\xc5\x7f\xc9\xfc\x31" "\x8b\xff\xe3\xf3\xc7\x2c\xfe\x4f\xc8\x1f\xb3\xf8\x2f\x95\x3f\x66\xf1\x7f" "\x62\xfe\x98\xc5\xff\x49\xf9\x63\x16\xff\x09\xf9\x63\x16\xff\x27\xe7\x8f" "\x59\xfc\x9f\x92\x3f\x66\xf1\x7f\x6a\xfe\x98\xc5\x7f\xe9\xfc\x31\x8b\xff" "\x32\xf9\x63\x16\xff\xa7\xe5\x8f\x59\xfc\x97\xcd\x1f\xb3\xf8\x2f\x97\x3f" "\x66\xf1\x7f\x7a\xfe\x98\xc5\xff\x19\xf9\x63\x16\xff\x67\xe6\x8f\x59\xfc" "\x9f\x95\x3f\x66\xf1\x5f\x3e\x7f\xcc\xe2\xff\xec\xfc\x31\x8b\xff\x0a\xf9" "\x63\x16\xff\x15\xf3\xc7\x2c\xfe\x2b\xe5\x8f\x59\xfc\x57\xce\x1f\xb3\xf8" "\xaf\x92\x3f\x66\xf1\x5f\x35\x7f\xcc\xe2\xff\x9c\xfc\x31\x8b\xff\x6a\xf9" "\x63\x16\xff\xd5\xf3\xc7\x2c\xfe\x6b\xe4\x8f\x59\xfc\xd7\xcc\x1f\xb3\xf8" "\x3f\x37\x7f\xcc\xe2\xbf\x56\xfe\x98\xc5\x7f\xed\xfc\x31\x8b\xff\xf3\xf2" "\xc7\x2c\xfe\xcf\xcf\x1f\xb3\xf8\xaf\x93\x3f\x66\xf1\x9f\x98\x3f\x66\xf1" "\x9f\x94\x3f\x66\xf1\x9f\x9c\x3f\x66\xf1\x5f\x37\x7f\xcc\xe2\xbf\x5e\xfe" "\x98\xc5\x7f\xfd\xfc\x31\x8b\xff\x94\xfc\x31\x8b\xff\xd4\xfc\x31\x8b\xff" "\x06\xf9\x63\x16\xff\x0d\xf3\xc7\x2c\xfe\x2f\xc8\x1f\xb3\xf8\xbf\x30\x7f" "\xcc\xe2\xbf\x51\xfe\x98\xc5\x7f\xe3\xfc\x31\x8b\xff\x26\xf9\x63\x16\xff" "\x17\xe5\x8f\x59\xfc\x37\xcd\x1f\xb3\xf8\xbf\x38\x7f\xcc\xe2\xbf\x59\xfe" "\x98\xc5\x7f\xf3\xfc\x31\x8b\xff\x16\xf9\x63\x16\xff\x2d\xf3\xc7\x1e\xc9" "\xfe\xd3\xdf\x75\xcf\xd2\x85\x5e\x92\x3f\xf6\x48\xf6\x9f\xfd\xfc\xdf\x2a" "\x7f\xcc\xe2\xbf\x75\xfe\x98\xc5\xff\xa5\xf9\x63\x16\xff\x97\xe5\x8f\x59" "\xfc\xb7\xc9\x1f\xb3\xf8\xbf\x3c\x7f\xcc\xe2\xff\x8a\xfc\x31\x8b\xff\x2b" "\xf3\xc7\x2c\xfe\xaf\xca\x1f\xb3\xf8\x6f\x9b\x3f\x66\xf1\xdf\x2e\x7f\xcc" "\xe2\xbf\x7d\xfe\x98\xc5\xff\xd5\xf9\x63\x16\xff\x1d\xf2\xc7\x2c\xfe\x3b" "\xe6\x8f\x59\xfc\x77\xca\x1f\xb3\xf8\xef\x9c\x3f\x66\xf1\x7f\x4d\xfe\x98" "\xc5\x7f\x97\xfc\x31\x8b\xff\x6b\xf3\xc7\x2c\xfe\xaf\xcb\x1f\xb3\xf8\xef" "\x9a\x3f\x66\xf1\xdf\x2d\x7f\xcc\xe2\xbf\x7b\xfe\x98\xc5\x7f\x8f\xfc\x31" "\x8b\xff\xeb\xf3\xc7\x2c\xfe\x6f\xc8\x1f\xb3\xf8\xef\x99\x3f\x66\xf1\x7f" "\x63\xfe\x98\xc5\x7f\xaf\xfc\x31\x8b\xff\x9b\xf2\xc7\x2c\xfe\x6f\xce\x1f" "\xb3\xf8\xbf\x25\x7f\xcc\xe2\xbf\x77\xfe\x98\xc5\x7f\x9f\xfc\x31\x8b\xff" "\x5b\xf3\xc7\x2c\xfe\x6f\xcb\x1f\xb3\xf8\xbf\x3d\x7f\xcc\xe2\xff\x8e\xfc" "\x31\x8b\xff\x3b\xf3\xc7\x2c\xfe\xef\xca\x1f\xb3\xf8\xef\x9b\x3f\x66\xf1" "\xdf\x2f\x7f\xcc\xe2\xff\xee\xfc\x31\x8b\xff\x7b\xf2\xc7\x2c\xfe\xef\xcd" "\x1f\xb3\xf8\xef\x9f\x3f\x66\xf1\x7f\x5f\xfe\x98\xc5\xff\x80\xfc\x31\x8b" "\xff\xfb\xf3\xc7\x2c\xfe\x1f\xc8\x1f\xb3\xf8\x1f\x98\x3f\x66\xf1\xff\x60" "\xfe\x98\xc5\xff\x43\xf9\x63\x16\xff\x0f\xe7\x8f\x59\xfc\x3f\x92\x3f\x66" "\xf1\xff\x68\xfe\x98\xc5\xff\xa0\xfc\x31\x8b\xff\xc1\xf9\x63\x16\xff\x8f" "\xe5\x8f\x59\xfc\x3f\x9e\x3f\x66\xf1\x3f\x24\x7f\xcc\xe2\xff\x89\xfc\x31" "\x8b\xff\xa1\xf9\x63\x16\xff\x4f\xe6\x8f\x59\xfc\x3f\x95\x3f\x66\xf1\xff" "\x74\xfe\x98\xc5\xff\x33\xf9\x63\x16\xff\xcf\xe6\x8f\x59\xfc\x3f\x97\x3f" "\x66\xf1\xff\x7c\xfe\x98\xc5\xff\x0b\xf9\x63\x16\xff\x2f\xe6\x8f\x59\xfc" "\xbf\x94\x3f\x66\xf1\x3f\x2c\x7f\xcc\xe2\xff\xe5\xfc\x31\x8b\xff\xe1\xf9" "\x63\x16\xff\xaf\xe4\x8f\x59\xfc\x8f\xc8\x1f\xb3\xf8\x1f\x99\x3f\x66\xf1" "\x3f\x2a\x7f\xcc\xe2\x7f\x74\xfe\x98\xc5\xff\xab\xf9\x63\x16\xff\x63\xf2" "\xc7\x2c\xfe\x5f\xcb\x1f\xb3\xf8\x7f\x3d\x7f\xcc\xe2\x7f\x6c\xfe\x98\xc5" "\xff\x1b\xf9\x63\x16\xff\xe3\xf2\xc7\x2c\xfe\xc7\xe7\x8f\x59\xfc\xbf\x99" "\x3f\x66\xf1\xff\x56\xfe\x98\xc5\xff\x84\xfc\x31\x8b\xff\x89\xf9\x63\x16" "\xff\x93\xf2\xc7\x2c\xfe\xdf\xce\x1f\xb3\xf8\x7f\x27\x7f\xcc\xe2\x7f\x72" "\xfe\x98\xc5\xff\x94\xfc\x31\x8b\xff\xa9\xf9\x63\x16\xff\xef\xe6\x8f\x59" "\xfc\xbf\x97\x3f\x66\xf1\x3f\x2d\x7f\xcc\xe2\x7f\x7a\xfe\x98\xc5\xff\x8c" "\xfc\x31\x8b\xff\x99\xf9\x63\x16\xff\xef\xe7\x8f\x59\xfc\x7f\x90\x3f\x66" "\xf1\xff\x61\xfe\x98\xc5\xff\x47\xf9\x63\x16\xff\x1f\xe7\x8f\x59\xfc\x7f" "\x92\x3f\x66\xf1\xff\x69\xfe\x98\xc5\xff\xac\xfc\x31\x8b\xff\xcf\xf2\xc7" "\x2c\xfe\x3f\xcf\x1f\xb3\xf8\x9f\x9d\x3f\x66\xf1\xff\x45\xfe\x98\xc5\xff" "\x9c\xfc\x31\x8b\xff\xb9\xf9\x63\x16\xff\xf3\xf2\xc7\x2c\xfe\xe7\xfb\xfc" "\x17\x78\x30\x2b\x59\xfc\x2f\xf0\xf9\x3f\xa8\x2c\xfe\x17\xe6\x8f\x59\xfc" "\x2f\xca\x1f\xb3\xf8\xff\x32\x7f\xcc\xe2\xff\xab\xfc\x31\x8b\xff\xaf\xf3" "\xc7\x2c\xfe\xbf\xc9\x1f\xb3\xf8\x5f\x9c\x3f\x66\xf1\xbf\x24\x7f\xcc\xe2" "\xff\xdb\xfc\x31\x8b\xff\xef\xf2\xc7\x2c\xfe\x97\xe6\x8f\x59\xfc\x7f\x9f" "\x3f\x66\xf1\xbf\x2c\x7f\xcc\xe2\x7f\x79\xfe\x98\xc5\xff\x8a\xfc\x31\x8b" "\xff\x95\xf9\x63\x16\xff\xab\xf2\xc7\x2c\xfe\x57\xe7\x8f\x59\xfc\xaf\xc9" "\x1f\xb3\xf8\xff\x21\x7f\xcc\xe2\xff\xc7\xfc\x31\x8b\xff\x9f\xf2\xc7\x2c" "\xfe\xd7\xe6\x8f\x59\xfc\xff\x9c\x3f\x66\xf1\xbf\x2e\x7f\xcc\xe2\x7f\x7d" "\xfe\x98\xc5\xff\x86\xfc\x31\x8b\xff\x8d\xf9\x63\x16\xff\xbf\xe4\x8f\x59" "\xfc\x6f\xca\x1f\xb3\xf8\xdf\x9c\x3f\x66\xf1\xff\x6b\xfe\x98\xc5\xff\x96" "\xfc\x31\x8b\xff\xdf\xf2\xc7\x2c\xfe\x7f\xcf\x1f\xb3\xf8\xff\x23\x7f\xcc" "\xe2\xff\xcf\xfc\x31\x8b\xff\xad\xf9\x63\x16\xff\xdb\xf2\xc7\x2c\xfe\xb7" "\xe7\x8f\x59\xfc\xef\xc8\x1f\xb3\xf8\xdf\x99\x3f\x66\xf1\x9f\x96\x3f\x66" "\xf1\xbf\x2b\x7f\xcc\xe2\x7f\x77\xfe\x98\xc5\x7f\x7a\xfe\x98\xc4\x7f\xe1" "\x41\xfe\x98\xc5\x7f\x28\x7f\xcc\xe2\x3f\x2a\x7f\xcc\xe2\x3f\x3a\x7f\xcc" "\xe2\x3f\x4f\xfe\x98\xc5\x7f\x4c\xfe\x98\xc5\x7f\xde\xfc\x31\x8b\xff\x7c" "\xf9\x63\x16\xff\xf9\xf3\xc7\x2c\xfe\x0b\xe4\x8f\x59\xfc\x17\xcc\x1f\xb3" "\xf8\x2f\x94\x3f\x66\xf1\x5f\x38\x7f\xcc\xe2\x3f\x36\x7f\xcc\xe2\xff\xa8" "\xfc\x31\x8b\xff\x22\xf9\x63\x16\xff\x71\xf9\x63\x16\xff\x45\xf3\xc7\x2c" "\xfe\xe3\xf3\xc7\x2c\xfe\x8b\xe5\x8f\x59\xfc\x17\xcf\x1f\xb3\xf8\x3f\x3a" "\x7f\xcc\xe2\xff\x98\xfc\x31\x8b\xff\x63\xf3\xc7\x2c\xfe\x4b\xe4\x8f\x59" "\xfc\x1f\x97\x3f\x66\xf1\x5f\x32\x7f\xcc\xe2\xff\xf8\xfc\x31\x8b\xff\x13" "\xf2\xc7\x2c\xfe\x4b\xe5\x8f\x59\xfc\x9f\x98\x3f\x66\xf1\x7f\x52\xfe\x98" "\xc5\x7f\x42\xfe\x98\xc5\xff\xc9\xf9\x63\x16\xff\xa7\xe4\x8f\x59\xfc\x9f" "\x9a\x3f\x66\xf1\x5f\x3a\x7f\xcc\xe2\xbf\x4c\xfe\x98\xc5\xff\x69\xf9\x63" "\x16\xff\x65\xf3\xc7\x2c\xfe\xcb\xe5\x8f\x59\xfc\x9f\x9e\x3f\x66\xf1\x7f" "\x46\xfe\x98\xc5\xff\x99\xf9\x63\x16\xff\x67\xe5\x8f\x59\xfc\x97\xcf\x1f" "\xb3\xf8\x3f\x3b\x7f\xcc\xe2\xbf\x42\xfe\x98\xc5\x7f\xc5\xfc\x31\x8b\xff" "\x4a\xf9\x63\x16\xff\x95\xf3\xc7\x2c\xfe\xab\xe4\x8f\x59\xfc\x57\xcd\x1f" "\xb3\xf8\x3f\x27\x7f\xcc\xe2\xbf\x5a\xfe\x98\xc5\x7f\xf5\xfc\x31\x8b\xff" "\x1a\xf9\x63\x16\xff\x35\xf3\xc7\x2c\xfe\xcf\xcd\x1f\xb3\xf8\xaf\x95\x3f" "\x66\xf1\x5f\x3b\x7f\xcc\xe2\xff\xbc\xfc\x31\x8b\xff\xf3\xf3\xc7\x2c\xfe" "\xeb\xe4\x8f\x59\xfc\x27\xe6\x8f\x59\xfc\x27\xe5\x8f\x59\xfc\x27\xe7\x8f" "\x59\xfc\xd7\xcd\x1f\xb3\xf8\xaf\x97\x3f\x66\xf1\x5f\x3f\x7f\xcc\xe2\x3f" "\x25\x7f\xcc\xe2\x3f\x35\x7f\xcc\xe2\xbf\x41\xfe\x98\xc5\x7f\xc3\xfc\x31" "\x8b\xff\x0b\xf2\xc7\x2c\xfe\x2f\xcc\x1f\xb3\xf8\x6f\x94\x3f\x66\xf1\xdf" "\x38\x7f\xcc\xe2\xbf\x49\xfe\x98\xc5\xff\x45\xf9\x63\x16\xff\x4d\xf3\xc7" "\x2c\xfe\x2f\xce\x1f\xb3\xf8\x6f\x96\x3f\x66\xf1\xdf\x3c\x7f\xcc\xe2\xbf" "\x45\xfe\x98\xc5\x7f\xcb\xfc\x31\x8b\xff\x4b\xf2\xc7\x2c\xfe\x5b\xe5\x8f" "\x59\xfc\xb7\xce\x1f\xb3\xf8\xbf\x34\x7f\xcc\xe2\xff\xb2\xfc\x31\x8b\xff" "\x36\xf9\x63\x16\xff\x97\xe7\x8f\x59\xfc\x5f\x91\x3f\x66\xf1\x7f\x65\xfe" "\x98\xc5\xff\x55\xf9\x63\x16\xff\x6d\xf3\xc7\x2c\xfe\xdb\xe5\x8f\x59\xfc" "\xb7\xcf\x1f\xb3\xf8\xbf\x3a\x7f\xcc\xe2\xbf\x43\xfe\x98\xc5\x7f\xc7\xfc" "\x31\x8b\xff\x4e\xf9\x63\x16\xff\x9d\xf3\xc7\x2c\xfe\xaf\xc9\x1f\xb3\xf8" "\xef\x92\x3f\x66\xf1\x7f\x6d\xfe\x98\xc5\xff\x75\xf9\x63\x16\xff\x5d\xf3" "\xc7\x2c\xfe\xbb\xe5\x8f\x59\xfc\x77\xcf\x1f\xb3\xf8\xef\x91\x3f\x76\x8f" "\xff\x4e\xc7\x3d\xa2\xfd\x5f\x9f\x3f\x66\x39\xff\xdf\x90\x3f\x66\xf1\xdf" "\x33\x7f\xcc\xe2\xff\xc6\xfc\x31\x8b\xff\x5e\xf9\x63\x16\xff\x37\xe5\x8f" "\x59\xfc\xdf\x9c\x3f\x66\xf1\x7f\x4b\xfe\x98\xc5\x7f\xef\xfc\x31\x8b\xff" "\x3e\xf9\x63\x16\xff\xb7\xe6\x8f\x59\xfc\xdf\x96\x3f\xa6\xf0\x9f\x3e\x7d" "\xfa\xbb\xf2\xc7\x14\xfe\x83\xc1\xc2\xef\xc8\x1f\xb3\xf8\xbf\x33\x7f\xcc" "\xe2\xdf\xf5\x9f\xb3\xf8\xef\x9b\x3f\x66\xf1\xdf\x2f\x7f\xcc\xe2\xff\xee" "\xfc\x31\x8b\xff\x7b\xf2\xc7\x2c\xfe\xef\xcd\x1f\xb3\xf8\xef\x9f\x3f\x66" "\xf1\x7f\x5f\xfe\x98\xc5\xff\x80\xfc\x31\x8b\xff\xfb\xf3\xc7\x2c\xfe\x1f" "\xc8\x1f\xb3\xf8\x1f\x98\x3f\x66\xf1\xff\x60\xfe\x98\xc5\xff\x43\xf9\x63" "\x16\xff\x0f\xe7\x8f\x59\xfc\x3f\x92\x3f\x66\xf1\xff\x68\xfe\x98\xc5\xff" "\xa0\xfc\x31\x8b\xff\xc1\xf9\x63\x16\xff\x8f\xe5\x8f\x59\xfc\x3f\x9e\x3f" "\x66\xf1\x3f\x24\x7f\xcc\xe2\xff\x89\xfc\x31\x8b\xff\xa1\xf9\x63\x16\xff" "\x4f\xe6\x8f\x59\xfc\x3f\x95\x3f\x66\xf1\xff\x74\xfe\x98\xc5\xff\x33\xf9" "\x63\x16\xff\xcf\xe6\x8f\x59\xfc\x3f\x97\x3f\x66\xf1\xff\x7c\xfe\x98\xc5" "\xff\x0b\xf9\x63\x16\xff\x2f\xe6\x8f\x59\xfc\xbf\x94\x3f\x66\xf1\x3f\x2c" "\x7f\xcc\xe2\xff\xe5\xfc\x31\x8b\xff\xe1\xf9\x63\x16\xff\xaf\xe4\x8f\x59" "\xfc\x8f\xc8\x1f\xb3\xf8\x1f\x99\x3f\x66\xf1\x3f\x2a\x7f\xcc\xe2\x7f\x74" "\xfe\x98\xc5\xff\xab\xf9\x63\x16\xff\x63\xf2\xc7\x2c\xfe\x5f\xcb\x1f\x7b" "\x84\xfa\x8f\x1e\xcc\xe1\xff\xf5\xfc\xb1\x47\xa8\xff\x8c\x66\xf7\x3f\x36" "\x7f\xcc\xe2\xff\x8d\xfc\x31\x8b\xff\x71\xf9\x63\x16\xff\xe3\xf3\xc7\x2c" "\xfe\xdf\xcc\x1f\xb3\xf8\x7f\x2b\x7f\xcc\xe2\x7f\x42\xfe\x98\xc5\xff\xc4" "\xfc\x31\x8b\xff\x49\xf9\x63\x16\xff\x6f\xe7\x8f\x59\xfc\xbf\x93\x3f\x66" "\xf1\x3f\x39\x7f\xcc\xe2\x7f\x4a\xfe\x98\xc5\xff\xd4\xfc\x31\x8b\xff\x77" "\xf3\xc7\x2c\xfe\xdf\xcb\x1f\xb3\xf8\x9f\x96\x3f\x66\xf1\x3f\x3d\x7f\xcc" "\xe2\x7f\x46\xfe\x98\xc5\xff\xcc\xfc\x31\x8b\xff\xf7\xf3\xc7\x2c\xfe\x3f" "\xc8\x1f\xb3\xf8\xff\x30\x7f\xcc\xe2\xff\xa3\xfc\x31\x8b\xff\x8f\xf3\xc7" "\x2c\xfe\x3f\xc9\x1f\xb3\xf8\xff\x34\x7f\xcc\xe2\x7f\x56\xfe\x98\xc5\xff" "\x67\xf9\x63\x16\xff\x9f\xe7\x8f\x59\xfc\xcf\xce\x1f\xb3\xf8\xff\x22\x7f" "\xcc\xe2\x7f\x4e\xfe\x98\xc5\xff\xdc\xfc\x31\x8b\xff\x79\xf9\x63\x16\xff" "\xf3\xf3\xc7\x2c\xfe\x17\xe4\x8f\x59\xfc\x2f\xcc\x1f\xb3\xf8\x5f\x94\x3f" "\x66\xf1\xff\x65\xfe\x98\xc5\xff\x57\xf9\x63\x16\xff\x5f\xe7\x8f\x59\xfc" "\x7f\x93\x3f\x66\xf1\xbf\x38\x7f\xcc\xe2\x7f\x49\xfe\x98\xc5\xff\xb7\xf9" "\x63\x16\xff\xdf\xe5\x8f\x59\xfc\x2f\xcd\x1f\xb3\xf8\xff\x3e\x7f\xcc\xe2" "\x7f\x59\xfe\x98\xc5\xff\xf2\xfc\x31\x8b\xff\x15\xf9\x63\x16\xff\x2b\xf3" "\xc7\x2c\xfe\x57\xe5\x8f\x59\xfc\xaf\xce\x1f\xb3\xf8\x5f\x93\x3f\x66\xf1" "\xff\x43\xfe\x98\xc5\xff\x8f\xf9\x63\x16\xff\x3f\xe5\x8f\x59\xfc\xaf\xcd" "\x1f\xb3\xf8\xff\x39\x7f\xcc\xe2\x7f\x5d\xfe\x98\xc5\xff\xfa\xfc\x31\x8b" "\xff\x0d\xf9\x63\x16\xff\x1b\xf3\xc7\x2c\xfe\x7f\xc9\x1f\xb3\xf8\xdf\x94" "\x3f\x66\xf1\xbf\x39\x7f\xcc\xe2\xff\xd7\xfc\x31\x8b\xff\x2d\xf9\x63\x16" "\xff\xbf\xe5\x8f\x59\xfc\xff\x9e\x3f\x66\xf1\xff\x47\xfe\x98\xc5\xff\x9f" "\xf9\x63\x16\xff\x5b\xf3\xc7\x2c\xfe\xb7\xe5\x8f\x59\xfc\x6f\xcf\x1f\xb3" "\xf8\xdf\x91\x3f\x66\xf1\xbf\x33\x7f\xcc\xe2\x3f\x2d\x7f\xcc\xe2\x7f\x57" "\xfe\x98\xc5\xff\xee\xfc\x31\x8b\xff\xf4\xfc\x31\x89\xff\xd8\x41\xfe\x98" "\xc5\x7f\x28\x7f\xcc\xe2\x3f\x2a\x7f\xcc\xe2\x3f\x3a\x7f\xcc\xe2\x3f\x4f" "\xfe\x98\xc5\x7f\x4c\xfe\x98\xc5\x7f\xde\xfc\x31\x8b\xff\x7c\xf9\x63\x16" "\xff\xf9\xf3\xc7\x2c\xfe\x0b\xe4\x8f\x59\xfc\x17\xcc\x1f\xb3\xf8\x2f\x94" "\x3f\xf6\x48\xf7\x1f\x3d\xf3\xe9\xd8\x85\xf3\xc7\x1e\xe9\xfe\x23\x8d\x1d" "\x9b\x3f\x66\xf1\x7f\x54\xfe\x98\xc5\x7f\x91\xfc\x31\x8b\xff\xb8\xfc\x31" "\x8b\xff\xa2\xf9\x63\x16\xff\xf1\xf9\x63\x16\xff\xc5\xf2\xc7\x2c\xfe\x8b" "\xe7\x8f\x59\xfc\x1f\x9d\x3f\x66\xf1\x7f\x4c\xfe\x98\xc5\xff\xb1\xf9\x63" "\x16\xff\x25\xf2\xc7\x2c\xfe\x8f\xcb\x1f\xb3\xf8\x2f\x99\x3f\x66\xf1\x7f" "\x7c\xfe\x98\xc5\xff\x09\xf9\x63\x16\xff\xa5\xf2\xc7\x2c\xfe\x4f\xcc\x1f" "\xb3\xf8\x3f\x29\x7f\xcc\xe2\x3f\x21\x7f\xcc\xe2\xff\xe4\xfc\x31\x8b\xff" "\x53\xf2\xc7\x2c\xfe\x4f\xcd\x1f\xb3\xf8\x2f\x9d\x3f\x66\xf1\x5f\x26\x7f" "\xcc\xe2\xff\xb4\xfc\x31\x8b\xff\xb2\xf9\x63\x16\xff\xe5\xf2\xc7\x2c\xfe" "\x4f\xcf\x1f\xb3\xf8\x3f\x23\x7f\xcc\xe2\xff\xcc\xfc\x31\x8b\xff\xb3\xf2" "\xc7\x2c\xfe\xcb\xe7\x8f\x59\xfc\x9f\x9d\x3f\x66\xf1\x5f\x21\x7f\xcc\xe2" "\xbf\x62\xfe\x98\xc5\x7f\xa5\xfc\x31\x8b\xff\xca\xf9\x63\x16\xff\x55\xf2" "\xc7\x2c\xfe\xab\xe6\x8f\x59\xfc\x9f\x93\x3f\x66\xf1\x5f\x2d\x7f\xcc\xe2" "\xbf\x7a\xfe\x98\xc5\x7f\x8d\xfc\x31\x8b\xff\x9a\xf9\x63\x16\xff\xe7\xe6" "\x8f\x59\xfc\xd7\xca\x1f\xb3\xf8\xaf\x9d\x3f\x66\xf1\x7f\x5e\xfe\x98\xc5" "\xff\xf9\xf9\x63\x16\xff\x75\xf2\xc7\x2c\xfe\x13\xf3\xc7\x2c\xfe\x93\xf2" "\xc7\x2c\xfe\x93\xf3\xc7\x2c\xfe\xeb\xe6\x8f\x59\xfc\xd7\xcb\x1f\xb3\xf8" "\xaf\x9f\x3f\x66\xf1\x9f\x92\x3f\x66\xf1\x9f\x9a\x3f\x66\xf1\xdf\x20\x7f" "\xcc\xe2\xbf\x61\xfe\x98\xc5\xff\x05\xf9\x63\x16\xff\x17\xe6\x8f\x59\xfc" "\x37\xca\x1f\xb3\xf8\x6f\x9c\x3f\x66\xf1\xdf\x24\x7f\xcc\xe2\xff\xa2\xfc" "\x31\x8b\xff\xa6\xf9\x63\x16\xff\x17\xe7\x8f\x59\xfc\x37\xcb\x1f\xb3\xf8" "\x6f\x9e\x3f\x66\xf1\xdf\x22\x7f\xcc\xe2\xbf\x65\xfe\x98\xc5\xff\x25\xf9" "\x63\x16\xff\xad\xf2\xc7\x2c\xfe\x5b\xe7\x8f\x59\xfc\x5f\x9a\x3f\x66\xf1" "\x7f\x59\xfe\x98\xc5\x7f\x9b\xfc\x31\x8b\xff\xcb\xf3\xc7\x2c\xfe\xaf\xc8" "\x1f\xb3\xf8\xbf\x32\x7f\xcc\xe2\xff\xaa\xfc\x31\x8b\xff\xb6\xf9\x63\x16" "\xff\xed\xf2\xc7\x2c\xfe\xdb\xe7\x8f\x59\xfc\x5f\x9d\x3f\x66\xf1\xdf\x21" "\x7f\xcc\xe2\xbf\x63\xfe\x98\xc5\x7f\xa7\xfc\x31\x8b\xff\xce\xf9\x63\x16" "\xff\xd7\xe4\x8f\x59\xfc\x77\xc9\x1f\xb3\xf8\xbf\x36\x7f\xec\x91\xee\xbf" "\xdf\xcc\xa7\x63\x5f\x97\x3f\xf6\x48\xf7\x1f\x69\xec\xae\xf9\x63\x16\xff" "\xdd\xf2\xc7\x2c\xfe\xbb\xe7\x8f\x59\xfc\xf7\xc8\x1f\xb3\xf8\xbf\x3e\x7f" "\xcc\xe2\xff\x86\xfc\x31\x8b\xff\x9e\x73\xf3\x5f\xe0\xff\x60\x5c\xff\xa1" "\x59\xfc\xdf\xd8\xf9\x8f\x59\xfc\xf7\xca\x1f\xb3\xf8\xbf\x29\x7f\xcc\xe2" "\xff\xe6\xfc\x31\x8b\xff\x5b\xf2\xc7\x2c\xfe\x7b\xe7\x8f\x59\xfc\xf7\xc9" "\x1f\xb3\xf8\xbf\x35\x7f\xcc\xe2\xff\xb6\xfc\x31\x8b\xff\xdb\xf3\xc7\x2c" "\xfe\xef\xc8\x1f\xb3\xf8\xbf\x33\x7f\xcc\xe2\xff\xae\xfc\x31\x8b\xff\xbe" "\xf9\x63\x16\xff\xfd\xf2\xc7\x2c\xfe\xef\xce\x1f\xb3\xf8\xbf\x27\x7f\xcc" "\xe2\xff\xde\xfc\x31\x8b\xff\xfe\xf9\x63\x16\xff\xf7\xe5\x8f\x59\xfc\x0f" "\xc8\x1f\xb3\xf8\xbf\x3f\x7f\xcc\xe2\xff\x81\xfc\x31\x8b\xff\x81\xf9\x63" "\x16\xff\x0f\xe6\x8f\x59\xfc\x3f\x94\x3f\x66\xf1\xff\x70\xfe\x98\xc5\xff" "\x23\xf9\x63\x16\xff\x8f\xe6\x8f\x59\xfc\x0f\xca\x1f\xb3\xf8\x1f\x9c\x3f" "\x66\xf1\xff\x58\xfe\x98\xc5\xff\xe3\xf9\x63\x16\xff\x43\xf2\xc7\x2c\xfe" "\x9f\xc8\x1f\xb3\xf8\x1f\x9a\x3f\x66\xf1\xff\x64\xfe\x98\xc5\xff\x53\xf9" "\x63\x16\xff\x4f\xe7\x8f\x59\xfc\x3f\x93\x3f\x66\xf1\xff\x6c\xfe\x98\xc5" "\xff\x73\xf9\x63\x16\xff\xcf\xe7\x8f\x59\xfc\xbf\x90\x3f\x66\xf1\xff\x62" "\xfe\x98\xc5\xff\x4b\xf9\x63\x16\xff\xc3\xf2\xc7\x2c\xfe\x5f\xce\x1f\xb3" "\xf8\x1f\x9e\x3f\x66\xf1\xff\x4a\xfe\x98\xc5\xff\x88\xfc\x31\x8b\xff\x91" "\xf9\x63\x16\xff\xa3\xf2\xc7\x2c\xfe\x47\xe7\x8f\x59\xfc\xbf\x9a\x3f\x66" "\xf1\x3f\x26\x7f\xcc\xe2\xff\xb5\xfc\x31\x8b\xff\xd7\xf3\xc7\x2c\xfe\xc7" "\xe6\x8f\x59\xfc\xbf\x91\x3f\x66\xf1\x3f\x2e\x7f\xcc\xe2\x7f\x7c\xfe\x98" "\xc5\xff\x9b\xf9\x63\x16\xff\x6f\xe5\x8f\x59\xfc\x4f\xc8\x1f\xb3\xf8\x9f" "\x98\x3f\x66\xf1\x3f\x29\x7f\xcc\xe2\xff\xed\xfc\x31\x8b\xff\x77\xf2\xc7" "\x2c\xfe\x27\xe7\x8f\x59\xfc\x4f\xc9\x1f\xb3\xf8\x9f\x9a\x3f\x66\xf1\xff" "\x6e\xfe\x98\xc5\xff\x7b\xf9\x63\x16\xff\xd3\xf2\xc7\x2c\xfe\xa7\xe7\x8f" "\x59\xfc\xcf\xc8\x1f\xb3\xf8\x9f\x99\x3f\x66\xf1\xff\x7e\xfe\x98\xc5\xff" "\x07\xf9\x63\x16\xff\x1f\xe6\x8f\x59\xfc\x7f\x94\x3f\x66\xf1\xff\x71\xfe" "\x98\xc5\xff\x27\xf9\x63\x16\xff\x9f\xe6\x8f\x59\xfc\xcf\xca\x1f\xb3\xf8" "\xff\x2c\x7f\xcc\xe2\xff\xf3\xfc\x31\x8b\xff\xd9\xf9\x63\x16\xff\x5f\xe4" "\x8f\x59\xfc\xcf\xc9\x1f\xb3\xf8\x9f\x9b\x3f\x66\xf1\x3f\x2f\x7f\xcc\xe2" "\x7f\x7e\xfe\x98\xc5\xff\x82\xfc\x31\x8b\xff\x85\xf9\x63\x16\xff\x8b\xf2" "\xc7\x2c\xfe\xbf\xcc\x1f\xb3\xf8\xff\x2a\x7f\xcc\xe2\xff\xeb\xfc\x31\x8b" "\xff\x6f\xf2\xc7\x1e\x91\xfe\xf3\xde\x6f\xe9\xd8\x8b\xf3\xc7\x1e\x91\xfe" "\x23\x4f\x67\x3f\xff\x2f\xc9\x1f\xb3\xf8\xff\x36\x7f\xcc\xe2\xff\xbb\xfc" "\x31\x8b\xff\xa5\xf9\x63\x16\xff\xdf\xe7\x8f\x59\xfc\x2f\xcb\x1f\xb3\xf8" "\x5f\x9e\x3f\x66\xf1\xbf\x22\x7f\xcc\xe2\x7f\x65\xfe\x98\xc5\xff\xaa\xfc" "\x31\x8b\xff\xd5\xf9\x63\x16\xff\x6b\xf2\xc7\x2c\xfe\x7f\xc8\x1f\xb3\xf8" "\xff\x31\x7f\xcc\xe2\xff\xa7\xfc\x31\x8b\xff\xb5\xf9\x63\x16\xff\x3f\xe7" "\x8f\x59\xfc\xaf\xcb\x1f\xb3\xf8\x5f\x9f\x3f\x66\xf1\xbf\x21\x7f\xcc\xe2" "\x7f\x63\xfe\x98\xc5\xff\x2f\xf9\x63\x16\xff\x9b\xf2\xc7\x2c\xfe\x37\xe7" "\x8f\x59\xfc\xff\x9a\x3f\x66\xf1\xbf\x25\x7f\xcc\xe2\xff\xb7\xfc\x31\x8b" "\xff\xdf\xf3\xc7\x2c\xfe\xff\xc8\x1f\xb3\xf8\xff\x33\x7f\xcc\xe2\x7f\x6b" "\xfe\x98\xc5\xff\xb6\xfc\x31\x8b\xff\xed\xf9\x63\x16\xff\x3b\xf2\xc7\x2c" "\xfe\x77\xe6\x8f\x59\xfc\xa7\xe5\x8f\x59\xfc\xef\xca\x1f\xb3\xf8\xdf\x9d" "\x3f\x66\xf1\x9f\x9e\x3f\x26\xf1\x7f\xd4\x20\x7f\xcc\xe2\x3f\x94\x3f\x66" "\xf1\x1f\x95\x3f\x66\xf1\x1f\x9d\x3f\x66\xf1\x9f\x27\x7f\xcc\xe2\x3f\x26" "\x7f\xcc\xe2\x3f\x6f\xfe\x98\xc5\x7f\xbe\xfc\x31\x8b\xff\xfc\xf9\x63\x16" "\xff\x05\xf2\xc7\x2c\xfe\x0b\xe6\x8f\x59\xfc\x17\xca\x1f\xb3\xf8\x2f\x9c" "\x3f\x66\xf1\x1f\x9b\x3f\x66\xf1\x7f\x54\xfe\x98\xc5\x7f\x91\xfc\x31\x8b" "\xff\xb8\xfc\x31\x8b\xff\xa2\xf9\x63\x16\xff\xf1\xf9\x63\x16\xff\xc5\xf2" "\xc7\x2c\xfe\x8b\xe7\x8f\x59\xfc\x1f\x9d\x3f\x66\xf1\x7f\x4c\xfe\x98\xc5" "\xff\xb1\xf9\x63\x16\xff\x25\xf2\xc7\x2c\xfe\x8f\xcb\x1f\xb3\xf8\x2f\x99" "\x3f\x66\xf1\x7f\x7c\xfe\x98\xc5\xff\x09\xf9\x63\x16\xff\xa5\xf2\xc7\x2c" "\xfe\x4f\xcc\x1f\xb3\xf8\x3f\x29\x7f\xcc\xe2\x3f\x21\x7f\xcc\xe2\xff\xe4" "\xfc\x31\x8b\xff\x53\xf2\xc7\x2c\xfe\x4f\xcd\x1f\xb3\xf8\x2f\x9d\x3f\x66" "\xf1\x5f\x26\x7f\xcc\xe2\xff\xb4\xfc\x31\x8b\xff\xb2\xf9\x63\x16\xff\xe5" "\xf2\xc7\x2c\xfe\x4f\xcf\x1f\xb3\xf8\x3f\x23\x7f\xcc\xe2\xff\xcc\xfc\x31" "\x8b\xff\xb3\xf2\xc7\x2c\xfe\xcb\xe7\x8f\x59\xfc\x9f\x9d\x3f\x66\xf1\x5f" "\x21\x7f\xcc\xe2\xbf\x62\xfe\x98\xc5\x7f\xa5\xfc\x31\x8b\xff\xca\xf9\x63" "\x16\xff\x55\xf2\xc7\x2c\xfe\xab\xe6\x8f\x59\xfc\x9f\x93\x3f\x66\xf1\x5f" "\x2d\x7f\xcc\xe2\xbf\x7a\xfe\x98\xc5\x7f\x8d\xfc\x31\x8b\xff\x9a\xf9\x63" "\x16\xff\xe7\xe6\x8f\x59\xfc\xd7\xca\x1f\xb3\xf8\xaf\x9d\x3f\x66\xf1\x7f" "\x5e\xfe\x98\xc5\xff\xf9\xf9\x63\x16\xff\x75\xf2\xc7\x2c\xfe\x13\xf3\xc7" "\x2c\xfe\x93\xf2\xc7\x2c\xfe\x93\xf3\xc7\x2c\xfe\xeb\xe6\x8f\x59\xfc\xd7" "\x13\xf9\xcf\xff\x10\xd6\xb5\xf8\xaf\x2f\xf2\x7f\x28\x59\xfc\xa7\xe4\x8f" "\x59\xfc\xa7\xe6\x8f\x59\xfc\x37\xc8\x1f\xb3\xf8\x6f\x98\x3f\x66\xf1\x7f" "\x41\xfe\x98\xc5\xff\x85\xf9\x63\x16\xff\x8d\xf2\xc7\x2c\xfe\x1b\xe7\x8f" "\x59\xfc\x37\xc9\x1f\xb3\xf8\xbf\x28\x7f\xcc\xe2\xbf\x69\xfe\x98\xc5\xff" "\xc5\xf9\x63\x16\xff\xcd\xf2\xc7\x2c\xfe\x9b\xe7\x8f\x59\xfc\xb7\xc8\x1f" "\xb3\xf8\x6f\x99\x3f\x66\xf1\x7f\x49\xfe\x98\xc5\x7f\xab\xfc\x31\x8b\xff" "\xd6\xf9\x63\x16\xff\x97\xe6\x8f\x59\xfc\x5f\x96\x3f\x66\xf1\xdf\x26\x7f" "\xcc\xe2\xff\xf2\xfc\x31\x8b\xff\x2b\xf2\xc7\x2c\xfe\xaf\xcc\x1f\xb3\xf8" "\xbf\x2a\x7f\xcc\xe2\xbf\x6d\xfe\x98\xc5\x7f\xbb\xfc\x31\x8b\xff\xf6\xf9" "\x63\x16\xff\x57\xe7\x8f\x59\xfc\x77\xc8\x1f\xb3\xf8\xef\x98\x3f\x66\xf1" "\xdf\x29\x7f\xcc\xe2\xbf\x73\xfe\x98\xc5\xff\x35\xf9\x63\x16\xff\x5d\xf2" "\xc7\x2c\xfe\xaf\xcd\x1f\xb3\xf8\xbf\x2e\x7f\xcc\xe2\xbf\x6b\xfe\x98\xc5" "\x7f\xb7\xfc\x31\x8b\xff\xee\xf9\x63\x16\xff\x3d\xf2\xc7\x2c\xfe\xaf\xcf" "\x1f\xb3\xf8\xbf\x21\x7f\xcc\xe2\xbf\x67\xfe\x98\xc5\xff\x8d\xf9\x63\x16" "\xff\xbd\xf2\xc7\x2c\xfe\x6f\xca\x1f\xb3\xf8\xbf\x39\x7f\xcc\xe2\xff\x96" "\xfc\x31\x8b\xff\xde\xf9\x63\x16\xff\x7d\xf2\xc7\x2c\xfe\x6f\xcd\x1f\xb3" "\xf8\xbf\x2d\x7f\xcc\xe2\xff\xf6\xfc\x31\x8b\xff\x3b\xf2\xc7\x2c\xfe\xef" "\xcc\x1f\xb3\xf8\xbf\x2b\x7f\xcc\xe2\xbf\x6f\xfe\x98\xc5\x7f\xbf\xfc\x31" "\x8b\xff\xbb\xf3\xc7\x2c\xfe\xef\xc9\x1f\xb3\xf8\xbf\x37\x7f\xcc\xe2\xbf" "\x7f\xfe\x98\xc5\xff\x7d\xf9\x63\x16\xff\x03\xf2\xc7\x2c\xfe\xef\xcf\x1f" "\xb3\xf8\x7f\x20\x7f\xcc\xe2\x7f\x60\xfe\x98\xc5\xff\x83\xf9\x63\x16\xff" "\x0f\xe5\x8f\x59\xfc\x3f\x9c\x3f\x66\xf1\xff\x48\xfe\x98\xc5\xff\xa3\xf9" "\x63\x16\xff\x83\xf2\xc7\x2c\xfe\x07\xe7\x8f\x59\xfc\x3f\x96\x3f\x66\xf1" "\xff\x78\xfe\x98\xc5\xff\x90\xfc\x31\x8b\xff\x27\xf2\xc7\x2c\xfe\x87\xe6" "\x8f\x59\xfc\x3f\x99\x3f\x66\xf1\xff\x54\xfe\x98\xc5\xff\xd3\xf9\x63\x16" "\xff\xcf\xe4\x8f\x59\xfc\x3f\x9b\x3f\x66\xf1\xff\x5c\xfe\x98\xc5\xff\xf3" "\xf9\x63\x16\xff\x2f\xe4\x8f\x59\xfc\xbf\x98\x3f\x66\xf1\xff\x52\xfe\x98" "\xc5\xff\xb0\xfc\x31\x8b\xff\x97\xf3\xc7\x2c\xfe\x87\xe7\x8f\x59\xfc\xbf" "\x92\x3f\x66\xf1\x3f\x22\x7f\xcc\xe2\x7f\x64\xfe\x98\xc5\xff\xa8\xfc\x31" "\x8b\xff\xd1\xf9\x63\x16\xff\xaf\xe6\x8f\x59\xfc\x8f\xc9\x1f\xb3\xf8\x7f" "\x2d\x7f\xcc\xe2\xff\xf5\xfc\x31\x8b\xff\xb1\xf9\x63\x16\xff\x6f\xe4\x8f" "\x59\xfc\x8f\xcb\x1f\xb3\xf8\x1f\x9f\x3f\x66\xf1\xff\x66\xfe\x98\xc5\xff" "\x5b\xf9\x63\x16\xff\x13\xf2\xc7\x2c\xfe\x27\xe6\x8f\x59\xfc\x4f\xca\x1f" "\xb3\xf8\x7f\x3b\x7f\xcc\xe2\xff\x9d\xfc\x31\x8b\xff\xc9\xf9\x63\x16\xff" "\x53\xf2\xc7\x2c\xfe\xa7\xe6\x8f\x59\xfc\xbf\x9b\x3f\x66\xf1\xff\x5e\xfe" "\x98\xc5\xff\xb4\xfc\x31\x8b\xff\xe9\xf9\x63\x16\xff\x33\xf2\xc7\x2c\xfe" "\x67\xe6\x8f\x59\xfc\xbf\x9f\x3f\x66\xf1\xff\x41\xfe\x98\xc5\xff\x87\xf9" "\x63\x16\xff\x1f\xe5\x8f\x59\xfc\x7f\x9c\x3f\x66\xf1\xff\x49\xfe\x98\xc5" "\xff\xa7\xf9\x63\x16\xff\xb3\xf2\xc7\x2c\xfe\x3f\xcb\x1f\xb3\xf8\xff\x3c" "\x7f\xcc\xe2\x7f\x76\xfe\x98\xc5\xff\x17\xf9\x63\x16\xff\x73\xf2\xc7\x2c" "\xfe\xe7\xe6\x8f\x59\xfc\xcf\xcb\x1f\xb3\xf8\x9f\x9f\x3f\x66\xf1\xbf\x20" "\x7f\xcc\xe2\x7f\x61\xfe\x98\xc5\xff\xa2\xfc\x31\x8b\xff\x2f\xf3\xc7\x2c" "\xfe\xbf\xca\x1f\xb3\xf8\xff\x3a\x7f\xcc\xe2\xff\x9b\xfc\x31\x8b\xff\xc5" "\xf9\x63\x16\xff\x4b\xf2\xc7\x2c\xfe\xbf\xcd\x1f\xb3\xf8\xff\x2e\x7f\xcc" "\xe2\x7f\x69\xfe\x98\xc5\xff\xf7\xf9\x63\x16\xff\xcb\xf2\xc7\x2c\xfe\x97" "\xe7\x8f\x59\xfc\xaf\xc8\x1f\xb3\xf8\x5f\x99\x3f\x66\xf1\xbf\x2a\x7f\xcc" "\xe2\x7f\x75\xfe\x98\xc5\xff\x9a\xfc\x31\x8b\xff\x1f\xf2\xc7\x2c\xfe\x7f" "\xcc\x1f\xb3\xf8\xff\x29\x7f\xcc\xe2\x7f\x6d\xfe\x98\xc5\xff\xcf\xf9\x63" "\x16\xff\xeb\xf2\xc7\x2c\xfe\xd7\xe7\x8f\x59\xfc\x6f\xc8\x1f\xb3\xf8\xdf" "\x98\x3f\x66\xf1\xff\x4b\xfe\x98\xc5\xff\xa6\xfc\x31\x8b\xff\xcd\xf9\x63" "\x16\xff\xbf\xe6\x8f\x59\xfc\x6f\xc9\x1f\xb3\xf8\xff\x2d\x7f\xcc\xe2\xff" "\xf7\xfc\x31\x8b\xff\x3f\xf2\xc7\x2c\xfe\xff\xcc\x1f\xb3\xf8\xdf\x9a\x3f" "\x66\xf1\xbf\x2d\x7f\xcc\xe2\x7f\x7b\xfe\x98\xc5\xff\x8e\xfc\x31\x8b\xff" "\x9d\xf9\x63\x16\xff\x69\xf9\x63\x16\xff\xbb\xf2\xc7\x2c\xfe\x77\xe7\x8f" "\x59\xfc\xa7\xe7\x8f\x49\xfc\x17\x19\xe4\x8f\x59\xfc\x87\xf2\xc7\x2c\xfe" "\xa3\xf2\xc7\x2c\xfe\xa3\xf3\xc7\x2c\xfe\xf3\xe4\x7f\x9f\x46\x8f\x3c\x5a" "\xfc\xc7\xe4\x8f\x59\xfc\xe7\xcd\x1f\xb3\xf8\xcf\x97\x3f\x66\xf1\x9f\x3f" "\x7f\xcc\xe2\xbf\x40\xfe\x98\xc5\x7f\xc1\xfc\x31\x8b\xff\x42\xf9\x63\x16" "\xff\x85\xf3\xc7\x2c\xfe\x63\xf3\xc7\x2c\xfe\x8f\xca\x1f\xb3\xf8\x2f\x92" "\x3f\x66\xf1\x1f\x97\x3f\x66\xf1\x5f\x34\x7f\xcc\xe2\x3f\x3e\x7f\xcc\xe2" "\xbf\x58\xfe\x98\xc5\x7f\xf1\xfc\x31\x8b\xff\xa3\xf3\xc7\x2c\xfe\x8f\xc9" "\x1f\xb3\xf8\x3f\x36\x7f\xcc\xe2\xbf\x44\xfe\x98\xc5\xff\x71\xf9\x63\x16" "\xff\x25\xf3\xc7\x2c\xfe\x8f\xcf\x1f\xb3\xf8\x3f\x21\x7f\xcc\xe2\xbf\x54" "\xfe\x98\xc5\xff\x89\xf9\x63\x16\xff\x27\xe5\x8f\x59\xfc\x27\xe4\x8f\x59" "\xfc\x9f\x9c\x3f\x66\xf1\x7f\x4a\xfe\x98\xc5\xff\xa9\xf9\x63\x16\xff\xa5" "\xf3\xc7\x2c\xfe\xcb\xe4\x8f\x59\xfc\x9f\x96\x3f\x66\xf1\x5f\x36\x7f\xcc" "\xe2\xbf\x5c\xfe\x98\xc5\xff\xe9\xf9\x63\x16\xff\x67\xe4\x8f\x59\xfc\x9f" "\x99\x3f\x66\xf1\x7f\x56\xfe\x98\xc5\x7f\xf9\xfc\x31\x8b\xff\xb3\xf3\xc7" "\x2c\xfe\x2b\xe4\x8f\x59\xfc\x57\xcc\x1f\xb3\xf8\xaf\x94\x3f\x66\xf1\x5f" "\x39\x7f\xcc\xe2\xbf\x4a\xfe\x98\xc5\x7f\xd5\xfc\x31\x8b\xff\x73\xf2\xc7" "\x2c\xfe\xab\xe5\x8f\x59\xfc\x57\xcf\x1f\xb3\xf8\xaf\x91\x3f\x66\xf1\x5f" "\x33\x7f\xcc\xe2\xff\xdc\xfc\x31\x8b\xff\x5a\xf9\x63\x16\xff\xb5\xf3\xc7" "\x2c\xfe\xcf\xcb\x1f\xb3\xf8\x3f\x3f\x7f\xcc\xe2\xbf\x4e\xfe\x98\xc5\x7f" "\x62\xfe\x98\xc5\x7f\x52\xfe\x98\xc5\x7f\x72\xfe\x98\xc5\x7f\xdd\xfc\x31" "\x8b\xff\x7a\xf9\x63\x16\xff\xf5\xf3\xc7\x2c\xfe\x53\xf2\xc7\x2c\xfe\x53" "\xf3\xc7\x2c\xfe\x1b\xe4\x8f\x59\xfc\x37\xcc\x1f\xb3\xf8\xbf\x20\x7f\xcc" "\xe2\xff\xc2\xfc\x31\x8b\xff\x46\xf9\x63\x16\xff\x8d\xf3\xc7\x2c\xfe\x9b" "\xe4\x8f\x59\xfc\x5f\x94\x3f\x66\xf1\xdf\x34\x7f\xcc\xe2\xff\xe2\xfc\x31" "\x8b\xff\x66\xf9\x63\x16\xff\xcd\xf3\xc7\x2c\xfe\x5b\xe4\x8f\x59\xfc\xb7" "\xcc\x1f\xb3\xf8\xbf\x24\x7f\xcc\xe2\xbf\x55\xfe\x98\xc5\x7f\xeb\xfc\x31" "\x8b\xff\x4b\xf3\xc7\x2c\xfe\x2f\xcb\x1f\xb3\xf8\x6f\x93\x3f\x66\xf1\x7f" "\x79\xfe\x98\xc5\xff\x15\xf9\x63\x16\xff\x57\xe6\x8f\x59\xfc\x5f\x95\x3f" "\x66\xf1\xdf\x36\x7f\xcc\xe2\xbf\x5d\xfe\x98\xc5\x7f\xfb\xfc\x31\x8b\xff" "\xab\xf3\xc7\x2c\xfe\x3b\xe4\x8f\x59\xfc\x77\xcc\x1f\xb3\xf8\xef\x94\x3f" "\x66\xf1\xdf\x39\x7f\xcc\xe2\xff\x9a\xfc\x31\x8b\xff\x2e\xf9\x63\x16\xff" "\xd7\xe6\x8f\x59\xfc\x5f\x97\x3f\x66\xf1\xdf\x35\x7f\xcc\xe2\xbf\x5b\xfe" "\x98\xc5\x7f\xf7\xfc\x31\x8b\xff\x1e\xf9\x63\x16\xff\xd7\xe7\x8f\x59\xfc" "\xdf\x90\x3f\x66\xf1\xdf\x33\xff\xff\xc7\x3e\x3d\x3d\x8d\x61\xa0\x51\x1c" "\xde\x2c\xb2\xde\xcd\xda\xb6\x6d\xa3\xb6\x6d\x1b\xb1\x6b\xdb\xb6\x6d\xdb" "\xb6\x6d\x9b\x69\xd3\xf6\xeb\x4c\xd3\x8b\x74\xe6\xfc\x05\xdf\x79\x9e\xab" "\xf7\xbd\xfe\xcd\x89\x5a\xfa\x0f\xd7\x3f\x6a\xe9\x3f\x42\xff\xa8\xa5\xff" "\x48\xfd\xa3\x96\xfe\xa3\xf4\x8f\x5a\xfa\x8f\xd6\x3f\x6a\xe9\x3f\x46\xff" "\xa8\xa5\xff\x58\xfd\xa3\x96\xfe\xe3\xf4\x8f\x5a\xfa\x8f\xd7\x3f\x6a\xe9" "\x3f\x41\xff\xa8\xa5\xff\x44\xfd\xa3\x96\xfe\x93\xf4\x8f\x5a\xfa\x4f\xd6" "\x3f\x6a\xe9\xbf\x9e\xfe\x51\x4b\xff\xf5\xf5\x8f\x5a\xfa\x6f\xa0\x7f\xf4" "\x4e\xff\x29\x03\xd3\x0c\xe2\xfe\x1b\xea\x1f\xb5\xec\x7f\x23\xfd\xa3\x96" "\xfe\x1b\xeb\x1f\xb5\xf4\xdf\x44\xff\xa8\xa5\xff\xa6\xfa\x47\x2d\xfd\x37" "\xd3\x3f\x6a\xe9\xbf\xb9\xfe\x51\x4b\xff\x2d\xf4\x8f\x5a\xfa\x6f\xa9\x7f" "\xd4\xd2\x7f\x2b\xfd\xa3\x96\xfe\x5b\xeb\x1f\xb5\xf4\xdf\x46\xff\xa8\xa5" "\xff\xb6\xfa\x47\x2d\xfd\xb7\xd3\x3f\x6a\xe9\xbf\xbd\xfe\x51\x4b\xff\x1d" "\xf4\x8f\x5a\xfa\xef\xa8\x7f\xd4\xd2\x7f\x27\xfd\xa3\x96\xfe\x3b\xeb\x1f" "\xb5\xf4\xdf\x45\xff\xa8\xa5\xff\xae\xfa\x47\x2d\xfd\x77\xd3\x3f\x6a\xe9" "\xbf\xbb\xfe\x51\x4b\xff\x3d\xf4\x8f\x5a\xfa\xef\xa9\x7f\xd4\xd2\x7f\x2f" "\xfd\xa3\x96\xfe\x7b\xeb\x1f\xb5\xf4\xdf\x47\xff\xa8\xa5\xff\xbe\xfa\x47" "\x2d\xfd\xf7\xd3\x3f\x6a\xe9\xbf\xbf\xfe\x51\x4b\xff\x03\xf4\x8f\x5a\xfa" "\x1f\xa8\x7f\xd4\xd2\xff\x20\xfd\xa3\x96\xfe\x07\xeb\x1f\xb5\xf4\x3f\x44" "\xff\xa8\xa5\xff\xa1\xfa\x47\x2d\xfd\x0f\xd3\x3f\x6a\xe9\x7f\xb8\xfe\x51" "\x4b\xff\x23\xf4\x8f\x5a\xfa\x1f\xa9\x7f\xd4\xd2\xff\x28\xfd\xa3\x96\xfe" "\x47\xeb\x1f\xb5\xf4\x3f\x46\xff\xa8\xa5\xff\xb1\xfa\x47\x2d\xfd\x8f\xd3" "\x3f\x6a\xe9\x7f\xbc\xfe\x51\x4b\xff\x13\xf4\x8f\x5a\xfa\x9f\xa8\x7f\xd4" "\xd2\xff\x24\xfd\xa3\x96\xfe\x27\xeb\x1f\xb5\xf4\x3f\x45\xff\xa8\xa5\xff" "\xa9\xfa\x47\x2d\xfd\x4f\xd3\x3f\x6a\xe9\x7f\xba\xfe\x51\x4b\xff\x33\xf4" "\x8f\x5a\xfa\x9f\xa9\x7f\xd4\xd2\xff\x2c\xfd\xa3\x96\xfe\x67\xeb\x1f\xb5" "\xf4\x3f\x47\xff\xa8\xa5\xff\xb9\xfa\x47\x2d\xfd\xcf\xd3\x3f\x6a\xe9\x7f" "\xbe\xfe\x51\x4b\xff\x0b\xf4\x8f\x5a\xfa\x5f\xa8\x7f\xd4\xd2\xff\x22\xfd" "\xa3\x96\xfe\x17\xeb\x1f\xb5\xf4\xbf\x44\xff\xa8\xa5\xff\xa5\xfa\x47\x2d" "\xfd\x2f\xd3\x3f\x6a\xe9\x7f\xb9\xfe\x51\x4b\xff\x2b\xf4\x8f\x5a\xfa\x5f" "\xa9\x7f\xd4\xd2\xff\x2a\xfd\xa3\x96\xfe\x57\xeb\x1f\xb5\xf4\xbf\x46\xff" "\xa8\xa5\xff\xb5\xfa\x47\x2d\xfd\xaf\xd3\x3f\x6a\xe9\x7f\xbd\xfe\x51\x4b" "\xff\x1b\xf4\x8f\x5a\xfa\xdf\xa8\x7f\xd4\xd2\xff\x26\xfd\xa3\x96\xfe\x37" "\xeb\x1f\xb5\xf4\xbf\x45\xff\x68\x50\xf6\x1f\x3a\xed\x9c\xbe\xff\xad\xfa" "\x47\x83\xb2\xff\xbb\xe7\xf4\xfd\x6f\xd3\x3f\x6a\xe9\x7f\xbb\xfe\x51\x4b" "\xff\x3b\xf4\x8f\x5a\xfa\xdf\xa9\x7f\xd4\xd2\xff\x2e\xfd\xa3\x96\xfe\x77" "\xeb\x1f\xb5\xf4\xbf\x47\xff\xa8\xa5\xff\xbd\xfa\x47\x2d\xfd\xef\xd3\x3f" "\x6a\xe9\x7f\xbf\xfe\x51\x4b\xff\x07\xf4\x8f\x5a\xfa\x3f\xa8\x7f\xd4\xd2" "\xff\x21\xfd\xa3\x96\xfe\x0f\xeb\x1f\xb5\xf4\x7f\x44\xff\xa8\xa5\xff\xa3" "\xfa\x47\x2d\xfd\x1f\xd3\x3f\x6a\xe9\xff\xb8\xfe\x51\x4b\xff\x27\xf4\x8f" "\x5a\xfa\x3f\xa9\x7f\xd4\xd2\xff\x29\xfd\xa3\x96\xfe\x4f\xeb\x1f\xb5\xf4" "\x7f\x46\xff\xa8\xa5\xff\xb3\xfa\x47\x2d\xfd\x9f\xd3\x3f\x6a\xe9\xff\xbc" "\xfe\x51\x4b\xff\x17\xf4\x8f\x5a\xfa\xbf\xa8\x7f\xd4\xd2\xff\x25\xfd\xa3" "\x96\xfe\x2f\xeb\x1f\xb5\xf4\x7f\x45\xff\xa8\xa5\xff\xab\xfa\x47\x2d\xfd" "\xa7\xe8\x1f\xb5\xf4\x7f\x4d\xff\xa8\xa5\xff\xeb\xfa\x47\x2d\xfd\xa7\xea" "\x1f\xb5\xf4\x7f\x43\xff\xa8\xa5\xff\x9b\xfa\x47\x2d\xfd\xdf\xd2\x3f\x6a" "\xe9\x3f\xa0\x7f\x54\xd2\x7f\xd8\xfb\xf4\x8f\x5a\xfa\x0f\xd1\x3f\x6a\xe9" "\xff\x7e\xfd\xa3\x96\xfe\x1f\xd0\x3f\x6a\xe9\xff\x41\xfd\xa3\x96\xfe\x1f" "\xd2\x3f\x6a\xe9\x3f\x54\xff\xa8\xa5\xff\x87\xf5\x8f\x5a\xfa\x7f\x44\xff" "\xa8\xa5\xff\x47\xf5\x8f\x5a\xfa\x7f\x4c\xff\xa8\xa5\xff\xc7\xf5\x8f\x5a" "\xfa\x7f\x42\xff\xa8\xa5\xff\x27\xf5\x8f\x5a\xfa\x7f\x4a\xff\xa8\xa5\xff" "\xa7\xf5\x8f\x5a\xfa\x0f\xd3\x3f\x6a\xe9\xff\x19\xfd\xa3\x96\xfe\x9f\xd5" "\x3f\x6a\xe9\xff\x39\xfd\xa3\x96\xfe\x9f\xd7\x3f\x6a\xe9\xff\x05\xfd\xa3" "\x96\xfe\x5f\xd4\x3f\x6a\xe9\xff\x25\xfd\xa3\x96\xfe\x5f\xd6\x3f\x6a\xe9" "\xff\x15\xfd\xa3\x96\xfe\x5f\xd5\x3f\x6a\xe9\xff\x35\xfd\xa3\x96\xfe\x5f" "\xd7\x3f\x6a\xe9\xff\x0d\xfd\xa3\x96\xfe\xdf\xd4\x3f\x6a\xe9\xff\x2d\xfd" "\xa3\x96\xfe\xdf\xd6\x3f\x6a\xe9\xff\x1d\xfd\xa3\x96\xfe\xdf\xd5\x3f\x6a" "\xe9\xff\x3d\xfd\xa3\x96\xfe\xdf\xd7\x3f\x6a\xe9\xff\x03\xfd\xa3\x96\xfe" "\x3f\xd4\x3f\x6a\xe9\xff\x23\xfd\xa3\x96\xfe\x3f\xd6\x3f\x6a\xe9\xff\x13" "\xfd\xa3\x96\xfe\x3f\xd5\x3f\x6a\xe9\xff\x33\xfd\xa3\x96\xfe\x3f\xd7\x3f" "\x1a\x32\x75\x60\x60\xa0\xa0\xff\x2f\xf4\x8f\x5a\xf6\xff\x4b\xfd\xa3\x96" "\xfe\xbf\xd2\x3f\x6a\xe9\xff\x6b\xfd\xa3\x96\xfe\xbf\xd1\x3f\x6a\xe9\xff" "\x5b\xfd\xa3\x96\xfe\xbf\xd3\x3f\x6a\xe9\xff\x7b\xfd\xa3\x96\xfe\x7f\xd0" "\x3f\x6a\xe9\xff\x47\xfd\xa3\x96\xfe\x7f\xd2\x3f\x6a\xe9\xff\x67\xfd\xa3" "\x96\xfe\x7f\xd1\x3f\x6a\xe9\xff\x57\xfd\xa3\x96\xfe\x7f\xd3\x3f\x6a\xe9" "\xff\x77\xfd\xa3\x96\xfe\xff\xd0\x3f\x6a\xe9\xff\x4f\xfd\xa3\x96\xfe\xff" "\xd2\x3f\x6a\xe9\xff\x6f\xfd\xa3\x96\xfe\xff\xd1\x3f\x6a\xe9\xff\x5f\xfd" "\xa3\x96\xfe\xff\xd3\x3f\x6a\xe9\xff\x7f\xfd\xa3\x96\xfe\x33\xe8\x1f\xb5" "\xf4\x9f\x51\xff\xa8\xa5\xff\x4c\xfa\x47\x2d\xfd\x67\xd6\x3f\x6a\xe9\x3f" "\x8b\xfe\x51\x4b\xff\x59\xf5\x8f\x5a\xfa\xcf\xa6\x7f\xd4\xd2\x7f\x76\xfd" "\xa3\x96\xfe\x73\xe8\x1f\xb5\xf4\x9f\x53\xff\xa8\xa5\xff\x5c\xfa\x47\x2d" "\xfd\xe7\xd6\x3f\x6a\xe9\x3f\x8f\xfe\x51\x4b\xff\x79\xf5\x8f\x5a\xfa\xcf" "\xa7\x7f\xd4\xd2\x7f\x7e\xfd\xa3\x96\xfe\x0b\xe8\x1f\xb5\xf4\x5f\x50\xff" "\xa8\xa5\xff\x42\xfa\x47\x2d\xfd\x17\xd6\x3f\x6a\xe9\xbf\x88\xfe\x51\x4b" "\xff\x45\xf5\x8f\x5a\xfa\x2f\xa6\x7f\xd4\xd2\x7f\x71\xfd\xa3\x96\xfe\x4b" "\xe8\x1f\xb5\xf4\x5f\x52\xff\xa8\xa5\xff\x52\xfa\x47\x2d\xfd\x97\xd6\x3f" "\x6a\xe9\xbf\x8c\xfe\x51\x4b\xff\x65\xf5\x8f\x5a\xfa\x2f\xa7\x7f\xd4\xd2" "\x7f\x79\xfd\xa3\x96\xfe\x2b\xe8\x1f\xb5\xf4\x5f\x51\xff\xa8\xa5\xff\x4a" "\xfa\x47\x2d\xfd\x57\xd6\x3f\x6a\xe9\xbf\x8a\xfe\x51\x4b\xff\x55\xf5\x8f" "\x5a\xfa\xaf\xa6\x7f\xd4\xd2\x7f\x75\xfd\xa3\x96\xfe\x6b\xe8\x3f\xcd\xc0" "\x7b\xdf\x96\xfe\x6b\xea\x1f\xb5\xf4\x5f\x4b\xff\xa8\xa5\xff\xda\xfa\x47" "\x2d\xfd\xd7\xd1\x3f\x6a\xe9\xbf\xae\xfe\x51\x4b\xff\xe1\xfa\x47\x2d\xfd" "\x47\xe8\x1f\xb5\xf4\x1f\xa9\x7f\xd4\xd2\x7f\x94\xfe\x51\x4b\xff\xd1\xfa" "\x47\x2d\xfd\xc7\xe8\x1f\xb5\xf4\x1f\xab\x7f\xd4\xd2\x7f\x9c\xfe\x51\x4b" "\xff\xf1\xfa\x47\x2d\xfd\x27\xe8\x1f\xb5\xf4\x9f\xa8\x7f\xd4\xd2\x7f\x92" "\xfe\x51\x4b\xff\xc9\xfa\x47\x83\xae\x3f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x6f\xb3" "\x6f\xff\x31\x5e\xd7\x05\x1c\xc7\x3f\x07\x1c\x20\xd9\x86\x8b\x19\xc3\xda" "\x20\xdf\x96\x6e\x29\xdd\xf1\x63\xf8\x87\x13\x12\x81\x0b\x3d\xf0\x37\xa2" "\x86\xc0\x1d\x08\xde\x01\x1d\x87\x1d\xa7\xc6\x8f\x3f\xc8\xa5\xf3\x47\x6e" "\xe4\xd8\xca\x95\x30\x2c\x27\x6d\xde\x72\x4d\x67\x97\x66\xd6\x2c\x56\x6d" "\x35\xfb\xa1\x66\xe9\xca\x5a\x64\x3a\x0b\xb6\x58\xd7\xbe\x77\xdf\x3b\xef" "\xbe\x1d\xb7\xbe\xef\xf3\xfd\x66\xe5\xe3\xf1\xc7\x7d\xbf\x9f\xcf\x97\xd7" "\x07\xb8\xed\xc9\xe7\xc3\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xdf\xd5\xd0\xb8\xe0\xc8" "\xd8\x9a\x21\xa7\xc6\x0e\x3e\xf8\xf0\xe1\xe6\xde\xd7\xd9\x47\x57\xdc\x74" "\xe0\xf7\xdd\x17\xf4\xbf\x96\x3f\x5e\x3a\xcc\x25\xc7\x0c\x3e\xe8\xe9\xe9" "\xe9\x99\xfd\xec\xac\x1d\xe5\xc3\x09\x45\x51\x94\x7e\xb6\x9d\xe5\xe3\x89" "\x95\xe3\xd2\xf5\x77\xd6\x7f\xa9\xa3\xef\x28\xcc\xef\x7e\x71\xf1\xf1\xc9" "\xbf\x6c\x3c\x72\x60\xcd\x69\x0f\xd7\x75\x1d\xbd\xaf\xb6\xf7\x6c\x6d\x71" "\xe3\xba\x0d\x2d\xcd\x9f\x18\x53\x14\xe1\xa2\xda\xa2\xa3\x74\x50\x57\x53" "\x14\x61\x51\x6d\x71\x6f\xe9\xa0\xbe\x74\xb0\xb8\xb6\x78\xb8\x74\x30\xab" "\xf7\xe0\x94\xe2\xbb\xa5\x83\xf3\xd6\x6e\x6e\x69\x2a\x9d\x58\x12\xfd\x3d" "\x83\xff\x17\x0d\x8d\x3b\x8b\xb1\x43\x8a\x2d\x86\xfc\x69\x30\xb8\xff\x9d" "\xf5\xdf\xb9\xa3\xff\x75\x84\x4b\xf6\x5f\x6d\x5c\x51\xee\xff\xf2\xce\x1f" "\xbe\x59\xf1\x59\xbf\x13\xf4\xdf\x7f\xfd\xb0\xa0\xb2\xff\xaa\x7f\x83\xc0" "\x09\x55\xd7\xff\xf3\xf3\xfb\x5f\x47\xb8\xe4\x7f\xdc\xff\x27\x3d\xb9\xf2" "\xe5\xe1\x3e\x3b\x71\xff\xfd\xd7\x0f\x9f\xd4\x3f\xa4\x33\xcc\xf3\xff\x90" "\x46\x2b\x9f\xfb\x2b\x9e\xff\xa7\x0f\x73\xc9\x81\xfd\x95\x35\x9d\xc7\x4b" "\xfd\x5f\x72\xeb\x33\x33\xca\xa7\xc6\xfd\x37\xcf\xff\xef\x5c\x3f\x5c\x54" "\xd9\xff\x98\x21\xcf\xff\xa5\xe7\xf8\x85\xfd\xcf\xff\x13\x8a\x22\x5c\x3c" "\xca\x6f\x07\xbc\xa7\x34\x34\xee\x3a\x32\xd2\xfd\x7f\xe4\xfe\xc7\x4d\xab" "\xd8\xd4\x0c\xee\xff\xf4\xb6\xcd\xfb\x4b\xfd\x3f\xb6\xf8\x07\x8f\x97\x4f" "\xd5\x56\xd9\xff\xc2\x11\xee\xff\x63\x96\x54\xfc\x5a\x81\xea\x34\x34\x7e" "\xb5\xa7\xe2\xfe\x5f\x45\xff\xc5\xc7\x86\xb9\xe4\x40\xff\x6f\x3d\xfe\xdb" "\x87\x4a\xfd\x3f\xfa\xc7\xfb\xcf\x18\xf4\x59\x35\xfd\x5f\x5c\xd9\xff\xcc" "\xf6\xd6\x2d\x33\xb7\x6e\xef\x3c\x77\x43\xeb\xea\xf5\xcd\xeb\x9b\x37\xd5" "\xcd\x9a\x37\x7b\x6e\x7d\xdd\xdc\xf3\xe7\xcc\xec\x7d\x24\xe8\xfb\x3a\xca" "\xef\x0a\xbc\x37\x8c\xee\xfe\x5f\x4c\xaa\xd8\xd4\x14\x45\xf3\xc0\xfe\xea" "\xae\x03\x4f\x95\xfa\x9f\xf3\xc0\x03\xb3\xcb\xa7\x26\x56\xd9\xff\xa2\x11" "\xef\xff\xd3\xdd\xff\x61\x58\x1f\x19\x53\x8c\x1f\x5f\x74\xac\x6e\x6f\x6f" "\xab\xeb\xfb\xda\x7f\x58\xdf\xf7\xb5\xef\x87\x0d\xd3\x7f\x15\x7f\xff\x3f" "\xf3\xec\xf2\x0f\xab\x2d\xbf\xd6\x14\xc5\xd4\x81\xfd\x9d\x67\xdc\xb5\xbc" "\xd4\xff\xdb\x87\x9e\xd9\x5d\x3e\x35\xbe\xca\xfe\x17\x8f\xd8\xff\xfc\x81" "\x9f\x17\x88\x30\xca\xfb\x7f\x53\xc5\x66\x48\xff\x07\x0f\xbd\xd8\xfb\xfc" "\xbf\xf4\x9e\x83\xa7\x97\x4f\x55\xfb\xf7\xff\x25\x23\xf6\xff\x8a\xfb\x3f" "\x8c\x46\x43\x63\xc5\xff\xf0\xf3\x2e\x2b\xf5\xbf\xab\xb8\x34\xb2\xd3\xd0" "\xe0\xbf\xff\x41\x3a\x39\xfa\x7f\xf4\xed\xeb\xbb\xe3\xd6\xe1\x53\xfa\x87" "\x74\x72\xf4\xff\x87\x2f\x1c\x3d\x27\x6e\x1d\x96\xea\x1f\xd2\xc9\xd1\xff" "\xb8\x8d\xf7\x3f\x17\xb7\x0e\x97\xe8\x1f\xd2\xc9\xd1\xff\xb2\x29\xf3\x96" "\xc7\xad\xc3\xa5\xfa\x87\x74\x72\xf4\xbf\xf6\x95\x73\xfe\x1a\xb7\x0e\x8d" "\xfa\x87\x74\x72\xf4\x7f\xf6\x57\x76\x77\xc4\xad\xc3\x32\xfd\x43\x3a\x39" "\xfa\x7f\xb0\x6d\xf6\xb6\xb8\x75\x58\xae\x7f\x48\x27\x47\xff\x3f\x3f\xf5" "\xc1\x57\xe3\xd6\xe1\x32\xfd\x43\x3a\x39\xfa\x3f\x76\xec\xee\x1b\xe2\xd6" "\xe1\x72\xfd\x43\x3a\x39\xfa\xef\xda\x73\xd6\x8f\xe2\xd6\xe1\x0a\xfd\x43" "\x3a\x39\xfa\xbf\x6c\xdd\x82\x10\xb7\x0e\x57\xea\x1f\xd2\xc9\xd1\xff\xb4" "\xa9\x7f\x7e\x2c\x6e\x1d\xae\xd2\x3f\xa4\x93\xa3\xff\xb9\x7f\xf9\xe7\xa9" "\x71\xeb\x70\xb5\xfe\x21\x9d\x1c\xfd\xdf\xfe\xc5\xe5\xfb\xe2\xd6\xe1\x1a" "\xfd\x43\x3a\x39\xfa\x1f\x7b\xdd\xcb\x2f\xc4\xad\xc3\x0a\xfd\x43\x3a\x39" "\xfa\x5f\x72\xd6\xb6\x05\x71\xeb\x70\xad\xfe\x21\x9d\x1c\xfd\x37\xfd\xac" "\xa9\x27\x6e\x1d\x56\x96\xfb\x9f\x50\xe8\x1f\xde\x75\x39\xfa\x9f\xf9\xcd" "\x9f\x6c\x88\x5b\x87\xeb\xdc\xff\x21\x9d\x1c\xfd\x1f\x5e\xf6\xc8\x9e\xb8" "\x75\xb8\x5e\xff\x90\x4e\x8e\xfe\xf7\xd4\x15\x93\xe3\xd6\xe1\x06\xfd\x43" "\x3a\x39\xfa\xff\xc6\xf7\x4f\x3b\x14\xb7\x0e\x9f\xd6\x3f\xa4\x93\xa3\xff" "\xdf\x3d\xf9\xc4\xbc\xb8\x75\x58\xa5\x7f\x48\x27\x47\xff\xcf\x7e\xe8\xb6" "\x6f\xc5\xad\xc3\x8d\xfa\x87\x74\x72\xf4\x7f\xcf\x9a\x17\xce\x8c\x5b\x87" "\xd5\xfa\x87\x74\x72\xf4\xff\xd0\xde\xe7\xbe\x1c\xb7\x0e\x6b\xf4\x0f\xe9" "\xe4\xe8\xff\xf5\xd7\x5b\xdf\x17\xb7\x0e\x6b\xf5\x0f\xe9\xe4\xe8\x7f\xd2" "\xc4\x53\x5e\x8b\x5b\x87\x26\xfd\x43\x3a\x39\xfa\x5f\x70\xcb\xd7\xda\xe2" "\xd6\xa1\x59\xff\x90\x4e\x8e\xfe\x5b\x77\x77\xfd\x38\x6e\x1d\xd6\xe9\x1f" "\xd2\xc9\xd1\xff\x47\x8f\x4f\x5d\x19\xb7\x0e\xeb\xf5\x0f\xe9\xe4\xe8\x7f" "\xc5\x9c\xbd\x1f\x8c\x5b\x87\x9b\xf4\x0f\xe9\xe4\xe8\xff\x03\x4b\x2f\xd8" "\x15\xb7\x0e\x1b\xf4\x0f\xe9\xe4\xe8\xff\xc2\xee\x8f\x5f\x18\xb7\x0e\x1b" "\xf5\x0f\xe9\xe4\xe8\xbf\xfd\xe9\xcf\x7f\x3d\x6e\x1d\x6e\xd6\x3f\xa4\x93" "\xa3\xff\xbd\x33\x5e\x5d\x14\xb7\x0e\x2d\xfa\x87\x74\x72\xf4\xff\xd2\xaa" "\x25\x3f\x8d\x5b\x87\x56\xfd\x43\x3a\x39\xfa\x7f\xf3\x91\x6b\x37\xc5\xad" "\xc3\x26\xfd\x43\x3a\x39\xfa\x7f\xe2\x17\x6f\x1d\x8b\x5b\x87\xcd\xfa\x87" "\x74\x72\xf4\xff\xfe\xf3\x17\xfe\x3d\x6e\x1d\xb6\xe8\x1f\xd2\xc9\xd1\xff" "\xa2\xc5\x6f\xac\x8d\x5b\x87\xcf\xe8\x1f\xd2\xc9\xd1\xff\xc6\xae\x7f\xbd" "\x14\xb7\x0e\x6d\xfa\x87\x74\x72\xf4\x3f\xe3\xf0\x55\x4b\xe3\xd6\x61\xab" "\xfe\x21\x9d\x1c\xfd\x7f\xef\xdc\xba\xfd\x71\xeb\xd0\xae\x7f\x48\x27\x47" "\xff\x77\x5c\xb1\xaf\x3e\x6e\x1d\xb6\xe9\x1f\xd2\xc9\xd1\xff\xfe\x83\x77" "\xde\x15\xb7\x0e\xb7\xe8\x1f\xd2\xc9\xd1\xff\x1b\xbf\x9a\x3e\x2d\x6e\x1d" "\x3e\xab\x7f\x48\x27\x47\xff\xf7\x4d\x3e\x74\x4d\xdc\x3a\x74\xe8\x1f\xd2" "\xc9\xd1\xff\xaf\x37\xd5\x3e\x1d\xb7\x0e\xdb\xf5\x0f\xe9\xe4\xe8\xff\x1f" "\xfb\xa6\xec\x88\x5b\x87\x4e\xfd\x43\x3a\x39\xfa\x7f\xea\xb5\xee\x3f\xc5" "\xad\xc3\xad\xfa\x87\x74\x72\xf4\xbf\x6a\xdc\x6f\xc6\xc7\xad\xc3\x6d\xfa" "\x87\x74\x72\xf4\x3f\xa5\x73\xcb\xbd\x71\xeb\x70\xbb\xfe\x21\x9d\x1c\xfd" "\xcf\xbb\x7b\xf5\x79\x71\xeb\xf0\x39\xfd\x43\x3a\x39\xfa\xdf\xfa\xb7\xe7" "\xbf\x1d\xb7\x0e\x3b\xf4\x0f\xe9\x6c\xdd\xde\x79\xf3\xea\x96\x96\xe6\x36" "\x6f\xbc\xf1\xc6\x9b\x81\x37\x27\xfb\x4f\x26\x20\xb5\x77\xa2\x3f\xd9\xbf" "\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x44\x72\xfc\x73\xa2" "\x93\xfd\x7b\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\x37\x3b\x70\x20\x00" "\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\xd8\x81\x63\x01\x00\x00\x00\x00\x61\xfe\xd6\x41\xf4\x6e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x7c\x05\x00\x00\xff\xff\xc7\x98\xeb\x96", 38710); syz_mount_image(/*fs=*/0x2000000001c0, /*dir=*/0x200000009640, /*flags=MS_NODEV*/ 4, /*opts=*/0x200000000100, /*chdir=*/4, /*size=*/0x9736, /*img=*/0x200000012d80); // openat$tun arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: nil // flags: open_flags = 0x40241 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_tun res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0ul, /*flags=O_TRUNC|O_NOATIME|O_CREAT|O_WRONLY*/ 0x40241, /*mode=*/0); if (res != -1) r[0] = res; // ioctl$TUNSETIFF arguments: [ // fd: fd_tun (resource) // cmd: const = 0x400454ca (4 bytes) // arg: ptr[in, ifreq_dev_t[devnames, flags[tun_setiff_flags, int16]]] { // ifreq_dev_t[devnames, flags[tun_setiff_flags, int16]] { // ifr_ifrn: buffer: {73 79 7a 6b 61 6c 6c 65 72 31 00 00 00 00 00 00} // (length 0x10) elem: tun_setiff_flags = 0xc201 (2 bytes) pad = 0x0 // (22 bytes) // } // } // ] memcpy((void*)0x200000000200, "syzkaller1\000\000\000\000\000\000", 16); *(uint16_t*)0x200000000210 = 0xc201; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x400454ca, /*arg=*/0x200000000200ul); // socket$kcm arguments: [ // domain: const = 0x2 (8 bytes) // type: kcm_socket_type = 0xa (8 bytes) // proto: const = 0x2 (4 bytes) // ] // returns sock_kcm res = syscall(__NR_socket, /*domain=*/2ul, /*type=SOCK_DGRAM|0x8*/ 0xaul, /*proto=*/2); if (res != -1) r[1] = res; // write$tun arguments: [ // fd: fd_tun (resource) // buf: ptr[in, tun_buffer] { // tun_buffer { // pi: union optional[tun_pi] { // val: tun_pi { // flags: const = 0x6f01 (2 bytes) // proto: ether_types = 0x88a8 (2 bytes) // } // } // hdr: union optional[virtio_net_hdr] { // val: virtio_net_hdr { // flags: virtio_net_flags = 0x1 (1 bytes) // gsotype: virtio_net_types = 0x0 (1 bytes) // hdrlen: int16 = 0x0 (2 bytes) // gsosize: int16 = 0x0 (2 bytes) // start: int16 = 0x14 (2 bytes) // offset: int16 = 0x0 (2 bytes) // } // } // data: union tun_payload { // llc: llc_packet { // payload: union llc_payload { // snap: llc_snap_packet { // dsap: sap_snap_values = 0xaa (1 bytes) // ssap: sap_snap_values = 0xaa (1 bytes) // control: buffer: {35} (length 0x1) // oui: buffer: {2f f0 44} (length 0x3) // protocol_id: ether_types = 0x8035 (2 bytes) // payload: buffer: {fa 44 95 21 5d 8d 1c 20 45 5d c4 95 1c 5e} // (length 0xe) // } // } // } // } // } // } // count: len = 0x24 (8 bytes) // ] *(uint16_t*)0x2000000003c0 = 0x6f01; *(uint16_t*)0x2000000003c2 = htobe16(0x88a8); *(uint8_t*)0x2000000003c4 = 1; *(uint8_t*)0x2000000003c5 = 0; *(uint16_t*)0x2000000003c6 = 0; *(uint16_t*)0x2000000003c8 = 0; *(uint16_t*)0x2000000003ca = 0x14; *(uint16_t*)0x2000000003cc = 0; *(uint8_t*)0x2000000003ce = 0xaa; *(uint8_t*)0x2000000003cf = 0xaa; memset((void*)0x2000000003d0, 53, 1); memcpy((void*)0x2000000003d1, "\x2f\xf0\x44", 3); *(uint16_t*)0x2000000003d4 = htobe16(0x8035); memcpy((void*)0x2000000003d6, "\xfa\x44\x95\x21\x5d\x8d\x1c\x20\x45\x5d\xc4\x95\x1c\x5e", 14); syscall(__NR_write, /*fd=*/r[0], /*buf=*/0x2000000003c0ul, /*count=*/0x24ul); // mount$bind arguments: [ // src: nil // dst: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // type: nil // flags: mount_flags = 0x21 (8 bytes) // data: const = 0x0 (8 bytes) // ] memcpy((void*)0x200000000100, ".\000", 2); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000100ul, /*type=*/0ul, /*flags=MS_REMOUNT|MS_RDONLY*/ 0x21ul, /*data=*/0ul); // quotactl$Q_SETQUOTA arguments: [ // cmd: quota_cmd_setquota = 0xffffffff80000801 (8 bytes) // special: nil // id: uid (resource) // addr: nil // ] syscall(__NR_quotactl, /*cmd=Q_SETQUOTA_GRP*/ 0xffffffff80000801ul, /*special=*/0ul, /*id=*/0xee01, /*addr=*/0ul); // bpf$BPF_PROG_RAW_TRACEPOINT_LOAD arguments: [ // cmd: const = 0x5 (8 bytes) // arg: ptr[in, bpf_prog_t[flags[bpf_raw_tracepoint_prog_types, int32], // const[0, int32], const[0, int32], const[0, int32]]] { // bpf_prog_t[flags[bpf_raw_tracepoint_prog_types, int32], const[0, // int32], const[0, int32], const[0, int32]] { // type: bpf_raw_tracepoint_prog_types = 0x18 (4 bytes) // ninsn: bytesize8 = 0x3 (4 bytes) // insns: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {18 00 00 00 00 00 00 00 00 00 00 00 00 00 00 // 00 95} (length 0x11) // } // } // } // license: ptr[in, buffer] { // buffer: {73 79 7a 6b 61 6c 6c 65 72 00} (length 0xa) // } // loglev: int32 = 0x7 (4 bytes) // logsize: len = 0x0 (4 bytes) // log: nil // kern_version: bpf_kern_version = 0x0 (4 bytes) // flags: bpf_prog_load_flags = 0x0 (4 bytes) // prog_name: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00} // (length 0x10) prog_ifindex: ifindex (resource) expected_attach_type: // const = 0x0 (4 bytes) btf_fd: fd_btf (resource) func_info_rec_size: // const = 0x8 (4 bytes) func_info: nil func_info_cnt: len = 0x0 (4 // bytes) line_info_rec_size: const = 0x10 (4 bytes) line_info: nil // line_info_cnt: len = 0x0 (4 bytes) // attach_btf_id: const = 0x0 (4 bytes) // attach_prog_fd: const = 0x0 (4 bytes) // core_relo_cnt: len = 0x0 (4 bytes) // fd_array: nil // core_relos: nil // core_relo_rec_size: const = 0x10 (4 bytes) // log_true_size: int32 = 0x0 (4 bytes) // prog_token_fd: union // _bpf_prog_t[flags[bpf_raw_tracepoint_prog_types, int32], const[0, // int32], const[0, int32], const[0, int32]]_prog_token_fd_wrapper { // void: buffer: {} (length 0x0) // } // pad: union _bpf_prog_t[flags[bpf_raw_tracepoint_prog_types, int32], // const[0, int32], const[0, int32], const[0, int32]]_pad_wrapper { // value: const = 0x0 (4 bytes) // } // } // } // size: len = 0xad (8 bytes) // ] // returns fd_bpf_prog_raw_tracepoint *(uint32_t*)0x200000000340 = 0x18; *(uint32_t*)0x200000000344 = 3; *(uint64_t*)0x200000000348 = 0x200000000d00; memcpy((void*)0x200000000d00, "\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x95", 17); *(uint64_t*)0x200000000350 = 0x200000000000; memcpy((void*)0x200000000000, "syzkaller\000", 10); *(uint32_t*)0x200000000358 = 7; *(uint32_t*)0x20000000035c = 0; *(uint64_t*)0x200000000360 = 0; *(uint32_t*)0x200000000368 = 0; *(uint32_t*)0x20000000036c = 0; memset((void*)0x200000000370, 0, 16); *(uint32_t*)0x200000000380 = 0; *(uint32_t*)0x200000000384 = 0; *(uint32_t*)0x200000000388 = -1; *(uint32_t*)0x20000000038c = 8; *(uint64_t*)0x200000000390 = 0; *(uint32_t*)0x200000000398 = 0; *(uint32_t*)0x20000000039c = 0x10; *(uint64_t*)0x2000000003a0 = 0; *(uint32_t*)0x2000000003a8 = 0; *(uint32_t*)0x2000000003ac = 0; *(uint32_t*)0x2000000003b0 = 0; *(uint32_t*)0x2000000003b4 = 0; *(uint64_t*)0x2000000003b8 = 0; *(uint64_t*)0x2000000003c0 = 0; *(uint32_t*)0x2000000003c8 = 0x10; *(uint32_t*)0x2000000003cc = 0; *(uint32_t*)0x2000000003d0 = 0; res = syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0x200000000340ul, /*size=*/0xadul); if (res != -1) r[2] = res; // bpf$BPF_RAW_TRACEPOINT_OPEN arguments: [ // cmd: const = 0x11 (8 bytes) // arg: ptr[in, bpf_raw_tracepoint] { // bpf_raw_tracepoint { // name: ptr[in, buffer] { // buffer: {6e 65 74 66 73 5f 72 72 65 71 5f 72 65 66 00} (length // 0xf) // } // prog_fd: fd_bpf_prog_raw_tracepoint (resource) // pad: const = 0x0 (4 bytes) // cookie: int64 = 0x9 (8 bytes) // } // } // size: len = 0x18 (8 bytes) // ] // returns fd_perf_base *(uint64_t*)0x200000000300 = 0x200000000400; memcpy((void*)0x200000000400, "netfs_rreq_ref\000", 15); *(uint32_t*)0x200000000308 = r[2]; *(uint32_t*)0x20000000030c = 0; *(uint64_t*)0x200000000310 = 9; res = syscall(__NR_bpf, /*cmd=*/0x11ul, /*arg=*/0x200000000300ul, /*size=*/0x18ul); if (res != -1) r[3] = res; // bpf$ITER_CREATE arguments: [ // cmd: const = 0xb (8 bytes) // arg: ptr[in, bpf_iter_create_arg] { // bpf_iter_create_arg { // link_fd: fd_bpf_link (resource) // flags: const = 0x0 (4 bytes) // } // } // size: len = 0x8 (8 bytes) // ] // returns fd *(uint32_t*)0x200000000100 = r[3]; *(uint32_t*)0x200000000104 = 0; res = syscall(__NR_bpf, /*cmd=*/0xbul, /*arg=*/0x200000000100ul, /*size=*/8ul); if (res != -1) r[4] = res; // close arguments: [ // fd: fd (resource) // ] syscall(__NR_close, /*fd=*/r[4]); // ioctl$DRM_IOCTL_GEM_FLINK arguments: [ // fd: fd_dri (resource) // cmd: const = 0xc008640a (4 bytes) // arg: nil // ] syscall(__NR_ioctl, /*fd=*/r[4], /*cmd=*/0xc008640a, /*arg=*/0ul); // openat$binderfs arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: nil // flags: binder_open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_binder res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[5] = res; // ioctl$BINDER_SET_MAX_THREADS arguments: [ // fd: fd_binder (resource) // cmd: const = 0x40046205 (4 bytes) // arg: ptr[in, int32] { // int32 = 0x7 (4 bytes) // } // ] *(uint32_t*)0x200000000080 = 7; syscall(__NR_ioctl, /*fd=*/r[5], /*cmd=*/0x40046205, /*arg=*/0x200000000080ul); // bpf$PROG_LOAD arguments: [ // cmd: const = 0x5 (8 bytes) // arg: ptr[in, bpf_prog_t[flags[bpf_prog_type, int32], // bpf_prog_attach_types, bpf_btf_id[opt], fd_bpf_prog[opt]]] { // bpf_prog_t[flags[bpf_prog_type, int32], bpf_prog_attach_types, // bpf_btf_id[opt], fd_bpf_prog[opt]] { // type: bpf_prog_type = 0xe (4 bytes) // ninsn: bytesize8 = 0xe (4 bytes) // insns: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {} (length 0x0) // } // } // } // license: nil // loglev: int32 = 0x0 (4 bytes) // logsize: len = 0x0 (4 bytes) // log: nil // kern_version: bpf_kern_version = 0x0 (4 bytes) // flags: bpf_prog_load_flags = 0x40 (4 bytes) // prog_name: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00} // (length 0x10) prog_ifindex: ifindex (resource) expected_attach_type: // union bpf_prog_attach_types { // sk_skb: sk_skb_attach_types = 0x0 (4 bytes) // } // btf_fd: fd_btf (resource) // func_info_rec_size: const = 0x8 (4 bytes) // func_info: ptr[in, bpf_func_info] { // bpf_func_info { // insn_off: int32 = 0x0 (4 bytes) // type_id: int32 = 0x0 (4 bytes) // } // } // func_info_cnt: len = 0x8 (4 bytes) // line_info_rec_size: const = 0x10 (4 bytes) // line_info: ptr[in, bpf_line_info] { // bpf_line_info { // insn_off: int32 = 0x0 (4 bytes) // file_name_off: int32 = 0x0 (4 bytes) // line_off: int32 = 0x0 (4 bytes) // line_col: int32 = 0x0 (4 bytes) // } // } // line_info_cnt: len = 0x10 (4 bytes) // attach_btf_id: bpf_btf_id (resource) // attach_prog_fd: fd_bpf_prog (resource) // core_relo_cnt: len = 0x0 (4 bytes) // fd_array: nil // core_relos: nil // core_relo_rec_size: const = 0x10 (4 bytes) // log_true_size: int32 = 0x0 (4 bytes) // prog_token_fd: union _bpf_prog_t[flags[bpf_prog_type, int32], // bpf_prog_attach_types, bpf_btf_id[opt], // fd_bpf_prog[opt]]_prog_token_fd_wrapper { // void: buffer: {} (length 0x0) // } // pad: union _bpf_prog_t[flags[bpf_prog_type, int32], // bpf_prog_attach_types, bpf_btf_id[opt], // fd_bpf_prog[opt]]_pad_wrapper { // value: const = 0x0 (4 bytes) // } // } // } // size: len = 0x94 (8 bytes) // ] // returns fd_bpf_prog *(uint32_t*)0x200000000440 = 0xe; *(uint32_t*)0x200000000444 = 0xe; *(uint64_t*)0x200000000448 = 0x200000001300; *(uint64_t*)0x200000000450 = 0; *(uint32_t*)0x200000000458 = 0; *(uint32_t*)0x20000000045c = 0; *(uint64_t*)0x200000000460 = 0; *(uint32_t*)0x200000000468 = 0; *(uint32_t*)0x20000000046c = 0x40; memset((void*)0x200000000470, 0, 16); *(uint32_t*)0x200000000480 = 0; *(uint32_t*)0x200000000484 = 0; *(uint32_t*)0x200000000488 = -1; *(uint32_t*)0x20000000048c = 8; *(uint64_t*)0x200000000490 = 0x200000000000; *(uint32_t*)0x200000000000 = 0; *(uint32_t*)0x200000000004 = 0; *(uint32_t*)0x200000000498 = 8; *(uint32_t*)0x20000000049c = 0x10; *(uint64_t*)0x2000000004a0 = 0x200000000000; *(uint32_t*)0x200000000000 = 0; *(uint32_t*)0x200000000004 = 0; *(uint32_t*)0x200000000008 = 0; *(uint32_t*)0x20000000000c = 0; *(uint32_t*)0x2000000004a8 = 0x10; *(uint32_t*)0x2000000004ac = 0; *(uint32_t*)0x2000000004b0 = -1; *(uint32_t*)0x2000000004b4 = 0; *(uint64_t*)0x2000000004b8 = 0; *(uint64_t*)0x2000000004c0 = 0; *(uint32_t*)0x2000000004c8 = 0x10; *(uint32_t*)0x2000000004cc = 0; *(uint32_t*)0x2000000004d0 = 0; syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0x200000000440ul, /*size=*/0x94ul); // socket$kcm arguments: [ // domain: const = 0x2 (8 bytes) // type: kcm_socket_type = 0xa (8 bytes) // proto: const = 0x2 (4 bytes) // ] // returns sock_kcm syscall(__NR_socket, /*domain=*/2ul, /*type=SOCK_DGRAM|0x8*/ 0xaul, /*proto=*/2); // ioctl$SIOCSIFHWADDR arguments: [ // fd: fd_tun (resource) // cmd: const = 0x8914 (4 bytes) // arg: ptr[in, ifreq_dev_t[devnames, mac_addr]] { // ifreq_dev_t[devnames, mac_addr] { // ifr_ifrn: buffer: {73 79 7a 6b 61 6c 6c 65 72 31 00 00 00 00 00 00} // (length 0x10) elem: union mac_addr { // link_local: mac_addr_link_local { // a0: const = 0x1 (1 bytes) // a1: const = 0x80 (1 bytes) // a2: const = 0xc2 (1 bytes) // a3: const = 0x0 (1 bytes) // a4: const = 0x0 (1 bytes) // a5: mac_addr_link_local_values = 0x0 (1 bytes) // } // } // pad = 0x0 (18 bytes) // } // } // ] memcpy((void*)0x200000000180, "syzkaller1\000\000\000\000\000\000", 16); *(uint8_t*)0x200000000190 = 1; *(uint8_t*)0x200000000191 = 0x80; *(uint8_t*)0x200000000192 = 0xc2; *(uint8_t*)0x200000000193 = 0; *(uint8_t*)0x200000000194 = 0; *(uint8_t*)0x200000000195 = 0; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0x8914, /*arg=*/0x200000000180ul); // write$tun arguments: [ // fd: fd_tun (resource) // buf: ptr[in, tun_buffer] { // tun_buffer { // pi: union optional[tun_pi] { // val: tun_pi { // flags: const = 0x6f01 (2 bytes) // proto: ether_types = 0x88a8 (2 bytes) // } // } // hdr: union optional[virtio_net_hdr] { // val: virtio_net_hdr { // flags: virtio_net_flags = 0x1 (1 bytes) // gsotype: virtio_net_types = 0x0 (1 bytes) // hdrlen: int16 = 0x0 (2 bytes) // gsosize: int16 = 0x0 (2 bytes) // start: int16 = 0x14 (2 bytes) // offset: int16 = 0x0 (2 bytes) // } // } // data: union tun_payload { // llc: llc_packet { // payload: union llc_payload { // snap: llc_snap_packet { // dsap: sap_snap_values = 0xaa (1 bytes) // ssap: sap_snap_values = 0xaa (1 bytes) // control: buffer: {35} (length 0x1) // oui: buffer: {2f f0 44} (length 0x3) // protocol_id: ether_types = 0x8035 (2 bytes) // payload: buffer: {} (length 0x0) // } // } // } // } // } // } // count: len = 0x16 (8 bytes) // ] *(uint16_t*)0x2000000003c0 = 0x6f01; *(uint16_t*)0x2000000003c2 = htobe16(0x88a8); *(uint8_t*)0x2000000003c4 = 1; *(uint8_t*)0x2000000003c5 = 0; *(uint16_t*)0x2000000003c6 = 0; *(uint16_t*)0x2000000003c8 = 0; *(uint16_t*)0x2000000003ca = 0x14; *(uint16_t*)0x2000000003cc = 0; *(uint8_t*)0x2000000003ce = 0xaa; *(uint8_t*)0x2000000003cf = 0xaa; memset((void*)0x2000000003d0, 53, 1); memcpy((void*)0x2000000003d1, "\x2f\xf0\x44", 3); *(uint16_t*)0x2000000003d4 = htobe16(0x8035); syscall(__NR_write, /*fd=*/r[0], /*buf=*/0x2000000003c0ul, /*count=*/0x16ul); // mount$bind arguments: [ // src: nil // dst: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // type: nil // flags: mount_flags = 0x21 (8 bytes) // data: const = 0x0 (8 bytes) // ] memcpy((void*)0x200000000100, ".\000", 2); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000100ul, /*type=*/0ul, /*flags=MS_REMOUNT|MS_RDONLY*/ 0x21ul, /*data=*/0ul); // mount$overlay arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {6f 76 65 72 6c 61 79 00} (length 0x8) // } // flags: mount_flags = 0x10000 (8 bytes) // opts: ptr[in, fs_options[overlay_options]] { // fs_options[overlay_options] { // elems: array[fs_opt_elem[overlay_options]] { // fs_opt_elem[overlay_options] { // elem: union overlay_options { // index_off: buffer: {69 6e 64 65 78 3d 6f 66 66} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // nfs_export_on: buffer: {6e 66 73 5f 65 78 70 6f 72 74 3d 6f // 6e} (length 0xd) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // lowerdir: fs_opt["lowerdir", stringnoz[filename]] { // name: buffer: {6c 6f 77 65 72 64 69 72} (length 0x8) // eq: const = 0x3d (1 bytes) // val: buffer: {2e 2f 66 69 6c 65 31} (length 0x7) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // xino_off: buffer: {78 69 6e 6f 3d 6f 66 66} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // uuid_on: buffer: {75 75 69 64 3d 6f 6e} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // uuid_off: buffer: {75 75 69 64 3d 6f 66 66} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // redirect_dir_follow: buffer: {72 65 64 69 72 65 63 74 5f 64 69 // 72 3d 66 6f 6c 6c 6f 77} (length 0x13) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // uuid_auto: buffer: {75 75 69 64 3d 61 75 74 6f} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // metacopy_off: buffer: {6d 65 74 61 63 6f 70 79 3d 6f 66 66} // (length 0xc) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // ] memcpy((void*)0x200000000140, "./file1\000", 8); memcpy((void*)0x200000000180, "overlay\000", 8); memcpy((void*)0x200000000500, "index=off", 9); *(uint8_t*)0x200000000509 = 0x2c; memcpy((void*)0x20000000050a, "nfs_export=on", 13); *(uint8_t*)0x200000000517 = 0x2c; memcpy((void*)0x200000000518, "lowerdir", 8); *(uint8_t*)0x200000000520 = 0x3d; memcpy((void*)0x200000000521, "./file1", 7); *(uint8_t*)0x200000000528 = 0x2c; memcpy((void*)0x200000000529, "xino=off", 8); *(uint8_t*)0x200000000531 = 0x2c; memcpy((void*)0x200000000532, "uuid=on", 7); *(uint8_t*)0x200000000539 = 0x2c; memcpy((void*)0x20000000053a, "uuid=off", 8); *(uint8_t*)0x200000000542 = 0x2c; memcpy((void*)0x200000000543, "redirect_dir=follow", 19); *(uint8_t*)0x200000000556 = 0x2c; memcpy((void*)0x200000000557, "uuid=auto", 9); *(uint8_t*)0x200000000560 = 0x2c; memcpy((void*)0x200000000561, "metacopy=off", 12); *(uint8_t*)0x20000000056d = 0x2c; *(uint8_t*)0x20000000056e = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000140ul, /*type=*/0x200000000180ul, /*flags=MS_POSIXACL*/ 0x10000ul, /*opts=*/0x200000000500ul); // bpf$BPF_RAW_TRACEPOINT_OPEN arguments: [ // cmd: const = 0x11 (8 bytes) // arg: ptr[in, bpf_raw_tracepoint] { // bpf_raw_tracepoint { // name: ptr[in, buffer] { // buffer: {6e 65 74 66 73 5f 72 72 65 71 5f 72 65 66 00} (length // 0xf) // } // prog_fd: fd_bpf_prog_raw_tracepoint (resource) // pad: const = 0x0 (4 bytes) // cookie: int64 = 0x9 (8 bytes) // } // } // size: len = 0x18 (8 bytes) // ] // returns fd_perf_base *(uint64_t*)0x200000000300 = 0x200000000400; memcpy((void*)0x200000000400, "netfs_rreq_ref\000", 15); *(uint32_t*)0x200000000308 = r[2]; *(uint32_t*)0x20000000030c = 0; *(uint64_t*)0x200000000310 = 9; syscall(__NR_bpf, /*cmd=*/0x11ul, /*arg=*/0x200000000300ul, /*size=*/0x18ul); // bpf$ITER_CREATE arguments: [ // cmd: const = 0xb (8 bytes) // arg: nil // size: len = 0x0 (8 bytes) // ] // returns fd syscall(__NR_bpf, /*cmd=*/0xbul, /*arg=*/0ul, /*size=*/0ul); // openat$binderfs arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2e 2f 62 69 6e 64 65 72 66 73 32 2f 62 69 6e 64 65 72 30 00} // (length 0x14) // } // flags: binder_open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_binder memcpy((void*)0x200000000040, "./binderfs2/binder0\000", 20); syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); // bpf$PROG_LOAD arguments: [ // cmd: const = 0x5 (8 bytes) // arg: ptr[in, bpf_prog_t[flags[bpf_prog_type, int32], // bpf_prog_attach_types, bpf_btf_id[opt], fd_bpf_prog[opt]]] { // bpf_prog_t[flags[bpf_prog_type, int32], bpf_prog_attach_types, // bpf_btf_id[opt], fd_bpf_prog[opt]] { // type: bpf_prog_type = 0xe (4 bytes) // ninsn: bytesize8 = 0xe (4 bytes) // insns: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {b7 02 00 00 f5 3f 63 14 bf a3 00 00 00 00 00 // 00 24 02 00 00 ff fe ff 7f 7a 03 00 fe f0 ff ff ff 79 a4 f0 ff // 00 00 00 00 b7 06 00 00 ff ff ff ff 2e 64 05 00 00 00 00 00 75 // 02 fa ff 07 cd 02 02 04 04 00 00 00 24 7d 60 b7 03 00 00 03 0a // 00 00 6a 0a 00 fe 00 00 00 0c 85 00 00 00 c4 00 00 00 b7 00 00 // 00 00 00 00 29 95 00 00 00 00 00 00 00 1d a5 ad 35 48 eb b6 3d // 18 db 6a 1c 7e 82 1c 9b 76 7a c8 30 8f bc d5 c5 e4 a5 ad 10 65 // b5 72 c2 c9 ff 21 5a c6 0c 2c ea ea 4c 0e c9 08 ab b6 e7 32 5e // c1 95 6b d8 66 0b f3 66 41 48 a2 c9 67 52 fe 2b b3 28 df f1 a1 // 57 50 ab 9a 78 00 01 00 00 00 00 00 00 d4 bf 20 c2 bd 15 2d 81 // 4f 01 f2 cd 51 9e 07 8d 4f fa b4 18 e4 68 2b 2a ec 5e 4a 35 62 // 9e 8e f0 40 c5 02 87 c3 7a 7f 41 82 f3 23 33 b0 8c 6e 49 76 87 // e1 0a 4d ae a5 ca c0 ce af db b1 26 eb 02 a1 f5 10 4d 16 dd b6 // 49 63 d8 4d 91 81 4c d5 81 7e 0b 8f 6f 5e 6e e7 a3 9e 18 0b 5a // 18 ed 78 6b 78 2a b1 32 1e a5 e8 2a e5 ba 2c 42 a5 e2 3e a6 25 // 3d 5d f7 68 d0 cb 9f 35 e4 f4 1a 62 11 e5 2b b3 59 8e 9b 5d 4f // 22 d8 c1 9f 95 8e 8b 34 de 35 94 9a 7a 48 ce 18 79 9e e5 3d a1 // 77 a8 1e a6 5e 65 2c 1d 71 b7 ee 86 a7 5b 01 00 00 00 42 12 7a // 8f 84 53 8a 9a 31 1c 75 7f 71 69 f0 06 f3 f5 c9 51 77 fb d0 b1 // 4b 36 25 9e 29 05 ef 91 17 85 c8 8a 16 aa e4 60 84 d6 76 d8 ef // 8a a6 ec c2 d3 2e 3f 4e e3 67 c5 a7 69 c0 a6 06 63 6c 9f 4a 44 // 13 c0 98 f4 fc c9 66 23 b7 c3 73 b0 ef 04 d5 5b 84 6b 09 4b f9 // 7e 2e f5 98 7b 6e 09 a6 a7 ca b7 9b ff da 14 1f 65 e7 d9 eb e3 // be 70 c4 36 43 2b 70 a8 0c ce 69 df 30 d3 d6 7d 84 cc f3 f9 db // 9b 69 01 11 de 2d dc 4b 15 3c 98 9e f1 00 bb f7 60 63 d3 f6 ff // ff b7 3d 70 e9 c3 d7 b9 0a ec f4 8e 75 65 ef ff 2d bb b5 12 21 // 8c 98 44 24 06 33 3c 89 09 23 a7 97 e0 0b 75 48 17 39 95 2f e8 // 7f de 27 ce 81 89 3f 54 ec 0e a8 e7 92 41 4f 63 9b c9 ce 1f ea // 3f 6a c0 d7 02 57 59 d4 b4 55 76 c2 05 c7 06 31 e8 ad 58 59 51 // 95 0e 52 1f 4e 21 0b 64 94 e3 c5 2d 92 71 95 73 79 45 cc 03 d5 // 66 84 83 15 17 10 de 24 64 20 a1 b6 c5 5b 73 87 6a 6e d7 fd 0d // 93 38 92 37 89 a1 ed cd 80 43 fe 83 91 90 88 38 32 68 32 4a 25 // df 14 01 0c 8e d6 b8 d4 34 00 ea a0 0f f9 bc 46 e1 cf ec bd c0 // e4 51 ac 53 b4 09 d0 45 44 d3 a7 ed d4 d4 47 d2 fb 43 1e 22 6a // e1 82 b8 dc c8 6f e0 9b 40 4e 0b 7c 72 3d 3b 19 c3 dc 38 2f a9 // 1f b0 fb 8f 9f 3f 13 29 6b b1 75 8b 24 aa d0 92 20 91 d4 9e 2b // c4 08 a5 a3 7d ee e7 a6 0b 90 3d 2d 9f e9 d4 51 ca fc c8 dc 38 // 96 71 c2 d0 8b 6e 26 41 50 a6 b9 44 5b 00 ce e4 58 5a f0 4f a6 // 9e 03 80 be 0d 66 64 9d cf 3b f8 a9 06 b0 29 fa ca 75 ce 34 c4 // 1a ec 7a a8 6e 59 61 19 10 9e a8 b3 f7 c6 5c 90 24 99 22 7c 08 // 73 01 64 3b aa b1 c9 5b b2 2c ed d9 13 b2 2d ca a1 97 cc c3 45 // 86 dc 50 bd 9f 46 28 e3 e7 7a 0d e3 2e 35 65 21 df 06 f9 95 cb // 57 f9 70 52 fc 41 58 25 0c ce cf b6 7e a8 fa f5 09 59 3f ad c7 // ea fb 61 33 27 b0 52 39 7a f1 ed e9 4d 87 59 0c e9 0a 0a 75 79 // 76 6f 7e c4 fc d3 cb 0b 1a 8c 53 17 24 d5 ef 6b 33 48 03 ce da // a9 ce df 16 dc 3a f6 e0 b6 7f 62 a8 3a 25 64 74 c9 7c 92 5d 9d // 44 71 75 b5 35 c8 7d bd eb 0d cc a5 30 3e ed 66 89 ea 91 e1 66 // 5c 69 1d f7 36 36 8d de 47 e6 67 2e 93 a3 14 c5 f6 0e 7b 68 c2 // 24 2b d0 f0 d8 c6 64 49 d8 68 7d cf 2d 0f 76 66 8b 2b 9b f8 b3 // 2b 99 b7 da f3 4b 2d 82 5d 19 2a de 90 a1 16 2a cf e9 74 9d 51 // 6d 01 4c ef 5f 99 12 63 24 ea 02 ba ea 58 08 c4 30 98 57 49 90 // 1b 09 e4 90 2a 6f 5a dd c0 10 37 56 b8 94 41 8e 45 91 c6 24 a9 // b2 06 ab bf b8 88 d4 13 d9 23 b0 d7 c9 d9 97 d6 d8 e6 47 87 c4 // d3 97 f5 7a 15 b6 d5 b4 21 2b 6c b5 5b 9c 20 7b be 08 f4 83 b1 // be a0 5f 41 b9 a1 d3 af 08 70 47 c5 68 ae 6e bf c0 bb 5e c1 0b // 62 90 dc 75 7a 49 03 a8 8f b2 c0 35 b2 34 9b 6d 2f 0c 05 1b 8b // 77 18 38 4e eb d5 fc 19 92 8c ea 71 3f f0 9e 17 9c 30 8f be 9b // d6 43 74 d9 6e f2 44 7a 2a 4a f5 ca 0c 39 e7 ca 2e 80 1e 57 56 // 0a 55 e9 cf a0 95 cf 3f 74 39 82 19 ad 10 30 a7 95 17 a8 8d e7 // 59 64 29 a2 07 93 e1 26 16 aa 32 b3 e7 20 c6 52 1f be 93 96 3e // 95 36 d1 6f 3d b2 11 fc a7 dd 99 c0 a0 12 5f f8 c1 81 19 a6 92 // 60 83 f4 a2 c0 08 a9 f2 a2 9e 30 82 3b f0 ec 36 39 ca da f9 be // 96 08 35 8e 1e 5a b1 7e ea 47 7b 17 54 f7 8f 45 46 8c 95 68 47 // 16 67 f8 2f 5e 25 0b 97 9b 9f 2b d0 d1 b6 bc 03 d1 18 11 ac 6e // ec 9a 3e cd 9e 3c 32 99 ee 5e b3 c6 ca c8 fb d0 65 14 b7 ee 74 // 3e ce 79 c0 45 66 d0 2a 08 fd 5f ca bb ab 3d 12 9c 0c ce d3 ce // 11 da fa 38 7a 80 77 92 7a 1a d3 67 c1 14 d0 b4 23 e6 4c 61 57 // fa c5 e4 e2 16 8f 33 54 1d ae ff 99 83 d0 e4 88 a7 8b ef 53 8f // 87 0b 84 79 82 72 b2 10 1e 0a bf 1c d6 45 00 b7 9e 01 e1 1d 72 // 73 89 65 3b d8 0a 39 d5 bb e2 e2 3d 2f 5f f1 00 47 42 34 29 98 // 1b d9 b4 ce 68 0e 17 4c 26 63 91 e3 e7 68 94 52 65 4e 5c d5 ad // a6 e0 25 32 7a 19 42 b5 a0 68 f1 5f a5 8e aa 26 7d 4e 08 81 78 // 3d dd bd d7 77 f8 be 08 24 ff df 6d 06 c6 21 88 0d bb e9 53 4f // 15 e8 c2 e3 64 d3 ec 67 de b6 ab 9f 2a 0f 03 21 29 72 db d3 85 // 00 00 00 08 17 35 53 a6 7b e4 86 33 10 38 09 ee e0 be 51 d6 7d // 7c e2 30 b3 89 60 7b 4c 3b 18 da 1c 48 f3 18 0f 2e 0d 79 e5 45 // 65 fd d9 a0 99 b5 b5 ba 27 61 90 5b 88 b7 cb fc 39 c3 5d d1 53 // 60 9d a3 da 26 34 38 f1 27 69 60 2c 21 95 24 5f f8 3e 24 91 19 // d4 f6 ca bf bd ef 84 ad a1 9e f4 a6 7e d6 6d 70 43 03 65 15 d0 // be 5a 23 1f 99 e7 1a ba 5d 5a e0 46 76 ef f3 e8 5f 08 44 c4 1b // bc fd e7 a9 31 d1 ec 55 c0 1f 70 3b fd 1b 97 75 6b fe 55 a9 1f // 6b 37 9f 34 a0 18 90 63 39 77 11 57 c6 6d bd 74 71 d1 be ec 7f // 02 9e f5 52 cf 5e 92 a1 a0 db 21 b5 93 55 76 39 67 ce 26 a5 77 // bc 51 4b 6d 22 a0 9c 38 5c 5b a6 ca f5 24 e1 68 8f c0 f2 00 02 // b3 5a e7 bc 8e b5 ba 51 ae bd f7 d9 72 c3 26 7c ed be 77 ed 70 // d9 c5 39 bc 45 5a 6f 88 b3 91 96 c8 a2 24 b0 ac f4 d7 96 fe a5 // 9a 07 ba a3 4c c2 70 fb 09 6e f3 30 fb eb df 87 2d 7d 0b c4 f9 // a9 63 35 5c 55 4a bc 5c db 91 46 4f aa bc d0 9c d9 a5 3f 5d 1b // 2e a7 e9 6f 42 8f 7c d6 73 5c 19 c6 1d c9 94 2d 30 bf 29 ef 85 // ed 01 c2 fc d6 06 0a a4 0e ef f9 71 47 7b 4f de 48 50 7b 7b ad // 95 a4 96 54 0a df f7 e4 a7 2f d1 f9 4d 7c 70 3a b1 52 5c 94 6c // 54 e0 da 3d 7e bf cc 8c 36 7d 1b fd 1a ea 2e 84 c3 b3 10 aa ea // 5a 16 27 df 89 8c 00 a9 aa f2 d8 8a 36 af a4 c5 b1 81 63 84 31 // 06 00 00 1c 33 12 5a d7 f7 97 0b ee b2 56 ae c0 6e 39 fc 6c 66 // 54 4e 1d 1d c5 fe a4 b6 8a 82 dc 56 8c a3 0a ea 9a 1d 09 7f 06 // f1 1d c3 62 f4 ba e5 ef 57 c6 76 86 a1 58 55 cd 35 1b f2 6f 40 // fb 13 48 cf ce 79 89 76 82 22 8e 6d 96 43 53 0c 81 ba b2 7b f7 // b1 c4 a7 6a 5b e1 80 bb 83 0c f0 68 27 c3 f3 8a 9c 9c 58 0c 73 // 2c 30 aa ce da 78 b0 29 7d e3 5a 92 2b 13 75 b1 29 65 5b eb 31 // 89 9e 26 05 2c c2 16 f8 32 fd b0 a0 01 5f 93 c9 cf f7 7f 59 cd // a1 ec 5f 3e 35 88 48 75 6c eb b0 74 26 6a 47 e3 9a e2 6e 80 e8 // c6 5a af 73 c2 49 25 45 85 20 a9 ca 98 76 0d 10 05 c9 f8 18 46 // 45 9a e6 d5 ba a4 f0 28 07 93 9d dc 29 c3 52 0f 7c 58 ed 9b c5 // a5 69 c7 a1 bc 33 cf 4f 33 0a 18 27 6f fb 45 50 b9 16 6c 39 39 // e8 04 10 94 be c0 34 aa 0e c6 63 8b 74 fe 34 f0 f1 ec 69 03 a1 // 13 58 08 d5 d8 d2 6c 92 03 c3 f8 7e 66 c4 07 b7 c5 c0 88 8d 45 // 58 dd 65 7c c0 21 3e fa d6 8e 76 fd d7 b2 3e 68 06 4f d4 b2 71 // ed 79 c5 0a ba cd d2 87 1b 0c 1f 8c 97 1d f5 9a 5a 19 01 dd f8 // 04 be d4 3e 39 1f 88 2d 2a 45 c5 1c db ba 86 b2 a1 b7 c0 c4 92 // 36 42 a7 31 ea 4d cb ad 2b 6e bb eb e7 87 a8 e2 8e 78 1d 75 be // ee 92 4b 3b 1e 39 07 50 f3 16 64 81 33 92 2c 02 1f 98 fd 2d 5d // 71 a7 a3 67 93 97 ef 6c f4 32 83 7b 7e 26 48 31 ec 01 c4 c3 14 // 6b a0 ca ac 3b 13 d5 59 45 ec 00 e9 78 a1 c1 71 2c d5 11 87 93 // 62 00 60 6c 9c d6 87 7b 2f 72 12 52 95 c5 47 21 f8 e1 5d f2 ae // 28 2a 8b ec b9 9a 72 6f d9 2a cc 92 14 1e 1f 57 4b 4b 0b 3c 99 // 2a 61 af 33 72 d0 d9 21 77 76 b1 a4 2c d2 ce e8 16 a7 0b f1 dd // d6 9b 59 0d 53 e2 8b a3 56 e7 4b 38 e2 3e 50 d8 98 e9 5c dc 7c // c8 09 e4 62 c8 84 b5 3f 67 2a ab 14 11 ec fd 4c 91 e7 a9 78 2f // c6 76 3f 0e fd 4b cb af 1f c3 a0 00 00 00 00 00 00 00 00 00 00 // 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 48 e5 10 // 34 00 87 ca f2 24 39 d5 30 4b d7 04 a6 a7 8a 51 22 69 a9 b1 cb // d1 3b ea 78 c8 07 bb c7 38 53 ae 18 7c bb 76 86 73 e9 d1 bf 74 // a3 b0 a6 c2 34 ac cd 85 06 ad f3 14 f4 c5 e0 81 74 54 0b 69 d3 // c0 da 66 00 52 b4 3b 86 ba f4 9e 7a c6 f0 9c 21 59 8b 1e 01 dc // 1e 1b 5a 53 62 6b 09 04 96 db f7 af 44 1e 39 70 16 c3 c0 94 d5 // c9 1f fe 0a 7c ea cf d2 25 ed 9a 6c 90 5f 79 ad 70 52 74 7d d6 // cc ee f4 c3 10 e0 e9 35 31 11 18 bc 6b f0 e5 ca 6c 7c ca 7d 5c // 03 be 57 03 08 da 8a 40 57 8b 4d b1 49 61 fb cc f6 e2 f2 d5 6e // 95 09 c4 34 12 65 15 b5 6d 03 2e 20 c1 2e 83 0d 1b c6 48 26 fc // 9b 31 8d a5 91 1e 46 68 78 db b8 1e de ff 69 36 3f b7 5a f5 cd // 80 53 6f 14 d2 ea a7 76 4d b2 3a cd bd 39 4b bb bc cf 5e 88 26 // 02 89 7a 85 bf 85 23 d8 91 08 05 93 d8 31 d7 58 de b4 f2 c7 e4 // 9c 6d 6b 35 d8 fd 92 60 1c 85 00 fe bb 0c 5f e0 be 29 4b f6 bb // be ca d4 44 69 52 77 a9 e3 99 2a 35 44 92 51 3b 43 09 1d 16 1c // 7c 7c db be 44 e8 e8 3b 4c f3 33 23 8a 52 f2 14 b2 78 c6 48 52 // 36 ea 88 0d b2 f1 13 f6 38 11 87 67 9a 46 20 d6 14 98 08 b0 af // 02 4b 3b 3e 6b a9 9b 4b 15 ca} (length 0xb2c) // } // } // } // license: ptr[in, buffer] { // buffer: {73 79 7a 6b 61 6c 6c 65 72 00} (length 0xa) // } // loglev: int32 = 0x0 (4 bytes) // logsize: len = 0x0 (4 bytes) // log: nil // kern_version: bpf_kern_version = 0x0 (4 bytes) // flags: bpf_prog_load_flags = 0x40 (4 bytes) // prog_name: buffer: {00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00} // (length 0x10) prog_ifindex: ifindex (resource) expected_attach_type: // union bpf_prog_attach_types { // sk_skb: sk_skb_attach_types = 0x0 (4 bytes) // } // btf_fd: fd_btf (resource) // func_info_rec_size: const = 0x8 (4 bytes) // func_info: ptr[in, bpf_func_info] { // bpf_func_info { // insn_off: int32 = 0x0 (4 bytes) // type_id: int32 = 0x0 (4 bytes) // } // } // func_info_cnt: len = 0x8 (4 bytes) // line_info_rec_size: const = 0x10 (4 bytes) // line_info: ptr[in, bpf_line_info] { // bpf_line_info { // insn_off: int32 = 0x0 (4 bytes) // file_name_off: int32 = 0x0 (4 bytes) // line_off: int32 = 0x0 (4 bytes) // line_col: int32 = 0x0 (4 bytes) // } // } // line_info_cnt: len = 0x10 (4 bytes) // attach_btf_id: bpf_btf_id (resource) // attach_prog_fd: fd_bpf_prog (resource) // core_relo_cnt: len = 0x0 (4 bytes) // fd_array: nil // core_relos: nil // core_relo_rec_size: const = 0x10 (4 bytes) // log_true_size: int32 = 0x0 (4 bytes) // prog_token_fd: union _bpf_prog_t[flags[bpf_prog_type, int32], // bpf_prog_attach_types, bpf_btf_id[opt], // fd_bpf_prog[opt]]_prog_token_fd_wrapper { // void: buffer: {} (length 0x0) // } // pad: union _bpf_prog_t[flags[bpf_prog_type, int32], // bpf_prog_attach_types, bpf_btf_id[opt], // fd_bpf_prog[opt]]_pad_wrapper { // value: const = 0x0 (4 bytes) // } // } // } // size: len = 0x94 (8 bytes) // ] // returns fd_bpf_prog *(uint32_t*)0x200000000440 = 0xe; *(uint32_t*)0x200000000444 = 0xe; *(uint64_t*)0x200000000448 = 0x200000001300; memcpy( (void*)0x200000001300, "\xb7\x02\x00\x00\xf5\x3f\x63\x14\xbf\xa3\x00\x00\x00\x00\x00\x00\x24\x02" "\x00\x00\xff\xfe\xff\x7f\x7a\x03\x00\xfe\xf0\xff\xff\xff\x79\xa4\xf0\xff" "\x00\x00\x00\x00\xb7\x06\x00\x00\xff\xff\xff\xff\x2e\x64\x05\x00\x00\x00" "\x00\x00\x75\x02\xfa\xff\x07\xcd\x02\x02\x04\x04\x00\x00\x00\x24\x7d\x60" "\xb7\x03\x00\x00\x03\x0a\x00\x00\x6a\x0a\x00\xfe\x00\x00\x00\x0c\x85\x00" "\x00\x00\xc4\x00\x00\x00\xb7\x00\x00\x00\x00\x00\x00\x29\x95\x00\x00\x00" "\x00\x00\x00\x00\x1d\xa5\xad\x35\x48\xeb\xb6\x3d\x18\xdb\x6a\x1c\x7e\x82" "\x1c\x9b\x76\x7a\xc8\x30\x8f\xbc\xd5\xc5\xe4\xa5\xad\x10\x65\xb5\x72\xc2" "\xc9\xff\x21\x5a\xc6\x0c\x2c\xea\xea\x4c\x0e\xc9\x08\xab\xb6\xe7\x32\x5e" "\xc1\x95\x6b\xd8\x66\x0b\xf3\x66\x41\x48\xa2\xc9\x67\x52\xfe\x2b\xb3\x28" "\xdf\xf1\xa1\x57\x50\xab\x9a\x78\x00\x01\x00\x00\x00\x00\x00\x00\xd4\xbf" "\x20\xc2\xbd\x15\x2d\x81\x4f\x01\xf2\xcd\x51\x9e\x07\x8d\x4f\xfa\xb4\x18" "\xe4\x68\x2b\x2a\xec\x5e\x4a\x35\x62\x9e\x8e\xf0\x40\xc5\x02\x87\xc3\x7a" "\x7f\x41\x82\xf3\x23\x33\xb0\x8c\x6e\x49\x76\x87\xe1\x0a\x4d\xae\xa5\xca" "\xc0\xce\xaf\xdb\xb1\x26\xeb\x02\xa1\xf5\x10\x4d\x16\xdd\xb6\x49\x63\xd8" "\x4d\x91\x81\x4c\xd5\x81\x7e\x0b\x8f\x6f\x5e\x6e\xe7\xa3\x9e\x18\x0b\x5a" "\x18\xed\x78\x6b\x78\x2a\xb1\x32\x1e\xa5\xe8\x2a\xe5\xba\x2c\x42\xa5\xe2" "\x3e\xa6\x25\x3d\x5d\xf7\x68\xd0\xcb\x9f\x35\xe4\xf4\x1a\x62\x11\xe5\x2b" "\xb3\x59\x8e\x9b\x5d\x4f\x22\xd8\xc1\x9f\x95\x8e\x8b\x34\xde\x35\x94\x9a" "\x7a\x48\xce\x18\x79\x9e\xe5\x3d\xa1\x77\xa8\x1e\xa6\x5e\x65\x2c\x1d\x71" "\xb7\xee\x86\xa7\x5b\x01\x00\x00\x00\x42\x12\x7a\x8f\x84\x53\x8a\x9a\x31" "\x1c\x75\x7f\x71\x69\xf0\x06\xf3\xf5\xc9\x51\x77\xfb\xd0\xb1\x4b\x36\x25" "\x9e\x29\x05\xef\x91\x17\x85\xc8\x8a\x16\xaa\xe4\x60\x84\xd6\x76\xd8\xef" "\x8a\xa6\xec\xc2\xd3\x2e\x3f\x4e\xe3\x67\xc5\xa7\x69\xc0\xa6\x06\x63\x6c" "\x9f\x4a\x44\x13\xc0\x98\xf4\xfc\xc9\x66\x23\xb7\xc3\x73\xb0\xef\x04\xd5" "\x5b\x84\x6b\x09\x4b\xf9\x7e\x2e\xf5\x98\x7b\x6e\x09\xa6\xa7\xca\xb7\x9b" "\xff\xda\x14\x1f\x65\xe7\xd9\xeb\xe3\xbe\x70\xc4\x36\x43\x2b\x70\xa8\x0c" "\xce\x69\xdf\x30\xd3\xd6\x7d\x84\xcc\xf3\xf9\xdb\x9b\x69\x01\x11\xde\x2d" "\xdc\x4b\x15\x3c\x98\x9e\xf1\x00\xbb\xf7\x60\x63\xd3\xf6\xff\xff\xb7\x3d" "\x70\xe9\xc3\xd7\xb9\x0a\xec\xf4\x8e\x75\x65\xef\xff\x2d\xbb\xb5\x12\x21" "\x8c\x98\x44\x24\x06\x33\x3c\x89\x09\x23\xa7\x97\xe0\x0b\x75\x48\x17\x39" "\x95\x2f\xe8\x7f\xde\x27\xce\x81\x89\x3f\x54\xec\x0e\xa8\xe7\x92\x41\x4f" "\x63\x9b\xc9\xce\x1f\xea\x3f\x6a\xc0\xd7\x02\x57\x59\xd4\xb4\x55\x76\xc2" "\x05\xc7\x06\x31\xe8\xad\x58\x59\x51\x95\x0e\x52\x1f\x4e\x21\x0b\x64\x94" "\xe3\xc5\x2d\x92\x71\x95\x73\x79\x45\xcc\x03\xd5\x66\x84\x83\x15\x17\x10" "\xde\x24\x64\x20\xa1\xb6\xc5\x5b\x73\x87\x6a\x6e\xd7\xfd\x0d\x93\x38\x92" "\x37\x89\xa1\xed\xcd\x80\x43\xfe\x83\x91\x90\x88\x38\x32\x68\x32\x4a\x25" "\xdf\x14\x01\x0c\x8e\xd6\xb8\xd4\x34\x00\xea\xa0\x0f\xf9\xbc\x46\xe1\xcf" "\xec\xbd\xc0\xe4\x51\xac\x53\xb4\x09\xd0\x45\x44\xd3\xa7\xed\xd4\xd4\x47" "\xd2\xfb\x43\x1e\x22\x6a\xe1\x82\xb8\xdc\xc8\x6f\xe0\x9b\x40\x4e\x0b\x7c" "\x72\x3d\x3b\x19\xc3\xdc\x38\x2f\xa9\x1f\xb0\xfb\x8f\x9f\x3f\x13\x29\x6b" "\xb1\x75\x8b\x24\xaa\xd0\x92\x20\x91\xd4\x9e\x2b\xc4\x08\xa5\xa3\x7d\xee" "\xe7\xa6\x0b\x90\x3d\x2d\x9f\xe9\xd4\x51\xca\xfc\xc8\xdc\x38\x96\x71\xc2" "\xd0\x8b\x6e\x26\x41\x50\xa6\xb9\x44\x5b\x00\xce\xe4\x58\x5a\xf0\x4f\xa6" "\x9e\x03\x80\xbe\x0d\x66\x64\x9d\xcf\x3b\xf8\xa9\x06\xb0\x29\xfa\xca\x75" "\xce\x34\xc4\x1a\xec\x7a\xa8\x6e\x59\x61\x19\x10\x9e\xa8\xb3\xf7\xc6\x5c" "\x90\x24\x99\x22\x7c\x08\x73\x01\x64\x3b\xaa\xb1\xc9\x5b\xb2\x2c\xed\xd9" "\x13\xb2\x2d\xca\xa1\x97\xcc\xc3\x45\x86\xdc\x50\xbd\x9f\x46\x28\xe3\xe7" "\x7a\x0d\xe3\x2e\x35\x65\x21\xdf\x06\xf9\x95\xcb\x57\xf9\x70\x52\xfc\x41" "\x58\x25\x0c\xce\xcf\xb6\x7e\xa8\xfa\xf5\x09\x59\x3f\xad\xc7\xea\xfb\x61" "\x33\x27\xb0\x52\x39\x7a\xf1\xed\xe9\x4d\x87\x59\x0c\xe9\x0a\x0a\x75\x79" "\x76\x6f\x7e\xc4\xfc\xd3\xcb\x0b\x1a\x8c\x53\x17\x24\xd5\xef\x6b\x33\x48" "\x03\xce\xda\xa9\xce\xdf\x16\xdc\x3a\xf6\xe0\xb6\x7f\x62\xa8\x3a\x25\x64" "\x74\xc9\x7c\x92\x5d\x9d\x44\x71\x75\xb5\x35\xc8\x7d\xbd\xeb\x0d\xcc\xa5" "\x30\x3e\xed\x66\x89\xea\x91\xe1\x66\x5c\x69\x1d\xf7\x36\x36\x8d\xde\x47" "\xe6\x67\x2e\x93\xa3\x14\xc5\xf6\x0e\x7b\x68\xc2\x24\x2b\xd0\xf0\xd8\xc6" "\x64\x49\xd8\x68\x7d\xcf\x2d\x0f\x76\x66\x8b\x2b\x9b\xf8\xb3\x2b\x99\xb7" "\xda\xf3\x4b\x2d\x82\x5d\x19\x2a\xde\x90\xa1\x16\x2a\xcf\xe9\x74\x9d\x51" "\x6d\x01\x4c\xef\x5f\x99\x12\x63\x24\xea\x02\xba\xea\x58\x08\xc4\x30\x98" "\x57\x49\x90\x1b\x09\xe4\x90\x2a\x6f\x5a\xdd\xc0\x10\x37\x56\xb8\x94\x41" "\x8e\x45\x91\xc6\x24\xa9\xb2\x06\xab\xbf\xb8\x88\xd4\x13\xd9\x23\xb0\xd7" "\xc9\xd9\x97\xd6\xd8\xe6\x47\x87\xc4\xd3\x97\xf5\x7a\x15\xb6\xd5\xb4\x21" "\x2b\x6c\xb5\x5b\x9c\x20\x7b\xbe\x08\xf4\x83\xb1\xbe\xa0\x5f\x41\xb9\xa1" "\xd3\xaf\x08\x70\x47\xc5\x68\xae\x6e\xbf\xc0\xbb\x5e\xc1\x0b\x62\x90\xdc" "\x75\x7a\x49\x03\xa8\x8f\xb2\xc0\x35\xb2\x34\x9b\x6d\x2f\x0c\x05\x1b\x8b" "\x77\x18\x38\x4e\xeb\xd5\xfc\x19\x92\x8c\xea\x71\x3f\xf0\x9e\x17\x9c\x30" "\x8f\xbe\x9b\xd6\x43\x74\xd9\x6e\xf2\x44\x7a\x2a\x4a\xf5\xca\x0c\x39\xe7" "\xca\x2e\x80\x1e\x57\x56\x0a\x55\xe9\xcf\xa0\x95\xcf\x3f\x74\x39\x82\x19" "\xad\x10\x30\xa7\x95\x17\xa8\x8d\xe7\x59\x64\x29\xa2\x07\x93\xe1\x26\x16" "\xaa\x32\xb3\xe7\x20\xc6\x52\x1f\xbe\x93\x96\x3e\x95\x36\xd1\x6f\x3d\xb2" "\x11\xfc\xa7\xdd\x99\xc0\xa0\x12\x5f\xf8\xc1\x81\x19\xa6\x92\x60\x83\xf4" "\xa2\xc0\x08\xa9\xf2\xa2\x9e\x30\x82\x3b\xf0\xec\x36\x39\xca\xda\xf9\xbe" "\x96\x08\x35\x8e\x1e\x5a\xb1\x7e\xea\x47\x7b\x17\x54\xf7\x8f\x45\x46\x8c" "\x95\x68\x47\x16\x67\xf8\x2f\x5e\x25\x0b\x97\x9b\x9f\x2b\xd0\xd1\xb6\xbc" "\x03\xd1\x18\x11\xac\x6e\xec\x9a\x3e\xcd\x9e\x3c\x32\x99\xee\x5e\xb3\xc6" "\xca\xc8\xfb\xd0\x65\x14\xb7\xee\x74\x3e\xce\x79\xc0\x45\x66\xd0\x2a\x08" "\xfd\x5f\xca\xbb\xab\x3d\x12\x9c\x0c\xce\xd3\xce\x11\xda\xfa\x38\x7a\x80" "\x77\x92\x7a\x1a\xd3\x67\xc1\x14\xd0\xb4\x23\xe6\x4c\x61\x57\xfa\xc5\xe4" "\xe2\x16\x8f\x33\x54\x1d\xae\xff\x99\x83\xd0\xe4\x88\xa7\x8b\xef\x53\x8f" "\x87\x0b\x84\x79\x82\x72\xb2\x10\x1e\x0a\xbf\x1c\xd6\x45\x00\xb7\x9e\x01" "\xe1\x1d\x72\x73\x89\x65\x3b\xd8\x0a\x39\xd5\xbb\xe2\xe2\x3d\x2f\x5f\xf1" "\x00\x47\x42\x34\x29\x98\x1b\xd9\xb4\xce\x68\x0e\x17\x4c\x26\x63\x91\xe3" "\xe7\x68\x94\x52\x65\x4e\x5c\xd5\xad\xa6\xe0\x25\x32\x7a\x19\x42\xb5\xa0" "\x68\xf1\x5f\xa5\x8e\xaa\x26\x7d\x4e\x08\x81\x78\x3d\xdd\xbd\xd7\x77\xf8" "\xbe\x08\x24\xff\xdf\x6d\x06\xc6\x21\x88\x0d\xbb\xe9\x53\x4f\x15\xe8\xc2" "\xe3\x64\xd3\xec\x67\xde\xb6\xab\x9f\x2a\x0f\x03\x21\x29\x72\xdb\xd3\x85" "\x00\x00\x00\x08\x17\x35\x53\xa6\x7b\xe4\x86\x33\x10\x38\x09\xee\xe0\xbe" "\x51\xd6\x7d\x7c\xe2\x30\xb3\x89\x60\x7b\x4c\x3b\x18\xda\x1c\x48\xf3\x18" "\x0f\x2e\x0d\x79\xe5\x45\x65\xfd\xd9\xa0\x99\xb5\xb5\xba\x27\x61\x90\x5b" "\x88\xb7\xcb\xfc\x39\xc3\x5d\xd1\x53\x60\x9d\xa3\xda\x26\x34\x38\xf1\x27" "\x69\x60\x2c\x21\x95\x24\x5f\xf8\x3e\x24\x91\x19\xd4\xf6\xca\xbf\xbd\xef" "\x84\xad\xa1\x9e\xf4\xa6\x7e\xd6\x6d\x70\x43\x03\x65\x15\xd0\xbe\x5a\x23" "\x1f\x99\xe7\x1a\xba\x5d\x5a\xe0\x46\x76\xef\xf3\xe8\x5f\x08\x44\xc4\x1b" "\xbc\xfd\xe7\xa9\x31\xd1\xec\x55\xc0\x1f\x70\x3b\xfd\x1b\x97\x75\x6b\xfe" "\x55\xa9\x1f\x6b\x37\x9f\x34\xa0\x18\x90\x63\x39\x77\x11\x57\xc6\x6d\xbd" "\x74\x71\xd1\xbe\xec\x7f\x02\x9e\xf5\x52\xcf\x5e\x92\xa1\xa0\xdb\x21\xb5" "\x93\x55\x76\x39\x67\xce\x26\xa5\x77\xbc\x51\x4b\x6d\x22\xa0\x9c\x38\x5c" "\x5b\xa6\xca\xf5\x24\xe1\x68\x8f\xc0\xf2\x00\x02\xb3\x5a\xe7\xbc\x8e\xb5" "\xba\x51\xae\xbd\xf7\xd9\x72\xc3\x26\x7c\xed\xbe\x77\xed\x70\xd9\xc5\x39" "\xbc\x45\x5a\x6f\x88\xb3\x91\x96\xc8\xa2\x24\xb0\xac\xf4\xd7\x96\xfe\xa5" "\x9a\x07\xba\xa3\x4c\xc2\x70\xfb\x09\x6e\xf3\x30\xfb\xeb\xdf\x87\x2d\x7d" "\x0b\xc4\xf9\xa9\x63\x35\x5c\x55\x4a\xbc\x5c\xdb\x91\x46\x4f\xaa\xbc\xd0" "\x9c\xd9\xa5\x3f\x5d\x1b\x2e\xa7\xe9\x6f\x42\x8f\x7c\xd6\x73\x5c\x19\xc6" "\x1d\xc9\x94\x2d\x30\xbf\x29\xef\x85\xed\x01\xc2\xfc\xd6\x06\x0a\xa4\x0e" "\xef\xf9\x71\x47\x7b\x4f\xde\x48\x50\x7b\x7b\xad\x95\xa4\x96\x54\x0a\xdf" "\xf7\xe4\xa7\x2f\xd1\xf9\x4d\x7c\x70\x3a\xb1\x52\x5c\x94\x6c\x54\xe0\xda" "\x3d\x7e\xbf\xcc\x8c\x36\x7d\x1b\xfd\x1a\xea\x2e\x84\xc3\xb3\x10\xaa\xea" "\x5a\x16\x27\xdf\x89\x8c\x00\xa9\xaa\xf2\xd8\x8a\x36\xaf\xa4\xc5\xb1\x81" "\x63\x84\x31\x06\x00\x00\x1c\x33\x12\x5a\xd7\xf7\x97\x0b\xee\xb2\x56\xae" "\xc0\x6e\x39\xfc\x6c\x66\x54\x4e\x1d\x1d\xc5\xfe\xa4\xb6\x8a\x82\xdc\x56" "\x8c\xa3\x0a\xea\x9a\x1d\x09\x7f\x06\xf1\x1d\xc3\x62\xf4\xba\xe5\xef\x57" "\xc6\x76\x86\xa1\x58\x55\xcd\x35\x1b\xf2\x6f\x40\xfb\x13\x48\xcf\xce\x79" "\x89\x76\x82\x22\x8e\x6d\x96\x43\x53\x0c\x81\xba\xb2\x7b\xf7\xb1\xc4\xa7" "\x6a\x5b\xe1\x80\xbb\x83\x0c\xf0\x68\x27\xc3\xf3\x8a\x9c\x9c\x58\x0c\x73" "\x2c\x30\xaa\xce\xda\x78\xb0\x29\x7d\xe3\x5a\x92\x2b\x13\x75\xb1\x29\x65" "\x5b\xeb\x31\x89\x9e\x26\x05\x2c\xc2\x16\xf8\x32\xfd\xb0\xa0\x01\x5f\x93" "\xc9\xcf\xf7\x7f\x59\xcd\xa1\xec\x5f\x3e\x35\x88\x48\x75\x6c\xeb\xb0\x74" "\x26\x6a\x47\xe3\x9a\xe2\x6e\x80\xe8\xc6\x5a\xaf\x73\xc2\x49\x25\x45\x85" "\x20\xa9\xca\x98\x76\x0d\x10\x05\xc9\xf8\x18\x46\x45\x9a\xe6\xd5\xba\xa4" "\xf0\x28\x07\x93\x9d\xdc\x29\xc3\x52\x0f\x7c\x58\xed\x9b\xc5\xa5\x69\xc7" "\xa1\xbc\x33\xcf\x4f\x33\x0a\x18\x27\x6f\xfb\x45\x50\xb9\x16\x6c\x39\x39" "\xe8\x04\x10\x94\xbe\xc0\x34\xaa\x0e\xc6\x63\x8b\x74\xfe\x34\xf0\xf1\xec" "\x69\x03\xa1\x13\x58\x08\xd5\xd8\xd2\x6c\x92\x03\xc3\xf8\x7e\x66\xc4\x07" "\xb7\xc5\xc0\x88\x8d\x45\x58\xdd\x65\x7c\xc0\x21\x3e\xfa\xd6\x8e\x76\xfd" "\xd7\xb2\x3e\x68\x06\x4f\xd4\xb2\x71\xed\x79\xc5\x0a\xba\xcd\xd2\x87\x1b" "\x0c\x1f\x8c\x97\x1d\xf5\x9a\x5a\x19\x01\xdd\xf8\x04\xbe\xd4\x3e\x39\x1f" "\x88\x2d\x2a\x45\xc5\x1c\xdb\xba\x86\xb2\xa1\xb7\xc0\xc4\x92\x36\x42\xa7" "\x31\xea\x4d\xcb\xad\x2b\x6e\xbb\xeb\xe7\x87\xa8\xe2\x8e\x78\x1d\x75\xbe" "\xee\x92\x4b\x3b\x1e\x39\x07\x50\xf3\x16\x64\x81\x33\x92\x2c\x02\x1f\x98" "\xfd\x2d\x5d\x71\xa7\xa3\x67\x93\x97\xef\x6c\xf4\x32\x83\x7b\x7e\x26\x48" "\x31\xec\x01\xc4\xc3\x14\x6b\xa0\xca\xac\x3b\x13\xd5\x59\x45\xec\x00\xe9" "\x78\xa1\xc1\x71\x2c\xd5\x11\x87\x93\x62\x00\x60\x6c\x9c\xd6\x87\x7b\x2f" "\x72\x12\x52\x95\xc5\x47\x21\xf8\xe1\x5d\xf2\xae\x28\x2a\x8b\xec\xb9\x9a" "\x72\x6f\xd9\x2a\xcc\x92\x14\x1e\x1f\x57\x4b\x4b\x0b\x3c\x99\x2a\x61\xaf" "\x33\x72\xd0\xd9\x21\x77\x76\xb1\xa4\x2c\xd2\xce\xe8\x16\xa7\x0b\xf1\xdd" "\xd6\x9b\x59\x0d\x53\xe2\x8b\xa3\x56\xe7\x4b\x38\xe2\x3e\x50\xd8\x98\xe9" "\x5c\xdc\x7c\xc8\x09\xe4\x62\xc8\x84\xb5\x3f\x67\x2a\xab\x14\x11\xec\xfd" "\x4c\x91\xe7\xa9\x78\x2f\xc6\x76\x3f\x0e\xfd\x4b\xcb\xaf\x1f\xc3\xa0\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x48\xe5\x10\x34\x00\x87\xca\xf2\x24" "\x39\xd5\x30\x4b\xd7\x04\xa6\xa7\x8a\x51\x22\x69\xa9\xb1\xcb\xd1\x3b\xea" "\x78\xc8\x07\xbb\xc7\x38\x53\xae\x18\x7c\xbb\x76\x86\x73\xe9\xd1\xbf\x74" "\xa3\xb0\xa6\xc2\x34\xac\xcd\x85\x06\xad\xf3\x14\xf4\xc5\xe0\x81\x74\x54" "\x0b\x69\xd3\xc0\xda\x66\x00\x52\xb4\x3b\x86\xba\xf4\x9e\x7a\xc6\xf0\x9c" "\x21\x59\x8b\x1e\x01\xdc\x1e\x1b\x5a\x53\x62\x6b\x09\x04\x96\xdb\xf7\xaf" "\x44\x1e\x39\x70\x16\xc3\xc0\x94\xd5\xc9\x1f\xfe\x0a\x7c\xea\xcf\xd2\x25" "\xed\x9a\x6c\x90\x5f\x79\xad\x70\x52\x74\x7d\xd6\xcc\xee\xf4\xc3\x10\xe0" "\xe9\x35\x31\x11\x18\xbc\x6b\xf0\xe5\xca\x6c\x7c\xca\x7d\x5c\x03\xbe\x57" "\x03\x08\xda\x8a\x40\x57\x8b\x4d\xb1\x49\x61\xfb\xcc\xf6\xe2\xf2\xd5\x6e" "\x95\x09\xc4\x34\x12\x65\x15\xb5\x6d\x03\x2e\x20\xc1\x2e\x83\x0d\x1b\xc6" "\x48\x26\xfc\x9b\x31\x8d\xa5\x91\x1e\x46\x68\x78\xdb\xb8\x1e\xde\xff\x69" "\x36\x3f\xb7\x5a\xf5\xcd\x80\x53\x6f\x14\xd2\xea\xa7\x76\x4d\xb2\x3a\xcd" "\xbd\x39\x4b\xbb\xbc\xcf\x5e\x88\x26\x02\x89\x7a\x85\xbf\x85\x23\xd8\x91" "\x08\x05\x93\xd8\x31\xd7\x58\xde\xb4\xf2\xc7\xe4\x9c\x6d\x6b\x35\xd8\xfd" "\x92\x60\x1c\x85\x00\xfe\xbb\x0c\x5f\xe0\xbe\x29\x4b\xf6\xbb\xbe\xca\xd4" "\x44\x69\x52\x77\xa9\xe3\x99\x2a\x35\x44\x92\x51\x3b\x43\x09\x1d\x16\x1c" "\x7c\x7c\xdb\xbe\x44\xe8\xe8\x3b\x4c\xf3\x33\x23\x8a\x52\xf2\x14\xb2\x78" "\xc6\x48\x52\x36\xea\x88\x0d\xb2\xf1\x13\xf6\x38\x11\x87\x67\x9a\x46\x20" "\xd6\x14\x98\x08\xb0\xaf\x02\x4b\x3b\x3e\x6b\xa9\x9b\x4b\x15\xca", 2860); *(uint64_t*)0x200000000450 = 0x200000000340; memcpy((void*)0x200000000340, "syzkaller\000", 10); *(uint32_t*)0x200000000458 = 0; *(uint32_t*)0x20000000045c = 0; *(uint64_t*)0x200000000460 = 0; *(uint32_t*)0x200000000468 = 0; *(uint32_t*)0x20000000046c = 0x40; memset((void*)0x200000000470, 0, 16); *(uint32_t*)0x200000000480 = 0; *(uint32_t*)0x200000000484 = 0; *(uint32_t*)0x200000000488 = -1; *(uint32_t*)0x20000000048c = 8; *(uint64_t*)0x200000000490 = 0x200000000000; *(uint32_t*)0x200000000000 = 0; *(uint32_t*)0x200000000004 = 0; *(uint32_t*)0x200000000498 = 8; *(uint32_t*)0x20000000049c = 0x10; *(uint64_t*)0x2000000004a0 = 0x200000000000; *(uint32_t*)0x200000000000 = 0; *(uint32_t*)0x200000000004 = 0; *(uint32_t*)0x200000000008 = 0; *(uint32_t*)0x20000000000c = 0; *(uint32_t*)0x2000000004a8 = 0x10; *(uint32_t*)0x2000000004ac = 0; *(uint32_t*)0x2000000004b0 = -1; *(uint32_t*)0x2000000004b4 = 0; *(uint64_t*)0x2000000004b8 = 0; *(uint64_t*)0x2000000004c0 = 0; *(uint32_t*)0x2000000004c8 = 0x10; *(uint32_t*)0x2000000004cc = 0; *(uint32_t*)0x2000000004d0 = 0; syscall(__NR_bpf, /*cmd=*/5ul, /*arg=*/0x200000000440ul, /*size=*/0x94ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*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=*/0x200001000000ul, /*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; if ((reason = setup_binfmt_misc())) printf("the reproducer may not work as expected: binfmt_misc setup failed: " "%s\n", reason); if ((reason = setup_swap())) printf("the reproducer may not work as expected: swap setup failed: %s\n", reason); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }