// https://syzkaller.appspot.com/bug?id=781a4c1f2279253fbed103d86f99047ae1ae76ad // 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 < 4; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: mount_flags = 0x0 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {69 6f 63 68 61 72 73 65 74 3d 6d 61 63 63 72 // 6f 61 74 69 61 6e 2c 64 69 73 63 61 72 64 3d 30 78 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 33 2c 6e 6f 64 69 73 63 61 72 // 64 2c 65 72 72 6f 72 73 3d 63 6f 6e 74 69 6e 75 65 2c 69 6f 63 // 68 61 72 73 65 74 3d 6d 61 63 63 79 72 69 6c 6c 69 63 2c 00 67 // ad d4 ce ec 7c b8 70 2b 1b 4a 0f f3 22 83 9e 69 b5 07 d7 47 8e // 07 06 b0 04 08 dc 59 28 3f 5c 01 59 b8 e3 c0 28 9d cb 18 25 04 // 84 4e f8 e6 97 2c db 3f 50 68 0f cb 60 2e d2 7c 1f 6b 47 a9 1f // 94 1f 15 4a e2 05 d3 4a 9b 7a 7c 67 ef a0 c0 e2 a7 02 51 d6 64 // fc e1 2a e6 4a 5a 52 1a a8 30 80 b7 67 2c 4e 15 66 a6 1a 0a de // 4b 6c 9d 78 15 10 53 d9 fb 31 fd 2c fc 77 f2 69 f8 73 e1 4e 5f // e3 c4 6c 0a cb b2 2d 40 39 1a e3 1d 20 25 dc d9 47 ad f7 67 39 // ae 4e cb e3 b6 30 04 0b 37 e2 b0 9d 78 16 e0 b9 39 81 de 11 47 // 53 2c f2 f4 6d 4d 49 04 f6 8f b4 3c d1 65 b9} (length 0x11a) // } // union ANYUNION { // ANYBLOB: buffer: {3d b1 bd 3c 93 89 ce 30 0f 92 cc 80 91 d7 df // bd cf ff ee d8 bb 90 e5 43 38 2e 29 20 95 62 d6 48 3c 6f cf df // 79 d0 b4 65 e6 bc 8e a7 07 69 c2 66 29 98 81 e3 62 04 90 54 a6 // 83 ca 43 94 e0 98 76 5d 85 fa 3b 79 8f c1 91 11 9d eb c7 d4 5c // ce 72 46 09 d2 75 ea bc 97 4a bf 88 d2 27 0d b0 05 80 84 88 ef // c2 89 08 4a ff 30 69 b2 b0 a7 8c df a1 f7 80 c1 0f 7c 89 6c 51 // d7 c9 ce d6 ab 3e 8a 7a a7 16 d5 eb e1 e8 cb 62 55 36 6a 32 ca // 4b} (length 0x8e) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRES8: ANYRES8 (resource) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x620f (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x620f) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "jfs\000", 4); memcpy((void*)0x200000000040, "./file0\000", 8); memcpy( (void*)0x200000000bc0, "\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d\x6d\x61\x63\x63\x72\x6f\x61" "\x74\x69\x61\x6e\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\x30\x33\x2c\x6e\x6f" "\x64\x69\x73\x63\x61\x72\x64\x2c\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f" "\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6f\x63\x68\x61\x72\x73\x65\x74\x3d" "\x6d\x61\x63\x63\x79\x72\x69\x6c\x6c\x69\x63\x2c\x00\x67\xad\xd4\xce" "\xec\x7c\xb8\x70\x2b\x1b\x4a\x0f\xf3\x22\x83\x9e\x69\xb5\x07\xd7\x47" "\x8e\x07\x06\xb0\x04\x08\xdc\x59\x28\x3f\x5c\x01\x59\xb8\xe3\xc0\x28" "\x9d\xcb\x18\x25\x04\x84\x4e\xf8\xe6\x97\x2c\xdb\x3f\x50\x68\x0f\xcb" "\x60\x2e\xd2\x7c\x1f\x6b\x47\xa9\x1f\x94\x1f\x15\x4a\xe2\x05\xd3\x4a" "\x9b\x7a\x7c\x67\xef\xa0\xc0\xe2\xa7\x02\x51\xd6\x64\xfc\xe1\x2a\xe6" "\x4a\x5a\x52\x1a\xa8\x30\x80\xb7\x67\x2c\x4e\x15\x66\xa6\x1a\x0a\xde" "\x4b\x6c\x9d\x78\x15\x10\x53\xd9\xfb\x31\xfd\x2c\xfc\x77\xf2\x69\xf8" "\x73\xe1\x4e\x5f\xe3\xc4\x6c\x0a\xcb\xb2\x2d\x40\x39\x1a\xe3\x1d\x20" "\x25\xdc\xd9\x47\xad\xf7\x67\x39\xae\x4e\xcb\xe3\xb6\x30\x04\x0b\x37" "\xe2\xb0\x9d\x78\x16\xe0\xb9\x39\x81\xde\x11\x47\x53\x2c\xf2\xf4\x6d" "\x4d\x49\x04\xf6\x8f\xb4\x3c\xd1\x65\xb9", 282); memcpy((void*)0x200000000cda, "\x3d\xb1\xbd\x3c\x93\x89\xce\x30\x0f\x92\xcc\x80\x91\xd7\xdf\xbd" "\xcf\xff\xee\xd8\xbb\x90\xe5\x43\x38\x2e\x29\x20\x95\x62\xd6\x48" "\x3c\x6f\xcf\xdf\x79\xd0\xb4\x65\xe6\xbc\x8e\xa7\x07\x69\xc2\x66" "\x29\x98\x81\xe3\x62\x04\x90\x54\xa6\x83\xca\x43\x94\xe0\x98\x76" "\x5d\x85\xfa\x3b\x79\x8f\xc1\x91\x11\x9d\xeb\xc7\xd4\x5c\xce\x72" "\x46\x09\xd2\x75\xea\xbc\x97\x4a\xbf\x88\xd2\x27\x0d\xb0\x05\x80" "\x84\x88\xef\xc2\x89\x08\x4a\xff\x30\x69\xb2\xb0\xa7\x8c\xdf\xa1" "\xf7\x80\xc1\x0f\x7c\x89\x6c\x51\xd7\xc9\xce\xd6\xab\x3e\x8a\x7a" "\xa7\x16\xd5\xeb\xe1\xe8\xcb\x62\x55\x36\x6a\x32\xca\x4b", 142); *(uint8_t*)0x200000000d68 = -1; *(uint64_t*)0x200000000d69 = -1; *(uint16_t*)0x200000000d71 = -1; *(uint8_t*)0x200000000d73 = -1; memcpy( (void*)0x20000000cb40, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x17\x13\xc7" "\xca\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0" "\x82\x0d\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0" "\x44\xb3\x61\xc1\x43\x80\x90\x58\x02\x62\xc9\x8a\x07\xc8\x82\x2d\x3b" "\x1e\x00\x4b\x36\x12\x28\xab\x14\xaa\x99\x73\xc6\x35\x9d\x6e\xf7\xf8" "\x32\x5d\x3d\x3e\xbf\x9f\x34\xae\xfa\xfa\x54\x4d\x9f\xf2\xbf\xab\x2f" "\x53\x55\x7d\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x88\x1f\xfe\xe0\xc7\x67\xaa\x88\xb8\xf4\xab\x74\xc3\xb1\x88\xcf" "\x45\x3f\xa2\x17\xb1\xd2\xd4\x6b\x11\xb1\xb2\x76\x2c\x2f\x3f\x88\x88" "\x17\x62\xbb\x39\x9e\x8f\x88\xe1\x52\x44\x95\x1b\x9f\x8d\x78\x3d\x22" "\x3e\x3e\x1a\x71\xf7\xde\xad\xf5\xe6\xa6\xb3\xfb\xec\xc7\xf7\xff\xf2" "\xcf\x3f\xfc\xe4\xc8\x8f\xfe\xf1\xa7\xe1\xa9\xff\xfd\xf5\x46\xff\x8d" "\x69\xcb\xdd\xbc\xf9\xdb\xff\xfe\xed\xf6\xa3\x6f\x2f\x00\x00\x00\x94" "\xa8\xae\xeb\xba\x4a\x1f\xf3\x8f\xa7\xcf\xf7\xbd\xae\x3b\x05\x00\xcc" "\x45\x7e\xfd\xaf\x93\x7c\xbb\x7a\xe1\xea\xcd\x05\xeb\x8f\x5a\xad\x56" "\xab\x0f\x61\xdd\x56\x4f\x76\xbb\x5d\x44\xc4\x66\x7b\x9d\xe6\x3d\x83" "\xc3\xf1\x00\x70\xc8\x6c\xc6\x27\x5d\x77\x81\x0e\xc9\xbf\x68\x83\x88" "\x38\xd2\x75\x27\x80\x85\x56\x75\xdd\x01\x0e\xc4\xdd\x7b\xb7\xd6\xab" "\x94\x6f\xd5\x7e\x3d\x58\xdb\x69\xcf\xe7\x82\xec\xc9\x7f\xb3\xda\xbd" "\xbe\x63\xda\x74\x96\xf1\x73\x4c\xe6\xf5\xf8\xda\x8a\x7e\x3c\x37\xa5" "\x3f\x2b\x73\xea\xc3\x22\xc9\xf9\xf7\xc6\xf3\xbf\xb4\xd3\x3e\x4a\xcb" "\x1d\x74\xfe\xf3\x32\x2d\xff\xd1\xce\xa5\x4f\xc5\xc9\xf9\xf7\xc7\xf3" "\x1f\xf3\xf4\xe4\xdf\x9b\x98\x7f\xa9\x72\xfe\x83\x87\xca\xbf\x2f\x7f" "\x00\x00\x00\x00\x00\x58\x60\xf9\xef\xff\xc7\x3a\x3e\xfe\xbb\xf4\xf8" "\x9b\xb2\x2f\x0f\x3a\xfe\xbb\x36\xa7\x3e\x00\x00\x00\x00\x00\x00\x00" "\xc0\x93\xf6\xb8\xe3\xff\xed\xaa\x8c\xff\x07\x00\x00\x00\x8b\xaa\xf9" "\xac\xde\xf8\xdd\xd1\xfb\xb7\x4d\xfb\x2e\xb6\xe6\xf6\x8b\x55\xc4\x33" "\x63\xcb\x03\x85\x49\x17\xcb\xac\x76\xdd\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xc9\x60\xe7\x1c\xde\x8b\x55\xc4\x30\x22\x9e\x59" "\x5d\xad\xeb\xba\xf9\x69\x1b\xaf\x1f\xd6\xe3\xae\x7f\xd8\x95\xbe\xfd" "\x50\xb2\xae\x9f\xe4\x01\x00\x60\xc7\xc7\x47\xc7\xae\xe5\xaf\x22\x96" "\x23\xe2\x62\xfa\xae\xbf\xe1\xea\xea\x6a\x5d\x2f\xaf\xac\xd6\xab\xf5" "\xca\x52\x7e\x3f\x3b\x5a\x5a\xae\x57\x5a\x9f\x6b\xf3\xb4\xb9\x6d\x69" "\xb4\x8f\x37\xc4\x83\x51\xdd\xfc\xb2\xe5\xd6\x7a\x6d\xb3\x3e\x2f\xcf" "\x6a\x1f\xff\x7d\xcd\x7d\x8d\xea\xfe\x3e\x3a\x36\x1f\x1d\x06\x0e\x00" "\x11\xb1\xf3\x6a\x74\xd7\x2b\xd2\x53\xa6\xae\x9f\x8d\xae\xdf\xe5\x70" "\x38\x4c\xda\xff\xfb\xdd\x3c\x6c\x79\x42\xec\xff\xec\x47\xd7\x8f\x53" "\x00\x00\x00\xe0\xe0\xd5\x75\x5d\x57\xe9\xeb\xbc\x8f\xa7\x63\xfe\xbd" "\xae\x3b\x05\x00\xcc\x45\x7e\xfd\x1f\x3f\x2e\xa0\x56\xab\xd5\x6a\xb5" "\xfa\xe9\xab\xdb\xea\xc9\x6e\xb7\x8b\x88\xd8\x6c\xaf\xd3\xbc\x67\x30" "\x1c\x3f\x00\x1c\x32\x9b\xf1\x49\xd7\x5d\xa0\x43\xf2\x2f\xda\x20\x22" "\x5e\xe8\xba\x13\xc0\x42\xab\xba\xee\x00\x07\xe2\xee\xbd\x5b\xeb\x55" "\xca\xb7\x6a\xbf\x1e\xa4\xf1\xdd\xf3\xb9\x20\x7b\xf2\xdf\xac\xb6\xd7" "\xcb\xeb\x4f\x9a\xce\x32\x7e\x8e\xc9\xbc\x1e\x5f\x5b\xd1\x8f\xe7\xa6" "\xf4\xe7\xf9\x39\xf5\x61\x91\xe4\xfc\x7b\xe3\xf9\x5f\xda\x69\x1f\xa5" "\xe5\x0e\x3a\xff\x79\x99\x96\x7f\xb3\x9d\xc7\x3a\xe8\x4f\xd7\x72\xfe" "\xfd\xf1\xfc\xc7\x3c\x3d\xf9\xf7\x26\xe6\x5f\xaa\x9c\xff\xe0\xa1\xf2" "\xef\xcb\x1f\x00\x00\x00\x00\x00\x16\x58\xfe\xfb\xff\xb1\x85\x3a\xfe" "\x3b\x7a\xd4\xcd\x99\xe9\x41\xc7\x7f\xd7\x0e\xec\x5e\x01\x00\x00\x00" "\x00\x00\x00\xe0\x60\xdd\xbd\x77\x6b\x3d\x5f\xf7\x9a\x8f\xff\x7f\x61" "\xc2\x72\xae\xff\x7c\x3a\xe5\xfc\x2b\xf9\x17\x29\xe7\xdf\x1b\xcb\xff" "\xab\x63\xcb\xb5\xc7\x03\xbe\xf3\xf6\xfd\xfc\xff\x73\xef\xd6\xfa\x1f" "\x6f\xfc\xfb\xf3\x79\xba\xdf\xfc\x97\xf2\x4c\x95\x1e\x59\x55\x7a\x44" "\x54\xe9\x9e\xaa\x41\x9a\x3e\xce\xd6\x7d\xd6\xd6\xb0\x3f\x6a\xee\x69" "\x58\xf5\xfa\x83\x74\xce\x4f\x3d\x7c\x37\xae\xc4\xd5\xd8\x88\xd3\x7b" "\x96\xed\xa5\xff\x8f\xfb\xed\x67\xf6\xb4\x37\x3d\x1d\x6e\xb7\xd7\xfd" "\x9d\xf6\xb3\x7b\xda\x07\xbb\xed\x79\xfd\x73\x7b\xda\x87\xe9\x4c\xa7" "\x7a\x25\xb7\x9f\x8c\xf5\xf8\x79\x5c\x8d\x77\xb6\xdb\x9b\xb6\xa5\x19" "\xdb\xbf\x3c\xa3\xbd\x9e\xd1\x9e\xf3\xef\xdb\xff\x8b\x94\xf3\x1f\xb4" "\x7e\x9a\xfc\x57\x53\x7b\x35\x36\x6d\xdc\xf9\xa8\xf7\x99\xfd\xbe\x3d" "\x9d\x74\x3f\x6f\x5d\xf9\xe2\x6f\x4e\x1f\xfc\xe6\xcc\xb4\x15\xfd\xdd" "\x6d\x6b\x6b\xb6\xef\xa5\x0e\xfa\xb3\xfd\x7f\x72\x64\x14\xbf\xbc\xbe" "\x71\xed\xe4\xcd\xcb\x37\x6e\x5c\x3b\x13\x69\xb2\xe7\xd6\xb3\x91\x26" "\x4f\x58\xce\x7f\x98\x7e\x76\x9f\xff\x5f\xde\x69\xcf\xcf\xfb\xed\xfd" "\xf5\xce\x47\xa3\x87\xce\x7f\x51\x6c\xc5\x60\x6a\xfe\x2f\xb7\xe6\x9b" "\xed\x7d\x65\xce\x7d\xeb\x42\xce\x7f\x94\x7e\x72\xfe\xef\xa4\xf6\xc9" "\xfb\xff\x61\xce\x7f\xfa\xfe\xff\x6a\x07\xfd\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x80\x07\xa9\xeb\x7a\xfb\x12\xd1\xb7\x22\xe2" "\x7c\xba\xfe\xa7\xab\x6b\x33\x01\x80\xf9\xca\xaf\xff\x75\x92\x6f\x9f" "\x57\xdd\x7f\xd4\xf5\xff\xbc\x77\x3b\xba\xea\xbf\x5a\x3d\xe7\xba\x5a" "\xb0\xfe\xcc\xb5\xfe\xb4\x5e\xac\xfe\xa8\xd5\x87\xb1\x6e\xab\x27\x7b" "\xb3\x5d\x44\xc4\xdf\xdb\xeb\x34\xef\x19\x7e\x3d\xe9\x97\x01\x00\x8b" "\xec\xd3\x88\xf8\x57\xd7\x9d\xa0\x33\xf2\x2f\x58\xfe\xbe\xbf\x66\x7a" "\xa2\xeb\xce\x00\x73\x75\xfd\x83\x0f\x7f\x7a\xf9\xea\xd5\x8d\x6b\xd7" "\xbb\xee\x09\x00\x00\x00\x00\x00\x00\x00\xf0\xa8\xf2\xf8\x9f\x6b\xad" "\xf1\x9f\x4f\xd4\x75\x7d\x7b\x6c\xb9\x3d\xe3\xbf\xbe\x1d\x6b\x8f\x3b" "\xfe\xe7\x20\xcf\xec\x0e\x30\x3a\x65\xa0\xea\xfe\xc3\x6f\xd3\x83\x6c" "\xf5\x46\xfd\x5e\x6b\xb8\xf1\x17\x63\xda\xf8\xdf\xc3\xdd\xb9\x07\x8d" "\xff\x3d\x98\x71\x7f\xc3\x19\xed\xa3\x19\xed\x4b\x33\xda\x97\x67\xb4" "\x4f\xbc\xd0\xa3\x25\xe7\xff\x62\x6b\xbc\xf3\x13\x11\x71\x7c\x6c\xf8" "\xf5\x12\xc6\x7f\x1d\x1f\xf3\xbe\x04\x39\xff\x97\x5a\x8f\xe7\x26\xff" "\xaf\x8c\x2d\xd7\xce\xbf\xfe\xfd\x61\xce\xbf\xb7\x27\xff\x53\x37\xde" "\xff\xc5\xa9\xeb\x1f\x7c\xf8\xda\x95\xf7\x2f\xbf\xb7\xf1\xde\xc6\xcf" "\xce\x9d\x39\x73\xfa\xdc\xf9\xf3\x17\x2e\x5c\x38\xf5\xee\x95\xab\x1b" "\xa7\x77\xfe\xed\xb0\xc7\x07\x2b\xe7\x9f\xc7\xbe\x76\x1e\x68\x59\x72" "\xfe\x39\x73\xf9\x97\x25\xe7\xff\xa5\x54\xcb\xbf\x2c\x39\xff\x2f\xa7" "\x5a\xfe\x65\xc9\xf9\xe7\xf7\x7b\xf2\x2f\x4b\xce\x3f\x7f\xf6\x91\x7f" "\x59\x72\xfe\xaf\xa4\x5a\xfe\x65\xc9\xf9\x7f\x2d\xd5\xf2\x2f\x4b\xce" "\xff\xd5\x54\xcb\xbf\x2c\x39\xff\xaf\xa7\x5a\xfe\x65\xc9\xf9\xbf\x96" "\x6a\xf9\x97\x25\xe7\x7f\x32\xd5\xf2\x2f\x4b\xce\xff\x54\xaa\xf7\x99" "\xff\xca\x41\xf7\x8b\xf9\xc8\xf9\xe7\x23\x5c\xf6\xff\xb2\xe4\xfc\xf3" "\x99\x0d\xf2\x2f\x4b\xce\xff\x6c\xaa\xe5\x5f\x96\x9c\xff\xb9\x54\xcb" "\xbf\x2c\x39\xff\xd7\x53\x2d\xff\xb2\xe4\xfc\xbf\x91\x6a\xf9\x97\x25" "\xe7\x7f\x3e\xd5\xf2\x2f\x4b\xce\xff\x9b\xa9\x96\x7f\x59\x72\xfe\x17" "\x52\x2d\xff\xb2\xe4\xfc\xbf\x95\x6a\xf9\x97\x25\xe7\xff\xed\x54\xcb" "\xbf\x2c\x39\xff\x37\x52\x2d\xff\xb2\xe4\xfc\xbf\x93\x6a\xf9\x97\x25" "\xe7\xff\xdd\x54\xcb\xbf\x2c\x39\xff\xef\xa5\x5a\xfe\x65\xc9\xf9\xbf" "\x99\x6a\xf9\x97\xe5\xfe\xf7\xff\x9b\x31\x63\xc6\x4c\x9e\xe9\xfa\x99" "\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x37\x8f\xd3\x89\xbb" "\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8\x3f" "\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00\x00" "\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xc2\xde\xdd\xc5\xc8\x75\xd6\xf7\x03\x3f\xb3\x6f" "\x5e\x3b\x90\x18\x08\xf9\x3b\xf9\x9b\xb0\x76\x8c\x31\xce\x26\xbb\x7e" "\x89\x5f\x68\x5d\x4c\x78\x6d\x78\x2b\x09\xa1\xd0\x17\x6c\xd7\xbb\x36" "\x0b\x7e\xc3\x6b\x97\x40\xa3\xda\x51\xa0\x44\xc2\xa8\xa8\xa2\x6d\xb8" "\x68\x0b\x08\xb5\xb9\xa9\xb0\x2a\x2e\x68\x05\x28\x17\xa8\x55\xa5\x4a" "\xa4\xbd\xa0\x37\x88\x0a\x95\x8b\xa8\x0a\x28\x20\x55\xa2\x15\x64\xab" "\x99\xf3\x3c\xcf\xce\xcc\xce\xce\xac\xbd\xe3\xcd\x99\x73\x3e\x1f\x89" "\xfc\xbc\x33\x67\xe6\x9c\x39\xf3\xcc\xec\x7e\x6d\xbe\x3b\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x6c\xcb" "\x9b\x66\x3f\x53\xcb\xb2\xac\x56\xab\xe5\x17\x6c\xcc\xb2\x97\xd4\xe7" "\xfa\x89\x8d\x8d\x4b\x5e\xff\xe2\x1e\x1f\x00\x00\x00\xb0\x7a\xbf\x6c" "\xfc\xf7\xf9\x5b\xd2\x05\x87\x57\x70\xa3\xa6\x6d\xfe\xe9\xce\xef\x7e" "\x7d\x61\x61\x61\x21\xfb\xc0\xf0\x9f\x8e\x7e\x61\x61\x21\x5d\x31\x91" "\x65\xa3\xeb\xb2\xac\x71\x5d\x74\xf5\x87\x1f\xac\x35\x6f\x13\x3c\x9e" "\x8d\xd7\x86\x9a\xbe\x1e\xea\xb1\xfb\xe1\x1e\xd7\x8f\xf4\xb8\x7e\xb4" "\xc7\xf5\x63\x3d\xae\x5f\xd7\xe3\xfa\xf1\x1e\xd7\x2f\x39\x01\x4b\xac" "\xcf\x6a\xe9\xce\xb6\x35\xfe\xb8\x31\x3f\xa5\xd9\xad\xd9\x68\xe3\xba" "\x6d\x1d\x6e\xf5\x78\x6d\xdd\x50\xfd\xdc\xa5\xdb\x66\xb5\xc6\x6d\x16" "\x46\x4f\x64\x73\xd9\xa9\x6c\x36\x9b\x6e\xd9\x3e\xdf\xb6\xd6\xd8\xfe" "\x9b\x5b\xea\xfb\x7a\x7b\x16\xf7\x35\xd4\xb4\xaf\xcd\xf5\x15\xf2\xd3" "\x47\x8f\xc7\x63\xa8\x85\x73\xbc\xad\x65\x5f\x8b\xf7\x19\xfd\xf8\x8d" "\xd9\xc4\xcf\x7e\xfa\xe8\xf1\xbf\xbe\xf0\xdc\xed\x9d\x66\xcf\xd3\xd0" "\x72\x7f\xf9\x71\xee\xd8\x5a\x3f\xce\x4f\x85\x4b\xf2\x63\xad\x65\xeb" "\xd2\x39\x89\xc7\x39\xd4\x74\x9c\x9b\x3b\x3c\x27\xc3\x2d\xc7\x59\x6b" "\xdc\xae\xfe\xe7\xf6\xe3\x7c\x7e\x85\xc7\x39\xbc\x78\x98\x6b\xaa\xfd" "\x39\x1f\xcf\x86\x1a\x7f\x7e\xa6\x71\x9e\x46\x6a\x59\x87\xf3\xb4\x39" "\x5c\xf6\xf3\xbb\xb2\x2c\xbb\xbc\x78\xd8\xed\xdb\x2c\xd9\x57\x36\x94" "\x6d\x68\xb9\x64\x68\xf1\xf9\x19\xcf\x57\x64\xfd\x3e\xea\x4b\xe9\xe5" "\xd9\xc8\x35\xad\xd3\x2d\x2b\x58\xa7\xf5\x39\xb3\xad\x75\x9d\xb6\xbf" "\x26\xe2\xf3\xbf\x25\xdc\x6e\x64\x99\x63\x68\x7e\x9a\x7e\xfc\xd8\x58" "\xd3\xf3\xfe\x8b\x85\xeb\x59\xa7\x51\xfd\x51\x2f\xf7\x5a\x69\x5f\x83" "\xfd\x7e\xad\x14\x65\x0d\xc6\x75\xf1\x4c\xe3\x41\x3f\xd1\x71\x0d\x6e" "\x0b\x8f\xff\xd1\xed\xcb\xaf\xc1\x8e\x6b\xa7\xc3\x1a\x4c\x8f\xbb\x69" "\x0d\x6e\xed\xb5\x06\x87\xc6\x86\x1b\xc7\x9c\x9e\x84\x5a\xe3\x36\x8b" "\x6b\x70\x57\xcb\xf6\xc3\x8d\x3d\xd5\x1a\xf3\xd9\xed\xdd\xd7\xe0\xd4" "\x85\xd3\xe7\xa6\xe6\x3f\xf1\xc9\x7b\xe6\x4e\x1f\x3b\x39\x7b\x72\xf6" "\xcc\x9e\x5d\xbb\xa6\xf7\xec\xdb\x77\xe0\xc0\x81\xa9\x13\x73\xa7\x66" "\xa7\xf3\xff\x5e\xe7\xd9\x2e\xbe\x0d\xd9\x50\x7a\x0d\x6c\x0d\xe7\x2e" "\xbe\x06\x5e\xdb\xb6\x6d\xf3\x52\x5d\xf8\xf2\xd8\x92\xf7\xdf\xeb\x7d" "\x1d\x8e\x77\x79\x1d\x6e\x6c\xdb\xb6\xdf\xaf\xc3\x91\xf6\x07\x57\x5b" "\x9b\x17\xe4\xd2\x35\x9d\xbf\x36\xde\x57\x3f\xe9\xe3\x57\x86\xb2\x65" "\x5e\x63\x8d\xe7\x67\xe7\xea\x5f\x87\xe9\x71\x37\xbd\x0e\x47\x9a\x5e" "\x87\x1d\xbf\xa7\x74\x78\x1d\x8e\xac\xe0\x75\x58\xdf\xe6\xdc\xce\x95" "\xfd\xcc\x32\xd2\xf4\xbf\x4e\xc7\xb0\xfc\xf7\x82\xd5\xad\xc1\x8d\x4d" "\x6b\xb0\xfd\xe7\x91\xf6\x35\xd8\xef\x9f\x47\x8a\xb2\x06\xc7\xc3\xba" "\xf8\xfe\xce\xe5\xbf\x17\x6c\x0e\xc7\xfb\xc4\xe4\xb5\xfe\x3c\x32\xbc" "\x64\x0d\xa6\x87\x1b\xde\x7b\xea\x97\xa4\x9f\xf7\xc7\x0f\x34\x46\xa7" "\x75\x79\x47\xfd\x8a\x9b\xc6\xb2\x8b\xf3\xb3\xe7\xef\x7d\xe4\xd8\x85" "\x0b\xe7\x77\x65\x61\xac\x89\x57\x34\xad\x95\xf6\xf5\xba\xa1\xe9\x31" "\x65\x4b\xd6\xeb\xd0\x35\xaf\xd7\xc3\x73\x77\x3e\x71\x47\x87\xcb\x37" "\x86\x73\x35\x7e\x4f\xfd\x3f\xe3\xcb\x3e\x57\xf5\x6d\xf6\xde\xdb\xfd" "\xb9\x6a\x7c\x77\xeb\x7c\x3e\x5b\x2e\xdd\x9d\x85\xd1\x67\x6b\x7d\x3e" "\x3b\x7d\x37\xaf\x9f\xcf\xb1\x2c\xfb\xe2\x77\x1e\x7b\xf0\x5b\x8f\x7e" "\xf1\x4d\xcb\x9e\xcf\x7a\xde\xfc\xd4\xd4\xea\x7f\x16\x4f\xb9\xb4\xe9" "\xfd\x77\x74\x99\xf7\xdf\x98\xfb\x5f\xc8\xf7\x97\xee\xea\xf1\xe1\xd1" "\x91\xfc\xf5\x3b\x9c\xce\xce\x68\xcb\xfb\x71\xeb\x53\x35\xd2\x78\xef" "\xaa\x35\xf6\xfd\xfc\xd4\xca\xde\x8f\x47\xc3\xff\xd6\xfa\xfd\xf8\xd6" "\x2e\xef\xc7\x9b\xda\xb6\xed\xf7\xfb\xf1\x68\xfb\x83\x8b\xef\xc7\xb5" "\x5e\x7f\xdb\xb1\x3a\xed\xcf\xe7\x78\x58\x27\xa7\xa6\xbb\xbf\x1f\xd7" "\xb7\xd9\xb4\xfb\x5a\xd7\xe4\x48\xd7\xf7\xe3\xbb\xc2\xac\x85\xf3\xff" "\xba\x90\x14\x52\x2e\x6a\x5a\x3b\xcb\xad\xdb\xb4\xaf\x91\x91\xd1\xf0" "\xb8\x46\xe2\x1e\x5a\xd7\xe9\x9e\x96\xed\xe3\x7a\xab\xef\xeb\xa9\xdd" "\xd7\xb7\x4e\x77\xdc\x95\xdf\xd7\x70\x7a\x74\x8b\xd6\x6a\x9d\x4e\xb4" "\x6d\xdb\xef\x75\x9a\xfe\xee\x6b\xb9\x75\x5a\xeb\xf5\xb7\x6f\xd7\xa7" "\xfd\xf9\x1c\x0f\xeb\xe2\xd6\x3d\xdd\xd7\x69\x7d\x9b\xa7\xf7\xae\xfe" "\xbd\x73\x7d\xfc\x63\xd3\x7b\xe7\x58\xaf\x35\x38\x3a\x3c\x56\x3f\xe6" "\xd1\xb4\x08\x1b\xef\xf7\xd9\xc2\xfa\xb8\x06\xef\xcd\x8e\x67\x67\xb3" "\x53\xd9\x4c\xe3\xda\xb1\xc6\x7a\xaa\x35\xf6\x35\x79\xdf\xca\xd6\xe0" "\x58\xf8\xdf\x5a\xbf\x57\x6e\xea\xb2\x06\x77\xb4\x6d\xdb\xef\x35\x98" "\xbe\x8f\x2d\xb7\xf6\x6a\x23\x4b\x1f\x7c\x1f\xb4\x3f\x9f\xe3\x61\x5d" "\x3c\x79\x5f\xf7\x35\x58\xdf\xe6\xcd\xfb\xfb\xfb\xb3\xeb\x8e\x70\x49" "\xda\xa6\xe9\x67\xd7\xf6\xbf\x5f\x5b\xee\xef\xbc\xee\x68\x3b\x4d\x37" "\x6a\xad\x8c\x84\xe3\xfc\xce\xfe\xee\x7f\x37\x5b\xdf\xe6\xd4\x81\x6b" "\xcd\x99\xdd\xcf\xd3\xdd\xe1\x92\x9b\x3a\x9c\xa7\xf6\xd7\xef\x72\xaf" "\xa9\x99\x6c\x6d\xce\xd3\xa6\x70\x9c\xcf\x1d\x58\xfe\x3c\xd5\x8f\xa7" "\xbe\xcd\x17\x0e\xae\x70\x3d\x1d\xce\xb2\xec\xd2\xc7\xee\x6f\xfc\x7d" "\x6f\xf8\xf7\x95\xbf\xbb\xf8\xbd\xaf\xb7\xfc\xbb\x4b\xa7\x7f\xd3\xb9" "\xf4\xb1\xfb\x7f\xf2\xd2\x13\xff\x78\x2d\xc7\x0f\xc0\xe0\x7b\x21\x1f" "\x1b\xf2\xef\x75\x4d\xff\x32\xb5\x92\x7f\xff\x07\x00\x00\x00\x06\x42" "\xcc\xfd\x43\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xf1\xff\x15" "\x9e\xc8\xff\x00\x00\x00\x50\x1a\x31\xf7\x8f\x84\x99\x54\x24\xff\x6f" "\x7a\xf3\x73\x73\x2f\x5c\xca\x52\x33\x7f\x21\x88\xd7\xa7\xd3\xf0\x40" "\xbe\x5d\xec\xb8\x4e\x87\xaf\x27\x16\x16\xd5\x2f\xbf\xff\xab\xb3\xff" "\xfd\x0f\x97\x56\xb6\xef\xa1\x2c\xcb\x7e\xf1\xc0\x1f\x74\xdc\x7e\xd3" "\x03\xf1\xb8\x72\x13\xe1\x38\xaf\xbe\xa5\xf5\xf2\x25\xbe\x7e\xcf\x8a" "\xf6\x7d\xf4\xe1\x4b\x69\xbf\xcd\xfd\xf5\x2f\x85\xfb\x8f\x8f\x67\xa5" "\xcb\xa0\x53\x05\x77\x3a\xcb\xb2\x6f\xde\xf2\xb9\xc6\x7e\x26\x3e\x78" "\xa5\x31\x9f\x7e\xe0\x68\x63\x3e\x78\xf9\x89\xc7\xeb\xdb\x3c\x7f\x30" "\xff\x3a\xde\xfe\xd9\x57\xe4\xdb\xff\x45\x28\xff\x1e\x3e\x71\xac\xe5" "\xf6\xcf\x86\xf3\xf0\xa3\x30\xa7\xdf\xd1\xf9\x7c\xc4\xdb\x7d\xed\xca" "\xeb\x36\xef\x7f\xff\xe2\xfe\xe2\xed\x6a\x5b\x6f\x6e\x3c\xec\x27\x3f" "\x94\xdf\x6f\xfc\x3d\x39\x9f\x7f\x3c\xdf\x3e\x9e\xe7\xe5\x8e\xff\x5b" "\x9f\x7d\xea\x6b\xf5\xed\x1f\x79\x4d\xe7\xe3\xbf\x34\xd4\xf9\xf8\x9f" "\x0a\xf7\xfb\xd5\x30\xff\xe7\x55\xf9\xf6\xcd\xcf\x41\xfd\xeb\x78\xbb" "\x4f\x87\xe3\x8f\xfb\x8b\xb7\xbb\xf7\x2b\xdf\xee\x78\xfc\x57\x3f\x93" "\x6f\x7f\xee\xad\xf9\x76\x47\xc3\x8c\xfb\xdf\x11\xbe\xde\xf6\xd6\xe7" "\xe6\x9a\xcf\xd7\x23\xb5\x63\x2d\x8f\x2b\x7b\x5b\xbe\x5d\xdc\xff\xf4" "\xf7\xfe\xb8\x71\x7d\xbc\xbf\x78\xff\xed\xc7\x3f\x7e\xe4\x4a\xcb\xf9" "\x68\x5f\x1f\x4f\xff\x5b\x7e\x3f\x53\x6d\xdb\xc7\xcb\xe3\x7e\xa2\xbf" "\x6f\xdb\x7f\xfd\x7e\x9a\xd7\x67\xdc\xff\x53\x7f\x74\xb4\xe5\x3c\xf7" "\xda\xff\xd5\x07\x9f\x7d\x55\xfd\x7e\xdb\xf7\x7f\x77\xdb\x76\xe7\x3e" "\xb6\xb3\xb1\xff\xc5\xfb\x6b\xfd\x8d\x4d\x7f\xf9\xe9\xcf\x75\xdc\x5f" "\x3c\x9e\xc3\x7f\x7b\xae\xe5\xf1\x1c\x7e\x6f\x78\x1d\x87\xfd\x3f\xf9" "\xa1\xb0\x1e\xc3\xf5\xff\x7b\x35\xbf\xbf\xf6\xdf\xae\x70\xf4\xbd\xad" "\xef\x3f\x71\xfb\x2f\x6d\xbc\xd4\xf2\x78\xa2\xb7\xff\x2c\xdf\xff\xd5" "\x37\x9c\x6c\xcc\x75\xe3\xeb\x37\xdc\xf4\x92\x97\xde\x7c\xf9\xd5\xf5" "\x73\x97\x65\xcf\xac\xcb\xef\xaf\xd7\xfe\x4f\xfe\xd5\xd9\x96\xe3\xff" "\xf2\x6d\xf9\xf9\x88\xd7\xc7\x8e\x7e\xfb\xfe\x97\x13\xf7\x7f\xfe\xe3" "\x93\x67\xce\xce\x5f\x9c\x9b\x49\x67\xf5\xd1\x5b\x1a\xbf\x3b\xe7\x9d" "\xf9\xf1\xc4\xe3\xbd\x25\xbc\xb7\xb6\x7f\x7d\xe4\xec\x85\x0f\xcf\x9e" "\x9f\x98\x9e\x98\xce\xb2\x89\xf2\xfe\x0a\xbd\xeb\xf6\x95\x30\x7f\x92" "\x8f\xcb\xdd\xb7\x5e\x58\xf2\x0e\xba\xf3\xe1\xf0\x7c\xde\xf1\xe7\xdf" "\xdc\xb0\xfd\x5f\x3f\x1b\x2f\xff\xf7\xf7\xe5\x97\x5f\x79\x47\xfe\x7d" "\xeb\xb5\x61\xbb\xcf\x87\xcb\x37\x86\xe7\xef\xda\xf6\xbf\xd4\x93\x5b" "\x6e\x6b\xbc\xbe\x6b\x4f\x87\x23\x5c\x58\xfa\xfb\x82\x57\x63\xf3\xb6" "\xff\x3a\xb0\xa2\x0d\xc3\xe3\x6f\xff\xb9\x20\xae\xf7\x73\xaf\xfc\x70" "\xe3\x3c\xd4\xaf\x6b\x7c\xdf\x88\xaf\xeb\x55\x1e\xff\x0f\x66\xf2\xfb" "\xf9\x46\x38\xaf\x0b\xe1\x37\x33\x6f\xbd\x6d\x71\x7f\xcd\xdb\xc7\xdf" "\x8d\x70\xe5\xa1\xfc\xf5\xbe\xea\xf3\x17\xde\xe6\xe2\xf3\xfa\x37\xe1" "\xf9\x7e\xd7\x8f\xf2\xfb\x8f\xc7\x15\x1f\xef\x0f\xc2\xcf\x31\xdf\xde" "\xd4\xfa\x7e\x17\xd7\xc7\x37\x2e\x0d\xb5\xdf\x7f\xe3\xb7\x78\x5c\x0e" "\xef\x27\xd9\xe5\xfc\xfa\xb8\x55\x3c\xdf\x57\x9e\xbf\xad\xe3\xe1\xc5" "\xdf\x43\x92\x5d\xbe\xbd\xf1\xf5\x9f\xa4\xfb\xb9\xfd\x9a\x1e\xe6\x72" "\xe6\x3f\x31\x3f\x75\x6a\xee\xcc\xc5\x47\xa6\x2e\xcc\xce\x5f\x98\x9a" "\xff\xc4\x27\x8f\x9c\x3e\x7b\xf1\xcc\x85\x23\x8d\xdf\xe5\x79\xe4\x23" "\xbd\x6e\xbf\xf8\xfe\xb4\xa1\xf1\xfe\x34\x33\xbb\x6f\x6f\xd6\x78\xb7" "\x3a\x9b\x8f\x1b\xec\xc5\x3e\xfe\x73\x0f\x1f\x9f\xd9\x3f\xbd\x7d\x66" "\xf6\xc4\xb1\x8b\x27\x2e\x3c\x7c\x6e\xf6\xfc\xc9\xe3\xf3\xf3\xc7\x67" "\x67\xe6\xb7\x1f\x3b\x71\x62\xf6\xe3\xbd\x6e\x3f\x37\x73\x68\xd7\xee" "\x83\x7b\xf6\xef\x9e\x3c\x39\x37\x73\xe8\xc0\xc1\x83\x7b\x0e\x4e\xce" "\x9d\x39\x5b\x3f\x8c\xfc\xa0\x7a\xd8\x37\xfd\xd1\xc9\x33\xe7\x8f\x34" "\x6e\x32\x7f\x68\xef\xc1\x5d\xf7\xdd\xb7\x77\x7a\xf2\xf4\xd9\x99\xd9" "\x43\xfb\xa7\xa7\x27\x2f\xf6\xba\x7d\xe3\x7b\xd3\x64\xfd\xd6\xbf\x3f" "\x79\x7e\xf6\xd4\xb1\x0b\x73\xa7\x67\x27\xe7\xe7\x3e\x39\x7b\x68\xd7" "\xc1\x7d\xfb\x76\xf7\xfc\x6d\x80\xa7\xcf\x9d\x98\x9f\x98\x3a\x7f\xf1" "\xcc\xd4\xc5\xf9\xd9\xf3\x53\xf9\x63\x99\xb8\xd0\xb8\xb8\xfe\xbd\xaf" "\xd7\xed\x29\xa7\xf9\xff\xc8\x7f\x9e\x6d\x57\xcb\x7f\x11\x5f\xf6\x9e" "\xbb\xf7\xa5\xdf\xcf\x5a\xf7\xd5\xc7\x96\xbd\xab\x7c\x93\xb6\x5f\x20" "\xfa\x5c\xf8\x5d\x34\xff\xfc\xb2\x73\x07\x56\xf2\x75\xcc\xfd\xa3\x61" "\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x8f\x85\x99\xc8\xff\x00" "\x00\x00\x50\x1a\x31\xf7\xaf\x0b\x33\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x1f\x0f\x33\xa9\x48\xfe\x2f\x5d\xff\x7f\xd3\xa5\x15\xed\x5f\xff" "\x5f\xff\xbf\xf9\x7c\xe9\xff\x57\xac\xff\xff\x50\xd1\xfa\xff\xf9\xfb" "\x85\xfe\x7f\x7f\xac\xb6\x7f\xaf\xff\x1f\xe8\xff\xeb\xff\xeb\xff\xeb" "\xff\xeb\xff\xd3\x07\x45\xeb\xff\xc7\xdc\xbf\x3e\xcb\x2a\x99\xff\x01" "\x00\x00\xa0\x0a\x62\xee\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x69\xc4" "\xdc\x7f\x53\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff\x4b\xc2\x4c" "\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b\xef\x5f\xff" "\x7f\x30\xe9\xff\x77\xa7\xff\xdf\x83\xfe\xff\x54\x56\xad\xfe\xff\xe5" "\x7e\x1e\xbf\xfe\xbf\xfe\x3f\x4b\x15\xad\xff\x1f\x73\xff\x4b\xc3\x4c" "\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xbf\x39\xcc\x44\xfe\x07\x00" "\x00\x80\xd2\x88\xb9\xff\x96\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6" "\xfe\x8d\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\x9d\xf7\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff\xef\x41\xff\xdf\xe7\xff" "\xeb\xff\xeb\xff\xd3\x57\x45\xeb\xff\xc7\xdc\xff\xb2\x30\x93\x8a\xe4" "\x7f\x00\x00\x00\xa8\x82\x98\xfb\x5f\x1e\x66\x22\xff\x03\x00\x00\x40" "\xf1\x8c\x5c\xdf\xcd\x62\xee\x7f\x45\x98\xc9\x92\xfc\x7f\x9d\x3b\x00" "\x00\x00\x00\x5e\x74\x31\xf7\xdf\x9a\xb5\x15\xc1\x2b\xf2\xef\xff\xfa" "\xff\xfa\xff\xc5\xef\xff\xaf\x4b\xd7\xe9\xff\xeb\xff\x67\x85\xec\xff" "\x0f\x67\xfa\xff\xc5\xa1\xff\xdf\x9d\xfe\x7f\x0f\xfa\xff\xfa\xff\xfa" "\xff\xfa\xff\xf4\x55\xd1\xfa\xff\x8d\xdc\x9f\x8d\x67\xaf\x0c\x33\xa9" "\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xb6\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\xff\x17\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\xbf\x29\xcc\xa4\x22\xf9\x5f\xff\x5f\xff\xbf\xf8\xfd\x7f\x9f\xff\xaf" "\xff\x5f\xf4\xfe\xbf\xcf\xff\x2f\x12\xfd\xff\xee\xf4\xff\x7b\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\xa7\xaf\x8a\xd6\xff\x8f\xb9\xff\xf6\x30\x93" "\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\xef\x08\x33\x91\xff\x01\x00" "\x00\xa0\x34\x62\xee\xff\xff\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc" "\xfd\x9b\xc3\x4c\x2a\x92\xff\xf5\xff\x0b\xde\xff\x8f\xcd\x51\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x15\xd1\xff\xef\x4e\xff\xbf\x07\xfd" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfa\xaa\x68\xfd\xff\x98\xfb\x5f\x15\x66" "\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\x9d\x61\x26\xf2\x3f\x00" "\x00\x00\x94\x46\xcc\xfd\xaf\x0e\x33\x91\xff\x01\x00\x00\xa0\x34\x62" "\xee\x9f\x08\x33\xa9\x48\xfe\xd7\xff\x2f\x78\xff\x3f\xef\xc1\x8f\xf9" "\xfc\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95\xd1\xff\xef\x4e\xff\xbf" "\x07\xfd\x7f\xfd\xff\xbe\xf4\xff\x17\x2e\xe9\xff\xeb\xff\x93\x2b\x5a" "\xff\x3f\xe6\xfe\x2d\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7" "\x6f\x0d\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xbf\x2b\xcc\x44\xfe" "\x07\x00\x00\x80\xd2\x88\xb9\x7f\x5b\x98\x49\x45\xf2\xbf\xfe\xff\x40" "\xf4\xff\x33\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\x95\xd1\xff\xef" "\x4e\xff\xbf\x07\xfd\x7f\xfd\x7f\x9f\xff\xaf\xff\x4f\x5f\x15\xad\xff" "\x1f\x73\xff\x6b\xc2\x4c\x2a\x92\xff\x01\x00\x00\xa0\x0a\x62\xee\xdf" "\x1e\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xda\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x1d\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\xfa\xff\x9d\xf7\xaf\xff\x3f\x98\xf4\xff\xbb\xd3\xff" "\xef\x41\xff\x5f\xff\x5f\xff\x5f\xff\x9f\xbe\x2a\x5a\xff\x3f\xe6\xfe" "\xd7\x85\x99\x54\x24\xff\x03\x00\x00\x40\x15\xc4\xdc\xbf\x33\xcc\x44" "\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff\xee\x30\x13\xf9\x1f\x00\x00\x00" "\x4a\x23\xe6\xfe\xc9\x30\x93\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\xff\xce\xfb\xd7\xff\x1f\x4c\xfa\xff\xdd\xe9\xff\xf7\xa0\xff" "\xdf\xaf\xfe\xfc\xb0\xfe\xbf\xfe\xbf\xfe\x3f\x59\x01\xfb\xff\x31\xf7" "\xdf\x13\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xbd\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x53\x61\x26\xf2\x3f\x00\x00\x00" "\x94\x46\xcc\xfd\xd3\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xab\xee\xff" "\x37\x3d\x78\xfd\xff\x0a\xf4\xff\x5f\xbd\x78\xbf\xfa\xff\x39\xfd\xff" "\x62\xd1\xff\xef\x4e\xff\xbf\x87\xfe\xf5\xff\x47\xb2\x6a\xf7\xff\x7d" "\xfe\xff\x75\xf7\xff\x47\xf5\xff\x29\x95\xa2\xf5\xff\x63\xee\xdf\x15" "\x66\x52\x91\xfc\x0f\x00\x00\x00\x55\x10\x73\xff\xee\x30\x13\xf9\x1f" "\x00\x00\x00\x4a\x23\xe6\xfe\x3d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46" "\xcc\xfd\x7b\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\x7d\xfe\xbf\xfe\xbf" "\xcf\xff\xef\xbc\x7f\xfd\xff\xc1\xa4\xff\xdf\x5d\xff\xfb\xff\xf1\x21" "\xea\xff\xfb\xfc\x7f\xfd\x7f\x9f\xff\xaf\xff\xcf\x52\x45\xeb\xff\xc7" "\xdc\x7f\x5f\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\xfb\xc2" "\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xf7\x87\x99\xc8\xff\x00\x00" "\x00\x50\x1a\x31\xf7\x1f\x08\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\xd7\xff\xef\xbc\x7f\xfd\xff\xc1\xa4\xff\xdf\x5d\xd5\x3f\xff" "\x7f\x63\xaf\x03\xd0\xff\xd7\xff\xd7\xff\xd7\xff\x67\x95\x1e\xfa\xc3" "\xe6\xaf\x8a\xd6\xff\x8f\xb9\xff\x60\x98\x49\x45\xf2\x3f\x00\x00\x00" "\x54\x41\xcc\xfd\xaf\x0f\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\xff" "\x95\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x5f\x0d\x33\x29\x4b" "\xfe\xef\xd1\x3c\xd4\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\x7f" "\xfd\xff\xc1\xa4\xff\xdf\x5d\xd5\xfb\xff\x3d\xe9\xff\xeb\xff\xeb\xff" "\xeb\xff\xd3\x57\x45\xeb\xff\xc7\xdc\x7f\x28\xcc\xa4\x2c\xf9\x1f\x00" "\x00\x00\x48\xb9\xff\xd7\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb" "\xdf\x10\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\x7f\x38\xcc\xa4\x22" "\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xbf\xf3\xfe\xd7\xba\xff" "\x3f\x16\xef\x57\xff\x7f\x55\xf4\xff\xbb\xd3\xff\xef\x41\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\xbe\x2a\x5a\xff\x3f\xe6\xfe\x37\x86\x99\x54\x24" "\xff\x03\x00\x00\x40\x15\xc4\xdc\x7f\x7f\x98\x89\xfc\x0f\x00\x00\x00" "\xa5\x11\x73\xff\x9b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\x8d\x98\xfb\xdf" "\x1c\x66\x52\x91\xfc\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xaf\xff\xdf\x79" "\xff\x3e\xff\x7f\x30\xe9\xff\x77\xb7\x16\xfd\xff\x61\xfd\x7f\xfd\x7f" "\xfd\x7f\xfd\x7f\xfd\x7f\x82\xa2\xf5\xff\x63\xee\x7f\x4b\x98\x49\x45" "\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd\x6f\x0d\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\x7f\x5b\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11\x73\xff" "\xdb\xc3\x4c\x2a\x92\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x3b" "\xef\x5f\xff\x7f\x30\xe9\xff\x77\xe7\xf3\xff\x7b\xd0\xff\xd7\xff\xd7" "\xff\xd7\xff\xa7\xaf\x8a\xd6\xff\x8f\xb9\xff\xd7\xc3\x4c\x2a\x92\xff" "\x01\x00\x00\xa0\x0a\x62\xee\x7f\x20\xcc\x44\xfe\x07\x00\x00\x80\xd2" "\x88\xb9\xff\x1d\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xef\x0c" "\x33\xa9\x48\xfe\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xd7\xff\xef\xbc\x7f" "\xfd\xff\xc1\xa4\xff\xdf\xdd\x80\xf5\xff\x7f\x79\x73\xb8\x5c\xff\x3f" "\xa7\xff\x5f\xec\xe3\xbf\xd6\xfe\xff\x48\xdb\xd7\x37\xa4\xff\xff\xc3" "\xe5\xfa\xff\x0b\xeb\xda\x6f\xaf\xff\xcf\x8d\x50\xb4\xfe\x7f\xcc\xfd" "\xef\x0a\x33\xa9\x48\xfe\x07\x00\x00\x80\x2a\x88\xb9\xff\xdd\x61\x26" "\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\xef\x09\x33\x91\xff\x01\x00\x00" "\xa0\x34\x62\xee\xff\x8d\x30\x93\x8a\xe4\x7f\xfd\xff\xfa\x71\x2c\xb6" "\x97\xf5\xff\xcb\xda\xff\x1f\xd2\xff\xd7\xff\xd7\xff\xaf\x08\xfd\xff" "\xee\x06\xac\xff\xef\xf3\xff\xdb\xe8\xff\x17\xfb\xf8\x7d\xfe\xbf\xfe" "\x3f\x4b\x15\xad\xff\x1f\x73\xff\x7b\xc3\x4c\x2a\x92\xff\x01\x00\x00" "\xa0\x0a\x62\xee\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80\xd2\x88\xb9\xff" "\xa1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\xf7\x85\x99\x54\x24" "\xff\xeb\xff\xfb\xfc\xff\x6a\xf4\xff\x7d\xfe\x7f\xa6\xff\xaf\xff\x5f" "\x11\xfa\xff\xdd\xe9\xff\xf7\xa0\xff\xaf\xff\x5f\xb4\xfe\xff\x7f\xea" "\xff\x33\xd8\x8a\xd6\xff\x8f\xb9\xff\xe1\x30\x93\x8a\xe4\x7f\x00\x00" "\x00\xa8\x82\x98\xfb\xdf\x1f\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc" "\xff\x9b\x61\x26\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x1f\x08\x33\xa9" "\x48\xfe\xd7\xff\x1f\x94\xfe\xff\xc4\x80\xf6\xff\x1f\xd3\xff\xbf\x81" "\xfd\xff\x3b\x6f\xce\xb7\xd3\xff\xd7\xff\x67\x91\xfe\x7f\x77\xfa\xff" "\x3d\xe8\xff\xeb\xff\x17\xad\xff\xef\xf3\xff\x19\x70\x45\xeb\xff\xc7" "\xdc\xff\xc1\x30\x93\x95\xe7\xff\xf1\x15\x6f\x09\x00\x00\x00\xbc\x28" "\x62\xee\xff\xad\x30\x93\x8a\xfc\xfb\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\xbf\x1d\x66\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\x3b\x61\x26\x15" "\xc9\xff\xfa\xff\x37\xa4\xff\xdf\xf8\xd2\xe7\xff\xfb\xfc\xff\xf6\xf5" "\xe1\xf3\xff\xf5\xff\xf5\xff\x6f\xbc\xb5\xeb\xff\xc7\x77\x1e\xfd\x7f" "\xfd\x7f\xfd\xff\x48\xff\xbf\x40\xfd\xff\x8b\xfa\xff\x14\x43\xd1\xfa" "\xff\x31\xf7\xff\x6e\x98\x49\x45\xf2\x3f\x00\x00\x00\x54\x41\xcc\xfd" "\x1f\x0a\x33\x91\xff\x01\x00\x00\x60\x20\x74\xfa\x4c\xb6\x76\x31\xf7" "\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x34\x62\xee\x3f\x1a\x66\x52\x91" "\xfc\xaf\xff\x3f\x28\x9f\xff\xaf\xff\x9f\x55\xad\xff\xff\x67\x5b\xff" "\xe5\xfb\xdf\x7d\xf7\xd1\x5d\xfa\xff\xfa\xff\xfa\xff\xd7\x64\x4d\x3f" "\xff\xbf\xfe\xe2\xf7\xf9\xff\xfa\xff\xfa\xff\x89\xfe\x7f\x81\xfa\xff" "\x3e\xff\x9f\x82\x28\x5a\xff\x3f\xe6\xfe\x63\x61\x26\x15\xc9\xff\x00" "\x00\x00\x50\x05\x31\xf7\xff\x5e\x98\x89\xfc\x0f\x00\x00\x00\xa5\x11" "\x73\xff\xf1\x30\x13\xf9\x1f\x00\x00\x00\x4a\x23\xe6\xfe\x99\x30\x93" "\x8a\xe4\x7f\xfd\x7f\xfd\x7f\xfd\xff\x82\xf6\xff\x07\xf8\xf3\xff\xe3" "\xf9\xd0\xff\x6f\xd5\xb7\xfe\x7f\x7c\xd3\xd5\xff\xef\x28\xef\xdf\xa7" "\x55\x74\x63\xfb\xff\xef\x5f\xec\x89\xeb\xff\x5f\x6b\xff\x7f\xac\xe3" "\xa5\xfa\xff\xfa\xff\x83\x7c\xfc\xfa\xff\xfa\xff\x2c\x55\xb4\xfe\x7f" "\xcc\xfd\xb3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x21\xf7\x0f\x9d" "\xc8\xe7\xe2\x15\xf2\x3f\x00\x00\x00\x94\x46\xcc\xfd\x27\xc3\x4c\xe4" "\x7f\x00\x00\x00\x28\x8d\x98\xfb\x3f\x1c\x66\x52\x91\xfc\xaf\xff\xaf" "\xff\xaf\xff\xaf\xff\xef\xf3\xff\x3b\xef\xbf\x5b\xff\xbf\x36\xe2\xf3" "\xff\x8b\x2a\xf5\xef\x7f\xde\x78\xa1\xe8\xff\xb7\x29\x4e\xff\xbf\x33" "\xfd\x7f\xfd\xff\x41\x3e\x7e\xfd\x7f\xfd\x7f\x96\x2a\x5a\xff\x3f\xe6" "\xfe\xb9\x30\x93\x8a\xe4\x7f\x00\x00\x00\xa8\x82\x98\xfb\x3f\x12\x66" "\x22\xff\x03\x00\x00\x40\x69\xc4\xdc\xff\xd1\x30\x13\xf9\x1f\x00\x00" "\x00\x4a\x23\xe6\xfe\x53\x61\x26\x15\xc9\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xfa\xff\x9d\xf7\x5f\xd8\xcf\xff\xd7\xff\xef\x6a\xb5\xfd\x7b" "\xfd\xff\x40\xff\x5f\xff\x5f\xff\x5f\xff\x5f\xff\x9f\x3e\x28\x5a\xff" "\x3f\xe6\xfe\xd3\x61\x26\x15\xc9\xff\x00\x00\x00\x50\x05\x31\xf7\x9f" "\x09\x33\x91\xff\x01\xfe\x8f\xbd\x3b\x69\xb2\xab\x3e\xef\x38\x7e\x3b" "\x48\xa5\x56\xc1\x22\xbb\x2c\xb2\x49\x55\x96\x79\x09\x2c\x92\x75\xf2" "\x02\xb2\xc8\x26\x8b\xa4\x2a\x95\x45\x48\x42\x12\x32\x23\x32\x8f\x24" "\xd8\xc6\xb3\x8d\xc1\xf3\x80\x07\x30\x18\x63\x1b\x3c\x0f\xe0\x09\x1b" "\xcf\x60\x1b\xcf\xf3\x80\x27\x8c\x4d\xc9\x45\xf7\xf3\x3c\x52\xdf\x3e" "\x7d\x6e\x77\xeb\x76\xf7\x39\xff\xff\xe7\xb3\xe0\x89\x3a\x34\xf7\x42" "\xa9\x24\xfd\xd4\xfa\xfa\x00\x00\x40\x33\x72\xf7\x5f\x15\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x1a\xb7\x74\xb2\xff\xf5\xff\xfa\xff" "\x66\xfb\xff\xdf\xd4\xff\xef\xf5\xfa\xfa\x7f\xfd\x7f\xcb\xf4\xff\xe3" "\xf4\xff\x2b\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f\x6b\x35\xb5\xfe\x3f\x77" "\xff\x9f\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x3f\x8f\x5b" "\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xab\xe3\x16\xfb\x1f\x00\x00\x00" "\x9a\x91\xbb\xff\x2f\xe2\x96\x4e\xf6\xff\x52\xff\xbf\xb1\x98\x58\xff" "\x9f\x7d\xed\x11\xf7\xff\xf9\x32\xfa\xff\x96\xfa\x7f\xcf\xff\xdf\xf3" "\xf5\xf5\xff\xfa\xff\x96\x1d\x6f\xff\x7f\xdd\x93\x3f\xf2\xe9\xff\xf5" "\xff\xfa\xff\xa0\xff\xdf\x57\xff\x7f\x66\xaf\xcf\xd7\xff\xd3\xa2\xa9" "\xf5\xff\xb9\xfb\xff\x32\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\xff\x55\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x5f\x13\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\x7f\x1d\xb7\x74\xb2\xff\xd7\xf7\xfc\xff" "\xb3\x5b\x1f\xf7\xfc\xff\x0b\xf4\xff\xfa\xff\xe5\xef\x1f\xfa\x7f\xfd" "\xbf\xfe\xff\xe8\x79\xfe\xff\xb8\x9e\xfa\xff\xab\x1f\xbc\xfc\x4f\x1e" "\xbd\xf3\x57\xef\x3a\xc8\xeb\xeb\xff\xf5\xff\x9e\xff\xaf\xff\x67\xbd" "\xa6\xd6\xff\xe7\xee\xff\x9b\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\xb7\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x77\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xf7\x71\x4b\x27\xfb\x7f\x7d\xfd" "\xff\xd1\x3c\xff\x3f\xe9\xff\xf5\xff\x0b\xfd\xbf\xfe\x7f\xe9\xdf\x47" "\xff\xaf\xff\x1f\xa2\xff\x1f\x37\xf5\xfe\xff\xb4\xe7\xff\xeb\xff\x67" "\xfc\xfe\xf5\xff\xfa\x7f\x76\x9b\x5a\xff\x9f\xbb\xff\x1f\xe2\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x3f\xc6\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\xb5\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x2e" "\x6e\xe9\x64\xff\xeb\xff\x8f\xbe\xff\x7f\x42\xff\xaf\xff\x8f\xab\xff" "\xd7\xff\xeb\xff\x8f\x9e\xfe\x7f\xdc\xd4\xfb\xff\x75\x3e\xff\xff\x30" "\xaf\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xac\xd7\xd4\xfa\xff\xdc\xfd\xd7" "\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\x7f\x8a\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x7f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46" "\xee\xfe\x7f\x89\x5b\x3a\xd9\xff\xfa\x7f\xcf\xff\xd7\xff\xeb\xff\xf5" "\xff\xc3\xaf\xaf\xff\x9f\x27\xfd\xff\x38\xfd\xff\x0a\xfa\xff\x4b\xed" "\xe7\x4f\xeb\xff\xf5\xff\xfa\x7f\x2e\x76\xc0\xfe\xff\xf1\x91\x1f\xb6" "\xd7\xd2\xff\xe7\xee\xff\xd7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\xff\x6f\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xef\x71\x8b" "\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\x1f\x71\x4b\x27\xfb\x5f\xff\xaf" "\xff\xd7\xff\xeb\xff\x0f\xdd\xff\xef\xfe\xae\xb7\x45\xff\x3f\x4c\xff" "\x7f\x3c\xf4\xff\xe3\x26\xd3\xff\x6f\x9c\x1a\xfc\x70\xb7\xfd\xff\x63" "\xdb\x6f\xb4\x81\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\x76\x98\xda\xf3\xff" "\x73\xf7\xff\x67\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\xff\xaf" "\xb8\x65\x64\xff\x1f\xf8\x37\xf3\x01\x00\x00\x80\x13\x95\xbb\xff\xbf" "\xe3\x16\x5f\xff\x07\x00\x00\x80\xd9\xcb\xea\x2c\x77\xff\xff\xc4\x2d" "\x9d\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xf7\xfc\xff\xe1\xd7\x1f\xeb" "\xff\xef\xba\xe8\xfd\xe9\xff\xa7\x45\xff\x3f\x6e\x32\xfd\xff\x1e\xba" "\xed\xff\x17\x17\xde\xaf\xfe\x7f\xbe\xef\x5f\xff\xaf\xff\x67\xb7\xa9" "\xf5\xff\xb9\xfb\xff\x37\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7" "\x5f\x1f\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x17\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xff\x1f\xb7\x74\xb2\xff\x87\xfb\xff\x0b" "\xff\x7f\xfd\xff\xfe\xe8\xff\x77\xbe\x7f\xfd\xff\xf0\xf7\x8f\x75\xf5" "\xff\xf9\x4f\xd4\xff\x8f\xf6\xff\xbf\xe5\xf9\xff\x7d\xd2\xff\x8f\x3b" "\xfe\xfe\xff\x8c\xfe\x7f\xe7\x3f\x5f\xff\x7f\x84\x4e\xfa\xfd\x37\xde" "\xff\x9f\x5d\xf5\xf9\xfa\x7f\x86\x4c\xad\xff\xcf\xdd\x7f\x43\xdc\xd2" "\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x4a\xdc\x62\xff\x03\x00\x00" "\x40\x33\x72\xf7\x3f\x35\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x9f" "\x16\xb7\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff\x9f\x5f\xff\xbf\xfc\xfc" "\xff\xa4\xff\xdf\x76\x1c\xcf\xff\x5f\x1c\x7b\xff\x7f\x4a\xff\xbf\x4f" "\xfa\xff\x71\x9e\xff\xbf\x82\xfe\x5f\xff\xaf\xff\xf7\xfc\x7f\xd6\x6a" "\x6a\xfd\x7f\xee\xfe\x1b\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\xe0\xc6" "\xc7\x16\x5b\xbb\xff\xe9\x8b\x85\xfd\x0f\x00\x00\x00\x73\x74\xf1\x9f" "\x1d\x58\xfe\x03\xa5\x21\x77\xff\x33\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x99\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xcf\xbf\xff" "\xf7\xfc\xff\x1e\xfa\x7f\xcf\xff\xdf\x2f\xfd\xff\x38\xfd\xff\x0a\xfa" "\xff\xa3\xe8\xe7\x4f\x35\xd6\xff\xdf\xb4\xd7\xe7\x4f\xa1\xff\xbf\x56" "\xff\xcf\xc4\xec\xe8\xff\xef\xb9\xf0\xf1\x93\xea\xff\x73\xf7\x3f\x2b" "\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x3f\x3b\x6e\xb1\xff\x01" "\x00\x00\xa0\x19\xb9\xfb\x9f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc" "\xfd\xcf\x8d\x5b\x3a\xd9\xff\x47\xde\xff\x9f\xdd\xfb\xb5\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\x5f\x37\xfd\xff\x38\xfd\xff\x0a\xfa" "\x7f\xcf\xff\xf7\xfc\x7f\xfd\x3f\x6b\xb5\xa3\xff\xbf\xc8\x49\xf5\xff" "\xb9\xfb\x9f\x17\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x9f\x1f" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x37\xc5\x2d\xf6\x3f\x00\x00" "\x00\x34\x23\x77\xff\x0b\xe2\x96\x4e\xf6\xbf\xe7\xff\xeb\xff\xf5\xff" "\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\xe7\x49\xff\x3f\x4e\xff\xbf\x82\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x53\xeb\xff\x73\xf7\xdf\x1c\xb7\x74" "\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x89\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\xff\x68\xfb\xff\xfc\xb8\xfe\x5f\xff\xbf\xd0" "\xff\xeb\xff\xf5\xff\xc7\xa2\xdb\xfe\x7f\x63\xe8\x67\xa2\xdd\xf6\xe8" "\xff\xef\xff\xa3\x73\xbf\xb3\xf3\x23\xfa\x7f\xfd\xbf\xfe\x5f\xff\xaf" "\xff\x67\x0d\x26\xd1\xff\x9f\xbf\xf0\xab\xcb\xdc\xfd\x2f\x8e\x5b\x3a" "\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x2f\x89\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x97\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xcb" "\xe2\x96\x03\xee\xff\x5f\x5e\xeb\xbb\x3a\x3e\xfa\x7f\xcf\xff\xd7\xff" "\xeb\xff\xf5\xff\xc3\xaf\xaf\xff\x9f\xa7\xd9\xf5\xff\xa7\x77\x7e\xd3" "\xf3\xff\xf5\xff\xfa\xff\xf9\xbe\x7f\xfd\xbf\xfe\x9f\xdd\x26\xd1\xff" "\x5f\xf4\xed\xdc\xfd\x2f\x8f\x5b\x7c\xfd\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x15\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xca\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x55\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff" "\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\x1f\xb6\xff\xdf\x5c\x0c\xd3\xff\x1f" "\x8f\xd9\xf5\xff\x4b\xf4\xff\xfa\x7f\xfd\xff\x7c\xdf\xbf\xfe\x5f\xff" "\xcf\x6e\x53\xeb\xff\x73\xf7\xdf\x1a\xb7\x74\xb2\xff\x01\x00\x00\xa0" "\x07\xb9\xfb\x5f\x1d\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xaf\x89" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xd7\xc6\x2d\x9d\xec\x7f\xfd" "\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\x0f\xbf\xbe\xe7\xff\xcf\x93\xfe\x7f" "\x9c\xfe\x7f\xb1\x58\xdc\x36\xf2\x06\x86\xfa\xff\xf3\x67\xf4\xff\xfa" "\x7f\xfd\xbf\xfe\x9f\x43\x9a\x5a\xff\x9f\xbb\xff\x75\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xb6\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\xbf\x3d\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x5f\x1f\xb7" "\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff" "\x79\xd2\xff\x8f\xd3\xff\xaf\xe0\xf9\xff\xfa\x7f\xfd\xbf\xfe\x9f\xb5" "\x9a\x5a\xff\x9f\xbb\xff\x8e\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8" "\xdd\x7f\x67\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x21\x6e\xb1" "\xff\x01\x00\x00\xa0\x19\xb9\xfb\xef\x8a\x5b\x3a\xd9\xff\xfa\x7f\xfd" "\xbf\xfe\x5f\xff\x7f\x24\xfd\xff\x39\xfd\xff\x32\xfd\xff\xf1\x38\xba" "\xfe\x7f\xa1\xff\xd7\xff\xeb\xff\x57\xd0\xff\xeb\xff\xf5\xff\x2c\x3b" "\xae\xfe\xff\xf1\xf8\xf1\x7e\x55\xff\x9f\xbb\xff\x8d\x71\x4b\x27\xfb" "\x1f\x00\x00\x00\x7a\x90\xbb\xff\xee\xb8\xc5\xfe\x07\x00\x00\x80\x66" "\xe4\xee\x7f\x53\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xbf\x39\x6e" "\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xe7\xff\x0f\xbf\xbe\xfe" "\x7f\x9e\x3c\xff\x7f\x9c\xfe\x7f\x05\xfd\xbf\xfe\x5f\xff\xaf\xff\x67" "\xad\x8e\xab\xff\xdf\xab\xf7\x5f\xfe\x76\xee\xfe\xb7\xc4\x2d\x9d\xec" "\x7f\x00\x00\x00\xe8\x41\xee\xfe\x7b\xe2\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\xde\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x6b\xdc" "\xd2\xc9\xfe\xd7\xff\xeb\xff\x77\xf6\xff\x8b\x85\xfe\x5f\xff\xaf\xff" "\xdf\x76\x0c\xfd\xff\xe6\x42\xff\xbf\x76\xfa\xff\x71\xfa\xff\x15\xf4" "\xff\x6d\xf6\xff\xbf\xb4\x68\xa8\xff\x3f\xbb\xe7\xe7\xeb\xff\x99\xa2" "\xa9\xf5\xff\xb9\xfb\xdf\x16\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9" "\xfb\xdf\x1e\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x88\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\x77\xc6\x2d\x2d\xed\xff\x27\xf6\x4e" "\xdf\xe6\xdf\xff\x9f\x59\xfa\x44\xfd\xff\x62\xb1\x78\xe8\x1a\xcf\xff" "\xd7\xff\x8f\xbc\xbe\xfe\x7f\x32\xfd\x7f\xfd\x57\xd5\xff\xaf\x8f\xfe" "\x7f\x9c\xfe\x7f\x05\xfd\x7f\x9b\xfd\xbf\xe7\xff\xeb\xff\x39\x31\x53" "\xeb\xff\x73\xf7\xbf\x2b\x6e\x69\x69\xff\x03\x00\x00\x40\xe7\x72\xf7" "\xbf\x3b\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xdf\x13\xb7\xd8\xff" "\x00\x00\x00\xd0\x8c\xdc\xfd\xef\x8d\x5b\x3a\xd9\xff\xf3\xef\xff\x97" "\x3f\x51\xff\xbf\xb8\xa4\xe7\xff\xeb\xff\xb7\x3e\xa0\xff\xd7\xff\xeb" "\xff\x67\xeb\x52\xfb\xfb\x9b\x37\xe3\xe7\x34\xfd\xbf\xfe\x5f\xff\x3f" "\xd8\xcf\x6f\xec\xf1\xeb\x9e\x85\xfe\x5f\xff\xaf\xff\x67\xc0\xd4\xfa" "\xff\xdc\xfd\xef\x8b\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xf7" "\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xfd\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xfe\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xeb\xff" "\xe7\xd9\xff\x6f\xea\xff\xf5\xff\xfa\xff\x41\x7b\xf6\xf7\x57\xec\xef" "\xf3\xd7\xf5\xfc\xff\x2b\xaf\xfc\xed\x07\xf4\xff\xfa\xff\x16\xfb\xff" "\x31\xfa\x7f\xfd\xbf\xfe\x9f\x65\x53\xeb\xff\x73\xf7\x7f\x20\x6e\xe9" "\x64\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x30\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x3f\x14\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x1f" "\x8e\x5b\x3a\xd9\xff\xbb\xfb\xff\xd3\x8b\xed\x42\x75\xdb\x50\xff\x1f" "\x8d\x9a\xfe\xff\x22\xfa\xff\x9d\xef\x5f\xff\x3f\xfc\xfd\xc3\xf3\xff" "\xf5\xff\xfa\xff\xa3\x77\xa9\xcf\xdf\x5f\x57\xff\xef\xf9\xff\x87\x7b" "\xff\xfa\x7f\xfd\xff\x9c\xdf\xff\x81\xfa\xff\x5f\xdb\xfd\xf9\xfa\x7f" "\x5a\x34\xb5\xfe\x3f\x77\xff\x03\x71\xcb\xc8\xf0\xdb\xfb\x2d\x01\x00" "\x00\x00\x53\x94\xbb\xff\x23\x71\x4b\x27\x5f\xff\x07\x00\x00\x80\x1e" "\xe4\xee\xff\x68\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x18\xb7" "\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x87\x5f\x5f\xff" "\x3f\x4f\xfa\xff\x71\xfa\xff\x15\xf4\xff\xfa\x7f\xcf\xff\xbf\xea\x0f" "\x2e\xd3\xff\xb3\x3e\x53\xeb\xff\x73\xf7\x7f\x2c\x6e\xd9\x1a\x7e\xbf" "\x7e\xc5\x21\xff\x35\x01\x00\x00\x80\x09\xc9\xdd\xff\xf1\xb8\xa5\x93" "\xaf\xff\x03\x00\x00\x40\x0f\x72\xf7\x7f\x22\x6e\xb1\xff\x01\x00\x00" "\xa0\x19\xb9\xfb\x3f\x19\xb7\x74\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\x3f\xfc\xfa\xfa\xff\x79\xd2\xff\x8f\xd3\xff\xaf\xd0\x4f\xff" "\xbf\x39\xf4\xc1\x93\xee\xe7\x2f\xd5\x49\xbf\xff\x66\xfa\x7f\xcf\xff" "\x67\x8d\xa6\xd6\xff\xe7\xee\xff\x54\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x74\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x26" "\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x8a\x5b\x3a\xd9\xff\xfa" "\x7f\xfd\x7f\xfb\xfd\xff\xef\xeb\xff\x97\x5e\x5f\xff\xaf\xff\x6f\x99" "\xfe\x3f\x7f\x46\x1f\xa6\xff\x5f\xa1\x9f\xfe\x7f\xd0\x49\xf7\xf3\x73" "\x7f\xff\xfa\xff\xb1\xfe\xff\xe0\x3f\x1e\xd2\x86\xa9\xf5\xff\xb9\xfb" "\x1f\x8e\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x9f\x8d\x5b\xec" "\x7f\x00\x00\x00\x68\x46\xee\xfe\xcf\xc5\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\xe7\xe3\x96\x4e\xf6\xbf\xfe\xbf\xaf\xfe\x7f\x63\xd1\x63" "\xff\xef\xf9\xff\xfa\x7f\xfd\x7f\x4f\xe6\xd3\xff\xdf\x72\x6a\xe8\xa3" "\x9e\xff\xaf\xff\xd7\xff\xcf\xf7\xfd\xeb\xff\x3d\xff\x9f\xdd\xa6\xd6" "\xff\xe7\xee\x7f\x64\xe3\x54\x97\xfb\x1f\x00\x00\x00\xe6\xea\x77\x7f" "\xe3\x8f\x1f\xde\xef\xdf\xfb\xc8\xd6\x5f\x37\x17\x5f\x88\x5b\xec\x7f" "\x00\x00\x00\x68\x46\xee\xfe\x2f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23" "\x77\xff\x97\xe2\x96\x4e\xf6\xbf\xfe\xbf\xaf\xfe\xbf\xcf\xe7\xff\xeb" "\xff\xf5\xff\xfa\xff\x9e\xcc\xa7\xff\x1f\xa6\xff\xd7\xff\xeb\xff\xe7" "\xfb\xfe\xf5\xff\xfa\x7f\x76\x9b\x5a\xff\x9f\xbb\xff\xcb\x71\xcb\x45" "\xc3\x6f\xf0\x7f\xa0\x07\x00\x00\x00\x98\x8d\xdc\xfd\x5f\x89\x5b\x3a" "\xf9\xfa\x3f\x00\x00\x00\xf4\x20\x77\xff\x57\xe3\x96\x5d\xfb\xff\xfc" "\x3e\xff\x54\x3b\x00\x00\x00\x30\x35\xb9\xfb\xbf\x16\xb7\x74\xf2\xf5" "\x7f\xfd\xff\xc4\xfb\xff\xc5\x11\xf5\xff\xf1\xf7\xe9\xff\xb7\xe9\xff" "\xf5\xff\x43\xaf\xaf\xff\x9f\x27\xfd\xff\xb8\x4b\xec\xff\xcf\x6f\xe8" "\xff\xf5\xff\x23\xf4\xff\xfa\x7f\xfd\x3f\xcb\xa6\xd6\xff\xe7\xee\xbf" "\xfb\x8e\x45\x97\xfb\x1f\x00\x00\x00\x1a\xb5\xe3\x77\x14\xbe\xbe\xf5" "\xd7\xcd\xc5\x37\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x9b\x71" "\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xad\xb8\xa5\x93\xfd\xaf\xff" "\x9f\x78\xff\x7f\xa8\xe7\xff\x9f\xad\xff\xcb\xf3\xff\x3b\xef\xff\xaf" "\xdf\x1c\x7c\x7d\xfd\xbf\xfe\xbf\x65\xfa\xff\x71\x9e\xff\xbf\x82\xfe" "\x5f\xff\xaf\xff\xd7\xff\xb3\x56\x07\xe8\xff\xb7\x06\xe9\x51\xf7\xff" "\xb9\xfb\xbf\x1d\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xbf\x13" "\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xdf\x8d\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\xef\xc5\x2d\x9d\xec\x7f\xfd\xff\x09\xf4\xff\x37" "\x9c\x59\x2c\x8e\xb4\xff\xdf\xc7\xf3\xff\xf5\xff\x7d\xf4\xff\x7b\xbc" "\x7e\x3b\xfd\xff\xaf\x5c\x7e\xee\xbe\xdf\xfb\xc3\xdb\x6f\xd5\xff\x73" "\xc1\x71\xf6\xff\xf9\x7d\x41\xff\xaf\xff\xd7\xff\x6f\xd3\xff\xeb\xff" "\xf5\xff\x2c\x9b\xda\xf3\xff\x73\xf7\x7f\x3f\x6e\xe9\x64\xff\x03\x00" "\x00\x40\x0f\x72\xf7\x3f\x1a\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd" "\x3f\x88\x5b\x9e\xdc\xff\xf7\x9e\xd4\xbb\x02\x00\x00\x00\xd6\x29\x77" "\xff\x0f\xe3\x96\x4e\xbe\xfe\xaf\xff\x6f\xf1\xf9\xff\xf3\xec\xff\xf3" "\xbf\xf5\x09\xf4\xff\xe7\xe6\xd7\xff\x67\x53\xdc\x7b\xff\xef\xf9\xff" "\xfa\xff\xdd\x3c\xff\x7f\x9c\xfe\x7f\x05\xfd\xbf\xfe\x5f\xff\xaf\xff" "\x67\xad\xa6\xd6\xff\xe7\xee\xff\x51\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x71\xdc\x92\xfb\x7f\xe3\xc0\xbf\x75\x0f\x00\x00\x00" "\x4c\x4c\xee\xfe\x9f\xc4\x2d\xbe\xfe\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\x58\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x0f\xdb\xff\x9f\xf5\xfc\x7f\xcf" "\xff\xd7\xff\x6f\xd1\xff\x4f\x8b\xfe\x7f\x9c\xfe\x7f\x05\xfd\xbf\xfe" "\x5f\xff\xaf\xff\x67\xad\xa6\xd6\xff\xe7\xee\xff\x69\xdc\xd2\xc9\xfe" "\x07\x00\x00\x80\x1e\xe4\xee\x7f\x3c\x6e\xb1\xff\x01\x00\x00\xa0\x19" "\xb9\xfb\x7f\x16\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\x3f\x8f\x5b" "\x3a\xd9\xff\xfa\x7f\xfd\xff\x54\x9e\xff\x9f\xf4\xff\x17\x3e\x4f\xff" "\xbf\x4d\xff\xaf\xff\x3f\x08\xfd\xff\xb8\x83\xf4\xff\x97\x0d\xfc\xba" "\x40\xff\xaf\xff\x1f\xa3\xff\xd7\xff\xeb\xff\x59\x36\xb5\xfe\x3f\x77" "\xff\x2f\x02\x00\x00\xff\xff\x32\x4b\x71\x1e", 25103); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000040, /*flags=*/0, /*opts=*/0x200000000bc0, /*chdir=*/1, /*size=*/0x620f, /*img=*/0x20000000cb40); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0xc4042 (4 bytes) // mode: open_mode = 0x1ff (2 bytes) // ] // returns fd memcpy((void*)0x200000000300, "./file1\000", 8); res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IWOTH|S_IROTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IXUSR|S_IWUSR|0x100*/ 0x1ff); if (res != -1) r[0] = res; break; case 2: // openat$nullb arguments: [ // fd: const = 0xffffffffffffff9c (8 bytes) // file: ptr[in, buffer] { // buffer: {2f 64 65 76 2f 6e 75 6c 6c 62 30 00} (length 0xc) // } // flags: open_flags = 0xb24d547a82164f02 (4 bytes) // mode: const = 0x0 (2 bytes) // ] // returns fd_block memcpy((void*)0x200000000040, "/dev/nullb0\000", 12); res = syscall( __NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000000040ul, /*flags=O_TRUNC|O_NONBLOCK|O_NOFOLLOW|O_NOCTTY|O_NOATIME|O_DIRECT|0x82100402*/ 0x82164f02, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0xfffe82 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[1], /*off=*/0ul, /*count=*/0xfffe82ul); 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 < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }