// https://syzkaller.appspot.com/bug?id=a043af99017005b8c0f2b6c8efaf85aaa27c3f08 // 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 __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void 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; } 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"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 8; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { 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; } } } uint64_t r[4] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x2800000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // union ANYUNION { // ANYRES64: ANYRES64 (resource) // } // union ANYUNION { // ANYBLOB: buffer: {40 d4 82 3d ef fd bb eb 65 ee dd b3 12 03 a8 // 29 67 9a 7a 18 f0 1f ae fa 69 1c 80 df 4e 49 f2 c9 2d 0c 97 08 // f6 05 17 7b 1f 56 99 ee ab b7 03 cc 12 6a df 2f 9c 51 67 d1 71 // 78 b4 e0 c5 90 34 5b ad 5d e9 06 89 4e f7 54 ec 7a 8c 3b 32 c7 // b9 d0 f7 4a bf 43 c4 de e7 8d ec ff 64 4f d2 8d 7d 87 45 18 bd // 96 0a 09 88 75 b5 3d 20 05 df 3f b1 5a 95 30 31 ad b9 88 76 15 // b5 9f 3c ae f2 de 95 c9 49 5a 71 54 70 00 55 ef 1a 72} (length // 0x8a) // } // union ANYUNION { // ANYRESOCT: ANYRES64 (resource) // } // union ANYUNION { // ANYRES32: ANYRES32 (resource) // } // union ANYUNION { // ANYRES16: ANYRES16 (resource) // } // } // } // chdir: int8 = 0xee (1 bytes) // size: len = 0x5aef (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x5aef) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000000140, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x200000000000, "./file1\000", 8)); NONFAILING(*(uint16_t*)0x200000000180 = -1); NONFAILING(*(uint64_t*)0x200000000182 = 0); NONFAILING(memcpy( (void*)0x20000000018a, "\x40\xd4\x82\x3d\xef\xfd\xbb\xeb\x65\xee\xdd\xb3\x12\x03\xa8\x29\x67" "\x9a\x7a\x18\xf0\x1f\xae\xfa\x69\x1c\x80\xdf\x4e\x49\xf2\xc9\x2d\x0c" "\x97\x08\xf6\x05\x17\x7b\x1f\x56\x99\xee\xab\xb7\x03\xcc\x12\x6a\xdf" "\x2f\x9c\x51\x67\xd1\x71\x78\xb4\xe0\xc5\x90\x34\x5b\xad\x5d\xe9\x06" "\x89\x4e\xf7\x54\xec\x7a\x8c\x3b\x32\xc7\xb9\xd0\xf7\x4a\xbf\x43\xc4" "\xde\xe7\x8d\xec\xff\x64\x4f\xd2\x8d\x7d\x87\x45\x18\xbd\x96\x0a\x09" "\x88\x75\xb5\x3d\x20\x05\xdf\x3f\xb1\x5a\x95\x30\x31\xad\xb9\x88\x76" "\x15\xb5\x9f\x3c\xae\xf2\xde\x95\xc9\x49\x5a\x71\x54\x70\x00\x55\xef" "\x1a\x72", 138)); NONFAILING(sprintf((char*)0x200000000214, "%023llo", (long long)-1)); NONFAILING(*(uint32_t*)0x20000000022b = 0); NONFAILING(*(uint16_t*)0x20000000022f = -1); NONFAILING(memcpy( (void*)0x200000001080, "\x78\x9c\xec\xdd\x7d\x90\x1c\x67\x79\x20\xf0\xb7\x67\x66\xb5\x5f\xfa" "\x58\xc9\x26\x16\x36\x5e\xad\x8d\x75\x71\x4c\x40\x2b\x7f\x15\x1f\xa9" "\x20\x72\x09\xe4\x6c\x42\x89\x22\x45\x2c\x9f\xc0\x5e\x5b\x2b\x47\x20" "\xc9\x2a\x7d\x60\x4b\x38\xb1\x9c\xb3\x39\x54\x36\x14\xa4\x48\x25\x26" "\xf9\xc3\xa1\x0c\x77\x80\xa0\x5c\x05\x17\xac\xf8\x70\x6c\x7c\x92\x8f" "\x2f\x95\x2f\x9c\xeb\x0a\x5c\x07\x39\xc3\x1f\x5c\x39\x3e\x54\xb1\x2d" "\x5c\x14\xc7\xa6\x66\xa6\xdf\xd9\x99\x9e\xe9\xed\xd9\xd9\x59\x59\xb2" "\x7f\xbf\xb2\xb7\xa7\xdf\xe9\x79\xfa\xe9\xee\x77\x7a\xfa\x79\xa7\xb5" "\x1b\x00\x00\x00\x78\x45\x38\x76\xd7\x9e\x93\xef\x3a\xf7\xf7\xbe\xf5" "\x67\xd3\x2f\xdc\xfe\xfb\x7f\xbf\xe3\x8e\x30\x5a\xae\xb5\x0f\xc5\x05" "\xc6\xd2\xe9\xad\x2f\x55\x86\x9c\x4a\x83\x95\xd5\xb5\x69\xb6\x5f\xfc" "\xfa\x87\xbf\xf0\x93\x89\x1b\x7f\xe7\x9b\x0f\x8c\x7c\xf6\xc5\xa3\x5b" "\x2e\xd8\xfa\x83\xdf\x3d\xeb\xc6\x87\x3e\x70\xd5\x91\x7b\xff\xfa\xd1" "\xe7\x97\x7d\xf5\x57\x4f\x17\xc5\x8d\xfd\xe9\x92\xd9\xf9\xe4\xd9\x24" "\x84\xa1\xaf\x9f\xf8\x8b\x8f\x1c\xfd\xf6\x39\xd5\xb6\x64\x79\xf5\x67" "\xe9\x60\x08\x2b\x93\x55\x8f\xae\x4c\x42\xb8\xb3\x39\xc4\xe4\x2f\x42" "\x08\x5b\xd2\x99\xd5\x99\xf8\x5f\x79\xe1\xb2\xad\x21\x84\x72\x76\xbd" "\x2b\x32\xf3\xfa\xfb\x2b\x5b\xf5\x38\x27\x21\x84\x03\x27\x6f\x79\x5d" "\xf8\xe1\xdb\x36\xdd\xf9\xdd\x35\x5f\xfe\xd2\xc0\xe1\x67\x0e\xce\x2e" "\x92\x0c\xcd\xf6\xa7\x10\xc2\xf2\xeb\x9b\x5f\x3f\x10\x42\x18\x4e\xff" "\xaf\x1a\x4c\xa7\xb1\x3f\x26\xe9\x74\x63\x08\x61\xa4\xe9\x75\x6f\x2c" "\xc8\xeb\xb5\x5d\xe4\x5d\xb5\x2e\xd3\x1e\xe7\xcf\x4b\xa7\x4b\xd2\xe9" "\x68\x41\xbc\xf8\xfc\x85\x99\xf9\x52\x66\xb9\xec\x7c\x34\x90\x99\x8e" "\x14\xac\x6f\xa1\xf2\xf2\xe8\x75\xb9\x22\x4b\x33\xf3\x49\x9f\xe2\x46" "\x79\x79\xc6\xf6\x95\xe9\xf4\x6b\xe9\xf4\x92\x79\xc6\x2f\xa7\xdb\x50" "\x4e\x42\x29\x09\x95\x46\xfa\xdb\x93\xd9\x3e\x12\x9a\x8e\x5b\x12\x92" "\xda\xb1\x1c\x6a\xcc\x97\x1a\xc7\x36\xa4\xdb\x9f\x99\x4f\x32\xf3\xa5" "\xcc\x7c\x79\x20\xb3\x5d\xb5\xf5\xa6\x1d\xad\x9c\x24\xad\xed\x71\xb9" "\x4c\x7b\x3c\x1d\x57\xd2\xf6\x0b\x9a\xcf\xd5\x1d\xbc\xa7\xe9\x71\xf3" "\x72\xaf\x8e\x6d\xe9\x1b\xf5\xc5\xec\x32\x99\xa0\xa3\x6d\x0f\x1a\xdb" "\x55\x13\xf3\x3a\x31\x47\x2e\xa7\x42\xa9\xe9\x1c\xd4\xa9\xbd\x71\xe0" "\xd3\x83\x31\x9a\xb6\x8d\x26\xed\x3d\x7a\xa6\x83\xf8\xdc\xd1\x4d\xf7" "\xac\x2d\x6f\xfe\xc6\xb1\xb1\x9c\x3c\x92\x07\x92\x34\x7e\x92\xc6\x5f" "\x35\xaf\xf8\x07\xbe\xb3\x72\xe9\xfb\xbf\x78\x68\x5f\xf6\x73\xbd\x11" "\xff\xfa\x52\x1a\xbf\xd4\x53\xfc\x1f\x5d\x7d\xfc\x67\xd7\x1e\xfa\xcc" "\xa7\x73\xe3\x7f\x22\xc6\x2f\xf7\x14\xff\xd2\x87\x47\x9e\xbd\xfa\xb1" "\xbb\x2e\xcc\xdd\x3f\x27\xe2\xfe\xa9\xf4\x14\x7f\xea\xe9\xc7\x3f\xb6" "\xe6\xec\x1b\x0e\xe7\xe6\x7f\x5f\x8c\x3f\xd4\x53\xfc\x0d\x47\x8e\x0f" "\x2e\x3b\xf9\xf0\x23\xb9\xf9\x4f\xc6\xfd\x33\xdc\x53\xfc\xa7\xde\xf2" "\xf6\x1f\x7f\xfe\xc9\x07\x9f\xc9\x8d\x1f\x62\xfc\x91\x9e\xe2\x6f\x3e" "\xb2\xeb\xe3\x83\xe3\x27\x2f\xce\x8d\xff\x48\xdc\x3f\xa3\xbd\xf5\x9f" "\xe7\x0e\x5f\xf9\xfd\xf1\xf1\x9f\x4e\xe4\xc5\x7f\x22\xc6\x5f\xd6\x53" "\xfc\xcf\x1d\x1c\x7c\xf3\xfd\x2b\xee\xbe\x2a\xf7\xf8\x6e\x8c\xfb\x67" "\xac\xa7\xf8\xef\xbc\xe8\xa1\x3b\x97\x9e\x7c\xf0\xfc\xbc\x73\x67\x72" "\x5f\xbf\x3e\x39\x01\x5e\x99\xce\x4a\xaf\xb1\x3e\x9a\xce\xf7\x5a\x67" "\x2e\x54\x53\xbd\xf0\x57\x13\x95\xfa\x35\xdf\xd2\xf4\xff\x65\xfd\x5c" "\x51\xe6\xe2\x33\x5b\x27\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x3f\xbc\xea\x75\xff\xfd\x1d" "\xff\xe7\xbd\x63\xcf\x56\xd2\xf9\xc1\xf4\xc1\x53\xa5\xfa\x34\xb6\x2f" "\x09\x21\x19\x0e\x21\xec\xd9\x3b\xb5\x7b\xef\xb6\x9d\x37\x4d\x7c\xe0" "\xe6\x7d\xbb\x77\x4e\x6d\x9f\x98\xda\x3b\x31\xbd\x73\xef\xee\xfd\x13" "\x97\xff\xe6\xc4\xee\xe9\x5d\xdb\xa7\xf6\x57\x9f\x9d\x7c\xfd\x65\xf5" "\xd7\xad\x0a\x49\x7d\x9a\x9c\xdf\xb6\xee\xc1\x99\x99\x99\xd2\x58\x6b" "\x5b\x5c\xdf\xbf\xbd\xe8\xf0\x0f\xd7\xbe\xf1\xff\xfe\x73\x08\x93\xaf" "\xfa\xde\x78\x25\x37\xff\x75\xf7\xee\xb8\xff\xec\x0e\x3f\x33\x92\x0d" "\x33\x6f\xdd\xb1\xef\x5d\xdf\xbb\xe2\x6f\xd3\xed\x1a\x4b\xf3\x1a\xeb" "\x90\xd7\xcc\xcc\xcc\x4c\xc8\xc9\xeb\xff\x5d\xf3\xcb\xfb\xff\xfc\xc4" "\x4f\x2e\x0e\x61\xf2\xd7\xe6\xca\xeb\xf1\xa7\x7e\xfb\x1f\x9a\x13\x2a" "\x87\x6a\xc3\x6c\x9c\x54\x69\x30\xd4\x13\x1a\x4c\x46\x3a\xe6\xd1\xc8" "\x3a\xcd\x27\xee\xaf\xca\xd6\x6d\xdb\xa7\x27\xe7\xde\xbf\xd5\xd7\x97" "\x73\xb6\xe3\xdf\x7f\xf8\x99\x5f\x6c\xbd\xf5\x93\xbf\xac\xef\xdf\xa1" "\xdc\xed\xe8\x72\xff\x0e\x6f\x98\xd9\x5e\xfa\xcb\x4d\xef\xfc\xff\x7f" "\x79\x5b\xbd\xa1\x28\xaf\x97\xea\xb8\x57\xf7\x77\x39\x27\x66\x35\xaf" "\xb8\x15\x31\xbf\xb8\xff\x86\xd2\xfd\xbd\x3c\xdd\xae\xe5\x39\xdb\x55" "\xc9\xd9\xae\xbb\xbe\xfb\xc8\x93\x5f\x3f\xf7\xd0\xf3\x07\xc3\x64\xe5" "\xb9\x35\xed\xc7\xba\x68\xbb\x06\xd2\x0e\x30\x90\xbc\xba\xab\xf5\xc6" "\x35\x8c\x24\x2b\x5b\xda\x87\xd2\xe5\xe3\x11\x8f\xaf\x5b\xb7\x77\xc7" "\xae\x75\x7b\xf6\x1f\x78\xfd\xb6\x1d\x53\x37\x4d\xdf\x34\xbd\xf3\x4d" "\xeb\x2f\x5f\x7f\xe5\xe4\x15\x57\x5e\xb1\xae\xb6\xe5\xeb\xfa\xbc\xfd" "\x71\xfd\xff\xa6\xcb\xed\x3f\x35\xfd\x69\xc5\x87\x0e\x7e\x2d\xfe\xec" "\xae\x3f\xb5\xe6\xb5\x64\xde\xfb\xa3\x9a\x57\xf1\xfe\x68\xce\x28\xef" "\xfd\x37\xf2\x9e\x8f\x7c\xea\x4d\xf7\x3e\xf6\xae\x7a\x43\xd3\x79\x65" "\xdd\xdb\x3a\xec\xaf\xb8\x74\xe3\x7c\x92\x4e\x47\xaa\xc7\x79\x7d\x68" "\xea\x6f\xed\xfb\xaa\xd3\x76\x15\x1d\x9f\x10\xc2\x44\xa7\xfd\xf0\xb3" "\xe7\xaf\x0a\xe7\xfc\xaf\x6d\x77\x16\x9d\x87\x9a\x8f\x4c\xf3\xcf\x8c" "\x64\xc3\xcc\xb7\x2f\xfc\x97\xbf\x7d\xe3\xdf\xac\xfe\xad\x7a\xc3\x29" "\x39\xcf\x37\x27\xf4\x78\x6f\xe7\xf9\x46\xd6\xb3\xf9\xd4\xf6\xd7\x50" "\x7a\x3c\x66\x4e\xd3\xfd\x3b\x98\x9e\x4d\x07\x93\xd1\x8e\x79\xad\xff" "\xf6\x63\x03\xf7\x1c\xfb\xe7\x3f\x69\xe4\xb7\x64\x49\xb8\x75\x6a\xef" "\xde\xdd\xeb\xeb\x3f\x97\xa6\x99\x2e\x4d\xce\xeb\x98\x57\xb6\x35\x6e" "\xd7\x9a\xda\xcf\x72\x48\x77\x4b\x68\x74\xd3\x0e\xfd\xb5\x6a\x20\xd4" "\xf3\xcb\x9e\x3f\xe3\xe2\x8d\xbd\x3a\xd4\xfa\xdc\x68\xb2\xaa\xe3\x76" "\x65\xc5\xe7\x8e\x6e\xba\x67\x6d\x79\xf3\x37\x8e\xe5\xed\xe9\xe4\x81" "\xfa\x1a\x87\xc3\xb2\xfa\x34\x79\x4d\xce\x92\xdb\x33\x2f\x2c\x37\x92" "\xea\xb4\xfe\xd3\xf5\xfd\x57\xd4\x3f\xc6\xdf\xf1\x37\x5f\x7d\xef\x57" "\xff\xee\xf2\xb6\xfe\x71\x69\xfd\x67\xd1\x76\x25\x39\xdb\xf5\xe5\x27" "\x3f\xf7\xa9\xcf\x7e\xf2\x3f\xfe\x5d\xff\xb6\xeb\x1d\xbf\x7d\x7c\xec" "\x5f\xfe\xf7\x1f\xaf\xad\x37\x9c\x82\xf3\x4a\x58\xd0\x79\xa5\x5c\x4f" "\xa4\x91\x75\x9a\x4f\xd2\x7c\x5e\xb9\x34\x84\xa2\xf7\xdf\x9a\xd0\x79" "\x3b\x72\xdf\x7f\xa5\xce\xdb\x53\xf4\xfe\xcb\xae\x67\x76\xf9\xce\xf1" "\x26\x32\xf3\xa3\xa1\xdc\xd3\xfb\xf5\xd2\x87\x47\x9e\xbd\xfa\xb1\xbb" "\x2e\xcc\x7d\xbf\x9e\x98\xeb\xfd\xda\xbc\xb1\xb7\xb5\xbc\xae\x5c\xf0" "\x7e\x3d\x5d\x3e\x97\xb2\xef\xaf\xa4\xd2\x9a\xc7\xe2\xbd\xbf\x5a\x3a" "\x4a\xb2\x61\xe6\x9b\x1f\x3d\xeb\xe0\xa3\xb7\x6f\x3c\xb7\xde\x50\xf4" "\x79\xd9\x58\xba\x53\xbf\xbe\xac\x8b\xfa\x23\x67\xbb\xfe\xe1\xda\xef" "\x8f\xdf\x3c\xf1\x1f\xfe\x67\xff\xce\x1b\x5f\xf8\xcd\xaf\x5c\xf7\x83" "\xa9\x0d\x7f\x5a\x6f\xe8\xfd\xb8\xc7\x5c\xfa\x73\xdc\x87\xd2\xfd\x3b" "\x94\xb3\x7f\x1b\x59\xc7\xba\xb3\x79\xff\xbe\xe1\xc6\x9b\xb7\x6f\xa9" "\xb7\x17\xed\xe7\x97\xee\xfa\x37\x9d\x16\xd4\x3f\xf1\x54\xb2\x67\xff" "\x81\x0f\x4e\x6d\xdf\x3e\xbd\x7b\x4f\x77\xdb\xd5\xed\xe7\x69\x5c\x4f" "\x76\x2f\xf7\xfa\x79\x1a\xcf\x6e\xab\x0a\xb6\xab\xd4\xb6\x5d\x8b\xf7" "\xa0\x9b\xfd\xd5\xed\xfb\x2d\xe6\xbf\xa5\xe7\xfd\xd5\xfa\x7e\x1b\x0d" "\x49\x4f\x9f\x0b\x07\xbe\xb3\x72\xe9\xfb\xbf\x78\x68\xdf\x58\xdb\xab" "\xd2\x15\x5d\x5f\x4a\xe3\x97\x7a\x8a\xff\xa3\xab\x8f\xff\xec\xda\x43" "\x9f\xf9\x74\x6e\xfc\x4f\xc4\xf8\x95\x9e\xe2\x4f\x3d\xfd\xf8\xc7\xd6" "\x9c\x7d\xc3\xe1\xdc\xf8\xf7\x25\x69\xfc\xa1\xe2\xf8\xcb\x43\x5b\xfc" "\x0d\x47\x8e\x0f\x2e\x3b\xf9\xf0\x23\xb9\xf1\x27\x63\xfe\xc3\x3d\xe5" "\xff\xd4\x5b\xde\xfe\xe3\xcf\x3f\xf9\xe0\x33\xf5\xf8\xed\x17\x15\x49" "\x88\xf1\x47\x7b\xdb\xff\xcf\x1d\xbe\xf2\xfb\xe3\xe3\x3f\xcd\xcd\xff" "\x89\x24\x5d\x4f\xf5\x1a\x29\x84\xaf\xbc\x70\xd9\xd6\xfa\x7c\x12\x06" "\x9a\xca\x84\x6a\x1e\x03\x2d\x79\x85\xec\x7c\x92\x99\x2f\x65\xe6\xcb" "\xcd\xf3\xa5\x38\x8a\x90\xae\xa0\x9c\x24\xad\xed\x71\xb9\xb4\xfd\x82" "\xd6\x92\xa5\xcd\x1f\xe5\xb4\xc7\xab\xb0\xa1\xd5\xf5\xe9\x8b\x71\x3e" "\x64\x1f\xcc\xdd\x7e\xba\x29\x35\x9d\xfb\x3b\xb5\x17\x5d\xa7\x02\x00" "\xbc\xdc\xc5\xef\xff\xe3\x35\x68\xfc\xfe\x7f\x3a\xbd\x50\xca\x1f\x69" "\x80\x59\x0b\xad\xc3\x56\xe7\xc4\x8d\x75\xd8\xec\x78\x4e\xeb\x77\xac" "\xab\xd3\xf8\xf1\xf5\x71\x1c\x70\xfc\x0d\x61\xb2\x3a\xbd\x63\xa2\x7e" "\xa1\x3f\xdf\xef\x11\xe2\xfb\x21\x3b\xce\x19\xd7\x73\xf1\x6b\x5b\x63" "\x74\x1c\x9f\x38\xd2\xbc\x92\xda\xfa\xdb\xc6\x39\x8b\xc6\xdf\x2f\xcc" "\xcc\xc7\xbc\xea\xe3\xe5\x95\xa6\x3a\x34\xd5\x5e\xd7\x54\x42\x17\xe3" "\xef\xed\xeb\x99\x7b\xfc\x3d\xb3\xf9\xc5\xdf\x67\x4d\x7c\xb4\x2d\xad" "\x89\xa6\x71\xab\xec\xf1\x1b\x48\x47\xcc\x3a\xdd\xef\x90\xc9\xb7\x52" "\x8d\x90\xd7\x3f\xb2\xe3\x62\xf1\x7e\x8e\xf1\xe5\x61\x63\x6d\x7d\x5d" "\xf6\x8f\xec\x7d\x34\xf1\x38\x64\xef\xa3\x89\xeb\x39\x37\x73\xe2\xec" "\xf5\x3e\x9a\xbc\xfe\x31\xd6\xbe\x1f\x5a\xf2\x8a\xfd\x23\x2e\x37\x47" "\xff\xa8\xa5\x5c\xfc\x7d\x64\xfb\xf1\x0b\x73\xec\xdf\xd9\xe3\xd7\x39" "\x5a\xf6\xf8\x0d\xa4\x19\x76\x71\xbc\x87\xaa\xcb\x8f\x2e\xf2\xf7\xb3" "\x7d\x18\x37\xec\x78\x4a\x3b\x75\xe3\x86\x8b\xfb\x7d\xd8\x69\x31\x2e" "\xd9\x21\xfe\xa9\x1d\x97\xac\x0d\x0d\xb6\xc6\x4f\xdf\x60\xa7\xfb\xb8" "\x61\x6c\x8f\xfb\xa9\xd2\xe5\x78\xe2\x7b\x73\xda\xfb\x35\x9e\x18\x4f" "\x17\x31\xaf\x13\x73\xe4\x72\x2a\x18\x4f\x04\x5e\xae\x62\xfd\x1f\x3f" "\x23\xaa\xf5\x7f\xf5\x02\xfc\xe7\xa1\xe9\x24\xdc\x45\x9d\x92\xbd\x6a" "\x8c\xf1\x72\xef\x13\xca\xb9\x09\xbb\xa8\xee\xc8\x5e\x9d\x8f\x86\x91" "\x9e\x3e\xc7\x37\x1f\xd9\xf5\xf1\xc1\xf1\x93\x17\xe7\x5e\xe7\x3c\xd2" "\xed\x7d\x7a\xbb\x5a\xe6\x46\x0a\xee\xfb\x29\xda\x8f\x6b\x33\xf3\x85" "\xfb\x31\x67\x80\xa6\xa8\xde\xcb\xae\xa7\x68\xbf\x67\xef\xcb\x18\x0d" "\xcb\x7a\xda\xef\x9f\x3b\x78\xef\x9b\xef\x5f\x71\xf7\x55\xb9\xfb\x7d" "\x63\xfd\x83\xb4\x78\xbf\x7f\xaa\x65\x6e\x59\xc1\x7e\x3f\x03\xea\x85" "\xce\xf1\xd5\x0b\x2f\x87\x7a\x21\x1c\xcc\x8b\xbf\xd0\xfb\x18\xfe\xeb" "\x4c\x57\xe3\x67\xf9\xf5\x48\xb9\x91\xc7\xa2\xd4\x23\xe9\x8d\x4f\x8b" "\x55\x8f\xfc\x61\x4e\xfb\x7c\xeb\x91\x91\xb6\x07\x8d\xed\xaa\x39\x7d" "\xeb\x91\xd9\x0f\xd2\x96\x7a\x64\xe0\xd4\xe6\x05\x00\x9c\x39\x62\xfd" "\xdf\xf8\xfe\x2c\xad\xff\xff\x29\x5e\x58\xa4\xd7\x11\x45\x75\xeb\x25" "\x99\xf9\x18\x2f\xb7\x6e\xcd\xb9\x3e\xc9\xab\x5b\xff\x20\x9d\xde\x9a" "\x59\x7e\x34\xfd\x17\x15\xf3\xbd\x6e\x7e\xe7\x45\x0f\xdd\xb9\xf4\xe4" "\x83\xe7\xe7\xd6\x2d\xf7\x75\x5b\x87\xfe\xe7\x96\xb9\xb1\xc2\x3a\x74" "\x61\x75\x73\x6e\x9d\xb2\xb1\x3f\xf7\x8b\xe7\xd6\x11\x8d\x3a\x6b\x61" "\x75\x62\x6e\xfe\x8d\x3a\x71\x61\x75\x7a\xce\xd7\xb4\x4d\x75\xfa\xc2" "\xea\xe8\xdc\xfd\xd3\xa8\xa3\x5b\xc7\x01\x3e\x75\x7c\xb6\xd2\x98\x2b" "\x7e\x1c\x07\xc8\x8d\xdf\x18\x07\xe8\x63\x9d\xfb\xab\xd9\x85\xfa\xfc" "\xbd\x58\x7b\xfe\x8d\x3a\xb7\x60\xbc\x2e\xb3\xb2\x38\xdb\xed\x78\xdd" "\x62\xdf\x87\x92\xad\xa3\xab\x2d\x03\xcb\x5b\xb7\xb3\xb5\x2e\x1e\xe9" "\x4f\x1d\x9d\xfe\xf3\xd9\xc5\xaa\xa3\xdf\x93\xd3\x3e\xdf\x3a\x7a\xb4" "\xed\x41\x63\xbb\x6a\x4e\xdf\x3a\xba\xb5\x5d\x1d\x0d\x00\xbc\x5c\xc5" "\xfa\x3f\x5e\xc6\xd5\xea\xff\xc1\x10\x1e\x8b\x0b\x0c\xc7\x07\x0b\xfb" "\x9e\x3d\xb7\x2e\xe8\xd3\x75\x7b\xf6\xf7\x81\x34\xe2\x3f\xb1\x28\x75" "\xe5\x6c\xfc\x3e\x7d\xff\x5b\x5c\xf7\x2d\x76\xdd\xba\xd8\x75\xfd\x62" "\x8f\x4b\x9c\xd6\xdf\xff\x76\x51\x17\x2f\xf6\xb8\xd0\x58\xed\x17\x78" "\x2e\xd6\x38\xd9\x4b\x76\xbf\xeb\xa2\xd4\xc5\xff\xd4\x78\xd4\x75\x5d" "\x9c\xae\x54\x5d\x0c\x00\xc0\xe9\x2c\xd6\xff\xb1\xcc\x8f\xdf\xff\x3f" "\x96\x59\x6e\xa1\xf5\x49\x5b\xfd\x36\x50\xbf\x84\x9c\xad\x4f\xce\xbc" "\xfa\xbc\x79\xb9\x33\xb8\x3e\xbf\x26\x9c\xaa\xfa\x7c\xf0\x4c\xae\xcf" "\xcf\xf4\xf1\xaf\xc5\xbd\x4f\xe6\xe5\x55\xff\xcf\xea\xf1\x7b\xf1\x17" "\x67\xce\xc8\xfa\xff\x4b\x47\xf2\x9e\x69\xae\xff\x6b\x39\xab\xff\x01" "\x00\xce\x48\xb1\xfe\x8f\xff\xec\x31\xfe\xfe\xbf\xff\x96\xce\x67\x7f" "\x6f\x7d\x97\x75\xfa\x7d\xd9\xdb\x79\x7d\x8f\xee\x7b\xf4\xa0\x4e\xef" "\xa2\x4e\xef\xf3\x38\x5b\x8c\xdf\x7c\x1f\xc0\x19\x3c\x0e\x50\x5e\xf8" "\x38\xc0\xf0\x29\xbf\x3f\x7e\x78\x76\xf9\x33\x63\x1c\x60\xbe\xf7\x01" "\x18\x0c\x00\x00\x38\xdd\x0d\x9c\xb5\xa2\x56\xdb\x67\xff\x9d\xfd\xfb" "\xd2\x69\xf6\xdf\xd9\xe7\xfd\xbb\xfc\x6b\x73\x96\xef\x56\x25\xbd\x3c" "\xbe\x61\xef\xee\xe9\xe9\xeb\xf6\xed\xda\x32\xb5\x77\xfa\xba\x9d\x37" "\x6f\x99\xde\x73\xdd\x2d\xbb\xb7\xed\xdd\x3b\xdd\xb8\x76\x5e\x58\xdd" "\x98\x5b\xb7\xa4\x75\xe3\x40\xa8\xa4\xfb\xa3\xf3\x72\xd9\xba\x6d\x45" "\xfa\xfb\x10\x56\xd4\x7f\x1f\x42\xdb\xab\xb2\xcb\xc7\x05\xce\xab\x3d" "\x68\xff\x7d\x08\xd9\x00\xc3\x05\xbf\x47\x60\xa0\x56\xe9\x76\x9f\x6f" "\xde\xf1\x2b\xcd\xb1\x7c\xa7\xfe\x91\x77\xbc\xf3\xe2\xff\x51\xce\xf2" "\x51\xe3\xf8\xdf\xf8\xc7\x97\x5e\xb7\x75\xcf\x75\xdb\x76\x6e\xdb\xbb" "\x6d\x6a\xfb\xb6\x03\xd3\xad\xcb\x8d\xd5\xfe\x25\x75\xf7\x7f\x37\x33" "\x7e\x4f\x39\xaf\xbf\x97\x9a\xf9\xd1\xa6\x34\xff\xbf\xdf\x19\x0f\xcf" "\xc2\xf2\x28\xb5\xe5\x31\x50\xdd\x1f\x03\x3f\xdf\xf8\xef\x3a\x1c\xff" "\x6a\x1e\x49\x26\x8f\x95\x69\x26\x2b\xf3\xfe\xfe\x41\x4e\xde\xdf\xfa" "\x1f\x7f\xfe\xa1\x8b\x66\x7e\xf9\xf9\x10\x26\x5f\x55\x7e\xcd\x82\xf6" "\x5f\xb2\x61\xe6\xbf\x5c\x33\xfd\x07\x7b\x8f\x7d\x6f\x57\x35\xff\x52" "\x6e\xff\xad\xe6\xd3\x58\x32\xcd\xab\xe8\xef\x95\x66\x97\x8f\xdb\x53" "\xd9\x7e\xf3\x9e\xbd\xaf\xdb\x7a\xf3\xbe\x9d\xd9\xbf\x28\xd9\x9b\x38" "\x9e\x51\x6a\xcc\x2f\xd2\x7d\x0d\xe9\xdb\xbf\xdc\xe5\xf8\xc4\xe6\x9c" "\xf6\x82\xf1\x89\xdb\xb3\x41\xcb\x6d\x0f\x4e\x4f\x5d\x8f\x4f\x00\x00" "\xd0\x22\x7e\xff\x1f\xaf\x67\xe3\xf7\x87\x9f\x4c\x2f\xa0\x62\x7b\x61" "\x9d\xbe\xb3\xbe\xdc\x42\xbf\x3f\xce\xad\xd3\x27\xbb\xab\xd3\xb3\x7f" "\x97\x2c\x53\xa7\x17\x2e\x1f\xb7\xb7\xdb\x3a\x7d\x68\x81\x75\x7a\x76" "\xfd\x45\x75\x7a\xa7\xe5\x3b\xd5\xe9\x79\x75\x77\x5e\xfc\x3f\xcc\x59" "\x7e\xbe\xba\xef\x27\x3d\xdc\xe7\x51\x49\xf7\xc3\x17\x0f\xed\xcb\xed" "\x27\xd7\x77\xd7\x4f\xb2\x7f\xcf\xa0\xa8\x9f\x64\x97\x9f\x6f\x3f\x49" "\x16\xd8\x4f\xb2\xeb\x2f\xea\x27\x9d\x96\xef\xd4\x4f\xf2\x8e\x7b\x5e" "\xfc\x77\xe7\x2c\x9f\xa7\xa8\x3f\x54\x1a\xfd\x61\x61\xf7\xe5\xe4\xf6" "\x87\x4f\x74\xd7\x1f\x7e\x23\x33\x5f\xd4\x1f\xb2\xcb\xcf\xb7\x3f\x94" "\x16\xd8\x1f\xb2\xeb\x2f\xea\x0f\x9d\x96\xef\xd4\x1f\xf2\x8e\x6f\x7b" "\xfc\xd6\x01\x82\xfe\x8c\xff\x56\x3b\x46\xad\x5f\x4c\x5f\x77\xcb\xcd" "\xbb\x3f\xd8\xb4\xdc\x62\xff\xfd\x8b\xd0\x7e\x4b\x46\x37\xf9\x2d\x99" "\x7d\xed\xe2\xfe\xfd\x8f\x5e\x75\xbf\x7f\x17\xf7\xbe\xaf\x85\xe7\x1f" "\xc2\x86\x5a\x4b\x5e\xfe\xf1\xfb\x81\x25\xf3\xca\xbf\xdb\xfb\xca\x16" "\x9e\x7f\xd1\xfe\x9f\xc7\x7d\x65\xcb\x43\xdb\x7d\x65\xb9\xf9\x3f\xb1" "\xb0\x91\xb0\xee\xf3\x9f\xd7\x7d\x89\x77\xc4\xe7\xba\xfd\xfb\x2e\x19" "\x79\x8b\xb7\xbf\xfe\x54\x8d\xd7\xa6\xdd\xae\xe8\xfe\xb3\xa2\x71\xdc" "\x4d\x39\xed\xf3\xfd\x3d\xac\x4b\xda\x1e\x9c\x9e\x8c\xe3\xc2\x4b\x27" "\xd6\xff\xf1\x6a\x2e\xd6\xff\x77\xa7\xd3\x7e\x7f\x0d\x74\xe6\xff\x9d" "\xb4\x1e\xee\xbf\x8f\xe7\xe0\x33\xff\xef\x98\x75\x71\xff\xfd\xc2\xee" "\x8f\x2f\xba\x8e\x79\xc5\x7d\x9e\x67\xbf\x72\xf7\x79\x0e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xf0\xb2\x30\x58\x59\x5d\x9b\x1e\xbb\x6b\xcf\xc9\x77\x9d" "\xfb\x7b\xdf\xfa\xb3\xe9\x17\x6e\xff\xfd\xbf\xdf\x71\xc7\xaf\x7f\xf8" "\x0b\x3f\x99\xb8\xf1\x77\xbe\xf9\xc0\xc8\x67\x5f\x3c\xba\xe5\x82\xad" "\x3f\xf8\xdd\xb3\x6e\x7c\xe8\x03\x57\x1d\xb9\xf7\xaf\x1f\x7d\x7e\xd9" "\x57\x7f\xf5\x74\x61\xe0\xb1\xda\xcf\xca\x25\xe9\xec\x50\x08\xc9\xb3" "\x49\x08\x43\x5f\x3f\xf1\x17\x1f\x39\xfa\xed\x73\xaa\x6d\x49\x08\xa1" "\x9c\x8c\x1d\x0c\x61\x65\xb2\xea\xd1\x95\x49\x26\xc2\xe4\x2f\x42\x08" "\x5b\x1a\x79\xb6\x3e\xf9\x95\x17\x2e\xdb\x5a\x9d\xde\x71\xf7\x60\x4b" "\xfb\x8a\x4c\x90\xec\x76\x85\xd1\x72\xcc\xa7\x39\xcf\x10\x6e\x2d\xdc" "\x22\xce\x40\x43\x69\x3f\x3b\x70\xf2\x96\xd7\x85\x1f\xbe\x6d\xd3\x9d" "\xdf\x5d\xf3\xe5\x2f\x0d\x1c\x7e\xe6\xe0\xec\x22\xc9\x50\x53\x7f\x0a" "\x61\xf9\xf5\xcd\xaf\x1f\x08\x21\x0c\xa7\xff\x57\xc5\xde\xb6\x3a\xbe" "\x38\x9d\x6e\x0c\x21\x8c\x34\xbd\xee\x8d\x05\x79\xbd\xb6\xcb\xfc\xd7" "\xe5\xcc\x9f\x97\x4e\x97\xa4\xd3\xd1\x82\x38\xf1\xf9\x0b\x33\xf3\xa5" "\xcc\x72\xd9\xf9\x68\x20\x33\x6d\xda\xd6\xe1\x82\x55\xf7\x24\x2f\x8f" "\x5e\x97\x2b\xb2\x34\x33\x9f\x3d\x19\x2d\x54\x5e\x9e\xb1\x7d\x65\x3a" "\xfd\x5a\x3a\xbd\x64\xae\x60\x1d\xf6\x78\x39\xfe\x9f\x84\x52\x12\x2a" "\x8d\xf4\xb7\x27\xb3\x7d\x24\x34\x1d\xb7\x24\x24\xb5\x63\x39\xd4\x98" "\x2f\x35\x8e\x6d\x48\xb7\x3f\x33\x9f\x64\xe6\x4b\x99\xf9\xf2\x40\x66" "\xbb\x6a\xeb\x4d\x3b\x5a\x39\x49\x5a\xdb\xe3\x72\x99\xf6\x78\x3a\xae" "\xa4\xed\x17\x34\x9f\xab\x3b\x78\x4f\x4e\xfb\xab\xd3\xe9\x50\xfa\x46" "\x7d\x31\xce\x87\xec\x83\xba\xd1\xb6\x07\x8d\xed\xaa\x89\x79\x9d\x98" "\x23\x97\xd4\x7f\xea\xdc\x5c\x29\x7e\x65\x17\x4a\x4d\xe7\xa0\x4e\xed" "\x8d\x03\x9f\x1e\x8c\xd1\xb4\x6d\x34\x59\xd5\xf6\x9a\x99\x0e\xe2\x73" "\x47\x37\xdd\xb3\xb6\xbc\xf9\x1b\xc7\xc6\x72\xf2\x48\x1e\x48\xd2\xf8" "\x49\x4f\xf1\x0f\x7c\x67\xe5\xd2\xf7\x7f\xf1\xd0\xbe\xd5\x79\xf1\xaf" "\x2f\xa5\xf1\x4b\x3d\xc5\xff\xd1\xd5\xc7\x7f\x76\xed\xa1\xcf\x7c\x3a" "\x37\xfe\x27\x62\xfc\x72\x4f\xf1\x2f\x7d\x78\xe4\xd9\xab\x1f\xbb\xeb" "\xc2\xdc\xfd\x73\x22\xee\x9f\x4a\x4f\xf1\xa7\x9e\x7e\xfc\x63\x6b\xce" "\xbe\xe1\x70\x6e\xfe\xf7\xc5\xf8\x43\x3d\xc5\xdf\x70\xe4\xf8\xe0\xb2" "\x93\x0f\x3f\x92\x9b\xff\x64\xdc\x3f\xc3\x3d\xc5\x7f\xea\x2d\x6f\xff" "\xf1\xe7\x9f\x7c\xf0\x99\xdc\xf8\x21\xc6\x1f\xe9\x29\xfe\xe6\x23\xbb" "\x3e\x3e\x38\x7e\xf2\xe2\xdc\xf8\x8f\xc4\xfd\x33\xda\x5b\xff\x79\xee" "\xf0\x95\xdf\x1f\x1f\xff\xe9\x44\x5e\xfc\x27\x62\xfc\x65\x3d\xc5\xff" "\xdc\xc1\x7b\xdf\x7c\xff\x8a\xbb\xaf\xca\x3d\xbe\x1b\xe3\xfe\x19\xeb" "\x29\xfe\x3b\x2f\x7a\xe8\xce\xa5\x27\x1f\x3c\x3f\xef\xdc\x99\xdc\xd7" "\xaf\x4f\x4e\x80\x57\xa6\xb3\xd2\x6b\xac\x8f\xa6\xf3\xbd\xd6\x99\x0b" "\xd5\x54\x2f\xfc\xd5\x44\xa5\x7e\xcd\xb7\x34\xfd\x7f\x59\x3f\x57\x94" "\x51\x5d\xcf\xf2\x45\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xcb\xd3\x3f" "\xde\x76\xf9\xfb\xae\x79\xeb\xbb\x37\x55\x92\x10\x92\x5a\xcb\x4c\x92" "\x5d\x66\xa6\x83\xf8\x5c\x79\xc9\x86\x0d\x13\x3d\xac\x77\xea\xe9\xc7" "\x3f\xb6\xe6\xec\x1b\x0e\x37\xb7\xad\x2e\x7a\xd1\x60\x0f\x2b\x02\x00" "\x00\x00\x1a\x75\x78\xa9\xd1\x32\x14\x56\x87\x5b\x92\xe1\x70\x5e\xc7" "\xe5\xe3\xe0\xc0\x79\x71\x2e\x69\x6d\xcf\x0e\x1e\xc4\x38\xd9\x31\x82" "\x5e\xe3\x94\x3a\xc4\x29\xf5\x10\xa7\xdc\xa7\x7c\x2a\x7d\x8a\x33\xd0" "\xa7\x38\x4b\xfa\x14\x27\x3b\xd4\xd2\x6b\x9c\xa1\x82\x38\xd5\xe7\x5f" "\xdf\x45\x9c\xe1\x39\xe2\x54\xaa\x3d\xa0\xcb\x7c\x46\xe6\xcc\xa7\xfb" "\x38\xa3\x7d\x8a\xb3\xb4\x4f\x71\x96\x65\x42\xf4\x1a\x67\x79\x9f\xf2" "\x59\xd1\xa7\x38\x63\x73\xc6\xe9\xbe\x1f\xae\xec\x53\x9c\x55\x7d\x8a" "\x73\x56\x9f\xe2\x9c\xbd\xf0\x38\xb5\xb7\xfa\xab\xfa\x94\xcf\xaf\x75" "\x13\xe7\x43\xed\xcf\x67\xe3\x9c\xd3\xa7\x7c\xb2\x63\xca\xf3\xed\x87" "\xcb\xd2\x25\xcf\xcd\x8b\x53\x7b\x50\x2e\x8c\x53\x49\xca\x8d\x27\x3a" "\x8d\xa7\x9f\x93\xae\xe7\xfc\x05\xae\x67\xb4\x60\x3d\xcb\x8a\x3e\x8f" "\xbb\x5c\xcf\x70\x97\xeb\x79\x6d\xe6\x75\xa5\x79\xae\x67\xa8\xcb\xf5" "\x5c\xbe\xc0\xf5\x24\x5d\xae\xe7\x37\x16\xb8\x9e\x52\xc1\x7a\x62\xbf" "\xbd\x35\x9b\x5f\x5c\x4f\x9c\xeb\xb2\xff\xef\xef\x53\x9c\x03\x7d\x8a" "\xf3\xe1\x3e\xc5\xb9\xad\x4f\x71\xfe\xa4\x4f\x71\xfe\xb4\x4f\x71\x6e" "\x0f\xad\x17\xa7\xf3\x8d\x03\xd0\xad\x58\xff\xcf\xd6\x7b\x63\x61\xb0" "\xf2\x5b\x61\x24\x3d\xe3\x64\x47\x01\x62\xbd\xbb\xa6\xf6\xb3\xfd\xf3" "\x2e\xef\x84\x14\xe3\xbd\x26\xd3\xbe\xa4\x28\x5e\xb6\x50\xcf\xc4\x5b" "\x33\xdf\xfc\xb2\x03\x08\xad\xf1\xda\x9e\x1d\x68\x89\x57\x69\xd4\x23" "\x73\xc4\x1b\x6a\xce\x6f\x6d\xe6\xc9\xb9\xb6\xf7\x2d\x1b\x3a\xe7\xd6" "\x1c\xef\x92\x4c\xfb\xe0\x1c\xf1\x5a\x36\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x4e\x81\x7f\xbc\xed\xf2\xf7" "\x5d\xf3\xd6\x77\x6f\x0a\x49\xa8\xfe\xd7\xd1\x4c\x07\xf1\xb9\xf2\x92" "\x0d\x1b\x26\x5a\x17\x1f\xea\x66\xbd\x47\x37\xdd\xb3\xb6\xbc\xf9\x1b" "\xc7\x9a\xdb\x2a\x95\x9e\x36\x01\x00\x00\x00\x28\x10\xeb\xf0\x81\x46" "\xcb\x50\x18\xac\xac\x0f\x83\xc9\x92\x96\xe5\x86\xd2\x71\x80\x58\xdc" "\x97\xc7\xea\xd3\xf1\xe5\x61\x63\x75\x9a\x4c\x94\x6a\xf3\x23\xc9\xca" "\x39\x5f\x57\x49\x5f\xb7\x6e\xef\x8e\x5d\xeb\xf6\xec\x3f\xf0\xfa\x6d" "\x3b\xa6\x6e\x9a\xbe\x69\x7a\xe7\x9b\xd6\x5f\xbe\xfe\xca\xc9\x2b\xae" "\xbc\x62\xdd\xd6\x6d\xdb\xa7\x27\xeb\x3f\x43\x18\xec\x18\xaf\xdc\xdc" "\x54\x1b\x7e\xd8\xb3\xff\xc0\x07\xa7\xb6\x6f\x9f\xde\xbd\xa7\xde\x98" "\xcd\x7f\x75\x9a\xc7\xea\x74\x3e\x49\x5f\x37\xfe\x86\x30\x59\x9d\xde" "\x91\xe6\xbf\xaa\x20\xff\x52\xdb\xfa\xf6\x0f\xc7\x07\x07\xfa\xfc\xa0" "\xe8\xd8\x01\x00\x00\x00\xc0\xbf\xb2\x6b\xb7\x21\x96\x95\x75\x00\xc0" "\xff\xe7\xde\x3b\xf7\x5e\x47\x37\x27\x7c\xbb\x2e\xee\x7a\x59\x57\xb1" "\xb2\xd2\x6d\x0c\x2d\x71\x0e\x04\x19\xbe\x2c\x0e\x42\xcc\x58\x93\x2c" "\xb9\x92\x34\xba\x8b\xee\x8a\xd9\xa4\x0b\xa9\x29\x45\xa0\x2c\x2c\x1b" "\x7e\x68\xc3\x24\x4d\xfa\xe2\x4b\x4a\xe4\x0b\x0b\x86\x59\x42\xb3\x2d" "\xa1\x52\x7e\xa8\x0f\x85\x96\xa1\xe2\x87\x50\x6e\xcc\xcc\x39\xf7\x6d" "\xee\xf5\x4e\x37\xdb\x59\xed\xf7\xfb\x70\xcf\xb9\xff\xe7\xff\x3c\xff" "\xe7\x39\x2c\x0b\xff\x73\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xe0\x50\x9b\x9f\x1b\x9f\x99\x9a\x98\x9c\x1e\x4d" "\x22\x92\x3e\x39\x8d\x1e\xf2\xb1\x62\x39\x4d\xeb\x43\xd4\xfd\xf2\xe3" "\xdb\xbf\x5f\x59\xff\xd6\xe9\xed\xb1\x4a\x69\x88\x85\x00\x00\x00\x80" "\x81\xf2\x3e\x7c\xa4\x19\xa9\x46\xa5\x54\x8c\x62\x9c\xb8\xf8\x6d\x43" "\xb4\x0d\x44\xab\xef\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xff\xcc\xcf\x8d\xcf\x4c\x4d" "\x4c\x4e\x1f\x99\x44\x24\x7d\x72\x1a\x3d\xe4\x63\xc5\x72\x9a\xd6\x87" "\xa8\xfb\xf2\x1b\x0f\x7e\xfa\x85\xf5\xeb\xff\xda\x1e\xab\x0d\xb1\x0e" "\x00\x00\x00\x30\x58\xde\x87\x17\x9a\x91\x6a\xd4\xe2\x94\x18\x49\x4e" "\x5c\xe8\xfc\x9b\xd1\xfc\xdd\xc0\xda\xae\xf9\x4b\x79\x2d\xf9\x3a\xeb" "\x56\x98\xd7\xfd\xee\xa0\x5f\xde\x29\x2b\xcc\x3b\x6d\x85\x79\x1f\x19" "\x90\xb7\x39\xbb\xde\x18\x00\x00\x00\xf0\xfe\x97\xf7\xff\xa5\x66\x64" "\x2c\x2a\xa5\x35\xcb\xfa\xe1\xbc\xff\x1f\xd4\xd7\xe7\x79\x27\x77\xe5" "\x15\xb3\x6b\xbd\x3d\xe9\x5d\x95\x57\x92\x04\x00\x00\x00\xac\x40\xde" "\xff\x57\x9a\x91\x5a\x54\x4a\xb5\x66\xbf\xbe\xd2\x7e\x7f\x43\x2b\xb4" "\xf8\xd3\x79\x3e\x7f\xd0\xef\xf6\xf9\xfc\x53\xbb\xf2\xf2\xf9\x83\x7e" "\xcf\xbf\x24\xbb\xfa\x9d\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xde\x3f\xe6\xe7\xc6\x67\xa6" "\x26\x26\xa7\x8b\x49\x44\xd2\x27\xa7\xd1\x43\x3e\x56\x2c\xa7\x69\x7d" "\x88\xba\x9b\x9e\x18\xfd\xfb\x45\xfb\x6f\xdb\xd0\x1e\xab\x94\x86\x58" "\x08\x00\x00\x00\x18\x28\xef\xc3\xb3\xd6\x3b\x89\xa8\x46\xa5\x34\x1a" "\x23\x71\xe4\x62\xdf\xbf\xfe\x82\x7b\x1e\xfe\xe2\xc3\x8f\x8e\x47\xc4" "\x52\x9b\x5f\x2e\xc7\x8d\x5b\x76\xec\xb8\x6e\xd3\xc2\x67\x6c\xca\xf3" "\xce\x7a\x6e\xff\xc8\xf7\x9e\x79\xf5\x5b\xcb\xf2\xce\x5a\xfa\x5c\xcd" "\x33\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xef\x8d\xf9\xb9\xf1\x99\xa9\x89\xc9\xe9\x23\x92" "\x88\xa4\x4f\x4e\xa3\x87\x7c\xac\x58\x4e\xd3\xfa\x10\x75\x5f\xfa\xec" "\xe7\xff\x7c\xff\xc1\xc7\x5e\x69\x8f\xd5\x86\x58\x07\x00\x00\x00\x18" "\x2c\xef\xc3\x5b\xbd\x7f\x35\x6a\x51\x8e\x72\x1c\xbf\xf8\xad\xbd\xd7" "\x5f\x50\xe8\x9a\xdf\xef\x9d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xf0\xc1\x71\xfd\x37\x6e\xfa\xfa\x96\xd9\xd9\xad\xd7\xb9\x59" "\x9d\x9b\x46\x31\xe2\x30\xd8\xc6\x7f\x79\x93\xff\x73\x5a\xc5\x6d\x94" "\xb3\x2d\x1c\x06\x4f\xe3\xbd\xb8\xa9\xae\xf6\x36\x56\xef\xff\x24\x00" "\x00\xe0\x7f\xe3\xe4\x48\xa2\xf1\x1f\x3a\xe1\xd2\xd5\xde\x35\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x70\x38\x98\x9f\x1b\x9f\x99\x9a\x98\x9c\xae\x26\x11\x49\x9f\x9c" "\x46\xae\xd2\x0a\xe4\x63\xc5\x72\x9a\xd6\x87\xa8\x9b\x3e\xfe\x7c\x65" "\xcd\x5b\x4f\x3c\xd5\x1e\xab\x0d\xb1\x0e\x00\x00\x00\x30\x58\xde\x87" "\xb7\x7a\xff\x6a\xd4\x62\x24\x46\xe2\xb8\xc5\x6f\xbd\xde\x09\x34\x16" "\xfa\xff\xb1\x43\xb8\x49\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe0\xb0\x32\x3f\x37\x3e\x33\x35\x31\x39\xbd\x26\x89\x48\xfa\xe4\x34" "\x7a\xc8\xc7\x8a\xe5\x34\xad\x0f\x51\xf7\xbe\x5d\x7b\x3f\x73\xef\xd1" "\xdf\xbd\xb0\x3d\x56\x29\x0d\xb1\x10\x00\x00\x00\x30\x50\xde\x87\x97" "\x9b\x91\x6a\x54\x4a\x1f\x8d\x4a\x9c\x94\x7d\x9f\xed\x9c\x90\x14\xb3" "\x6b\xef\xf7\x02\xad\x79\xdb\x3b\xa6\x8d\xae\x78\xde\x5c\xc7\xbc\xe2" "\xbb\xcd\x4b\x4a\x11\xcd\x79\x77\x74\x9d\xac\x94\x9d\x66\x69\x5e\x35" "\x5f\x6f\x6c\xe9\xda\xac\x57\x6f\xcd\x2b\x64\xf3\xea\x6d\xf3\x6a\xd1" "\x2c\x5f\x6f\xce\x5b\x7c\x58\xbb\x3b\xaa\xad\x19\x70\xbe\xe5\x4f\x1e" "\x00\x00\x00\x0e\x9d\xbc\xff\xaf\x34\x23\x63\x51\x29\x55\xda\xfa\xff" "\x9f\x64\xd7\x23\xb2\x6b\xbf\x3e\xb7\x70\x68\x37\x0e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x76\xe6\xe7\xc6" "\x67\xa6\x26\x26\xa7\x93\x24\x22\xe9\x93\xd3\xe8\x21\x1f\x2b\x96\xd3" "\xb4\x3e\x44\xdd\x9b\x7e\xf3\xe1\xa3\xbe\xf2\xd3\x3b\x77\xb6\xc7\x6a" "\x43\xac\x03\x00\x00\x00\x0c\x96\xf7\xe1\xad\xde\xbf\x1a\xb5\x58\x17" "\x1f\x8a\x75\x8b\x7d\x7f\x8c\x75\xe6\xe7\x79\xff\x98\x7a\xfb\xde\xbb" "\xff\xf9\x97\xd3\x23\xce\x3c\xfe\xc0\xfa\x2f\x74\x2f\xfb\xc3\xfc\xe6" "\x57\x2f\x9d\xff\x64\xf7\x47\x44\xa1\x33\xbb\x10\x71\x74\x56\x2f\xe9" "\x53\xef\xd7\xbf\xbb\xfb\x86\x8d\x8d\xb7\xef\x8f\x38\xf3\xb8\xe2\x49" "\xa5\xbe\xe7\xe9\x5d\xaf\x73\xc9\xb4\xf1\xc8\xd4\xd6\x4b\x76\x3c\x73" "\x60\xfb\x80\x87\x03\x00\x00\x00\x1f\x10\x79\xff\x3f\xd2\x8c\x8c\x45" "\xa5\x74\x6d\xdf\xfe\x3f\xef\xbc\x3b\xfb\xff\x01\xfd\xf8\xd1\x37\xec" "\xfa\xf9\xb1\xd9\x67\xd6\x91\x77\xcd\x28\x8c\x65\xf5\x0a\x7d\xea\x7d" "\x6e\xe3\x83\x7f\x3a\xf5\x9c\xbf\xbd\xba\xd0\xff\x2f\xaf\xf7\xf1\xe6" "\xdd\x27\xf7\x5e\x73\xef\xb1\x1d\x05\x97\x22\x5d\x92\xb4\x31\x71\xcd" "\xce\xcd\x07\xce\xde\x57\xc8\x4f\xbd\x54\xbf\xd8\x55\x3f\x7f\x2e\x5f" "\xfa\xe6\x2b\xff\xba\xea\xc6\xbb\xde\x5e\xaa\x5f\x8d\x6a\x16\x5f\xdb" "\xb5\x95\xa5\x6a\xed\x9f\x37\xf7\x78\x2a\x49\xa4\x8d\xd9\xc2\x9e\xe9" "\x8b\xdf\xd9\x33\xd7\x59\xbf\xd4\xe7\xfc\xb7\xfd\xf6\xa9\x83\xbf\x5c" "\x7b\xe7\x9b\x0b\xf5\xdf\x38\x79\xb4\x59\xff\xb4\xe8\x55\x7f\xe9\xe4" "\xa5\xb6\x5d\x74\x39\x22\x6d\x8c\x5e\x76\xfb\xee\x73\xf7\xee\xdf\xdc" "\x59\x3f\x22\xea\xbd\xea\xbf\xf6\xe6\x85\x71\xc2\x1f\xae\xbe\xb5\xfb" "\xfc\xa3\x71\xb0\x63\xe1\xf6\x27\xdf\xfe\xd9\xfd\x00\xd2\xc6\x73\x1b" "\x5e\xdf\x77\xce\x3d\xb5\xf3\x3a\xeb\x27\x5d\xf5\xf3\xe7\xff\xb3\x83" "\xf7\xed\xfe\xf1\x5d\xdf\x79\x34\xaf\x9f\xff\xad\xc8\xe9\xa7\xc4\x0a" "\xeb\x17\xba\xea\x3f\x7b\xc7\x31\xbb\x9e\xbe\xe5\xd2\xb5\x9d\xf5\x0b" "\x7d\xce\xff\xe4\xe5\x2f\xac\xdf\x56\xff\xf6\xef\xbb\xcf\x7f\x65\xc7" "\xaa\xa5\xbe\xbb\x58\x7e\xfe\x07\xce\x78\xe8\x8a\x17\xb7\xa4\xbd\xfe" "\x79\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7c" "\x80\xcc\xcf\x8d\xcf\x4c\x4d\x4c\x4e\x17\x92\x88\xa4\x4f\x4e\xa3\x87" "\x7c\xac\x58\x4e\xd3\xfa\x10\x75\x5f\xbe\xe8\xf9\xd7\x2e\xbf\xf3\x47" "\x3f\x68\x8f\xd5\x86\x58\x07\x00\x00\x00\x18\x2c\xef\xc3\x5b\xbd\x7f" "\x35\x6a\x51\x8e\x72\x8c\x2e\xf6\xfd\x8f\x4c\x6d\xbd\x64\xc7\x33\x07" "\xb6\xc7\xd8\xd2\x68\x92\x5d\x4b\xb3\xdb\xae\xdf\xf1\xb1\xab\xb6\xed" "\xbc\xf6\xca\x55\xda\x39\x00\x00\x00\xb0\x52\x2f\x5f\x94\x2c\xf6\xff" "\xa5\x66\x64\x2c\x2a\xa5\x8d\x31\x92\xf5\xff\x13\xd7\xec\xdc\x7c\xe0" "\xec\x7d\x85\xbc\xff\x2f\x2c\x5c\x93\x88\xb8\xea\xea\xd9\xad\x67\x46" "\x33\xef\xd9\x3b\x8e\xd9\xf5\xf4\x2d\x97\xae\x6d\xbe\x27\x88\x58\xfc" "\xb3\x80\xea\x42\xde\xa7\x5a\x79\x17\x9c\xff\xfc\xd8\xeb\x7f\xfc\xda" "\xa9\x3d\xf3\x36\xb5\xf2\x9e\xdb\xf0\xfa\xbe\x73\xee\xa9\x9d\x97\xe7" "\x45\x7b\xde\x59\xd1\x7c\x3f\xf1\xc0\x19\x0f\x5d\xf1\xe2\x96\xf4\xe6" "\xe6\xfe\xda\xf3\x3e\xf1\xd5\x6d\xb3\xd9\xeb\x89\x7c\xdd\xd1\xcb\x6e" "\xdf\x7d\xee\xde\xfd\x9b\x0b\xf9\x7b\x8c\xec\x3a\x9a\xad\x9b\xe7\xcd" "\x16\xf6\x4c\x5f\xfc\xce\x9e\xb9\xc2\x58\x54\x16\xc6\x8b\x59\x5e\x35" "\x3b\x37\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xb0\xdc\xfc\xdc\xf8\xcc\xd4\xc4\xe4\x74\x14\x23\x92\x3e\x39\x8d" "\x76\x59\x20\x1f\x2b\x96\xd3\xb4\x3e\x44\xdd\x8b\x37\xfe\xe2\xd6\xa3" "\xde\x7a\x6c\x5d\x7b\xac\x52\x1a\x62\x21\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xcd\x0e\x1c\x08\x00\x00" "\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x15\xf6\xeb\x27\x34\x8e\x2a\x8e\x03\xf8\x7b\xbb" "\x89\xd9\x64\x93\x36\x69\x05\xa3\x62\x9a\x56\x45\xa9\x87\x16\x05\x11" "\xbd\xa8\xa8\x48\x2b\x52\xf0\x54\x29\x52\x6d\xed\x41\x14\x04\x11\xa5" "\x1e\x4c\xa5\x15\x4b\x55\xbc\x08\x56\x2f\x45\x54\x50\xa3\x14\x2a\xd8" "\x58\x2c\xad\x92\x8a\xff\x8a\x17\x0f\x2a\x28\x54\x0f\x42\x29\x06\x34" "\x4b\xf1\xa0\x92\xcd\x9b\xcd\x66\xb2\x93\xc4\x8d\x3d\x58\x3e\x1f\x58" "\xde\xbe\x37\x33\xdf\xf9\xcd\xcc\xdb\xb7\xbb\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xff\x2b\x5d\x1d\x83\xf5\xf6\xc4\x9e\xc7" "\x6a\x77\x5f\x72\xfb\x17\xcf\x3c\x38\xf9\xf4\x9d\x1f\x3d\xb2\xeb\xaa" "\xa7\xde\xf9\x65\x78\xdb\xad\x9f\x1f\xec\x79\xf3\xec\xf8\xf6\xd5\x3b" "\xbe\xbf\x6d\xe5\xb6\x23\x0f\x6d\x18\xdb\xff\xda\xf1\x3f\xfa\x3e\xf8" "\xeb\xd4\x82\xc1\x4f\x4e\x37\x6b\x53\xb7\x12\x42\x3c\x13\x43\xa8\x7c" "\x3c\xf1\xf2\xb3\xe3\x5f\x5e\x34\x35\x16\x43\x08\xe5\xd8\x3f\x12\xc2" "\x40\x5c\x71\x7c\x20\xe6\x12\xd6\xff\x19\x42\xd8\xde\xa8\x73\xf6\xc6" "\x43\x93\xd7\xed\x98\x6a\x77\xed\xeb\x9a\x35\xbe\x3c\x17\x92\xbf\xae" "\x50\x2d\x67\xf5\x4c\xeb\x9f\x5d\x2f\xe7\x97\x4a\x9a\x67\x3b\x6b\x4f" "\x5c\x13\x7e\xbc\x65\xf3\xee\xaf\x57\xbd\xff\x5e\xe7\xe8\xe9\x91\x99" "\x5d\xe2\xd4\x3e\xe5\x34\x9f\x42\x58\xb6\xb5\xf9\xf8\xce\x10\x42\x77" "\x7a\x4d\xc9\x66\xdb\x60\x76\x70\x6a\x37\x85\x10\x7a\x9a\x8e\xbb\x61" "\x81\xba\x2e\x5f\x64\xfd\xeb\x42\xa8\xe5\xfa\x75\x97\xa6\xf6\x82\xd4" "\x56\x17\xc8\xc9\xb6\xaf\xc9\xf5\x4b\xb9\xfd\xf2\xfd\x4c\x67\xae\xed" "\x99\xff\x34\x4b\x56\x54\xc7\x82\xfb\x75\xb7\x77\xbe\xde\x5c\x3f\xbf" "\x18\x2d\x55\xa3\xce\x75\xad\xc7\x07\x52\xfb\x61\x6a\xd7\xfe\xcb\xfc" "\x72\xf6\x8a\xa1\x14\x43\x47\xa3\xfc\x87\xe3\xcc\x1c\x09\x4d\xcf\x2d" "\x86\x58\x7f\x96\x95\x46\xbf\xd4\x78\xb6\x21\x5d\x7f\xae\x1f\x73\xfd" "\x52\xae\x5f\xee\xcc\x5d\x57\xfd\xbc\x69\x46\x94\x63\x9c\x3d\x9e\xed" "\x97\x1b\xcf\x96\xe3\x8e\x34\xbe\xba\x79\xad\x6e\xe1\x9e\x82\xf1\x8b" "\x53\x5b\x49\x1f\xd4\xb3\x59\x3f\xe4\xdf\x4c\xab\xce\x79\xd3\xb8\xae" "\xba\xac\xae\x89\xdc\x79\x3a\xe6\xa9\xed\x5c\x28\x35\xad\x41\xad\xc6" "\x1b\x0f\x3e\x3d\x8c\x6a\x1a\xab\xc6\x15\x73\x8e\xf9\xbb\x85\x6c\xdb" "\xf8\xe6\xe7\xaf\x2c\x6f\xf9\xe4\x44\x7f\x41\x1d\xf1\x60\x4c\xf9\xb1" "\xad\xfc\x9d\x5f\x0d\xf4\xde\xf7\xee\xde\xc7\x07\x8b\xf2\xb7\x96\x52" "\x7e\xa9\xad\xfc\x9f\x36\x9e\xfc\xed\xde\xbd\xaf\xbf\x5a\x98\xff\x52" "\x96\x5f\x6e\x2b\xff\xda\xa3\x3d\x67\x36\x7e\xba\x67\x4d\xe1\xfd\x99" "\x98\x59\x41\x16\x93\x1f\x53\x3f\xdb\x76\xff\xa9\xcf\x5e\x58\x75\xe1" "\x03\xa3\xad\x9e\x75\x3d\xf3\x40\x76\xff\x2b\x6d\xd5\x7f\xf3\xd8\xc9" "\xae\xbe\xda\xd1\x63\x85\xf5\xaf\xcf\xee\x4f\x77\x5b\xf9\x3f\xdc\x74" "\xc7\xcf\x6f\x7f\x7b\xf8\x74\x61\x7e\xc8\xf2\x7b\xda\xca\xdf\x32\xf6" "\xe8\x8b\x5d\x43\xb5\xab\x0b\xf3\x8f\x4d\x7f\x14\xaa\xf5\x19\xda\xc6" "\xfc\xf9\x7d\xf4\xfa\xef\x86\x86\x7e\x1d\x2e\xca\xff\x26\xbb\xff\x7d" "\x2d\xf2\xe3\x7c\xf9\xf5\x9f\x06\x6f\x8d\xec\xbf\xf1\x8d\xe5\xfb\x36" "\x14\xce\xcf\x4d\xd9\xfd\xe9\x4f\xf9\x73\xbf\xd8\xe6\xab\xff\xae\x2b" "\x8e\xec\xee\xad\x1d\xbe\xac\x68\xed\x8c\x07\x16\xfb\x0d\x0b\x40\x2b" "\x2b\xd3\x6f\xac\xe7\x52\x7f\xa1\xff\x99\x87\x26\x4b\x2d\xff\x67\x2e" "\x55\xd3\xff\x85\x57\x86\x3b\xa6\xbf\x81\x7a\xd3\xab\xef\xbf\x3c\x51" "\xce\xd4\x79\x96\x9d\xc3\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\x87\x1d\x38\x20\x01\x00\x00" "\x00\x10\xf4\xff\x75\x3b\x02\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9e\x0a\x00\x00" "\xff\xff\x45\xc6\x09\x4a", 23279)); NONFAILING(syz_mount_image(/*fs=*/0x200000000140, /*dir=*/0x200000000000, /*flags=MS_LAZYTIME|MS_I_VERSION*/ 0x2800000, /*opts=*/0x200000000180, /*chdir=*/0xee, /*size=*/0x5aef, /*img=*/0x200000001080)); 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 = 0x103042 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x2000000000c0, "./file1\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000000c0ul, /*flags=O_SYNC|O_CREAT|FASYNC|O_RDWR*/ 0x103042, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x101042 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000040, "./file1\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000040ul, /*flags=O_SYNC|O_CREAT|O_RDWR*/ 0x101042, /*mode=*/0); if (res != -1) r[1] = res; break; case 3: // pwrite64 arguments: [ // fd: fd (resource) // buf: ptr[in, buffer] { // buffer: {32} (length 0x1) // } // count: len = 0xfdef (8 bytes) // pos: intptr = 0xfecc (8 bytes) // ] NONFAILING(memset((void*)0x200000000140, 50, 1)); syscall(__NR_pwrite64, /*fd=*/r[1], /*buf=*/0x200000000140ul, /*count=*/0xfdeful, /*pos=*/0xfeccul); break; case 4: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x0 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000000, "./file1\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000000ul, /*flags=*/0, /*mode=*/0); if (res != -1) r[2] = res; break; case 5: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: open_flags = 0x441 (4 bytes) // mode: open_mode = 0x108 (2 bytes) // ] // returns fd NONFAILING(memcpy((void*)0x200000000080, "./file1\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=O_CREAT|O_APPEND|O_WRONLY*/ 0x441, /*mode=S_IXGRP|S_IRUSR*/ 0x108); if (res != -1) r[3] = res; break; case 6: // fallocate arguments: [ // fd: fd (resource) // mode: fallocate_mode = 0x1 (8 bytes) // off: intptr = 0x5 (8 bytes) // len: intptr = 0x7fff (8 bytes) // ] syscall(__NR_fallocate, /*fd=*/r[3], /*mode=FALLOC_FL_KEEP_SIZE*/ 1ul, /*off=*/5ul, /*len=*/0x7ffful); break; case 7: // sendfile arguments: [ // fdout: fd (resource) // fdin: fd (resource) // off: nil // count: intptr = 0x100001 (8 bytes) // ] syscall(__NR_sendfile, /*fdout=*/r[0], /*fdin=*/r[2], /*off=*/0ul, /*count=*/0x100001ul); 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; install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }