// https://syzkaller.appspot.com/bug?id=f0e3a596cf7d40c411b70564c658bbd60c372827 // 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 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_ppoll #define __NR_ppoll 73 #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"); } 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"); } static void setup_sysctl() { char mypid[32]; snprintf(mypid, sizeof(mypid), "%d", getpid()); struct { const char* name; const char* data; } files[] = { {"/proc/sys/kernel/hung_task_check_interval_secs", "20"}, {"/proc/sys/net/core/bpf_jit_kallsyms", "1"}, {"/proc/sys/net/core/bpf_jit_harden", "0"}, {"/proc/sys/kernel/kptr_restrict", "0"}, {"/proc/sys/kernel/softlockup_all_cpu_backtrace", "1"}, {"/proc/sys/fs/mount-max", "100"}, {"/proc/sys/vm/oom_dump_tasks", "0"}, {"/proc/sys/debug/exception-trace", "0"}, {"/proc/sys/kernel/printk", "7 4 1 3"}, {"/proc/sys/kernel/keys/gc_delay", "1"}, {"/proc/sys/vm/oom_kill_allocating_task", "1"}, {"/proc/sys/kernel/ctrl-alt-del", "0"}, {"/proc/sys/kernel/cad_pid", mypid}, }; for (size_t i = 0; i < sizeof(files) / sizeof(files[0]); i++) { if (!write_file(files[i].name, files[i].data)) printf("write to %s failed: %s\n", files[i].name, strerror(errno)); } } 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) { int i, call, thread; for (call = 0; call < 2; 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 == 1 ? 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 (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_call(int call) { switch (call) { case 0: NONFAILING(*(uint64_t*)0x20000100 = 0); NONFAILING(*(uint64_t*)0x20000108 = 0x3938700); syscall(__NR_ppoll, /*fds=*/0ul, /*nfds=*/0ul, /*tsp=*/0x20000100ul, /*sigmask=*/0ul, /*size=*/0ul); break; case 1: NONFAILING(memcpy((void*)0x20005d80, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x20005dc0, "./file0\000", 8)); NONFAILING(*(uint8_t*)0x20005e00 = 0); NONFAILING(memcpy( (void*)0x20000000, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\xab" "\x8f\x95\x2c\x9b\x15\x12\x62\x31\xb2\x1d\x71\xc1\x16\x28\x10\xcb\x77" "\x8e\x36\xce\xd9\xb1\x1d\xd9\xc8\xc2\x02\x2c\x4e\x27\x09\x58\x61\x1d" "\x42\x12\xfa\x40\x20\x5d\xc2\x57\x0e\x08\x26\x29\x55\x41\x1d\x04\xe2" "\x94\x0e\x28\x72\x95\xba\x4a\x70\xe9\x12\xc2\x9d\x52\x25\x63\xc0\x57" "\xbe\x2a\x0a\x99\xf8\x0f\x8e\x7c\x1d\x15\x9c\x3f\xe2\x23\xaa\xb3\xc4" "\x11\xc9\xe5\x4d\xed\x6e\xf7\xee\x4c\x6f\xbf\xd3\xb3\xd3\xb3\x42\xe0" "\xdf\xaf\x4a\x3b\xf3\xf6\x3e\xf3\xbc\xef\xd3\xf3\x4e\x77\xbf\xa3\xdd" "\xd9\x08\x00\x00\x80\x5f\x09\xaf\xfc\xde\x9e\x77\xbf\x7e\xfe\x17\x7f" "\x74\xef\xd0\xa9\xbb\xbe\xfc\x27\xb7\xde\x13\xf5\x56\x47\xb7\xf7\xa4" "\x01\x7d\xc9\xed\x1d\xef\xd7\x08\x99\x4e\xcb\x7f\x7c\xa6\xe1\x99\xed" "\xae\xf5\x8f\xde\x66\xe7\xc5\x79\x7f\xba\xf0\xdd\xbe\xfb\xd6\x7c\xed" "\xa1\x55\x5f\xfa\xf1\xe6\x3f\x9b\x3f\xb8\x74\xd9\xd0\x95\xdf\x3b\x72" "\xd5\xfd\xf7\xbd\xf8\xf9\x5f\xbc\xf8\xd8\x13\x6b\x8a\xfa\x49\xe7\xd3" "\x25\x13\xed\xf8\xaf\xe2\x28\x5a\xfa\xf6\x91\xc7\xee\x7f\xf9\xcf\xcf" "\x1b\xd9\x16\x8f\xf4\x1f\xf7\xdd\x1d\xcd\x9f\x1f\x2f\xf8\xfe\xfc\x38" "\x93\x62\xc5\xe9\x28\x8a\x6e\x1a\x1f\x67\xe3\x37\x8f\x9c\x5a\xb9\x75" "\xe4\xf6\x9e\xef\x74\x37\x6c\x9f\x97\x49\x62\xbe\xff\x6a\xeb\x49\xe6" "\xd9\xc1\x4d\x37\x3c\x75\xec\x96\xc1\x97\x8f\x0c\xec\x5a\xf9\xb3\x93" "\x57\xec\xbc\x7b\x22\x24\xee\xa9\x9b\x4f\x51\x34\x77\x73\xfd\xe3\xbb" "\xa2\x28\x9a\x99\xfc\x1b\x91\xce\xb6\xfe\xf4\xc1\xc9\xed\xda\x28\x8a" "\x66\xd5\x3d\xee\xb3\x05\xe3\xba\xb8\xc5\xf1\x5f\x1a\x68\x2f\x49\x6e" "\x67\x24\xb7\xbd\x05\x79\xd2\xef\x5f\x94\x69\xd7\x5a\x1c\x47\x2d\x73" "\xdb\xdd\xe2\xe3\xda\x55\x99\xe6\xfc\x59\xd9\xfd\x97\x3d\x18\x4d\x97" "\xb4\xce\xb9\xc9\xed\xf3\xc9\xed\x25\x53\xcc\x53\x4d\xff\xc5\x51\x25" "\x8e\x6a\xe3\xc3\xdf\x1e\x4f\xcc\x91\xa8\xee\x79\x8b\xa3\x78\x74\x6e" "\xf7\x8c\xb7\x2b\xa3\xed\x68\xbc\x1d\x65\xdb\x71\xa6\x5d\xc9\xb4\xab" "\x5d\x99\xba\x46\xfb\x4d\x76\x6c\x35\x8e\x1b\xb7\xa7\x71\x99\xed\xe9" "\xe1\xb8\x96\x6c\xbf\xa8\xfe\x58\x9d\x63\x5d\x60\xfb\xa2\xe4\xb6\x27" "\x79\xa1\xbe\x97\xb6\xa3\xec\x9d\x31\xbd\x93\xee\x4c\xd4\x11\xd5\x8d" "\xeb\xc4\xd9\x9a\x18\x01\x95\xc0\x6b\x2f\xdd\x3e\x3e\xbc\xe4\xc9\xe8" "\x4d\xb6\xf5\xc6\x0b\x26\x3d\x66\x38\x47\xfa\xbd\x13\x3f\xdc\xb2\xe1" "\x9d\x37\x0e\x3c\xdf\x17\x18\x47\xfc\x5c\x9c\xe4\x8f\xdb\xca\x3f\x38" "\xf4\xe4\xb1\x67\xaf\x3b\xba\xa8\x3f\x94\x7f\x73\x25\xc9\x5f\x69\x2b" "\xff\x2b\xd5\x57\x4f\x3f\x73\xb2\x7f\x76\x30\xff\xa1\x34\x7f\xb5\xad" "\xfc\xeb\x7f\xf9\xd3\x07\xef\xbd\x7a\xff\xc2\xe0\xfe\x39\x91\xee\x9f" "\x5a\x5b\xf9\x97\x3d\x3c\xfb\xe0\xa9\xfd\xeb\xba\x07\x42\xf9\x0f\xa7" "\xf9\x7b\xda\xca\x7f\xe5\xc6\xa5\xab\x2e\x38\xb9\xef\xf6\xe0\xf8\x57" "\xa4\xfb\x67\x66\x5b\xf9\x7f\xf2\xc8\xf2\x33\x1b\x0f\xbd\x70\x34\x98" "\x3f\x4a\xf3\xcf\x6a\x2b\xff\x9b\x4f\x3e\xbd\xa4\xba\xe8\xd1\xe3\xc1" "\xfc\xc7\xd2\xfd\xd3\xdb\x56\xfe\x6b\x56\x3e\xbe\xfa\xab\x8b\xef\x7b" "\x22\xb8\xff\x5f\x4b\xf3\xcf\x69\x2b\xff\x86\xe3\xf7\x6f\xde\xf5\xd4" "\x4b\xcb\x83\xf3\x73\x6d\xba\x7f\xfa\xda\xca\x7f\x7a\xf5\xeb\x6f\x9d" "\xe9\x5b\xf3\x74\xe8\xd8\x19\x1f\x3e\xdb\x67\x58\x80\x0f\x97\x8f\x24" "\xd7\x58\x0f\x26\xed\x76\xd7\x99\x65\xd5\xad\x17\x1e\x1f\xa8\x8d\x5d" "\xf3\xcd\x4e\xfe\xcd\xe9\x64\x47\x19\x71\xdd\xda\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xda" "\xf5\xe8\xea\xff\x70\x5b\x7d\xfb\x13\xff\xe7\xf6\xf5\xc7\xff\xe3\xd2" "\x6d\xb5\xa4\xdd\x5d\x8b\xa2\x38\x8a\xa2\x77\xaa\x63\xed\x74\xfb\x8c" "\x28\x8a\x67\x46\x51\xb4\x67\xef\x96\xdd\x7b\xb7\xed\xb8\x79\xe0\x77" "\x76\xee\xdb\xbd\x63\xcb\xf6\x81\x2d\x7b\x07\x86\x76\xec\xdd\x7d\xe7" "\xc0\xdf\xf9\xdb\x03\xbb\x87\x76\x6d\xdf\x72\xe7\xc8\x77\x57\x5c\xba" "\x72\xec\x71\x0b\x46\xb3\x45\xd1\x82\xf8\x82\x49\x63\x19\x1e\x1e\x1e" "\x8e\xa2\x68\xa0\x7e\x5b\xda\xdf\x1f\x7c\xe5\xb9\xff\xb7\xfe\x89\xbf" "\xfe\x56\x14\xad\xf8\xe8\xeb\x4b\x6b\xc1\x7a\x3e\xf3\x5f\xdf\xfa\xe2" "\xc2\x9c\xaf\x19\xf1\xe0\xf0\xda\x7f\x75\xc5\x23\x07\x66\xfc\xaf\x79" "\x63\x1b\xfa\x92\x71\xf5\x85\xc6\xd5\xd7\xb8\x2d\x1d\x41\xef\xe0\x6b" "\x7f\xf1\x85\xe7\xdf\x18\x19\xd7\xc7\x9a\x8d\xeb\xb1\x57\xaf\xfd\xbf" "\x0d\x03\x1a\xdd\x30\x91\x27\x51\xe9\x8e\x2a\xa3\x77\xba\xe3\x59\xb9" "\xe3\x18\x1f\xf5\xc4\x78\x46\xf7\x57\x6d\xeb\xb6\xed\x43\x2b\x8a\xf7" "\x6f\x1c\xd8\xbf\x9f\x7a\xe9\x8f\x4f\xfe\xfb\x3b\xd6\xff\xf3\xb1\xfd" "\xdb\x13\xac\xa3\xc5\xfd\x3b\xb2\x57\x6b\xc3\x0f\xfd\xfc\xde\x4f\xdd" "\xfd\x85\xa1\xcf\x9d\xc3\xcf\x7b\xd1\xfe\xae\x2b\x61\x74\x7c\xe9\xfe" "\xeb\x49\xf6\xf7\xdc\xa4\xae\xb9\x81\xba\x2a\x81\xba\x6e\x1f\x78\xf3" "\xc4\xbf\xf8\x77\xff\xf9\x99\xbb\xa3\x15\xb5\x9f\x5f\x38\xb9\xef\xa2" "\xba\xba\x92\x09\xd0\x15\x2f\x6a\xa9\xdf\xb4\x87\x59\xf1\xfc\x86\xd8" "\x9e\x24\x3e\x7d\xc6\xd3\xc7\x7d\x66\xef\xad\xbb\x3e\xb3\xe7\xce\x03" "\x97\x6e\xbb\x75\xcb\xcd\x43\x37\x0f\xed\x58\xb9\xf2\x8a\x55\x97\xad" "\xbc\xec\xf2\x55\x2b\x3f\x33\x5a\xfa\xd8\xd7\x8e\xd5\x9f\xf6\xff\xa9" "\x16\xeb\x9f\x9d\x64\x9a\x1d\x2f\xce\xdd\x6f\xd9\xad\x69\xbf\x17\x8e" "\x7e\xad\x46\xc9\xb0\xd3\x9b\xba\x3b\x8d\xba\xa2\xde\xb1\xdb\xcc\x7e" "\x4e\xc3\xb3\x55\xf7\x26\xdf\xeb\x8d\x17\x4c\xca\x35\x9c\x23\xfd\xde" "\x89\x1f\x6e\xd9\xf0\xce\x1b\x07\x9e\x0f\xbd\xf2\xe2\xe7\xc6\x7a\x9c" "\x19\xcd\x19\xbb\x8d\x97\x04\x22\xb7\x67\x1e\x58\x1d\x1f\x70\x5e\xff" "\x67\xe7\x75\xb9\xf3\xf7\x7b\xb6\xa7\x5f\x5b\x7b\x5d\x16\x8d\xab\x68" "\x5e\x8d\x8c\xab\x78\x5e\xd5\x8f\xa8\xc9\x71\xec\xd5\x8b\x1f\xfc\xf9" "\x53\x0f\xfc\xcb\xeb\x5b\x38\x5e\xd4\x85\x8e\x8e\x2f\x1d\xe7\xac\x91" "\x97\xcb\x65\x51\xdd\xeb\x76\xf2\xbe\xca\xab\xab\x85\xe7\x67\x30\x6f" "\x3f\xdc\x78\xe9\xee\x3f\xbe\x73\xdb\x86\x43\x45\xc7\xf3\xfa\x67\xa6" "\xfe\x6b\x46\x3c\x38\xfc\x3f\x97\xc4\x5f\xdb\xb7\xe7\x2f\x76\x8f\x6d" "\x38\x2b\xe7\xcb\xfa\x01\xb5\x79\xbe\x1c\x1f\xf5\xc4\x78\x46\xf7\x57" "\x4f\xf2\x7c\x9c\xab\xfb\xb7\x3b\xaa\x26\x75\xf5\xe6\x8e\x6b\x5d\xfc" "\xd4\xe7\x3f\x75\xeb\xd1\x5f\x1b\x1f\xdf\x8c\x19\xd1\x1d\x5b\xf6\xee" "\xdd\x7d\xd9\xd8\xd7\x0f\x6a\x5d\x7f\x39\x63\xde\xc2\x6d\xf7\x2c\xbe" "\x60\x52\x5d\x97\x8f\x7d\x2d\x3a\xee\x5f\x98\x69\x17\x1e\xf7\x2b\xf9" "\xf5\x15\x1d\xf7\xb3\xfd\x4c\xc4\xe7\xe7\x1b\xc8\xb4\x7b\xa3\x6a\x5b" "\xe7\x89\xf5\xbf\xfc\xe9\x83\xf7\x5e\xbd\x7f\x61\xf0\x3c\x71\xa2\xd5" "\xf3\xc4\xef\x36\xb4\xaa\x25\xcf\x13\x95\xc0\xeb\xfd\xa1\xbf\xfe\xee" "\xc0\xbb\xd7\x7f\xf3\xdd\xa2\xf9\x74\xd5\x9e\xc5\x77\x2d\xcc\xf9\x9a" "\x2d\x6f\x70\xf8\x85\x3f\xfa\xf5\xcb\x3e\x77\xed\xd5\x5f\x1a\xdb\x70" "\x56\x8e\x43\xf5\x03\x6a\xf3\x38\x34\x3e\xea\x64\x3c\xe9\xfe\x1a\x3d" "\x0e\x5d\x7e\xee\xd4\xf1\xfe\x3d\xcf\x0d\x2f\xc4\x78\x70\xf8\xc2\xef" "\x7d\xf2\x9a\x33\xa7\x6e\xfb\xc6\xd8\x86\xa2\xfd\x3b\x1e\x9d\xb7\x7f" "\x57\x16\x1f\xe7\xab\x81\xba\xae\xef\xfa\xf8\xfc\x47\x7e\xb6\xf8\xe3" "\x9d\x9b\xbf\x7b\x36\xfd\xcd\xc5\x9f\x9e\x35\xfb\x1c\x9b\xbf\x3d\xc9" "\xfe\xed\x09\xec\xdf\xf1\x51\x27\xe3\xa9\xd6\xef\xdf\x4f\xdf\xb8\x73" "\xfb\x4d\x63\xed\x73\xf7\xba\x6d\x4c\x77\xc1\xfa\x27\x3d\xef\xec\xb9" "\xf3\xc0\x2d\x5b\xb6\x6f\x1f\xda\xbd\xa7\xb5\xba\x5a\x3d\x9f\xa6\xfd" "\x64\xf7\x72\xbb\xe7\xd3\xf4\xec\xb1\xa0\xa0\xae\xf4\xf9\x9a\xa8\x6b" "\xfa\xee\xb4\xb2\xbf\x5a\x7d\xbd\xa5\xe3\xbf\x29\x93\xa3\xdd\xd7\x1b" "\x40\x6a\xe2\xbc\x30\xa3\x61\x7b\xf6\xf8\x99\xbe\xef\xb7\x74\x6e\xb4" "\xfe\xd3\x0f\xfc\xe0\xd5\x78\x60\xec\x7c\xd9\xa9\xf7\x5b\xd3\x7e\xce" "\xcf\x9c\x98\xdb\x7d\xbf\xb5\x68\x9d\xf4\xf1\x4c\xbb\x71\x9d\x54\x8b" "\xea\xea\x1e\x33\x79\x9d\x34\xfa\x90\xa2\x75\x52\xb6\x9f\xa2\x75\xd2" "\xc5\x99\x76\xf1\x3a\xe6\xc1\xdc\x4a\x42\xcf\x5f\x57\x72\xe6\xcd\x7b" "\xdf\x34\x33\xde\xda\x48\x86\xd0\xfc\xe8\x4f\xf2\xf7\x27\xed\xf4\x7a" "\x73\xe9\xa7\xa3\x2b\xaa\xcf\x7f\xe2\x2b\xf1\x60\x6b\xf3\xa3\xd5\xeb" "\xe9\xb4\x9f\xbf\x95\xd9\x41\xed\x5e\x4f\x17\xcd\x8f\x65\x51\xfe\xb8" "\x3a\x3d\x3f\x3e\x99\x79\x50\xf1\xf3\x7d\x28\x77\x64\x3d\x81\xe7\xa3" "\xe8\xf9\x5e\xd6\x90\x68\x78\xb8\xec\xba\xbc\x2f\x30\xea\x74\x5d\xde" "\x1b\xc5\x6d\xe5\x1f\x1c\x7a\xf2\xd8\xb3\xd7\x1d\x5d\x14\xcc\xbf\xb9" "\x92\xe4\xaf\xb4\x95\xff\x95\xea\xab\xa7\x9f\x39\xd9\x3f\x3b\x98\xff" "\x50\x9a\xbf\xd6\x56\xfe\x65\x0f\xcf\x3e\x78\x6a\xff\xba\xee\x60\xfe" "\xc3\xe9\xfe\xe9\x69\x2b\xff\x95\x1b\x97\xae\xba\xe0\xe4\xbe\xdb\x83" "\xf9\x57\xa4\xe3\x9f\xd9\x56\xfe\x9f\x3c\xb2\xfc\xcc\xc6\x43\x2f\x1c" "\x0d\xe6\x8f\xd2\xfc\xbd\x6d\xe5\xbf\x66\xe5\xe3\xab\xbf\xba\xf8\xbe" "\x27\x82\xf9\x5f\x8b\x93\x7e\x46\x5e\xbb\x51\x74\xe4\xd4\xca\xad\x63" "\xed\x38\xea\x4a\xe6\x7f\x3a\x8e\xae\x86\x71\x45\xd9\x76\x9c\x69\x57" "\x32\xed\x6a\x7d\xbb\x32\xf6\x7f\xbd\xe3\x1d\x54\xe3\xb8\x71\x7b\x1a" "\x97\xd9\x9e\xd6\x51\x4b\xb6\x5f\x54\x37\xc6\x3c\xeb\x03\xdb\xd3\x57" "\x6d\x4f\xf2\xc2\x7e\x2f\x6d\x47\xd9\x3b\xcd\xb7\xa7\x87\xa7\x74\x5c" "\x27\x02\xe7\x9f\xb3\xa5\x52\x77\xed\x91\xb7\xbd\xe8\xfd\xc9\x4e\x79" "\xe7\xed\xfe\x3f\xa8\x6f\xa7\xff\xff\x9f\xce\x81\xee\xda\xd8\x73\x77" "\x79\x66\x7f\x15\x9d\x3f\xb2\x47\xef\x34\x5f\xf0\x7d\xd8\xc0\x5b\x18" "\x45\xd7\x0b\x93\xff\xff\x6d\x56\x5b\xaf\xbf\x37\x9f\x7c\x7a\x49\x75" "\xd1\xa3\xc7\x83\xef\xab\x1e\x6b\xf5\x7d\xd5\x5d\x0d\xad\x59\x05\xef" "\xab\x96\x1d\x6f\xf0\x78\x71\x2c\x3d\x9e\x96\x3b\x1e\xf5\x87\xf2\xbf" "\x96\xe6\x2f\x77\x3e\x08\xe6\x4f\xce\x07\x45\xf3\xec\x13\x99\x76\xe1" "\x3c\xeb\xca\xef\xaf\x68\x9e\x65\xaf\x53\x7a\xa3\x39\x6d\xd5\xbd\xe1" "\xf8\xfd\x9b\x77\x3d\xf5\xd2\xf2\xe0\x3c\x5b\x3b\xf6\x82\x2f\x9e\x67" "\x8f\x36\xb4\xe6\x14\xce\xb3\x72\xff\x2f\x1d\x9c\x67\xcf\xc5\x1d\xd9" "\x1f\xc1\xfc\x6b\x3b\x73\x5d\x13\x9c\x67\xc9\x75\x4d\xd1\x3c\xbb\x24" "\xd3\x2e\x3f\xcf\x1a\xaf\x47\xbf\x96\xdc\xde\x91\x89\xef\x4d\xde\x21" "\x9e\x6a\xdd\xa7\x57\xbf\xfe\xd6\x99\xbe\x35\x4f\x07\xe7\xd9\xe1\x56" "\xe7\xd9\x1f\x36\xb4\xfa\x0a\xe7\x59\xb9\xeb\xdb\xe0\xf3\x34\x7e\x7d" "\x3b\xdd\xd7\xe7\x1f\xec\xeb\xcf\xf7\xed\xfa\x30\xf9\xef\xdc\xe9\xba" "\x3e\x5c\x17\xd8\x3e\xd5\xeb\xc3\xde\x49\x77\x26\xea\x88\x3e\x88\xd7" "\x87\x81\xe3\x0c\x00\x34\xf3\xa3\x87\xee\xfc\xdf\xf5\xed\x74\xfd\x9f" "\x9e\xbb\xd3\xf5\xff\x0f\x32\x8f\x2b\xbb\xae\xcc\xfe\x3c\x54\xaa\x53" "\xeb\xca\x60\xfe\xc3\x9d\x59\xaf\x04\xaf\x53\xc7\xd7\x2b\xd3\xbd\xde" "\x9a\xee\xeb\xec\xe9\x5d\x6f\xb9\x8e\x0f\xe4\x1f\x7f\x1f\x79\xba\xdf" "\x17\x9a\xde\x75\xa5\x75\x48\xd2\x8e\xb2\x77\xc6\x58\x87\x00\x00\xf0" "\x7e\xb8\xe8\xdf\x7c\xf7\x37\xeb\xdb\xe9\xfa\x7f\xfc\xe7\xde\x92\xdf" "\xff\x7f\x29\x6d\x67\x1e\x6f\x9d\x1b\xc8\x7f\xd6\xd6\xb9\xd3\xfd\x3e" "\x89\x75\x74\x6e\xfe\x0e\xfd\x7c\x45\xf1\xfb\x60\xd3\xfd\x3e\x95\xf7" "\x01\xbc\x0f\x50\xcc\xfb\x00\x00\x00\x1f\x0e\x9b\xb6\xee\x1e\x1a\xda" "\xb3\x6b\xcb\x8d\x43\x9b\xb6\xed\xd8\xb6\x77\x7c\x7b\xd7\xe8\xca\x69" "\xf2\xcf\xa9\xfe\xdd\xe4\x76\x6d\x26\x4f\xd1\xcf\x4f\xe7\xc5\xcf\x6a" "\x12\xff\x8d\x60\xfe\xc6\xf1\x7c\x36\x10\x1f\x52\x1b\xfd\x99\xd7\x28" "\xba\xe1\xc6\x6f\x5f\xbe\xe9\xa6\xa1\xdb\xa7\x5a\x7f\xa8\xbf\xa2\xfa" "\xf3\xe2\x9b\xd5\x9f\x5d\x5f\x84\xea\x5f\x15\x88\x0f\x29\x5b\x7f\xa8" "\xbf\xa2\xfa\xf3\xe2\x9b\xd5\x7f\x75\x30\x7f\xe3\x78\x3e\x17\x88\x0f" "\x29\x5b\x7f\xa8\xbf\xa2\xfa\xf3\xe2\x9b\xd5\xff\xcd\x60\xfe\xc6\xf1" "\xfc\x7a\x20\x3e\xa4\x6c\xfd\xa1\xfe\x8a\xea\xcf\x8b\x6f\x56\x7f\xf6" "\xf7\xc1\x42\xf5\xff\x46\x20\x3e\xa4\x6c\xfd\xa1\xfe\x8a\xea\xcf\x8b" "\x6f\x56\xff\x35\xc1\xfc\x8d\xe3\xf9\x7c\x20\x3e\xa4\x6c\xfd\xa1\xfe" "\x8a\xea\xcf\x8b\x6f\x56\xff\xb5\xc1\xfc\x8d\xe3\xf9\x7b\x81\xf8\x90" "\xb2\xf5\x87\xfa\x2b\xaa\x3f\x2f\xbe\x59\xfd\xd7\x05\xf3\x37\x8e\x67" "\x75\x20\x3e\xa4\x6c\xfd\xa1\xfe\x8a\xea\xcf\x8b\x6f\x56\xff\xb7\x82" "\xf9\x1b\xc7\x33\x18\x88\x0f\x29\x5b\x7f\xa8\xbf\xa2\xfa\xf3\xe2\x9b" "\xd5\xbf\x21\x98\xbf\x71\x3c\x7f\x3f\x10\x1f\x52\xb6\xfe\x50\x7f\x45" "\xf5\xe7\xc5\x37\xab\xff\xfa\x60\xfe\xc6\xf1\x7c\x21\x10\x1f\x52\xb6" "\xfe\x50\x7f\x45\xf5\xe7\xc5\x37\xab\xff\xb7\x82\xf9\x1b\xc7\xf3\x0f" "\x02\xf1\x21\x65\xeb\x0f\xf5\x57\x54\x7f\x5e\x7c\xb3\xfa\x37\x06\xf3" "\x37\x8e\xe7\x37\x03\xf1\x21\x65\xeb\x0f\xf5\x57\x54\x7f\x5e\x7c\xb3" "\xfa\x7f\x3b\x98\xbf\x71\x3c\x5f\x0c\xc4\x87\x94\xad\x3f\xd4\x5f\x51" "\xfd\x79\xf1\xcd\xea\xdf\x14\xcc\xdf\x38\x9e\x2f\x05\xe2\x43\xca\xd6" "\x1f\xea\xaf\xa8\xfe\xbc\xf8\x66\xf5\x6f\x0e\xe6\x6f\x1c\xcf\x3f\x0c" "\xc4\x87\x94\xad\x3f\xd4\x5f\x51\xfd\x79\xf1\xcd\xea\xdf\x12\xcc\xdf" "\x38\x9e\x2f\x07\xe2\x43\xca\xd6\x1f\xea\xaf\xa8\xfe\xbc\xf8\x66\xf5" "\xdf\x10\xcc\xdf\x38\x9e\xaf\x04\xe2\x43\xca\xd6\x1f\xea\xaf\xa8\xfe" "\xbc\xf8\x66\xf5\xdf\x18\xcc\xdf\x38\x9e\xaf\x06\xe2\x43\xca\xd6\x1f" "\xea\xaf\xa8\xfe\xbc\xf8\x66\xf5\x67\x3f\xef\x30\x54\xff\x3f\x0a\xc4" "\x87\x94\xad\x3f\xd4\x5f\x51\xfd\x79\xf1\xcd\xea\x1f\x0a\xe6\x6f\x1c" "\xcf\x9a\x40\x7c\x48\xd9\xfa\x43\xfd\x15\xd5\x9f\x17\xdf\xac\xfe\xad" "\xc1\xfc\xf9\x9f\x1b\x90\x8d\x0f\x29\x5b\x7f\xa8\xbf\xa2\xfa\xf3\xe2" "\x9b\xd5\x7f\x73\x30\x7f\xe3\x78\xbe\x1e\x88\x0f\x29\x5b\x7f\xa8\xbf" "\xa2\xfa\xf3\xe2\x9b\xd5\xff\xed\x60\xfe\xc6\xf1\x5c\x15\x88\x0f\x29" "\x5b\x7f\xa8\xbf\xa2\xfa\xf3\xe2\x9b\xd5\xbf\x2d\x98\xbf\x71\x3c\x6b" "\x03\xf1\x21\x65\xeb\x0f\xf5\x57\x54\x7f\x5e\x7c\xb3\xfa\x7f\x27\x98" "\xbf\x71\x3c\xdf\x08\xc4\x87\x94\xad\x3f\xd4\x5f\x51\xfd\x79\xf1\xcd" "\xea\xbf\x25\x98\xbf\x71\x3c\xeb\x02\xf1\x21\x65\xeb\x0f\xf5\x57\x54" "\x7f\x5e\x7c\xb3\xfa\xb7\x07\xf3\x37\x8e\xe7\xea\x40\x7c\x48\xd9\xfa" "\x43\xfd\x15\xd5\x9f\x17\xdf\xac\xfe\x5b\x83\xf9\x1b\xc7\xf3\xcd\x40" "\x7c\x48\xd9\xfa\x43\xfd\x15\xd5\x9f\x17\xdf\xac\xfe\x1d\xc1\xfc\x8d" "\xe3\x59\x1f\x88\x0f\x29\x5b\x7f\xa8\xbf\xa2\xfa\xf3\xe2\x9b\xd5\xbf" "\x33\x98\xbf\x71\x3c\xd7\x04\xe2\x43\xca\xd6\x1f\xea\xaf\xa8\xfe\xbc" "\xf8\x66\xf5\xef\x0a\xe6\x6f\x1c\xcf\xb5\x81\xf8\x90\xb2\xf5\x87\xfa" "\x2b\xaa\x3f\x2f\xbe\x59\xfd\xb7\x05\xf3\x37\x8e\xe7\xba\x40\x7c\x48" "\xd9\xfa\x43\xfd\x15\xd5\x9f\x17\xdf\xac\xfe\xdd\xc1\xfc\x8d\xe3\xf9" "\x56\x20\x3e\xa4\x6c\xfd\xa1\xfe\x8a\xea\xcf\x8b\x6f\x56\xff\x9e\x60" "\xfe\xc6\xf1\x6c\x08\xc4\x87\x94\xad\x3f\xd4\x5f\x51\xfd\x79\xf1\xcd" "\xea\xdf\x1b\xcc\xdf\x38\x9e\xeb\x03\xf1\x21\x65\xeb\x0f\xf5\x57\x54" "\x7f\x5e\x7c\xb3\xfa\xf7\x05\xf3\x37\x8e\xe7\xb7\x02\xf1\x21\x65\xeb" "\x0f\xf5\x57\x54\x7f\x5e\x7c\xb3\xfa\x6f\x0f\xe6\x6f\x1c\xcf\xc6\x40" "\x7c\x48\xd9\xfa\x43\xfd\x15\xd5\x9f\x17\xdf\xac\xfe\xfd\xc1\xfc\x8d" "\xe3\xf9\xed\x40\x7c\x48\xd9\xfa\x43\xfd\x15\xd5\x9f\x17\xdf\xac\xfe" "\xec\xe7\x40\x86\xea\xdf\x14\x88\x0f\x19\xaf\x7f\xef\xee\xa1\xa1\x4d" "\xfb\x76\xdd\xb4\x65\xef\xd0\xa6\x1d\x3b\x6f\x1a\xda\xb3\x69\xff\xee" "\x6d\x7b\xf7\x0e\x25\x17\x6a\x65\x7f\xaf\x2c\xfc\x7b\x41\xef\xf3\x2f" "\xb2\xd0\x54\xc3\xeb\x63\x6c\x92\x6c\xdb\xb1\x67\x68\xf7\xe4\xe3\xf7" "\xcc\xa6\xf3\xb7\x7e\x4e\x44\xa3\xbf\xf6\x34\x73\xec\x36\xfe\x58\x4b" "\xf1\xd9\x8f\xbd\x6e\x77\xd6\x9c\x2b\xf3\xbd\x2b\xaa\x35\xdd\x5f\xe7" "\x67\xda\xf3\x92\xcf\xa3\x9d\x17\xf8\x3c\xda\x6c\x7c\x9a\x76\xf1\xe8" "\x9d\xc9\x9f\x47\x9b\xed\xb6\x56\xf0\x39\xae\x45\xc7\xa7\x6c\xff\xa1" "\xe3\x53\xdc\x24\x3e\xef\xf8\x1a\x3a\x9e\x15\x9d\xff\xa6\x7c\xfc\x2b" "\x9c\xdf\x3d\x4d\xeb\xcf\x6e\xee\x4e\x7e\xb1\xaf\x3b\xfe\x68\x4b\xf1" "\x51\x93\xbf\xef\xd6\xda\x7c\x2d\xf7\x7b\xa7\xc1\xf9\xfa\x5a\x6b\xf3" "\x35\xfb\xb9\xeb\x45\xf3\x35\x1b\x3f\xd5\xf9\xda\x5b\x72\xbe\x66\xfb" "\x0f\xcd\xa7\x4a\x93\xf8\x66\xd7\x43\xad\xce\xd7\x0d\x81\xf8\x54\xeb" "\xf3\x33\x0e\xd6\x9b\x37\xaf\xa6\xfa\x77\x06\xd3\xb4\x53\xfa\x3b\x83" "\x99\x2f\x93\xb4\xf1\xb7\x0c\x5a\x7f\x3d\x94\xfb\x3d\xf2\xe0\xeb\x21" "\x19\x74\xd1\xeb\x21\xfb\x7b\xdc\x45\xaf\x87\x6c\xfc\x54\x5f\x0f\x33" "\x4b\xbe\x1e\xb2\xfd\x17\xbd\x1e\xf2\xe2\x9b\xad\x8f\x5b\x7d\x3d\x5c" "\x1b\x88\x0f\x69\x7d\x3e\x94\xfb\xdc\x82\xe0\x7c\x58\xd1\xda\x7c\xc8" "\xfe\x1d\xab\xa2\xf9\x90\x8d\x9f\xea\x7c\xe8\x29\x39\x1f\xb2\xfd\x17" "\xcd\x87\xbc\xf8\x66\xef\x17\xb6\x3a\x1f\xbe\x19\x88\x6f\x55\xeb\xf3" "\xa3\xdc\xe7\x8a\x04\xe7\xc7\xe6\xd6\xe6\x47\xf6\xef\x49\x14\xcd\x8f" "\x6c\xfc\x54\xe7\x47\x5c\x72\x7e\x64\xfb\x2f\x9a\x1f\x79\xf1\xcd\xfe" "\x3f\xa5\xd5\xf9\xf1\x8d\x40\x7c\xaa\xe1\xfc\xb9\x75\xcf\xe8\xa2\x7e" "\xdb\x96\xed\xdb\x0e\x64\x7e\x00\xa3\x2f\x39\x7f\xbe\xdf\xe7\xc3\xb3" "\x72\x5e\xfe\x9b\xdf\xf8\xcb\xf7\xc6\xbe\x24\xe3\xa8\x4c\x1a\x47\xd1" "\xf5\x44\x9c\x19\xc7\xfc\x64\x24\xf3\x43\x7f\xf7\x30\x30\xee\x1b\xff" "\xcb\xbf\x5d\xff\x83\x5f\x3c\xf0\xdd\x28\x5a\xf1\xd1\xea\x92\xf0\xb8" "\x27\x86\x3c\xf1\x25\x23\x1e\x1c\x5e\x70\xd7\xb2\x67\xaf\xfb\xd8\xf1" "\x2f\x8c\x8c\xbf\xd2\x74\xfc\xe3\x91\xe9\xdf\x2d\x2e\xf8\x7b\xc7\xd9" "\xf8\xb4\x9e\xda\xf6\x9d\x7b\xf6\xfe\xda\xd6\x9d\xfb\x76\xb4\xfa\x13" "\x57\xcd\xa5\x9f\x87\x52\x19\x6f\x4f\xd3\xe7\xa1\x24\x1b\xab\x2d\x7e" "\xbe\x49\xe8\xf7\x09\xa6\xfa\xf9\x26\x5d\x93\xee\x9c\x9b\x5a\xfe\x7c" "\x13\x80\x0f\x89\x79\x87\x9f\x9b\x53\xdf\x4e\x3f\xff\x2f\x3d\x1f\xf5" "\x27\xc7\xbe\x99\xc9\x01\x30\xdd\xde\xfa\x75\x76\xb9\xcf\xd7\x0b\x5e" "\x67\x1f\x6a\xed\x3a\x7b\x79\xb6\xde\x82\xeb\xec\x6c\x7c\x5a\x6f\xab" "\xd7\xd9\x95\x92\xd7\xd9\xd9\xfe\x8b\xae\xb3\xf3\xe2\x9b\xfd\xdc\x5e" "\xab\xd7\xd9\x5f\x0f\xc4\x4f\x55\xe3\x3c\x19\x99\x20\xa3\xf3\x63\x68" "\xd3\xfe\x9d\xbb\xeb\x7f\x26\x6e\xba\xff\x6e\x6d\xe7\xc7\x3b\xbd\x7f" "\xc7\xb7\xfc\xf8\xa6\xf7\x73\x1b\xdb\xd5\xfa\xf8\xa7\xf7\x73\x21\xa7" "\x7f\xfc\xd3\xfb\x77\x80\xa7\x7f\xfc\xd3\xfb\x77\x9e\xdb\x75\xd6\xd6" "\x4b\xc9\x87\x45\x16\x7d\x7e\x64\xd1\x3a\x2a\xf4\x7b\xe9\x53\x5d\x47" "\xcd\x98\x74\xe7\xdc\x64\x1d\x05\x00\xe7\xbe\x7f\xb6\xfb\xed\x7f\x5d" "\xdf\x4e\xd7\xff\xc9\x2a\x76\x7c\xfd\xff\x9d\xa4\x5d\xed\x70\xff\xd3" "\xbd\x8e\x9a\xee\x75\xe5\x74\x5f\x27\x7f\xf0\x3f\x7f\x7f\x7a\xd7\x41" "\xd6\x03\x4d\x3a\x3b\x07\x58\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\xe4\xfb" "\xc3\xff\xfe\x9f\xbe\x5f\xdf\xee\xae\xf5\x8f\xde\xbe\xf2\x7b\x7b\xde" "\xfd\xfa\xf9\x5f\xfc\xd1\xbd\x43\xa7\xee\xfa\xf2\x9f\xdc\x7a\xcf\x79" "\x7f\xba\xf0\xdd\xbe\xfb\xd6\x7c\xed\xa1\x55\x5f\xfa\xf1\xe6\x3f\x9b" "\x3f\xb8\x74\xd9\xd0\x95\xdf\x3b\x72\xd5\xfd\xf7\xbd\xf8\xf9\x5f\xbc" "\xf8\xd8\x13\x6b\x0a\x3b\xea\x1b\xbb\xb9\x24\x69\xf6\x44\x51\xfc\x57" "\x71\x14\x2d\x7d\xfb\xc8\x63\xf7\xbf\xfc\xe7\xe7\x8d\x6c\x8b\x47\xfa" "\x8f\xfb\xee\x8e\xe6\xcf\x8f\x17\x7c\x7f\x7e\x9c\xc9\xb0\xe2\x74\x14" "\x45\x37\x8d\x8f\xb3\xf1\x9b\x47\x4e\xad\xdc\x3a\x72\x7b\xcf\x77\xba" "\x1b\xb6\xcf\xcb\x24\xc9\xd6\x15\xf5\x56\xd3\xf1\x34\x8c\x33\xba\xa3" "\xb0\x22\x3e\x80\x7a\x92\x79\x76\x70\xd3\x0d\x4f\x1d\xbb\x65\xf0\xe5" "\x23\x03\xbb\x56\xfe\xec\xe4\x15\x3b\xef\x9e\x08\x89\x7b\xea\xe6\x53" "\x14\xcd\xdd\x5c\xff\xf8\xae\x28\x8a\x66\x26\xff\x46\xa4\xb3\xad\x3f" "\x7d\x70\x72\xbb\x36\x8a\xa2\x59\x75\x8f\xfb\x6c\xc1\xb8\x2e\x6e\x71" "\xfc\x97\x06\xda\x4b\x92\xdb\x19\xc9\x6d\x6f\x41\x9e\xf4\xfb\x17\x65" "\xda\xb5\x16\xc7\x51\xcb\xdc\x76\xb7\xf8\xb8\x76\x55\xa6\x39\x7f\x56" "\x76\xff\x65\x0f\x46\xd3\x25\xad\x73\x6e\x72\xfb\x7c\x72\x7b\xc9\x14" "\xf3\x54\xd3\x7f\x71\x54\x89\xa3\xda\xf8\xf0\xb7\xc7\x13\x73\x24\xaa" "\x7b\xde\xe2\x28\x1e\x9d\xdb\x3d\xe3\xed\xca\x68\x3b\x1a\x6f\x47\xd9" "\x76\x9c\x69\x57\x32\xed\x6a\x57\xa6\xae\xd1\x7e\x93\x1d\x5b\x8d\xe3" "\xc6\xed\x69\x5c\x66\x7b\x7a\x38\xae\x25\xdb\x2f\xaa\x3f\x56\xe7\x58" "\x17\xd8\xbe\x28\xb9\xed\x49\x5e\xa8\xef\xa5\xed\x28\x7b\x67\x4c\xef" "\xa4\x3b\x13\x75\x44\x75\xe3\x3a\x71\xb6\x26\x46\x40\x25\xf0\xda\x4b" "\xb7\x8f\x0f\x2f\x79\x32\x7a\x93\x6d\xbd\xf1\x82\x49\x8f\x19\xce\x91" "\x7e\xef\xc4\x0f\xb7\x6c\x78\xe7\x8d\x03\xcf\xf7\x05\xc6\x11\x3f\x17" "\x27\xf9\xe3\xb6\xf2\x0f\x0e\x3d\x79\xec\xd9\xeb\x8e\x2e\xea\x0f\xe5" "\xdf\x5c\x49\xf2\x57\xda\xca\xff\x4a\xf5\xd5\xd3\xcf\x9c\xec\x9f\x1d" "\xcc\x7f\x28\xcd\x5f\x6d\x2b\xff\xfa\x5f\xfe\xf4\xc1\x7b\xaf\xde\xbf" "\x30\xb8\x7f\x4e\xa4\xfb\xa7\xd6\x56\xfe\x65\x0f\xcf\x3e\x78\x6a\xff" "\xba\xee\x81\x50\xfe\xc3\x69\xfe\x9e\xb6\xf2\x5f\xb9\x71\xe9\xaa\x0b" "\x4e\xee\xbb\x3d\x38\xfe\x15\xe9\xfe\x99\xd9\x56\xfe\x9f\x3c\xb2\xfc" "\xcc\xc6\x43\x2f\x1c\x0d\xe6\x8f\xd2\xfc\xb3\xda\xca\xff\xe6\x93\x4f" "\x2f\xa9\x2e\x7a\xf4\x78\x30\xff\xb1\x74\xff\xf4\xb6\x95\xff\x9a\x95" "\x8f\xaf\xfe\xea\xe2\xfb\x9e\x08\xee\xff\xd7\xd2\xfc\x73\xda\xca\xbf" "\xe1\xf8\xfd\x9b\x77\x3d\xf5\xd2\xf2\xe0\xfc\x5c\x9b\xee\x9f\xbe\xb6" "\xf2\x9f\x5e\xfd\xfa\x5b\x67\xfa\xd6\x3c\x1d\x3a\x76\xc6\x87\xcf\xf6" "\x19\x16\xe0\xc3\xe5\x23\xc9\x35\xd6\x83\x49\xbb\xdd\x75\x66\x59\x75" "\xeb\x85\xc7\x07\x6a\x63\xd7\x7c\xb3\x93\x7f\x73\x3a\xd9\x51\x46\x5c" "\xb7\x76\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x90\x9d\xc3\xd5\x7d\xf5\xed" "\xb7\x8e\x3e\x74\xd5\xb7\xff\xc7\xa6\xff\x56\x8b\xa3\x28\x0e\x3c\x66" "\x38\x47\xfa\xbd\xea\x8c\xc1\xc1\x81\x36\xc6\xb1\xec\xe1\xd9\x07\x4f" "\xed\x5f\xd7\x9d\xb6\x47\xfa\xee\x6f\x23\x0f\x00\x00\x00\x30\xd9\xe2" "\x37\x1f\xb8\xad\xbe\x9d\xae\xc3\x2b\x49\x3b\x8e\x7a\xa2\xfe\x68\x7f" "\x3c\x33\x5a\x9c\xfb\xf8\xf4\x3d\x82\xc5\x69\x2b\x6e\xdc\x9e\x7d\x0f" "\x61\xe6\x44\x64\x47\xf2\x54\x3a\x94\xa7\xda\xa1\x3c\xb5\x0e\xe5\xe9" "\xea\x50\x9e\x19\x1d\xca\xd3\xdd\xa1\x3c\x3d\x05\x79\x7a\xa2\xd6\xf2" "\xcc\x6c\x9a\xa7\xd2\xf2\x78\x66\x75\x28\x4f\x6f\x87\xf2\xcc\xee\x50" "\x9e\x39\x1d\xca\x33\xb7\x43\x79\xe6\x75\x28\x4f\x5f\xd3\x3c\xad\xcf" "\xc3\xf9\x1d\xca\xb3\xa0\x43\x79\x3e\xd2\xa1\x3c\x0b\x3b\x94\xe7\xa3" "\x1d\xca\xf3\xb1\x0e\xe5\x39\xaf\x43\x79\xb2\xef\x29\x4f\x75\x1e\xce" "\x49\x22\xcf\x0f\xe5\x19\xbd\x53\x2d\xcc\x53\x8b\xab\xe3\xdf\xc8\x7b" "\x3f\x3d\xed\xe7\x82\x92\xfd\xf4\xb6\xd8\x4f\xf6\x3d\xfb\xa9\xf6\x33" "\xb3\xc5\x7e\x2e\x2e\xd9\x4f\x4f\x8b\xfd\x7c\xb2\x64\x3f\x71\x8b\xfd" "\x2c\xcf\x3c\xae\x32\xc5\x7e\x2a\x05\xfd\xa4\xf3\xf6\x8e\x50\x3d\x69" "\xab\xc5\xf9\x7f\x67\x87\xf2\x1c\xe8\x50\x9e\x83\x1d\xca\xf3\xbb\x1d" "\xca\xf3\x8f\x3b\x94\xe7\x9f\x74\x28\xcf\x5d\x25\xf3\x00\x84\xfc\xfe" "\x8b\x97\xfc\x51\x7d\x3b\x5d\xff\xa7\xeb\xcf\x38\xea\x8b\xba\x6b\x97" "\x47\xb3\x92\x23\x4e\xf6\x5d\x80\x74\xbd\x7b\xe1\xe8\xd7\xc9\xe7\xbb" "\xd0\x01\x29\xcd\xb7\x24\xb3\xbd\xab\x28\x5f\x76\x81\x9d\xc9\x77\xe1" "\x54\xc7\x97\x7d\x03\x21\x93\xef\xe3\x4d\xf3\xd5\x26\xad\x57\x73\xf2" "\xd5\xea\xf3\x2d\xeb\x50\x3e\x00\x00\x00\x98\x8a\x7f\x7a\xfa\x60\xc3" "\x7f\xcd\x4d\x5e\xff\xf7\x47\xdd\xb5\x85\xe3\xeb\xd7\x4f\x64\x1e\x5f" "\xb8\x5e\xcf\xfe\x47\x76\x22\xcd\x77\x49\x87\xf2\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\xf0\xff\xd9\xb5\xd7\x18\xb9\xca\xf2\x01" "\xe0\xef\xd9\x99\x9d\x99\xff\x72\xe9\x42\xda\x32\xa5\xb7\x4d\xdb\x3f" "\x85\x10\x7a\xa1\xa9\x11\x54\x98\x34\x91\x04\x23\x6c\x11\x5b\x2e\x0d" "\x59\x2b\x2c\x6c\xc3\xd2\x42\xb7\x05\x5a\x35\x45\x30\xb6\xd9\x04\x83" "\x16\x2f\xdc\x3e\x58\x90\x18\x42\x04\x12\x92\x06\x5d\x13\x0c\x28\xf1" "\x83\x8d\x0d\x62\xb8\xb8\x2e\xac\x04\xbe\x10\x41\x7a\x03\x8a\x8e\x99" "\xdd\x73\x76\xcf\xce\xce\xb0\xcb\x28\xad\xd5\xdf\x2f\xe4\x9c\x79\xce" "\x79\x9e\xf7\x79\xcf\x21\x21\x79\xce\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\xff\xf9\xfe\xf8\xfd\xbf\x3d" "\x9b\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x43\x14\x2a\xff\xd4\x54\xae" "\x21\xb9\x97\xc9\x95\x4a\x6d\x0d\xec\xe3\x9d\xe7\xd6\x5e\xf9\xd7\x97" "\xb6\xee\x4e\xe2\x4a\xef\x7c\xb6\x81\x85\x00\x00\x00\x80\x71\x1e\x3f" "\x6f\xc6\xe9\xe9\x38\x99\xc3\x93\xd1\x3b\x0a\x85\x90\xcf\x2e\x0d\xf9" "\x28\x37\xa6\xae\x18\x7f\x07\x28\xc6\x71\x53\xeb\xf0\x79\xce\xa2\xb0" "\x3c\xb3\xfb\xff\x2f\x8c\x4a\x4d\x43\xf1\xc9\xd1\x49\x63\xea\x0a\x71" "\x5d\x21\x8e\x33\x71\x5d\xcf\x96\xad\xd7\xaf\xed\xee\xee\xdc\xf8\x09" "\xfe\xa8\xf4\xa9\x7e\x8e\xea\xfd\x44\x21\x0c\x7d\xbe\x98\x73\x62\x58" "\xb5\x68\xfb\x33\x7b\xa2\xb6\xe1\xe7\x68\x99\xe0\x39\x9a\xe2\xba\xc5" "\x9b\x6e\xb8\x71\x71\xcf\x96\xad\x67\xad\xbb\x61\xed\x75\x9d\xd7\x75" "\xae\x5f\xb6\x6c\xf9\x39\x4b\x97\x2d\x3d\xfb\x9c\x65\x8b\xaf\x5d\xd7" "\xdd\xb9\x64\xf8\x18\xf2\x13\xac\x17\x42\x28\x8d\x7d\x2f\x13\xfc\x8b" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x80\x23\x60\xdb\x6f\x77\x7f\x2b\x1d\x0f\xf6\xf5\xb6\x77" "\x0d\x74\xf4\xb7\x44\x21\x44\x75\x6a\xca\x35\x24\xf7\x32\xb9\x52\xa9" "\xad\x81\x7d\xbc\x72\xdf\x83\xb3\x32\x33\xee\xde\x9b\xc4\x95\xde\xf9" "\x6c\x03\x0b\x01\x00\x00\x00\xe3\xfc\xea\xf1\x19\xe7\xa7\xe3\x64\x0e" "\x4f\x46\xef\x28\x14\x42\x3e\x9b\x0b\x99\x30\x63\x28\x9e\x37\x9a\x9a" "\x0d\xa1\x5c\x4e\xae\x2f\xa8\xba\x7e\x24\xf6\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\x1c\x59" "\xfb\x0e\xb6\xff\x39\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74\xf4\x1f\x17\x85" "\x10\xd5\xa9\x29\xd7\x90\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xb1\x7a\xd9" "\x8f\xce\xff\xc2\xcc\x3b\xee\x4d\xe2\x4a\xef\x62\x03\xeb\x00\x00\x00" "\x00\xe3\xbd\x70\x7a\xf3\x1d\xe9\x38\x99\xc3\x9b\xe2\x38\x0a\x85\x50" "\x0c\xf3\x43\x73\x34\x63\x4c\x5d\xf2\x6d\xe0\xd4\xaa\xf5\xaa\xf3\x92" "\x75\x66\x4f\x32\xaf\xfa\xdb\x41\xbd\xbc\xf9\x93\xcc\x3b\x6d\x92\x79" "\x67\x4c\x90\x77\x71\x7c\xbe\x35\x00\x00\x00\xc0\xb1\xe7\x8a\xd6\xdf" "\xad\x4e\xc7\xc9\xfc\xdf\x1c\xc7\x51\x68\x0d\xf9\x6c\x31\x64\xe2\x78" "\xa2\x39\x3e\xf9\x2e\x30\xb7\x2a\x2f\xa9\x9f\x68\xbe\x4f\xea\xe7\xd5" "\xa9\x9f\x68\xee\x4f\xea\xab\xe7\x7e\x00\x00\x00\xf8\x5f\x76\xd6\x9b" "\x4f\x7c\x98\x8e\xc7\xcf\xff\xc5\x90\xcf\x16\x46\xe6\xef\x89\xfe\x9e" "\x7e\x51\x7c\xf6\x77\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x9e\x5f\x1f\xbc\xf0\x17\xe9" "\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\x3f\x13\x85\x10\xd5\xa9\x29\xd7\x90" "\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xb1\xea\x1f\x6f\xec\xb8\xfd\xd2\x5b" "\xa6\x26\x71\xa5\x77\x3e\xdb\xc0\x42\x00\x00\x00\xc0\x38\x8f\xe6\x3e" "\x7d\x4b\x3a\x4e\xe6\xf0\x64\xf4\x8e\x42\x21\xe4\xb3\x2d\xa1\x39\x1c" "\x37\x34\xf7\xbf\x96\x9b\x32\x75\xdd\x37\x67\xce\x0e\x21\x94\x86\x12" "\x72\xb9\x70\xeb\xda\x4d\x9b\x36\x9e\x3d\x7c\x4c\xf2\xbe\x14\xed\xfa" "\xdc\xc2\x1b\xfa\xce\x1c\x97\xb7\x74\xf8\x78\xe4\x9f\x14\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x57\x2d\x7b\x64\xe7\x9a\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\xff" "\x7f\x51\x08\x51\x9d\x9a\x72\x0d\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f" "\x2f\xec\x3c\xe3\xf0\x55\x77\x3d\xd5\x97\xc4\x95\xde\xc5\x06\xd6\x01" "\x00\x00\x00\xc6\x9b\xd5\xfd\xf4\x5f\xd2\x71\x32\x87\x27\xb3\x7f\x14" "\x0a\xa1\x18\x72\x21\x17\xa6\x0f\xc5\xe9\x59\xbf\xa2\xa9\x6a\xbd\x7a" "\xdf\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\x1e\x3d" "\x5b\xb6\x5e\xbf\xb6\xbb\xbb\x73\xa3\x1f\x7e\xf8\xe1\xc7\xc8\x8f\xa3" "\xfd\x5f\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\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\x68\xf9\xf9\xfa\xef\xbd\x9d" "\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x0b\x51\x08\x51\x9d\x9a\x72\x0d" "\xc9\xbd\x4c\xae\x54\x6a\x6b\x60\x1f\x9f\xba\x6a\xce\x39\xb3\xf7\x6f" "\xbe\x39\x89\x2b\xbd\x8b\x0d\xac\x03\x00\x00\x00\x8c\xb7\xe6\xad\xcd" "\xfb\xd3\x71\x32\x87\x27\xb3\x7f\x14\x0a\xa1\x18\x9a\x43\x73\x98\x16" "\xc7\xe3\x0d\xcd\xff\xad\x47\x62\xb7\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xd1\x34\x37\x44" "\xa1\xfc\x31\x9d\xb2\xf2\x68\xef\x1a\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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" "\x24\x1c\x78\x71\xd5\x7d\xe9\x78\xb0\xaf\xb7\xbd\x6b\xa0\xa3\xff\x84" "\x28\x84\xa8\x4e\x4d\xb9\x86\xe4\x5e\x26\x57\x2a\xb5\x35\xb0\x8f\x2b" "\xf7\x7e\xfb\x2b\x37\xee\x7a\xf6\x8c\x24\xae\xf4\xce\x67\x1b\x58\x08" "\x00\x00\x00\x18\xa7\xf9\xcd\x17\xbf\x9a\x8e\x93\x39\x3c\x19\xbd\xa3" "\x50\x08\xf9\xec\xac\x90\x0f\xb3\xe2\x2b\xdd\x63\x17\x88\x32\x49\x62" "\xcd\xef\x02\xa3\x75\x5f\x1f\x53\x96\x99\x74\xdd\x8e\xaa\x1d\x0f\xef" "\xac\x10\x7f\x87\x28\x8c\xec\x33\x0c\x7d\x76\x18\xad\xbb\xeb\x23\xeb" "\x8a\xf1\xd5\xa6\xd6\xc9\xbd\x27\x00\x00\x00\x38\x96\x4d\xdb\x71\xf1" "\x37\xd2\x71\x32\xff\x37\xc7\x71\x14\x5a\x43\x3e\x3b\x2d\x35\x57\xdf" "\x38\xa6\xbe\x65\xd2\x73\xfc\xdd\x63\xea\x4e\x98\x74\xdd\x4f\xc7\xd4" "\xb5\x4e\x50\xf7\x6f\x78\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x83\xee\x5c\xf9\xdc\x29\xe9\x78\xb0\xaf" "\xb7\xbd\x6b\xa0\xa3\x3f\x8a\x42\x88\xea\xd4\x94\x6b\x48\xee\x65\x72" "\xa5\x52\x5b\x03\xfb\x28\x75\xde\xf7\xf4\xc3\x97\xf7\xcd\x48\xe2\x4a" "\xef\x62\x03\xeb\x00\x00\x00\x00\xe3\x5d\xfa\x46\xe1\xbb\xe9\x38\x99" "\xc3\x93\xd9\x3f\x0a\x85\x50\x0c\xb3\xc3\x89\x61\xf6\xd0\xdc\x1f\x5a" "\xc7\xd6\x27\x79\xc7\x95\x7e\xff\xf2\x8a\xdd\x2f\x5d\x11\xc2\x92\xe9" "\xcf\xcf\xc9\xd6\xed\xf7\xc3\x3d\x97\xbd\x1d\x0e\x7d\xf6\xb5\xf7\x86" "\x0f\x43\x61\x08\x4d\x63\x93\x9a\x42\x98\x12\xf7\x8b\xea\xf4\xbb\xfa" "\x0f\x8f\xac\x7a\xe6\xc3\xed\x0f\x84\xb0\x64\x5a\x66\x56\xfd\x7e\xa3" "\xad\x46\x0f\x55\xa2\x52\xf9\xe4\x6d\x0b\x1e\xbe\x7c\xfa\xde\x15\x75" "\x97\x01\x00\x00\x80\x63\x5a\xe1\xc1\x03\x3f\x49\xc7\xc9\xfc\x9f\x4c" "\xd4\x51\x68\x0d\xf9\xec\xfa\xba\xf3\x7f\x92\xf7\xb1\xe6\xff\xf6\x9e" "\x99\xdb\xa6\xc6\xc7\xf8\x0b\x40\x55\x45\x53\x6b\xdc\xaf\xa9\x4e\xbf" "\xde\x77\x1f\x68\x3b\xb8\xe6\xcb\x07\x2b\xf3\xff\xf3\x73\x0a\x23\xff" "\xaf\xc0\xe9\xf3\xc7\xe6\xa7\x5b\xa5\x8f\x55\xdf\x1c\xa2\x52\x79\xee" "\x13\xa7\xad\x3e\x7c\xe0\xa6\x4b\x86\x2f\x24\xfd\x33\x75\xfa\xaf\x69" "\x9e\x77\xd2\xce\xb7\x66\xce\x4b\xfa\x17\xe2\xeb\xd7\x84\xc9\xf6\x0f" "\x55\xfd\x7b\x3a\x0e\xcd\x5f\xd4\x72\xfc\x05\x63\xfb\x87\x10\xda\x6a" "\xf5\xff\xf1\x85\x8f\xbf\xbf\xea\xde\x77\xaf\x18\xee\x5f\xff\x7d\x2f" "\xfe\xd3\xe0\xe7\xa7\x86\x0d\x3f\x28\x74\x27\xc7\xe1\x2b\xe3\xfb\xaf" "\xbc\x7f\xf9\xce\xad\xb9\xd7\xa7\x8c\xed\x1f\xd5\xe9\xbf\xf0\xd9\x27" "\xf7\x3f\x76\xeb\xaa\x3b\xab\x9f\xff\xd4\x6c\xad\xfe\xe3\x8f\x55\x2a" "\x5d\xb3\xe5\xde\x7d\xb7\x2f\xbc\x6d\x45\xe7\xb9\xa9\xfe\x4d\x75\xfa" "\xdf\xdc\xf6\xca\x3b\xdf\xf9\xd9\x2f\x1f\xaa\xf4\xdf\x37\xb7\x65\xa4" "\xff\xc2\x8f\x78\xfe\x09\xfb\xef\x99\xbf\x63\xdf\xae\xed\xf7\xac\x19" "\xfb\xfe\x4b\xb5\xfa\x5f\x7d\xd6\xc6\x27\xb7\xac\xbb\xf2\xae\xea\xe7" "\x6f\xa9\x5a\x38\xfd\xe6\xd3\xc7\xf1\xef\xff\xd5\x59\xd1\x45\x9b\x7b" "\x5e\xde\x58\x7d\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xd8\xd6\xf1\xd8\x07\x87\xd2\xf1\x60\x5f\x6f\x7b\xd7\x40" "\x47\x7f\x53\x14\x42\x54\xa7\xa6\x5c\x43\x72\x2f\x93\x2b\x95\xda\x1a" "\xd8\xc7\x6f\x32\x7b\x3e\x78\x68\x7f\xf1\xf8\x24\xae\xf4\x2e\x36\xb0" "\x0e\x00\x00\x00\x30\xde\x25\x2b\x5e\xbd\x2e\x1d\x27\x73\x78\x32\xfb" "\x47\xa1\x10\x8a\x21\x17\x72\xa1\x65\x68\xee\x3f\x79\xdb\x82\x87\x2f" "\x9f\xbe\x77\x45\x68\x8d\xef\xc7\xe7\x6c\xf7\x86\x9e\x4d\x67\x5e\xbb" "\x61\xf3\xfa\x6b\x8e\xf4\x23\x00\x00\x00\x00\x13\xd8\x75\xde\xfb\x2b" "\xd2\x71\x32\xff\x67\xe3\x38\x0a\xad\x21\x9f\x5d\x10\x9a\xe3\xf9\x7f" "\xe5\xfd\xcb\x77\x6e\xcd\xbd\x3e\x25\x99\xff\x43\x08\x43\x7f\xee\xcf" "\x5e\xbb\xae\xbb\x73\x49\x18\xf9\x4e\xd0\xd3\x71\x68\xfe\xa2\x96\xe3" "\x2f\x48\xf2\x32\xf1\xb9\x50\xc9\x5b\x74\xf5\x86\xee\xf8\x33\x41\xb2" "\xee\x53\x8f\x7e\x66\xe9\xb9\x97\x5d\x3a\x92\xdf\x94\xce\x3f\x7b\x34" "\x6f\xee\x13\xa7\xad\x3e\x7c\xe0\xa6\x4b\x6a\xe6\x2d\x1b\xcd\x7b\x75" "\x56\x74\xd1\xe6\x9e\x97\x37\xa6\xf6\x59\x1a\xc9\x5b\x3a\x9a\xd7\xbb" "\xef\xf6\x85\xb7\xad\xe8\x3c\x37\x79\x8e\x28\x3e\x17\xe2\xe7\x49\xf2" "\xf6\xcc\xdf\xb1\x6f\xd7\xf6\x7b\xd6\x24\x79\x4d\xf1\xb9\x25\x5e\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\x08" "\xe1\xa4\xf7\xfe\xfe\xb5\x74\x3c\xd8\xd7\xdb\xde\x35\xd0\xd1\x1f\x32" "\x21\x44\x75\x6a\xca\x35\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d\x7c\x70" "\xfe\xf3\x83\x87\x5b\xbf\xf8\x60\x12\x57\x7a\xe7\xb3\x0d\x2c\x04\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x93\x1d\x38\x10" "\x00\x00\x00\x00\x00\xf2\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x2a\xec\xd7\x4f\x68\x1c\x55\x1c\x07\xf0" "\xf7\x76\xb7\x66\xdb\x4d\xeb\xa6\x16\x9a\x68\x0d\x29\xf6\xd2\x82\x50" "\x08\x16\x7b\x90\xe6\xe2\x1f\x24\x6a\xa9\x28\x5a\x28\x46\x31\x5e\x54" "\x2c\x88\x56\xec\xc1\xb6\xc1\x50\xd4\x43\x41\xa1\xa5\xbd\x94\x56\x3c" "\x2b\x39\x14\xb5\x87\x58\x6c\x15\x05\xb1\x8a\x07\xf1\xa4\xa0\x27\x95" "\x1c\x92\x22\xa9\xa8\x24\x99\xb7\xd9\x4c\x3b\x24\x8e\xb6\x94\xf2\xf9" "\xc0\xf0\xf6\xf7\x66\xe7\x3b\x6f\xde\xbe\x9d\xdd\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x6b\xda\xe3\x3f\xde" "\x5b\x6b\xaf\x3b\x6a\xdd\xb3\xed\xb9\xd7\x5f\xbc\xf0\xe0\xcd\x77\x7f" "\x71\x60\x78\xea\xb5\xfb\x3e\x7a\x7e\xff\xda\x8f\xd7\x5c\x68\x8e\x0c" "\x3e\xf0\xc6\xd6\x7b\xbe\x19\xfa\xbc\x6b\xa0\x77\xc3\xf0\x96\x0f\xc6" "\x1e\x1a\x1d\x39\x73\xd7\x9f\x67\x0e\x1f\x1d\x5c\xf4\x44\xaf\xcc\x35" "\x9b\xb2\xb2\x1e\x42\xfc\x2d\x86\xd0\xfb\xf3\xd8\xe1\xd1\xb3\x5f\xae" "\x9d\xe9\x8b\x33\xe7\x8f\xcd\x7d\xa1\xab\x2b\xae\xfe\xa4\x2b\xe6\x12" "\x36\x4f\x87\x10\x9e\x6e\x8d\x73\xe1\xce\xb1\xa9\xfe\x67\x66\xda\xfd" "\x6f\x76\x2c\xe8\xbf\x31\x17\x92\xbf\xae\xd0\xa8\xa6\xf1\xcc\x69\x2e" "\x1c\x2f\xd7\x97\x7a\xb6\xce\xf6\x3e\xf1\xd4\x89\xf1\x67\x07\xce\x8e" "\xf5\xed\xee\xff\x75\xf2\x8e\x17\xf6\xcd\xbf\x25\xd6\xdb\xd6\x53\x08" "\xab\x86\xda\x8f\x5f\x16\x42\x58\x9e\x6d\x33\xd2\x6a\xeb\x4e\x07\x67" "\xed\xf6\x10\xc2\x8a\xb6\xe3\xee\x5c\x64\x5c\xb7\x2d\x71\xfc\xb7\x17" "\xd4\xeb\xb2\xf6\x86\xac\x6d\x2c\x92\x93\xf6\xaf\xcf\xd5\xb5\x25\x8e" "\xa3\x96\x6b\x3b\x96\x78\x5c\x59\x95\x2b\x9c\x9f\x97\x9f\xbf\xfc\xcd" "\xe8\x4a\x49\xd7\xb9\x2a\x6b\x4f\x65\xed\xa6\x7f\x99\x53\x4d\x5b\x0c" "\x95\x18\x6a\xad\xe1\x3f\x17\xe7\xd7\x48\x68\xfb\xdc\x62\x88\xb3\x6b" "\xbb\xde\xaa\x2b\xb3\x75\x68\xd5\x21\x5f\xc7\x5c\x5d\xc9\xd5\xd5\x65" "\xb9\xeb\x9a\x3d\x6f\x36\xb1\xd5\x18\x17\xf6\xa7\xf7\xe5\xfa\xd3\xed" "\xb8\x96\xf5\xaf\x6f\xbf\x57\x5f\xc6\x8e\x82\xfe\x9e\xac\xad\x67\x5f" "\xd4\x3f\x52\x1d\xf2\x2f\xe6\x34\x2e\x79\x31\x7f\x1d\xa1\x6d\x5c\x13" "\x57\x6b\x61\x14\xa8\x14\x7c\xf7\x52\x7f\x6b\x78\xd9\x87\xd1\xc8\xfa" "\x1a\x71\xf5\x25\xc7\xfc\x7d\x19\x69\xdf\xc4\x67\x4f\xee\xfc\xfd\xfb" "\x57\x4f\x35\x0b\xc6\x11\xdf\x8f\x59\x7e\x2c\x95\x3f\x30\x7c\x6c\xfc" "\xbd\xc7\x4e\xf7\x74\x17\xe5\x0f\x55\xb2\xfc\x4a\xa9\xfc\x73\xd5\xaf" "\xa6\xdf\x9d\xec\xee\x2c\xcc\x3f\x94\xf2\xab\xa5\xf2\x1f\xf9\xeb\x97" "\x83\x07\x1e\xde\xb3\xa6\x70\x7e\x26\xd2\xfc\xd4\x4a\xe5\x6f\x78\xab" "\x73\xef\xd4\x9e\x1d\x1d\x7d\x45\xf9\xc7\x53\x7e\xbd\x54\xfe\x96\x5d" "\xbd\x5b\x6f\x9d\x7c\xe9\xe5\xc2\xf1\x6f\x4e\xf3\xb3\xbc\x54\xfe\x77" "\x6f\x6f\xbc\xb8\xeb\xd0\x87\xa7\x0b\xf3\x43\xca\x5f\x51\x2a\xff\x87" "\x63\x27\xd7\x55\x7b\xde\x39\x5f\x98\x3f\x9e\xe6\xa7\x51\x2a\xff\xd1" "\xfe\x23\xdb\xee\xbf\x65\xe4\x68\xe1\xfc\x7f\x9d\xf2\x57\x96\xca\xdf" "\x79\x7e\x74\x68\xf7\x89\x4f\x37\x16\xae\xcf\xed\x69\x7e\x9a\xa5\xf2" "\xa7\xb7\x7d\xfb\xd3\xc5\xe6\xe0\xc9\xa2\x7b\x67\x3c\x7e\xb5\x7f\x61" "\x01\xae\x2f\x37\x65\xff\xb1\x0e\x66\x75\xd9\xe7\xcc\xff\xaa\xed\x79" "\xe1\x48\x5f\x6d\xee\x3f\x5f\x67\xb6\xad\xfc\x3f\x4f\x94\x13\xdb\x9e" "\x5d\x00\x00\x00\x00\x00\xfe\x61\x07\x8e\x05\x00\x00\x00\x00\x84\xf9" "\x5b\x77\x65\xb1\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\x0a\x00\x00\xff\xff\xa6\x00\x66\xae", 23902)); NONFAILING(syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x20005e00, /*chdir=*/1, /*size=*/0x5d5e, /*img=*/0x20000000)); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); setup_sysctl(); install_segv_handler(); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }