// https://syzkaller.appspot.com/bug?id=a5da3337940551997dae603e434514ad51387f78 // 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_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) 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 void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void 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); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x22108c1 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 72 6f // 6d 61 6e 69 61 6e 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 // 65 2c 6e 6f 64 69 73 63 61 72 64 2c 75 69 64 3d} (length 0x34) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 34 2c 65 72 72 6f 72 73 3d 63 // 6f 6e 74 69 6e 75 65 2c 67 69 64 3d} (length 0x30) // } // union ANYUNION { // ANYRESHEX: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {00 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 6e // 75 65 2c 30 30 30 30 30 30 30 30 30 30 66 66 2c 75 6d 61 73 6b // 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 34 2c 65 // 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 6e 6f 69 6e 74 65 // 67 72 69 7e 74 79 2c 72 65 73 69 7a 65 2c 71 75 6f 74 61 2c 66 // 73 6d 61 67 69 63 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 // 30 30 30 38 2c 73 6d 61 63 6b 66 73 64 65 66 3d 72 04 d3 04 00 // 65 2c} (length 0x8f) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x61a4 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61a4) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000000, "jfs\000", 4)); NONFAILING(memcpy((void*)0x200000000180, "./file0\000", 8)); NONFAILING( memcpy((void*)0x2000000001c0, "iocharset=macromanian,errors=continue,nodiscard,uid=", 52)); NONFAILING(sprintf((char*)0x2000000001f4, "0x%016llx", (long long)0)); NONFAILING(memcpy((void*)0x200000000206, ",discard=0x0000000000000004,errors=continue,gid=", 48)); NONFAILING(sprintf((char*)0x200000000236, "0x%016llx", (long long)0)); NONFAILING(memcpy( (void*)0x200000000248, "\x00\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x6e\x75\x65" "\x2c\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x66\x66\x2c\x75\x6d\x61" "\x73\x6b\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x34\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69" "\x6e\x75\x65\x2c\x6e\x6f\x69\x6e\x74\x65\x67\x72\x69\x7e\x74\x79\x2c" "\x72\x65\x73\x69\x7a\x65\x2c\x71\x75\x6f\x74\x61\x2c\x66\x73\x6d\x61" "\x67\x69\x63\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x38\x2c\x73\x6d\x61\x63\x6b\x66\x73\x64\x65\x66\x3d" "\x72\x04\xd3\x04\x00\x65\x2c", 143)); NONFAILING(memcpy( (void*)0x20000000c4c0, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x4a\x5b" "\xab\x87\xaa\x44\x08\xb9\x69\x79\x29\xa5\x49\x9c\x94\x10\x28\xd0\xf6" "\x00\x07\x2e\x3d\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x65" "\x11\x57\xbe\x70\xe0\xc4\x5f\x00\x42\xe2\x88\x10\x47\xc4\x81\x3f\xa0" "\x07\xae\xdc\x38\x71\x22\x92\x8d\x04\xea\x89\x41\x63\x3f\x4f\x3c\xbb" "\xd9\xed\x3a\x75\xbc\xb3\xf6\x7c\x3e\x92\x33\xf3\x9b\x67\xd6\xfb\x8c" "\xbf\x3b\xfb\x92\x99\xd9\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xf8\xfe\xf7\x7e\xb0\x56\x44\xc4\xb5\x9f\xa7\x05" "\x2b\x11\x9f\x89\x6e\x44\x27\x62\xa9\xaa\x57\x23\x62\x69\x75\x25\xaf" "\xdf\x8b\x88\xe7\x62\xaf\x39\x9e\x8d\x88\xfe\x42\x44\x75\xfb\xbd\x7f" "\x9e\x8e\x78\x35\x22\x3e\x7a\x2a\x62\x67\x77\x73\xbd\x5a\x7c\xf1\x90" "\xfd\xf8\xee\x1f\xff\xfe\xbb\x1f\x3e\xf1\xd6\xdf\xfe\xd0\x3f\xff\xdf" "\x3f\xdd\xe9\xbe\x36\x69\xbd\xbb\x77\x7f\xf5\x9f\x3f\xdf\x3b\xda\x36" "\x03\x00\x00\x40\xdb\x94\x65\x59\x16\xe9\x63\xfe\x99\xf4\xf9\xbe\xd3" "\x74\xa7\x00\x80\x99\xc8\xaf\xff\x65\x92\x97\x9f\xfa\xfa\xd7\xff\x7c" "\xeb\x2f\xf3\xd4\x1f\xb5\x5a\xad\x56\xab\x67\x50\xd7\x95\xe3\xdd\xab" "\x17\x11\xb1\x55\xbf\x4d\xf5\x9e\xc1\xe1\x78\x00\x38\x61\xb6\xe2\xe3" "\xa6\xbb\x40\x83\xe4\xdf\x6a\xbd\x88\x78\xa2\xe9\x4e\x00\x73\xad\x68" "\xba\x03\x1c\x8b\x9d\xdd\xcd\xf5\x22\xe5\x5b\xd4\x5f\x0f\x56\xf7\xdb" "\xf3\xb9\x20\x43\xf9\x6f\x15\x0f\xae\xef\x98\x34\x9d\x66\xf4\x1c\x93" "\x59\x3d\xbe\xb6\xa3\x1b\xcf\x4c\xe8\xcf\xd2\x8c\xfa\x30\x4f\x72\xfe" "\x9d\xd1\xfc\xaf\xed\xb7\x0f\xd2\x7a\x45\x3d\xb1\x63\xc8\x7f\x56\x26" "\xe5\x3f\xd8\xbf\xf4\xa9\x75\x72\xfe\xdd\xd1\xfc\x47\x1c\xf7\xfe\x3f" "\x2b\xdb\xd1\x19\x9b\x7f\x5b\xe5\xfc\x7b\x8f\x94\x7f\x57\xfe\x00\x00" "\x00\x00\x00\x30\xc7\xf2\xff\xff\xaf\x34\x7c\xfc\x77\xe1\xe8\x9b\x72" "\x28\x9f\x74\xfc\x77\x75\x46\x7d\x00\x00\x00\x00\x00\x00\x00\x80\xc7" "\xed\xa8\xe3\xff\x3d\x60\xfc\x3f\x00\x00\x00\x98\x5b\xd5\x67\xf5\xca" "\x6f\x9e\x3a\x58\x36\xe9\xbb\xd8\xaa\xe5\x57\x8b\x88\x27\x47\xd6\x07" "\x5a\x26\x5d\x2c\xb3\xdc\x74\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xa0\x4d\x7a\xfb\xe7\xf0\x5e\x2d\x22\xfa\x11\xf1\xe4\xf2\x72\x59" "\x96\xd5\x4f\xdd\x68\xfd\xa8\x8e\x7a\xfb\x93\xae\xed\xdb\x0f\x6d\xd6" "\xf4\x93\x3c\x00\x00\xec\xfb\xe8\xa9\x91\x6b\xf9\x8b\x88\xc5\x88\xb8" "\x9a\xbe\xeb\xaf\xbf\xbc\xbc\x5c\x96\x8b\x4b\xcb\xe5\x72\xb9\xb4\x90" "\xdf\xcf\x0e\x16\x16\xcb\xa5\xda\xe7\xda\x3c\xad\x96\x2d\x0c\x0e\xf1" "\x86\xb8\x37\x28\xab\x5f\xb6\x58\xbb\x5d\xdd\xb4\xcf\xcb\xd3\xda\x47" "\x7f\x5f\x75\x5f\x83\xb2\x7b\x88\x8e\x3d\x26\xfd\xf4\xd7\x9c\xd0\xdc" "\x50\xd8\x00\x90\xec\xbf\x1a\xed\x78\x45\x3a\x65\xca\xf2\xe9\x49\x6f" "\x3e\x60\x88\xfd\xff\x14\x5a\x89\x95\xa6\x1f\x57\xcc\xbf\xa6\x1f\xa6" "\x00\x00\x00\xc0\xf1\x2b\xcb\xb2\x2c\xd2\xd7\x79\x9f\x49\xc7\xfc\x3b" "\x4d\x77\x0a\x00\x98\x89\xfc\xfa\x3f\x7a\x5c\xe0\x48\x75\x67\x42\x7b" "\xc4\xe3\xf9\xfd\x6a\xb5\x5a\xad\x56\xab\x3f\x55\x5d\x57\x8e\x77\xaf" "\x5e\x44\xc4\x56\xfd\x36\xd5\x7b\x06\xc3\xf1\x03\xc0\x09\xb3\x15\x1f" "\x37\xdd\x05\x1a\x24\xff\x56\xeb\x45\xc4\x73\x4d\x77\x02\x98\x6b\x45" "\xd3\x1d\xe0\x58\xec\xec\x6e\xae\x17\x29\xdf\xa2\xfe\x7a\x90\xc6\x77" "\xcf\xe7\x82\x0c\xe5\xbf\x55\xec\xdd\x2e\xdf\x7e\xdc\x74\x9a\xd1\x73" "\x4c\x66\xf5\xf8\xda\x8e\x6e\x3c\x33\xa1\x3f\xcf\xce\xa8\x0f\xf3\x24" "\xe7\xdf\x19\xcd\xff\xda\x7e\xfb\x20\xad\x77\xdc\xf9\xcf\xca\xa4\xfc" "\x07\x7b\x97\xcc\xb5\x4f\xce\xbf\x3b\x9a\xff\x88\xd3\x93\x7f\x67\x6c" "\xfe\x6d\x95\xf3\xef\x3d\x52\xfe\x5d\xf9\x03\x00\x00\x00\x00\xc0\x1c" "\xcb\xff\xff\xbf\xe2\xf8\x6f\xde\x64\x00\x00\x00\x00\x00\x00\x00\x38" "\x71\x76\x76\x37\xd7\xf3\x75\xaf\xf9\xf8\xff\xe7\xc6\xac\xe7\xfa\xcf" "\xd3\x29\xe7\x5f\x3c\x6a\xfe\x4b\x69\x5e\xfe\x27\x5a\xce\xbf\x33\x92" "\xff\x97\x47\xd6\xeb\xd6\xe6\xef\xbf\x79\xb0\xff\xff\x7b\x77\x73\xfd" "\xf7\x77\xfe\xf5\xd9\x3c\x3d\x6c\xfe\x0b\x79\xa6\x48\x8f\xac\x22\x3d" "\x22\x8a\x74\x4f\x45\x2f\x4d\x8f\xb2\x75\x0f\xdb\xee\x77\x07\xd5\x3d" "\xf5\x8b\x4e\xb7\x97\xce\xf9\x29\xfb\xef\xc4\x8d\xb8\x19\x1b\x71\x61" "\x68\xdd\x4e\xfa\x7b\x1c\xb4\xaf\x0d\xb5\x57\x3d\xed\x0f\xb5\x5f\x1c" "\x6a\xef\x3d\xd4\x7e\x69\xa8\xbd\x9f\xbe\x77\xa0\x5c\xca\xed\xe7\x62" "\x3d\x7e\x12\x37\xe3\xed\xbd\xf6\xaa\x6d\x61\xca\xf6\x2f\x4e\x69\x2f" "\xa7\xb4\xe7\xfc\xbb\x9e\xff\x5b\x29\xe7\xdf\xab\xfd\x54\xf9\x2f\xa7" "\xf6\x62\x64\x5a\xb9\xff\x61\xe7\xa1\xfd\xbe\x3e\x1d\x77\x3f\x6f\xdc" "\xf8\xfc\x2f\x2f\x1c\xff\xe6\x4c\xb5\x1d\xdd\x07\xdb\x56\x57\x6d\xdf" "\xd9\x06\xfa\xb3\xf7\x37\x79\x62\x10\x3f\xbb\xbd\x71\xeb\xdc\xdd\xeb" "\x77\xee\xdc\x5a\x8b\x34\x19\x5a\x7a\x31\xd2\xe4\x31\xcb\xf9\xf7\xf7" "\x7e\x16\x0e\x9e\xff\x5f\xd8\x6f\xcf\xcf\xfb\xf5\xfd\xf5\xfe\x87\x83" "\x47\xce\x7f\x5e\x6c\x47\x6f\x62\xfe\x2f\xd4\xe6\xab\xed\x7d\x69\xc6" "\x7d\x6b\x42\xce\x7f\x90\x7e\x72\xfe\x6f\xa7\xf6\xf1\xfb\xff\x49\xce" "\x7f\xf2\xfe\xff\x72\x03\xfd\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x4f\x52\x96\xe5\xde\x25\xa2\x6f\x44\xc4\xe5\x74\xfd\x4f" "\x53\xd7\x66\x02\x00\xb3\x95\x5f\xff\xcb\x24\x2f\x57\xab\xd5\x6a\xb5" "\x5a\x7d\xfa\xea\xba\x72\xbc\xd7\xeb\x45\x44\xfc\xb5\x7e\x9b\xea\x3d" "\xc3\x2f\xc6\xfd\x32\x00\x60\x9e\xfd\x2f\x22\xfe\xd1\x74\x27\x68\x8c" "\xfc\x5b\x2c\x7f\xdf\x5f\x35\x7d\xb1\xe9\xce\x00\x33\x75\xfb\xfd\x0f" "\x7e\x74\xfd\xe6\xcd\x8d\x5b\xb7\x9b\xee\x09\x00\x00\x00\x00\x00\x00" "\x00\xf0\x69\xe5\xf1\x3f\x57\x6b\xe3\x3f\xbf\x18\x11\x2b\x23\xeb\x0d" "\x8d\xff\xfa\x66\xac\x1e\x75\xfc\xcf\x5e\x9e\x79\x30\xc0\xe8\x63\x1e" "\xe8\x7b\x82\xed\xce\xa0\xdb\xa9\x0d\x37\xfe\x7c\xec\x8d\xcf\x7d\x6e" "\xd2\xf8\xdf\x67\xe3\xe1\xf1\xbf\xf3\x98\xb8\xdd\xfa\x76\x4c\xd0\x9f" "\xd2\x3e\x98\xd2\xbe\x30\xa5\x7d\x71\xec\xd2\x83\xb4\xc6\x5e\xe8\x51" "\x93\xf3\x7f\xbe\x36\xde\x79\x95\xff\x99\x91\xe1\xd7\xdb\x30\xfe\xeb" "\xe8\x98\xf7\x6d\x90\xf3\x3f\x5b\x7b\x3c\x57\xf9\x7f\x69\x64\xbd\x7a" "\xfe\xe5\x6f\xe7\x2e\xff\xad\xc3\xae\xb8\x1d\x9d\xa1\xfc\xcf\xdf\x79" "\xef\xa7\xe7\x6f\xbf\xff\xc1\x2b\x37\xde\xbb\xfe\xee\xc6\xbb\x1b\x3f" "\xbe\xb4\xb6\x76\xe1\xd2\xe5\xcb\x57\xae\x5c\x39\xff\xce\x8d\x9b\x1b" "\x17\xf6\xff\x3d\x9e\x5e\xcf\x81\x9c\x7f\x1e\xfb\xda\x79\xa0\xed\x92" "\xf3\xcf\x99\xcb\xbf\x5d\x72\xfe\x5f\x48\xb5\xfc\xdb\x25\xe7\xff\xc5" "\x54\xcb\xbf\x5d\x72\xfe\xf9\xfd\x9e\xfc\xdb\x25\xe7\x9f\x3f\xfb\xc8" "\xbf\x5d\x72\xfe\x2f\xa5\x5a\xfe\xed\x92\xf3\xff\x4a\xaa\xe5\xdf\x2e" "\x3b\xbb\x9b\x0b\x55\xfe\x2f\xa7\x5a\xfe\xed\x92\xf7\xff\xaf\xa6\x5a" "\xfe\xed\x92\xf3\x7f\x25\xd5\xf2\x6f\x97\x9c\xff\xb9\x54\xcb\xbf\x5d" "\x72\xfe\xe7\x53\x7d\x88\xfc\x7d\x3d\xfc\x29\x92\xf3\xcf\x47\xb8\xec" "\xff\xed\x92\xf3\x5f\x4b\xb5\xfc\xdb\x25\xe7\x7f\x31\xd5\xf2\x6f\x97" "\x9c\xff\xa5\x54\xcb\xbf\x5d\x72\xfe\xaf\xa6\x5a\xfe\xed\x92\xf3\xff" "\x5a\xaa\xe5\xdf\x2e\x39\xff\xcb\xa9\x96\x7f\xbb\xe4\xfc\xbf\x9e\x6a" "\xf9\xb7\x4b\xce\xff\x4a\xaa\xe5\xdf\x2e\x39\xff\x6f\xa4\x5a\xfe\xed" "\x92\xf3\xff\x66\xaa\xe5\xdf\x2e\x39\xff\xd7\x52\x2d\xff\x76\xc9\xf9" "\x7f\x2b\xd5\xf2\x6f\x97\x9c\xff\xb7\x53\x2d\xff\x76\xc9\xf9\x7f\x27" "\xd5\xf2\x6f\x97\x9c\xff\xeb\xa9\x96\x7f\xbb\x1c\x7c\xff\xbf\x19\x33" "\x66\xcc\xe4\x99\xa6\x9f\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\x51\xb3\x38\x9d\xb8\xe9\x6d\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\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x3f\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\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6" "\xf7\x03\x3f\xb3\x6f\x5e\x3b\x84\x18\x08\xc1\xc9\xdf\xc0\x26\x31\x21" "\x24\x4b\x76\x6d\x27\x7e\xe1\xdf\x14\x13\x5e\x1b\xa0\x14\x48\x28\xf4" "\x05\xc7\xf5\xae\xcd\x82\xdf\xf0\xda\x25\x50\x24\x9b\x06\x4a\x24\x8c" "\x8a\x2a\xaa\xa6\x17\x6d\x01\xa1\x36\x52\x55\x11\x55\x5c\x50\x44\x69" "\x2e\xaa\xbe\x5c\x95\xf6\x82\xde\x54\x54\x95\x90\x1a\x55\x01\x05\x54" "\xa4\xb6\xa2\xd9\x6a\xe6\x3c\xcf\xe3\x99\xd9\xd9\x39\xbb\xde\xf1\x7a" "\xf6\x3c\x9f\x8f\x14\xff\xbc\x3b\x67\xe6\x9c\x39\xf3\xcc\xec\x7e\xd7" "\xf9\xee\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xb4\xbb\xf5\x8d\xf3\x9f\x6d\x14\x45\xd1\xfc\xaf\xf5" "\xc7\xf6\xa2\x78\x41\xf3\xef\x5b\xa7\xbe\x30\xd6\x9c\xaf\xbb\xd6\x47" "\x08\x00\x00\x00\xac\xd7\xff\xb6\xfe\x7c\xee\x86\xf4\x89\x43\xab\xb8" "\x52\xdb\x36\x7f\xfb\x8a\x7f\xf8\xfa\xd2\xd2\xd2\x52\xf1\xfe\xd1\xdf" "\x1d\xff\xe2\xd2\x52\xba\x60\xaa\x28\xc6\xb7\x14\x45\xeb\xb2\xe8\xa9" "\x7f\xfb\x40\xa3\x7d\x9b\xe0\xb1\x62\xb2\x31\xd2\xf6\xf1\x48\xc5\xee" "\x47\x2b\x2e\x1f\xab\xb8\x7c\xbc\xe2\xf2\x89\x8a\xcb\xb7\x54\x5c\x3e" "\x59\x71\xf9\xb2\x13\xb0\xcc\xd6\xf2\xe7\x31\xad\x1b\xdb\xd5\xfa\xeb" "\xf6\xf2\x94\x16\x37\x16\xe3\xad\xcb\x76\xf5\xb8\xd6\x63\x8d\x2d\x23" "\x23\xf1\x67\x39\x2d\x8d\xd6\x75\x96\xc6\x8f\x15\x0b\xc5\x89\x62\xbe" "\x98\xed\xd8\xbe\xdc\xb6\xd1\xda\xfe\x5b\xb7\x36\xf7\xf5\xb6\x22\xee" "\x6b\xa4\x6d\x5f\x3b\x9b\x2b\xe4\x47\x9f\x3c\x1a\x8f\xa1\x11\xce\xf1" "\xae\x8e\x7d\x5d\xbe\xcd\xe8\x07\x6f\x28\xa6\x7e\xfc\xa3\x4f\x1e\xfd" "\xe3\x73\xcf\xde\xdc\x6b\x56\x9e\x86\x8e\xdb\x2b\x8f\xf3\xce\xdb\x9a" "\xc7\xf9\xe9\xf0\x99\xf2\x58\x1b\xc5\x96\x74\x4e\xe2\x71\x8e\xb4\x1d" "\xe7\xce\x1e\x8f\xc9\x68\xc7\x71\x36\x5a\xd7\x6b\xfe\xbd\xfb\x38\x9f" "\x5b\xe5\x71\x8e\x5e\x3e\xcc\x0d\xd5\xfd\x98\x4f\x16\x23\xad\xbf\x7f" "\xa7\x75\x9e\xc6\xda\x7f\xac\x97\xce\xd3\xce\xf0\xb9\xff\xba\xbd\x28" "\x8a\x8b\x97\x0f\xbb\x7b\x9b\x65\xfb\x2a\x46\x8a\x6d\x1d\x9f\x19\xb9" "\xfc\xf8\x4c\x96\x2b\xb2\x79\x1b\xcd\xa5\xf4\xe2\x62\x6c\x4d\xeb\xf4" "\xd6\x55\xac\xd3\xe6\x9c\xdb\xd5\xb9\x4e\xbb\x9f\x13\xf1\xf1\xbf\x35" "\x5c\x6f\x6c\x85\x63\x68\x7f\x98\x7e\xf0\xa9\x89\x65\x8f\xfb\x5a\xd7" "\x69\xd4\xbc\xd7\x2b\x3d\x57\xba\xd7\xe0\xa0\x9f\x2b\xc3\xb2\x06\xe3" "\xba\xf8\x4e\xeb\x4e\x3f\xde\x73\x0d\xee\x0a\xf7\xff\x93\x77\xac\xbc" "\x06\x7b\xae\x9d\x1e\x6b\x30\xdd\xef\xb6\x35\x78\x5b\xd5\x1a\x1c\x99" "\x18\x6d\x1d\x73\x7a\x10\x1a\xad\xeb\x5c\x5e\x83\xbb\x3b\xb6\x1f\x6d" "\xed\xa9\xd1\x9a\xcf\xdc\xd1\x7f\x0d\xce\x9c\x3b\x79\x66\x66\xf1\xe3" "\x9f\x78\xed\xc2\xc9\x23\xc7\xe7\x8f\xcf\x9f\xda\xbb\x7b\xf7\xec\xde" "\x7d\xfb\x0e\x1c\x38\x30\x73\x6c\xe1\xc4\xfc\x6c\xf9\xe7\x15\x9e\xed" "\xe1\xb7\xad\x18\x49\xcf\x81\xdb\xc2\xb9\x8b\xcf\x81\x57\x77\x6d\xdb" "\xbe\x54\x97\xbe\x3c\xb8\xe7\xe1\x64\x9f\xe7\xe1\xf6\xae\x6d\x07\xfd" "\x3c\x1c\xeb\xbe\x73\x8d\x8d\x79\x42\x2e\x5f\xd3\xe5\x73\xe3\xa1\xe6" "\x49\x9f\xbc\x34\x52\xac\xf0\x1c\x6b\x3d\x3e\x77\xad\xff\x79\x98\xee" "\x77\xdb\xf3\x70\xac\xed\x79\xd8\xf3\x6b\x4a\x8f\xe7\xe1\xd8\x2a\x9e" "\x87\xcd\x6d\xce\xdc\xb5\xba\xef\x59\xc6\xda\xfe\xeb\x75\x0c\x57\xeb" "\x6b\xc1\xf6\xb6\x35\xd8\xfd\xfd\x48\xf7\x1a\x1c\xf4\xf7\x23\xc3\xb2" "\x06\x27\xc3\xba\xf8\x97\xbb\x56\xfe\x5a\xb0\x33\x1c\xef\xe3\xd3\x6b" "\xfd\x7e\x64\x74\xd9\x1a\x4c\x77\x37\xbc\xf6\x34\x3f\x93\xbe\xdf\x9f" "\x3c\xd0\x1a\xbd\xd6\xe5\x2d\xcd\x0b\xae\x9b\x28\xce\x2f\xce\x9f\xbd" "\xe7\xd1\x23\xe7\xce\x9d\xdd\x5d\x84\xb1\x21\x5e\xd2\xb6\x56\xba\xd7" "\xeb\xb6\xb6\xfb\x54\x2c\x5b\xaf\x23\x6b\x5e\xaf\x87\x16\x5e\xf1\xf8" "\x2d\x3d\x3e\xbf\x3d\x9c\xab\xc9\xd7\x36\xff\x98\x5c\xf1\xb1\x6a\x6e" "\x73\xef\x3d\xfd\x1f\xab\xd6\x57\xb7\xde\xe7\xb3\xe3\xb3\x7b\x8a\x30" "\x06\x6c\xa3\xcf\x67\xaf\xaf\xe6\xcd\xf3\x99\xb2\x64\x9f\xf3\xd9\xdc" "\xe6\xd3\x33\xeb\xff\x5e\x3c\xe5\xd2\xb6\xd7\xdf\xf1\x15\x5e\x7f\x63" "\xee\x7f\xbe\xdc\x5f\xba\xa9\xc7\x46\xc7\xc7\xca\xe7\xef\x68\x3a\x3b" "\xe3\x1d\xaf\xc7\x9d\x0f\xd5\x58\xeb\xb5\xab\xd1\xda\xf7\x73\x33\xab" "\x7b\x3d\x1e\x0f\xff\x6d\xf4\xeb\xf1\x8d\x7d\x5e\x8f\x77\x74\x6d\x3b" "\xe8\xd7\xe3\xf1\xee\x3b\x17\x5f\x8f\x1b\x55\x3f\xed\x58\x9f\xee\xc7" "\x73\x32\xac\x93\x13\xb3\xfd\x5f\x8f\x9b\xdb\xec\xd8\xb3\xd6\x35\x39" "\xd6\xf7\xf5\xf8\xf6\x30\x1b\xe1\xfc\xbf\x26\x24\x85\x94\x8b\xda\xd6" "\xce\x4a\xeb\x36\xed\x6b\x6c\x6c\x3c\xdc\xaf\xb1\xb8\x87\xce\x75\xba" "\xb7\x63\xfb\xf1\x90\xcd\x9a\xfb\x7a\x72\xcf\x95\xad\xd3\x3b\x6f\x2f" "\x6f\x6b\x34\xdd\xbb\xcb\x36\x6a\x9d\x4e\x75\x6d\x3b\xe8\x75\x9a\x5e" "\xaf\x56\x5a\xa7\x8d\xaa\x9f\xbe\x5d\x99\xee\xc7\x73\x32\xac\x8b\x1b" "\xf7\xf6\x5f\xa7\xcd\x6d\x9e\xbe\x77\xfd\xaf\x9d\x5b\xe3\x5f\xdb\x5e" "\x3b\x27\xaa\xd6\xe0\xf8\xe8\x44\xf3\x98\xc7\xd3\x22\x2c\x5f\xef\x97" "\xb6\xc6\x35\x78\x4f\x71\xb4\x38\x5d\x9c\x28\xe6\x5a\x97\x4e\xb4\xd6" "\x53\xa3\xb5\xaf\xe9\xfb\x56\xb7\x06\x27\xc2\x7f\x1b\xfd\x5a\xb9\xa3" "\xcf\x1a\xbc\xb3\x6b\xdb\x41\xaf\xc1\xf4\x75\x6c\xa5\xb5\xd7\x18\x5b" "\x7e\xe7\x07\xa0\xfb\xf1\x9c\x0c\xeb\xe2\x89\xfb\xfa\xaf\xc1\xe6\x36" "\x6f\xda\x3f\xd8\xef\x5d\xef\x0c\x9f\x49\xdb\xb4\x7d\xef\xda\xfd\xf3" "\xb5\x95\x7e\xe6\x75\x4b\xd7\x69\xba\x9a\x3f\xf3\x6a\x1e\xe7\x5f\xef" "\xef\xff\xb3\xd9\xe6\x36\x27\x0e\xac\x35\x67\xf6\x3f\x4f\x77\x87\xcf" "\x5c\xd7\xe3\x3c\x75\x3f\x7f\x57\x7a\x4e\xcd\x15\x1b\x73\x9e\x76\x84" "\xe3\x7c\xf6\xc0\xca\xe7\xa9\x79\x3c\xcd\x6d\xbe\x78\x70\x95\xeb\xe9" "\x50\x51\x14\x17\x3e\xfa\x40\xeb\xe7\xbd\xe1\xdf\x57\xfe\xfc\xfc\x77" "\xbf\xde\xf1\xef\x2e\xbd\xfe\x4d\xe7\xc2\x47\x1f\xf8\xe1\xf5\xc7\xfe" "\x66\x2d\xc7\x0f\xc0\xe6\xf7\x7c\x39\xb6\x95\x5f\xeb\xda\xfe\x65\x6a" "\x35\xff\xfe\x0f\x00\x00\x00\x6c\x0a\x31\xf7\x8f\x84\x99\xc8\xff\x00" "\x00\x00\x50\x1b\x31\xf7\xc7\xff\x2b\x3c\x91\xff\x01\x00\x00\xa0\x36" "\x62\xee\x1f\x0b\x33\xc9\x24\xff\xef\x78\xd3\xb3\x0b\xcf\x5f\x28\x52" "\x33\x7f\x29\x88\x97\xa7\xd3\xf0\x60\xb9\x5d\xec\xb8\xce\x86\x8f\xa7" "\x96\x2e\x6b\x7e\xfe\x81\xaf\xce\xff\xe4\x9b\x17\x56\xb7\xef\x91\xa2" "\x28\x7e\xfa\xe0\x6f\xf4\xdc\x7e\xc7\x83\xf1\xb8\x4a\x53\xe1\x38\x9f" "\x7a\x73\xe7\xe7\x97\x5f\xf1\xc2\x4f\xbe\x39\x5e\xfd\xcb\x09\x1f\x79" "\xf8\x42\xda\x6f\x7b\x7f\xfd\x4b\xe1\xf6\xe3\xfd\x59\xed\x32\xe8\x55" "\xc1\x9d\x2d\x8a\xe2\x5b\x37\x7c\xbe\xb5\x9f\xa9\x0f\x5c\x6a\xcd\xa7" "\x1f\x7c\xa4\x35\xdf\x73\xf1\xf1\xc7\x9a\xdb\x3c\x77\xb0\xfc\x38\x5e" "\xff\x99\x97\x94\xdb\xff\x41\x38\xfe\x43\xc7\x8e\x74\x5c\xff\x99\x70" "\x1e\xbe\x1f\xe6\xec\xdb\x7b\x9f\x8f\x78\xbd\xaf\x5d\x7a\xcd\xce\xfd" "\xef\xbb\xbc\xbf\x78\xbd\xc6\x6d\x2f\x6c\xdd\xed\x27\x3e\x58\xde\x6e" "\xfc\x3d\x39\x5f\x78\xac\xdc\x3e\x9e\xe7\x95\x8e\xff\x2f\x3f\xf7\xe4" "\xd7\x9a\xdb\x3f\xfa\xaa\xde\xc7\x7f\x61\xa4\xf7\xf1\x3f\x19\x6e\xf7" "\xab\x61\xfe\xf7\xcb\xcb\xed\xdb\x1f\x83\xe6\xc7\xf1\x7a\x9f\x09\xc7" "\x1f\xf7\x17\xaf\x77\xcf\x57\xbe\xdd\xf3\xf8\x9f\xfa\x6c\xb9\xfd\x99" "\xb7\x94\xdb\x3d\x12\x66\xdc\xff\x9d\xe1\xe3\x5d\x6f\x79\x76\xa1\xfd" "\x7c\x3d\xda\x38\xd2\x71\xbf\x8a\xb7\x96\xdb\xc5\xfd\xcf\x7e\xf7\xb7" "\x5b\x97\xc7\xdb\x8b\xb7\xdf\x7d\xfc\x93\x87\x2f\x75\x9c\x8f\xee\xf5" "\xf1\xf4\x3f\x95\xb7\x33\xd3\xb5\x7d\xfc\x7c\xdc\x4f\xf4\x17\x5d\xfb" "\x6f\xde\x4e\xfb\xfa\x8c\xfb\x7f\xf2\xb7\x1e\xe9\x38\xcf\x55\xfb\x7f" "\xea\x3d\xcf\xbc\xbc\x79\xbb\xdd\xfb\xbf\xbb\x6b\xbb\xd1\xae\xeb\x77" "\xff\xc6\xa6\x3f\xfc\xcc\xe7\x7b\xee\x2f\x1e\xcf\xa1\x3f\x3b\xd3\x71" "\x7f\x0e\xbd\x3b\x3c\x8f\xc3\xfe\x9f\xf8\x60\x58\x8f\xe1\xf2\xff\x79" "\xea\xf3\x1d\xfb\x8d\x1e\x79\x77\xe7\xeb\x4f\xdc\xfe\x4b\xdb\x2f\x74" "\xdc\x9f\xe8\x6d\x3f\x2e\xf7\xff\xd4\xeb\x8f\xb7\xe6\xbf\x4f\xfd\xe4" "\xf7\xaf\x7b\xc1\xf5\x2f\xbc\xf8\xca\xe6\xb9\x2b\x8a\xef\xbc\xb7\xbc" "\xbd\xaa\xfd\x1f\xff\xa3\xd3\x1d\xc7\xff\xe5\x9b\xee\x6a\x3d\x1e\xf1" "\xf2\xf8\x32\xd3\xbd\xff\x95\xc4\xfd\x9f\xfd\xd8\xf4\xa9\xd3\x8b\xe7" "\x17\xe6\xda\xce\x6a\xeb\x77\xe7\xbc\xa3\x3c\x9e\x2d\x93\x5b\xb7\x35" "\x8f\xf7\x86\xf0\xda\xda\xfd\xf1\xe1\xd3\xe7\x3e\x34\x7f\x76\x6a\x76" "\x6a\xb6\x28\xa6\xea\xfb\x2b\xf4\xae\xd8\x57\xc2\xfc\x61\x39\x2e\xae" "\xf5\xfa\x77\x3d\x1c\x1e\xcf\x5b\x7e\xef\x5b\xdb\xee\xf8\xc7\xcf\xc5" "\xcf\xff\xf3\x43\xe5\xe7\x2f\xbd\xbd\xfc\xba\xf5\xea\xb0\xdd\x17\xc2" "\xe7\xb7\x97\x8f\xdf\x52\x63\x9d\xfb\x7f\xe2\xd6\x9b\x5a\xcf\xef\xc6" "\xd3\xe5\xc7\x1d\x3d\xf6\x01\xd8\xb9\xeb\x3f\x0e\xac\x6a\xc3\x70\xff" "\xbb\xbf\x2f\x88\xeb\xfd\xcc\x4b\x3f\xd4\x3a\x0f\xcd\xcb\x5a\x5f\x37" "\xe2\xf3\x7a\x9d\xc7\xff\xbd\xb9\xf2\x76\xbe\x11\xce\xeb\x52\xf8\xcd" "\xcc\xb7\xdd\x74\x79\x7f\xed\xdb\xc7\xdf\x8d\x70\xe9\xbd\xe5\xf3\x7d" "\xdd\xe7\x2f\xbc\xcc\xc5\xc7\xf5\x4f\xc2\xe3\xfd\xce\xef\x97\xb7\x1f" "\x8f\x2b\xde\xdf\xef\x85\xef\x63\xbe\xbd\xa3\xf3\xf5\x2e\xae\x8f\x6f" "\x5c\x18\xe9\xbe\xfd\xd6\x6f\xf1\xb8\x18\x5e\x4f\x8a\x8b\xe5\xe5\x71" "\xab\x78\xbe\x2f\x3d\x77\x53\xcf\xc3\x8b\xbf\x87\xa4\xb8\x78\x73\xeb" "\xe3\xdf\x49\xb7\x73\xf3\x9a\xee\xe6\x4a\x16\x3f\xbe\x38\x73\x62\xe1" "\xd4\xf9\x47\x67\xce\xcd\x2f\x9e\x9b\x59\xfc\xf8\x27\x0e\x9f\x3c\x7d" "\xfe\xd4\xb9\xc3\xad\xdf\xe5\x79\xf8\xc3\x55\xd7\xbf\xfc\xfa\xb4\xad" "\xf5\xfa\x34\x37\xbf\xef\xde\x62\x76\x6b\x51\x14\xa7\x8b\xd9\x0d\x78" "\xc1\xba\x3a\xc7\xdf\xfc\xdb\xea\x8e\xff\xcc\xc3\x47\xe7\xf6\xcf\xde" "\x31\x37\x7f\xec\xc8\xf9\x63\xe7\x1e\x3e\x33\x7f\xf6\xf8\xd1\xc5\xc5" "\xa3\xf3\x73\x8b\x77\x1c\x39\x76\x6c\xfe\x63\x55\xd7\x5f\x98\xbb\x7f" "\xf7\x9e\x83\x7b\xf7\xef\x99\x3e\xbe\x30\x77\xff\x81\x83\x07\xf7\x1e" "\x9c\x5e\x38\x75\xba\x79\x18\xe5\x41\x55\xd8\x37\xfb\x91\xe9\x53\x67" "\x0f\xb7\xae\xb2\x78\xff\xbd\x07\x77\xdf\x77\xdf\xbd\xb3\xd3\x27\x4f" "\xcf\xcd\xdf\xbf\x7f\x76\x76\xfa\x7c\xd5\xf5\x5b\x5f\x9b\xa6\x9b\xd7" "\xfe\xf5\xe9\xb3\xf3\x27\x8e\x9c\x5b\x38\x39\x3f\xbd\xb8\xf0\x89\xf9" "\xfb\x77\x1f\xdc\xb7\x6f\x4f\xe5\x6f\x03\x3c\x79\xe6\xd8\xe2\xd4\xcc" "\xd9\xf3\xa7\x66\xce\x2f\xce\x9f\x9d\x29\xef\xcb\xd4\xb9\xd6\xa7\x9b" "\x5f\xfb\xaa\xae\x4f\x3d\x2d\xfe\x6b\xf9\xfd\x6c\xb7\x46\xf9\x8b\xf8" "\x8a\x77\xdd\xbd\x2f\xfd\x7e\xd6\xa6\xaf\x7e\x6a\xc5\x9b\x2a\x37\xe9" "\xfa\x05\xa2\xcf\x86\xdf\x45\xf3\xf7\x2f\x3a\x73\x60\x35\x1f\xc7\xdc" "\x3f\x1e\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x3f\x11\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80" "\xda\x88\xb9\x7f\x32\xcc\x24\x93\xfc\x5f\xcb\xfe\xff\x2a\xf6\xaf\xff" "\xbf\xd6\xfe\x7f\x79\xb9\xfe\x7f\x5e\xfd\xff\x33\x1f\x2d\x7b\xa5\x9b" "\xbd\xff\x1f\xfb\xf3\xfa\xff\x79\xb8\xc6\xfd\xff\x75\xef\x5f\xff\x5f" "\xff\xbf\x7e\xfd\xff\xd5\xf7\xe7\x37\xfb\xf1\xeb\xff\xeb\xff\xb3\xdc" "\xb0\xf5\xff\x63\xee\xdf\x5a\x14\x59\xe6\x7f\x00\x00\x00\xc8\x41\xcc" "\xfd\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xaf\x0b\x33\x91" "\xff\x01\x00\x00\xa0\x36\x62\xee\x7f\x41\x98\x49\x26\xf9\x5f\xff\x7f" "\x55\xfd\xff\x3d\x55\x85\xab\xfa\xf7\xff\xbd\xff\xbf\xfe\x7f\xb1\x39" "\xfb\xff\xf1\xc1\xd1\xff\xcf\xc6\x9a\xfb\xf7\xef\x7b\xa8\xe3\x43\xfd" "\xff\x40\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x75\x1b\x5f\xf1\x92" "\x6b\xd5\xff\x8f\xb9\xff\xfa\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20" "\xe6\xfe\x17\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x10\x66" "\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xbf\x3d\xcc\x24\x93\xfc\xaf\xff" "\xef\xfd\xff\xf5\xff\xf5\xff\x6b\xdd\xff\x5f\xef\xfb\xff\xb7\x1d\x8c" "\xfe\xff\xe6\xe0\xfd\xff\xfb\xd3\xff\xaf\x70\xc5\xfd\xff\xc9\x8d\xef" "\xff\x8f\xeb\xff\xaf\xfb\xf8\xc7\x07\x7b\xfc\xc3\xdd\xff\xaf\x3c\x7c" "\xfd\x7f\xae\x8a\x61\x7b\xff\xff\x98\xfb\x5f\x14\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\xff\xe2\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23" "\xe6\xfe\x97\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xdf\x18\x66" "\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbd\xff\xea" "\xf7\xff\x2f\xff\xa6\xff\x3f\x5c\xf4\xff\xfb\xd3\xff\xaf\xe0\xfd\xff" "\xf3\xea\xff\x0f\xf8\xf8\x87\xbb\xff\x3f\xe8\xf7\xff\x1f\x7f\x73\xf7" "\xf5\xf5\xff\xe9\x65\xd8\xfa\xff\x31\xf7\xbf\x34\xcc\x24\x93\xfc\x0f" "\x00\x00\x00\x39\x88\xb9\xff\xa6\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23" "\xe6\xfe\x97\x85\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xef\x08\x33" "\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xf7\xde\x7f\x75" "\xff\xbf\xa4\xff\x3f\x5c\xf4\xff\xfb\xd3\xff\xaf\xa0\xff\xaf\xff\xaf" "\xff\xbf\xba\xfe\x7f\x8f\x6f\x7e\xf5\xff\xe9\x65\xd8\xfa\xff\x31\xf7" "\xdf\x1c\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x4b\x98\x89" "\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xff\x0b\x33\x91\xff\x01\x00\x00" "\xa0\x36\x62\xee\xdf\x19\x66\x92\x49\xfe\xd7\xff\xaf\x4b\xff\x7f\xa2" "\x63\xdf\xfa\xff\xfa\xff\x2b\xed\xff\xee\x09\xfd\x7f\xfd\xff\x7a\xd3" "\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xff\x2a\xdf\xff\x7f\xb9" "\xb5\xf4\xff\xb7\x54\xdd\x18\xb5\x31\x6c\xfd\xff\x98\xfb\x5f\x1e\x66" "\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x8a\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\x57\x86\x99\xc8\xff\x00\x00\x00\x50\x1b\x31" "\xf7\x4f\x85\x99\x64\x92\xff\xf5\xff\xeb\xd2\xff\x2f\xfd\xe9\x5f\x3d" "\xf1\xca\x42\xff\x5f\xff\xbf\x62\xff\x35\xed\xff\xc7\x65\xa0\xff\x9f" "\x39\xfd\xff\xfe\xf4\xff\x2b\xe8\xff\xeb\xff\xeb\xff\x6f\x48\xff\x9f" "\x7c\x0c\x5b\xff\x3f\xe6\xfe\x5b\xc3\x4c\x32\xc9\xff\x00\x00\x00\x90" "\x83\x98\xfb\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xbf\x3d" "\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x57\x98\x49\x26\xf9\x5f" "\xff\xbf\x5e\xfd\xff\x48\xff\x5f\xff\xbf\xdf\xfe\x6b\xda\xff\x4f\xf4" "\xff\xf3\xa6\xff\xdf\x43\xdb\x93\x54\xff\xbf\x82\xfe\xbf\xfe\x7f\xf6" "\xfd\xff\xf8\xdd\xaf\xfe\x3f\x83\x31\x6c\xfd\xff\x98\xfb\x5f\x15\x66" "\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x47\x98\x89\xfc\x0f\x00" "\x00\x00\xb5\x11\x73\xff\xab\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98" "\xfb\xef\x0c\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\xf7\xde\xbf\xfe\xff\xe6\xa4\xff\xdf\xdf\x5a\xfb\xff\x13\xfa\xff\xfa" "\xff\xfa\xff\x99\xf5\xff\xbd\xff\x3f\x83\x35\x6c\xfd\xff\x98\xfb\x5f" "\x13\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\x7f\x57\x98\x89\xfc" "\x0f\x00\x00\x00\xb5\x11\xff\xff\xcd\xf2\xff\x7b\x95\xff\x01\x00\x00" "\xa0\x8e\x62\xee\x9f\x0e\x33\xc9\x24\xff\xeb\xff\xeb\xff\xe7\xd4\xff" "\x6f\xe8\xff\xeb\xff\xaf\xb3\xff\xdf\xfc\x2a\xa1\xff\x3f\xdc\xf4\xff" "\xfb\xf3\xfe\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb" "\xff\xc7\xdc\xff\xda\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe" "\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x67\xc2\x4c\xe4\x7f" "\x00\x00\x00\xa8\x8d\x98\xfb\x67\xc3\x4c\x32\xc9\xff\xfa\xff\xfa\xff" "\x39\xf5\xff\xbd\xff\xbf\xfe\xbf\xf7\xff\xaf\x3f\xfd\xff\xfe\xf4\xff" "\x2b\xe8\xff\xeb\xff\xd7\xad\xff\x5f\x14\xfa\xff\x5c\x53\xc3\xd6\xff" "\x8f\xb9\x7f\x77\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x9e" "\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xbd\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\xf7\x86\x99\x64\x92\xff\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x7b\xef\x5f\xff\x7f\x73\xd2\xff\xef\x4f\xff\xbf" "\x82\xfe\xbf\xfe\x7f\xdd\xfa\xff\xde\xff\x9f\x6b\x6c\xd8\xfa\xff\x31" "\xf7\xdf\x17\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf\x2f\xcc" "\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x7f\x98\x49\xc8\xff\xbd\xfe" "\xbf\x6e\x00\x00\x00\x60\x73\x89\xb9\xff\x40\x98\x49\x26\xff\xfe\xaf" "\xff\x5f\x93\xfe\xff\x6f\xfe\x5d\xc7\xbe\xf5\xff\xf5\xff\xfb\xed\x7f" "\x30\xfd\xff\xad\xfa\xff\x61\xea\xff\x0f\x97\x9a\xf6\xff\xbb\x9f\x16" "\x57\x4c\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03\x35\x6c\xfd" "\xff\x98\xfb\x0f\x86\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xbf" "\x2e\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xff\x87\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\xff\x4c\x98\x49\x26\xf9\x5f\xff\xbf\x26" "\xfd\xff\x2e\xfa\xff\xfa\xff\xfd\xf6\xef\xfd\xff\xf5\xff\xeb\xac\xa6" "\xfd\xff\x81\xa9\x55\xff\x7f\x44\xff\x5f\xff\x7f\xb8\x8e\x5f\xff\x5f" "\xff\x9f\xe5\xae\x7e\xff\x3f\xfe\x6d\x75\xfd\xff\x98\xfb\xef\x0f\x33" "\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xff\xd9\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\xd7\x87\x99\xc8\xff\x00\x00\x00\x50\x1b\x31" "\xf7\x1f\x0a\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x5f\x9d" "\xfe\xff\xeb\x8b\x6e\xc3\xd8\xff\x6f\x2e\x1e\xfd\xff\x7a\xd1\xff\xef" "\xaf\x56\xfd\x7f\xef\xff\xaf\xff\x3f\x64\xc7\xaf\xff\xaf\xff\xcf\x72" "\xc3\xf6\xfe\xff\x31\xf7\xbf\x21\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39" "\x88\xb9\xff\x81\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x37\x86" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x29\xcc\x24\x93\xfc\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xef\xfd\xff\x7b\xef\x5f\xff\x7f\x73\xd2" "\xff\xef\x4f\xff\xbf\x82\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x03\x35\x6c" "\xfd\xff\x98\xfb\xdf\x1c\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc" "\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\xb7\x86\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x2d\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x7b\xff\xfa\xff\x9b\x93\xfe\x7f\x7f" "\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7" "\xdc\xff\x73\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x0f\x86" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\xbf\x3d\xcc\x44\xfe\x07\x00" "\x00\x80\xda\x88\xb9\xff\x1d\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\xff\xde\xfb\xd7\xff\xdf\x9c\xf4\xff\xfb\xd3\xff\xaf" "\xa0\xff\xaf\xff\x3f\x74\xfd\xff\xe6\x25\xfa\xff\x6c\x5e\xc3\xd6\xff" "\x8f\xb9\xff\x9d\x61\x26\x99\xe4\x7f\x00\x00\x00\xc8\x41\xcc\xfd\x3f" "\x1f\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xae\x30\x13\xf9\x1f" "\x00\x00\x00\x6a\x23\xe6\xfe\x5f\x08\x33\xc9\x24\xff\xeb\xff\xeb\xff" "\x0f\x57\xff\x7f\xe9\x42\xfb\xf5\xf4\xff\xf5\xff\x8b\x41\xf5\xff\x9b" "\x57\xd2\xff\xcf\x82\xfe\x7f\x7f\xfa\xff\x15\x7a\xf4\xff\xb7\xe8\xff" "\xeb\xff\x7b\xff\x7f\xfd\x7f\xae\xd8\xb0\xf5\xff\x63\xee\x7f\x77\x98" "\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x7b\xc2\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8d\x98\xfb\xdf\x1b\x66\x22\xff\x03\x00\x00\x40\x6d\xc4" "\xdc\xff\x50\x98\x49\x26\xf9\x5f\xff\x3f\xcb\xfe\x7f\xba\xcb\xc3\xd7" "\xff\xf7\xfe\xff\xfa\xff\xde\xff\x5f\xff\x7f\x7d\xf4\xff\xfb\xd3\xff" "\xaf\xe0\xfd\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7\xdc" "\xff\x70\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xfb\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x7f\x31\xcc\x44\xfe\x07\x00\x00" "\x80\xda\x88\xb9\xff\xfd\x61\x26\x99\xe4\x7f\xfd\xff\x2c\xfb\xff\x43" "\xfc\xfe\xff\x75\xeb\xff\x8f\x75\xac\x8f\x9c\xfa\xff\x93\x6d\x8f\x67" "\x5a\x97\xfa\xff\xfa\xff\x1b\x40\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa" "\xff\xc3\xdc\xff\x0f\xab\x79\xeb\x0a\xd7\xd7\xff\x67\x18\x0d\x5b\xff" "\x3f\xe6\xfe\x0f\x84\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31\xf7\xff" "\x52\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x2f\x87\x99\xc8\xff" "\x00\x00\x00\x50\x1b\x31\xf7\xff\x4a\x98\x49\x26\xf9\x5f\xff\x5f\xff" "\x5f\xff\xdf\xfb\xff\x7b\xff\xff\xde\xfb\xd7\xff\xdf\x9c\xf4\xff\xfb" "\xd3\xff\xaf\xa0\xff\xaf\xff\x3f\xcc\xfd\xff\x0a\xfa\xff\x0c\xa3\x61" "\xeb\xff\xc7\xdc\xff\xab\x61\x26\x2b\x06\xbf\x1f\xfe\xe7\x2a\xee\x26" "\x00\x00\x00\x30\x44\x62\xee\xff\x60\x98\x49\x26\xff\xfe\x0f\x00\x00" "\x00\x39\x88\xb9\xff\x70\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff" "\x23\x61\x26\x99\xe4\x7f\xfd\xff\xee\xfe\x7f\x7c\x47\x55\xfd\x7f\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\xff\xcd\x68\x70\xfd\xff\x97\x5d\x5f\x14\xfa" "\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xac\xc7\xb0\xf5\xff\x63" "\xee\x3f\x12\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\x6b\x61" "\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x47\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8d\x98\xfb\xe7\xc2\x4c\x32\xc9\xff\xd7\xb0\xff\x3f\x3e\x9c" "\xfd\x7f\xef\xff\x7f\xa5\xfd\xff\x9f\xea\xff\xeb\xff\x07\xfa\xff\xbd" "\xe9\xff\x6f\x0c\xef\xff\xdf\x9f\xfe\x7f\x05\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\x06\x6a\xd8\xfa\xff\x31\xf7\xcf\x87\x99\x64\x92\xff\x01\x00" "\x00\xa0\xc6\xd2\x8f\x83\x63\xee\x3f\x16\x66\x22\xff\x03\x00\x00\x40" "\x6d\xc4\xdc\x7f\x3c\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x43" "\x61\x26\x99\xe4\x7f\xef\xff\xaf\xff\xef\xfd\xff\xaf\x45\xff\x7f\xac" "\x63\x7b\xfd\xff\x92\xfe\xbf\xfe\xff\x20\xe8\xff\xf7\xa7\xff\x5f\x41" "\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x81\x5a\x7f\xff\x3f\xbd\x8e\x0e\xa4" "\xff\x1f\x73\xff\x42\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x87\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x3f\x12\x66\x22\xff" "\x03\x00\x00\x40\x6d\xc4\xdc\x7f\x22\xcc\x24\x93\xfc\xaf\xff\xaf\xff" "\x9f\x7b\xff\xbf\x51\x14\x17\xbd\xff\xbf\xfe\x7f\xaf\xfd\xeb\xff\x6f" "\x4e\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0" "\xd6\xdf\xff\xbf\x7c\x95\xd6\x9f\xeb\xec\xff\xc7\xdc\x7f\x32\xcc\x24" "\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff\x54\x98\x89\xfc\xcf\xff\xb1" "\x77\x5f\x3f\x76\x9d\xe5\x1e\xc7\xf7\xc9\x49\x6c\x0f\x12\x0a\xff\x01" "\x5c\x73\xc5\x25\x48\x48\xe1\x4f\xe0\x96\x3b\x24\xae\x23\x5a\xe8\xc5" "\x09\xbd\x43\xe8\xbd\x84\xde\x6b\xe8\x25\xf4\xde\x7b\x0f\xbd\xd7\x50" "\x03\x92\x51\xc6\xcf\xf3\xd8\x33\x7b\xcf\x5a\x1e\xcf\xca\xec\xb5\xde" "\xf7\xf3\xb9\x79\x8e\xad\xf8\xcc\x76\x32\xc9\xd1\xef\x58\x5f\xbd\x00" "\x00\x00\x34\x23\x77\xff\xbd\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x3e\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xef\xbd\xff\x5f\x6d\xe5\xfd" "\xff\xbd\x7f\xbd\xfe\xff\x2c\xfd\xbf\xfe\x7f\x0a\x6b\xfd\xfd\xa5\x9b" "\xff\xba\x83\xa2\xf0\x03\xfb\xff\x3b\xdd\xf9\xaa\x7b\xea\xff\xf5\xff" "\xfa\xff\x41\xfa\x7f\xfd\xbf\xfe\x9f\xfd\xe6\xd6\xff\xe7\xee\xbf\x6f" "\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xbf\x5f\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xdf\x3f\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xaf\x8a\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xa7\xff" "\xbf\x41\xff\xaf\xff\x5f\x36\xef\xff\x0f\xd3\xff\x8f\xd0\xff\xeb\xff" "\xf5\xff\xfa\x7f\x26\x35\xb7\xfe\x3f\x77\xff\x03\xe2\x96\x4e\xf6\x3f" "\x00\x00\x00\xf4\x20\x77\xff\x03\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\x41\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe0\xb8\xa5" "\x93\xfd\xaf\xff\xd7\xff\xeb\xff\x97\xd2\xff\x9f\xf0\xfe\xff\xbe\xdf" "\x8f\xfe\x5f\xff\xbf\x89\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f\xff\xaf\xff" "\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb\x1f\x12\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\x1f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\x0f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x87\xc7\x2d\x9d\xec" "\x7f\xfd\xbf\xfe\x5f\xff\xbf\x94\xfe\xff\x98\xde\xff\xd7\xff\xeb\xff" "\x17\xee\xba\xd5\xb9\xff\x26\xe8\xff\xd7\xe9\xff\x47\x8c\xf4\xff\xab" "\x95\xfe\x7f\xc8\x05\xf7\xf3\x9b\x7f\x7b\xcb\xf9\xfc\x07\xd0\xff\xeb" "\xff\x59\x37\xb7\xfe\x3f\x77\xff\x23\xe2\x96\xbb\xad\x56\x27\x2e\xf6" "\x37\x09\x00\x00\x00\xcc\x4a\xee\xfe\x47\xc6\x2d\x9d\xfc\xf9\x3f\x00" "\x00\x00\xf4\x20\x77\xff\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xbf\x3a\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf3" "\xd7\xd7\xff\x2f\x93\xf7\xff\x87\x1d\xbd\xff\xbf\xe3\xed\xae\xbc\x57" "\xbf\xfd\xbf\xf7\xff\x87\x79\xff\x7f\xea\xfe\xff\x96\xef\x0c\xfd\x3f" "\xcb\x36\xb7\xfe\x3f\x77\xff\x35\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\x51\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe8\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4c\xdc\xd2\xc9\xfe\xd7\xff" "\xb7\xd6\xff\xff\xff\x9e\x5f\x77\x5e\xff\xbf\x5b\xbb\xe8\xff\xf5\xff" "\xfa\x7f\xfd\x7f\xeb\xf4\xff\xc3\xbc\xff\x3f\x62\xf7\x3f\x73\x3b\xf5" "\x43\xfd\xbf\xfe\xdf\xfb\xff\xfa\x7f\x8e\x66\x6e\xfd\x7f\xee\xfe\xc7" "\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7\xc5\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\x09\x71\x4b\x27\xfb\x5f\xff\xdf\x5a\xff\xbf\xf7\xd7\x79\xff" "\x5f\xff\xbf\xe9\xeb\xeb\xff\xf5\xff\x2d\xd3\xff\x0f\xd3\xff\x8f\x68" "\xe5\xfd\xff\x8b\xfc\xae\xd9\x76\x3f\x7f\x54\xdb\xfe\xfc\xfa\x7f\xfd" "\x3f\xeb\xe6\xd6\xff\xe7\xee\x7f\x62\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\x7f\x52\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x39" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x12\xb7\x74\xb2\xff\xf5" "\xff\xfa\xff\x65\xf4\xff\xf9\x15\xf4\xff\xfa\xff\x5b\xbf\xff\x4f\xfa" "\xff\x65\xd2\xff\x0f\xd3\xff\x8f\x68\xa5\xff\xbf\x48\xdb\xee\xe7\x97" "\xfe\xf9\xf5\xff\xfa\x7f\xd6\xcd\xad\xff\xcf\xdd\xff\xd4\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xb4\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x7a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x23" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xcb\xe8\xff\xbd\xff\xaf\xff\xf7\xfe" "\xbf\xfe\xff\xc2\xe8\xff\x87\xe9\xff\x47\xe8\xff\xf5\xff\xfa\x7f\xfd" "\x3f\x93\x9a\x5b\xff\x9f\xbb\xff\xda\xb8\xa5\x93\xfd\x0f\x00\x00\x00" "\x3d\xc8\xdd\xff\xcc\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x56" "\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x3b\x6e\xe9\x64\xff\xeb" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf3\xd7\xdf\xd3\xff\xdf\x5e\xff" "\xbf\x14\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4" "\x66\xd4\xff\x9f\xf7\xab\x4e\xad\x9e\x13\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\x9f\x1b\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xcf" "\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xe7\xc7\x2d\x9d\xec\x7f" "\xfd\xff\x6c\xfa\xff\xdd\x9c\xaf\xad\xfe\x7f\x67\xb5\x5a\xe9\xff\x57" "\x9d\xf6\xff\x3b\xe7\xfd\xf3\xac\xef\xcb\x25\xf7\xff\xde\xff\x5f\x0c" "\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x33\xea" "\xff\x77\x7f\x9c\xbb\xff\x05\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90" "\xbb\xff\x85\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xa2\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x71\xdc\xd2\xc9\xfe\xd7\xff\xcf" "\xa6\xff\xdf\xd5\x56\xff\xef\xfd\xff\xfd\xdf\x1f\x3d\xf5\xff\xcd\xbd" "\xff\xaf\xff\x5f\x0c\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\x52\x73\xeb\xff\x73\xf7\xbf\x24\x6e\x3a\x71\xd9\x45\xff\x16" "\x01\x00\x00\x80\x99\xc9\xdd\xff\xd2\xb8\xa5\x93\x3f\xff\x07\x00\x00" "\x80\x1e\xe4\xee\x7f\x59\xdc\x62\xff\x03\x00\x00\xc0\x42\x5d\xbb\xf6" "\x33\xb9\xfb\x5f\x1e\xb7\x74\xb2\xff\xf5\xff\xd3\xf6\xff\x27\xce\xfb" "\x39\xfd\xbf\xfe\x7f\xff\xf7\x87\xfe\x5f\xff\xaf\xff\xbf\xf5\xe9\xff" "\xd3\x89\x8d\x3f\xab\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a" "\x6e\xfd\x7f\xee\xfe\x57\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee" "\xfe\xeb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x95\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xaa\xb8\xa5\x93\xfd\xaf\xff\xf7\xfe" "\xbf\xfe\x5f\xff\xaf\xff\xdf\xfc\xf5\xf5\xff\xcb\xa4\xff\x1f\xa6\xff" "\x1f\xa1\xff\xd7\xff\x6f\xb7\xff\x3f\x79\xee\x7f\xd4\xff\xd3\x86\x43" "\xf4\xff\x67\xce\x9c\x39\x7d\xab\xf7\xff\xb9\xfb\x5f\x1d\xb7\x74\xb2" "\xff\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x13\xb7\xd8\xff\x00\x00\x00\xd0" "\x8c\xdc\xfd\xaf\x8d\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xd7\xc5" "\x2d\x87\xd9\xff\xb7\x9d\xfa\x53\x1d\x1f\xfd\x7f\xa7\xfd\x7f\x7e\xab" "\x2f\xab\xff\xbf\x7a\xb5\xd2\xff\xeb\xff\xf5\xff\xfa\xff\x61\xfa\xff" "\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff\x4c\x6a\x6e\xef\xff" "\xe7\xee\x7f\x7d\xdc\xe2\xcf\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x10" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x8c\x5b\xec\x7f\x00\x00" "\x00\x58\xb8\x73\x2d\x56\xee\xfe\x37\xc5\x2d\x9d\xec\x7f\xfd\x7f\xa7" "\xfd\xbf\xf7\xff\xf5\xff\xfa\xff\xe3\xee\xff\x6f\x5e\xe9\xff\x8f\xc5" "\x22\xfa\xff\x9d\x83\xbf\xfe\xdc\xfb\xff\x6b\xf4\xff\xfa\xff\x01\xdd" "\xf5\xff\x77\xbf\xcb\x9e\x1f\xea\xff\xf5\xff\xac\x9b\x5b\xff\x9f\xbb" "\xff\xcd\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x2d\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd6\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\x7f\x5b\xdc\x74\x69\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x9b\xbf\xfe\x31\xbf\xff\x7f\x62\xb5\x5a\xe9\xff\x27\xb0" "\x88\xfe\x7f\xc0\xdc\xfb\xff\x69\xde\xff\xdf\xff\x6f\xf9\x39\xfa\x7f" "\xfd\xff\x92\x3f\xbf\xfe\x5f\xff\xcf\xba\xb9\xf5\xff\xb9\xfb\xdf\x1e" "\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xdf\x11\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdc\xfd\xef\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee" "\xfe\x77\xc5\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x6f\xbe\xff" "\xbf\x66\x11\xfd\xbf\xf7\xff\x27\xa2\xff\x1f\x36\x8f\xfe\xff\x60\xfa" "\x7f\xfd\xff\x92\x3f\xbf\xfe\x5f\xff\xcf\x85\xdb\x56\xff\x9f\xbb\xff" "\xfa\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xee\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x4f\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xbf\x37\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x87\xe9\xff\xf3\x73" "\xea\xff\xdb\xea\xff\x4f\xce\xae\xff\x3f\xb5\xe7\x7f\x5f\x27\xef\xff" "\xeb\xff\x27\xa2\xff\x1f\xa6\xff\x1f\xa1\xff\xd7\xff\xeb\xff\xaf\xd5" "\xff\x33\xa5\xb9\xbd\xff\x9f\xbb\xff\x7d\x71\x4b\x27\xfb\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\xfd\x71\xeb\xff\x75\x6b\xff\x03\x00\x00\x40\x33" "\x72\xf7\x7f\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x18\xb7" "\x74\xb2\xff\xf5\xff\xfa\x7f\xef\xff\xeb\xff\x9b\x7f\xff\x5f\xff\xdf" "\x15\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff\xef\xfd\x7f\x26\x35" "\xb7\xfe\x3f\x77\xff\x87\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\x87\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x23\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x43\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xd9\x7f\x86\xfa\xff\x36\xe8\xff\x87\x1d\x4f" "\xff\xbf\xa3\xff\xd7\xff\x57\x3f\xff\x7f\xf1\x6f\x81\xfe\x5f\xff\x3f" "\xf6\xeb\x69\xd3\xdc\xfa\xff\xdc\xfd\x1f\x8d\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x1f\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\x8f\xc7\x2d\xf6\x3f\x00\x00\x00\x2c\xd2\xa5\x1b\x7e\x2e\x77\xff\x27" "\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37\x7f\x7d" "\xfd\xff\x32\x6d\xa5\xff\xcf\x6f\x0a\xfd\xbf\xf7\xff\x43\x3f\xfd\xff" "\x1d\xf6\xfc\x68\x69\xef\xff\xef\xff\xbf\x5f\xfa\x7f\xfd\x3f\xd3\x9b" "\x5b\xff\x9f\xbb\xff\x93\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb" "\xff\x53\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xe9\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\xff\x4c\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xe6\xaf\xaf\xff\x5f\x26\xef\xff\x0f\xd3\xff" "\x8f\xd0\xff\x6f\xf5\xfd\xfc\xa5\x7f\x7e\xfd\xbf\xfe\x9f\x75\x73\xeb" "\xff\x73\xf7\x7f\x36\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f" "\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x1f\xb7\xd8\xff\x00" "\x00\x00\xd0\x8c\xdd\xdd\x9f\x71\x59\x87\xfb\x5f\xff\xaf\xff\xd7\xff" "\xeb\xff\xf5\xff\x9b\xbf\xbe\xfe\x7f\x99\xf4\xff\xc3\xf4\xff\x23\x8e" "\xa5\xff\x3f\x7d\xd7\xfa\xb1\xfe\x7f\x52\xdb\xfe\xfc\xfa\x7f\xfd\x3f" "\xeb\xe6\xd6\xff\x7f\x61\xf7\x57\x9d\x5a\x7d\x31\x6e\xe9\x64\xff\x03" "\x00\x00\x40\x0f\x72\xf7\x7f\x29\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xbf\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x5f\x89\x5b\x3a" "\xd9\xff\xfa\x7f\xfd\xff\x32\xfa\xff\x33\x67\xce\x9c\xd6\xff\xeb\xff" "\xf7\xfe\x7e\xce\xf5\xff\x37\xea\xff\x29\xfa\xff\x61\xfa\xff\x11\xde" "\xff\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\xaf\xc6\x2d" "\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xaf\xc5\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\xd7\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x1b\x71\x4b\x27\xfb\x5f\xff\x3f\x83\xfe\xff\x94\xfe\xdf\xfb\xff\xfa" "\xff\x95\xf7\xff\xf5\xff\x13\xd9\x46\xff\x7f\xcb\xf7\x84\xfe\x5f\xff" "\x3f\xdb\xfe\xff\xd4\x85\xff\xf6\xb7\xdd\xcf\x1f\xd5\xb6\x3f\xbf\xfe" "\x5f\xff\xcf\xba\xb9\xf5\xff\xb9\xfb\xbf\x19\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\xbf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\xdf\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xef\xc4\x2d\x9d\xec" "\x7f\xfd\xff\xf1\xf5\xff\xb7\xfc\xbd\xeb\xe5\xfd\xff\x9d\xd5\xe6\xcf" "\x7f\x1c\xfd\x7f\x7e\x16\xfd\xff\xc1\x5f\x5f\xff\xaf\xff\x6f\x99\xf7" "\xff\x87\xe9\xff\x47\xb4\xd8\xff\x1f\xc2\xb6\xfb\xf9\xa5\x7f\x7e\xfd" "\xbf\xfe\x9f\x75\x73\xeb\xff\x73\xf7\x7f\x37\x6e\xd9\x3b\xfc\x2e\x3b" "\xdc\xef\x12\x00\x00\x00\x98\x93\xdc\xfd\xdf\x8b\x5b\x3a\xf9\xf3\x7f" "\x00\x00\x00\xe8\x41\xee\xfe\xef\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x0f\xe2\x96\x4e\xf6\xbf\xfe\x7f\x06\xef\xff\x37\xd8\xff\x7b" "\xff\x7f\xf3\xf7\x87\xfe\x7f\xd6\xfd\xff\x25\xfa\xff\x36\xe8\xff\x87" "\xe9\xff\x47\xe8\xff\xf5\xff\xfa\xff\x89\xfa\xff\xfc\x6e\xd6\xff\xf7" "\x6e\x6e\xfd\x7f\xee\xfe\x1f\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41" "\xee\xfe\x1f\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8f\xe3\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xc6\xb8\xe5\xbc\xfd\xbf\xa9\xed" "\x6e\x85\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x37\x7f\x7d\xfd\xff\x32" "\xe9\xff\x87\x5d\x68\xff\x7f\x72\x75\xb4\xfe\x3f\xe9\xff\xf5\xff\xfa" "\xff\x5e\xfb\x7f\xef\xff\x73\xd6\xdc\xfa\xff\xdc\xfd\x3f\x89\x5b\xfc" "\xf9\x3f\x00\x00\x00\x2c\xce\x65\x07\xfc\x7c\xee\xfe\x9f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\xcf\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xe7\x71\xcb\x4d\x97\x6c\xeb\x23\x1d\x2b\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\x6f\xfe\xfa\xfa\xff\x65\xd2\xff\x0f\xf3\xfe\xff" "\x08\xfd\xff\x14\xfd\xfc\x15\xfa\xff\x36\xfa\xff\xd5\x4a\xff\xcf\xd1" "\xcd\xad\xff\xcf\xdd\xff\x8b\xb8\xc5\x9f\xff\x03\x00\x00\x40\x33\x72" "\xf7\xff\x32\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x15\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8e\x5b\x3a\xd9\xff\xfa\x7f\xfd" "\xff\x11\xfb\xff\xdd\x34\x53\xff\x7f\xd6\x61\xfa\xff\xdb\xe8\xff\xf5" "\xff\xe7\xfd\x5d\xd5\xff\x4f\x47\xff\x3f\x4c\xff\x3f\x42\xff\xef\xfd" "\x7f\xfd\xbf\xf7\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\xbf\x89\x5b\x3a\xd9" "\xff\x00\x00\x00\xd0\x83\xdc\xfd\xbf\x8d\x5b\xec\x7f\x00\x00\x00\x68" "\x46\xee\xfe\xdf\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xef\xe3" "\x96\x4e\xf6\xff\xd6\xfa\xff\xf8\x5b\xad\xff\x5f\x7c\xff\xef\xfd\x7f" "\xef\xff\x6f\xa7\xff\xbf\xfe\x72\xfd\xbf\xfe\x7f\x23\xfd\xff\x30\xfd" "\xff\x08\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\xff" "\x21\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x31\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xff\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c" "\xdc\xfd\x7f\x8e\x5b\x3a\xd9\xff\xde\xff\xd7\xff\xeb\xff\xf5\xff\x8b" "\xec\xff\xbd\xff\xaf\xff\x3f\x80\xfe\x7f\x98\xfe\x7f\xb3\xfa\x07\x35" "\xf3\xfe\x7f\x47\xff\x3f\xeb\xcf\xaf\xff\xd7\xff\xb3\x6e\x6e\xfd\x7f" "\xee\xfe\xbf\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbf\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x4d\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\xff\xb7\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5" "\xff\xfa\xff\xcd\x5f\x5f\xff\xbf\x4c\xfa\xff\x61\xdb\xec\xff\xef\x71" "\xf9\xf8\x97\xf5\xfe\xff\xd6\xdf\xff\xcf\x8f\xa0\xff\xd7\xff\xeb\xff" "\x99\xc4\xdc\xfa\xff\xdc\xfd\x7f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0" "\x83\xdc\xfd\xff\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x7f\xc6" "\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbf\xe2\x96\x4e\xf6\xff\x48" "\xff\x7f\xb2\xfe\x42\xfd\xff\x20\xfd\xff\xde\xcf\xaf\xff\xdf\xfc\xfd" "\x31\x55\xff\x7f\xa5\xfe\x7f\x97\xfe\x5f\xff\xbf\x89\xfe\x7f\x98\xf7" "\xff\x47\xe8\xff\xbd\xff\xaf\xff\xd7\xff\x33\xa9\xb9\xf5\xff\xb9\xfb" "\xff\x1d\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8e\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xff\xc4\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x7f\xe3\x96\x4e\xf6\xbf\xf7\xff\x97\xd4\xff\x5f\xa1\xff" "\xd7\xff\x7b\xff\x5f\xff\xaf\xff\x1f\xa1\xff\x1f\xa6\xff\x1f\xa1\xff" "\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\xff\x05\x00\x00" "\xff\xff\x54\x34\x50\x85", 24996)); NONFAILING(syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000180, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_RELATIME|MS_RDONLY|MS_NODIRATIME|0xc0*/ 0x22108c1, /*opts=*/0x2000000001c0, /*chdir=*/1, /*size=*/0x61a4, /*img=*/0x20000000c4c0)); break; case 1: // mount arguments: [ // src: nil // dst: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // type: nil // flags: mount_flags = 0x22be836 (8 bytes) // data: nil // ] NONFAILING(memcpy((void*)0x2000000009c0, ".\000", 2)); syscall( __NR_mount, /*src=*/0ul, /*dst=*/0x2000000009c0ul, /*type=*/0ul, /*flags=MS_LAZYTIME|MS_SLAVE|MS_UNBINDABLE|MS_POSIXACL|MS_REC|MS_SYNCHRONOUS|0x20a826*/ 0x22be836ul, /*data=*/0ul); break; case 2: // lstat arguments: [ // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // statbuf: nil // ] NONFAILING(memcpy((void*)0x200000000080, "./file0\000", 8)); syscall(__NR_lstat, /*file=*/0x200000000080ul, /*statbuf=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*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=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }