// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } static long syz_open_procfs(volatile long a0, volatile long a1) { char buf[128]; memset(buf, 0, sizeof(buf)); if (a0 == 0) { snprintf(buf, sizeof(buf), "/proc/self/%s", (char*)a1); } else if (a0 == -1) { snprintf(buf, sizeof(buf), "/proc/thread-self/%s", (char*)a1); } else { snprintf(buf, sizeof(buf), "/proc/self/task/%d/%s", (int)a0, (char*)a1); } int fd = open(buf, O_RDWR); if (fd == -1) fd = open(buf, O_RDONLY); return fd; } //% 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; } #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 execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_open_procfs arguments: [ // pid: pid (resource) // file: nil // ] // returns fd syz_open_procfs(/*pid=*/0, /*file=*/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 31 00} (length 0x8) // } // flags: mount_flags = 0x3010846 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 34} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard_size: fs_opt["discard", fmt[hex, int32]] { // name: buffer: {64 69 73 63 61 72 64} (length 0x7) // eq: const = 0x3d (1 bytes) // val: int32 = 0x4 (18 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 39} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard: buffer: {64 69 73 63 61 72 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {6d 61 63 72 6f 6d 61 6e} (length 0x8) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // usrquota: buffer: {75 73 72 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // nodiscard: buffer: {6e 6f 64 69 73 63 61 72 64} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 34 33 37} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x2c (1 bytes) // size: len = 0x6319 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6319) // } // ] // returns fd_dir memcpy((void*)0x200000000080, "jfs\000", 4); memcpy((void*)0x200000000040, "./file1\000", 8); memcpy((void*)0x200000000440, "iocharset", 9); *(uint8_t*)0x200000000449 = 0x3d; memcpy((void*)0x20000000044a, "iso8859-4", 9); *(uint8_t*)0x200000000453 = 0x2c; memcpy((void*)0x200000000454, "discard", 7); *(uint8_t*)0x20000000045b = 0x3d; sprintf((char*)0x20000000045c, "0x%016llx", (long long)4); *(uint8_t*)0x20000000046e = 0x2c; memcpy((void*)0x20000000046f, "iocharset", 9); *(uint8_t*)0x200000000478 = 0x3d; memcpy((void*)0x200000000479, "iso8859-9", 9); *(uint8_t*)0x200000000482 = 0x2c; memcpy((void*)0x200000000483, "discard", 7); *(uint8_t*)0x20000000048a = 0x2c; memcpy((void*)0x20000000048b, "iocharset", 9); *(uint8_t*)0x200000000494 = 0x3d; memcpy((void*)0x200000000495, "macroman", 8); *(uint8_t*)0x20000000049d = 0x2c; memcpy((void*)0x20000000049e, "errors=remount-ro", 17); *(uint8_t*)0x2000000004af = 0x2c; memcpy((void*)0x2000000004b0, "grpquota", 8); *(uint8_t*)0x2000000004b8 = 0x2c; memcpy((void*)0x2000000004b9, "usrquota", 8); *(uint8_t*)0x2000000004c1 = 0x2c; memcpy((void*)0x2000000004c2, "errors=continue", 15); *(uint8_t*)0x2000000004d1 = 0x2c; memcpy((void*)0x2000000004d2, "nodiscard", 9); *(uint8_t*)0x2000000004db = 0x2c; memcpy((void*)0x2000000004dc, "iocharset", 9); *(uint8_t*)0x2000000004e5 = 0x3d; memcpy((void*)0x2000000004e6, "cp437", 5); *(uint8_t*)0x2000000004eb = 0x2c; *(uint8_t*)0x2000000004ec = 0; memcpy( (void*)0x200000002080, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xec\x9b\x5f\x4a\xdb\xa8" "\x87\xaa\x44\x08\xb9\x6d\x78\x29\xa5\x79\x2d\x21\x50\xa0\xed\x01\x0e\x5c" "\x38\xa0\x5c\x51\x22\xd7\xad\x22\x52\x40\x49\x40\x69\x15\x11\x57\xbe\x70" "\xe0\x8f\x00\x21\x71\x44\x88\x23\x27\xfe\x80\x1e\xb8\x72\xe3\x0f\x20\x92" "\x83\x04\xea\x01\x75\xd0\xd8\xcf\xe3\x8c\xa7\xbb\x5e\x3b\x89\x77\x76\x33" "\x9f\x8f\x64\xcf\xfc\xe6\xd9\xf1\x3e\xe3\xef\x8e\x77\xd7\x33\xb3\x4f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf1\xc3\x1f\xfc\xf8" "\x5c\x11\x11\x57\x7e\x95\x16\x9c\x88\xf8\x5c\xf4\x23\x7a\x11\x2b\x55\xbd" "\x16\x11\x2b\x6b\x27\xea\xeb\xbc\x10\x3b\xcd\xf1\x7c\x44\x0c\x97\x22\xaa" "\xf5\x77\xbe\x3d\x1b\xf1\x7a\x44\x7c\xfc\x4c\xc4\xf6\xfd\x3b\xeb\xd5\xe2" "\xf3\x87\xec\xc7\xf7\xff\xfc\x8f\x3f\xfc\xe4\xa9\x1f\xfd\xfd\x4f\xc3\x33" "\xff\xfd\xcb\xad\xfe\x1b\x93\x6e\x77\xfb\xf6\x6f\xff\xf3\xd7\xbb\x0f\xbf" "\xbd\x00\x00\x00\xd0\x45\x65\x59\x96\x45\x7a\x9b\x7f\x32\x22\x06\xe9\xbd" "\x3d\x00\xf0\xe4\xcb\xcf\xff\x65\x92\x97\x77\xbc\x5e\xce\x8b\xe7\xa4\x3f" "\x55\xbd\x39\x47\xbf\x1f\xb5\x5a\xad\x56\x2f\x68\x5d\x57\x8e\x77\xb7\x5e" "\x44\xc4\x66\x7d\x9d\xea\x35\x83\xc3\xf1\x00\xb0\x60\x36\xe3\x93\xb6\xbb" "\x40\x8b\xe4\xdf\x69\x83\x88\x78\xaa\xed\x4e\x00\x73\xad\x68\xbb\x03\x1c" "\x8b\xed\xfb\x77\xd6\x8b\x94\x6f\x51\x7f\x3e\x58\xdb\x6d\xcf\xe7\x82\xec" "\xcb\x7f\xb3\xd8\xbb\xbe\x63\xd2\x74\x9a\xe6\x39\x26\xb3\x7a\x7c\x6d\x45" "\x3f\x9e\x9b\xd0\x9f\x95\x19\xf5\x61\x9e\xe4\xfc\x7b\xcd\xfc\xaf\xec\xb6" "\x8f\xd2\xed\x8e\x3b\xff\x59\x99\x94\xff\x68\xf7\xd2\xa7\xce\xc9\xf9\xf7" "\x9b\xf9\x37\x3c\x39\xf9\xf7\xc6\xe6\xdf\x55\x39\xff\xc1\x91\xf2\xef\xcb" "\x1f\x00\x00\x00\x00\x00\xe6\x58\xfe\xff\xff\x89\x96\x8f\xff\x2e\x3d\xfa" "\xa6\x1c\xca\x41\xc7\x7f\xd7\x66\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78" "\xdc\x8e\x3a\xfe\xdf\xa0\x31\xfe\xdf\x1e\xe3\xff\x01\x00\x00\xc0\xdc\xaa" "\xde\xab\x57\x7e\xf7\xcc\x83\x65\x93\x3e\x8b\xad\x5a\x7e\xb9\x88\x78\xba" "\x71\x7b\xa0\x63\xd2\xc5\x32\xab\x6d\xf7\x03\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xba\x64\xb0\x7b\x0e\xef\xe5\x22\x62\x18\x11\x4f\xaf\xae\x96" "\x65\x59\x7d\xd5\x35\xeb\xa3\x7a\xd4\xf5\x17\x5d\xd7\xb7\x1f\xba\xac\xed" "\x3f\xf2\x00\x00\xb0\xeb\xe3\x67\x1a\xd7\xf2\x17\x11\xcb\x11\x71\x39\x7d" "\xd6\xdf\x70\x75\x75\xb5\x2c\x97\x57\x56\xcb\xd5\x72\x65\x29\xbf\x9e\x1d" "\x2d\x2d\x97\x2b\xb5\xf7\xb5\x79\x5a\x2d\x5b\x1a\x1d\xe2\x05\xf1\x60\x54" "\x56\x3f\x6c\xb9\xb6\x5e\xdd\xb4\xf7\xcb\xd3\xda\x9b\x3f\xaf\xba\xaf\x51" "\xd9\x3f\x44\xc7\x66\xa3\xc5\xc0\x01\x20\x22\x76\x9f\x8d\xb6\x27\x3d\x23" "\xfd\xcf\xf3\xd5\x62\x2a\xcb\x67\xa3\xe5\x17\x39\x2c\x88\x03\xf6\x7f\x16" "\x94\xfd\x9f\xc3\x68\xfb\x71\x0a\x00\x00\x00\x1c\xbf\xb2\x2c\xcb\x22\x7d" "\x9c\xf7\xc9\x74\xcc\xbf\xd7\x76\xa7\x00\x80\x99\xc8\xcf\xff\xcd\xe3\x02" "\x6a\xb5\x5a\xad\x56\xab\x9f\xbc\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa" "\x3a\xd5\x6b\x06\xc3\xf1\x03\xc0\x82\xd9\x8c\x4f\xda\xee\x02\x2d\x92\x7f" "\xa7\x0d\x22\xe2\x85\xb6\x3b\x01\xcc\xb5\xa2\xed\x0e\x70\x2c\xb6\xef\xdf" "\x59\x2f\x52\xbe\x45\xfd\xf9\x20\x8d\xef\x9e\xcf\x05\xd9\x97\xff\x66\xb1" "\xb3\x5e\x5e\x7f\xdc\x74\x9a\xe6\x39\x26\xb3\x7a\x7c\x6d\x45\x3f\x9e\x9b" "\xd0\x9f\xe7\x67\xd4\x87\x79\x92\xf3\xef\x35\xf3\xbf\xb2\xdb\x3e\x4a\xb7" "\x7b\xf4\xfc\xcb\x7d\xff\x26\x6c\xeb\x1c\xa3\x49\xf9\x57\xdb\x79\xa2\x85" "\xfe\xb4\x2d\xe7\xdf\x6f\xe6\xdf\x70\xdc\xfb\xff\xac\x6c\x45\x6f\x6c\xfe" "\x5d\x95\xf3\x1f\x1c\x29\xff\xbe\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xff" "\xff\x9f\x98\xab\xe3\xbf\xa3\x87\xdd\x9c\xa9\x0e\x3a\xfe\xbb\x36\x76\x8d" "\xe3\xeb\x0b\x00\x00\x00\x00\x00\x00\x00\x3c\x2e\xdb\xf7\xef\xac\xe7\xeb" "\x5e\xf3\xf1\xff\x2f\x8c\xb9\x9d\xeb\x3f\x9f\x4c\x39\xff\x42\xfe\x9d\x94" "\xf3\xef\x35\xf2\xff\x6a\xe3\x76\xfd\xda\xfc\xbd\xb7\x1f\xe4\xff\xef\xfb" "\x77\xd6\xff\x78\xeb\x5f\x9f\xcf\xd3\xc3\xe6\xbf\x94\x67\x8a\xf4\xc8\x2a" "\xd2\x23\xa2\x48\xf7\x54\x0c\xd2\xf4\x51\xb6\xee\xb3\xb6\x86\xfd\x51\x75" "\x4f\xc3\xa2\xd7\x1f\xa4\x73\x7e\xca\xe1\xbb\x71\x2d\xae\xc7\x46\x9c\xdd" "\x77\xdb\x5e\xfa\x7d\x3c\x68\x3f\xb7\xaf\xbd\xea\xe9\x70\xa7\xbd\xec\xef" "\xb6\x9f\xdf\xd7\x3e\xd8\x6b\xcf\xeb\x5f\xd8\xd7\x3e\x4c\x67\x17\x95\x2b" "\xb9\xfd\x74\xac\xc7\xcf\xe3\x7a\xbc\xb3\xd3\x5e\xb5\x2d\x4d\xd9\xfe\xe5" "\x29\xed\xe5\x94\xf6\x9c\x7f\xdf\xfe\xdf\x49\xdb\x69\x3a\x78\xf0\xf5\x6c" "\x55\xaf\xa6\xe5\x45\x63\x5a\xb9\xf7\x51\xef\x33\xfb\x7d\x7d\x3a\xee\x7e" "\xde\xba\xf6\xc5\xdf\x9c\x3d\xd6\x2d\x39\x9c\xad\xe8\xef\x6d\x5b\x5d\xb5" "\x7d\x2f\xb5\xd0\x9f\x9d\xdf\xc9\x53\xa3\xf8\xe5\xcd\x8d\x1b\xa7\x6f\x5f" "\xbd\x75\xeb\xc6\xb9\x48\x93\x7d\x4b\xcf\x47\x9a\x3c\x66\x79\xff\x1f\xa6" "\xaf\xbd\xbf\xff\x2f\xef\xb6\xe7\xbf\xfb\xf5\xfd\xf5\xde\x47\xa3\x23\xe7" "\x3f\x2f\xb6\x62\x30\x31\xff\x97\x6b\xf3\xd5\xf6\xbe\x32\xe3\xbe\xb5\x21" "\xe7\x3f\x4a\x5f\x39\xff\x77\x52\xfb\xf8\xfd\x7f\x91\xf3\x9f\xbc\xff\xbf" "\xda\x42\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x20\x65" "\x59\xee\x5c\x22\xfa\x56\x44\x5c\x4c\xd7\xff\xb4\x75\x6d\x26\x00\x30\x5b" "\xf9\xf9\xbf\x4c\xf2\xf2\x59\xd5\xfd\x19\xdf\x9f\x5a\xbd\xe0\x75\x31\x67" "\xfd\x99\x69\xfd\x69\x39\x5f\xfd\x51\xab\x17\xb1\xae\x2b\xc7\x7b\xb3\x5e" "\x44\xc4\xdf\xea\xeb\x54\xaf\x19\x7e\x3d\xee\x87\x01\x00\xf3\xec\xd3\x88" "\xf8\x67\xdb\x9d\xa0\x35\xf2\xef\xb0\xfc\x79\x7f\xd5\xf4\x54\xdb\x9d\x01" "\x66\xea\xe6\x07\x1f\xfe\xf4\xea\xf5\xeb\x1b\x37\x6e\xb6\xdd\x13\x00\x00" "\x00\x00\x00\x00\x00\xe0\x61\xe5\xf1\x3f\xd7\x6a\xe3\x3f\x9f\x2a\xcb\xf2" "\x6e\xe3\x76\xfb\xc6\x7f\x7d\x3b\xd6\x1e\x75\xfc\xcf\x41\x9e\xd9\x1b\x60" "\x74\xc2\x40\xd5\xfd\xa3\x6f\xd3\x41\xb6\x7a\xa3\x7e\xaf\x36\xdc\xf8\x8b" "\x31\x69\xfc\xef\xe1\xde\xdc\x41\xe3\x7f\x0f\xa6\xdc\xdf\x70\x4a\xfb\x68" "\x4a\xfb\xd2\x94\xf6\xe5\x29\xed\x63\x2f\xf4\xa8\xc9\xf9\xbf\x58\x1b\xef" "\xfc\x54\x44\x9c\x6c\x0c\xbf\xde\x85\xf1\x5f\x9b\x63\xde\x77\x41\xce\xff" "\xa5\xda\xe3\xb9\xca\xff\x2b\x8d\xdb\xd5\xf3\x2f\x7f\xbf\xc8\xf9\xf7\xf6" "\xe5\x7f\xe6\xd6\xfb\xbf\x38\x73\xf3\x83\x0f\x5f\xbb\xf6\xfe\xd5\xf7\x36" "\xde\xdb\xf8\xd9\x85\x73\xe7\xce\x5e\xb8\x78\xf1\xd2\xa5\x4b\x67\xde\xbd" "\x76\x7d\xe3\xec\xee\xf7\x16\x7b\x7c\xbc\x72\xfe\x79\xec\x6b\xe7\x81\x76" "\x4b\xce\x3f\x67\x2e\xff\x6e\xc9\xf9\x7f\x29\xd5\xf2\xef\x96\x9c\xff\x97" "\x53\x2d\xff\x6e\xc9\xf9\xe7\xd7\x7b\xf2\xef\x96\x9c\x7f\x7e\xef\x23\xff" "\x6e\xc9\xf9\xbf\x92\x6a\xf9\x77\x4b\xce\xff\x6b\xa9\x96\x7f\xb7\xe4\xfc" "\x5f\x4d\xf5\xf4\xfc\xa7\xfd\x47\x93\x45\x92\xf3\xff\x7a\xaa\xed\xff\xdd" "\x92\xf3\x7f\x2d\xd5\xf2\xef\x96\x9c\xff\xe9\x54\xcb\xbf\x5b\x72\xfe\x67" "\x52\x7d\xc8\xfc\x57\x8e\xbb\x5f\xcc\x46\xce\x3f\x1f\xe1\xb2\xff\x77\x4b" "\xce\x3f\x9f\xd9\x20\xff\x6e\xc9\xf9\x9f\x4f\xb5\xfc\xbb\x25\xe7\x7f\x21" "\xd5\xf2\xef\x96\x9c\xff\xeb\xa9\x96\x7f\xb7\xe4\xfc\xbf\x91\x6a\xf9\x77" "\x4b\xce\xff\x62\xaa\xe5\xdf\x2d\x39\xff\x6f\xa6\x5a\xfe\xdd\x92\xf3\xbf" "\x94\x6a\xf9\x77\x4b\xce\xff\x5b\xa9\x96\x7f\xb7\xe4\xfc\xbf\x9d\x6a\xf9" "\x77\x4b\xce\xff\x8d\x54\xcb\xbf\x5b\x72\xfe\xdf\x49\xb5\xfc\xbb\x25\xe7" "\xff\xdd\x54\xcb\xbf\x5b\x72\xfe\xdf\x4b\xb5\xfc\xbb\x25\xe7\xff\x66\xaa" "\xe5\xdf\x2d\x0f\x3e\xff\xdf\x8c\x19\x33\x66\xf2\x4c\xdb\x7f\x99\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\xa6\x59\x9c\x4e\xdc\xf6\x36\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xfc\x9f\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xc0\x81\x00\x00" "\x00\x00\x00\x90\xff\x6b\x23\x54\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x61" "\xef\xee\x62\xe4\x3a\xcb\x3b\x80\x9f\x5d\xef\xae\xd7\x0e\x49\x0c\x84\xd4" "\x49\x0d\x6c\x1c\x13\x42\xb2\xc9\xae\xed\xc4\x1f\xb4\x29\x26\x7c\x36\x7c" "\x95\x40\x28\xf4\x03\xdb\xf5\xae\xcd\x52\xc7\x36\x5e\xbb\x04\x1a\xc9\xa6" "\x81\x12\x09\xa3\xa2\x8a\xb6\xe1\xa2\x2d\x20\xd4\xe6\xa6\x22\x17\x5c\xd0" "\x0a\x50\x2e\x50\x2b\xa4\x56\xd0\x5e\xd0\x5e\x20\x10\x2a\x17\x51\x15\x50" "\x40\xaa\x44\x5b\x60\xab\x39\xe7\x7d\xdf\x9d\x99\x9d\x8f\x5d\x7b\xbc\x7b" "\xe6\x9c\xdf\x4f\xb2\x1f\xcf\x99\x33\x73\xde\x39\xf3\xce\x99\x79\x76\xfd" "\x9f\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\x00\x00\xd0\xec" "\x96\xd7\xcc\x7f\x7c\x24\xcb\xb2\xc6\x9f\xfc\xaf\x6d\x59\xf6\xbc\xc6\xbf" "\xb7\x4c\x6d\xcb\x97\xbd\x72\xa3\x47\x08\x00\x00\x00\x5c\xa9\x9f\xe7\x7f" "\x3f\x77\x7d\x5a\x70\x68\x15\x37\x6a\x5a\xe7\x9f\x5e\xf2\xcd\x2f\x2d\x2d" "\x2d\x2d\x65\xef\xde\xf4\x67\xe3\x9f\x5e\x5a\x4a\x57\x4c\x65\xd9\xf8\xe6" "\x2c\xcb\xaf\x8b\x9e\xfa\xfe\x7b\x46\x9a\xd7\x09\x1e\xcb\x26\x47\x46\x9b" "\x2e\x8f\xf6\xd9\xfc\xa6\x3e\xd7\x8f\xf5\xb9\x7e\xbc\xcf\xf5\x13\x7d\xae" "\xdf\xdc\xe7\xfa\xc9\x3e\xd7\xaf\xd8\x01\x2b\x6c\x29\x7e\x1e\x93\xdf\xd9" "\xae\xfc\x9f\xdb\x8a\x5d\x9a\xdd\x90\x8d\xe7\xd7\xed\xea\x70\xab\xc7\x46" "\x36\x8f\x8e\xc6\x9f\xe5\xe4\x46\xf2\xdb\x2c\x8d\x1f\xcf\x16\xb2\x93\xd9" "\x7c\x36\xdb\xb2\x7e\xb1\xee\x48\xbe\xfe\x57\x6e\x69\x6c\xeb\x8d\x59\xdc" "\xd6\x68\xd3\xb6\x76\x34\x66\xc8\x8f\x1f\x3d\x16\xc7\x30\x12\xf6\xf1\xae" "\x96\x6d\x2d\xdf\x67\xf4\xc3\x57\x67\x53\x3f\xf9\xf1\xa3\xc7\xfe\xe6\xdc" "\xb3\x37\x75\xaa\x7d\x77\x43\xcb\xfd\x15\xe3\xbc\x7d\x67\x63\x9c\x1f\x0d" "\x4b\x8a\xb1\x8e\x64\x9b\xd3\x3e\x89\xe3\x1c\x6d\x1a\xe7\x8e\x0e\xcf\xc9" "\xa6\x96\x71\x8e\xe4\xb7\x6b\xfc\xbb\x7d\x9c\xcf\xad\x72\x9c\x9b\x96\x87" "\xb9\xae\xda\x9f\xf3\xc9\x6c\x34\xff\xf7\xb7\xf2\xfd\x34\xd6\xfc\x63\xbd" "\xb4\x9f\x76\x84\x65\x3f\xbd\x35\xcb\xb2\x8b\xcb\xc3\x6e\x5f\x67\xc5\xb6" "\xb2\xd1\x6c\x6b\xcb\x92\xd1\xe5\xe7\x67\xb2\x98\x91\x8d\xfb\x68\x4c\xa5" "\x17\x64\x63\x6b\x9a\xa7\xb7\xac\x62\x9e\x36\xea\xdc\xae\xd6\x79\xda\xfe" "\x9a\x88\xcf\xff\x2d\xe1\x76\x63\x5d\xc6\xd0\xfc\x34\xfd\xf0\x23\x13\x4d" "\xcf\xfb\xcf\x96\x2e\x67\x9e\x46\x8d\x47\xdd\xed\xb5\xd2\x3e\x07\x07\xfd" "\x5a\x29\xcb\x1c\x8c\xf3\xe2\x5b\xf9\x83\x7e\xbc\xe3\x1c\xdc\x15\x1e\xff" "\xa3\xb7\x75\x9f\x83\x1d\xe7\x4e\x87\x39\x98\x1e\x77\xd3\x1c\xdc\xd9\x6f" "\x0e\x8e\x4e\x6c\xca\xc7\x9c\x9e\x84\x91\xfc\x36\xcb\x73\x70\x77\xcb\xfa" "\x9b\xf2\x2d\x8d\xe4\xf5\x99\xdb\x7a\xcf\xc1\x99\x73\x0f\x9f\x99\x59\xfc" "\xd0\x87\xef\x5a\x78\xf8\xe8\x89\xf9\x13\xf3\xa7\xf6\xee\xde\x3d\xbb\x77" "\xdf\xbe\x03\x07\x0e\xcc\x1c\x5f\x38\x39\x3f\x5b\xfc\x7d\x99\x7b\xbb\xfc" "\xb6\x66\xa3\xe9\x35\xb0\x33\xec\xbb\xf8\x1a\x78\x79\xdb\xba\xcd\x53\x75" "\xe9\x73\x13\x2b\x8e\xbf\x97\xfb\x3a\x9c\xec\xf1\x3a\xdc\xd6\xb6\xee\xa0" "\x5f\x87\x63\xed\x0f\x6e\x64\x7d\x5e\x90\x2b\xe7\x74\xf1\xda\x78\x67\x63" "\xa7\x4f\x5e\x1a\xcd\xba\xbc\xc6\xf2\xe7\xe7\x8e\x2b\x7f\x1d\xa6\xc7\xdd" "\xf4\x3a\x1c\x6b\x7a\x1d\x76\x7c\x4f\xe9\xf0\x3a\x1c\x5b\xc5\xeb\xb0\xb1" "\xce\x99\x3b\x56\xf7\x99\x65\xac\xe9\x4f\xa7\x31\x74\x7f\x2f\xb8\xb2\x39" "\xb8\xad\x69\x0e\xb6\x7f\x1e\x69\x9f\x83\x83\xfe\x3c\x52\x96\x39\x38\x19" "\xe6\xc5\x77\xee\xe8\xfe\x5e\xb0\x23\x8c\xf7\xf1\xe9\xb5\x7e\x1e\xd9\xb4" "\x62\x0e\xa6\x87\x1b\x8e\x3d\x8d\x25\xe9\xf3\xfe\xe4\x81\xbc\x74\x9a\x97" "\x37\x37\xae\xb8\x66\x22\x3b\xbf\x38\x7f\xf6\xee\x47\x8e\x9e\x3b\x77\x76" "\x77\x16\xca\xba\x78\x61\xd3\x5c\x69\x9f\xaf\x5b\x9b\x1e\x53\xb6\x62\xbe" "\x8e\xae\x79\xbe\x1e\x5a\x78\xc9\xe3\x37\x77\x58\xbe\x2d\xec\xab\xc9\xbb" "\x1a\x7f\x4d\x76\x7d\xae\x1a\xeb\xdc\x73\x77\xef\xe7\x2a\x7f\x77\xeb\xbc" "\x3f\x5b\x96\xee\xc9\x42\x19\xb0\xf5\xde\x9f\x9d\xde\xcd\x1b\xfb\x73\x22" "\xcb\x3e\xf3\xf5\x8f\x3c\xf8\xd5\x47\x3f\xf3\x9a\xae\xfb\xb3\xd1\x6f\x7e" "\x74\xe6\xca\x3f\x8b\xa7\xbe\xb4\xe9\xf8\x3b\xde\xe5\xf8\x1b\xfb\xfe\x5f" "\x14\xdb\x4b\x77\xf5\xd8\xa6\xf1\xb1\xe2\xf5\xbb\x29\xed\x9d\xf1\x96\xe3" "\x71\xeb\x53\x35\x96\x1f\xbb\x46\xf2\x6d\x3f\x37\xb3\xba\xe3\xf1\x78\xf8" "\xb3\xde\xc7\xe3\x1b\x7a\x1c\x8f\xb7\xb7\xad\x3b\xe8\xe3\xf1\x78\xfb\x83" "\x8b\xc7\xe3\x91\x7e\x3f\xed\xb8\x32\xed\xcf\xe7\x64\x98\x27\x27\x67\x7b" "\x1f\x8f\x1b\xeb\x6c\xdf\xb3\xd6\x39\x39\xd6\xf3\x78\x7c\x6b\xa8\x23\x61" "\xff\xbf\x22\x74\x0a\xa9\x2f\x6a\x9a\x3b\xdd\xe6\x6d\xda\xd6\xd8\xd8\x78" "\x78\x5c\x63\x71\x0b\xad\xf3\x74\x6f\xcb\xfa\xe3\xa1\x37\x6b\x6c\xeb\xc9" "\x3d\xe1\x43\x61\x1a\xe5\xea\xe6\xe9\xed\xb7\x16\xeb\x6f\x6a\xba\x5d\xb4" "\x5e\xf3\x74\xaa\x6d\xdd\x41\xcf\xd3\xf4\xb3\xaf\x6e\xf3\x74\xa4\xdf\x4f" "\xdf\x2e\x4f\xfb\xf3\x39\x19\xe6\xc5\x0d\x7b\x7b\xcf\xd3\xc6\x3a\x4f\xdf" "\x73\xe5\xc7\xce\x2d\xf1\x9f\x4d\xc7\xce\x89\x7e\x73\x70\x7c\xd3\x44\x63" "\xcc\xe3\x69\x12\xe6\xc7\xfb\x6c\x69\x4b\x9c\x83\x77\x67\xc7\xb2\xd3\xd9" "\xc9\x6c\x2e\xbf\x76\x22\x9f\x4f\x23\xf9\xb6\xa6\xef\x5d\xdd\xb1\x72\x22" "\xfc\x59\xef\x63\xe5\xf6\x1e\x73\xf0\xf6\xb6\x75\x07\x3d\x07\xd3\xfb\x58" "\xb7\xb9\x37\x32\xb6\xf2\xc1\x0f\x40\xfb\xf3\x39\x19\xe6\xc5\x13\xf7\xf6" "\x9e\x83\x8d\x75\x5e\xbb\x7f\xb0\x9f\x5d\x6f\x2f\x96\x2c\xff\x28\xba\xe9" "\xb3\x6b\xfb\xcf\xd7\xba\xfd\xcc\xeb\xe6\xb6\xdd\x74\xb5\xe6\x4a\x63\x24" "\x8d\xc7\xf2\xf5\xfd\xbd\x7f\x36\xdb\x58\xe7\xe4\x81\xb5\xf6\x99\xbd\xf7" "\xd3\x9d\x61\xc9\x35\x1d\xf6\x53\xfb\xeb\xb7\xdb\x6b\x6a\x2e\x5b\x9f\xfd" "\xb4\x3d\x8c\xf3\xd9\x03\xdd\xf7\x53\x63\x3c\x8d\x75\x3e\x7d\x70\x95\xf3" "\xe9\x50\x96\x65\x17\x3e\x70\x7f\xfe\xf3\xde\xf0\xfb\x95\x0b\xe7\xbf\xfd" "\xa5\x96\xdf\xbb\x74\xfa\x9d\xce\x85\x0f\xdc\xff\xa3\x6b\x8f\xff\xe3\x5a" "\xc6\x0f\xc0\xf0\xfb\x45\x51\xb6\x16\xef\x75\x4d\xbf\x99\x5a\xcd\xef\xff" "\x01\x00\x00\x80\xa1\x10\xfb\xfe\xd1\x50\x13\xfd\x3f\x00\x00\x00\x54\x46" "\xec\xfb\xe3\xff\x0a\x4f\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x1f\x0b\x35" "\xa9\x42\xff\xff\x47\xfd\x57\xd9\xfe\xda\x67\x17\x7e\x71\x21\x4b\xc9\xfc" "\xa5\x20\x5e\x9f\x76\xc3\x03\xc5\x7a\x31\xe3\x3a\x1b\x2e\x4f\x2d\x2d\x6b" "\x2c\xbf\xff\x0b\xf3\xff\xfd\x0f\x17\x56\x37\xbc\xd1\x2c\xcb\x7e\xf6\xc0" "\x1f\x76\x5c\x7f\xfb\x03\x71\x5c\x85\xa9\x30\xce\xa7\x5e\xd7\xba\x7c\x85" "\x2f\xdd\xb5\xaa\x6d\x1f\x79\xe8\x42\xda\x6e\x73\x7e\xfd\xb3\xe1\xfe\xe3" "\xe3\x59\xed\x34\xe8\x14\xc1\x9d\xcd\xb2\xec\x2b\xd7\x7f\x32\xdf\xce\xd4" "\x7b\x2e\xe5\xf5\xe9\x07\x8e\xe4\xf5\xc1\x8b\x8f\x3f\xd6\x58\xe7\xb9\x83" "\xc5\xe5\x78\xfb\x67\x5e\x58\xac\xff\x97\x21\xfc\x7b\xe8\xf8\xd1\x96\xdb" "\x3f\x13\xf6\xc3\x0f\x42\x9d\x7d\x53\xe7\xfd\x11\x6f\xf7\xc5\x4b\xaf\xd8" "\xb1\xff\x5d\xcb\xdb\x8b\xb7\x1b\xd9\x79\x5d\xfe\xb0\x9f\x78\x6f\x71\xbf" "\xf1\x7b\x72\x3e\xf5\x58\xb1\x7e\xdc\xcf\xdd\xc6\xff\xd5\x4f\x3c\xf9\xc5" "\xc6\xfa\x8f\xbc\xac\xf3\xf8\x2f\x8c\x76\x1e\xff\x93\xe1\x7e\xbf\x10\xea" "\xff\xbc\xb8\x58\xbf\xf9\x39\x68\x5c\x8e\xb7\xfb\x58\x18\x7f\xdc\x5e\xbc" "\xdd\xdd\x9f\xff\x5a\xc7\xf1\x3f\xf5\xf1\x62\xfd\x33\xaf\x2f\xd6\x3b\x12" "\x6a\xdc\xfe\xed\xe1\xf2\xae\xd7\x3f\xbb\xd0\xbc\xbf\x1e\x19\x39\xda\xf2" "\xb8\xb2\x37\x14\xeb\xc5\xed\xcf\x7e\xfb\x4f\xf2\xeb\xe3\xfd\xc5\xfb\x6f" "\x1f\xff\xe4\xe1\x4b\x2d\xfb\xa3\x7d\x7e\x3c\xfd\x6f\xc5\xfd\xcc\xb4\xad" "\x1f\x97\xc7\xed\x44\x7f\xdf\xb6\xfd\xc6\xfd\x34\xcf\xcf\xb8\xfd\x27\xff" "\xf8\x48\xcb\x7e\xee\xb7\xfd\xa7\x1e\x7c\xe6\xc5\x8d\xfb\x6d\xdf\xfe\x9d" "\x6d\xeb\x9d\xf9\xc0\x1d\xf9\xf6\x97\xef\xaf\xf5\x1b\x9b\xfe\xea\x63\x9f" "\xec\xb8\xbd\x38\x9e\x43\x7f\x77\xa6\xe5\xf1\x1c\x7a\x7b\x78\x1d\x87\xed" "\x3f\xf1\xde\x30\x1f\xc3\xf5\xff\xfb\x54\x71\x7f\xed\xdf\xae\x70\xe4\xed" "\xad\xc7\x9f\xb8\xfe\x67\xb7\x5d\x68\x79\x3c\xd1\x1b\x7f\x52\x6c\xff\xa9" "\x57\x9d\xc8\xeb\xe6\xc9\x2d\x5b\xaf\x79\xde\xb5\xd7\x5d\x7c\x69\x63\xdf" "\x65\xd9\xb7\x36\x17\xf7\xd7\x6f\xfb\x27\xfe\xfa\x74\xcb\xf8\x3f\x77\x63" "\xb1\x3f\xe2\xf5\x31\xa3\xdf\xbe\xfd\x6e\xe2\xf6\xcf\x7e\x70\xfa\xd4\xe9" "\xc5\xf3\x0b\x73\x69\xaf\x3e\x7a\x7d\xfe\xdd\x39\x6f\x2e\xc6\x13\xc7\x7b" "\x7d\x38\xb6\xb6\x5f\x3e\x7c\xfa\xdc\xfb\xe6\xcf\x4e\xcd\x4e\xcd\x66\xd9" "\x54\x75\xbf\x42\xef\xb2\x7d\x3e\xd4\x1f\x15\xe5\x62\xef\xb5\x97\x56\x1c" "\x41\xef\x78\x28\x3c\x9f\x37\xff\xc5\x57\xb6\xde\xf6\xaf\x9f\x88\xcb\xff" "\xfd\x9d\xc5\xf2\x4b\x6f\x2a\xde\xb7\x5e\x1e\xd6\xfb\x54\x58\xbe\x2d\x3c" "\x7f\x6b\xdb\xfe\x4a\x4f\xdc\x72\x63\xfe\xfa\x1e\x79\x3a\x8c\x70\x69\xe5" "\xf7\x05\x5f\x89\x1d\xbb\xfe\xeb\x40\xbf\xef\xf7\xcd\x85\xc7\xdf\xfe\xb9" "\x20\xce\xf7\x33\x2f\x7a\x5f\xbe\x1f\x1a\xd7\xe5\xef\x1b\xf1\x75\x7d\x85" "\xe3\xff\xee\x5c\x71\x3f\x5f\x0e\xfb\x75\x29\x7c\x33\xf3\xce\x1b\x97\xb7" "\xd7\xbc\x7e\xfc\x6e\x84\x4b\xef\x28\x5e\xef\x57\xbc\xff\xc2\x61\x2e\x3e" "\xaf\x7f\x1b\x9e\xef\xb7\xfc\xa0\xb8\xff\x38\xae\xf8\x78\xbf\x1b\x3e\xc7" "\x7c\x6d\x7b\xeb\xf1\x2e\xce\x8f\x2f\x5f\x18\x6d\xbf\xff\xfc\x5b\x3c\x2e" "\x86\xe3\x49\x76\xb1\xb8\x3e\xae\x15\xf7\xf7\xa5\xe7\x6e\xec\x38\xbc\xf8" "\x3d\x24\xd9\xc5\x9b\xf2\xcb\x7f\x9a\xee\xe7\xa6\x35\x3d\xcc\x6e\x16\x3f" "\xb4\x38\x73\x72\xe1\xd4\xf9\x47\x66\xce\xcd\x2f\x9e\x9b\x59\xfc\xd0\x87" "\x0f\x3f\x7c\xfa\xfc\xa9\x73\x87\xf3\xef\xf2\x3c\xfc\xfe\x7e\xb7\x5f\x3e" "\x3e\x6d\xcd\x8f\x4f\x73\xf3\xfb\xee\xc9\xf2\xa3\xd5\xe9\xa2\x5c\x65\x1b" "\x3d\xfe\x33\x0f\x1d\x9b\xdb\x3f\x7b\xdb\xdc\xfc\xf1\xa3\xe7\x8f\x9f\x7b" "\xe8\xcc\xfc\xd9\x13\xc7\x16\x17\x8f\xcd\xcf\x2d\xde\x76\xf4\xf8\xf1\xf9" "\x0f\xf6\xbb\xfd\xc2\xdc\x7d\xbb\xf7\x1c\xdc\xbb\x7f\xcf\xf4\x89\x85\xb9" "\xfb\x0e\x1c\x3c\xb8\xf7\xe0\xf4\xc2\xa9\xd3\x8d\x61\x14\x83\xea\x63\xdf" "\xec\xef\x4f\x9f\x3a\x7b\x38\xbf\xc9\xe2\x7d\xf7\x1c\xdc\x7d\xef\xbd\xf7" "\xcc\x4e\x3f\x7c\x7a\x6e\xfe\xbe\xfd\xb3\xb3\xd3\xe7\xfb\xdd\x3e\x7f\x6f" "\x9a\x6e\xdc\xfa\x0f\xa6\xcf\xce\x9f\x3c\x7a\x6e\xe1\xe1\xf9\xe9\xc5\x85" "\x0f\xcf\xdf\xb7\xfb\xe0\xbe\x7d\x7b\xfa\x7e\x1b\xe0\xc3\x67\x8e\x2f\x4e" "\xcd\x9c\x3d\x7f\x6a\xe6\xfc\xe2\xfc\xd9\x99\xe2\xb1\x4c\x9d\xcb\x17\x37" "\xde\xfb\xfa\xdd\x9e\x6a\x5a\xfc\x5e\xf1\x79\xb6\xdd\x48\xf1\x45\x7c\xd9" "\xdb\xee\xdc\x97\xbe\x9f\xb5\xe1\x0b\x1f\xe9\x7a\x57\xc5\x2a\x6d\x5f\x20" "\xfa\x6c\xf8\x2e\x9a\x6f\x3c\xff\xcc\x81\xd5\x5c\x8e\x7d\xff\x78\xa8\x49" "\x15\xfa\x7f\x00\x00\x00\x20\x17\xfb\xfe\x89\x50\x13\xfd\x3f\x00\x00\x00" "\x54\x46\xec\xfb\x37\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x3f\x19" "\x6a\xfa\x2f\x01\x35\xe9\xff\x2b\x97\xff\xdf\x7e\x61\x55\xdb\x97\xff\x97" "\xff\x6f\xde\x5f\xf2\xff\x35\xcb\xff\xbf\xa3\x6c\xf9\xff\xe2\x78\x21\xff" "\x3f\x18\x57\x9a\xbf\xaf\x43\xfe\x7f\x55\x2b\xca\xff\xcb\xff\xcb\xff\xcb" "\xff\xcb\xff\x33\x00\x65\xcb\xff\xc7\xbe\x7f\x4b\x96\xf9\xfd\x3f\x00\x00" "\x00\x54\x54\xec\xfb\xb7\x86\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\x7f" "\x4d\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xcf\x0b\x35\xa9\x49\xff" "\x2f\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff\xdf\x79\xfb\xf2\xff\xc3\x49\xfe" "\xbf\xb7\x92\xe5\xff\x27\xdb\x17\xc8\xff\x6f\x7c\xfe\x3f\xab\x57\xfe\xff" "\xe2\x20\xc7\xbf\x01\xf9\xff\x2d\xcd\x17\xe4\xff\x29\xa3\xb2\xe5\xff\x63" "\xdf\x7f\x6d\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\x5f\x17\x6a" "\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xf5\xa1\x26\xfa\x7f\x00\x00\x00" "\xa8\x8c\xd8\xf7\x6f\x0b\x35\xa9\x49\xff\x2f\xff\x7f\x45\xf9\xff\x94\xb9" "\x1a\xde\xfc\x7f\xb1\x65\xf9\x7f\xf9\x7f\xf9\x7f\xf9\xff\xaa\x90\xff\xef" "\xad\x64\xf9\xff\x15\xe4\xff\x37\x3e\xff\xef\xfc\xff\x43\x95\xff\x6f\x21" "\xff\x4f\x19\x95\x2d\xff\x1f\xfb\xfe\xe7\x87\x9a\xd4\xa4\xff\x07\x00\x00" "\x80\x3a\x88\x7d\xff\x0b\x42\x4d\xf4\xff\x00\x00\x00\x50\x3e\x63\x97\x77" "\xb3\xd8\xf7\xbf\x30\xd4\x64\x45\xff\x7f\x99\x1b\x00\x00\x00\x00\x36\x5c" "\xec\xfb\x6f\xc8\xda\x82\xe0\x35\xf9\xfd\xbf\xfc\xbf\xf3\xff\x97\xf6\xfc" "\xff\xe3\xf2\xff\xf2\xff\x85\xf2\xe7\xff\x37\x65\xf2\xff\xe5\x21\xff\xdf" "\x9b\xfc\x7f\x1f\x83\xc8\xff\x5f\x94\xff\x97\xff\x97\xff\x97\xff\x27\x2a" "\x5b\xfe\x3f\xef\xfb\xb3\xc9\xec\x45\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0" "\x0e\x62\xdf\x7f\x63\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xbf\x14" "\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\xf6\x50\x93\x9a\xf4\xff\xf2" "\xff\x95\xc9\xff\xff\xb4\xf9\xa9\xab\x44\xfe\xdf\xf9\xff\xe5\xff\x83\xf2" "\xe7\xff\x9d\xff\xbf\x4c\xe4\xff\x7b\x93\xff\xef\xc3\xf9\xff\xe5\xff\xe5" "\xff\xe5\xff\x19\xa8\xc5\x8e\x9d\xd2\xc6\xe5\xff\x63\xdf\x7f\x53\xa8\x49" "\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xdf\x1c\x6a\xa2\xff\x07\x00\x00" "\x80\xca\x88\x7d\xff\x2f\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xbf" "\x23\xd4\xa4\x26\xfd\xbf\xfc\x7f\xc9\xf3\xff\x31\x39\x5a\xc7\xf3\xff\xcb" "\xff\xcb\xff\x07\x65\xce\xff\x4f\xca\xff\x97\x8e\xfc\x7f\x6f\xf2\xff\x7d" "\xc8\xff\xcb\xff\xcb\xff\xcb\xff\x33\x50\x8b\xdf\x2b\x3e\xcf\xb6\xdb\xa8" "\xfc\x7f\xec\xfb\x5f\x1c\x6a\x52\x93\xfe\x1f\x00\x00\x00\xea\x20\xf6\xfd" "\x2f\x09\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xa5\xa1\x26\xfa\x7f" "\x00\x00\x00\xa8\x8c\xd8\xf7\x4f\x85\x9a\xd4\xa4\xff\x5f\x4b\xfe\x7f\xe4" "\xa2\xfc\x7f\x37\x57\xf9\xfc\xff\x13\xab\x38\xff\x7f\x0b\xf9\xff\x0d\xc9" "\xff\x8f\xc9\xff\x17\xea\x94\xff\xcf\xe4\xff\x4b\x47\xfe\xbf\x37\xf9\xff" "\x3e\xe4\xff\xe5\xff\xe5\xff\xe5\xff\x19\xa8\xb2\xe5\xff\x63\xdf\x7f\x4b" "\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xef\x0c\x35\xd1\xff\x03" "\x00\x00\x40\x65\xc4\xbe\xff\xd6\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec" "\xfb\x77\x85\x9a\xd4\xa4\xff\x77\xfe\xff\xa1\xc8\xff\x67\xf2\xff\x43\x91" "\xff\x77\xfe\xff\x40\xfe\xbf\x33\xf9\xff\xf5\x21\xff\xdf\x9b\xfc\x7f\x1f" "\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x0c\x54\xd9\xf2\xff\xb1\xef\x7f\x59\xa8" "\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xdf\x16\x6a\xa2\xff\x07\x00" "\x00\x80\xca\x88\x7d\xff\xcb\x43\x4d\xf4\xff\x00\x00\x00\x50\x19\xb1\xef" "\xbf\x3d\xd4\xa4\x26\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc\x7f\xe7" "\xed\xaf\x7b\xfe\xff\xa2\xfc\xff\x20\xc8\xff\xf7\x26\xff\xdf\x87\xfc\xbf" "\xfc\xbf\xfc\xbf\xfc\x3f\x03\x55\xb6\xfc\x7f\xec\xfb\x5f\x11\x6a\x52\x93" "\xfe\x1f\x00\x00\x00\xea\x20\xf6\xfd\x77\x84\x9a\xe8\xff\x01\x00\x00\xa0" "\x32\x62\xdf\x7f\x67\xa8\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xd3\xa1" "\x26\x35\xe9\xff\xe5\xff\xe5\xff\xab\x99\xff\xff\x0f\xf9\xff\x1e\xdb\x97" "\xff\x2f\x69\xfe\xdf\xf9\xff\x07\x42\xfe\xbf\x37\xf9\xff\x3e\xe4\xff\xe5" "\xff\x5b\xc7\x9f\x5d\x56\xfe\x7f\x3c\x2c\x90\xff\x97\xff\x67\xc3\xf3\xff" "\xf1\xf3\x5a\xbc\x1c\xfb\xfe\xbb\x42\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d" "\xc4\xbe\xff\xee\x50\x13\xfd\x3f\x00\x00\x00\x54\x46\xec\xfb\x67\x42\x4d" "\xf4\xff\x00\x00\x00\x50\x19\xb1\xef\x9f\x0d\x35\xa9\x49\xff\x2f\xff\x2f" "\xff\x5f\xcd\xfc\xbf\xf3\xff\xf7\xda\xfe\x15\xe5\xff\x5f\xba\x7c\xbf\xf2" "\xff\x05\xf9\xff\x72\x91\xff\xef\x4d\xfe\xbf\x8f\x41\xe6\xff\x37\xcb\xff" "\x57\x20\xff\xbf\x01\xe7\xff\x1f\x97\xff\xa7\x52\x36\x3a\xff\xdf\x7e\x39" "\xf6\xfd\xbb\x43\x4d\x6a\xd2\xff\x03\x00\x00\x40\x1d\xc4\xbe\x7f\x4f\xa8" "\x89\xfe\x1f\x00\x00\x00\x2a\x23\xf6\xfd\x7b\x43\x4d\xf4\xff\x00\x00\x00" "\x50\x19\xb1\xef\xbf\x27\xd4\xa4\x26\xfd\xbf\xfc\xbf\xfc\xbf\xfc\xbf\xfc" "\xbf\xf3\xff\x77\xde\xbe\xfc\xff\x70\x92\xff\xef\x6d\xf0\xf9\xff\xf8\x10" "\xe5\xff\x9d\xff\x5f\xfe\x7f\x30\xf9\x7f\xe7\xff\xa7\x5a\xca\x96\xff\x8f" "\x7d\xff\xbd\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xbf\x2f\xd4" "\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xfd\xa1\x26\xfa\x7f\x00\x00\x00" "\xa8\x8c\xd8\xf7\x1f\x08\x35\xa9\x49\xff\x2f\xff\x2f\xff\x2f\xff\x2f\xff" "\x2f\xff\xdf\x79\xfb\xf2\xff\xc3\x49\xfe\xbf\x37\xe7\xff\xef\x43\xfe\x5f" "\xfe\x7f\x88\xf3\xff\x8d\xb9\x25\xff\x4f\xd9\x94\x2d\xff\x1f\xfb\xfe\x83" "\xa1\x26\x35\xe9\xff\x01\x00\x00\xa0\x0e\x62\xdf\xff\xca\x50\x13\xfd\x3f" "\x00\x00\x00\x54\x46\xec\xfb\x7f\x25\xd4\x44\xff\x0f\x00\x00\x00\x25\x34" "\x71\x59\xb7\x8a\x7d\xff\xaf\x86\x9a\xd4\xa4\xff\x97\xff\x97\xff\x97\xff" "\x97\xff\xdf\xe0\xfc\xff\x78\xbf\xfc\xff\x84\xfc\xbf\xfc\xff\x1a\xc8\xff" "\xf7\x26\xff\xdf\x87\xfc\x7f\x95\xf3\xff\x9d\x3e\xae\x0d\x74\xfc\x1b\x9d" "\xff\xef\x72\xfe\xff\x6b\xc3\xd5\xf2\xff\x6c\x88\xb2\xe5\xff\x63\xdf\x7f" "\x5f\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xff\x5a\xa8\x89\xfe" "\x1f\x00\x00\x00\x2a\x23\xf6\xfd\xaf\x0a\x35\xd1\xff\x03\x00\x00\x40\x65" "\xc4\xbe\xff\x50\xa8\x49\x4d\xfa\x7f\xf9\xff\x75\xca\xff\xc7\x85\xa5\xcd" "\xff\xc7\x24\xb3\xfc\x7f\xbe\x40\xfe\xdf\xf9\xff\xe5\xff\x87\x96\xfc\x7f" "\x6f\xf2\xff\x7d\xc8\xff\x57\x39\xff\x5f\xf9\xf3\xff\x77\xc9\xff\x0f\xfa" "\xfc\xff\xed\x6f\xd3\x89\xfc\x3f\x9d\x94\x2d\xff\x1f\xfb\xfe\x57\x87\x9a" "\xd4\xa4\xff\x07\x00\x00\x80\x3a\x88\x7d\xff\xfd\xa1\x26\xfa\x7f\x00\x00" "\x00\xa8\x8c\xd8\xf7\xbf\x26\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe" "\xd7\x86\x9a\xd4\xa4\xff\x97\xff\x77\xfe\xff\x8d\x3f\xff\xff\x78\xcb\xd8" "\xe5\xff\x97\x6f\x27\xff\x5f\x18\xb6\xfc\xff\x75\x59\x67\xf2\xff\xeb\x43" "\xfe\xbf\x37\xf9\xff\x3e\xe4\xff\xe5\xff\xe5\xff\x9d\xff\x9f\x81\x2a\x5b" "\xfe\x3f\xf6\xfd\xaf\x0b\x35\xa9\x49\xff\x0f\x00\x00\x00\x75\x10\xfb\xfe" "\xd7\x87\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\x86\x50\x13\xfd\x3f" "\x00\x00\x00\x54\x46\xec\xfb\xdf\x18\x6a\x52\x93\xfe\x5f\xfe\x5f\xfe\x7f" "\xe3\xf3\xff\xce\xff\x2f\xff\x5f\xa8\x4a\xfe\xbf\x1b\xf9\xff\xf5\x21\xff" "\xdf\x9b\xfc\x7f\x1f\xf2\xff\xf2\xff\xf2\xff\xf2\xff\x0c\x54\xd9\xf2\xff" "\xb1\xef\xff\xf5\x50\x93\x9a\xf4\xff\x00\x00\x00\x50\x07\xb1\xef\x7f\x20" "\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\x37\x85\x9a\xe8\xff\x01\x00" "\x00\xa0\x32\x62\xdf\xff\xe6\x50\x93\x9a\xf4\xff\xf2\xff\xf2\xff\xf2\xff" "\xf2\xff\xf2\xff\x9d\xb7\x2f\xff\x3f\x9c\xe4\xff\x7b\x1b\xb2\xfc\xff\xcf" "\xaf\x0b\xcb\xe5\xff\x0b\xf2\xff\xe5\x1e\xff\x5a\xf3\xff\x63\x6d\x97\xaf" "\x4a\xfe\xff\xfb\xdd\xf2\xff\x4b\x9b\xdb\x6f\x2f\xff\xcf\xd5\x50\xb6\xfc" "\x7f\xec\xfb\xdf\x12\x6a\x52\x93\xfe\x1f\x00\x00\x00\xea\x20\xf6\xfd\x6f" "\x0d\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x6d\xa1\x26\xfa\x7f\x00" "\x00\x00\xa8\x8c\xd8\xf7\xff\x46\xa8\x49\x4d\xfa\x7f\xf9\xff\xc6\x38\x96" "\xd3\xcb\xf2\xff\xf2\xff\xf9\x02\xf9\xff\xc1\xe5\xff\xff\xaf\x69\x5e\xca" "\xff\xcb\xff\xaf\x03\xf9\xff\xde\x52\xfe\xff\xb9\x4e\xef\x5c\x4d\xca\x91" "\xff\x77\xfe\xff\x36\xf2\xff\xe5\x1e\xbf\xf3\xff\xcb\xff\xb3\x52\xd9\xf2" "\xff\xb1\xef\x7f\x7b\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\x3f" "\x18\x6a\xa2\xff\x07\x00\x00\x80\xca\x88\x7d\xff\x3b\x42\x4d\xf4\xff\x00" "\x00\x00\x50\x19\xb1\xef\x7f\x67\xa8\x49\x4d\xfa\x7f\xf9\x7f\xe7\xff\x97" "\xff\x97\xff\x77\xfe\xff\xce\xdb\x97\xff\x1f\x4e\xf2\xff\xbd\x0d\xd9\xf9" "\xff\xe5\xff\xdb\xc8\xff\x97\x7b\xfc\x57\x25\xff\xff\x9f\xf2\xff\x0c\xb7" "\xb2\xe5\xff\x63\xdf\xff\x50\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8" "\xf7\xbf\x2b\xd4\x44\xff\x0f\x00\x00\x00\x95\x11\xfb\xfe\xdf\x0c\x35\xd1" "\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\xdd\xa1\x26\x35\xe9\xff\xe5\xff\x87" "\x25\xff\x3f\x25\xff\xbf\xc6\xfc\xff\x44\x58\x26\xff\x2f\xff\x2f\xff\x5f" "\x2f\xf2\xff\xbd\xc9\xff\xf7\x21\xff\x2f\xff\x5f\xb6\xfc\xbf\xf3\xff\x33" "\xe4\xca\x96\xff\x8f\x7d\xff\x7b\x42\x4d\x56\xdf\xff\x4f\xae\x7a\x4d\x00" "\x00\x00\xe0\x6a\x6a\xff\x75\x52\x12\xfb\xfe\xdf\x0a\x35\xa9\xc9\xef\xff" "\x01\x00\x00\xa0\x0e\x62\xdf\xff\xdb\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c" "\xd8\xf7\xff\x4e\xa8\x49\x4d\xfa\x7f\xf9\xff\x61\xc9\xff\x3b\xff\x7f\xe6" "\xfc\xff\xf2\xff\x6d\x8f\x47\xfe\x5f\xfe\xbf\x93\xf5\xcb\xff\xc7\x23\xcf" "\x9a\xf2\xff\x9b\xfb\x6d\x5f\xfe\x5f\xfe\x5f\xfe\x7f\x78\xc7\x2f\xff\x2f" "\xff\xcf\x4a\x65\xcb\xff\xc7\xbe\xff\x77\x43\x4d\x6a\xd2\xff\x03\x00\x00" "\x40\x1d\xc4\xbe\xff\xbd\xa1\x26\xfa\x7f\x00\x00\x00\x18\x0a\x9d\xfe\x4f" "\x76\xbb\xd8\xf7\x1f\x0e\x35\xd1\xff\x03\x00\x00\x40\x65\xc4\xbe\xff\x48" "\xa8\x49\x4d\xfa\x7f\xf9\x7f\xf9\x7f\xf9\xff\x92\xe6\xff\xff\x7c\xe7\x3f" "\x7f\xe7\x9b\x6f\x3d\xb2\x5b\xfe\x5f\xfe\x5f\xfe\x7f\x4d\xd6\xf5\xfc\xff" "\x8d\x17\xbf\xf3\xff\xcb\xff\xcb\xff\x27\xf2\xff\xf2\xff\xf2\xff\xb4\x2b" "\x5b\xfe\x3f\xf6\xfd\x47\x43\x4d\x96\x1b\xbf\x37\x3b\xc1\x3f\x00\x00\x00" "\x0c\xb7\xd8\xf7\xff\x5e\xa8\x49\x4d\x7e\xff\x0f\x00\x00\x00\x75\x10\xfb" "\xfe\x63\xa1\x26\xfa\x7f\x00\x00\x00\xa8\x8c\xd8\xf7\xcf\x85\x9a\xd4\xa4" "\xff\x97\xff\xdf\xc0\xfc\xff\x58\x96\x65\xf2\xff\xf2\xff\x15\x3c\xff\x7f" "\xdc\x1f\xc3\x94\xff\x9f\xde\x3c\x44\xf9\xff\x78\xd0\x95\xff\xef\x68\x5d" "\xf3\xff\xef\x5a\xce\x89\xcb\xff\xaf\x35\xff\x3f\xd1\x71\x69\x7b\xfe\x7f" "\x44\xfe\xbf\x85\xfc\xff\x9a\xc7\xff\x8d\x2c\xcb\xd6\x6d\xfc\x17\xfe\x45" "\xfe\x5f\xfe\x9f\x76\x65\xcb\xff\xc7\xbe\x7f\x3e\xd4\xa4\x26\xfd\x3f\x00" "\x00\x00\xd4\x41\xe8\xfb\x47\x8f\x17\x75\xf9\x0a\xfd\x3f\x00\x00\x00\x54" "\x46\xec\xfb\x4f\x84\x9a\xe8\xff\x01\x00\x00\xa0\x32\x62\xdf\xff\xbe\x50" "\x93\x9a\xf4\xff\xf2\xff\x43\x78\xfe\xff\x31\xf9\x7f\xf9\xff\x72\xe7\xff" "\x9d\xff\xbf\x33\xe7\xff\x5f\x1f\xf2\xff\xbd\x95\x27\xff\xdf\x99\xf3\xff" "\xcb\xff\x0f\xf3\xf8\x9d\xff\x5f\xfe\x9f\x95\xca\x96\xff\x8f\x7d\xff\x42" "\xa8\x49\x4d\xfa\x7f\x00\x00\x00\xa8\x83\xd8\xf7\xbf\x3f\xd4\x44\xff\x0f" "\x00\xff\xcf\xde\x9d\x7c\x59\x5e\x97\x77\x1c\xbf\x05\xc5\xe9\xee\xc3\xc9" "\x39\xd9\x65\x91\x45\xb2\xcf\x2a\x9b\x6c\x58\x84\x55\x16\xc9\x1f\x90\x05" "\x1b\x36\x39\x27\x09\x09\x19\xc8\xe0\x4c\xe3\x3c\xe2\x3c\x0f\xe8\x51\x11" "\x07\x1c\x40\x11\x51\x51\x9c\x05\x27\x14\x71\x44\xc5\x19\xc4\x09\x27\x44" "\xa5\x3d\x74\x3d\xcf\xd3\x35\xfc\xea\x77\xab\xaa\x6f\xd5\xfd\xdd\xef\xf7" "\xf5\x5a\xe4\x81\x92\xb6\xae\x1e\x02\x7c\x68\xdf\x7c\x01\x00\x9a\x91\xbb" "\xff\x92\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\xb7\xb8\xa5\x93\xfd" "\xaf\xff\x5f\xc1\xfe\xdf\xfb\xff\xf3\xfb\xff\x63\xfa\xff\xb1\xef\xaf\xff" "\xd7\xff\xb7\x4c\xff\x3f\x4e\xff\x3f\x87\xfe\x5f\xff\xaf\xff\xd7\xff\xb3" "\x50\x53\xeb\xff\x73\xf7\xff\x7b\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4" "\xee\xbf\x34\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff\x23\x6e\xb1\xff" "\x01\x00\x00\xa0\x19\xb9\xfb\xff\x33\x6e\xe9\x64\xff\xeb\xff\xf5\xff\x4d" "\xf6\xff\x7f\x77\xdf\xbf\x3c\xf4\xb7\xfa\xff\xdd\xbe\xbf\xfe\x5f\xff\xdf" "\x32\xfd\xff\x38\xfd\xff\x1c\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\x42\x4d\xad" "\xff\xcf\xdd\xff\x5f\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xbf" "\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xb2\xb8\xc5\xfe\x07\x00\x00" "\x80\x66\xe4\xee\xff\x9f\xb8\xa5\x93\xfd\xbf\xad\xff\x5f\x9b\xf5\xd9\xff" "\x67\xc6\xab\xff\x6f\xa9\xff\xf7\xfe\xff\xae\xdf\x5f\xff\xaf\xff\x6f\xd9" "\xd1\xf6\xff\x57\x3c\xfc\x47\x3e\xfd\xbf\xfe\x5f\xff\x1f\xf4\xff\xfa\x7f" "\xfd\x3f\xdb\x4d\xad\xff\xcf\xdd\xff\xbf\x71\x4b\x27\xfb\x1f\x00\x00\x00" "\x7a\x90\xbb\xff\xff\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xff\xe3" "\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x11\x71\x4b\x27\xfb\xdf\xfb\xff" "\xde\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xdf\x5f\xff\xbf\x9a\xbc\xff\x3f\xae" "\xa7\xfe\xff\xb2\x3b\xce\xbf\xf4\xfe\x1b\xfe\xfc\xc6\xfd\x7c\x7f\xfd\xbf" "\xfe\x5f\xff\xaf\xff\x67\xb1\xa6\xd6\xff\xe7\xee\x7f\x64\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\x3f\x3a\x6e\xb1\xff\x01\x00\x00\x60\x05\x9d\x18\xfc\x6a\xee\xfe\xc7" "\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\x1f\xfd\xff\x71\xfd\xbf\xfe\x5f" "\xff\xdf\x02\xfd\xff\xb8\x65\xf7\xff\x43\x7f\xbe\xdc\xcc\xfb\xff\xed\xf7" "\xff\x97\x2c\xe4\x93\x2e\xef\xf3\x8f\xd1\xff\xeb\xff\xd9\x69\x6a\xfd\x7f" "\xee\xfe\xc7\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7\xc5\x2d" "\xf6\x3f\x00\x00\x00\x4c\xd7\xbc\xff\x61\xd9\x36\xb9\xfb\x2f\x8f\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x93\x71\x4b\x27\xfb\x5f\xff\x7f\xf8\xfd" "\xff\x1f\xf4\xff\xab\xd1\xff\x7b\xff\x5f\xff\xaf\xff\x6f\x82\xfe\x7f\xdc" "\xb2\xfb\xff\x79\xf4\xff\xed\xf7\xff\x87\x69\xd9\x9f\x5f\xff\xaf\xff\x67" "\xa7\xa9\xf5\xff\xb9\xfb\xaf\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc" "\xfd\x8f\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x27\xc4\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\x13\xe3\x96\x4e\xf6\xbf\xfe\xdf\xfb\xff\xfa" "\x7f\xfd\xff\xd1\xf7\xff\x1b\x7f\xb0\xd5\xff\x9f\xf9\x6f\x55\xff\xbf\x38" "\xfa\xff\x71\xfa\xff\x39\xf4\xff\x67\xdb\xcf\x9f\xa7\xff\xd7\xff\xeb\xff" "\xd9\x6c\x9f\xfd\xff\x83\x23\x7f\xd8\x5e\x48\xff\x9f\xbb\xff\x49\x71\x4b" "\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xc9\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\x94\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x6a\xdc" "\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x03\xf7\xff\x3b\x7f\xd7\x3b" "\xcd\xfb\xff\xc3\xf4\xff\x47\x43\xff\x3f\x6e\x32\xfd\xff\xda\xfa\xe0\x97" "\xf5\xff\x2b\xdf\xff\x7b\xff\x5f\xff\xaf\xff\x67\x8b\xa9\xbd\xff\x9f\xbb" "\xff\x69\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xe9\x71\xcb\xc8" "\xfe\xdf\xf7\xdf\xcc\x07\x00\x00\x00\x96\x2a\x77\xff\x33\xe2\x16\x3f\xff" "\x0f\x00\x00\x00\x2b\x2f\xab\xb3\xdc\xfd\xcf\x8c\x5b\x3a\xd9\xff\xfa\x7f" "\xfd\xbf\xfe\x5f\xff\x7f\xf4\xef\xff\xaf\x7e\xff\x7f\xe3\xa6\xcf\xa7\xff" "\x9f\x16\xfd\xff\xb8\xc9\xf4\xff\xbb\xd0\xff\xeb\xff\x57\xf9\xf3\xeb\xff" "\xf5\xff\xec\x34\xb5\xfe\x3f\x77\xff\xb3\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\x95\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xec\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x4e\xdc\xd2\xc9\xfe\x1f\xee\xff" "\xcf\xfc\xeb\x93\xee\xff\xb7\x47\xc2\x33\xfd\x7f\xd2\xff\xb7\xdd\xff\xe7" "\xbf\xa3\xfe\x7f\xb4\xff\xbf\xd0\xfb\xff\x7d\xd2\xff\x8f\xd3\xff\xcf\xa1" "\xff\xd7\xff\xeb\xff\x77\xeb\xff\x4f\xcc\xfb\xf1\xfa\x7f\x86\x4c\xad\xff" "\xcf\xdd\xff\xdc\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xbc\xb8" "\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x7e\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xbf\x20\x6e\xe9\x64\xff\x7b\xff\x5f\xff\xaf\xff\x5f\xbd\xfe" "\xdf\xfb\xff\x1b\x96\xf9\xfe\xff\xec\xc8\xfb\xff\x75\xfd\xff\x1e\x2d\xb7" "\xff\x5f\x7b\x28\xff\x0c\xaa\xff\x3f\xd8\xe7\xd7\xff\xeb\xff\x57\xf9\xf3" "\x37\xd9\xff\x9f\x37\xdb\xfa\xfe\xff\xc8\x3f\x05\x40\xff\xcf\x90\xa9\xf5" "\xff\xb9\xfb\x5f\x18\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x5f\x14" "\xb7\xd8\xff\x00\x00\x00\xb0\x1a\x36\xff\x6f\x07\x86\xde\x8a\x9b\xcd\x6a" "\xf7\xbf\x38\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x12\xb7\xb4\xb3" "\xff\x47\xdf\xea\xd4\xff\xeb\xff\xf5\xff\xa7\x7f\xb8\xfe\x5f\xff\x3f\xd0" "\xff\xaf\xcf\xa6\xd3\xff\x7b\xff\x7f\xaf\xbc\xff\x3f\x4e\xff\x3f\x87\xfe" "\xff\x30\xfa\xf9\xf5\xc6\xfa\xff\xab\x76\xfb\xf1\x53\xe8\xff\x2f\x3f\xbc" "\xf7\xff\xff\x7a\xde\x8f\xd7\xff\x33\x64\x4b\xff\x7f\xf3\x99\xaf\x2f\xab" "\xff\xcf\xdd\xff\xd2\xb8\xa5\x9d\xfd\x0f\x00\x00\x00\xdd\xcb\xdd\xff\xb2" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x79\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xbf\x22\x6e\xe9\x64\xff\x1f\x7a\xff\x3f\xf2\x4f\x1f\xd0" "\xff\xeb\xff\x27\xd2\xff\x7b\xff\x5f\xff\x3f\xf8\xfd\xa7\xf5\xfe\xbf\xfe" "\x7f\xaf\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xbd\xff\xef\xfd\x7f\xfd\x3f\x67" "\x6f\xd3\x5f\x32\x6e\xe9\xff\x37\x59\x56\xff\x9f\xbb\xff\x95\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x55\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\x7f\x55\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x3a\x6e\xe9" "\x64\xff\x7b\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x87\xbf\xbf\xfe\x7f\x35" "\x9d\x55\x7f\x7f\x8e\xfe\xbf\xe8\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x9f\x05" "\x98\x5a\xff\xbf\x75\xf7\xf7\xb7\xff\x01\x00\x00\xa0\x07\xaf\x39\xfd\x7f" "\x8f\xc7\xdf\xaf\xb7\xff\x01\x00\x00\xa0\x45\xb9\xfb\x5f\x1b\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x8b\x5b\x3a\xd9\xff\xfa\xff\xc3\xed\xff" "\xf3\xeb\xfa\x7f\xfd\xff\x4c\xff\xaf\xff\xd7\xff\x1f\x89\x6e\xdf\xff\x5f" "\x1b\xfa\x33\xd1\x4e\xbb\xf4\xff\xb7\xfd\xf3\xc9\x7f\xd8\xfa\x15\xfd\xbf" "\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x47\x7f\x3a\xf2\xaf\x4d\xa2\xff\x3f\x75" "\xe6\xaf\x2e\x73\xf7\xbf\x3e\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\x5f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x88\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x6b\xe2\x96\x7d\xee\xff\xb1\xe6\x61\xca\xf4\xff" "\xde\xff\xd7\xff\xeb\xff\xf5\xff\xc3\xdf\x5f\xff\xbf\x9a\xba\xed\xff\xf7" "\xc8\xfb\xff\x73\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x0b\x35\x89\xfe\x7f\xd3" "\xaf\xe7\xee\x7f\x63\xdc\xe2\xe7\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x14" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x8e\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\xb7\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7" "\xff\x0f\x7f\x7f\xfd\xff\x6a\xd2\xff\x8f\xd3\xff\xcf\xb1\x4a\xfd\xff\x35" "\x67\xd1\xff\xaf\x0f\x7f\x79\xd9\xfd\xfc\xd9\x5a\xf6\xe7\xd7\xff\xeb\xff" "\xd9\x69\x6a\xfd\x7f\xee\xfe\x6b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x6d\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf6\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\xe1\xef\xaf\xff\x5f\x4d\xfa\xff\x71\xfa\xff\xd9\x6c" "\x76\xdd\xc8\x07\x18\xea\xff\x4f\x1d\x9b\x66\xff\xef\xfd\xff\xc9\x7d\x7e" "\xfd\xbf\xfe\x9f\x9d\xa6\xd6\xff\xe7\xee\x7f\x47\xdc\xd2\xc9\xfe\x07\x00" "\x00\x80\x1e\xe4\xee\xbf\x2e\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xaf" "\x8f\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x77\xc6\x2d\x9d\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\x7f\x7f\xfd\xff\x6a\xd2\xff\x8f\xd3" "\xff\xcf\xb1\x4a\xef\xff\xeb\xff\x27\xf7\xf9\xf5\xff\xfa\x7f\x76\x9a\x5a" "\xff\x9f\xbb\xff\x5d\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x86" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x77\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xdf\x18\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f" "\xa0\xff\x3f\xfd\xff\xea\xfa\x7f\xfd\xff\x2a\x3a\xbc\xfe\x7f\xa6\xff\xd7" "\xff\xeb\xff\xe7\xd0\xff\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77\xff\x7b" "\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x4d\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xde\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x5f\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xef\xff\x0f\x7f\x7f" "\xfd\xff\x6a\xf2\xfe\xff\x38\xfd\xff\x1c\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\x42\x0d\xf7\xff\x97\x2f\xad\xff\xcf\xdd\xff\xfe\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\x7f\x73\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f" "\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x3f\x18\xb7\x74\xb2\xff\xf5" "\xff\xfa\xff\xad\xfd\xff\x6c\xa6\xff\xd7\xff\xeb\xff\x37\x0c\xf4\xff\x77" "\x3e\x70\xf5\x9f\xd4\xaf\x2f\xa0\xff\x3f\x3e\xd3\xff\x2f\x9c\xfe\x7f\x9c" "\xfe\x7f\x0e\xfd\x7f\x9b\xfd\xff\x39\xb3\x86\xfa\xff\x13\xbb\xfe\x78\xfd" "\x3f\x53\x34\xb5\xf7\xff\x73\xf7\xdf\x12\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x3f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f\x8e\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x8f\xc4\x2d\x9d\xec\x7f\xfd\xbf\xfe" "\x7f\xc1\xef\xff\xdf\x7b\xf1\xc0\xe7\xd0\xff\x6f\xd0\xff\xaf\x7c\xff\xef" "\xfd\xff\x15\xa0\xff\x1f\xa7\xff\x9f\x43\xff\xdf\x66\xff\xef\xfd\x7f\xfd" "\x3f\x4b\x33\xb5\xfe\x3f\x77\xff\x47\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4" "\x20\x77\xff\xc7\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xe3\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x89\xb8\xa5\x93\xfd\xaf\xff\xd7\xff" "\x2f\xb8\xff\xf7\xfe\xbf\xfe\x5f\xff\xbf\x0b\xfd\xff\xd1\xd0\xff\x8f\xd3" "\xff\xcf\xa1\xff\x6f\xae\xff\xcf\xbf\xba\xd7\xff\xeb\xff\x59\x8e\xa9\xf5" "\xff\xb9\xfb\x3f\x19\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8d" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdb\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x53\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xaf\x66\xff" "\x7f\x7c\x4b\xff\x7f\xee\x4c\xff\x7f\xe6\xb7\xd7\xff\xf7\x6d\x2a\xfd\xff" "\x05\x17\xfc\xfd\xed\xfa\x7f\xfd\xbf\xfe\x7f\xf9\xfd\xbf\xf7\xff\xf5\xff" "\x2c\xd7\xd4\xfa\xff\xdc\xfd\x9f\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\x9f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\xc6\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\xe7\xe2\x96\x4e\xf6\xff\xce\xfe\xff\xbc" "\xd9\x46\xa1\xba\x61\xa8\xff\x8f\x46\x4d\xff\xbf\x89\xfe\x7f\xeb\xe7\xd7" "\xff\x0f\xff\xfe\xe1\xfd\x7f\xfd\xbf\xfe\xff\xf0\x4d\xa5\xff\xf7\xfe\xff" "\xc1\x3e\xbf\xfe\x5f\xff\xbf\xca\x9f\x7f\x5f\xfd\xff\x5f\xee\xfc\xf1\xfa" "\x7f\x5a\x34\xb5\xfe\x3f\x77\xff\xed\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a" "\x90\xbb\xff\xf3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x85\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x23\x6e\xe9\x64\xff\x7b\xff\x5f\xff" "\xaf\xff\xd7\xff\x2f\xbc\xff\xbf\xe9\x9e\x8d\x5f\xd0\xff\x6f\xa1\xff\x3f" "\x1a\x07\xec\xef\xff\xe6\x96\xf8\x05\xfd\x7f\xd0\xff\xeb\xff\xf5\xff\xfd" "\xbe\xff\x7f\xae\xfe\x9f\xc5\x99\x5a\xff\x9f\xbb\xff\x8b\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xce\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4" "\xee\xff\x52\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x39\x6e\xe9\x64" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x7f\x6b\xef\xff\x9f\xd0\xff\x77\xcd\xfb" "\xff\xe3\xf4\xff\x65\xfb\x7f\xb4\x0d\xfd\xf4\xff\xc7\x87\xbe\xb8\xec\x7e" "\xfe\x6c\x2d\xfb\xf3\x37\xd3\xff\x7b\xff\x9f\x05\x9a\x5a\xff\x9f\xbb\xff" "\x2b\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xab\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\xb5\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\xff\x7a\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xdb\xef\xff\x2f\xd6\xff\x6f\xfb" "\xfe\xad\xf7\xff\xde\xff\xef\x9b\xfe\x3f\xff\x8c\x3e\x4c\xff\x3f\x47\x3f" "\xfd\xff\xa0\x65\xf7\xf3\xab\xfe\xf9\xf5\xff\xfa\x7f\x76\x9a\x5a\xff\x9f" "\xbb\xff\xae\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x8d\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x66\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\x7f\x2b\x6e\xe9\x64\xff\xeb\xff\xfb\xea\xff\xd7\x66\x3d\xf6\xff" "\xde\xff\xd7\xff\xeb\xff\x7b\xa2\xff\x1f\xa7\xff\x9f\x43\xff\xaf\xff\xd7" "\xff\xeb\xff\x59\xa8\xa9\xf5\xff\xb9\xfb\xef\x5e\x5b\xef\x72\xff\x03\x00" "\x00\xc0\xaa\xfa\xc7\xbf\xfa\xd7\xbb\xf6\xfa\xdb\xde\x7d\xfa\xff\x1e\x9f" "\x7d\x3b\x6e\xb9\x70\x76\x6a\x8f\x3f\x8d\x0d\x00\x00\x00\x4c\xdc\xc3\xbb" "\x7f\x6d\x7d\x36\xfb\xce\xe9\x5f\xf3\xf3\xff\x00\x00\x00\xd0\xa2\xdc\xfd" "\xdf\x8d\x5b\x3a\xd9\xff\xfa\xff\xbe\xfa\xff\x3e\xdf\xff\xd7\xff\xeb\xff" "\xf5\xff\x3d\x19\xea\xef\x87\xfe\x18\xbd\x1b\xfd\x7f\xd0\xff\xeb\xff\xf5" "\xff\xfa\x7f\xfd\x3f\x0b\x30\xb5\xfe\x3f\x77\xff\xf7\xe2\x96\x4d\xc3\x6f" "\x7d\xdf\xff\x29\x01\x00\x00\x80\x29\xc9\xdd\xff\xfd\xb8\xa5\x93\x9f\xff" "\x07\x00\x00\x80\x1e\xe4\xee\xff\x41\xdc\xb2\x63\xff\xfb\xc7\x01\x02\x00" "\x00\xc0\xaa\xca\xdd\xff\xc3\xb8\xa5\x93\x9f\xff\xd7\xff\x4f\xbc\xff\x9f" "\x1d\x52\xff\x1f\xbf\x9d\xfe\x7f\x83\xfe\x5f\xff\x3f\xf4\xfd\xf5\xff\xab" "\xc9\xfb\xff\xe3\xce\xb2\xff\x3f\xb5\xa6\xff\xd7\xff\x8f\xd0\xff\x1f\xb4" "\xff\xcf\xdf\x53\xf5\xff\xb4\x23\xff\x7a\x69\x6a\xfd\x7f\xee\xfe\x7b\xe2" "\x96\x4e\xf6\x3f\x00\x00\x00\x34\x6a\xcb\xdf\x51\xc8\xdd\x7f\x6f\xdc\x62" "\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x28\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\xef\x8b\x5b\x3a\xd9\xff\xfa\xff\x23\xef\xff\x33\x55\x3f\xc4\xf7" "\xff\x4f\xd4\x2f\x79\xff\xbf\xf3\xfe\xff\xca\xe3\x83\xdf\x5f\xff\xaf\xff" "\x6f\x99\xfe\x7f\x9c\xf7\xff\xe7\xd0\xff\xb7\xd2\xff\x1f\x5b\xad\xfe\x7f" "\x83\xf7\xff\x69\xd1\xd4\xfa\xff\xdc\xfd\x3f\x8e\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x3f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x9f" "\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xcf\xe2\x96\x4e\xf6\xbf\xfe" "\x7f\xe2\xef\xff\x1f\xa8\xff\xdf\xc3\xfb\xff\xfa\xff\x03\xf6\xff\xf9\x9d" "\x56\xa4\xff\xdf\xe5\xfb\xb7\xd3\xff\xff\xd9\xf9\x27\x6f\xbd\xe8\x9f\xae" "\xbf\x56\xff\xcf\x19\x47\xd9\xff\xe7\xef\x0b\x47\xdc\xff\x1f\xdb\xef\xbf" "\xe7\x66\xfa\xff\x39\xf4\xff\xad\xf4\xff\x2b\xf6\xfe\xff\x06\xfd\x3f\x2d" "\x5a\x7c\xff\xbf\xbe\xe5\x8b\xfb\xed\xff\x73\xf7\xff\x3c\x6e\xe9\x64\xff" "\x03\x00\x00\x40\x0f\x72\xf7\xdf\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xbf\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x5f\xc6\x2d\x9d\xec" "\x7f\xfd\xbf\xfe\x7f\x2a\xfd\x7f\xfe\x77\xbd\x84\xfe\xff\xe4\x81\xdf\xff" "\x3f\x31\x9b\xcd\x96\xd2\xff\x67\x53\xdc\x7b\xff\xef\xfd\x7f\xfd\xff\x4e" "\xde\xff\x1f\xa7\xff\x9f\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa8\xc5\xf7" "\xff\x5b\xbf\xb8\xdf\xfe\x3f\x77\xff\xaf\xe2\x96\x4e\xf6\x3f\x00\x00\x00" "\xf4\x20\x77\xff\xaf\xe3\x96\xdc\xff\x6b\xfb\xfe\x5b\xf7\x00\x00\x00\xc0" "\xc4\xe4\xee\xff\x4d\xdc\xe2\xe7\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x88" "\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x54\xfa\xff\x34\xed\xf7\xff\xb7\xf5\xff" "\xde\xff\xdf\x47\xff\x7f\x51\xc5\xa9\x7d\xf6\xff\x7f\x51\xbf\xa4\xff\x3f" "\x5c\xfa\xff\x71\xfa\xff\x39\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x85\x9a\x5a" "\xff\x9f\xbb\xff\xb7\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xc1" "\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x5d\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\xff\x3e\x6e\xe9\x64\xff\xeb\xff\x5b\xed\xff\xb3\x88\xd7" "\xff\xeb\xff\xa7\xd2\xff\x7b\xff\xdf\xfb\xff\x47\x43\xff\x3f\x4e\xff\x3f" "\x87\xfe\x5f\xff\xaf\xff\xd7\xff\xb3\x50\x53\xeb\xff\x73\xf7\xff\x31\x00" "\x00\xff\xff\x5e\xfe\x53\xf9", 25369); syz_mount_image( /*fs=*/0x200000000080, /*dir=*/0x200000000040, /*flags=MS_LAZYTIME|MS_POSIXACL|MS_STRICTATIME|MS_NOSUID|MS_NODIRATIME|0x44*/ 0x3010846, /*opts=*/0x200000000440, /*chdir=*/0x2c, /*size=*/0x6319, /*img=*/0x200000002080); // syz_mount_image$exfat arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x80d800 (8 bytes) // opts: nil // chdir: int8 = 0x0 (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir memcpy((void*)0x200000000100, "./bus\000", 6); syz_mount_image( /*fs=*/0, /*dir=*/0x200000000100, /*flags=MS_I_VERSION|MS_REC|MS_SILENT|MS_NODIRATIME|MS_BIND*/ 0x80d800, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0x200000000240); // syz_mount_image$exfat arguments: [ // fs: ptr[in, buffer] { // buffer: {65 78 66 61 74 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {e9 1f 71 89 59 1e 92 33 61 4b 00} (length 0xb) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[in, fs_options[exfat_options]] { // fs_options[exfat_options] { // elems: array[fs_opt_elem[exfat_options]] { // fs_opt_elem[exfat_options] { // elem: union exfat_options { // utf8: buffer: {75 74 66 38} (length 0x4) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // utf8: buffer: {75 74 66 38} (length 0x4) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 36 36} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // gid: fs_opt["gid", fmt[hex, gid]] { // name: buffer: {67 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: gid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // allow_utime: fs_opt["allow_utime", fmt[oct, int32]] { // name: buffer: {61 6c 6c 6f 77 5f 75 74 69 6d 65} (length // 0xb) eq: const = 0x3d (1 bytes) val: int32 = 0x2 (23 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // utf8: buffer: {75 74 66 38} (length 0x4) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // namecase: buffer: {6e 61 6d 65 63 61 73 65 3d 31} (length 0xa) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // errors_remount: buffer: {65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f} (length 0x11) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[exfat_options] { // elem: union exfat_options { // fmask: fs_opt["fmask", fmt[oct, int32]] { // name: buffer: {66 6d 61 73 6b} (length 0x5) // eq: const = 0x3d (1 bytes) // val: int32 = 0x7 (23 bytes) // } // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x1533 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x1533) // } // ] // returns fd_dir memcpy((void*)0x200000000200, "exfat\000", 6); memcpy((void*)0x200000000240, "\351\037q\211Y\036\2223aK\000", 11); memcpy((void*)0x2000000032c0, "utf8", 4); *(uint8_t*)0x2000000032c4 = 0x2c; memcpy((void*)0x2000000032c5, "utf8", 4); *(uint8_t*)0x2000000032c9 = 0x2c; memcpy((void*)0x2000000032ca, "uid", 3); *(uint8_t*)0x2000000032cd = 0x3d; sprintf((char*)0x2000000032ce, "0x%016llx", (long long)0xee00); *(uint8_t*)0x2000000032e0 = 0x2c; memcpy((void*)0x2000000032e1, "iocharset", 9); *(uint8_t*)0x2000000032ea = 0x3d; memcpy((void*)0x2000000032eb, "cp866", 5); *(uint8_t*)0x2000000032f0 = 0x2c; memcpy((void*)0x2000000032f1, "gid", 3); *(uint8_t*)0x2000000032f4 = 0x3d; sprintf((char*)0x2000000032f5, "0x%016llx", (long long)0); *(uint8_t*)0x200000003307 = 0x2c; memcpy((void*)0x200000003308, "allow_utime", 11); *(uint8_t*)0x200000003313 = 0x3d; sprintf((char*)0x200000003314, "%023llo", (long long)2); *(uint8_t*)0x20000000332b = 0x2c; memcpy((void*)0x20000000332c, "utf8", 4); *(uint8_t*)0x200000003330 = 0x2c; memcpy((void*)0x200000003331, "namecase=1", 10); *(uint8_t*)0x20000000333b = 0x2c; memcpy((void*)0x20000000333c, "errors=remount-ro", 17); *(uint8_t*)0x20000000334d = 0x2c; memcpy((void*)0x20000000334e, "errors=continue", 15); *(uint8_t*)0x20000000335d = 0x2c; memcpy((void*)0x20000000335e, "fmask", 5); *(uint8_t*)0x200000003363 = 0x3d; sprintf((char*)0x200000003364, "%023llo", (long long)7); *(uint8_t*)0x20000000337b = 0x2c; *(uint8_t*)0x20000000337c = 0; memcpy( (void*)0x200000006800, "\x78\x9c\xec\xdc\x0b\x9c\x4e\xd5\xfa\x38\xf0\xe7\x59\x6b\xed\x31\x24\xbd" "\x4d\x72\x19\xd6\x5a\xcf\xe6\x4d\x2e\x8b\x24\xc9\x25\x49\x2e\x49\x92\x24" "\x49\x6e\x09\x49\x92\x23\x09\x89\x21\xb7\xa4\x21\x09\xc9\x65\x48\x2e\x43" "\x48\x2e\x13\x93\xc6\xfd\x7e\xbf\x24\x24\x49\x93\x24\x21\xb9\x25\xeb\xff" "\x99\x98\xbf\x3a\x75\xfe\xe7\x9c\x5f\x9d\xfc\xfe\x67\x9e\xef\xe7\xf3\x7e" "\x66\x3d\xb3\xde\x67\xed\x67\xcf\x33\xef\x7e\xf7\xde\xf3\xf2\x4d\x97\xa1" "\x35\x1a\xd5\xac\xda\x80\x88\xe0\x0f\xc1\x8b\x5f\x12\x00\x20\x16\x00\x06" "\x02\xc0\x35\x00\x10\x00\x40\xd9\xb8\xb2\x71\x19\xf3\xd9\x25\x26\xfc\xb1" "\x8d\xb0\x3f\xd7\x43\xc9\x57\xba\x02\x76\x25\x71\xff\xb3\x36\xee\x7f\xd6" "\xc6\xfd\xcf\xda\xb8\xff\x59\x1b\xf7\x3f\x6b\xe3\xfe\x67\x6d\xdc\xff\xac" "\x8d\xfb\xcf\x58\x56\xb6\x79\x7a\xfe\x6b\xf9\x91\x75\x1f\x7c\xff\x3f\x2b" "\xe3\xf7\xff\xff\x22\xe9\x25\xc7\x7e\xb1\xb6\xe4\xf5\x5d\x01\x62\xfe\xd5" "\x14\xee\xff\xff\xff\xf0\x0f\xe4\x72\xff\xff\x6b\x05\xff\xca\x93\xb8\xff" "\x59\x1b\xf7\x3f\xab\x8a\xbd\xd2\x05\xb0\xff\x05\xf8\xf5\x9f\x15\x64\xfb" "\x87\x33\xdc\xff\xac\x8d\xfb\xcf\x58\x56\xf6\xcb\x7b\xc1\xb1\x70\xe5\xef" "\x47\xff\xd5\x0f\x88\xfc\x27\xff\x06\xe2\x7b\x5d\xfc\x29\x5f\xf9\xfd\xfc" "\x87\xfb\xcf\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\xfd\x05\xce\xf8\xcb\x14\x00\x64\x8e\xaf\x74\x5d\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\xfb\xf3\xf8\x6c\x57\xba\x02\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\xfd\xe7\x21\x08\x90\xa0\x20\x80\x18\xc8\x06\xb1" "\x90\x1d\x72\x80\x00\x88\xc9\x9c\xbf\x16\xe2\xe0\x3a\xc8\x0d\xd7\x43\x1e" "\xc8\x0b\xf9\x20\x3f\xc4\x43\x01\x28\x08\x1a\x0c\x58\x20\x08\xa1\x10\x14" "\x86\x28\xdc\x00\x45\xe0\x46\x28\x0a\xc5\xa0\x38\x94\x00\x07\x25\xa1\x14" "\xdc\x04\xa5\xe1\x66\x28\x03\xb7\x40\x59\xb8\x15\xca\xc1\x6d\x50\x1e\x2a" "\x40\x45\xa8\x04\xb7\x43\x65\xb8\x03\xaa\xc0\x9d\x50\x15\xee\x82\x6a\x50" "\x1d\x6a\x40\x4d\xb8\x1b\x6a\xc1\x3d\x50\x1b\xee\x85\x3a\x70\x1f\xd4\x85" "\xfb\xa1\x1e\x3c\x00\xf5\xe1\x41\x68\x00\x0f\x41\x43\x78\x18\x1a\xc1\x23" "\xd0\x18\x1e\x85\x26\xd0\x14\x9a\x41\x73\x68\xf1\x3f\xca\x7f\x01\x7a\xc0" "\x8b\xd0\x13\x7a\x41\x02\xf4\x86\x3e\xf0\x12\xf4\x85\x7e\xd0\x1f\x06\xc0" "\x40\x78\x19\x06\xc1\x2b\x30\x18\x5e\x85\x44\x18\x02\x43\xe1\x35\x18\x06" "\xaf\xc3\x70\x78\x03\x46\xc0\x48\x18\x05\x6f\xc2\x68\x78\x0b\xc6\xc0\x58" "\x18\x07\xe3\x21\x09\x26\xc0\x44\x78\x1b\x26\xc1\x3b\x30\x19\xa6\xc0\x54" "\x98\x06\xc9\x30\x1d\x66\xc0\xbb\x30\x13\x66\xc1\x6c\x78\x0f\xe6\xc0\xfb" "\x30\x17\xe6\xc1\x7c\x58\x00\x29\xf0\x01\x2c\x84\x45\x90\x0a\x1f\xc2\x62" "\xf8\x08\xd2\x60\x09\x2c\x85\x65\xb0\x1c\x56\xc0\x4a\x58\x05\xab\x61\x0d" "\xac\x85\x75\xb0\x1e\x36\xc0\x46\xd8\x04\x9b\x61\x0b\x6c\x85\x6d\xb0\x1d" "\x76\xc0\x4e\xf8\x18\x76\xc1\x27\xb0\x1b\xf6\xc0\x5e\xf8\x14\xf6\xc1\x67" "\xff\x66\xfe\xe9\xbf\xcb\xef\x8a\x80\x80\x02\x05\x2a\x54\x18\x83\x31\x18" "\x8b\xb1\x98\x03\x73\x60\x4e\xcc\x89\xb9\x30\x17\x46\x30\x82\x71\x18\x87" "\xb9\x31\x37\xe6\xc1\x3c\x98\x0f\xf3\x61\x3c\xc6\x63\x41\x2c\x88\x06\x0d" "\x12\x12\x16\xc2\x42\x18\xc5\x28\x16\xc1\x22\x58\x14\x8b\x62\x71\x2c\x8e" "\x0e\x1d\x96\xc2\x52\x58\x1a\x6f\xc6\x32\x58\x06\xcb\x62\x59\x2c\x87\xe5" "\xb0\x3c\x56\xc0\x0a\x58\x09\x2b\x61\x65\xac\x8c\x55\xb0\x0a\x56\xc5\xaa" "\x58\x0d\xab\x61\x0d\xac\x81\x77\xe3\xdd\xd8\x1b\x6b\x63\x6d\xac\x83\x75" "\xb0\x2e\xd6\xcd\xbc\x3d\x85\x0d\xb0\x01\x36\xc4\x86\xd8\x08\x1b\x61\x63" "\x6c\x8c\x4d\xb0\x09\x36\xc3\x66\xd8\x02\x5b\x60\x4b\x6c\x89\xad\xb0\x15" "\xb6\xc1\x36\xd8\x16\xdb\x62\x3b\x6c\x87\xed\xb1\x3d\x76\xc0\x0e\xd8\x11" "\x3b\x62\x27\xec\x84\x9d\xb1\x33\x76\xc1\x2e\xd8\x15\xbb\x61\xb7\xf4\x17" "\xb2\x01\xbe\x88\x2f\x62\x2f\xac\x26\x7a\x63\x1f\xec\x83\x7d\x31\x31\x5b" "\x7f\x1c\x80\x03\xf0\x65\x1c\x84\xaf\xe0\x2b\xf8\x2a\x26\xe2\x10\x1c\x8a" "\xaf\xe1\x6b\xf8\x3a\x0e\xc7\x53\x38\xe2\xc2\x48\x1c\x85\xa3\xb0\xb2\x78" "\x0b\xc7\xe0\x58\x24\x31\x1e\x93\x30\x09\x27\xe2\x44\x9c\x84\x93\x70\x32" "\x4e\xc1\x29\x38\x0d\x93\x71\x3a\xce\xc0\x19\x38\x13\x67\xe1\x2c\x7c\x0f" "\xe7\xe0\xfb\xf8\x3e\xce\xc3\x79\xb8\x00\x53\x30\x05\x17\xe2\x22\x4c\xc5" "\x54\x5c\x8c\xa7\x31\x0d\x97\xe0\x52\x5c\x86\xcb\x71\x05\x2e\xc7\x55\xb8" "\x1a\x57\xe1\x5a\x5c\x87\x6b\x71\x03\x6e\xc0\x4d\xb8\x09\xb7\xe0\x16\xdc" "\x86\xdb\x70\x07\xee\xc0\x8f\x51\x01\xe0\x27\xb8\x07\xf7\x60\x22\xee\xc3" "\x7d\xb8\x1f\xf7\xe3\x01\x3c\x80\x07\xf1\x20\xa6\x63\x3a\x1e\xc2\x43\x78" "\x18\x0f\xe3\x11\x3c\x82\x47\xf1\x28\x1e\xc3\xe3\x78\x02\x8f\xe3\x49\x3c" "\x89\xa7\xf0\x34\x9e\xc1\x33\x78\x0e\xcf\xe1\x79\x7c\x2e\xfe\xab\x86\x1f" "\x17\x5b\x93\x08\x22\x83\x12\x4a\xc4\x88\x18\x11\x2b\x62\x45\x0e\x91\x43" "\xe4\x14\x39\x45\x2e\x91\x4b\x44\x44\x44\xc4\x89\x38\x91\x5b\xe4\x16\x79" "\x44\x1e\x91\x4f\xe4\x13\xf1\x22\x5e\x14\x14\x05\x85\x11\x46\x90\x08\x33" "\x8e\x14\x22\x2a\xa2\xa2\x88\x28\x22\x8a\x8a\xa2\xa2\xb8\x28\x2e\x9c\x70" "\xa2\x94\x28\x25\x4a\x8b\xd2\xa2\x8c\x28\x23\xca\x8a\x5b\x45\x39\x71\x9b" "\x28\x2f\x2a\x88\xd6\xae\x92\xa8\x24\x2a\x8b\x36\xae\x8a\xb8\x53\x54\x15" "\x55\x45\x35\x51\x5d\xd4\x10\x35\x45\x4d\x51\x4b\xd4\x12\xb5\x45\x6d\x51" "\x47\xd4\x11\x75\x45\x5d\x51\x4f\x3c\x20\xea\x8b\xde\xd8\x1f\x1f\x12\x19" "\x9d\x69\x24\x86\x60\x63\x31\x14\x9b\x88\xa6\x42\x5e\x3a\x42\xb5\x14\xc3" "\xb1\x95\x68\x2d\xda\x88\x27\xc4\x48\x1c\x81\xed\x44\x4b\xd7\x5e\x3c\x2d" "\x3a\x88\x31\xd8\x51\xfc\x4d\x8c\xc5\x67\x45\x67\x31\x1e\xbb\x88\xe7\x45" "\x57\xd1\x4d\x74\x17\x2f\x88\x1e\xa2\x95\xeb\x29\x7a\x89\xc9\xd8\x5b\xf4" "\x11\xd3\xb0\xaf\xe8\x27\xfa\x8b\x01\x62\x26\x56\x17\xef\xe1\x9c\xec\x35" "\xc4\xab\x22\x51\x0c\x11\x43\xc5\x6b\x62\x01\xbe\x2e\x86\x8b\x37\xc4\x08" "\x31\x52\x8c\x12\x6f\x8a\xd1\xe2\x2d\x31\x46\x8c\x15\xe3\xc4\x78\x91\x24" "\x26\x88\x89\xe2\x6d\x31\x49\xbc\x23\x26\x8b\x29\x62\xaa\x98\x26\x92\xc5" "\x74\x31\x43\xbc\x2b\x66\x8a\x59\x62\xb6\x78\x4f\xcc\x11\xef\x8b\xb9\x62" "\x9e\x98\x2f\x16\x88\x14\xf1\x81\x58\x28\x16\x89\x54\xf1\xa1\x58\x2c\x3e" "\x12\x69\x62\x89\x58\x2a\x96\x89\xe5\x62\x85\x58\x29\x56\x89\xd5\x62\x8d" "\x58\x2b\xd6\x89\xf5\x62\x83\xd8\x28\x36\x89\xcd\x62\x8b\xd8\x2a\xb6\x89" "\xed\x62\x87\xd8\x29\x3e\x16\xbb\xc4\x27\x62\xb7\xd8\x23\xf6\x8a\x4f\xc5" "\x3e\xf1\x99\xd8\x2f\x3e\x17\x07\xc4\x17\xe2\xa0\xf8\x52\xa4\x8b\xaf\xc4" "\x21\xf1\xb5\x38\x2c\xbe\x11\x47\xc4\xb7\xe2\xa8\xf8\x4e\x1c\x13\xc7\xc5" "\x09\xf1\xbd\x38\x29\x7e\x10\xa7\xc4\x69\x71\x46\x9c\x15\xe7\xc4\x8f\xe2" "\xbc\xf8\x49\x5c\x10\x5e\x80\x44\x29\xa4\x94\x4a\x06\x32\x46\x66\x93\xb1" "\x32\xbb\xcc\x21\xaf\x92\x39\x65\x90\x79\xfc\x97\x71\xf2\x3a\x99\x5b\x5e" "\x2f\xf3\xc8\xbc\x32\x9f\xcc\x2f\xe3\x65\x01\x59\x50\x6a\x69\xa4\x95\x24" "\x43\x59\x48\x16\x96\x51\x79\x83\x2c\x22\x6f\x94\x45\x65\x31\x59\x5c\x96" "\x90\x4e\x96\x94\xa5\xe4\x4d\xb2\xb4\xbc\x59\x96\x91\xb7\xc8\xb2\xf2\x56" "\x59\x4e\xde\x26\xcb\xcb\x0a\xb2\xa2\xac\x24\x6f\x97\x95\xe5\x1d\x12\x22" "\x17\xb7\x51\x4d\x56\x97\x35\x64\x4d\x79\xb7\x4c\x80\x7b\x64\x6d\x79\xaf" "\xac\x23\xef\x93\x75\xe5\xfd\xb2\x9e\x7c\x40\xd6\x97\x0f\xca\x06\xf2\x21" "\xd9\x50\x3e\x2c\x1b\xc9\x47\x64\x63\xf9\xa8\x6c\x22\x9b\xca\x66\xb2\xb9" "\x6c\x21\x1f\x93\x2d\xe5\xe3\xb2\x95\x6c\x2d\xdb\xc8\x27\x64\x5b\xf9\xa4" "\x6c\x27\x9f\x92\xed\xe5\xd3\xb2\x83\xf4\x97\x7e\x45\x9e\x95\x9d\xe5\x73" "\xb2\x8b\x7c\x5e\x76\x95\xdd\x64\x77\xf9\x93\xbc\x20\xbd\xec\x29\x7b\x49" "\xe8\x0d\xb2\x8f\x7c\x49\xf6\x95\xfd\x64\x7f\x39\x40\x0e\x94\x2f\xcb\x41" "\xf2\x15\x39\x58\xbe\x2a\x13\xe5\x10\x39\x54\xbe\x26\x87\xc9\xd7\xe5\x70" "\xf9\x86\x1c\x21\x47\xca\x51\xf2\x4d\x39\x5a\xbe\x25\xc7\xc8\xb1\x72\x9c" "\x1c\x2f\x93\xe4\x04\x39\x51\xbe\x2d\x27\xc9\x77\xe4\x64\x39\x45\x4e\x95" "\xd3\x64\xb2\x9c\x2e\xfb\x5f\x5a\x69\xb6\x94\xff\x34\xff\xed\xdf\xc9\x1f" "\xfc\xf3\xd6\x37\xc9\xcd\x72\x8b\xdc\x2a\xb7\xc9\xed\x72\x87\xdc\x29\x3f" "\x96\xbb\xe4\x2e\xb9\x5b\xee\x96\x7b\xe5\x5e\xb9\x4f\xee\x93\xfb\xe5\x7e" "\x79\x40\x1e\x90\x07\xe5\x41\x99\x2e\xd3\xe5\x21\x79\x48\x1e\x96\x87\xe5" "\x11\x79\x44\x1e\x95\x47\xe5\x31\x79\x5c\x9e\x95\xdf\xcb\x93\xf2\x07\x79" "\x4a\x9e\x96\xa7\xe5\x59\x79\x4e\x9e\x93\xe7\x2f\xfd\x0c\x40\xa1\x12\x4a" "\x2a\xa5\x02\x15\xa3\xb2\xa9\x58\x95\x5d\xe5\x50\x57\xa9\x9c\xea\x6a\x95" "\x4b\x5d\xa3\x22\xea\x5a\x15\xa7\xae\x53\xb9\xd5\xf5\x2a\x8f\xca\xab\xf2" "\xa9\xfc\x2a\x5e\x15\x50\x05\x95\x56\x46\x59\x45\x2a\x54\x85\x54\x61\x15" "\x55\x37\xe0\xa5\x5f\x18\x55\x5c\x95\x50\x4e\x95\x54\xa5\xd4\x4d\xff\x4e" "\xbe\x2a\xa2\x6e\x54\x45\x55\xb1\x5f\xe5\x67\xd6\x97\xf0\x0f\xea\x6b\xa1" "\x5a\xa8\x96\xaa\xa5\x6a\xa5\x5a\xa9\x36\xaa\x8d\x6a\xab\xda\xaa\x76\xaa" "\x9d\x6a\xaf\xda\xab\x0e\xaa\x83\xea\xa8\x3a\xaa\x4e\xaa\x93\xea\xac\x3a" "\xab\x2e\xaa\x8b\xea\xaa\xba\xaa\xee\xaa\xbb\xea\xa1\x7a\xa8\x9e\xaa\xa7" "\x4a\x50\x09\xaa\x8f\x7a\x49\xf5\x55\xfd\x54\x7f\x35\x40\x0d\x54\x2f\x8b" "\x8c\x7d\x18\xac\x06\xab\x44\x95\xa8\x86\xaa\xa1\x6a\x98\x1a\xa6\x86\xab" "\xe1\x6a\x84\x1a\xa1\x46\xa9\x51\x6a\xb4\x1a\xad\xc6\xa8\x31\x6a\x9c\x1a" "\xa7\x92\x54\x92\x9a\xa8\x26\xaa\x49\x6a\x92\x9a\xac\x26\xab\xa9\x6a\xaa" "\x4a\x56\xc9\x6a\x86\x9a\xa1\x66\xaa\x99\x6a\xb6\x9a\xad\xe6\xa8\x39\x6a" "\xae\x9a\xab\xe6\xab\xf9\x2a\x45\xa5\xa8\x85\x6a\xa1\x4a\x55\xa9\x6a\xb1" "\x5a\xac\xd2\xd4\x12\xb5\x44\x2d\x53\xcb\xd4\x0a\xb5\x42\xad\x52\xab\xd4" "\x1a\xb5\x46\xad\x53\xeb\xd4\x06\xb5\x41\xa5\xa9\xcd\x6a\xb3\xda\xaa\xb6" "\xaa\xed\x6a\xbb\xda\xa9\x76\xaa\x5d\x6a\x97\xda\xad\x76\xab\xbd\x6a\xaf" "\xda\xa7\xf6\xa9\xfd\x6a\xbf\x3a\xa0\x0e\xa8\x83\xea\xa0\x4a\x57\xe9\xea" "\x90\x3a\xa4\x0e\xab\xc3\xea\x88\x3a\xa2\x8e\xaa\xa3\xea\x98\x3a\xa6\x4e" "\xa8\x13\xea\xa4\x3a\xa9\x4e\xa9\x53\xea\x8c\x3a\xa3\xce\xa9\x73\xea\xbc" "\x3a\xaf\x2e\xa8\x0b\x19\xa7\x7d\x81\x08\x44\xa0\x02\x15\xc4\x04\x31\x41" "\x6c\x10\x1b\xe4\x08\x72\x04\x39\x83\x9c\x41\xae\x20\x57\x10\x09\x22\x41" "\x5c\x10\x17\xe4\x0e\xae\x0f\xf2\x04\x79\x83\x7c\x41\xfe\x20\x3e\x28\x10" "\x14\x0c\x74\x60\x02\x1b\x88\x4b\x4d\x8f\x06\x37\x04\x45\x82\x1b\x83\xa2" "\x41\xb1\xa0\x78\x50\x22\x70\x41\xc9\xa0\x54\x70\x53\x50\x3a\xb8\x39\x28" "\x13\xdc\x12\x94\x0d\x6e\x0d\xca\x05\xb7\x05\xe5\x83\x0a\x41\xc5\xa0\x52" "\x70\x7b\x50\x39\xb8\x23\xa8\x12\xdc\x19\x54\x0d\xee\x0a\xaa\x05\xd5\x83" "\x1a\x41\xcd\xe0\xee\xa0\x56\x70\x4f\x50\x3b\xb8\x37\xa8\x13\xdc\x17\xd4" "\x0d\xee\x0f\xea\x05\x0f\x04\xf5\x83\x07\x83\x06\xc1\x43\x41\xc3\xe0\xe1" "\xa0\x51\xf0\x48\xd0\x38\x78\x34\x68\x12\x34\x0d\x9a\x05\xcd\x83\x16\x7f" "\xea\xfa\xde\x9f\xca\xfb\xb8\xeb\xa9\x7b\xe9\x04\xdd\x5b\xf7\xd1\x2f\xe9" "\xbe\xba\x9f\xee\xaf\x07\xe8\x81\xfa\x65\x3d\x48\xbf\xa2\x07\xeb\x57\x75" "\xa2\x1e\xa2\x87\xea\xd7\xf4\x30\xfd\xba\x1e\xae\xdf\xd0\x23\xf4\x48\x3d" "\x4a\xbf\xa9\x47\xeb\xb7\xf4\x18\x3d\x56\x8f\xd3\xe3\x75\x92\x9e\xa0\x27" "\xea\xb7\xf5\x24\xfd\x8e\x9e\xac\xa7\xe8\xa9\x7a\x9a\x4e\xd6\xd3\xf5\x0c" "\xfd\xae\x9e\xa9\x67\xe9\xd9\xfa\x3d\x3d\x47\xbf\xaf\xe7\xea\x79\x7a\xbe" "\x5e\xa0\x53\xf4\x07\x7a\xa1\x5e\xa4\x53\xf5\x87\x7a\xb1\xfe\x48\xa7\xe9" "\x25\x7a\xa9\x5e\xa6\x97\xeb\x15\x7a\xa5\x5e\xa5\x57\xeb\x35\x7a\xad\x5e" "\xa7\xd7\xeb\x0d\x7a\xa3\xde\xa4\x37\xeb\x2d\x7a\xab\xde\xa6\xb7\xeb\x1d" "\x7a\xa7\xfe\x58\xef\xd2\x9f\xe8\xdd\x7a\x8f\xde\xab\x3f\xd5\xfb\xf4\x67" "\x7a\xbf\xfe\x5c\x1f\xd0\x5f\xe8\x83\xfa\x4b\x9d\xae\xbf\xd2\x87\xf4\xd7" "\xfa\xb0\xfe\x46\x1f\xd1\xdf\xea\xa3\xfa\x3b\x7d\x4c\x1f\xd7\x65\xf4\xf7" "\xfa\xa4\xfe\x41\x9f\xd2\xa7\xf5\x19\x7d\x56\x9f\xd3\x3f\xea\xf3\xfa\x27" "\x7d\x41\xfb\x8c\x93\xfb\x8c\xb7\x77\xa3\x8c\x32\x31\x26\xc6\xc4\x9a\x58" "\x93\xc3\xe4\x30\x39\x4d\x4e\x93\xcb\xe4\x32\x11\x13\x31\x71\x26\xce\xe4" "\x36\xb9\x4d\x1e\x93\xc7\xe4\x33\xf9\x4c\xbc\x89\x37\x05\x4d\x41\x93\x81" "\x0c\x99\x42\xa6\x90\x89\x9a\xa8\x29\x62\x8a\x98\xa2\xa6\xa8\x29\x6e\x8a" "\x1b\x67\x9c\x29\x65\x4a\x99\xd2\xa6\xb4\x29\x63\xca\x98\xb2\xa6\xac\x29" "\x67\xca\x99\xf2\xa6\xbc\xa9\x68\x2a\x9a\xdb\xcd\xed\xe6\x0e\x73\x87\xb9" "\xd3\xdc\x69\xee\x32\x77\x99\xea\xa6\xba\xa9\x69\x6a\x9a\x5a\xa6\x96\xa9" "\x6d\x6a\x9b\x3a\xa6\x8e\xa9\x6b\xea\x9a\x7a\xa6\x9e\xa9\x6f\xea\x9b\x06" "\xa6\x81\x69\x68\x1a\x9a\x46\xa6\x91\x69\x6c\x1a\x9b\x26\xa6\x89\x69\x66" "\x9a\x99\x16\xa6\x85\x69\x69\x5a\x9a\x56\xa6\x95\x69\x63\xda\x98\xb6\xa6" "\xad\x69\x67\xda\x99\xf6\xa6\xbd\xe9\x60\x3a\x98\x8e\xa6\xa3\xe9\x64\x3a" "\x99\xce\xa6\xb3\xe9\x62\xba\x98\xae\xa6\xab\xe9\x6e\xba\x9b\x1e\xa6\x87" "\xe9\x69\x7a\x9a\x04\x93\x60\xfa\x98\x3e\xa6\xaf\xe9\x6b\xfa\x9b\xfe\x66" "\xa0\x19\x68\x06\x99\x41\x66\xb0\x19\x6c\x12\x4d\xa2\x19\x6a\x86\x9a\x61" "\x66\x98\x19\x6e\x86\x9b\x11\x66\xa4\x19\x95\x71\xa2\x6a\xde\x32\x63\xcc" "\x58\x33\xce\x8c\x37\x49\x26\xc9\x4c\x34\x13\xcd\x24\x33\xc9\x4c\x36\x93" "\xcd\x54\x33\xd5\x24\x9b\x64\x33\xc3\xcc\x30\x33\xcd\x4c\x33\xdb\xcc\x36" "\x73\xcc\x1c\x33\xd7\xcc\x35\xf3\xcd\x7c\x93\x62\x52\xcc\x42\xb3\xd0\xa4" "\x9a\x54\xb3\xd8\x2c\x36\x69\x26\xcd\x2c\x35\x4b\xcd\x72\xb3\xdc\xac\x34" "\x2b\xcd\x6a\xb3\xda\xac\x35\x6b\xcd\x7a\x58\x6f\x36\x9a\x8d\x66\xb3\xd9" "\x6c\xb6\x9a\xad\x66\xbb\xd9\x6e\x76\x9a\x9d\x66\x97\xd9\x65\x76\x9b\xdd" "\x66\xaf\xd9\x6b\xf6\x99\x7d\x66\xbf\xd9\x6f\x0e\x98\x03\xe6\xa0\x39\x68" "\xd2\x4d\xba\x39\x64\x0e\x99\xc3\xe6\xb0\x39\x62\x8e\x98\xa3\xe6\xa8\x39" "\x66\x8e\x99\x13\xe6\x84\x39\x69\x4e\x9a\x53\xe6\x94\x39\x63\xce\x98\x73" "\x26\xef\xa5\xf7\x4b\x6f\x62\x6d\x76\x9b\xc3\x5e\x65\x73\xda\xab\x6d\x2e" "\x7b\x8d\xfd\xfb\x38\x9f\xcd\x6f\xe3\x6d\x01\x5b\xd0\x6a\x9b\xc7\xe6\xfd" "\x55\x6c\xac\xb5\x45\x6d\x31\x5b\xdc\x96\xb0\xce\x96\xb4\xa5\xec\x4d\xbf" "\x89\xcb\xdb\x0a\xb6\xa2\xad\x64\x6f\xb7\x95\xed\x1d\xb6\xca\x6f\xe2\x5a" "\xf6\x1e\x5b\xdb\xde\x6b\xeb\xd8\xfb\x6c\x4d\x7b\xf7\xaf\xe2\xba\xf6\x7e" "\x5b\xcf\x3e\x62\xeb\x23\x02\xd8\xa6\xb6\xa1\x6d\x6e\x1b\xd9\x47\x6c\x63" "\xfb\xa8\x6d\x62\x9b\xda\x66\xb6\xb9\x6d\x6b\x9f\xb4\xed\xec\x53\xb6\xbd" "\x7d\xda\x76\xb0\xcf\xfc\x26\x5e\x68\x17\xd9\xd5\x76\x8d\x5d\x6b\xd7\xd9" "\xdd\x76\x8f\x3d\x63\xcf\xda\xc3\xf6\x1b\x7b\xce\xfe\x68\x7b\xda\x5e\x76" "\xa0\x7d\xd9\x0e\xb2\xaf\xd8\xc1\xf6\x55\x9b\x68\x87\xfc\x26\x1e\x65\xdf" "\xb4\xa3\xed\x5b\x76\x8c\x1d\x6b\xc7\xd9\xf1\xbf\x89\xa7\xda\x69\x36\xd9" "\x4e\xb7\x33\xec\xbb\x76\xa6\x9d\xf5\x9b\x38\xc5\x7e\x60\xe7\xd8\x54\x3b" "\xd7\xce\xb3\xf3\xed\x82\x9f\xe3\x8c\x9a\x52\xed\x87\x76\xb1\xfd\xc8\xa6" "\xd9\x00\x96\xda\x65\x76\xb9\x5d\x61\x57\xda\x55\xff\xb7\xd6\x65\x76\x83" "\xdd\x68\x37\xd9\x5d\xf6\x13\xbb\xd5\x6e\xb3\xdb\xed\x0e\xbb\x33\xf3\x44" "\xd8\xee\xb1\x7b\xed\xa7\x76\x9f\xfd\xcc\x1e\xb2\x5f\xdb\x03\xf6\x0b\x7b" "\xd0\x1e\xb1\xe9\xf6\xab\x9f\xe3\x8c\xfd\x3b\x62\xbf\xb5\x47\xed\x77\xf6" "\x98\x3d\x6e\x4f\xd8\xef\xed\x49\xfb\x83\xca\xcc\xce\xd8\xf7\xef\xed\x4f" "\xf6\x82\xf5\x16\x08\x09\x48\x92\xa2\x80\x62\x28\x1b\xc5\x52\x76\xca\x41" "\x57\x51\x4e\xba\x9a\x72\xd1\x35\x14\xa1\x6b\x29\x8e\xae\xa3\xdc\x74\x3d" "\xe5\xa1\xbc\x94\x8f\xf2\x53\x3c\x15\xa0\x82\xa4\xc9\x90\x25\xa2\x90\x0a" "\x51\x61\x8a\xd2\x0d\x94\x59\x5e\x71\x2a\x41\x8e\x4a\x52\x29\xba\x89\x4a" "\xd3\xcd\x54\x86\x6e\xa1\xb2\x74\x2b\x95\xa3\xdb\xa8\x3c\x55\xa0\x8a\x54" "\x89\x6e\xa7\xca\x74\x07\x55\xa1\x3b\xa9\x2a\xdd\x45\xd5\xa8\x3a\xd5\xa0" "\x9a\x74\x37\xd5\xa2\x7b\xa8\x36\xdd\x4b\x75\xe8\x3e\xaa\x4b\xf7\x53\x3d" "\x7a\x80\xea\xd3\x83\xd4\x80\x1e\xa2\x86\xf4\x30\x35\xa2\x47\xa8\x31\x3d" "\x4a\x4d\xa8\x29\x35\xa3\xe6\xd4\x82\x1e\xa3\x96\xf4\x38\xb5\xa2\xd6\xd4" "\x86\x9e\xa0\xb6\xf4\x24\xb5\xa3\xa7\xa8\x3d\x3d\x4d\x1d\xe8\x19\xea\x48" "\x7f\xa3\x4e\xf4\x2c\x75\xa6\xe7\xa8\x0b\x3d\x4f\x5d\xa9\x1b\x75\xa7\x17" "\xa8\x07\xbd\x48\x3d\xa9\x17\x25\x50\x6f\xea\x43\x2f\x51\x5f\xea\x47\xfd" "\x69\x00\x0d\xa4\x97\x69\x10\xbd\x42\x83\xe9\x55\x4a\xa4\x21\x34\x94\x5e" "\xa3\x61\xf4\x3a\x0d\xa7\x37\x68\x04\x8d\xa4\x51\xf4\x26\x8d\xa6\xb7\x68" "\x0c\x8d\xa5\x71\x34\x9e\x92\x68\x02\x4d\xa4\xb7\x69\x12\xbd\x43\x93\x69" "\x0a\x4d\xa5\x69\x94\x4c\xd3\x69\x06\xbd\x4b\x33\x69\x16\xcd\xa6\xf7\x68" "\x0e\xbd\x4f\x73\x69\x1e\xcd\xa7\x05\x94\x42\x1f\xd0\x42\x5a\x44\xa9\xf4" "\x21\x2d\xa6\x8f\x28\x8d\x96\xd0\x52\x5a\x46\xcb\x69\x05\xad\xa4\x55\xb4" "\x9a\xd6\xd0\x5a\x5a\x47\xeb\x69\x03\x6d\xa4\x4d\xb4\x99\xb6\xd0\x56\xda" "\x46\xdb\x69\x07\xed\xa4\x8f\x69\x17\x7d\x42\xbb\x69\x0f\xed\xa5\x4f\x69" "\x1f\x7d\x46\xfb\xe9\x73\x3a\x40\x5f\xd0\x41\xfa\x92\xd2\xe9\x2b\x3a\x44" "\x5f\xd3\x61\xfa\x86\x8e\xd0\xb7\xbe\x17\x7d\x47\xc7\xe8\x38\x9d\xa0\xef" "\xe9\x24\xfd\x40\xa7\xe8\x34\x9d\xa1\xb3\x74\x8e\x7e\xa4\xf3\xf4\x13\x5d" "\x20\x4f\x10\x62\x28\x42\x19\xaa\x30\x08\x63\xc2\x6c\x61\x6c\x98\x3d\xcc" "\x11\x5e\x15\xe6\x0c\xaf\x0e\x73\x85\xd7\x84\x91\xf0\xda\x30\x2e\xbc\x2e" "\xcc\x1d\x5e\x1f\xe6\x09\xf3\x86\xf9\xc2\xfc\x61\x7c\x58\x20\x2c\x18\xea" "\xd0\x84\x36\xa4\x30\x0c\x0b\x85\x85\xc3\x68\x78\x43\x58\x24\xbc\x31\x2c" "\x1a\x16\x0b\x8b\x87\x25\x42\x17\x96\x0c\x4b\x85\x37\x85\xa5\xc3\x9b\xc3" "\x32\xe1\x2d\x61\xd9\xf0\xd6\xb0\x5c\x78\x5b\x58\x3e\xac\x10\x3e\x72\x5f" "\xa5\xf0\xf6\xb0\x72\x78\x47\x58\x25\xbc\x33\xac\x1a\xde\x15\x56\x0b\xab" "\x87\x35\xc2\x9a\xe1\xdd\x61\xad\xf0\x9e\xb0\x76\x78\x6f\x58\x27\xbc\x2f" "\x2c\x13\xde\x1f\xd6\x0b\x1f\x08\xeb\x87\x0f\x86\x0d\xc2\x87\xc2\x86\xe1" "\xc3\x61\xa3\xf0\x91\xb0\x71\xf8\x68\xd8\x24\x6c\x1a\x36\x0b\x9b\x87\x2d" "\xc2\xc7\xc2\x96\xe1\xe3\x61\xab\xb0\x75\xd8\x26\xbc\x2a\x6c\x1b\x3e\x19" "\xb6\x0b\x9f\x0a\xdb\x87\x4f\x87\x1d\xc2\x67\x7e\x9e\xbf\x7f\x51\xe6\xfc" "\x13\xbf\x99\x4f\x08\x7b\x87\x7d\xc2\x97\xc2\x97\x42\xef\xef\x95\xf3\xa3" "\x0b\xa2\x29\xd1\x0f\xa2\x0b\xa3\x8b\xa2\xa9\xd1\x0f\xa3\x8b\xa3\x1f\x45" "\xd3\xa2\x4b\xa2\x4b\xa3\xcb\xa2\xcb\xa3\x2b\xa2\x2b\xa3\xab\xa2\xab\xa3" "\x6b\xa2\x6b\xa3\xeb\xa2\xeb\xa3\x1b\xa2\x1b\xa3\x9b\xa2\xde\xd7\xcc\x06" "\x0e\x9d\x70\xd2\x29\x17\xb8\x18\x97\xcd\xc5\xba\xec\x2e\x87\xbb\xca\xe5" "\x74\x57\xbb\x5c\xee\x1a\x17\x71\xd7\xba\x38\x77\x9d\xcb\xed\xae\x77\x79" "\x5c\x5e\x97\xcf\xe5\x77\xf1\xae\x80\x2b\xe8\xb4\x33\xce\x3a\x72\xa1\x2b" "\xe4\x0a\xbb\xa8\xbb\xc1\x15\x71\x37\xba\xa2\xae\x98\x2b\xee\x4a\x38\xe7" "\x4a\xba\x52\xae\xb9\x6b\xe1\x5a\xb8\x96\xee\x71\xd7\xca\xb5\x76\x6d\xdc" "\x13\xee\x09\xf7\xa4\x7b\xd2\x3d\xe5\x9e\x72\x4f\xbb\x0e\xee\x19\xd7\xd1" "\xfd\xcd\x75\x72\xcf\xba\xce\xee\x39\xf7\x9c\x7b\xde\x75\x75\xdd\x5c\x77" "\xf7\x82\xeb\xe1\x26\xe4\xba\xf8\x9a\x4c\x70\x7d\x5c\x1f\xd7\xd7\xf5\x75" "\xfd\x5d\x7f\x37\xd0\x0d\x74\x83\xdc\x20\x37\xd8\x0d\x76\x89\x2e\xd1\x0d" "\x75\x43\xdd\x30\x37\xcc\x0d\x77\xc3\xdd\x08\x37\xc2\x8d\x72\xa3\xdc\x68" "\x37\xda\x8d\x71\x63\xdc\x38\x37\xce\x25\xb9\x24\x37\xd1\x4d\x74\x93\xdc" "\x24\x37\xd9\x4d\x76\x53\xdd\x54\x97\xec\x92\xdd\x0c\x37\xc3\xcd\x74\x33" "\x5d\xe5\x59\x17\xb7\x32\xd7\xcd\x75\xf3\xdd\x7c\x97\xe2\x52\xdc\x42\x97" "\x71\xce\x98\xea\x16\xbb\xc5\x2e\xcd\xa5\xb9\xa5\x6e\xa9\x5b\xee\x96\xbb" "\x95\x6e\xa5\x5b\xed\x56\xbb\xb5\x6e\xad\x5b\xef\xd6\xbb\x8d\x6e\xa3\xdb" "\xec\x36\xbb\xad\x6e\xab\xdb\xee\xb6\xbb\x9d\x6e\xa7\xdb\xe5\x76\xb9\xdd" "\xfe\x9a\x8b\x8b\xba\x7d\x6e\xbf\xdb\xef\x0e\xb8\x03\xee\xa0\xfb\xd2\xa5" "\xbb\xaf\xdc\x21\xf7\xb5\x3b\xec\xbe\x71\x47\xdc\xb7\xee\xa8\xfb\xce\x1d" "\x73\xc7\xdd\x09\xf7\xbd\x3b\xe9\x7e\x70\xa7\xdc\x69\x77\xc6\x9d\x75\xe7" "\xdc\x8f\xee\xbc\xfb\xc9\x5d\x70\xde\x25\x45\x26\x44\x26\x46\xde\x8e\x4c" "\x8a\xbc\x13\x99\x1c\x99\x12\x99\x1a\x99\x16\x49\x8e\x4c\x8f\xcc\x88\xbc" "\x1b\x99\x19\x99\x15\x99\x1d\x79\x2f\x32\x27\xf2\x7e\x64\x6e\x64\x5e\x64" "\x7e\x64\x41\x24\x25\xf2\x41\x64\x61\x64\x51\x24\x35\xf2\x61\x64\x71\xe4" "\xa3\x48\x5a\x64\x49\x64\x69\x64\x59\x64\x79\x64\x45\xc4\xfb\x02\x5b\x43" "\x5f\xc8\x17\xf6\x51\x7f\x83\x2f\xe2\x6f\xf4\x45\x7d\x31\x5f\xdc\x97\xf0" "\xce\x97\xf4\xa5\xfc\x4d\xbe\xf4\xc5\xba\xd3\xbc\xbf\xd5\x97\xf3\xb7\xf9" "\xf2\xbe\x82\xaf\xe8\x1f\xf5\x4d\x7c\x53\xdf\xcc\x37\xf7\x2d\xfc\x63\xbe" "\xa5\x7f\xdc\xb7\xf2\xad\x7d\x1b\xff\x84\x6f\xeb\x9f\xf4\xed\xfc\x53\xbe" "\xbd\x7f\xda\x77\xf0\xcf\xf8\x8e\xfe\x6f\xbe\x93\x7f\xd6\x77\xf6\xcf\xf9" "\x2e\xfe\x79\xdf\xd5\x77\xf3\xdd\xfd\x0b\xbe\x87\x7f\xd1\xf7\xf4\xbd\x7c" "\x82\xef\xed\xfb\xf8\x97\x7c\x5f\xdf\xcf\xf7\xf7\x03\xfc\x40\xff\xb2\x1f" "\xe4\x5f\xf1\x83\xfd\xab\x3e\xd1\x0f\xf1\x43\xfd\x6b\x7e\x98\x7f\xdd\x0f" "\xf7\x6f\xf8\x11\x7e\xa4\x1f\x15\xf3\xa6\x1f\x9d\x79\x89\x0c\xe3\x7d\x92" "\x9f\xe0\x27\xfa\xb7\xfd\x24\xff\x8e\x9f\xec\xa7\xf8\xa9\x7e\x9a\x4f\xf6" "\xd3\xfd\x0c\xff\xae\x9f\xe9\x67\xf9\xd9\xfe\x3d\x3f\xc7\xbf\xef\xe7\xfa" "\x79\x7e\xbe\x5f\xe0\x53\xfc\x07\x7e\xa1\x5f\xe4\x53\xfd\x87\x7e\xb1\xff" "\xc8\xa7\xf9\x25\x99\x37\x8d\xfd\x4a\xbf\xca\xaf\xf6\x6b\xfc\x5a\xbf\xce" "\xaf\xf7\x1b\xfc\x46\xbf\xc9\x6f\xf6\x5b\xfc\x56\xbf\xcd\x6f\xf7\x3b\xfc" "\x4e\xff\xb1\xdf\xe5\x3f\xf1\xbb\xfd\x1e\xbf\xd7\x7f\xea\xf7\xf9\xcf\xfc" "\x7e\xff\xb9\x3f\xe0\xbf\xf0\x07\xfd\x97\x3e\xdd\x7f\xe5\x0f\xf9\xaf\xfd" "\x61\xff\x8d\x3f\xe2\xbf\xf5\x47\xfd\x77\xfe\x98\x3f\xee\x4f\xf8\xef\xfd" "\x49\xff\x83\x3f\xe5\x4f\xfb\x33\xfe\xac\x3f\xe7\x7f\xf4\xe7\xfd\x4f\xfe" "\x02\xff\x9b\x35\xc6\x18\x63\x8c\xb1\x7f\xc9\x84\xcb\x43\xf1\xeb\x99\x8b" "\xb7\xf3\x7b\xff\x4e\x8e\xf8\xc5\x93\xfb\x00\xc0\xd5\xdb\xf2\xa7\xff\x72" "\x3e\xe3\x8c\x72\x7d\x9e\x8b\xe3\x7e\x22\x3e\x36\xe3\xeb\xd3\xbd\xba\x3c" "\x94\xf9\xa8\x56\x2d\x21\x21\xe1\xd2\x73\xd3\x24\x04\x85\xe7\x01\x64\xfe" "\x25\x28\xc3\xcf\x1f\x3d\xb8\x14\x2f\x81\x36\xf0\x24\xb4\x87\xd6\x50\xfa" "\x77\xeb\xef\x27\xba\x9d\xa3\x7f\xb2\x7e\xf4\x56\x80\x1c\xbf\xc8\xc9\x28" "\x28\x33\xbe\xbc\xfe\xe7\x00\x98\xf0\x3b\xeb\x3f\xf6\xc4\xa8\x85\xe5\xc2" "\x33\x71\xff\x8f\xf5\xe7\x01\x14\x2d\x7c\x39\x27\x3b\x5c\x8e\x97\x40\x9b" "\x9f\xef\xaf\xb4\x86\x32\xff\xa0\xfe\xbc\x2d\xff\x49\xfd\xd9\xbf\x48\x02" "\x68\xf5\x8b\x9c\x9c\x70\x39\xbe\x5c\x7f\x29\x78\x1c\x9e\x81\xf6\xbf\x7a" "\x26\x63\x8c\x31\xc6\x18\x63\x8c\x31\x76\x51\x3f\x51\xb1\x53\xe6\xf5\x67" "\xe6\x27\x3e\x7f\xef\xfa\x3c\x5e\x5d\xce\xc9\x06\x97\xe3\x7f\x76\x7d\xce" "\x18\x63\x8c\x31\xc6\x18\x63\x8c\xb1\x2b\xef\xd9\x6e\xdd\x9f\x7a\xac\x7d" "\xfb\xd6\x9d\xfe\xfd\x41\x95\xff\x51\xd6\xbf\x3c\x68\x0c\xff\xa9\x95\x79" "\xf0\xbb\x03\xef\x01\x32\xbf\xa3\x00\xe0\x0f\x2e\x08\x90\x31\x90\x7f\xe5" "\x5e\x6c\xf9\x4b\xb6\x95\x78\xe9\xa5\xf3\xf7\x53\xcb\xcf\xfa\x00\xfe\x77" "\xb4\xf2\xcf\x18\x5c\xe1\x03\x13\x63\x8c\x31\xc6\x18\x63\xec\x4f\x77\xf9" "\xa4\xff\xd7\xdf\x57\x57\xaa\x20\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31" "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63" "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x2c\x0b\xfa\x2b\xfe\x3b\xb1\x2b" "\xbd\x8f\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c" "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18" "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xd8\x95\xf6\x7f" "\x02\x00\x00\xff\xff\xb5\xb5\xfb\x08", 5427); syz_mount_image(/*fs=*/0x200000000200, /*dir=*/0x200000000240, /*flags=*/0, /*opts=*/0x2000000032c0, /*chdir=*/1, /*size=*/0x1533, /*img=*/0x200000006800); // ioctl$EXT4_IOC_MOVE_EXT arguments: [ // fd: fd (resource) // cmd: const = 0x40305829 (4 bytes) // arg: nil // ] syscall(__NR_ioctl, /*fd=*/(intptr_t)-1, /*cmd=*/0x40305829, /*arg=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; use_temporary_dir(); loop(); return 0; }