// https://syzkaller.appspot.com/bug?id=6cc491be132cfdce3fd4c75357d4606bed322b31 // 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 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); } static const char* setup_binfmt_misc() { if (mount(0, "/proc/sys/fs/binfmt_misc", "binfmt_misc", 0, 0) && errno != EBUSY) { return NULL; } if (!write_file("/proc/sys/fs/binfmt_misc/register", ":syz0:M:0:\x01::./file0:") || !write_file("/proc/sys/fs/binfmt_misc/register", ":syz1:M:1:\x02::./file0:POC")) return "write(/proc/sys/fs/binfmt_misc/register) failed"; return NULL; } 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 < 8; 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); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; 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 = 0x8 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x629f (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x629f) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x200000004a00, "\x78\x9c\xec\xdd\x4f\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x3f\xff\x29\x6d" "\xa3\x1e\xaa\x12\x21\xe4\xb6\x01\x5a\x4a\xf3\xb7\x84\x40\x81\xb6\x07" "\x38\xf4\xc2\x01\xe5\x8a\x12\xb9\x6e\x15\x91\x02\x4a\x02\x4a\xab\x88" "\xb8\xca\x85\x03\x2f\x02\x84\xc4\x11\x10\x47\x4e\xbc\x80\x1e\xb8\x72" "\xe3\x05\x10\x29\x41\x02\x7a\xea\xa0\xb1\x9f\xc7\x19\x2f\xde\xac\xe3" "\x74\x77\xd6\x7e\x3e\x1f\xc9\x9d\xf9\xcd\x33\xe3\x7d\xa6\xdf\x1d\xef" "\x6e\x66\x66\x9f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xe2\xed\xef\xff\xf0\x4c\x15\x11\x97\x7e\x91\x16\x1c\x8b\xf8" "\x5c\xf4\x23\x7a\x11\x2b\x4d\xbd\x16\x11\x2b\x6b\xc7\xf2\xfa\x83\x88" "\x78\x2e\xb6\x9a\xe3\xd9\x88\x18\x2e\x45\x54\xb9\xf1\xe9\x88\xd7\x22" "\xe2\xe3\xa7\x22\xee\xdd\xbf\xb5\xde\x2c\x3a\xbb\xcf\x7e\x7c\xef\x4f" "\x7f\xff\xdd\x8f\x9e\xf8\xc1\xdf\xfe\x30\x3c\xf5\x9f\x3f\xdf\xe8\xbf" "\x3e\x69\xbd\x9b\x37\x7f\xfd\xef\xbf\xdc\x3e\xf8\xfe\x02\x00\x00\x40" "\x89\xea\xba\xae\xab\xf4\x31\xff\x78\xfa\x7c\xdf\xeb\xba\x53\x00\xc0" "\x5c\xe4\xd7\xff\x3a\xc9\xcb\xd5\x0b\x57\x6f\x2e\x58\x7f\xd4\x6a\xb5" "\x5a\x7d\x08\xeb\xb6\x7a\x6f\xb7\xdb\x45\x44\x6c\xb6\xb7\x69\xde\x33" "\x38\x1d\x0f\x00\x87\xcc\x66\x7c\xd2\x75\x17\xe8\x90\xfc\x8b\x36\x88" "\x88\x27\xba\xee\x04\xb0\xd0\xaa\xae\x3b\xc0\x4c\xdc\xbb\x7f\x6b\xbd" "\x4a\xf9\x56\xed\xd7\x83\xb5\xed\xf6\x7c\x2d\xc8\xae\xfc\x37\xab\x9d" "\xfb\x3b\x26\x4d\xa7\x19\xbf\xc6\x64\x5e\xcf\xaf\x3b\xd1\x8f\x67\x26" "\xf4\x67\x65\x4e\x7d\x58\x24\x39\xff\xde\x78\xfe\x97\xb6\xdb\x47\x69" "\xbd\x59\xe7\x3f\x2f\x93\xf2\x1f\x6d\xdf\xfa\x54\x9c\x9c\x7f\x7f\x3c" "\xff\x31\x47\x27\xff\xde\x9e\xf9\x97\x2a\xe7\x3f\x78\xa4\xfc\xfb\xf2" "\x07\x00\x00\x00\x00\x80\x05\x96\xff\xfd\xff\x58\xc7\xe7\x7f\x97\x1e" "\x7f\x57\xf6\xe5\x61\xe7\x7f\xd7\xe6\xd4\x07\x00\x00\x00\x00\x00\x00" "\x00\xf8\xac\x3d\xee\xf8\x7f\x3b\x2a\xe3\xff\x01\x00\x00\xc0\xa2\x6a" "\x3e\xab\x37\x7e\xf3\xd4\x83\x65\x93\xbe\x8b\xad\x59\x7e\xb1\x8a\x78" "\x72\x6c\x7d\xa0\x30\xe9\x66\x99\xd5\xae\xfb\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x25\x19\x6c\x5f\xc3\x7b\xb1\x8a\x18\x46\xc4\x93" "\xab\xab\x75\x5d\x37\x3f\x6d\xe3\xf5\xa3\x7a\xdc\xed\x0f\xbb\xd2\xf7" "\x1f\x4a\xd6\xf5\x1f\x79\x00\x00\xd8\xf6\xf1\x53\x63\xf7\xf2\x57\x11" "\xcb\x11\x71\x31\x7d\xd7\xdf\x70\x75\x75\xb5\xae\x97\x57\x56\xeb\xd5" "\x7a\x65\x29\xbf\x9f\x1d\x2d\x2d\xd7\x2b\xad\xcf\xb5\x79\xda\x2c\x5b" "\x1a\xed\xe3\x0d\xf1\x60\x54\x37\xbf\x6c\xb9\xb5\x5d\xdb\xb4\xcf\xcb" "\xd3\xda\xc7\x7f\x5f\xf3\x58\xa3\xba\xbf\x8f\x8e\xcd\x47\x87\x81\x03" "\x40\x44\x6c\xbf\x1a\xdd\xf3\x8a\x74\xc4\xd4\xf5\xd3\xd1\xf5\xbb\x1c" "\x0e\x07\xc7\xff\xd1\xe3\xf8\x67\x3f\xba\x7e\x9e\x02\x00\x00\x00\xb3" "\x57\xd7\x75\x5d\xa5\xaf\xf3\x3e\x9e\xce\xf9\xf7\xba\xee\x14\x00\x30" "\x17\xf9\xf5\x7f\xfc\xbc\x80\x5a\xad\x56\xab\xd5\xea\xa3\x57\xb7\xd5" "\x7b\xbb\xdd\x2e\x22\x62\xb3\xbd\x4d\xf3\x9e\xc1\x70\xfc\x00\x70\xc8" "\x6c\xc6\x27\x5d\x77\x81\x0e\xc9\xbf\x68\x83\x88\x78\xae\xeb\x4e\x00" "\x0b\xad\xea\xba\x03\xcc\xc4\xbd\xfb\xb7\xd6\xab\x94\x6f\xd5\x7e\x3d" "\x48\xe3\xbb\xe7\x6b\x41\x76\xe5\xbf\x59\x6d\x6d\x97\xb7\xdf\x6b\x3a" "\xcd\xf8\x35\x26\xf3\x7a\x7e\xdd\x89\x7e\x3c\x33\xa1\x3f\xcf\xce\xa9" "\x0f\x8b\x24\xe7\xdf\x1b\xcf\xff\xd2\x76\xfb\x28\xad\x37\xeb\xfc\xe7" "\x65\x52\xfe\xcd\x7e\x1e\xeb\xa0\x3f\x5d\xcb\xf9\xf7\xc7\xf3\x1f\x73" "\x74\xf2\xef\xed\x99\x7f\xa9\x72\xfe\x83\x47\xca\xbf\x2f\x7f\x00\x00" "\x00\x00\x00\x58\x60\xf9\xdf\xff\x8f\x2d\xd4\xf9\xdf\xd1\x41\x77\x67" "\xaa\x87\x9d\xff\x5d\x9b\xd9\xa3\x02\x00\x00\x00\x00\x00\x00\xc0\x6c" "\xdd\xbb\x7f\x6b\x3d\xdf\xf7\x9a\xcf\xff\x7f\x61\x8f\xf5\xdc\xff\x79" "\x34\xe5\xfc\x2b\xf9\x17\x29\xe7\x9f\xee\xff\xdf\xb9\xf0\xe6\xa5\xb1" "\xf5\xfa\xad\xf9\xbb\x6f\x3d\xc8\xff\x5f\xf7\x6f\xad\xff\xfe\xc6\x3f" "\x3f\x9f\xa7\xfb\xcd\x7f\x29\xcf\x54\xe9\x99\x55\xa5\x67\x44\x95\x1e" "\xa9\x1a\xa4\xe9\x01\x77\x6c\x82\x3b\xc3\xfe\xa8\x79\xa4\x61\xd5\xeb" "\x0f\xd2\x35\x3f\xf5\xf0\xdd\xb8\x12\x57\x63\x23\x4e\xef\x5a\xb7\x97" "\x8e\x87\x07\xed\x67\x76\xb5\x37\x3d\x1d\x6e\xb5\xd7\xfd\xed\xf6\xb3" "\xbb\xda\x07\x3b\xed\x79\xfb\x73\xbb\xda\x87\xe9\x4a\xa7\x7a\x25\xb7" "\x9f\x8c\xf5\xf8\x69\x5c\x8d\x77\xb6\xda\x9b\xb6\xa5\x29\xfb\xbf\x3c" "\xa5\xbd\x9e\xd2\x9e\xf3\xef\x3b\xfe\x8b\x94\xf3\x1f\xb4\x7e\x9a\xfc" "\x57\x53\x7b\x35\x36\x6d\xdc\xfd\xa8\xf7\x7f\xc7\x7d\x7b\xba\xd7\xe3" "\xbc\x79\xe5\x8b\xbf\x3a\x3d\xfb\xdd\x99\xea\x4e\xf4\x77\xf6\xad\xad" "\xd9\xbf\x17\x3a\xe8\xcf\xd6\xff\x93\x27\x46\xf1\xf3\xeb\x1b\xd7\x4e" "\xde\xbc\x7c\xe3\xc6\xb5\x33\x91\x26\xbb\x96\x9e\x8d\x34\xf9\x8c\xe5" "\xfc\x87\xe9\x27\xe7\xff\xd2\x8b\xdb\xed\xf9\xef\x7e\xfb\x78\xbd\xfb" "\xd1\xe8\x91\xf3\x5f\x14\x77\x62\x30\x31\xff\x17\x5b\xf3\xcd\xfe\xbe" "\x3c\xe7\xbe\x75\x21\xe7\x3f\x4a\x3f\x39\xff\x77\x52\xfb\xde\xc7\xff" "\x61\xce\x7f\xf2\xf1\xff\x4a\x07\xfd\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x87\xa9\xeb\x7a\xeb\x16\xd1\x37\x23\xe2\x7c\xba" "\xff\xa7\xab\x7b\x33\x01\x80\xf9\xca\xaf\xff\x75\x92\x97\xcf\xab\xee" "\x1f\x74\xfb\x3f\xee\xde\x8f\xae\xfa\xaf\x56\xcf\xb9\xae\x16\xac\x3f" "\x73\xad\x3f\xad\x67\xfd\x78\x6f\x2f\xd4\xfe\xaa\x0f\x54\xff\x77\xc1" "\xfa\xb3\x70\x75\x5b\xbd\xb7\x37\xda\x45\x44\xfc\xb5\xbd\x4d\xf3\x9e" "\xe1\x97\x7b\xfd\x32\x00\x60\x91\x7d\x1a\x11\xff\xe8\xba\x13\x74\x46" "\xfe\x05\xcb\xdf\xf7\xd7\x4c\x4f\x74\xdd\x19\x60\xae\xae\x7f\xf0\xe1" "\x8f\x2f\x5f\xbd\xba\x71\xed\x7a\xd7\x3d\x01\x00\x00\x00\x00\x00\x00" "\x00\x0e\x2a\x8f\xff\xb9\xd6\x1a\xff\xf9\x44\x5d\xd7\xb7\xc7\xd6\xdb" "\x35\xfe\xeb\x5b\xb1\xf6\xb8\xe3\x7f\x0e\xf2\xcc\xce\x00\xa3\x13\x06" "\xaa\xee\x3f\xfa\x3e\x3d\x4c\x2f\xa2\xbf\x35\xd6\x79\xba\x05\xe2\xf9" "\x98\x34\xfe\xf7\x70\x67\xee\x61\xe3\x7f\x0f\xa6\x3c\xde\x70\x4a\xfb" "\x68\x4a\xfb\xd2\x94\xf6\xe5\x29\xed\x7b\xde\xe8\xd1\x92\xf3\x7f\xbe" "\x35\xde\xf9\x89\x88\x38\x3e\x36\xfc\x7a\x09\xe3\xbf\x8e\x8f\x79\x5f" "\x82\x9c\xff\x0b\xad\xe7\x73\x93\xff\x57\xc6\xd6\x6b\xe7\x5f\xff\xf6" "\x30\xe7\xdf\xdb\x95\xff\xa9\x1b\xef\xff\xec\xd4\xf5\x0f\x3e\x7c\xf5" "\xca\xfb\x97\xdf\xdb\x78\x6f\xe3\x27\xe7\xce\x9c\x39\x7d\xee\xfc\xf9" "\x0b\x17\x2e\x9c\x7a\xf7\xca\xd5\x8d\xd3\xdb\xff\xed\xb0\xc7\xb3\x95" "\xf3\xcf\x63\x5f\xbb\x0e\xb4\x2c\x39\xff\x9c\xb9\xfc\xcb\x92\xf3\xff" "\x52\xaa\xe5\x5f\x96\x9c\xff\x97\x53\x2d\xff\xb2\xe4\xfc\xf3\xfb\x3d" "\xf9\x97\x25\xe7\x9f\x3f\xfb\xc8\xbf\x2c\x39\xff\x97\x53\x2d\xff\xb2" "\xe4\xfc\xbf\x9a\x6a\xf9\x97\x25\xe7\xff\x4a\xaa\xe5\x5f\x96\x9c\xff" "\xd7\x52\x2d\xff\xb2\xe4\xfc\x5f\x4d\xb5\xfc\xcb\x92\xf3\x3f\x99\x6a" "\xf9\x97\x25\xe7\x7f\x2a\xd5\xfb\xcc\x7f\x65\xd6\xfd\x62\x3e\x72\xfe" "\xf9\x0c\x97\xe3\xbf\x2c\x39\xff\x7c\x65\x83\xfc\xcb\x92\xf3\x3f\x9b" "\x6a\xf9\x97\x25\xe7\x7f\x2e\xd5\xf2\x2f\x4b\xce\xff\xb5\x54\xcb\xbf" "\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\x9f\x4f\xb5\xfc\xcb\x92\xf3" "\xff\x46\xaa\xe5\x5f\x96\x9c\xff\x85\x54\xcb\xbf\x2c\x39\xff\x6f\xa6" "\x5a\xfe\x65\xc9\xf9\x7f\x2b\xd5\xf2\x2f\x4b\xce\xff\xf5\x54\xcb\xbf" "\x2c\x39\xff\x6f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x27\xd5\xf2\x2f\x4b\xce" "\xff\xbb\xa9\x96\x7f\x59\x72\xfe\x6f\xa4\x5a\xfe\x65\x79\xf0\xfd\xff" "\x66\xcc\x98\x31\x93\x67\xba\xfe\xcb\x04\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x8c\x9b\xc7\xe5\xc4\x5d\xef\x23\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf0\x3f\x76\xe0\x40\x00\x00\x00\x00\x00\xc8" "\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xb0\x03\x07\x02\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x85\xbd\x7b\x8b" "\x91\xeb\xae\xef\x00\x7e\x66\x6f\x5e\x3b\x90\x18\x08\xa9\x93\x9a\xb0" "\x76\x8c\x31\xce\x26\xbb\xbe\xc4\x17\x5a\x17\x13\xae\x0d\xb7\xe6\x5a" "\xd2\x4b\x6c\xd7\xbb\x76\x16\x7c\x8b\xd7\x2e\x49\x1a\xd5\x8e\x02\x25" "\x12\x46\x45\x15\x6d\x93\x87\xb6\x80\xa2\x36\x2f\x15\x56\x95\x07\x5a" "\x05\x94\x07\xd4\xaa\x52\x25\xd2\x3e\xd0\x17\x44\x85\xca\x43\x54\x05" "\x14\x90\xaa\xd2\x0a\xb2\xd5\xcc\xf9\xff\xff\x3b\x33\x3b\x3b\xb3\xf6" "\x8e\xd7\x33\xe7\x7c\x3e\x52\xf2\xcb\xce\x9c\x99\x73\xe6\xcc\x7f\x66" "\xf7\x6b\xe7\xbb\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x40\xbd\x0d\xef\x9b\xfe\x7c\x25\xcb\xb2\x4a\xa5" "\x92\x5f\xb0\x36\xcb\xde\x50\x9d\xab\xc7\xd6\xd6\x2e\x79\xf7\xd5\x3d" "\x3e\x00\x00\x00\x60\xf9\x7e\x51\xfb\xf7\x6b\xd7\xa5\x0b\xf6\x2f\xe1" "\x46\x75\xdb\xfc\xd3\xcd\xdf\x79\x61\x6e\x6e\x6e\x2e\xfb\xe4\xe0\x9f" "\x0e\x7f\x79\x6e\x2e\x5d\x31\x96\x65\xc3\xab\xb2\xac\x76\x5d\x74\xf1" "\x07\x0f\x56\xea\xb7\x09\x9e\xca\x46\x2b\x03\x75\x5f\x0f\x74\xd8\xfd" "\x60\x87\xeb\x87\x3a\x5c\x3f\xdc\xe1\xfa\x91\x0e\xd7\xaf\xea\x70\xfd" "\x68\x87\xeb\x17\x9c\x80\x05\x56\x67\x95\x74\x67\x9b\x6a\xff\xb9\x36" "\x3f\xa5\xd9\xf5\xd9\x70\xed\xba\x4d\x2d\x6e\xf5\x54\x65\xd5\x40\xf5" "\xdc\xa5\xdb\x66\x95\xda\x6d\xe6\x86\x8f\x64\x33\xd9\xb1\x6c\x3a\x9b" "\x6c\xd8\x3e\xdf\xb6\x52\xdb\xfe\xc5\x0d\xd5\x7d\x7d\x38\x8b\xfb\x1a" "\xa8\xdb\xd7\xfa\xea\x0a\xf9\xc9\x13\x87\xe3\x31\x54\xc2\x39\xde\xd4" "\xb0\xaf\xf9\xfb\x8c\x7e\xf4\xde\x6c\xec\xa7\x3f\x79\xe2\xf0\x5f\x9f" "\x79\xf5\xc6\x56\xb3\xe3\x69\x68\xb8\xbf\xfc\x38\xb7\x6c\xac\x1e\xe7" "\x67\xc3\x25\xf9\xb1\x56\xb2\x55\xe9\x9c\xc4\xe3\x1c\xa8\x3b\xce\xf5" "\x2d\x9e\x93\xc1\x86\xe3\xac\xd4\x6e\x57\xfd\xef\xe6\xe3\x7c\x6d\x89" "\xc7\x39\x38\x7f\x98\x2b\xaa\xf9\x39\x1f\xcd\x06\x6a\xff\xfd\x72\xed" "\x3c\x0d\x55\xb2\x16\xe7\x69\x7d\xb8\xec\x67\xb7\x64\x59\x76\x7e\xfe" "\xb0\x9b\xb7\x59\xb0\xaf\x6c\x20\x5b\xd3\x70\xc9\xc0\xfc\xf3\x33\x9a" "\xaf\xc8\xea\x7d\x54\x97\xd2\x9b\xb3\xa1\x4b\x5a\xa7\x1b\x96\xb0\x4e" "\xab\x73\x6a\x53\xe3\x3a\x6d\x7e\x4d\xc4\xe7\x7f\x43\xb8\xdd\xd0\x22" "\xc7\x50\xff\x34\xfd\xe8\xc9\x91\xba\xe7\xfd\xe7\x73\x97\xb3\x4e\xa3" "\xea\xa3\x5e\xec\xb5\xd2\xbc\x06\xbb\xfd\x5a\xe9\x95\x35\x18\xd7\xc5" "\xcb\xb5\x07\xfd\x74\xcb\x35\xb8\x29\x3c\xfe\x27\x36\x2f\xbe\x06\x5b" "\xae\x9d\x16\x6b\x30\x3d\xee\xba\x35\xb8\xb1\xd3\x1a\x1c\x18\x19\xac" "\x1d\x73\x7a\x12\x2a\xb5\xdb\xcc\xaf\xc1\x6d\x0d\xdb\x0f\xd6\xf6\x54" "\xa9\xcd\x57\x36\xb7\x5f\x83\x13\x67\x8e\x9f\x9a\x98\x7d\xec\xf1\xdb" "\x66\x8e\x1f\x3a\x3a\x7d\x74\xfa\xc4\x8e\x6d\xdb\x26\x77\xec\xda\xb5" "\x67\xcf\x9e\x89\x23\x33\xc7\xa6\x27\xf3\x7f\x5f\xe6\xd9\xee\x7d\x6b" "\xb2\x81\xf4\x1a\xd8\x18\xce\x5d\x7c\x0d\xbc\xb3\x69\xdb\xfa\xa5\x3a" "\xf7\xd5\x91\x05\xef\xbf\x97\xfb\x3a\x1c\x6d\xf3\x3a\x5c\xdb\xb4\x6d" "\xb7\x5f\x87\x43\xcd\x0f\xae\xb2\x32\x2f\xc8\x85\x6b\x3a\x7f\x6d\xdc" "\x57\x3d\xe9\xa3\x17\x06\xb2\x45\x5e\x63\xb5\xe7\x67\xeb\xf2\x5f\x87" "\xe9\x71\xd7\xbd\x0e\x87\xea\x5e\x87\x2d\xbf\xa7\xb4\x78\x1d\x0e\x2d" "\xe1\x75\x58\xdd\xe6\xd4\xd6\xa5\xfd\xcc\x32\x54\xf7\x4f\xab\x63\x58" "\xfc\x7b\xc1\xf2\xd6\xe0\xda\xba\x35\xd8\xfc\xf3\x48\xf3\x1a\xec\xf6" "\xcf\x23\xbd\xb2\x06\x47\xc3\xba\xf8\xde\xd6\xc5\xbf\x17\xac\x0f\xc7" "\xfb\xf4\xf8\xa5\xfe\x3c\x32\xb8\x60\x0d\xa6\x87\x1b\xde\x7b\xaa\x97" "\xa4\x9f\xf7\x47\xf7\xd4\x46\xab\x75\x79\x53\xf5\x8a\x6b\x46\xb2\xb3" "\xb3\xd3\xa7\x6f\x7f\xf4\xd0\x99\x33\xa7\xb7\x65\x61\xac\x88\xb7\xd4" "\xad\x95\xe6\xf5\xba\xa6\xee\x31\x65\x0b\xd6\xeb\xc0\x25\xaf\xd7\xfd" "\x33\x37\x3f\x7d\x53\x8b\xcb\xd7\x86\x73\x35\x7a\x5b\xf5\x5f\xa3\x8b" "\x3e\x57\xd5\x6d\x76\xde\xde\xfe\xb9\xaa\x7d\x77\x6b\x7d\x3e\x1b\x2e" "\xdd\x9e\x85\xd1\x65\x2b\x7d\x3e\x5b\x7d\x37\xaf\x9e\xcf\x91\x2c\x7b" "\xf6\xdb\x4f\xde\xf3\xcd\x27\x9e\x7d\xdf\xa2\xe7\xb3\x9a\x37\x3f\x3b" "\xb1\xfc\x9f\xc5\x53\x2e\xad\x7b\xff\x1d\x5e\xe4\xfd\x37\xe6\xfe\xd7" "\xf3\xfd\xa5\xbb\x7a\x6a\x70\x78\x28\x7f\xfd\x0e\xa6\xb3\x33\xdc\xf0" "\x7e\xdc\xf8\x54\x0d\xd5\xde\xbb\x2a\xb5\x7d\xbf\x36\xb1\xb4\xf7\xe3" "\xe1\xf0\xcf\x4a\xbf\x1f\x5f\xdf\xe6\xfd\x78\x5d\xd3\xb6\xdd\x7e\x3f" "\x1e\x6e\x7e\x70\xf1\xfd\xb8\xd2\xe9\x4f\x3b\x96\xa7\xf9\xf9\x1c\x0d" "\xeb\xe4\xd8\x64\xfb\xf7\xe3\xea\x36\xeb\xb6\x5f\xea\x9a\x1c\x6a\xfb" "\x7e\x7c\x4b\x98\x95\x70\xfe\xdf\x15\x92\x42\xca\x45\x75\x6b\x67\xb1" "\x75\x9b\xf6\x35\x34\x34\x1c\x1e\xd7\x50\xdc\x43\xe3\x3a\xdd\xd1\xb0" "\xfd\x70\xc8\x66\xd5\x7d\x3d\xbf\xfd\xf2\xd6\xe9\x96\x5b\xf2\xfb\x1a" "\x4c\x8f\x6e\xde\x4a\xad\xd3\xb1\xa6\x6d\xbb\xbd\x4e\xd3\x9f\x7d\x2d" "\xb6\x4e\x2b\x9d\xfe\xf4\xed\xf2\x34\x3f\x9f\xa3\x61\x5d\x5c\xbf\xa3" "\xfd\x3a\xad\x6e\xf3\xd2\xce\xe5\xbf\x77\xae\x8e\xff\x59\xf7\xde\x39" "\xd2\x69\x0d\x0e\x0f\x8e\x54\x8f\x79\x38\x2d\xc2\xda\xfb\x7d\x36\xb7" "\x3a\xae\xc1\xdb\xb3\xc3\xd9\xc9\xec\x58\x36\x55\xbb\x76\xa4\xb6\x9e" "\x2a\xb5\x7d\x8d\xdf\xb1\xb4\x35\x38\x12\xfe\x59\xe9\xf7\xca\x75\x6d" "\xd6\xe0\x96\xa6\x6d\xbb\xbd\x06\xd3\xf7\xb1\xc5\xd6\x5e\x65\x68\xe1" "\x83\xef\x82\xe6\xe7\x73\x34\xac\x8b\x67\xee\x68\xbf\x06\xab\xdb\xbc" "\x7f\x77\x77\x7f\x76\xdd\x12\x2e\x49\xdb\xd4\xfd\xec\xda\xfc\xe7\x6b" "\x8b\xfd\x99\xd7\x4d\x4d\xa7\xe9\x4a\xad\x95\xa1\x70\x9c\xdf\xde\xdd" "\xfe\xcf\x66\xab\xdb\x1c\xdb\x73\xa9\x39\xb3\xfd\x79\xba\x35\x5c\x72" "\x4d\x8b\xf3\xd4\xfc\xfa\x5d\xec\x35\x35\x95\xad\xcc\x79\x5a\x17\x8e" "\xf3\xd5\x3d\x8b\x9f\xa7\xea\xf1\x54\xb7\xf9\xf2\xde\x25\xae\xa7\xfd" "\x59\x96\x9d\x7b\xe4\xce\xda\x9f\xf7\x86\xbf\x5f\xf9\xbb\xb3\xdf\x7d" "\xa1\xe1\xef\x5d\x5a\xfd\x9d\xce\xb9\x47\xee\xfc\xf1\x1b\x8f\xfc\xe3" "\xa5\x1c\x3f\x00\xfd\xef\xf5\x7c\xac\xc9\xbf\xd7\xd5\xfd\xcd\xd4\x52" "\xfe\xfe\x1f\x00\x00\x00\xe8\x0b\x31\xf7\x0f\x84\x99\xc8\xff\x00\x00" "\x00\x50\x18\x31\xf7\xc7\xff\x2b\x3c\x91\xff\x01\x00\x00\xa0\x30\x62" "\xee\x1f\x0a\x33\x29\x49\xfe\x5f\xf7\xfe\x57\x67\x5e\x3f\x97\xa5\x66" "\xfe\x5c\x10\xaf\x4f\xa7\xe1\xae\x7c\xbb\xd8\x71\x9d\x0c\x5f\x8f\xcd" "\xcd\xab\x5e\x7e\xe7\x73\xd3\xff\xfd\x0f\xe7\x96\xb6\xef\x81\x2c\xcb" "\x7e\x7e\xd7\x1f\xb4\xdc\x7e\xdd\x5d\xf1\xb8\x72\x63\xe1\x38\x2f\x7e" "\xa0\xf1\xf2\x05\x5e\xb8\x6d\x49\xfb\x3e\x78\xff\xb9\xb4\xdf\xfa\xfe" "\xfa\x57\xc2\xfd\xc7\xc7\xb3\xd4\x65\xd0\xaa\x82\x3b\x99\x65\xd9\x8b" "\xd7\x7d\xb1\xb6\x9f\xb1\x07\x2f\xd4\xe6\x4b\x77\x1d\xac\xcd\x7b\xce" "\x3f\xfd\x54\x75\x9b\xd7\xf6\xe6\x5f\xc7\xdb\xbf\xf2\x96\x7c\xfb\xbf" "\x08\xe5\xdf\xfd\x47\x0e\x35\xdc\xfe\x95\x70\x1e\x7e\x18\xe6\xe4\x47" "\x5a\x9f\x8f\x78\xbb\xaf\x5f\x78\xd7\xfa\xdd\x0f\xcc\xef\x2f\xde\xae" "\xb2\xf1\xda\xda\xc3\x7e\xe6\xa1\xfc\x7e\xe3\xef\xc9\xf9\xd2\x53\xf9" "\xf6\xf1\x3c\x2f\x76\xfc\xdf\xfc\xc2\xf3\x5f\xaf\x6e\xff\xe8\x3b\x5a" "\x1f\xff\xb9\x81\xd6\xc7\xff\x7c\xb8\xdf\xe7\xc2\xfc\xdf\xb7\xe5\xdb" "\xd7\x3f\x07\xd5\xaf\xe3\xed\x3e\x17\x8e\x3f\xee\x2f\xde\xee\xf6\xaf" "\x7d\xab\xe5\xf1\x5f\xfc\x7c\xbe\xfd\xa9\x0f\xe6\xdb\x1d\x0c\x33\xee" "\x7f\x4b\xf8\x7a\xd3\x07\x5f\x9d\xa9\x3f\x5f\x8f\x56\x0e\x35\x3c\xae" "\xec\x43\xf9\x76\x71\xff\x93\xdf\xfd\xe3\xda\xf5\xf1\xfe\xe2\xfd\x37" "\x1f\xff\xe8\x81\x0b\x0d\xe7\xa3\x79\x7d\xbc\xf4\x6f\xf9\xfd\x4c\x34" "\x6d\x1f\x2f\x8f\xfb\x89\xfe\xbe\x69\xff\xd5\xfb\xa9\x5f\x9f\x71\xff" "\xcf\xff\xd1\xc1\x86\xf3\xdc\x69\xff\x17\xef\x79\xe5\x6d\xd5\xfb\x6d" "\xde\xff\xad\x4d\xdb\x9d\x7a\x64\x6b\x6d\xff\xf3\xf7\xd7\xf8\x1b\x9b" "\xfe\xf2\x73\x5f\x6c\xb9\xbf\x78\x3c\xfb\xff\xf6\x54\xc3\xe3\xd9\x7f" "\x77\x78\x1d\x87\xfd\x3f\xf3\x50\x58\x8f\xe1\xfa\xff\xbb\x98\xdf\x5f" "\xf3\x6f\x57\x38\x78\x77\xe3\xfb\x4f\xdc\xfe\x2b\x6b\xcf\x35\x3c\x9e" "\xe8\xc3\x3f\xcd\xf7\x7f\xf1\x3d\x47\x6b\x73\xd5\xe8\xea\x35\xd7\xbc" "\xe1\x8d\xd7\x9e\x7f\x7b\xf5\xdc\x65\xd9\xcb\xab\xf2\xfb\xeb\xb4\xff" "\xa3\x7f\x75\xb2\xe1\xf8\xbf\x7a\x43\x7e\x3e\xe2\xf5\xb1\xa3\xdf\xbc" "\xff\xc5\xc4\xfd\x9f\xfe\xcc\xf8\x89\x93\xb3\x67\x67\xa6\xd2\x59\x7d" "\xe2\xba\xda\xef\xce\xf9\x68\x7e\x3c\xf1\x78\xaf\x0b\xef\xad\xcd\x5f" "\x1f\x38\x79\xe6\xe1\xe9\xd3\x63\x93\x63\x93\x59\x36\x56\xdc\x5f\xa1" "\x77\xd9\xbe\x16\xe6\x8f\xf3\x71\xbe\xfd\xd6\x73\x0b\xde\x41\xb7\xde" "\x1f\x9e\xcf\x9b\xfe\xfc\xc5\x35\x9b\xff\xf5\x0b\xf1\xf2\x7f\xbf\x2f" "\xbf\xfc\xc2\x47\xf2\xef\x5b\xef\x0c\xdb\x7d\x29\x5c\xbe\x36\x3c\x7f" "\x97\xb6\xff\x85\x9e\xd9\x70\x43\xed\xf5\x5d\x79\x29\x1c\xe1\xdc\xc2" "\xdf\x17\xbc\x1c\xeb\x37\xfd\xd7\x9e\x25\x6d\x18\x1e\x7f\xf3\xcf\x05" "\x71\xbd\x9f\x7a\xeb\xc3\xb5\xf3\x50\xbd\xae\xf6\x7d\x23\xbe\xae\x97" "\x79\xfc\xdf\x9f\xca\xef\xe7\x1b\xe1\xbc\xce\x85\xdf\xcc\xbc\xf1\x86" "\xf9\xfd\xd5\x6f\x1f\x7f\x37\xc2\x85\x7b\xf3\xd7\xfb\xb2\xcf\x5f\x78" "\x9b\x8b\xcf\xeb\xdf\x84\xe7\xfb\x63\x3f\xcc\xef\x3f\x1e\x57\x7c\xbc" "\xdf\x0f\x3f\xc7\x7c\x6b\x5d\xe3\xfb\x5d\x5c\x1f\xdf\x38\x37\xd0\x7c" "\xff\xb5\xdf\xe2\x71\x3e\xbc\x9f\x64\xe7\xf3\xeb\xe3\x56\xf1\x7c\x5f" "\x78\xed\x86\x96\x87\x17\x7f\x0f\x49\x76\xfe\xc6\xda\xd7\x7f\x92\xee" "\xe7\xc6\x4b\x7a\x98\x8b\x99\x7d\x6c\x76\xe2\xd8\xcc\x89\xb3\x8f\x4e" "\x9c\x99\x9e\x3d\x33\x31\xfb\xd8\xe3\x07\x8e\x9f\x3c\x7b\xe2\xcc\x81" "\xda\xef\xf2\x3c\xf0\xa9\x4e\xb7\x9f\x7f\x7f\x5a\x53\x7b\x7f\x9a\x9a" "\xde\xb5\x33\xab\xbd\x5b\x9d\xcc\xc7\x15\x76\xb5\x8f\xff\xd4\xfd\x87" "\xa7\x76\x4f\x6e\x9e\x9a\x3e\x72\xe8\xec\x91\x33\xf7\x9f\x9a\x3e\x7d" "\xf4\xf0\xec\xec\xe1\xe9\xa9\xd9\xcd\x87\x8e\x1c\x99\xfe\x4c\xa7\xdb" "\xcf\x4c\xed\xdb\xb6\x7d\xef\x8e\xdd\xdb\xc7\x8f\xce\x4c\xed\xdb\xb3" "\x77\xef\x8e\xbd\xe3\x33\x27\x4e\x56\x0f\x23\x3f\xa8\x0e\x76\x4d\x7e" "\x7a\xfc\xc4\xe9\x03\xb5\x9b\xcc\xee\xdb\xb9\x77\xdb\x1d\x77\xec\x9c" "\x1c\x3f\x7e\x72\x6a\x7a\xdf\xee\xc9\xc9\xf1\xb3\x9d\x6e\x5f\xfb\xde" "\x34\x5e\xbd\xf5\xef\x8f\x9f\x9e\x3e\x76\xe8\xcc\xcc\xf1\xe9\xf1\xd9" "\x99\xc7\xa7\xf7\x6d\xdb\xbb\x6b\xd7\xf6\x8e\xbf\x0d\xf0\xf8\xa9\x23" "\xb3\x63\x13\xa7\xcf\x9e\x98\x38\x3b\x3b\x7d\x7a\x22\x7f\x2c\x63\x67" "\x6a\x17\x57\xbf\xf7\x75\xba\x3d\xc5\x34\xfb\x1f\xf9\xcf\xb3\xcd\x2a" "\xf9\x2f\xe2\xcb\x3e\x71\xeb\xae\xf4\xfb\x59\xab\x9e\x7b\x72\xd1\xbb" "\xca\x37\x69\xfa\x05\xa2\xaf\x86\xdf\x45\xf3\xcf\x6f\x3a\xb5\x67\x29" "\x5f\xc7\xdc\x3f\x1c\x66\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff" "\x48\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xaa\x30\x13\xf9\x1f" "\x00\x00\x00\x0a\x23\xe6\xfe\xd1\x30\x93\x92\xe4\xff\xc2\xf5\xff\xd7" "\x9d\x5b\xd2\xfe\xf5\xff\xf5\xff\xeb\xcf\x97\xfe\x7f\xc9\xfa\xff\xf7" "\xf6\x5a\xff\x3f\x7f\xbf\xd0\xff\xef\x8e\xe5\xf6\xef\xf5\xff\x03\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xba\xa0\xd7\xfa\xff\x31\xf7\xaf" "\xce\xb2\x52\xe6\x7f\x00\x00\x00\x28\x83\x98\xfb\xd7\x84\x99\xc8\xff" "\x00\x00\x00\x50\x18\x31\xf7\x5f\x13\x66\x22\xff\x03\x00\x00\x40\x61" "\xc4\xdc\xff\x86\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\xff\xd6\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff\x77\xa0\xff\x3f" "\x91\x95\xab\xff\x7f\xbe\x9b\xc7\xaf\xff\xaf\xff\xcf\x42\xbd\xd6\xff" "\x8f\xb9\xff\x8d\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7\x5f" "\x1b\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\x7f\x5d\x98\x89\xfc\x0f" "\x00\x00\x00\x85\x11\x73\xff\xda\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xd6\xfb\xd7\xff\xef\x4f\xfa\xff\xed\xe9\xff" "\x77\xa0\xff\xef\xf3\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc" "\xff\xa6\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\xdf\x1c\x66" "\x22\xff\x03\x00\x00\x40\xef\x19\xba\xbc\x9b\xc5\xdc\xff\x96\x30\x93" "\x05\xf9\xff\x32\x77\x00\x00\x00\x00\x5c\x75\x31\xf7\x5f\x9f\x35\x15" "\xc1\x4b\xf2\xf7\xff\xfa\xff\xfa\xff\xbd\xdf\xff\x5f\x95\xae\xd3\xff" "\xd7\xff\xcf\x7a\xb2\xff\x3f\x98\xe9\xff\xf7\x8e\xab\xd2\xff\x7f\x76" "\x22\x3d\x7f\xfa\xff\xfa\xff\x99\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\x49" "\xaf\xf5\xff\x6b\xb9\x3f\x1b\xcd\xde\x1a\x66\x52\x92\xfc\x0f\x00\x00" "\x00\x65\x10\x73\xff\x0d\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd" "\xbf\x14\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xbf\x2e\xcc\xa4\x24" "\xf9\x5f\xff\xbf\x7f\xfb\xff\x23\xe1\x36\xc5\xef\xff\xfb\xfc\x7f\xfd" "\xff\x5e\xef\xff\xfb\xfc\xff\x5e\xe2\xf3\xff\xdb\xd3\xff\xef\x40\xff" "\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xfe\x7f\xcc\xfd\x37\x86\x99" "\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\x7f\x53\x98\x89\xfc\x0f\x00" "\x00\x00\x85\x11\x73\xff\x2f\x87\x99\xc8\xff\x00\x00\x00\x50\x18\x31" "\xf7\xaf\x0f\x33\x29\x49\xfe\xd7\xff\xef\xf1\xfe\x7f\x6c\x8e\x96\xfa" "\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x97\x4e\xff\xbf\x3d\xfd\xff" "\x0e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\xe9\xaa\x5e\xeb\xff\xc7\xdc\xff" "\xb6\x30\x93\x92\xe4\x7f\x00\x00\x00\x28\x83\x98\xfb\x6f\x0e\x33\x91" "\xff\x01\x00\x00\xa0\x30\x62\xee\x7f\x7b\x98\x89\xfc\x0f\x00\x00\x00" "\x85\x11\x73\xff\x58\x98\x49\x49\xf2\xbf\xfe\x7f\x8f\xf7\xff\xf3\x1e" "\xfc\x48\xab\xcf\xff\xbf\xdc\xfe\x7f\xf5\xae\xf5\xff\xf5\xff\xf5\xff" "\xf5\xff\x8b\x4a\xff\xbf\x3d\xfd\xff\x0e\xf4\xff\xf5\xff\xbb\xd2\xff" "\x9f\x3b\xa7\xff\xaf\xff\x4f\xae\xd7\xfa\xff\x31\xf7\x6f\x08\x33\x29" "\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\x7f\x63\x98\x89\xfc\x0f\x00\x00" "\x00\x85\x11\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd" "\x9b\xc2\x4c\x4a\x92\xff\xf5\xff\xfb\xa2\xff\x9f\x75\xb3\xff\xef\xf3" "\xff\xf5\xff\xf5\xff\xf5\xff\x8b\x4c\xff\xbf\x3d\xfd\xff\x0e\xf4\xff" "\xf5\xff\x7d\xfe\xbf\xfe\x3f\x5d\xd5\x6b\xfd\xff\x98\xfb\xdf\x11\x66" "\x52\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xe6\x30\x13\xf9\x1f\x00" "\x00\x00\x0a\x23\xe6\xfe\x77\x86\x99\xc8\xff\x00\x00\x00\x50\x18\x31" "\xf7\x6f\x09\x33\x29\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff" "\x6f\xbd\x7f\xfd\xff\xfe\xa4\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa\xff" "\x57\xa0\xff\x3f\xa7\xff\xaf\xff\x5f\x62\xbd\xd6\xff\x8f\xb9\xff\x5d" "\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7\x6f\x0d\x33\x91\xff" "\x01\x00\x00\xa0\x30\x62\xee\xbf\x35\xcc\x44\xfe\x07\x00\x00\x80\xc2" "\x88\xb9\x7f\x3c\xcc\xa4\x24\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\xbf\xf5\xfe\xf5\xff\xfb\x93\xfe\x7f\x7b\xfa\xff\x1d\xe8\xff\xeb" "\xff\xfb\xfc\x7f\xfd\x7f\xba\xaa\xd7\xfa\xff\x31\xf7\xdf\x16\x66\x52" "\x92\xfc\x0f\x00\x00\x00\x65\x10\x73\xff\xed\x61\x26\xf2\x3f\x00\x00" "\x00\x14\x46\xcc\xfd\x13\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd" "\x93\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x97\xd4\xff" "\x7f\xfb\xfc\xfd\xea\xff\xe7\xf4\xff\x7b\x8b\xfe\x7f\x7b\xfa\xff\x1d" "\xe8\xff\xeb\xff\x5f\xf5\xfe\xff\xb0\xfe\x3f\x85\xd2\x6b\xfd\xff\x98" "\xfb\xb7\x85\x99\x94\x24\xff\x03\x00\x00\x40\x19\xc4\xdc\xbf\x3d\xcc" "\x44\xfe\x07\x00\x00\x80\xc2\x88\xb9\x7f\x47\x98\x89\xfc\x0f\x00\x00" "\x00\x85\x11\x73\xff\xce\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\x9f\xff\xdf\x7a\xff\xfa\xff\xfd\x49\xff\xbf\xbd\xee\xf7\xff" "\xe3\x43\xd4\xff\xd7\xff\xd7\xff\xf7\xf9\xff\xfa\xff\x2c\xd4\x6b\xfd" "\xff\x98\xfb\xef\x08\x33\x29\x49\xfe\x07\x00\x00\x80\x32\x88\xb9\x7f" "\x57\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\xee\x30\x13\xf9\x1f" "\x00\x00\x00\x0a\x23\xe6\xfe\x3d\x61\x26\x25\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xad\xf7\xaf\xff\xdf\x9f\xf4\xff\xdb\xf3\xf9" "\xff\x1d\xe8\xff\xeb\xff\xeb\xff\xeb\xff\xb3\x4c\xf7\xfe\x61\xfd\x57" "\xbd\xd6\xff\x8f\xb9\x7f\x6f\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41" "\xcc\xfd\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x95\x30" "\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x5f\x0d\x33\x29\x49\xfe\xd7" "\xff\x6f\xe8\x9e\x57\x1f\xae\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x7f\x8d\xfe" "\x7f\x7f\xd2\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f" "\xba\x6a\xd1\xfe\x7f\x88\xde\x2b\xdd\xff\x8f\xb9\x7f\x5f\x98\x49\x49" "\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\xbf\x16\x66\x22\xff\x03\x00\x00" "\x40\x61\xc4\xdc\xff\x9e\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe" "\xfd\x61\x26\x25\xc9\xff\xfa\xff\x3e\xff\x5f\xff\x5f\xff\x5f\xff\xbf" "\xf5\xfe\x57\xba\xff\x3f\x12\xef\x57\xff\x7f\x59\xf4\xff\xdb\xd3\xff" "\xef\x40\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xae\xea\xb5\xcf\xff\x8f\xb9" "\xff\xbd\x61\x26\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7\xdf\x19\x66" "\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\xbe\x30\x13\xf9\x1f\x00\x00" "\x00\x0a\x23\xe6\xfe\xf7\x87\x99\x94\x24\xff\xeb\xff\xeb\xff\xf7\x4b" "\xff\xff\x1a\xfd\x7f\xfd\xff\xa6\xc7\x53\xb4\xfe\xbf\xcf\xff\xef\x0e" "\xfd\xff\xf6\xf4\xff\x3b\xd0\xff\xd7\xff\xd7\xff\xd7\xff\xa7\xab\x7a" "\xad\xff\x1f\x73\xff\x07\xc2\x4c\x4a\x92\xff\x01\x00\x00\xa0\x0c\x62" "\xee\xff\x60\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x87\xc2\x4c" "\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\x3f\x1c\x66\x52\x92\xfc\xaf\xff" "\xaf\xff\xdf\x2f\xfd\xff\x4c\xff\x5f\xff\xbf\xe9\xf1\xe8\xff\xeb\xff" "\xb7\xa2\xff\xdf\x9e\xfe\x7f\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\x74" "\x55\xaf\xf5\xff\x63\xee\xff\xf5\x30\x93\x92\xe4\x7f\x00\x00\x00\x28" "\x83\x98\xfb\xef\x0a\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xff\x48" "\x98\x89\xfc\x0f\x00\x00\x00\x85\x11\x73\xff\x47\xc3\x4c\x4a\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x5b\xef\x5f\xff\xbf\x3f\xe9" "\xff\xb7\xd7\x67\xfd\xff\x5f\x5c\x1b\x2e\xef\x56\xff\x7f\xa8\xd3\x01" "\xe8\xff\xeb\xff\xaf\x60\xff\xbf\x79\x3d\x5e\x91\xfe\xff\x0f\x16\xeb" "\xff\xcf\xad\x6a\xbe\xbd\xfe\x3f\x57\x42\xaf\xf5\xff\x63\xee\xff\x58" "\x98\x49\x49\xf2\x3f\x00\x00\x00\x94\x41\xcc\xfd\x1f\x0f\x33\x91\xff" "\x01\x00\x00\xa0\x30\x62\xee\xff\x44\x98\x89\xfc\x0f\x00\x00\x00\x85" "\x11\x73\xff\x6f\x84\x99\x94\x24\xff\xeb\xff\x57\x8f\x63\xbe\xbd\xac" "\xff\x5f\xd4\xfe\xff\x80\xfe\xbf\xfe\xbf\xfe\x7f\x49\xe8\xff\xb7\xd7" "\x67\xfd\x7f\x9f\xff\xdf\x44\xff\xbf\xb7\x8f\xdf\xe7\xff\xeb\xff\xb3" "\x50\xaf\xf5\xff\x63\xee\xbf\x3b\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca" "\x20\xe6\xfe\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8c\x98\xfb\xef\x0d" "\x33\x91\xff\x01\x00\x00\xa0\x30\x62\xee\xbf\x2f\xcc\xa4\x24\xf9\x5f" "\xff\xdf\xe7\xff\x97\xa3\xff\xef\xf3\xff\x33\xfd\x7f\xfd\xff\x92\xd0" "\xff\x6f\x4f\xff\xbf\x03\xfd\x7f\xfd\xff\x5e\xeb\xff\xff\xa7\xfe\x3f" "\xfd\xad\xd7\xfa\xff\x31\xf7\xdf\x1f\x66\x52\x92\xfc\x0f\x00\x00\x00" "\x65\x10\x73\xff\x03\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xbf" "\x19\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\xc9\x30\x93\x92\xe4" "\x7f\xfd\xff\x7e\xe9\xff\x8f\xf5\x69\xff\xff\x49\xfd\xff\x2b\xd8\xff" "\xbf\xf9\xda\x7c\x3b\xfd\x7f\xfd\x7f\xe6\xe9\xff\xb7\xa7\xff\xdf\x81" "\xfe\xbf\xfe\x7f\xaf\xf5\xff\x7d\xfe\x3f\x7d\xae\xd7\xfa\xff\x31\xf7" "\x3f\x18\x66\xb2\xf4\xfc\x3f\xba\xe4\x2d\x01\x00\x00\x80\xab\x22\xe6" "\xfe\xdf\x0a\x33\x29\xc9\xdf\xff\x03\x00\x00\x40\x19\xc4\xdc\xff\xdb" "\x61\x26\xf2\x3f\x00\x00\x00\x14\x46\xcc\xfd\xbf\x13\x66\x52\x92\xfc" "\xaf\xff\xdf\x2f\xfd\x7f\x9f\xff\x9f\xe9\xff\xfb\xfc\xff\xa6\xc7\xa3" "\xff\xaf\xff\xdf\xca\xca\xf5\xff\xe3\x3b\x8f\xfe\xbf\xfe\xbf\xfe\x7f" "\xa4\xff\xaf\xff\xaf\xff\x4f\xb3\x5e\xeb\xff\xc7\xdc\xff\xbb\x61\x26" "\x25\xc9\xff\x00\x00\x00\x50\x06\x31\xf7\x3f\x14\x66\x22\xff\x03\x00" "\x00\x40\x5f\x68\xf5\xff\x64\x37\x8b\xb9\xff\x40\x98\x89\xfc\x0f\x00" "\x00\x00\x85\x11\x73\xff\xc1\x30\x93\x92\xe4\x7f\xfd\x7f\xfd\x7f\xfd" "\xff\x1e\xed\xff\xff\xd9\xc6\x7f\xf9\xde\x77\x3e\x7e\x70\x9b\xfe\xbf" "\xfe\xbf\xfe\xff\x25\x59\xd1\xcf\xff\xaf\xbe\xf8\x7d\xfe\xbf\xfe\xbf" "\xfe\x7f\xa2\xff\xaf\xff\xaf\xff\x4f\xb3\x5e\xeb\xff\xc7\xdc\x7f\x28" "\xcc\xa4\x24\xf9\x1f\x00\x00\x00\xca\x20\xe6\xfe\xdf\x0b\x33\x91\xff" "\x01\x00\x00\xa0\x30\x62\xee\x3f\x1c\x66\x22\xff\x03\x00\x00\x40\x61" "\xc4\xdc\x3f\x15\x66\x52\x92\xfc\xaf\xff\xaf\xff\xaf\xff\xdf\xa3\xfd" "\xff\x3e\xfe\xfc\xff\x78\x3e\xf4\xff\x1b\x75\xad\xff\x1f\xdf\x74\xf5" "\xff\x5b\xca\xfb\xf7\x69\x15\x5d\xd9\xfe\xff\x03\xf3\x3d\x71\xfd\xff" "\x4b\xed\xff\x8f\xb4\xbc\x54\xff\x5f\xff\xbf\x9f\x8f\x5f\xff\x5f\xff" "\x9f\x85\x7a\xad\xff\x1f\x73\xff\x74\x98\x49\x49\xf2\x3f\x00\x00\x00" "\x94\x41\xc8\xfd\x03\x47\xf2\x39\x7f\x85\xfc\x0f\x00\x00\x00\x85\x11" "\x73\xff\xd1\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x87\xc3\x4c" "\x4a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\x7f\xeb\xfd\xb7" "\xeb\xff\x57\x86\x7c\xfe\x7f\xaf\x4a\xfd\xfb\x9f\xd5\x5e\x28\xfa\xff" "\x4d\x7a\xa7\xff\xdf\x9a\xfe\xbf\xfe\x7f\x3f\x1f\xbf\xfe\xbf\xfe\x3f" "\x0b\xf5\x5a\xff\x3f\xe6\xfe\x99\x30\x93\x92\xe4\x7f\x00\x00\x00\x28" "\x83\x98\xfb\x3f\x15\x66\x22\xff\x03\x00\x00\x40\x61\xc4\xdc\xff\xe9" "\x30\x13\xf9\x1f\x00\x00\x00\x0a\x23\xe6\xfe\x63\x61\x26\x25\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xad\xf7\xdf\xb3\x9f\xff\xaf" "\xff\xdf\xd6\x72\xfb\xf7\xfa\xff\x81\xfe\x7f\xb9\xfb\xff\xff\xa3\xff" "\xaf\xff\xaf\xff\x4f\x77\xf4\x5a\xff\x3f\xe6\xfe\xe3\x61\x26\x25\xc9" "\xff\x00\x00\x00\xf0\xff\xec\xdd\x49\x93\x65\x75\x5a\xc7\xf1\x93\x58" "\x50\x59\x01\x46\xb8\x73\xe1\xc6\x08\x97\x46\xf8\x06\x58\xe8\x5a\x5f" "\x80\x46\xb8\x71\x63\x84\xe1\x02\x07\x54\x9c\x29\x9c\x47\x14\x14\x67" "\x45\x70\x1e\x40\x05\x41\x44\x05\x67\x11\x54\x44\x71\x06\x15\x67\x7b" "\x6e\x7a\xa2\xe9\xee\xa8\x0e\x32\x9f\xe7\xa9\x1c\x4e\x9e\x9b\x99\x75" "\xf3\xde\x73\xfe\xff\xcf\x67\xc1\x63\x67\x67\x72\xaf\x04\x91\xc5\xaf" "\x92\x6f\x9f\x1e\xe4\xee\xbf\x23\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9" "\xfb\xbf\x24\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x34\x6e\xe9" "\x64\xff\xeb\xff\x6f\xa4\xff\xbf\x5e\x29\xeb\xff\x0f\xbf\xff\xd5\xfd" "\x7f\xbe\xe2\x05\xf6\xff\x9f\xa9\xff\x3f\xe9\xf5\xf5\xff\xcb\xe8\xff" "\x3f\xef\x66\xfd\xff\x79\xe8\xff\xa7\xe9\xff\x57\x18\xef\xff\x6f\x19" "\x86\xa1\xaf\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xd6\x64\x6e\xfd\x7f\xee" "\xfe\x2f\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x1e\xb7" "\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x77\xc6\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x57\xc4\x2d\x9d\xec\xff\x23\xfd\xff\xce\xd0\x67\xff" "\x9f\x19\xaf\xe7\xff\x7b\xfe\xbf\xfe\x5f\xff\x3f\x9b\xfe\xdf\xf3\xff" "\xcf\x67\xb3\xfd\xff\x3d\x6f\x7d\xe7\xd3\xff\x9f\xba\xff\x7f\xf4\xfe" "\x55\x2f\x3b\xd3\xfe\xbf\xc5\xe7\xff\xdf\x32\xf6\xc1\x6d\xf7\xf3\x37" "\x6a\xdb\xef\xff\x94\xfd\xff\xe5\x93\xbe\x5e\xff\x4f\x8b\xe6\xd6\xff" "\xe7\xee\xff\xca\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x55" "\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x57\xdc\x62\xff\x03\x00" "\x00\x40\x33\x72\xf7\x7f\x75\xdc\xd2\xc9\xfe\x5f\xdf\xf3\xff\xaf\xec" "\x7d\x7c\xa1\xfd\x7f\xd1\xff\xeb\xff\xf7\x3e\xa0\xff\xd7\xff\xeb\xff" "\x17\xcb\xf3\xff\xa7\xf5\xf4\xfc\xff\x3b\x5f\xbe\xf5\x8e\xd7\x9f\xfc" "\x94\xa7\xce\xf2\xfa\x1d\xf5\xff\xa3\xb6\xdd\xcf\x2f\xfd\xfd\x7b\xfe" "\xbf\xfe\x9f\xe3\xe6\xd6\xff\xe7\xee\xff\x9a\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\xb5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd" "\xff\x75\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf5\x71\x4b\x27" "\xfb\x7f\x7d\xfd\xff\xa2\x9f\xff\x5f\x36\xd2\xff\x7f\xa2\xfe\x5f\xff" "\x7f\xf8\xf3\xf5\xff\xfb\xf4\xff\xfa\xff\x75\xd0\xff\x4f\xeb\xa9\xff" "\x3f\xcf\xeb\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xeb\x35\xb7\xfe\x3f\x77" "\xff\x37\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x6f\x8c\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xbb\xe3\x16\xfb\x1f\x00\x00\x00" "\x96\xeb\x48\xc8\x96\xbb\xff\x6a\xdc\xd2\xc9\xfe\xd7\xff\x5f\x78\xff" "\x9f\x89\xb0\xe7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x06\xe8\xff\xa7" "\xe9\xff\x57\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\xd6\x6a\x6e\xfd\x7f\xee" "\xfe\x7b\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x37\xc5\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x37\xc7\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\xb7\xc4\x2d\x9d\xec\x7f\xfd\xff\x16\x9e\xff\xaf\xff" "\xd7\xff\x1f\xf9\x7c\xfd\xff\x3e\xfd\xbf\xfe\x7f\x1d\xf4\xff\xd3\xf4" "\xff\x2b\xe8\xff\x6f\xb4\x9f\xbf\x59\xff\xaf\xff\xd7\xff\x73\xd0\x19" "\xfb\xff\x37\x27\xbe\x6d\xaf\xa5\xff\xcf\xdd\xff\xad\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xdb\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xdb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x3b\xe2" "\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x9f\xbb\xff\x3f\xfe\xb7" "\xde\x1e\xfd\xff\x38\xfd\xff\x66\xe8\xff\xa7\xcd\xa6\xff\xdf\xb9\x34" "\xfa\x61\xfd\xff\xe2\xfb\x7f\xcf\xff\xd7\xff\xeb\xff\x39\x64\x6e\xcf" "\xff\xcf\xdd\xff\x9d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\xbb\xe2\x96\x89\xfd\x7f\xe6\xdf\xcc\x07\x00\x00\x00\xb6\x2a\x77\xff" "\x77\xc7\x2d\x7e\xfe\x0f\x00\x00\x00\x8b\x97\xd5\x59\xee\xfe\xef\x89" "\x5b\x3a\xd9\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xef\xf9\xff\xe3\xaf\x3f" "\xd5\xff\x3f\x75\xe0\xfd\xe9\xff\xe7\x45\xff\x3f\x6d\x36\xfd\xff\x09" "\xf4\xff\xfa\xff\x25\xbf\x7f\xfd\xbf\xfe\x9f\xe3\xe6\xd6\xff\xe7\xee" "\xff\xde\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x6f\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x5f\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\x7f\x7f\xdc\xd2\xc9\xfe\x1f\xef\xff\xaf\xff\xf7\xfa\xff" "\xd3\xd1\xff\x1f\x7e\xff\xbd\xf5\xff\x69\x53\xfd\x7f\xfe\x19\xf5\xff" "\x93\xfd\xff\x67\x79\xfe\x7f\x9f\xf4\xff\xd3\x36\xdf\xff\x5f\xd6\xff" "\x1f\xfe\xf3\xeb\xff\x2f\xd0\xb6\xdf\x7f\xe3\xfd\xff\x95\x55\x5f\xaf" "\xff\x67\xcc\xdc\xfa\xff\xdc\xfd\xf7\xc5\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\xfb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x07" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x07\xe3\x96\x4e\xf6\xbf" "\xe7\xff\xeb\xff\xf5\xff\x9e\xff\xdf\x68\xff\x7f\xa1\xcf\xff\x1f\x36" "\xde\xff\x5f\xd2\xff\x9f\x92\xfe\x7f\x9a\xe7\xff\xaf\xa0\xff\xd7\xff" "\xeb\xff\x3d\xff\x9f\xb5\x9a\x5b\xff\x9f\xbb\xff\x81\xb8\xa5\x93\xfd" "\x0f\x00\x00\x00\x3d\x78\xe0\x8d\x61\x6f\xf7\xff\xd0\x30\xd8\xff\x00" "\x00\x00\xb0\x44\x07\xff\xdd\x81\xa3\xff\x42\x69\xc8\xdd\xff\xc3\x71" "\x8b\xfd\x0f\x00\x00\x00\xb3\x76\xf9\x0c\x9f\x9b\xbb\xff\x47\xe2\x96" "\x43\xfb\x7f\xbd\xed\xdd\x9c\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xfc\xf5\xcf\xda\xff\xaf\x7a\x30\xb2\xe7\xff\x6f\x86\xfe\x7f\x9a\xfe" "\x7f\x05\xfd\xff\x45\xf4\xf3\x97\x1a\xeb\xff\x1f\x3c\xe9\xeb\xe7\xd0" "\xff\xdf\xad\xff\x67\x66\x0e\xf5\xff\xcf\x5c\xff\xf8\xb6\xfa\xff\xdc" "\xfd\x3f\x1a\xb7\xf8\xf9\x3f\x00\x00\x00\x34\x23\x77\xff\x8f\xc5\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8f\xc7\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x4f\xc4\x2d\x9d\xec\xff\x0b\xef\xff\x27\x82\x58\xfd" "\xbf\xfe\x5f\xff\xaf\xff\x6f\xa9\xff\x5f\x45\xff\xbf\x19\xfa\xff\x69" "\xfa\xff\x15\xf4\xff\x9e\xff\xef\xf9\xff\xfa\x7f\xd6\xea\x7a\xff\x7f" "\xf8\xfb\xe1\xb6\xfa\xff\xdc\xfd\x3f\x19\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\x7f\x2a\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f" "\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\x8e\x5b\x3a\xd9\xff" "\x9e\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xe3\xaf\xaf\xff\x5f\x26\xfd" "\xff\x34\xfd\xff\x0a\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x5a\x1d\x7a\xfe" "\xff\x01\xdb\xea\xff\x73\xf7\x3f\x14\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x1f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\x89" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f\x8d\x5b\x3a\xd9\xff\xfa" "\xff\x8b\xed\xff\xf3\xe3\xfa\x7f\xfd\xff\xa0\xff\xd7\xff\xeb\xff\x37" "\xa2\xdb\xfe\x7f\x67\xec\x57\xa2\xe3\x4e\xe8\xff\x5f\xf8\xa2\xab\x9f" "\x73\xf8\x23\xfa\x7f\xfd\xff\xc2\xfb\xff\xfc\x5e\xad\xff\xd7\xff\xb3" "\x5d\xb3\xe8\xff\xaf\x5d\xff\xa7\xcb\xdc\xfd\x3f\x17\xb7\x74\xb2\xff" "\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x3e\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x7f\x21\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x31\x6e" "\x39\xe3\xfe\xff\xa4\xb5\xbe\xab\xcd\xd1\xff\x7b\xfe\xbf\xfe\x5f\xff" "\xaf\xff\x1f\x7f\x7d\xfd\xff\x32\x75\xdb\xff\x9f\x92\xe7\xff\xaf\xa0" "\xff\x6f\xa6\xff\xf7\xfc\x7f\xfd\x3f\xf3\x30\x8b\xfe\xff\xc0\x7f\xce" "\xdd\xff\x4b\x71\x8b\x9f\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x72\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x4a\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xff\x6a\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xfd\xff\xf8\xeb\x9f\xb7\xff\xdf\x1d\xc6\xe9\xff\x37\x43\xff\x3f" "\x4d\xff\xbf\x82\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x73\xeb\xff\x73" "\xf7\x3f\x12\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x1f\x8d\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x5f\x8b\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x5f\x8f\x5b\x3a\xd9\xff\xfa\xff\xed\xf5\xff\x97\xf5" "\xff\xfa\x7f\xfd\x7f\x93\xfd\xff\x49\xf4\xff\x9b\xa1\xff\x9f\xb6\xb9" "\xfe\x3f\xbf\x5f\xcc\xb0\xff\x7f\x6c\xe2\x0d\x8c\xf5\xff\xd7\x2e\xeb" "\xff\xf5\xff\xfa\x7f\xfd\x3f\xe7\x34\xb7\xfe\x3f\x77\xff\x6f\xc4\x2d" "\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7\xe2\x16\xfb\x1f\x00\x00" "\x00\x9a\x91\xbb\xff\xf1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\xcd\xb8\xa5\x93\xfd\xaf\xff\xf7\xfc\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfe" "\xfa\xfa\xff\x65\xd2\xff\x4f\xf3\xfc\xff\x15\x3c\xff\x5f\xff\xaf\xff" "\xd7\xff\xb3\x56\x73\xeb\xff\x73\xf7\x3f\x11\xb7\x74\xb2\xff\x01\x00" "\x00\xa0\x07\xb9\xfb\x9f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\xdf\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xa7\xe2\x96\x4e\xf6" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x5f\x48\xff\x7f\x55\xff\x7f\x94\xfe" "\x7f\x33\x2e\xae\xff\x1f\xf4\xff\xfa\x7f\xfd\xff\x0a\xfa\x7f\xfd\xff" "\xaa\xfe\xff\xb6\x55\x7f\x12\x9a\xb3\xa9\xfe\xff\xcd\xf8\x7e\xbf\xaa" "\xff\xcf\xdd\xff\xdb\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff" "\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x9d\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\xdd\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x9e\xff\x3f\xfe\xfa\xfa\xff\x65\xf2\xfc\xff\x69\x3d\xf6" "\xff\x63\xbf\x46\x9f\x48\xff\xaf\xff\xd7\xff\x7b\xfe\x3f\x6b\xb5\xa9" "\xfe\xff\xa4\xde\xff\xe8\x7f\xce\xdd\xff\x7b\x71\x4b\x27\xfb\x1f\x00" "\x00\x00\x7a\x90\xbb\xff\x99\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x36\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x3f\x6e\xe9\x64" "\xff\xeb\xff\xf5\xff\x87\xfb\xff\x61\xd0\xff\xeb\xff\xf5\xff\xfb\x36" "\xd0\xff\xef\x0e\xfa\xff\xb5\xd3\xff\x4f\xeb\xb1\xff\x3f\xcb\xeb\xeb" "\xff\x1b\xed\xff\x6f\x1a\x1a\xea\xff\xaf\x9c\xf8\xf5\xfa\x7f\xe6\x68" "\x6e\xfd\x7f\xee\xfe\x3f\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x7f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x14\xb7\xd8" "\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x1c\xb7\xb4\xb4\xff\x3f\x76\x72" "\xfa\xb6\xfc\xfe\xff\xf2\x91\x2f\xd4\xff\x0f\xc3\xf0\xca\x5d\x9e\xff" "\xaf\xff\x9f\x78\x7d\xfd\xff\x6c\xfa\xff\xfa\xab\xaa\xff\x5f\x1f\xfd" "\xff\x34\xfd\xff\x0a\xfa\xff\x36\xfb\x7f\xcf\xff\xd7\xff\xb3\x35\x73" "\xeb\xff\x73\xf7\xff\x49\xdc\xd2\xd2\xfe\x07\x00\x00\x80\xce\xe5\xee" "\xff\xd3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xb3\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x2e\x6e\xe9\x64\xff\x2f\xbf\xff\x3f" "\xfa\x85\xfa\xff\xe1\x86\x9e\xff\xaf\xff\xdf\xfb\x40\x13\xfd\xff\xce" "\x89\xaf\xaf\xff\xd7\xff\xb7\xec\x46\xfb\xfb\x87\x76\xe3\xd7\x34\xfd" "\xbf\xfe\x5f\xff\x3f\xda\xcf\xef\x9c\xf0\xcf\x3d\x83\xfe\x5f\xff\xaf" "\xff\x67\xc4\xdc\xfa\xff\xdc\xfd\x7f\x1e\xb7\x74\xb2\xff\x01\x00\x00" "\xa0\x07\xb9\xfb\x9f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x17" "\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x2f\xe2\x96\x4e\xf6\xbf" "\xfe\x5f\xff\xdf\x5c\xff\x7f\x53\x1f\xfd\xff\xae\xe7\xff\xeb\xff\xf5" "\xff\xa3\xe6\xf2\xfc\xff\xdb\x6f\xff\xec\x97\xf4\xff\xfa\xff\x16\xfb" "\xff\x29\xfa\x7f\xfd\xbf\xfe\x9f\xa3\xe6\xd6\xff\xe7\xee\xff\xcb\xb8" "\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x57\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\x62\xdc\x62\xff\x03\x00\x00\x40\x33\x5e\xdc" "\x0b\x39\x77\x87\xbf\x1e\x86\x2e\xf7\xff\xf1\xfe\xff\xe6\x61\xbf\x50" "\xdd\x37\xd6\xff\x47\xa3\xa6\xff\x3f\x40\xff\x7f\xf8\xfd\x7b\xfe\xff" "\xf8\xdf\x1f\x9b\x7d\xfe\xff\xc9\xaf\xbf\xb1\xfe\xff\x33\xf4\xff\x07" "\xe9\xff\x37\x63\x2e\xfd\xbf\xe7\xff\x9f\xef\xfd\xeb\xff\xf5\xff\x4b" "\x7e\xff\x67\xea\xff\x3f\xf5\xf8\xd7\xeb\xff\x69\xd1\xdc\xfa\xff\xdc" "\xfd\x2f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbf\x89\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xbf\x8d\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x97\xe3\x96\x4e\xf6\xbf\xe7\xff\xeb\xff\xf5\xff\xfa" "\x7f\xcf\xff\x1f\x7f\x7d\xfd\xff\x32\xe9\xff\xa7\xe9\xff\x57\xd0\xff" "\xdf\x78\x3f\x9f\xdf\x55\xf5\xff\xcb\x7d\xfe\xff\x27\xe8\xff\x59\x9f" "\xb9\xf5\xff\xb9\xfb\xff\x2e\x6e\xd9\x1b\x7e\x9f\x76\xdb\x39\xff\xdf" "\x04\x00\x00\x00\x66\x24\x77\xff\xdf\xc7\x2d\x9d\xfc\xfc\x1f\x00\x00" "\x00\x7a\x90\xbb\xff\x1f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x1f\xe3\x96\x4e\xf6\xbf\xfe\x5f\xff\xbf\xa4\xfe\x7f\xb8\xaa\xff\xd7" "\xff\xeb\xff\xf5\xff\xd3\xf4\xff\xd3\xf4\xff\x2b\xf4\xd3\xff\xef\x8e" "\x7d\x70\xdb\xfd\xfc\x8d\xda\xf6\xfb\x6f\xa6\xff\xf7\xfc\x7f\xd6\x68" "\x6e\xfd\x7f\xee\xfe\x7f\x8a\x5b\x3a\xd9\xff\x00\x00\x00\xd0\xb6\x37" "\xf6\xfe\x98\xbb\xff\x9f\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\x5f\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x95\xb8\xa5\x93\xfd" "\xaf\xff\xd7\xff\x2f\xa9\xff\x3f\xdf\xf3\xff\xbf\x40\xff\x7f\xe4\xf5" "\xf5\xff\xfa\xff\x96\xe9\xff\xf3\x57\xf4\x71\xfa\xff\x15\xfa\xe9\xff" "\x47\x6d\xbb\x9f\x5f\xfa\xfb\xd7\xff\xeb\xff\x39\x6e\x6e\xfd\x7f\xee" "\xfe\x57\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xbf\xc6\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xbf\xc5\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\xbf\xc7\x2d\x4d\xec\xff\x4b\x2b\x3f\x43\xff\xdf\x57" "\xff\xbf\x33\xf4\xd8\xff\x7b\xfe\xbf\xfe\x5f\xff\xdf\x93\xe5\xf4\xff" "\x0f\x8f\xfe\x22\xed\xf9\xff\xfa\x7f\xfd\xff\x72\xdf\xbf\xfe\x5f\xff" "\xcf\x71\x73\xeb\xff\x73\xf7\xbf\xb6\x73\xa9\xc1\xfd\x0f\x00\x00\x00" "\xed\xfa\xdc\x4f\xff\xe2\x57\x4f\xfb\xb9\xaf\xed\xfd\x71\x77\xf8\x8f" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xcf\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\xff\xaf\xb8\xa5\x93\xfd\xaf\xff\xef\xab\xff\xef" "\xf3\xf9\xff\xfa\x7f\xfd\xbf\xfe\xbf\x27\x1b\xeb\xff\x9f\x8b\xff\x62" "\x86\xcf\xff\x9f\x32\xff\xfe\x7f\xff\x9f\x47\xf4\xff\xfa\xff\x25\xbe" "\x7f\xfd\xbf\xfe\x9f\xe3\xe6\xd6\xff\xe7\xee\xff\xef\xb8\xe5\xc0\xf0" "\x5b\xfd\xbf\xa2\x07\x00\x00\x00\x6c\xd4\x2d\x67\xfb\xf4\xdc\xfd\xff" "\x13\xb7\x74\xf2\xf3\x7f\x00\x00\x00\xe8\x41\xee\xfe\xff\x8d\x5b\x8e" "\xed\xff\x6b\xa7\xfc\xb7\xda\x01\x00\x00\x80\x79\xda\x1d\xfe\x2f\x6e" "\xe9\xe4\xe7\xff\xfa\xff\x99\xf7\xff\xc3\x05\xf5\xff\xf1\x79\xfa\xff" "\x7d\xfa\x7f\xfd\xff\xd8\xeb\xeb\xff\x97\x69\x39\xcf\xff\x1f\x37\xf3" "\xfe\xff\xda\x8e\xe7\xff\xeb\xff\x27\xe8\xff\xf5\xff\xfa\x7f\x8e\x9a" "\x5b\xff\x9f\xbb\xff\xe9\x27\x86\x2e\xf7\x3f\x00\x00\x00\x34\xea\xd0" "\xef\x28\xfc\xff\xde\x1f\x77\x87\xb7\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xdb\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1d\x71" "\x4b\x27\xfb\xff\x8c\xfd\xff\x3d\xfa\xff\x71\xf3\x7a\xfe\xff\x95\xfa" "\xbf\x3c\xff\xbf\xf3\xfe\xff\xde\xdd\xd1\xd7\xd7\xff\xeb\xff\x5b\xa6" "\xff\x9f\x36\xff\xe7\xff\xeb\xff\xf5\xff\xcb\x7d\xff\xfa\x7f\xfd\x3f" "\xc7\x9d\xa1\xff\xdf\x1b\xa4\x17\xdd\xff\xe7\xee\x7f\x67\xdc\xd2\xc9" "\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x57\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x13" "\xb7\x74\xb2\xff\x3d\xff\x7f\x0b\xfd\xff\x7d\x97\x87\xe1\x42\xfb\xff" "\x53\x3c\xff\x5f\xff\xdf\x47\xff\x7f\xc2\xeb\xb7\xd3\xff\x7f\xf2\xad" "\x57\x9f\xff\xfc\x2f\x7c\xfc\x11\xfd\x3f\xd7\x6d\xb2\xff\xcf\xbf\x17" "\xf4\xff\xfa\x7f\xfd\xff\x3e\xfd\xbf\xfe\x5f\xff\xcf\x51\x73\x7b\xfe" "\x7f\xee\xfe\xf7\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xd7" "\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x7d\x71\xcb\x5b\xfb\xff" "\xd9\x6d\xbd\x2b\x00\x00\x00\x60\x9d\x72\xf7\xbf\x3f\x6e\xe9\xe4\xe7" "\xff\xfa\xff\x16\x9f\xff\xbf\xcc\xfe\x3f\xff\x5a\x6f\xa1\xff\xbf\xba" "\xbc\xfe\x3f\x9b\xe2\xde\xfb\x7f\xcf\xff\xd7\xff\x1f\xe7\xf9\xff\xd3" "\xf4\xff\x2b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\x35\xb7\xfe\x3f\x77" "\xff\x07\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x07\xe3\x96" "\xdc\xff\x3b\x67\xfe\xad\x7b\x00\x00\x00\x60\x66\x72\xf7\x7f\x28\x6e" "\xf1\xf3\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xe2\x96\x4e\xf6\xbf\xfe" "\x5f\xff\x3f\x97\xfe\x3f\x79\xfe\xff\xf5\xaf\xf3\xfc\xff\x7d\xfa\x7f" "\xfd\xff\x59\xe8\xff\xa7\xe9\xff\x57\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\xd6\x6a\x6e\xfd\x7f\xee\xfe\x0f\xc7\x2d\x9d\xec\x7f\x00\x00\x00\xe8" "\x41\xee\xfe\x37\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x23\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xd1\xb8\xe5\xd8\xfe\x6f\xf3" "\x37\x04\xf4\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfe\xfa\xfa\xff\x65" "\xd2\xff\x4f\xd3\xff\xaf\xa0\xff\xd7\xff\x37\xdb\xff\x5f\x59\xf9\xfe" "\xf5\xff\x5c\x84\xb9\xf5\xff\xb9\xfb\x3f\x1e\x00\x00\xff\xff\xe5\x8a" "\x66\xa5", 25247); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_NOEXEC*/ 8, /*opts=*/0x200000000080, /*chdir=*/1, /*size=*/0x629f, /*img=*/0x200000004a00); break; case 1: // chdir arguments: [ // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // ] memcpy((void*)0x200000000040, "./file0\000", 8); syscall(__NR_chdir, /*dir=*/0x200000000040ul); break; case 2: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0x1ff (2 bytes) // ] // returns fd memcpy((void*)0x200000000300, "./file1\000", 8); res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IXUSR|S_IWUSR|0x100*/ 0x1ff); if (res != -1) r[0] = res; break; case 3: // openat$nullb arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6e 75 6c 6c 62 30 00} (length 0xc) // } // flags: open_flags = 0x0 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_block memcpy((void*)0x200000000040, "/dev/nullb0\000", 12); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[1] = res; break; case 4: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x183042 (4 bytes) // mode: open_mode = 0x1e1 (2 bytes) // ] // returns fd memcpy((void*)0x200000000040, "./file1\000", 8); syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_SYNC|O_CREAT|O_CLOEXEC|FASYNC|O_RDWR*/ 0x183042, /*mode=S_IXOTH|S_IRGRP|S_IXUSR|S_IWUSR|S_IRUSR*/ 0x1e1); break; case 5: // ioctl$BTRFS_IOC_SPACE_INFO arguments: [ // fd: fd (resource) // cmd: const = 0xc0109414 (4 bytes) // arg: nil // ] syscall(__NR_ioctl, /*fd=*/(intptr_t)-1, /*cmd=*/0xc0109414, /*arg=*/0ul); break; case 6: // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0x20fffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0x20fffe82ul); break; case 7: // quotactl$Q_GETFMT arguments: [ // cmd: quota_cmd_getfmt = 0xffffffff80000400 (8 bytes) // special: nil // id: uid (resource) // addr: ptr[out, int32] { // int32 = 0x0 (4 bytes) // } // ] syscall(__NR_quotactl, /*cmd=Q_GETFMT_USR*/ 0xffffffff80000400ul, /*special=*/0ul, /*id=*/0, /*addr=*/0x200000000240ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; if ((reason = setup_binfmt_misc())) printf("the reproducer may not work as expected: binfmt_misc setup failed: " "%s\n", reason); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }