// https://syzkaller.appspot.com/bug?id=37a6a8613f3547e6c61229a40e262e8c5fbdbffb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% 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")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0) + (call == 2 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x28108c0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {64 69 73 63 61 72 64 2c 69 6f 63 68 61 72 73 // 65 74 3d 63 70 38 37 34 2c 65 72 72 6f 72 73 3d 72 65 6d 6f 75 // 6e 74 2d 72 6f 2c 75 73 72 71 75 6f 74 61 2c 69 6f 63 68 61 72 // 73 65 74 3d 63 70 38 36 31 2c 69 6f 63 68 61 72 73 65 74 3d 63 // 70 31 32 35 30 2c 69 6e 74 65 67 72 69 74 79 00 69 6f 63 68 61 // 72 73 65 74 3d 69 73 6f 38 38 35 39 2d 34 2c 64 69 73 63 61 72 // 64 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 30 30 39 69 43 // b9 5b 49 ac a5 6f af 1c c2 21 89 cc 31 2c 69 6f 63 68 61 72 73 // 65 74 3d 6d 61 63 67 72 65 65 6b 2c 71 75 6f 74 61 2c 72 65 73 // 69 7a 65 3d 30 78 30 30 30 30 30 30 30 30 30 30 30 30 37 66 66 // 66 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 30 30 30 30 66 // 66 66 66 66 66 66 66 2c 75 6d 61 73 6b 3d 30 78 30 30 30 30 30 // 30 30 30 30 30 30 32 30 30 34 35 2c 66 73 63 6f 6e 74 65 78 74 // 3d 83 6e 63 6f 6e 66 69 6e 65 64 5f 75 2c 66 73 6d 61 67 69 63 // 3d 30 78 30 30 30 30 30 30 30 30 30 30 32 30 30 30 30 39 2c 32 // 42 16 87 3b 95 ed fe 8c ea b2 bb 0b 11 83 5a 5c f5 31 ac 62 73 // c2 9a 4d 4f 9d 05 6f 1b cb 8c d0 a9 69 ed 12 cf 99 80 2b 3e 32 // 01 51 8e cf c5 9a 4f d9 4d d5 34 9d c5 56 33 bd 2b de 11 28 ad // 07 18 07 ef 13 a9 f1 0c 0f bf 3a d8 61 c2 00 90 67 c5 c6 c8 4c // db a2 80 6f a7 4e dd ff 83 73 79 9d 0b 8c 1e 6f 7e 2b 20 52 35 // 16 1b 61 0a e5 c6 6d 1d 9c fc 2b c0 cb 61 7a e4 93 31 ad e7 15 // 95 c2 a5 43 81 39 93 3a ad a4 72 36 da fd ff ff ff 08 8a 55 24 // 45 f9 57 68 cc ec b0 c3 57 97 e8 32 be ce d2 07 7f a1 97 62 3c // d3 de 51 d6 9d 7a 4f 77 a8 0e b5 f7 83 f0 91 e5 ec 60 47 a0 f6 // 76 76 81 9f 4b f6 67 44 c1 cb 09 75 b9 6b af 73 00 00 00 00 00 // 00 00 01 00 4e 25 7b ba bf 33 e3 fa 8d 0c ca 2f bb 4d ab e1 c5 // 63 4b df 88 9b 76 4c e2 6a e4 e5 39 fd ff a2 ea 82 c3 4b 16 30 // 8e 26 ce 94 5d 10 1d 5f 2e 25 77 d8 e2 a2 1d 94 01 19 4a 97 a6 // c2 81 b6 03 da 7c 66 93 4f 0c 34 1d f8 ff 02 d9 1c d4 f2 d8 0e // a7 dd e6 97} (length 0x25f) // } // } // } // chdir: int8 = 0xfe (1 bytes) // size: len = 0x61c4 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x61c4) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x200000006980, "\x64\x69\x73\x63\x61\x72\x64\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74" "\x3d\x63\x70\x38\x37\x34\x2c\x65\x72\x72\x6f\x72\x73\x3d\x72\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x2c\x75\x73\x72\x71\x75\x6f\x74\x61\x2c" "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x63\x70\x38\x36\x31\x2c\x69" "\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x63\x70\x31\x32\x35\x30\x2c\x69" "\x6e\x74\x65\x67\x72\x69\x74\x79\x00\x69\x6f\x63\x68\x61\x72\x73\x65" "\x74\x3d\x69\x73\x6f\x38\x38\x35\x39\x2d\x34\x2c\x64\x69\x73\x63\x61" "\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30" "\x30\x30\x39\x69\x43\xb9\x5b\x49\xac\xa5\x6f\xaf\x1c\xc2\x21\x89\xcc" "\x31\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x67\x72" "\x65\x65\x6b\x2c\x71\x75\x6f\x74\x61\x2c\x72\x65\x73\x69\x7a\x65\x3d" "\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x37\x66\x66" "\x66\x2c\x64\x69\x73\x63\x61\x72\x64\x3d\x30\x78\x30\x30\x30\x30\x30" "\x30\x30\x30\x66\x66\x66\x66\x66\x66\x66\x66\x2c\x75\x6d\x61\x73\x6b" "\x3d\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x32\x30\x30" "\x34\x35\x2c\x66\x73\x63\x6f\x6e\x74\x65\x78\x74\x3d\x83\x6e\x63\x6f" "\x6e\x66\x69\x6e\x65\x64\x5f\x75\x2c\x66\x73\x6d\x61\x67\x69\x63\x3d" "\x30\x78\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x32\x30\x30\x30\x30" "\x39\x2c\x32\x42\x16\x87\x3b\x95\xed\xfe\x8c\xea\xb2\xbb\x0b\x11\x83" "\x5a\x5c\xf5\x31\xac\x62\x73\xc2\x9a\x4d\x4f\x9d\x05\x6f\x1b\xcb\x8c" "\xd0\xa9\x69\xed\x12\xcf\x99\x80\x2b\x3e\x32\x01\x51\x8e\xcf\xc5\x9a" "\x4f\xd9\x4d\xd5\x34\x9d\xc5\x56\x33\xbd\x2b\xde\x11\x28\xad\x07\x18" "\x07\xef\x13\xa9\xf1\x0c\x0f\xbf\x3a\xd8\x61\xc2\x00\x90\x67\xc5\xc6" "\xc8\x4c\xdb\xa2\x80\x6f\xa7\x4e\xdd\xff\x83\x73\x79\x9d\x0b\x8c\x1e" "\x6f\x7e\x2b\x20\x52\x35\x16\x1b\x61\x0a\xe5\xc6\x6d\x1d\x9c\xfc\x2b" "\xc0\xcb\x61\x7a\xe4\x93\x31\xad\xe7\x15\x95\xc2\xa5\x43\x81\x39\x93" "\x3a\xad\xa4\x72\x36\xda\xfd\xff\xff\xff\x08\x8a\x55\x24\x45\xf9\x57" "\x68\xcc\xec\xb0\xc3\x57\x97\xe8\x32\xbe\xce\xd2\x07\x7f\xa1\x97\x62" "\x3c\xd3\xde\x51\xd6\x9d\x7a\x4f\x77\xa8\x0e\xb5\xf7\x83\xf0\x91\xe5" "\xec\x60\x47\xa0\xf6\x76\x76\x81\x9f\x4b\xf6\x67\x44\xc1\xcb\x09\x75" "\xb9\x6b\xaf\x73\x00\x00\x00\x00\x00\x00\x00\x01\x00\x4e\x25\x7b\xba" "\xbf\x33\xe3\xfa\x8d\x0c\xca\x2f\xbb\x4d\xab\xe1\xc5\x63\x4b\xdf\x88" "\x9b\x76\x4c\xe2\x6a\xe4\xe5\x39\xfd\xff\xa2\xea\x82\xc3\x4b\x16\x30" "\x8e\x26\xce\x94\x5d\x10\x1d\x5f\x2e\x25\x77\xd8\xe2\xa2\x1d\x94\x01" "\x19\x4a\x97\xa6\xc2\x81\xb6\x03\xda\x7c\x66\x93\x4f\x0c\x34\x1d\xf8" "\xff\x02\xd9\x1c\xd4\xf2\xd8\x0e\xa7\xdd\xe6\x97", 607); memcpy( (void*)0x200000006c00, "\x78\x9c\xec\xdd\xcd\x6f\x1c\x67\x1d\x07\xf0\xdf\xbe\xfa\xa5\xb4\xb5" "\x7a\xa8\x4a\x84\x90\x9b\x96\x97\x52\x9a\xc4\x49\x09\x81\x02\x6d\x0f" "\x70\xe0\xd2\x03\xca\x15\x25\x72\xdd\x2a\x22\x05\x94\x04\x94\x56\x16" "\x71\xe5\x0b\x07\x4e\xfc\x05\x20\x24\x8e\x08\x71\x44\x1c\xf8\x03\x7a" "\xe0\xca\x8d\x13\x27\x22\xd9\x48\xa0\x9e\x18\x34\xf6\xf3\xc4\xe3\xcd" "\x6e\xed\xd4\xf1\xce\xda\xcf\xe7\x23\x39\x33\xbf\x79\x66\xbd\xcf\xe4" "\x3b\xfb\xe6\x99\xd9\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\xf8\xfe\xf7\x7e\xb0\xd2\x89\x88\x6b\x3f\x4f\x0b\x96" "\x22\x3e\x13\xbd\x88\x6e\xc4\x42\x5d\x2f\x47\xc4\xc2\xf2\x52\x5e\xbf" "\x1f\x11\xcf\xc5\x4e\x73\x3c\x1b\x11\x83\xb9\x88\xfa\xf6\x3b\xff\x3c" "\x1d\xf1\x6a\x44\x7c\xf4\x54\xc4\xd6\xf6\xfa\x6a\xbd\xf8\xe2\x21\xfb" "\xf1\xdd\x3f\xfe\xfd\x77\x3f\x7c\xe2\xad\xbf\xfd\x61\x70\xfe\xbf\x7f" "\xba\xd3\x7b\x6d\xd2\x7a\x77\xef\xfe\xea\x3f\x7f\xbe\x77\xb4\x6d\x06" "\x00\x00\x80\xd2\x54\x55\x55\x75\xd2\xc7\xfc\x33\xe9\xf3\x7d\xb7\xed" "\x4e\x01\x00\x53\x91\x5f\xff\xab\x24\x2f\x3f\xf5\xf5\xaf\xff\xf9\xd6" "\x5f\x66\xa9\x3f\x6a\xb5\x5a\xad\x56\x4f\xa1\x6e\xaa\xc6\xbb\xd7\x2c" "\x22\x62\xa3\x79\x9b\xfa\x3d\x83\xc3\xf1\x00\x70\xc2\x6c\xc4\xc7\x6d" "\x77\x81\x16\xc9\xbf\x68\xfd\x88\x78\xa2\xed\x4e\x00\x33\xad\xd3\x76" "\x07\x38\x16\x5b\xdb\xeb\xab\x9d\x94\x6f\xa7\xf9\x7a\xb0\xbc\xdb\x9e" "\xcf\x05\xd9\x97\xff\x46\xe7\xc1\xf5\x1d\x93\xa6\x07\x19\x3d\xc7\x64" "\x5a\xfb\xd7\x66\xf4\xe2\x99\x09\xfd\x59\x98\x52\x1f\x66\x49\xce\xbf" "\x3b\x9a\xff\xb5\xdd\xf6\x61\x5a\xef\xb8\xf3\x9f\x96\x49\xf9\x0f\x77" "\x2f\x7d\x2a\x4e\xce\xbf\x37\x9a\xff\x88\xd3\x93\x7f\x77\x6c\xfe\xa5" "\xca\xf9\xf7\x1f\x29\xff\x9e\xfc\x01\x00\x00\x00\x00\x60\x86\xe5\xbf" "\xff\x2f\xb5\x7c\xfc\x77\xee\xe8\x9b\x72\x28\x9f\x74\xfc\x77\x79\x4a" "\x7d\x00\x00\x00\x00\x00\x00\x00\x80\xc7\xed\xa8\xe3\xff\x3d\x60\xfc" "\x3f\x00\x00\x00\x98\x59\xf5\x67\xf5\xda\x6f\x9e\xda\x5b\x36\xe9\xbb" "\xd8\xea\xe5\x57\x3b\x11\x4f\x8e\xac\x0f\x14\x26\x5d\x2c\xb3\xd8\x76" "\x3f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x24\xfd\xdd\x73\x78" "\xaf\x76\x22\x06\x11\xf1\xe4\xe2\x62\x55\x55\xf5\x4f\xd3\x68\xfd\xa8" "\x8e\x7a\xfb\x93\xae\xf4\xed\x87\x92\xb5\xfd\x24\x0f\x00\x00\xbb\x3e" "\x7a\x6a\xe4\x5a\xfe\x4e\xc4\x7c\x44\x5c\x4d\xdf\xf5\x37\x58\x5c\x5c" "\xac\xaa\xf9\x85\xc5\x6a\xb1\x5a\x98\xcb\xef\x67\x87\x73\xf3\xd5\x42" "\xe3\x73\x6d\x9e\xd6\xcb\xe6\x86\x87\x78\x43\xdc\x1f\x56\xf5\x2f\x9b" "\x6f\xdc\xae\xe9\xa0\xcf\xcb\x07\xb5\x8f\xfe\xbe\xfa\xbe\x86\x55\xef" "\x10\x1d\x7b\x4c\x06\xe9\x7f\x73\x42\x73\x4b\x61\x03\x40\xb2\xfb\x6a" "\xb4\xe5\x15\xe9\x94\xa9\xaa\xa7\x27\xbd\xf9\x80\x7d\x3c\xfe\x4f\xa1" "\xa5\x58\x6a\x7b\xbf\x62\xf6\xb5\xbd\x9b\x02\x00\x00\x00\xc7\xaf\xaa" "\xaa\xaa\x93\xbe\xce\xfb\x4c\x3a\xe6\xdf\x6d\xbb\x53\x00\xc0\x54\xe4" "\xd7\xff\xd1\xe3\x02\x47\xaa\xbb\x13\xda\x23\x1e\xcf\xef\x57\xab\xd5" "\x6a\xb5\x5a\xfd\xa9\xea\xa6\x6a\xbc\x7b\xcd\x22\x22\x36\x9a\xb7\xa9" "\xdf\x33\x18\x8e\x1f\x00\x4e\x98\x8d\xf8\xb8\xed\x2e\xd0\x22\xf9\x17" "\xad\x1f\x11\xcf\xb5\xdd\x09\x60\xa6\x75\xda\xee\x00\xc7\x62\x6b\x7b" "\x7d\xb5\x93\xf2\xed\x34\x5f\x0f\xd2\xf8\xee\xf9\x5c\x90\x7d\xf9\x6f" "\x74\x76\x6e\x97\x6f\x3f\x6e\x7a\x90\xd1\x73\x4c\xa6\xb5\x7f\x6d\x46" "\x2f\x9e\x99\xd0\x9f\x67\xa7\xd4\x87\x59\x92\xf3\xef\x8e\xe6\x7f\x6d" "\xb7\x7d\x98\xd6\x3b\xee\xfc\xa7\x65\x52\xfe\xc3\x9d\x4b\xe6\xca\x93" "\xf3\xef\x8d\xe6\x3f\xe2\xf4\xe4\xdf\x1d\x9b\x7f\xa9\x72\xfe\xfd\x47" "\xca\xbf\x27\x7f\x00\x00\x00\x00\x00\x98\x61\xf9\xef\xff\x4b\x8e\xff" "\xe6\x4d\x06\x00\x00\x00\x00\x00\x00\x80\x13\x67\x6b\x7b\x7d\x35\x5f" "\xf7\x9a\x8f\xff\x7f\x6e\xcc\x7a\xae\xff\x3c\x9d\x72\xfe\x9d\x47\xcd" "\x7f\x21\xcd\xcb\xff\x44\xcb\xf9\x77\x47\xf2\xff\xf2\xc8\x7a\xbd\xc6" "\xfc\xfd\x37\xf7\x1e\xff\xff\xde\x5e\x5f\xfd\xfd\x9d\x7f\x7d\x36\x4f" "\x0f\x9b\xff\x5c\x9e\xe9\xa4\x3d\xab\x93\xf6\x88\x4e\xba\xa7\x4e\x3f" "\x4d\x8f\xb2\x75\x0f\xdb\x1c\xf4\x86\xf5\x3d\x0d\x3a\xdd\x5e\x3f\x9d" "\xf3\x53\x0d\xde\x89\x1b\x71\x33\xd6\xe2\xc2\xbe\x75\xbb\xe9\xff\x63" "\xaf\x7d\x65\x5f\x7b\xdd\xd3\xc1\xbe\xf6\x8b\xfb\xda\xfb\x0f\xb5\x5f" "\xda\xd7\x3e\x48\xdf\x3b\x50\x2d\xe4\xf6\x73\xb1\x1a\x3f\x89\x9b\xf1" "\xf6\x4e\x7b\xdd\x36\x77\xc0\xf6\xcf\x1f\xd0\x5e\x1d\xd0\x9e\xf3\xef" "\x79\xfe\x2f\x52\xce\xbf\xdf\xf8\xa9\xf3\x5f\x4c\xed\x9d\x91\x69\xed" "\xfe\x87\xdd\x87\x1e\xf7\xcd\xe9\xb8\xfb\x79\xe3\xc6\xe7\x7f\x79\xe1" "\xf8\x37\xe7\x40\x9b\x31\x3f\x76\x79\xbd\x7d\x67\xa7\xde\x9b\xd8\x7d" "\xc6\x79\x62\x18\x3f\xbb\xbd\x76\xeb\xdc\xdd\xeb\x77\xee\xdc\x5a\x89" "\x34\xd9\xb7\xf4\x62\xa4\xc9\x63\x96\xf3\x1f\xec\xfc\xcc\xed\x3d\xff" "\xbf\xb0\xdb\x9e\x9f\xf7\x9b\x8f\xd7\xfb\x1f\x0e\x1f\x39\xff\x59\xb1" "\x19\xfd\x07\xfb\x76\x53\x9d\xff\x0b\x8d\xf9\x7a\x7b\x5f\x9a\x72\xdf" "\xda\x90\xf3\x1f\xa6\x9f\x9c\xff\xdb\xa9\x7d\xfc\xe3\xff\x24\xe7\xdf" "\x9b\x98\xff\xcb\x2d\xf4\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x3e\x49\x55\x55\x3b\x97\x88\xbe\x11\x11\x97\xd3\xf5\x3f\x6d" "\x5d\x9b\x09\x00\x4c\x57\x7e\xfd\xaf\x92\xbc\x5c\xad\x56\xab\xd5\x6a" "\xf5\xe9\xab\x9b\xaa\xf1\x5e\x6f\x16\x11\xf1\xd7\xe6\x6d\xea\xf7\x0c" "\xbf\x18\xf7\xcb\x00\x80\x59\xf6\xbf\x88\xf8\x47\xdb\x9d\xa0\x35\xf2" "\x2f\x58\xfe\xbe\xbf\x7a\xfa\x62\xdb\x9d\x01\xa6\xea\xf6\xfb\x1f\xfc" "\xe8\xfa\xcd\x9b\x6b\xb7\x6e\xb7\xdd\x13\x00\x00\x00\x00\x00\x00\x00" "\xe0\xd3\xca\xe3\x7f\x2e\x37\xc6\x7f\x7e\x31\x22\x96\x46\xd6\xdb\x37" "\xfe\xeb\x9b\xb1\x7c\xd4\xf1\x3f\xfb\x79\xe6\xc1\x00\xa3\x8f\x79\xa0" "\xef\x09\x36\xbb\xc3\x5e\xb7\x31\xdc\xf8\xf3\xb1\x33\x3e\xf7\xb9\x49" "\xe3\x7f\x9f\x8d\x87\xc7\xff\xce\x63\xe2\xf6\x9a\xdb\x31\xc1\xe0\x80" "\xf6\xe1\x01\xed\x73\x07\xb4\x8f\x1f\xcd\x78\x2f\xad\xb1\x17\x7a\x34" "\xe4\xfc\x9f\x6f\x8c\x77\x5e\xe7\x7f\x66\x64\xf8\xf5\x12\xc6\x7f\x1d" "\x1d\xf3\xbe\x04\x39\xff\xb3\x8d\xfd\xb9\xce\xff\x4b\x23\xeb\x35\xf3" "\xaf\x7e\x3b\x73\xf9\x6f\x1c\x76\xc5\xcd\xe8\xee\xcb\xff\xfc\x9d\xf7" "\x7e\x7a\xfe\xf6\xfb\x1f\xbc\x72\xe3\xbd\xeb\xef\xae\xbd\xbb\xf6\xe3" "\x4b\x2b\x2b\x17\x2e\x5d\xbe\x7c\xe5\xca\x95\xf3\xef\xdc\xb8\xb9\x76" "\x61\xf7\xdf\xe3\xe9\xf5\x0c\xc8\xf9\xe7\xb1\xaf\x9d\x07\x5a\x96\x9c" "\x7f\xce\x5c\xfe\x65\xc9\xf9\x7f\x21\xd5\xf2\x2f\x4b\xce\xff\x8b\xa9" "\x96\x7f\x59\x72\xfe\xf9\xfd\x9e\xfc\xcb\x92\xf3\xcf\x9f\x7d\xe4\x5f" "\x96\x9c\xff\x4b\xa9\x96\x7f\x59\x72\xfe\x5f\x49\xb5\xfc\xcb\xb2\xb5" "\xbd\x3e\x57\xe7\xff\x72\xaa\xe5\x5f\x96\xfc\xf8\xff\x6a\xaa\xe5\x5f" "\x96\x9c\xff\x2b\xa9\x96\x7f\x59\x72\xfe\xe7\x52\x2d\xff\xb2\xe4\xfc" "\xcf\xa7\xfa\x10\xf9\xfb\x7a\xf8\x53\x24\xe7\x9f\x8f\x70\x79\xfc\x97" "\x25\xe7\xbf\x92\x6a\xf9\x97\x25\xe7\x7f\x31\xd5\xf2\x2f\x4b\xce\xff" "\x52\xaa\xe5\x5f\x96\x9c\xff\xab\xa9\x96\x7f\x59\x72\xfe\x5f\x4b\xb5" "\xfc\xcb\x92\xf3\xbf\x9c\x6a\xf9\x97\x25\xe7\xff\xf5\x54\xcb\xbf\x2c" "\x39\xff\x2b\xa9\x96\x7f\x59\x72\xfe\xdf\x48\xb5\xfc\xcb\x92\xf3\xff" "\x66\xaa\xe5\x5f\x96\x9c\xff\x6b\xa9\x96\x7f\x59\x72\xfe\xdf\x4a\xb5" "\xfc\xcb\x92\xf3\xff\x76\xaa\xe5\x5f\x96\x9c\xff\x77\x52\x2d\xff\xb2" "\xe4\xfc\x5f\x4f\xb5\xfc\xcb\xb2\xf7\xfd\xff\x66\xcc\x98\x31\x93\x67" "\xda\x7e\x66\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x46\x4d\xe3" "\x74\xe2\xb6\xb7\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xf8\x3f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01" "\x00\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6\xf7\x03\x3f" "\xb3\xde\xb5\x77\x1d\x42\x0c\x84\xe0\xe4\x6f\x60\x93\x98\x10\x92\x25" "\xbb\xb6\x13\xbf\xf0\x6f\x1a\x13\x5e\x1b\xa0\x14\x48\x28\xf4\x05\xc7" "\xf5\xae\xcd\x82\xdf\xf0\xda\x25\x50\x24\x9b\x06\x4a\x24\x8c\x8a\x2a" "\xaa\xa6\x17\x6d\x01\xa1\x36\x52\x55\x11\x55\x5c\xd0\x8a\xd2\x5c\x54" "\x7d\xb9\x2a\xed\x05\xbd\xa9\xa8\x2a\x21\x35\xaa\x02\x0a\xa8\x48\x7d" "\xa1\x6c\x35\x73\x9e\xe7\xd9\x99\xd9\xd9\x39\xbb\xde\xf1\x7a\xf6\x3c" "\x9f\x8f\x64\xff\x76\x67\xce\xcc\x39\x73\xe6\xcc\xec\x7e\xd7\xfe\xee" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xa0\xdd\xad\x6f\x98\xfb\x4c\xa3\x28\x8a\xe6\x9f\xd6\x5f\x3b\x8a" "\xe2\x05\xcd\x8f\x27\x26\x77\xb4\x2e\x7b\xdd\xb5\xde\x42\x00\x00\x00" "\x60\xbd\xfe\xb7\xf5\xf7\xf3\x37\xa4\x0b\x0e\xaf\xe2\x46\x6d\xcb\xfc" "\xcd\x2b\xfe\xfe\x6b\x8b\x8b\x8b\x8b\xc5\xfb\xb6\xfc\xf6\xd8\x17\x16" "\x17\xd3\x15\x93\x45\x31\xb6\xad\x28\x5a\xd7\x45\x4f\xff\xeb\xfb\x1b" "\xed\xcb\x04\x8f\x17\xe3\x8d\x91\xb6\xcf\x47\x2a\x56\xbf\xa5\xe2\xfa" "\xd1\x8a\xeb\xc7\x2a\xae\xdf\x5a\x71\xfd\xb6\x8a\xeb\xc7\x2b\xae\x5f" "\xb6\x03\x96\x99\x28\x7f\x1e\xd3\xba\xb3\xdd\xad\x0f\x77\x94\xbb\xb4" "\xb8\xb1\x18\x6b\x5d\xb7\xbb\xc7\xad\x1e\x6f\x6c\x1b\x19\x89\x3f\xcb" "\x69\x69\xb4\x6e\xb3\x38\x76\xbc\x98\x2f\x4e\x16\x73\xc5\x4c\xc7\xf2" "\xe5\xb2\x8d\xd6\xf2\xdf\xb8\xb5\xb9\xae\xb7\x16\x71\x5d\x23\x6d\xeb" "\xda\xd5\x3c\x42\x7e\xf0\x89\x63\x71\x1b\x1a\x61\x1f\xef\xee\x58\xd7" "\xd2\x7d\x46\xdf\x7b\x7d\x31\xf9\xc3\x1f\x7c\xe2\xd8\x1f\x9e\x7f\xee" "\xe6\x5e\xb3\x72\x37\x74\xdc\x5f\xb9\x9d\x77\xde\xd6\xdc\xce\x4f\x85" "\x4b\xca\x6d\x6d\x14\xdb\xd2\x3e\x89\xdb\x39\xd2\xb6\x9d\xbb\x7a\x3c" "\x27\x5b\x3a\xb6\xb3\xd1\xba\x5d\xf3\xe3\xee\xed\x7c\x7e\x95\xdb\xb9" "\x65\x69\x33\x37\x54\xf7\x73\x3e\x5e\x8c\xb4\x3e\xfe\x56\x6b\x3f\x8d" "\xb6\xff\x58\x2f\xed\xa7\x5d\xe1\xb2\xff\xbc\xbd\x28\x8a\x4b\x4b\x9b" "\xdd\xbd\xcc\xb2\x75\x15\x23\xc5\xf6\x8e\x4b\x46\x96\x9e\x9f\xf1\xf2" "\x88\x6c\xde\x47\xf3\x50\x7a\x71\x31\xba\xa6\xe3\xf4\xd6\x55\x1c\xa7" "\xcd\x39\xbb\xbb\xf3\x38\xed\x7e\x4d\xc4\xe7\xff\xd6\x70\xbb\xd1\x15" "\xb6\xa1\xfd\x69\xfa\xde\x27\xb7\x2e\x7b\xde\xd7\x7a\x9c\x46\xcd\x47" "\xbd\xd2\x6b\xa5\xfb\x18\x1c\xf4\x6b\x65\x58\x8e\xc1\x78\x5c\x7c\xab" "\xf5\xa0\x9f\xe8\x79\x0c\xee\x0e\x8f\xff\x13\x77\xac\x7c\x0c\xf6\x3c" "\x76\x7a\x1c\x83\xe9\x71\xb7\x1d\x83\xb7\x55\x1d\x83\x23\x5b\xb7\xb4" "\xb6\x39\x3d\x09\x8d\xd6\x6d\x96\x8e\xc1\x3d\x1d\xcb\x6f\x69\xad\xa9" "\xd1\x9a\xcf\xde\xd1\xff\x18\x9c\x3e\x7f\xea\xec\xf4\xc2\xc7\x3e\xfe" "\xda\xf9\x53\x47\x4f\xcc\x9d\x98\x3b\xbd\x6f\xcf\x9e\x99\x7d\xfb\xf7" "\x1f\x3c\x78\x70\xfa\xf8\xfc\xc9\xb9\x99\xf2\xef\x2b\xdc\xdb\xc3\x6f" "\x7b\x31\x92\x5e\x03\xb7\x85\x7d\x17\x5f\x03\xaf\xee\x5a\xb6\xfd\x50" "\x5d\xfc\xd2\xe0\x5e\x87\xe3\x7d\x5e\x87\x3b\xba\x96\x1d\xf4\xeb\x70" "\xb4\xfb\xc1\x35\x36\xe6\x05\xb9\xfc\x98\x2e\x5f\x1b\x0f\x37\x77\xfa" "\xf8\xe5\x91\x62\x85\xd7\x58\xeb\xf9\xb9\x6b\xfd\xaf\xc3\xf4\xb8\xdb" "\x5e\x87\xa3\x6d\xaf\xc3\x9e\x5f\x53\x7a\xbc\x0e\x47\x57\xf1\x3a\x6c" "\x2e\x73\xf6\xae\xd5\x7d\xcf\x32\xda\xf6\xa7\xd7\x36\x5c\xad\xaf\x05" "\x3b\xda\x8e\xc1\xee\xef\x47\xba\x8f\xc1\x41\x7f\x3f\x32\x2c\xc7\xe0" "\x78\x38\x2e\xfe\xf9\xae\x95\xbf\x16\xec\x0a\xdb\xfb\xc4\xd4\x5a\xbf" "\x1f\xd9\xb2\xec\x18\x4c\x0f\x37\xbc\xf7\x34\x2f\x49\xdf\xef\x8f\x1f" "\x6c\x8d\x5e\xc7\xe5\x2d\xcd\x2b\xae\xdb\x5a\x5c\x58\x98\x3b\x77\xcf" "\x63\x47\xcf\x9f\x3f\xb7\xa7\x08\x63\x43\xbc\xa4\xed\x58\xe9\x3e\x5e" "\xb7\xb7\x3d\xa6\x62\xd9\xf1\x3a\xb2\xe6\xe3\xf5\xf0\xfc\x2b\x9e\xb8" "\xa5\xc7\xe5\x3b\xc2\xbe\x1a\x7f\x6d\xf3\xaf\xf1\x15\x9f\xab\xe6\x32" "\xf7\xde\xd3\xff\xb9\x6a\x7d\x75\xeb\xbd\x3f\x3b\x2e\xdd\x5b\x84\x31" "\x60\x1b\xbd\x3f\x7b\x7d\x35\x6f\xee\xcf\x94\x25\xfb\xec\xcf\xe6\x32" "\x9f\x9a\x5e\xff\xf7\xe2\x29\x97\xb6\xbd\xff\x8e\xad\xf0\xfe\x1b\x73" "\xff\x4f\xca\xf5\xa5\xbb\x7a\x7c\xcb\xd8\x68\xf9\xfa\xdd\x92\xf6\xce" "\x58\xc7\xfb\x71\xe7\x53\x35\xda\x7a\xef\x6a\xb4\xd6\xfd\xfc\xf4\xea" "\xde\x8f\xc7\xc2\x9f\x8d\x7e\x3f\xbe\xb1\xcf\xfb\xf1\xce\xae\x65\x07" "\xfd\x7e\x3c\xd6\xfd\xe0\xe2\xfb\x71\xa3\xea\xa7\x1d\xeb\xd3\xfd\x7c" "\x8e\x87\xe3\xe4\xe4\x4c\xff\xf7\xe3\xe6\x32\x3b\xf7\xae\xf5\x98\x1c" "\xed\xfb\x7e\x7c\x7b\x98\x8d\xb0\xff\x5f\x13\x92\x42\xca\x45\x6d\xc7" "\xce\x4a\xc7\x6d\x5a\xd7\xe8\xe8\x58\x78\x5c\xa3\x71\x0d\x9d\xc7\xe9" "\xbe\x8e\xe5\xc7\x42\x36\x6b\xae\xeb\xa9\xbd\x57\x76\x9c\xde\x79\x7b" "\x79\x5f\x5b\xd2\xa3\x5b\xb2\x51\xc7\xe9\x64\xd7\xb2\x83\x3e\x4e\xd3" "\xfb\xd5\x4a\xc7\x69\xa3\xea\xa7\x6f\x57\xa6\xfb\xf9\x1c\x0f\xc7\xc5" "\x8d\xfb\xfa\x1f\xa7\xcd\x65\x9e\xb9\x77\xfd\xef\x9d\x13\xf1\xc3\xb6" "\xf7\xce\xad\x55\xc7\xe0\xd8\x96\xad\xcd\x6d\x1e\x4b\x07\x61\xf9\x7e" "\xbf\x38\x11\x8f\xc1\x7b\x8a\x63\xc5\x99\xe2\x64\x31\xdb\xba\x76\x6b" "\xeb\x78\x6a\xb4\xd6\x35\x75\xdf\xea\x8e\xc1\xad\xe1\xcf\x46\xbf\x57" "\xee\xec\x73\x0c\xde\xd9\xb5\xec\xa0\x8f\xc1\xf4\x75\x6c\xa5\x63\xaf" "\x31\xba\xfc\xc1\x0f\x40\xf7\xf3\x39\x1e\x8e\x8b\x27\xef\xeb\x7f\x0c" "\x36\x97\x79\xe3\x81\xc1\x7e\xef\x7a\x67\xb8\x24\x2d\xd3\xf6\xbd\x6b" "\xf7\xcf\xd7\x56\xfa\x99\xd7\x2d\x5d\xbb\xe9\x6a\xfe\xcc\xab\xb9\x9d" "\x7f\x75\xa0\xff\xcf\x66\x9b\xcb\x9c\x3c\xb8\xd6\x9c\xd9\x7f\x3f\xdd" "\x1d\x2e\xb9\xae\xc7\x7e\xea\x7e\xfd\xae\xf4\x9a\x9a\x2d\x36\x66\x3f" "\xed\x0c\xdb\xf9\xdc\xc1\x95\xf7\x53\x73\x7b\x9a\xcb\x7c\xe1\xd0\x2a" "\x8f\xa7\xc3\x45\x51\x5c\xfc\xc8\x83\xad\x9f\xf7\x86\x7f\x5f\xf9\xd3" "\x0b\xdf\xfe\x5a\xc7\xbf\xbb\xf4\xfa\x37\x9d\x8b\x1f\x79\xf0\xfb\xd7" "\x1f\xff\xeb\xb5\x6c\x3f\x00\x9b\xdf\x4f\xca\xb1\xbd\xfc\x5a\xd7\xf6" "\x2f\x53\xab\xf9\xf7\x7f\x00\x00\x00\x60\x53\x88\xb9\x7f\x24\xcc\x44" "\xfe\x07\x00\x00\x80\xda\x88\xb9\x3f\xfe\xaf\xf0\x44\xfe\x07\x00\x00" "\x80\xda\x88\xb9\x7f\x34\xcc\x24\x93\xfc\xbf\xf3\x8d\xcf\xcd\xff\xe4" "\x62\x91\x9a\xf9\x8b\x41\xbc\x3e\xed\x86\x87\xca\xe5\x62\xc7\x75\x26" "\x7c\x3e\xb9\xb8\xa4\x79\xf9\x83\x5f\x99\xfb\xd1\x9f\x5f\x5c\xdd\xba" "\x47\x8a\xa2\xf8\xf1\x43\xbf\xd6\x73\xf9\x9d\x0f\xc5\xed\x2a\x4d\x86" "\xed\x7c\xfa\x4d\x9d\x97\x2f\xbf\xe1\xc5\x55\xad\xff\xd1\x47\x96\x96" "\x6b\xef\xaf\x7f\x31\xdc\x7f\x7c\x3c\xab\x3d\x0c\x7a\x55\x70\x67\x8a" "\xa2\xf8\xc6\x0d\x9f\x6b\xad\x67\xf2\xfd\x97\x5b\xf3\x99\x87\x1e\x6d" "\xcd\x77\x5f\x7a\xe2\xf1\xe6\x32\xcf\x1f\x2a\x3f\x8f\xb7\x7f\xf6\x25" "\xe5\xf2\xbf\x17\xca\xbf\x87\x8f\x1f\xed\xb8\xfd\xb3\x61\x3f\x7c\x37" "\xcc\x99\xb7\xf5\xde\x1f\xf1\x76\x5f\xbd\xfc\x9a\x5d\x07\xde\xbb\xb4" "\xbe\x78\xbb\xc6\x6d\x2f\x6c\x3d\xec\x27\x3f\x50\xde\x6f\xfc\x3d\x39" "\x9f\x7f\xbc\x5c\x3e\xee\xe7\x95\xb6\xff\x2f\x3e\xfb\xd4\x57\x9b\xcb" "\x3f\xf6\xaa\xde\xdb\x7f\x71\xa4\xf7\xf6\x3f\x15\xee\xf7\x2b\x61\xfe" "\xd7\xcb\xcb\xe5\xdb\x9f\x83\xe6\xe7\xf1\x76\x9f\x0e\xdb\x1f\xd7\x17" "\x6f\x77\xcf\x97\xbf\xd9\x73\xfb\x9f\xfe\x4c\xb9\xfc\xd9\x37\x97\xcb" "\x3d\x1a\x66\x5c\xff\x9d\xe1\xf3\xdd\x6f\x7e\x6e\xbe\x7d\x7f\x3d\xd6" "\x38\xda\xf1\xb8\x8a\xb7\x94\xcb\xc5\xf5\xcf\x7c\xfb\x37\x5b\xd7\xc7" "\xfb\x8b\xf7\xdf\xbd\xfd\xe3\x47\x2e\x77\xec\x8f\xee\xe3\xe3\x99\x7f" "\x2c\xef\x67\xba\x6b\xf9\x78\x79\x5c\x4f\xf4\x67\x5d\xeb\x6f\xde\x4f" "\xfb\xf1\x19\xd7\xff\xd4\x6f\x3c\xda\xb1\x9f\xab\xd6\xff\xf4\xbb\x9f" "\x7d\x79\xf3\x7e\xbb\xd7\x7f\x77\xd7\x72\x5b\xba\x6e\xdf\xfd\x1b\x9b" "\x7e\xff\xd3\x9f\xeb\xb9\xbe\xb8\x3d\x87\xff\xe4\x6c\xc7\xe3\x39\xfc" "\xae\xf0\x3a\x0e\xeb\x7f\xf2\x03\xe1\x78\x0c\xd7\xff\xf7\xd3\x9f\xeb" "\x58\x6f\xf4\xe8\xbb\x3a\xdf\x7f\xe2\xf2\x5f\xdc\x71\xb1\xe3\xf1\x44" "\x6f\xfd\x61\xb9\xfe\xa7\x1f\x38\xd1\x9a\xff\x36\xf9\xa3\xdf\xbd\xee" "\x05\xd7\xbf\xf0\xd2\x2b\x9b\xfb\xae\x28\xbe\xf5\x9e\xf2\xfe\xaa\xd6" "\x7f\xe2\x0f\xce\x74\x6c\xff\x97\x6e\xba\xab\xf5\x7c\xc4\xeb\x63\x47" "\xbf\x7b\xfd\x2b\x89\xeb\x3f\xf7\xd1\xa9\xd3\x67\x16\x2e\xcc\xcf\xb6" "\xed\xd5\xd6\xef\xce\x79\x7b\xb9\x3d\xdb\xc6\x27\xb6\x37\xb7\xf7\x86" "\xf0\xde\xda\xfd\xf9\x91\x33\xe7\x3f\x38\x77\x6e\x72\x66\x72\xa6\x28" "\x26\xeb\xfb\x2b\xf4\xae\xd8\x97\xc3\xfc\x7e\x39\x2e\xad\xf5\xf6\x77" "\x3d\x12\x9e\xcf\x5b\x7e\xe7\x1b\xdb\xef\xf8\x87\xcf\xc6\xcb\xff\xe9" "\xe1\xf2\xf2\xcb\x6f\x2b\xbf\x6e\xbd\x3a\x2c\xf7\xf9\x70\xf9\x8e\xf2" "\xf9\x5b\x6c\xac\x73\xfd\x4f\xde\x7a\x53\xeb\xf5\xdd\x78\xa6\xfc\xbc" "\xa3\xc7\x3e\x00\xbb\x76\xff\xfb\xc1\x55\x2d\x18\x1e\x7f\xf7\xf7\x05" "\xf1\x78\x3f\xfb\xd2\x0f\xb6\xf6\x43\xf3\xba\xd6\xd7\x8d\xf8\xba\x5e" "\xe7\xf6\x7f\x67\xb6\xbc\x9f\xaf\x87\xfd\xba\x18\x7e\x33\xf3\x6d\x37" "\x2d\xad\xaf\x7d\xf9\xf8\xbb\x11\x2e\xbf\xa7\x7c\xbd\xaf\x7b\xff\x85" "\xb7\xb9\xf8\xbc\xfe\x51\x78\xbe\xdf\xf1\xdd\xf2\xfe\xe3\x76\xc5\xc7" "\xfb\x9d\xf0\x7d\xcc\x37\x77\x76\xbe\xdf\xc5\xe3\xe3\xeb\x17\x47\xba" "\xef\xbf\xf5\x5b\x3c\x2e\x85\xf7\x93\xe2\x52\x79\x7d\x5c\x2a\xee\xef" "\xcb\xcf\xdf\xd4\x73\xf3\xe2\xef\x21\x29\x2e\xdd\xdc\xfa\xfc\xb7\xd2" "\xfd\xdc\xbc\xa6\x87\xb9\x92\x85\x8f\x2d\x4c\x9f\x9c\x3f\x7d\xe1\xb1" "\xe9\xf3\x73\x0b\xe7\xa7\x17\x3e\xf6\xf1\x23\xa7\xce\x5c\x38\x7d\xfe" "\x48\xeb\x77\x79\x1e\xf9\x50\xd5\xed\x97\xde\x9f\xb6\xb7\xde\x9f\x66" "\xe7\xf6\xdf\x5b\xcc\x4c\x14\x45\x71\xa6\x98\xd9\x80\x37\xac\xab\xb3" "\xfd\xcd\x8f\x56\xb7\xfd\x67\x1f\x39\x36\x7b\x60\xe6\x8e\xd9\xb9\xe3" "\x47\x2f\x1c\x3f\xff\xc8\xd9\xb9\x73\x27\x8e\x2d\x2c\x1c\x9b\x9b\x5d" "\xb8\xe3\xe8\xf1\xe3\x73\x1f\xad\xba\xfd\xfc\xec\xfd\x7b\xf6\x1e\xda" "\x77\x60\xef\xd4\x89\xf9\xd9\xfb\x0f\x1e\x3a\xb4\xef\xd0\xd4\xfc\xe9" "\x33\xcd\xcd\x28\x37\xaa\xc2\xfe\x99\x0f\x4f\x9d\x3e\x77\xa4\x75\x93" "\x85\xfb\xef\x3d\xb4\xe7\xbe\xfb\xee\x9d\x99\x3a\x75\x66\x76\xee\xfe" "\x03\x33\x33\x53\x17\xaa\x6e\xdf\xfa\xda\x34\xd5\xbc\xf5\xaf\x4e\x9d" "\x9b\x3b\x79\xf4\xfc\xfc\xa9\xb9\xa9\x85\xf9\x8f\xcf\xdd\xbf\xe7\xd0" "\xfe\xfd\x7b\x2b\x7f\x1b\xe0\xa9\xb3\xc7\x17\x26\xa7\xcf\x5d\x38\x3d" "\x7d\x61\x61\xee\xdc\x74\xf9\x58\x26\xcf\xb7\x2e\x6e\x7e\xed\xab\xba" "\x3d\xf5\xb4\xf0\x2f\xe5\xf7\xb3\xdd\x1a\xe5\x2f\xe2\x2b\xde\x79\xf7" "\xfe\xf4\xfb\x59\x9b\xbe\xf2\xc9\x15\xef\xaa\x5c\xa4\xeb\x17\x88\x3e" "\x17\x7e\x17\xcd\xdf\xbd\xe8\xec\xc1\xd5\x7c\x1e\x73\xff\x58\x98\x49" "\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\xd6\x30\x13\xf9\x1f\x00\x00" "\x00\x6a\x23\xe6\xfe\x6d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd" "\xe3\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\xd5\xf5\xff\xcb\xeb\xf5\xff" "\xf3\xea\xff\x9f\xfd\x48\xd9\x2b\xdd\xec\xfd\xff\xd8\x9f\xd7\xff\xcf" "\xc3\x35\xee\xff\xaf\x7b\xfd\xfa\xff\xfa\xff\xf5\xeb\xff\xaf\xbe\x3f" "\xbf\xd9\xb7\x5f\xff\x5f\xff\x9f\xe5\x86\xad\xff\x1f\x73\xff\x44\x51" "\x64\x99\xff\x01\x00\x00\x20\x07\x31\xf7\x6f\x0f\x33\x91\xff\x01\x00" "\x00\xa0\x36\x62\xee\xbf\x2e\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\xff\x05\x61\x26\x99\xe4\x7f\xfd\xff\x55\xf5\xff\xf7\x56\x15\xae\xea" "\xdf\xff\x77\xfe\x7f\xfd\xff\x62\x73\xf6\xff\xe3\x93\xa3\xff\x9f\x8d" "\x35\xf7\xef\xdf\xfb\x70\xc7\xa7\xfa\xff\xc1\x2a\xfa\xff\x13\x85\xfe" "\xbf\xfe\x7f\x27\xfd\x7f\xfd\x7f\xfd\x7f\x3a\x8d\xad\x78\xcd\xb5\xea" "\xff\xc7\xdc\x7f\x7d\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff" "\x0b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x6f\x08\x33\x91\xff" "\x01\x00\x00\xa0\x36\x62\xee\xdf\x11\x66\x92\x49\xfe\xd7\xff\x77\xfe" "\x7f\xfd\xff\xab\xd9\xff\x6f\x34\x0a\xfd\xff\xa5\xe3\x72\x33\x9e\xff" "\xbf\x6d\x63\xf4\xff\x37\x07\xe7\xff\xef\xcf\xf9\xff\x2b\x5c\x71\xff" "\x7f\x5c\xff\x7f\x33\xf6\xff\xc7\x06\xbb\xfd\xc3\xdd\xff\xaf\xdc\x7c" "\xfd\x7f\xae\x8a\x61\x3b\xff\x7f\xcc\xfd\x2f\x0a\x33\xc9\x24\xff\x03" "\x00\x00\x40\x0e\x62\xee\x7f\x71\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11" "\x73\xff\x4b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x6f\x0c\x33" "\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\x3b\xff\xbf\xfe\x7f\xef\xf5\x57" "\x9f\xff\xbf\xfc\x48\xff\x7f\xb8\xe8\xff\xf7\xa7\xff\x5f\xc1\xf9\xff" "\xf3\xea\xff\x0f\x78\xfb\x87\xbb\xff\x3f\xe8\xf3\xff\x8f\xbd\xa9\xfb" "\xf6\xfa\xff\xf4\x32\x6c\xfd\xff\x98\xfb\x5f\x1a\x66\x92\x49\xfe\x07" "\x00\x00\x80\x1c\xc4\xdc\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11" "\x73\xff\xcb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x77\x86\x99" "\x64\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x7b\xaf\xbf\xba" "\xff\x5f\xd2\xff\x1f\x2e\xfa\xff\xfd\xe9\xff\x57\xa8\xee\xff\x17\x97" "\xf4\xff\x57\xa4\xff\x9f\x51\xff\xbf\xc7\x37\xbf\xfa\xff\xf4\x32\x6c" "\xfd\xff\x98\xfb\x6f\x0e\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee" "\xbf\x25\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\xff\x85\x99\xc8" "\xff\x00\x00\x00\x50\x1b\x31\xf7\xef\x0a\x33\xc9\x24\xff\xeb\xff\xeb" "\xff\xeb\xff\xe7\xd5\xff\xbf\x7b\xab\xfe\xbf\xfe\x7f\xbd\xe9\xff\xf7" "\xa7\xff\x5f\xc1\xf9\xff\xf5\xff\xf5\xff\x57\x79\xfe\xff\xe5\xd6\xd2" "\xff\xdf\x56\x75\x67\xd4\xc6\xb0\xf5\xff\x63\xee\x7f\x79\x98\x49\x26" "\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x2b\xc2\x4c\xe4\x7f\x00\x00\x00" "\xa8\x8d\x98\xfb\x5f\x19\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f" "\x19\x66\x92\x49\xfe\xd7\xff\xaf\x57\xff\xff\x8f\xff\xf2\xc9\x57\x16" "\xfa\xff\xfa\xff\x15\xeb\x1f\x44\xff\xbf\x11\x2e\x1d\xa2\xfe\x7f\x3c" "\x0c\x86\xbe\xff\xff\x80\xfe\xff\x55\xa5\xff\xdf\x9f\xfe\x7f\x05\xfd" "\x7f\xfd\x7f\xfd\xff\x0d\xe9\xff\x93\x8f\x61\xeb\xff\xc7\xdc\x7f\x6b" "\x98\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x6d\x61\x26\xf2\x3f" "\x00\x00\x00\xd4\x46\xcc\xfd\xb7\x87\x99\xc8\xff\x00\x00\x00\x50\x1b" "\x31\xf7\xef\x0e\x33\xc9\x24\xff\xeb\xff\xd7\xab\xff\x1f\xe9\xff\xeb" "\xff\xf7\x5b\xbf\xf3\xff\x3b\xff\x7f\x9d\xe9\xff\xf7\xd0\xf6\x22\xd5" "\xff\xaf\xa0\xff\xaf\xff\x9f\x7d\xff\x3f\x7e\xf7\xab\xff\xcf\x60\x0c" "\x5b\xff\x3f\xe6\xfe\x57\x85\x99\x64\x92\xff\x01\x00\x00\x20\x07\x31" "\xf7\xdf\x11\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xea\x30\x13" "\xf9\x1f\x00\x00\x00\x6a\x23\xe6\xfe\x3b\xc3\x4c\x32\xc9\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xbd\xd7\xaf\xff\xbf\x39\xe9\xff\xf7" "\xb7\xd6\xfe\xff\x56\xfd\x7f\xfd\x7f\xfd\xff\xcc\xfa\xff\xeb\x3b\xff" "\xff\x44\xf8\x58\xff\x9f\x68\x23\xfa\xff\xff\xb3\x86\xfe\x7f\xcc\xfd" "\xaf\x09\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62\xee\xbf\x2b\xcc\x44" "\xfe\x07\x00\x00\x80\xda\x88\xff\x7f\xb3\xfc\x7f\xaf\xf2\x3f\x00\x00" "\x00\xd4\x51\xcc\xfd\x53\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\xff\x9c\xfa" "\xff\x0d\xfd\x7f\xfd\x7f\xfd\xff\xda\xd3\xff\xef\xcf\xf9\xff\x2b\xe8" "\xff\xeb\xff\xeb\xff\xaf\xab\xff\xef\xfc\xff\x74\xdb\x88\xfe\x7f\xb1" "\x86\xfe\x7f\xcc\xfd\xaf\x0d\x33\xc9\x24\xff\x03\x00\x00\x40\x0e\x62" "\xee\xbf\x27\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x3a\xcc\x44" "\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x26\xcc\x24\x93\xfc\xaf\xff\xaf" "\xff\x9f\x53\xff\xdf\xf9\xff\xf5\xff\xf5\xff\xeb\x4f\xff\xbf\x3f\xfd" "\xff\x0a\xfa\xff\xfa\xff\x75\xeb\xff\x17\x85\xfe\x3f\xd7\xd4\xb0\xf5" "\xff\x63\xee\xdf\x13\x66\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xbf" "\x37\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\x7f\x5f\x98\x89\xfc\x0f" "\x00\x00\x00\xb5\x11\x73\xff\xbd\x61\x26\x99\xe4\x7f\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\xff\xde\xeb\xd7\xff\xdf\x9c\xf4\xff\xfb\xd3\xff" "\xaf\xa0\xff\xaf\xff\x5f\xb7\xfe\xbf\xf3\xff\x73\x8d\x0d\x5b\xff\x3f" "\xe6\xfe\xfb\xc2\x4c\x32\xc9\xff\x00\x00\x00\x90\x83\x98\xfb\xf7\x87" "\x99\xc8\xff\x00\x00\x00\x50\x1b\x31\xf7\x1f\x08\x33\x09\xf9\xbf\xd7" "\xff\xeb\x06\x00\x00\x00\x36\x97\x98\xfb\x0f\x86\x99\x64\xf2\xef\xff" "\xfa\xff\x35\xe9\xff\xff\xfa\xdf\x76\xac\x5b\xff\x5f\xff\xbf\xdf\xfa" "\x07\xd3\xff\x9f\xd0\xff\x0f\x53\xff\x7f\xb8\xd4\xb4\xff\xdf\xfd\xb2" "\xb8\x62\xfa\xff\x15\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb" "\xff\xc7\xdc\x7f\x28\xcc\x24\x93\xfc\x0f\x00\x00\x00\x39\x88\xb9\xff" "\x75\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\xff\x3f\xcc\x44\xfe" "\x07\x00\x00\x80\xda\x88\xb9\xff\xa7\xc2\x4c\x32\xc9\xff\xfa\xff\x35" "\xe9\xff\x77\xd1\xff\xd7\xff\xef\xb7\x7e\xe7\xff\xd7\xff\xaf\xb3\x9a" "\xf6\xff\x07\xa6\x56\xfd\xff\x11\xfd\x7f\xfd\xff\xe1\xda\x7e\xfd\x7f" "\xfd\x7f\x96\xbb\xfa\xfd\xff\xf8\xd1\xea\xfa\xff\x31\xf7\xdf\x1f\x66" "\x92\x49\xfe\x07\x00\x00\x80\x1c\xc4\xdc\xff\xd3\x61\x26\xf2\x3f\x00" "\x00\x00\xd4\x46\xcc\xfd\x0f\x84\x99\xc8\xff\x00\x00\x00\x50\x1b\x31" "\xf7\x1f\x0e\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x5f\x9d" "\xfe\xff\x03\x45\xb7\x61\xec\xff\x37\x0f\x9e\x4d\xdd\xff\x9f\xa8\x5e" "\x6f\x6e\xf4\xff\xfb\xab\x55\xff\xdf\xf9\xff\xf5\xff\x87\x6c\xfb\xf5" "\xff\xf5\xff\x59\x6e\xd8\xce\xff\x1f\x73\xff\xeb\xc3\x4c\x32\xc9\xff" "\x00\x00\x00\x90\x83\x98\xfb\x1f\x0c\x33\x91\xff\x01\x00\x00\xa0\x36" "\x62\xee\x7f\x43\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\x1b\xc3" "\x4c\x32\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xce\xff\xdf\x7b\xfd" "\x9b\xa2\xff\xef\xfc\xff\xcb\xe8\xff\xf7\xa7\xff\x5f\x41\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\x81\x1a\xb6\xfe\x7f\xcc\xfd\x6f\x0a\x33\xc9\x24" "\xff\x03\x00\x00\x40\x0e\x62\xee\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00" "\xb5\x11\x73\xff\x5b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\xdf" "\x1a\x66\x92\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbd" "\x7e\xfd\xff\xcd\x49\xff\xbf\x3f\xfd\xff\x0a\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\x0c\xd4\xb0\xf5\xff\x63\xee\xff\x99\x30\x93\x4c\xf2\x3f\x00" "\x00\x00\xe4\x20\xe6\xfe\x87\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98" "\xfb\xdf\x16\x66\x22\xff\x03\x00\x00\x40\x6d\xc4\xdc\xff\xf6\x30\x93" "\x4c\xf2\xbf\xfe\xff\x26\xee\xff\x8f\xea\xff\xeb\xff\xeb\xff\xeb\xff" "\x57\xaf\x37\x37\xfa\xff\xfd\xe9\xff\x57\xd0\xff\xd7\xff\xd7\xff\xd7" "\xff\x67\xa0\x86\xad\xff\x1f\x73\xff\x3b\xc2\x4c\x32\xc9\xff\x00\x00" "\x00\x90\x83\x98\xfb\x7f\x36\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9" "\xff\x9d\x61\x26\xf2\x3f\x00\x00\x00\xd4\x46\xcc\xfd\x3f\x17\x66\x92" "\x49\xfe\xd7\xff\xdf\xc4\xfd\xff\x5a\x9e\xff\x7f\xf1\x62\xfb\xed\x6a" "\xd6\xff\x6f\x2e\xa6\xff\x7f\xad\xfa\xff\xcd\x1b\xe9\xff\x67\x41\xff" "\xbf\x3f\xfd\xff\x0a\x3d\xfa\xff\xdb\xf4\xff\xf5\xff\xf5\xff\xf5\xff" "\xb9\x62\xc3\xd6\xff\x8f\xb9\xff\x5d\x61\x26\x99\xe4\x7f\x00\x00\x00" "\xc8\x41\xcc\xfd\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x7f" "\x4f\x98\x89\xfc\x0f\x00\x00\x00\xb5\x11\x73\xff\xc3\x61\x26\x99\xe4" "\x7f\xfd\xff\x2c\xfb\xff\xe9\x21\x0f\x5f\xff\xdf\xf9\xff\xf5\xff\x9d" "\xff\x5f\xff\x7f\x7d\xea\xdb\xff\x5f\xf3\x5d\xf5\xa4\xff\x5f\xc1\xf9" "\xff\xf5\xff\xf5\xff\xf5\xff\x19\xa8\x61\xeb\xff\xc7\xdc\xff\x48\x98" "\x49\x26\xf9\x1f\x00\x00\x00\x72\x10\x73\xff\x7b\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8d\x98\xfb\x7f\x3e\xcc\x44\xfe\x07\x00\x00\x80\xda\x88" "\xb9\xff\x7d\x61\x26\x99\xe4\x7f\xfd\xff\x2c\xfb\xff\x43\x7c\xfe\xff" "\xba\xf5\xff\x47\x3b\x8e\x8f\x9c\xfa\xff\xe3\x6d\xcf\x67\x3a\x2e\xf5" "\xff\xf5\xff\x37\x40\x7d\xfb\xff\x83\xa1\xff\x5f\x41\xff\x5f\xff\x7f" "\x98\xfb\xff\xe1\x68\x9e\x58\xe1\xf6\xfa\xff\x0c\xa3\x61\xeb\xff\xc7" "\xdc\xff\xfe\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x5f\x08" "\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\xff\xc5\x30\x13\xf9\x1f\x00" "\x00\x00\x6a\x23\xe6\xfe\x5f\x0a\x33\xc9\x24\xff\xeb\xff\xeb\xff\xeb" "\xff\x3b\xff\xbf\xf3\xff\xf7\x5e\xbf\xfe\xff\xe6\xa4\xff\xdf\x9f\xfe" "\x7f\x05\xfd\x7f\xfd\xff\x61\xee\xff\x57\xd0\xff\x67\x18\x0d\x5b\xff" "\x3f\xe6\xfe\x5f\x0e\x33\x59\x31\xf8\x7d\xff\x3f\x56\xf1\x30\x01\x00" "\x00\x80\x21\x12\x73\xff\x07\xc2\x4c\x32\xf9\xf7\x7f\x00\x00\x00\xc8" "\x41\xcc\xfd\x47\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8d\x98\xfb\x1f\x0d" "\x33\xc9\x24\xff\xeb\xff\x77\xf7\xff\xe3\x19\x55\xf5\xff\xf5\xff\xf5" "\xff\xf5\xff\xf5\xff\x37\xa3\xc1\xf5\xff\x5f\x76\x7d\x51\xe8\xff\xd7" "\xa6\xff\x3f\xbe\xca\x0d\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86" "\xad\xff\x1f\x73\xff\xd1\x30\x93\x4c\xf2\x3f\x00\x00\x00\xe4\x20\xe6" "\xfe\x5f\x09\x33\x91\xff\x01\x00\x00\xa0\x36\x62\xee\x3f\x16\x66\x22" "\xff\x03\x00\x00\x40\x6d\xc4\xdc\x3f\x1b\x66\x92\x49\xfe\xbf\x86\xfd" "\xff\xb1\xe1\xec\xff\x3b\xff\xff\x95\xf6\xff\x7f\xac\xff\xaf\xff\x1f" "\xe8\xff\xf7\xa6\xff\xbf\x31\x6a\x74\xfe\xff\xeb\xc3\x45\xfa\xff\xce" "\xff\x9f\xe8\xff\x0f\xf7\xf6\xeb\xff\xeb\xff\xb3\xdc\xb0\xf5\xff\x63" "\xee\x9f\x0b\x33\xc9\x24\xff\x03\x00\x00\x40\x8d\xa5\x1f\x07\xc7\xdc" "\x7f\x3c\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff\x44\x98\x89\xfc" "\x0f\x00\x00\x00\xb5\x11\x73\xff\x07\xc3\x4c\x32\xc9\xff\xce\xff\xaf" "\xff\xef\xfc\xff\xd7\xa2\xff\x3f\xda\xb1\xbc\xfe\x7f\x49\xff\x5f\xff" "\x7f\x10\x6a\xd4\xff\x6f\x71\xfe\xff\xf2\x72\xfd\xff\x92\xfe\xff\x70" "\x6f\xbf\xfe\xbf\xfe\x3f\xcb\x0d\x5b\xff\x3f\xe6\xfe\xf9\x30\x93\x4c" "\xf2\x3f\x00\x00\x00\xe4\x20\xe6\xfe\x0f\x85\x99\xc8\xff\x00\x00\x00" "\x50\x1b\x31\xf7\x7f\x38\xcc\x44\xfe\x07\x00\x00\x80\xda\x88\xb9\xff" "\x64\x98\x49\x26\xf9\x5f\xff\x5f\xff\x3f\xf7\xfe\x7f\xa3\x28\x2e\x39" "\xff\xbf\xfe\x7f\xaf\xf5\xeb\xff\x6f\x4e\xfa\xff\xfd\xe9\xff\x57\xd0" "\xff\xd7\xff\xd7\xff\xd7\xff\x67\xa0\x86\xad\xff\x1f\x73\xff\xa9\x30" "\x93\x4c\xf2\x3f\x00\x00\xfc\x1f\x7b\xf7\xd1\x5c\xd9\x59\xed\x71\xf8" "\x5c\xdf\x76\x87\x3b\xb9\x7c\x04\x8f\x19\x31\x84\x91\xf9\x08\x4c\x99" "\x51\xc5\x98\x6c\x72\xb0\x9b\x9c\xc1\xe4\x1c\x4c\x36\x39\x67\x30\x39" "\xe7\x9c\x4d\xce\xd1\x44\x43\x95\x28\xab\xd7\x5a\xdd\xd2\x39\xda\x5b" "\xdd\xda\xad\xb3\xf7\xfb\x3e\xcf\x64\xd1\x5d\x12\xe7\xc8\x2d\x1b\xfe" "\x56\xfd\x6a\x03\xf4\x20\x77\xff\x3d\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x5e\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\xef\xb8" "\xa5\x93\xfd\xaf\xff\xd7\xff\xf7\xde\xff\xaf\xb6\xf2\xfc\xff\xbd\x1f" "\xdf\x53\xff\x7f\x46\xff\xaf\xff\xbf\xcc\xd6\xfa\xfb\x13\x9b\x3f\xee" "\xa0\x28\xfc\xc0\xfe\xff\x0e\x77\xbc\xe6\x6e\xfa\x7f\xfd\xbf\xfe\x7f" "\x90\xfe\x5f\xff\xaf\xff\x67\xbf\xb9\xf5\xff\xb9\xfb\xef\x13\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xef\x1b\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\xf7\x8b\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x6b" "\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xef\xe9\xff\x6f\xf2" "\xfc\x7f\xfd\xff\xb2\x79\xfe\xff\x30\xfd\xff\x08\xfd\xbf\xfe\x5f\xff" "\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\xdf\x3f\x6e\xe9\x64\xff\x03\x00" "\x00\x40\x0f\x72\xf7\x3f\x20\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x1f\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x0f\x8a\x5b\x3a\xd9" "\xff\xfa\x7f\xfd\xff\x92\xfa\xff\x7c\x9d\x3e\xfb\xff\x93\x4d\x3c\xff" "\x5f\xff\xaf\xff\xbf\xdc\xf4\xff\xc3\xf4\xff\x23\xf4\xff\xfa\x7f\xfd" "\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xe0\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\x90\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee" "\x7f\x68\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x2c\x6e\xe9\x64" "\xff\xeb\xff\xf5\xff\x4b\xea\xff\x3d\xff\x5f\xff\xbf\xd2\xff\xeb\xff" "\x47\xdc\xb0\x3a\xff\xcf\x04\xfd\xff\x3a\xfd\xff\x88\x91\xfe\x7f\xb5" "\xd2\xff\x0f\x39\x74\x3f\xbf\xf9\xcb\x5b\xce\xfb\x3f\x80\xfe\x5f\xff" "\xcf\xba\xb9\xf5\xff\xb9\xfb\x1f\x1e\xb7\xdc\x79\xb5\x3a\x79\xa9\x5f" "\x24\x00\x00\x00\x30\x2b\xb9\xfb\x1f\x11\xb7\x74\xf2\xf3\x7f\x00\x00" "\x00\xe8\x41\xee\xfe\x6b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff" "\xba\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xcd\xaf" "\xaf\xff\x5f\x26\xcf\xff\x1f\x76\xf4\xfe\xff\xf6\xb7\xbb\xc7\xdd\xfb" "\xed\xff\x9b\x79\xfe\xff\xce\xa6\xff\xe7\xb2\xfd\x7e\xfe\xa8\xb6\xfd" "\xfe\xa7\xef\xff\x6f\xfb\xce\xd0\xff\xb3\x6c\x73\xeb\xff\x73\xf7\x9f" "\x8d\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x8f\x8c\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x47\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\xa3\xe3\x96\x4e\xf6\xbf\xfe\xbf\xb5\xfe\xff\x7f\xf7\x7c\xde" "\x05\xfd\xff\x6e\xed\xa2\xff\xd7\xff\xeb\xff\xf5\xff\xad\xd3\xff\x0f" "\xf3\xfc\xff\x11\xbb\xff\x98\x3b\x53\xbf\x6c\xb6\xff\x3f\xc0\xb6\xfb" "\xf9\xa5\xbf\x7f\xcf\xff\xd7\xff\xb3\x6e\x6e\xfd\x7f\xee\xfe\xc7\xc4" "\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7\xc6\x2d\xf6\x3f\x00" "\x00\x00\x34\x23\x77\xff\xe3\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\xf1\x71\x4b\x27\xfb\x5f\xff\xdf\x5a\xff\xbf\xf7\xf3\x3c\xff\x5f" "\xff\xbf\xe9\xf5\xf5\xff\xfa\xff\x96\xe9\xff\x87\xe9\xff\x47\xb4\xf2" "\xfc\xff\x4b\xfc\xae\xd9\x76\x3f\x7f\x54\xdb\x7e\xff\xfa\x7f\xfd\x3f" "\xeb\xe6\xd6\xff\xe7\xee\x7f\x42\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e" "\xe4\xee\x7f\x62\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x29\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f\x1c\xb7\x74\xb2\xff\xf5\xff" "\xfa\xff\x65\xf4\xff\xf9\x0a\xfa\x7f\xfd\xff\xe5\xef\xff\x93\xfe\x7f" "\x79\xfe\x4f\xff\x3f\x4a\xff\x3f\xa2\x95\xfe\xff\x12\x6d\xbb\x9f\x5f" "\xfa\xfb\xd7\xff\xeb\xff\x59\x37\xb7\xfe\x3f\x77\xff\x53\xe2\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x53\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x69\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf4" "\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\x2f\xa3\xff\xf7\xfc\x7f\xfd\xbf\xe7" "\xff\xeb\xff\x0f\x47\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb" "\xff\x99\xd4\xdc\xfa\xff\xdc\xfd\xd7\xc7\x2d\x9d\xec\x7f\x00\x00\x00" "\xe8\x41\xee\xfe\x67\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x33" "\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x59\x71\x4b\x27\xfb\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\x9b\x5f\x5f\xff\xbf\x4c\xfa\xff" "\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf\xa4\x66\xd4\xff\x5f" "\xf0\x59\xa7\x57\xcf\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd" "\xcf\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xe7\xc6\x2d\xf6\x3f" "\x00\x00\x00\x34\x23\x77\xff\xf3\xe2\x96\x4e\xf6\xbf\xfe\x7f\x36\xfd" "\xff\x6e\xce\xd7\x56\xff\x7f\x66\xb5\x5a\xe9\xff\x57\x9d\xf6\xff\x67" "\x2e\xf8\xf3\xac\xef\x4b\xfd\xbf\xfe\xff\x18\xe8\xff\x87\xe9\xff\x47" "\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x93\x9a\x51\xff\xbf\xfb\xeb\xdc\xfd" "\xcf\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x2f\x88\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x17\xc6\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x8b\xe2\x96\x4e\xf6\xbf\xfe\x7f\x36\xfd\xff\xae\xb6\xfa" "\x7f\xcf\xff\xdf\xff\xfd\xd1\x53\xff\xef\xf9\xff\xeb\xf4\xff\xc7\x43" "\xff\x3f\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa" "\xff\xdc\xfd\x2f\x8e\x9b\x4e\x5e\x79\xc9\x5f\x22\x00\x00\x00\x30\x33" "\xb9\xfb\x5f\x12\xb7\x74\xf2\xf3\x7f\x00\x00\x00\x58\xb8\xd3\x87\xf9" "\xa0\xdc\xfd\x2f\xdd\xff\x29\xf6\x3f\x00\x00\x00\x2c\xd4\xf5\x6b\xbf" "\x93\xbb\xff\x65\x71\x4b\x27\xfb\x5f\xff\x3f\x6d\xff\x7f\xf2\x82\xdf" "\xd3\xff\xeb\xff\xf7\x7f\x7f\xe8\xff\xf5\xff\xfa\xff\xcb\x4f\xff\x3f" "\x4c\xff\x3f\x42\xff\xaf\xff\xd7\xff\xeb\xff\x99\xd4\xdc\xfa\xff\xdc" "\xfd\x2f\x8f\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x37\xc4\x2d" "\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x2b\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x95\x71\x4b\x27\xfb\x5f\xff\xef\xf9\xff\xfa\x7f\xfd" "\xbf\xfe\x7f\xf3\xeb\xeb\xff\x97\x49\xff\x3f\x4c\xff\x3f\x42\xff\xaf" "\xff\xdf\x6e\xff\x7f\xea\xfc\x7f\xd4\xff\xd3\x86\x8b\xe8\xff\x77\x76" "\x76\xae\xbd\xec\xfd\x7f\xee\xfe\x57\xc5\x2d\x9d\xec\x7f\x00\x00\x00" "\x68\xd2\xbe\x9f\x95\xe6\xee\x7f\x75\xdc\x62\xff\x03\x00\x00\x40\x33" "\x72\xf7\xbf\x26\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1b\xb7" "\x74\xb2\xff\xf5\xff\x9d\xf6\xff\xf9\xad\xbe\xac\xfe\xff\xba\xd5\x4a" "\xff\xaf\xff\xd7\xff\xeb\xff\x87\xe9\xff\x87\xe9\xff\x47\xe8\xff\xf5" "\xff\x9e\xff\xaf\xff\x67\x52\x73\x7b\xfe\x7f\xee\xfe\xd7\xc5\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x1b\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xf5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x86" "\xb8\xa5\x93\xfd\xaf\xff\xef\xb4\xff\xf7\xfc\x7f\xfd\xbf\xfe\xff\xb8" "\xfb\xff\x5b\x57\xfa\xff\x63\xb1\x88\xfe\xff\xcc\xc1\xaf\x3f\xf7\xfe" "\xff\xac\xfe\x5f\xff\x3f\xa0\xbb\xfe\xff\x2e\x77\xda\xf3\x4b\xfd\xbf" "\xfe\x9f\x75\x73\xeb\xff\x73\xf7\xbf\x31\x6e\xe9\x64\xff\x03\x00\x00" "\x40\x0f\x72\xf7\xbf\x29\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf" "\x1c\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x6f\x89\x9b\x4e\x74\xb2" "\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\xbf\xf9\xf5\x8f\xf9\xf9\xff" "\x27\x57\xab\x95\xfe\x7f\x02\x8b\xe8\xff\x07\xcc\xbd\xff\x9f\xe6\xf9" "\xff\xfb\xff\x2e\x3f\x4f\xff\xaf\xff\x5f\xf2\xfb\xd7\xff\xeb\xff\x59" "\x37\xb7\xfe\x3f\x77\xff\x5b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xdb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xed\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x8e\xb8\xa5\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xcd\xf7\xff\x67\x17\xd1\xff\x7b\xfe\xff\x44\xf4" "\xff\xc3\xe6\xd1\xff\x1f\x4c\xff\xaf\xff\x5f\xf2\xfb\xd7\xff\xeb\xff" "\x39\xbc\x6d\xf5\xff\xb9\xfb\xdf\x19\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\xdf\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8e" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xf7\xc4\x2d\x9d\xec\x7f\xfd" "\xbf\xfe\xff\x62\xfa\xff\x7c\x9f\xfa\xff\xb6\xfa\xff\x53\xb3\xeb\xff" "\x4f\xef\xf9\xef\xeb\xe4\xf9\xff\xfa\xff\x89\xe8\xff\x87\xe9\xff\x47" "\xe8\xff\xf5\xff\xfa\xff\xeb\xf5\xff\x4c\x69\x6e\xcf\xff\xcf\xdd\xff" "\xde\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xbe\xb8\xf5\xaf" "\x6e\xed\x7f\x00\x00\x00\x68\x46\xee\xfe\xf7\xc7\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x07\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\xef\xf9\xff" "\xfa\xff\xe6\x9f\xff\xaf\xff\xef\x8a\xfe\x7f\x98\xfe\x7f\x84\xfe\x5f" "\xff\xaf\xff\xf7\xfc\x7f\x26\x35\xb7\xfe\x3f\x77\xff\x07\xe3\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x87\xe2\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\xc3\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x53" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xb9\x3f\x43" "\xfd\x7f\x1b\xf4\xff\xc3\x8e\xa7\xff\x3f\xa3\xff\xd7\xff\x57\x3f\xff" "\x3f\xf1\x77\x81\xfe\x5f\xff\x3f\xf6\xf9\xb4\x69\x6e\xfd\x7f\xee\xfe" "\x8f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x8f\xc6\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\xc7\xe2\x16\xfb\x1f\x00\x00\x00\x16" "\xe9\xc4\x86\xdf\xcb\xdd\xff\xf1\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\xfa\xff\xcd\xaf\xaf\xff\x5f\xa6\xad\xf4\xff\xf9\x4d\xa1" "\xff\xf7\xfc\xff\xd0\x4f\xff\x7f\xd5\x9e\x5f\x2d\xed\xf9\xff\xfb\xff" "\xf7\x4b\xff\xaf\xff\x67\x7a\x73\xeb\xff\x73\xf7\x7f\x22\x6e\xe9\x64" "\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x32\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\x3f\x15\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x9f\x8e" "\x5b\x3a\xd9\xff\xfa\x7f\xfd\xff\x11\xfa\xff\xb3\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\x3f\x37\x9e\xff\x3f\x4c\xff\x3f\x42\xff\xbf\xd5\xe7\xe7\x2f" "\xfd\xfd\xeb\xff\xf5\xff\xac\x9b\x5b\xff\x9f\xbb\xff\x33\x71\x4b\x27" "\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\xb3\x71\x8b\xfd\x0f\x00\x00\x00" "\xcd\xc8\xdd\xff\xb9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xec\xee\xfe\x8c" "\xcb\x3a\xdc\xff\xfa\x7f\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\x9b\x5f\x5f" "\xff\xbf\x4c\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\x5f\xff\xcf" "\xa4\xe6\xd6\xff\x7f\x7e\xf7\xb3\x4e\xaf\xbe\x10\xb7\x74\xb2\xff\x01" "\x00\x00\xa0\x07\xb9\xfb\xbf\x18\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\x5f\x8a\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x2f\xc7\x2d\x9d" "\xec\x7f\xfd\xbf\xfe\x7f\x19\xfd\xff\xce\xce\xce\xb5\xfa\x7f\xfd\xff" "\xde\xaf\xe7\x7c\xff\x7f\xb3\xfe\x9f\xa2\xff\x1f\xa6\xff\x1f\xa1\xff" "\xd7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e\xfd\x7f\xee\xfe\xaf\xc4\x2d\x9d" "\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xaf\xc6\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\xd7\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xeb" "\x71\x4b\x27\xfb\x5f\xff\x3f\x83\xfe\xff\xb4\xfe\xdf\xf3\xff\xf5\xff" "\x2b\xcf\xff\xd7\xff\x4f\x44\xff\x3f\x4c\xff\x3f\xa2\xc5\xfe\xff\xf4" "\xe1\xbf\xfc\x6d\xf7\xf3\x47\xb5\xed\xf7\xaf\xff\xd7\xff\xb3\x6e\x6e" "\xfd\x7f\xee\xfe\x6f\xc4\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x6f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xb7\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xdb\x71\x4b\x27\xfb\x5f\xff\x7f\x7c\xfd" "\xff\x6d\x7f\xed\x7a\x79\xfe\xff\x99\xd5\xe6\xf7\xaf\xff\xd7\xff\xeb" "\xff\xf5\xff\x97\x9b\xfe\x7f\x98\xfe\x7f\x44\x8b\xfd\xff\x45\xd8\x76" "\x3f\xbf\xf4\xf7\xaf\xff\xd7\xff\xb3\x6e\x6e\xfd\x7f\xee\xfe\xef\xc4" "\x2d\x7b\x87\xdf\x95\x17\xf7\x55\x02\x00\x00\x00\x73\x92\xbb\xff\xbb" "\x71\x4b\x27\x3f\xff\x07\x00\x00\x80\x1e\xe4\xee\xff\x5e\xdc\x62\xff" "\x03\x00\x00\x40\x33\x72\xf7\x7f\x3f\x6e\xe9\x64\xff\xeb\xff\x67\xf0" "\xfc\xff\x06\xfb\x7f\xcf\xff\xdf\xfc\xfd\xa1\xff\x9f\x75\xff\x7f\x85" "\xfe\xbf\x0d\xfa\xff\x61\xfa\xff\x11\xfa\x7f\xfd\xbf\xfe\x7f\xa2\xfe" "\x3f\xbf\x9b\xf5\xff\xbd\x9b\x5b\xff\x9f\xbb\xff\x07\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\x87\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xa3\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xbf\x39\x6e" "\xb9\x60\xff\x6f\x6a\xbb\x5b\xa1\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff" "\xcd\xaf\xaf\xff\x5f\x26\xfd\xff\xb0\xc3\xf6\xff\xa7\x56\x47\xeb\xff" "\x93\xfe\x5f\xff\xaf\xff\xef\xb5\xff\xf7\xfc\x7f\xce\x99\x5b\xff\x9f" "\xbb\xff\xc7\x71\x8b\x9f\xff\x03\x00\x00\xc0\xe2\x5c\x79\xc0\xef\xe7" "\xee\xff\x49\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x34\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\x7f\x16\xb7\xdc\x72\xc5\xb6\xde\xd2" "\xb1\xd2\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\xe6\xd7\xd7\xff\x2f\x93" "\xfe\x7f\x98\xe7\xff\x8f\xd0\xff\x4f\xd1\xcf\x5f\xad\xff\x6f\xa3\xff" "\x5f\xad\xf4\xff\x1c\xdd\xdc\xfa\xff\xdc\xfd\x3f\x8f\x5b\xfc\xfc\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\x17\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8" "\xdd\xff\xcb\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x55\xdc\xd2" "\xc9\xfe\xd7\xff\xeb\xff\x8f\xd8\xff\xef\xa6\x99\xfa\xff\x73\xf4\xff" "\xe7\xe8\xff\x37\xd3\xff\x1f\x0f\xfd\xff\x30\xfd\xff\x08\xfd\xbf\xe7" "\xff\xeb\xff\x3d\xff\x9f\x49\xcd\xad\xff\xcf\xdd\xff\xeb\xb8\xa5\x93" "\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x9b\xb8\xc5\xfe\x07\x00\x00\x80" "\x66\xe4\xee\xff\x6d\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x2e" "\x6e\xe9\x64\xff\x4f\xda\xff\xdf\x18\x15\xf6\x61\xfa\xff\xf8\x4b\xad" "\xff\x5f\x7c\xff\xef\xf9\xff\xfa\x7f\xfd\xbf\xfe\x7f\x56\xf4\xff\xc3" "\xf4\xff\x23\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x49\xcd\xad\xff\xcf\xdd" "\xff\xfb\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\x87\xb8\xc5" "\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x63\xdc\x62\xff\x03\x00\x00\x40" "\x33\x72\xf7\xff\x29\x6e\xe9\x64\xff\x7b\xfe\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\x6f\x7e\x7d\xfd\xff\x32\xe9\xff\x87\xe9\xff\x37\xab\x3f\x28" "\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\x52\x73\xeb\xff\x73\xf7\xff\x39\x6e" "\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\xff\x25\x6e\xb1\xff\x01\x00" "\x00\xa0\x19\xb9\xfb\x6f\x89\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\xbf\xc6\x2d\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x6f\x7e" "\x7d\xfd\xff\x32\xcd\xaa\xff\x3f\xa1\xff\xbf\xf0\x73\xef\xfa\xff\xe3" "\x2f\xeb\xf9\xff\x5b\xef\xff\xf3\x2d\xe8\xff\xf5\xff\xfa\x7f\x26\x31" "\xb7\xfe\x3f\x77\xff\xdf\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\xdf\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x1f\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xcf\xb8\xa5\x93\xfd\x3f\xd2\xff\x9f" "\xaa\x0f\xd4\xff\x0f\xd2\xff\xef\x7d\xff\xfa\xff\xcd\xdf\x1f\xe7\xfb" "\xff\x13\x7b\x3e\x5e\xff\x7f\x8e\xfe\x5f\xff\x3f\x85\x59\xf5\xff\x9e" "\xff\xbf\x98\xe7\xff\x17\xfd\xbf\xe7\xff\xeb\xff\xf5\xff\x4c\x6a\x6e" "\xfd\x7f\xee\xfe\x7f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe" "\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xdf\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\x9f\xb8\xa5\x93\xfd\xef\xf9\xff\x4b\xea" "\xff\xaf\xd6\xff\x37\xd3\xff\xef\xfd\x78\xfd\xff\x39\xfa\x7f\xfd\xff" "\x14\xf4\xff\xc3\xf4\xff\x23\xf4\xff\xfa\xff\x8b\x78\xff\x57\xed\xfb" "\xb5\xfe\x5f\xff\xcf\xba\xb9\xf5\xff\xb9\xfb\xff\x1b\x00\x00\xff\xff" "\x3f\x70\x46\x32", 25028); syz_mount_image( /*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=MS_LAZYTIME|MS_I_VERSION|MS_POSIXACL|MS_NODIRATIME|MS_MANDLOCK|MS_DIRSYNC*/ 0x28108c0, /*opts=*/0x200000006980, /*chdir=*/0xfe, /*size=*/0x61c4, /*img=*/0x200000006c00); break; case 1: // rename arguments: [ // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // ] memcpy((void*)0x200000000000, "./file2\000", 8); memcpy((void*)0x200000000040, "./file1\000", 8); syscall(__NR_rename, /*old=*/0x200000000000ul, /*new=*/0x200000000040ul); break; case 2: // syz_mount_image$msdos arguments: [ // fs: ptr[in, buffer] { // buffer: {6d 73 64 6f 73 00} (length 0x6) // } // dir: ptr[in, buffer] { // buffer: {2e 00} (length 0x2) // } // flags: mount_flags = 0x1a4a438 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // } // } // chdir: int8 = 0xb (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir memcpy((void*)0x200000000f40, "msdos\000", 6); memcpy((void*)0x200000000f00, ".\000", 2); syz_mount_image( /*fs=*/0x200000000f40, /*dir=*/0x200000000f00, /*flags=MS_I_VERSION|MS_PRIVATE|MS_SYNCHRONOUS|MS_STRICTATIME|MS_SILENT|MS_REMOUNT|0x202408*/ 0x1a4a438, /*opts=*/0x200000000f80, /*chdir=*/0xb, /*size=*/0, /*img=*/0x200000000000); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 4; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }