// https://syzkaller.appspot.com/bug?id=6af428d92cb172d05fbb2c431776c7db48d9205e // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif #ifndef __NR_pwritev2 #define __NR_pwritev2 328 #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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } static long syz_open_procfs(volatile long a0, volatile long a1) { char buf[128]; memset(buf, 0, sizeof(buf)); if (a0 == 0) { snprintf(buf, sizeof(buf), "/proc/self/%s", (char*)a1); } else if (a0 == -1) { snprintf(buf, sizeof(buf), "/proc/thread-self/%s", (char*)a1); } else { snprintf(buf, sizeof(buf), "/proc/self/task/%d/%s", (int)a0, (char*)a1); } int fd = open(buf, O_RDWR); if (fd == -1) fd = open(buf, O_RDONLY); return fd; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } 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 execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[5] = {0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff, 0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } NONFAILING(memcpy((void*)0x2000000000c0, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x200000005c80, "./file0\000", 8)); NONFAILING(*(uint16_t*)0x200000000100 = 0); NONFAILING(*(uint32_t*)0x200000000102 = 0); NONFAILING(memcpy( (void*)0x2000000001c0, "\x78\x9c\xec\xdd\x7f\x90\x1c\x57\x7d\x20\xf0\xd7\x33\xb3\xda\xd1\xae\x56" "\x5a\xc9\x26\x16\x36\x5e\xad\x85\x95\x38\x26\xa0\x95\x7f\x15\x3f\x52\x61" "\x93\x4b\x80\xb2\x89\x4b\x14\x29\x82\x7c\x02\x7b\x6d\xad\x1c\x81\x24\xab" "\xf4\x23\xb6\x85\x13\xe4\x9c\xcd\xa1\xb2\xa1\x20\x45\x2a\x31\xc9\x1f\x0e" "\x65\xb8\x03\x14\xca\x55\x70\xc1\x8a\x0b\xc7\xc6\x27\xf9\xc0\xa0\xf2\x85" "\x73\x5d\x19\xd7\xc1\x9d\xe1\x0f\xae\x1c\x9f\x55\xd8\xd6\xb9\x28\x8e\xbd" "\xda\x9d\x7e\xb3\x33\x3d\xd3\xdb\xb3\xb3\xb3\xd2\xda\xfe\x7c\x4a\xda\x9e" "\x7e\xf3\xfa\xdb\xaf\xbb\xdf\xf4\xf4\xf7\x4d\xef\x4e\x00\x00\x00\xe0\x35" "\xe1\xf8\x9d\xfb\x4e\x5d\x7d\xee\x1f\x7c\xf7\x2f\x26\x5f\xfa\xf8\x7b\xfe" "\x69\xd7\xed\x61\xb0\x3c\x53\x5e\x8d\x15\x86\xd3\xe9\x2d\x67\xaa\x85\x9c" "\x4e\xfd\x95\xb5\x33\xd3\x6c\xbf\xf8\x8d\x8f\x7d\xe5\xa7\xa3\x37\xfc\xde" "\x77\xee\x1f\xf8\xe2\xcb\xc7\xb6\x5d\xb0\xfd\x87\xbf\x7f\xd6\x0d\x0f\x7e" "\xe4\xca\xa3\xf7\xfc\xed\x23\x2f\x0e\x7d\xe3\x57\xcf\x14\xc5\x8d\xfd\xe9" "\xe2\xd9\xf9\xe4\xb9\x24\x84\xea\xb7\x4e\xfe\xd5\x27\x8e\x3d\x7e\xce\x74" "\x59\xb2\x72\xfa\x67\xe9\x50\x08\xab\x97\x85\x47\x56\x27\x99\x10\x63\xbf" "\x08\x21\x6c\x9b\x9d\x6f\x7a\xfe\xeb\x2f\x5d\xba\x7d\x7a\x7a\xfb\x5d\xfd" "\x4d\x0b\xad\xca\x04\xd1\xdf\x5f\xdb\xaa\x69\xc7\x39\x78\xea\xe6\x37\x85" "\x1f\xfd\xee\x96\x3b\xbe\xbf\xee\x6b\xff\xd0\x77\xe4\xd9\x43\xb3\x55\x92" "\x6a\x43\x7f\x0a\x61\xe5\x75\x8d\xcb\xf7\x85\x10\x96\xa7\xff\xa7\xc5\xde" "\xb6\x36\x2e\x9c\x4e\x37\x87\x10\x06\x1a\x96\x7b\x6b\x41\xbb\xde\xd8\x61" "\xfb\x37\xe6\xcc\x9f\x37\xfd\x63\x47\x5f\x58\x96\xce\x0f\x16\xc4\x89\xcf" "\xaf\xcf\xcc\x97\x32\xf5\xb2\xf3\x51\x5f\x66\x3a\x50\xb0\xbe\x85\xca\x6b" "\x47\xb7\xf5\x8a\xac\xc8\xcc\x67\x4f\x46\x0b\x95\xd7\xce\x58\xbe\x3a\x9d" "\x7e\x33\x9d\x5e\x3c\xcf\xf8\xe5\x74\x1b\xca\x49\x28\x25\xa1\x52\x6f\xfe" "\xce\x24\xd4\xfb\x48\x68\x38\x6e\x49\x48\x66\x8e\x65\xb5\x3e\x5f\xaa\x1f" "\xdb\x90\x6e\x7f\x66\x3e\xc9\xcc\x97\x32\xf3\xe5\xbe\xcc\x76\xcd\xac\x37" "\xed\x68\xe5\x24\x69\x2e\x8f\xf5\x32\xe5\xf1\x74\x5c\x49\xcb\x2f\x68\x3c" "\x57\xb7\xf1\xfe\x86\xc7\x8d\xf5\x5e\x1f\xcb\xd2\x17\xea\xcb\xd9\x3a\x99" "\xa0\x83\x2d\x0f\xea\xdb\x35\x23\xb6\xeb\xe4\x1c\x6d\x39\x1d\x4a\x0d\xe7" "\xa0\x76\xe5\xf5\x03\x9f\x1e\x8c\xc1\xb4\x6c\x30\x59\xd3\xb2\xcc\x54\x1b" "\xf1\xb9\x63\x5b\xee\xde\x50\xde\xfa\xed\xe3\xc3\x39\xed\x48\xee\x4f\xd2" "\xf8\x49\x57\xf1\x0f\x7e\x6f\xf5\x8a\x0f\x7f\xf5\xf0\x81\xb5\x79\xf1\xaf" "\x2b\xa5\xf1\x4b\x5d\xc5\xff\xf1\x55\x27\x9e\xbf\xe6\xf0\x17\x3e\x9f\x1b" "\xff\x33\x31\x7e\xb9\xab\xf8\x97\x3c\x34\xf0\xdc\x55\x8f\xde\xb9\x3e\x77" "\xff\x9c\x8c\xfb\xa7\xd2\x55\xfc\x89\x67\x1e\xfb\xd4\xba\xb3\xaf\x3f\x92" "\xdb\xfe\x7b\x63\xfc\x6a\x57\xf1\xc7\x8f\x9e\xe8\x1f\x3a\xf5\xd0\xc3\xb9" "\xed\x1f\x8b\xfb\x67\x79\x57\xf1\x9f\x7e\xc7\xbb\x7e\xf2\xe5\x27\x1f\x78" "\x36\x37\x7e\x88\xf1\x07\xba\x8a\xbf\xf5\xe8\x9e\x4f\xf7\x8f\x9c\xba\x28" "\x37\xfe\xc3\x71\xff\x0c\x76\xd7\x7f\x5e\x38\x72\xc5\x53\x23\x23\x3f\x1b" "\xcd\x8b\xff\x44\x8c\x3f\xd4\x55\xfc\x2f\x1d\xba\xe7\xed\xf7\xad\xba\xeb" "\xca\xdc\xe3\xbb\x39\xee\x9f\xe1\xae\xe2\xbf\xf7\xc2\x07\xef\x58\x71\xea" "\x81\xf3\xf3\xce\x9d\xc9\xbd\xbd\x7a\xe7\x04\x78\x6d\x3a\x2b\xbd\xc6\xfa" "\x64\x3a\xdf\x6d\x9e\xb9\x50\x0d\xf9\xc2\xdf\x8c\x56\x6a\xd7\x7c\x2b\xd2" "\xff\x43\xbd\x5c\x51\xe6\xe2\x73\x7a\x3d\x2b\x7b\x19\x1f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x42\x08\xaf" "\x7b\xd3\x7f\x79\xf7\xff\xfa\xc0\xf0\x73\x95\x74\xbe\x3f\x7d\xf0\x74\xa9" "\x36\x8d\xe5\xcb\x42\x48\x96\x87\x10\xf6\xed\x9f\xd8\xbb\x7f\xc7\xee\x1b" "\x47\x3f\x72\xd3\x81\xbd\xbb\x27\x76\x8e\x4e\xec\x1f\x9d\xdc\xbd\x7f\xef" "\xad\xa3\x97\xfd\xd6\xe8\xde\xc9\x3d\x3b\x27\x6e\x9d\x7e\x76\xec\xcd\x97" "\xd6\x96\x5b\x13\x92\xda\x34\x39\xbf\x65\xdd\xfd\x53\x53\x53\xa5\xe1\xe6" "\xb2\xb8\xbe\x7f\x73\xe1\x91\x1f\x6d\x78\xeb\xff\xfe\xd7\x10\xc6\x5e\xf7" "\x83\x91\x4a\x6e\xfb\x37\xde\xb3\xeb\xbe\xb3\xdb\xfc\xcc\x48\xc6\xa7\xde" "\xb9\xeb\xc0\xd5\x3f\xb8\xfc\xef\xd3\xed\x1a\x4e\xdb\x35\xdc\xa6\x5d\x53" "\x53\x53\x53\x21\xa7\x5d\xff\xe7\x83\xbf\xbc\xef\x2f\x4f\xfe\xf4\xa2\x10" "\xc6\x7e\x6d\xae\x76\x3d\xf6\xf4\xef\xfc\x73\xda\x94\xa1\x99\x9f\x33\x05" "\x61\x3c\xb3\x44\xa9\x3f\xd4\x1a\xd4\x9f\x0c\xb4\x6d\x47\xbd\xd5\x69\x7b" "\xe2\xfe\xaa\x6c\xdf\xb1\x73\x72\x6c\xee\xfd\x3b\xbd\xfc\xf2\x9c\xed\xf8" "\xb7\x1f\x7b\xf6\x17\xdb\x6f\xf9\xec\x2f\x6b\xfb\xb7\x9a\xbb\x1d\x1d\xee" "\xdf\xe5\xe3\x53\x3b\x4b\x7f\xbd\xe5\xbd\xff\xef\xaf\x6f\xab\x15\x14\xb5" "\xeb\x4c\x1d\xf7\xa2\xfd\x1d\xb7\x22\xb6\xaf\x9c\x4e\xab\xe9\xfe\x5e\x99" "\x6e\xd7\xca\x9c\xed\xaa\xe4\x6c\xd7\x9d\xdf\x7f\xf8\xc9\x6f\x9d\x7b\xf8" "\xc5\x43\x61\xac\xf2\xc2\xba\xd6\x75\x17\x6d\x57\x5f\xda\x01\xfa\x92\xd7" "\x77\xb4\xde\xb8\x86\x81\x64\x75\x53\x79\x35\xad\x1f\x8f\x78\x5c\x6e\xe3" "\xfe\x5d\x7b\x36\xee\xbb\xf5\xe0\x9b\x77\xec\x9a\xb8\x71\xf2\xc6\xc9\xdd" "\x6f\xdb\x74\xd9\xa6\x2b\xc6\x2e\xbf\xe2\xf2\x8d\x33\x5b\xbe\xb1\xc7\xdb" "\x1f\xd7\xff\xeb\x1d\x6e\xff\xe9\xe9\x4f\xab\xfe\xf4\xd0\x37\xe3\xcf\xce" "\xfa\x53\x73\xbb\x96\xcd\x7b\x7f\x4c\xb7\xab\x78\x7f\x34\xb6\x28\xef\xf5" "\x37\xf0\xfe\x4f\x7c\xee\x6d\xf7\x3c\x7a\x75\xad\xa0\xa8\x9f\xc7\xda\xf5" "\xf3\x49\x3a\x1d\x98\x3e\xce\x9b\x42\x43\x7f\x6b\xdd\x57\xed\xb6\xab\xe8" "\xf8\x84\x10\x46\xdb\xed\x87\xe7\x5f\xbc\x32\x9c\xf3\xdf\x77\xdc\x51\x74" "\x1e\x6a\x3c\x32\x8d\x3f\x33\x92\xf1\xa9\xc7\xd7\xff\xfc\xef\xdf\xfa\x77" "\x6b\x7f\xbb\x56\x70\x5a\xce\xf3\x8d\x0d\xaa\x9d\xe7\xc3\x7c\xcf\xf3\xf5" "\x56\xcf\xb6\x67\x66\x7f\x55\xd3\xe3\x31\xb5\x44\xf7\x6f\x7f\x28\xa7\xdb" "\x35\xd8\xb6\x5d\x9b\x1e\x7f\xb4\xef\xee\xe3\xff\xfa\x67\xf5\xf6\x2d\x5b" "\x16\x6e\x99\xd8\xbf\x7f\xef\xa6\xda\xcf\x15\x69\x4b\x57\x24\xe7\xb5\x6d" "\x57\xb6\x34\x6e\xd7\xba\x99\x9f\xe5\x90\xee\x96\x50\xef\xa6\x6d\xfa\xeb" "\xb4\xbe\x50\x6b\x5f\xf6\xfc\x19\xab\x67\xf7\xea\x60\xfa\xdc\x60\xb2\xa6" "\xed\x76\x65\xc5\xe7\x8e\x6d\xb9\x7b\x43\x79\xeb\xb7\x8f\xe7\xed\xe9\xe4" "\xfe\xda\x1a\x97\x87\xa1\xda\x34\x79\x43\x4e\xcd\x9d\x99\x05\xcb\xf5\x06" "\xb7\x5b\xff\x52\x7d\xfd\x15\xf5\x8f\x91\x77\xff\xdd\x37\x3e\xf0\x8d\x7f" "\xbc\xac\xa5\x7f\x5c\x52\xfb\x59\xb4\x5d\x49\xce\x76\x7d\xed\xc9\x2f\x7d" "\xee\x8b\x9f\xfd\xf7\xff\xd8\xbb\xed\x7a\xf7\xef\x9c\x18\xfe\xf9\xff\xf8" "\x93\x0d\xb5\x82\x25\x7f\x5e\x29\xd7\x1a\x52\x6f\x75\xda\x9e\xa4\xf1\xbc" "\x72\x49\x08\x45\xaf\xbf\x75\xa1\xfd\x76\xe4\xbe\xfe\x4a\xed\xb7\xa7\xe8" "\xf5\x97\x5d\xcf\x6c\xfd\xf6\xf1\x46\x33\xf3\x83\xa1\xdc\xd5\xeb\xf5\x92" "\x87\x06\x9e\xbb\xea\xd1\x3b\xd7\xe7\xbe\x5e\x4f\xce\xf5\x7a\x6d\xdc\xd8" "\xdb\x9a\x96\x2b\x17\xbc\x5e\x97\x4a\xff\xc9\xbe\xbe\x92\x4a\x73\x3b\x16" "\xef\xf5\xd5\xd4\x51\x92\xf1\xa9\xef\x7c\xf2\xac\x43\x8f\x7c\x7c\xf3\xb9" "\xb5\x82\xa2\xf7\xcb\x7a\xed\x76\xfd\xfa\xd2\x0e\xf2\x8f\x9c\xed\xfa\xe7" "\x6b\x9e\x1a\xb9\x69\xf4\xdf\xfd\xb7\xde\x9d\x37\xbe\xf2\x5b\x5f\xbf\xf6" "\x87\x13\xe3\x7f\x5e\x2b\xe8\xfe\xb8\xc7\xb6\x74\x74\xdc\xef\x1c\x0a\x73" "\x1f\xf7\x6a\xba\x7f\xab\x39\xfb\xb7\xde\xea\x98\x77\x36\xee\xdf\xb7\xdc" "\x70\xd3\xce\x6d\xb5\xf2\xa2\xfd\x7c\xe6\xae\x7f\xd3\x69\x41\xfe\x13\x4f" "\x25\xfb\x6e\x3d\xf8\xd1\x89\x9d\x3b\x27\xf7\xee\xeb\x6c\xbb\x3a\x7d\x3f" "\x8d\xeb\xc9\xee\xe5\x6e\xdf\x4f\xe3\xd9\x6d\x4d\xc1\x76\x95\x5a\xb6\x6b" "\xf1\x1e\x74\xb2\xbf\x3a\x7d\xbd\xc5\xf6\x6f\xeb\x7a\x7f\x35\xbf\xde\x06" "\x43\xd2\xd5\xfb\xc2\xc1\xef\xad\x5e\xf1\xe1\xaf\x1e\x3e\x30\xdc\xb2\x54" "\xba\xa2\xeb\x4a\x69\xfc\x52\x57\xf1\x7f\x7c\xd5\x89\xe7\xaf\x39\xfc\x85" "\xcf\xe7\xc6\xff\x4c\x8c\x5f\xe9\x2a\xfe\xc4\x33\x8f\x7d\x6a\xdd\xd9\xd7" "\x1f\xc9\x8d\x7f\x6f\x92\xc6\xaf\x76\x15\x7f\xfc\xe8\x89\xfe\xa1\x53\x0f" "\x3d\x9c\x1b\x7f\x2c\xb6\x7f\x79\x57\xf1\x9f\x7e\xc7\xbb\x7e\xf2\xe5\x27" "\x1f\x78\x36\x37\x7e\x88\xf1\x07\xbb\xdb\xff\x2f\x1c\xb9\xe2\xa9\x91\x91" "\x9f\xe5\xc6\x7f\x22\x49\xd7\x33\x7d\x8d\x14\xc2\xd7\x5f\xba\x74\x7b\x6d" "\x3e\x09\x7d\xe9\xeb\x2d\xb6\xa3\xaf\xa9\x5d\x21\x3b\x9f\x64\xe6\x4b\x99" "\xf9\x72\xe3\x7c\x29\x8e\x22\xa4\x2b\x28\x27\x49\x73\x79\xac\x97\x96\x5f" "\xd0\xd0\x96\x76\xfe\x38\xa7\x3c\x5e\x85\x55\xd7\xd6\xa6\x2f\xc7\xf9\x90" "\x7d\x30\x77\xf9\x52\x53\x6a\x38\xf7\xb7\x2b\x2f\xba\x4e\x05\x00\x78\xb5" "\x8b\x9f\xff\xc7\x6b\xd0\xf8\xf9\xff\x64\x7a\xa1\x94\x3f\xd2\x00\xb3\x16" "\x9a\x87\xad\xcd\x89\x1b\xf3\xb0\xd9\xf1\x9c\xe6\xcf\x58\xd7\xa6\xf1\xe3" "\xf2\x71\x1c\x70\xe4\x2d\x61\x6c\x7a\x7a\xfb\x68\xed\x42\x7f\xbe\x9f\x23" "\xc4\xd7\x43\x76\x9c\x33\xae\xe7\xa2\x37\x36\xc7\x28\x1c\xe7\x9c\x9a\x59" "\x7f\xcb\x38\x67\xd1\xf8\xfb\xfa\xcc\x7c\x6c\x57\x6d\xbc\xbc\xd2\x90\x87" "\xa6\x5a\xf3\x9a\x4a\xe8\x60\xfc\xbd\x75\x3d\x73\x8f\xbf\x67\x36\xbf\xf8" "\xf3\xac\xd1\x4f\xb6\x34\x6b\xb4\x61\xdc\x2a\x7b\xfc\xfa\xd2\x11\xb3\x76" "\xf7\x3b\x64\xda\x5b\x99\x8e\x90\xd7\x3f\xb2\xe3\x62\xf1\x7e\x8e\x91\x95" "\x61\xf3\xcc\xfa\x3a\xec\x1f\xe5\xcc\x40\x41\x3c\x0e\xd9\xfb\x68\xe2\x7a" "\xce\xcd\x9c\x38\xbb\xbd\x8f\x26\xaf\x7f\x0c\xb7\xee\x87\xa6\x76\xc5\xfe" "\x11\xeb\xcd\xd1\x3f\x66\x9a\x5c\xfc\x79\x64\xeb\xf1\x0b\x73\xec\xdf\xd9" "\xe3\xd7\x3e\x5a\xf6\xf8\xcd\xe3\x78\x57\xa7\xeb\x2f\xf6\xe7\xb3\x3d\x18" "\x37\x6c\x7b\x4a\x3b\x7d\xe3\x86\x8b\xfb\x79\x98\x71\xc9\x9c\xf8\xe9\x0b" "\x6c\xa9\x8f\x1b\xc6\xf2\xb8\x1d\x95\x0e\xc7\x13\x3f\x90\x53\xde\xab\xf1" "\xc4\x78\xba\x88\xed\x3a\x39\x47\x5b\x4e\x07\xe3\x89\xc0\xab\x55\xcc\xff" "\xe3\x7b\xc4\x74\xfe\x3f\x7d\x01\xfe\x7f\x33\xf5\x8a\xf2\x94\xec\x55\x63" "\x8c\x97\x7b\x9f\x50\xb9\x7d\x7b\x8a\xf2\x8e\xd6\xfb\xf4\x06\xba\x7a\x1f" "\xdf\x7a\x74\xcf\xa7\xfb\x47\x4e\x5d\x94\x7b\x9d\xf3\x70\xa7\xf7\xe9\xed" "\x69\x9a\x1b\x28\xb8\xef\xa7\x68\x3f\x6e\xc8\xcc\x17\xee\xc7\x9c\x01\x9a" "\xa2\x7c\x2f\xbb\x9e\xa2\xfd\x9e\xbd\x2f\x63\x30\x0c\x75\xb5\xdf\xbf\x74" "\xe8\x9e\xb7\xdf\xb7\xea\xae\x2b\x73\xf7\xfb\xe6\xda\x1b\x69\xf1\x7e\xff" "\x5c\xd3\xdc\x50\xc1\x7e\x7f\x05\xe4\x0b\xed\xe3\xcb\x17\xce\x6c\xbe\x50" "\x7f\x3d\x2c\xed\xfb\x18\x8a\xc6\xcf\x16\x25\x1f\x59\xd5\x34\xdf\x3e\x1f" "\x49\x6f\x7c\x5a\xac\x7c\xe4\x8f\x72\xca\xe7\x9b\x8f\x0c\xb4\x3c\xa8\x6f" "\xd7\x8c\xa5\x9b\x8f\xcc\xbe\x91\x36\xe5\x23\x7d\xa7\xb7\x5d\x00\xc0\x2b" "\x47\xcc\xff\xeb\x9f\x9f\xa5\xf9\xff\xff\x8c\x17\x16\xe9\x75\x44\x51\xde" "\x7a\x71\x66\x3e\xc6\xcb\xcd\x5b\x73\xae\x4f\xf2\xf2\xd6\x3f\x4c\xa7\xb7" "\x64\xea\x0f\xa6\xbf\x51\x31\xdf\xeb\xe6\xf7\x5e\xf8\xe0\x1d\x2b\x4e\x3d" "\x70\x7e\x6e\xde\x72\x6f\xa7\x79\xe8\x7f\x6c\x9a\x1b\x2e\xcc\x43\x17\x96" "\x37\xe7\xe6\x11\x9b\x7b\x73\xbf\x78\x6e\x1e\x51\xcf\xb3\x16\x96\x27\xe6" "\xb6\xbf\x9e\x27\x2e\x2c\x4f\xcf\xf9\x98\xb6\x21\x4f\x5f\x58\x1e\x9d\xbb" "\x7f\xea\x79\x74\xf3\x38\xc0\xe7\x4e\xcc\x66\x1a\x73\xc5\x8f\xe3\x00\xb9" "\xf1\xeb\xe3\x00\x3d\xcc\x73\x7f\x35\x5b\xe9\xf4\xdd\xaf\x5f\x30\x5e\x97" "\x59\x59\x9c\xed\x74\xbc\xee\x8c\xe4\xd1\x2b\x9b\xb7\x73\x51\x3e\xd7\x4b" "\x7f\x7d\x76\xb1\xf2\xe8\xf7\xe7\x94\xcf\x37\x8f\x1e\x6c\x79\x50\xdf\xae" "\x19\x4b\x37\x8f\x6e\x2e\x97\x47\x03\x00\xaf\x56\x31\xff\x8f\x97\x71\x33" "\xf9\x7f\x7f\x08\x8f\x66\xea\x2d\xf4\x73\xf6\xdc\xbc\xa0\x47\xd7\xed\xd9" "\xbf\x07\x52\x8f\xff\xc4\xa2\xe4\x95\xb3\xf1\x7b\xf4\xf9\x6f\x71\xde\xb7" "\xd8\x79\xeb\x62\xe7\xf5\x8b\x3d\x2e\xb1\xd8\xf7\x8b\x4e\x2e\x72\x5e\xbc" "\xd8\xe3\x42\xc3\x33\x7f\xc0\x73\xb1\xc6\xc9\xce\xd8\xfd\xae\x4b\x25\x2f" "\x4e\x57\x2a\x2f\x06\x00\x60\x29\x8b\xf9\xff\xf2\x74\x3e\x7e\xfe\xdf\x9a" "\xff\x2f\x2c\x3f\x69\xc9\xdf\xfa\x6a\x97\x90\xb3\xf9\x49\x97\xf9\x79\x39" "\x84\x70\x86\xf2\xf3\xc6\x7a\xf2\xf3\x9c\xf8\xbd\xcd\xcf\x97\xb5\xc4\x5f" "\x2a\x9f\x5b\xe7\xc4\x5f\x3a\xe3\x5f\x8b\x7b\x9f\xcc\x6b\x3e\xff\x8f\xf3" "\xe9\xec\x94\xfc\x1f\x00\x80\x25\x28\xe6\xff\xf1\xd7\x1e\xe3\xdf\xff\xfb" "\xcf\xe9\x7c\xf6\xef\xd6\xfb\x1c\x3d\x27\xbe\x3c\x7d\x49\xfc\xdd\xa5\x57" "\x7e\x9e\xde\xe3\x71\xb6\x18\xbf\xf1\x3e\x00\xe3\x00\xa7\xf7\xfe\xf8\xe5" "\xb3\xf5\x8d\x03\x00\x00\x70\x26\xf4\xcd\x64\x4a\xad\xbf\x67\xff\xa1\x74" "\x9a\xfd\x3d\xfb\xbc\xdf\xcb\xbf\x26\xa7\x7e\xa7\x2a\xe9\xe5\xf1\xf5\xfb" "\xf7\x4e\x4e\x5e\x7b\x60\xcf\xb6\x89\xfd\x93\xd7\xee\xbe\x69\xdb\xe4\xbe" "\x6b\x6f\xde\xbb\x63\xff\xfe\xc9\xdd\xb5\x7a\x0b\xcd\x1b\x73\xf3\x96\x34" "\x6f\xec\x0b\x95\x74\x7f\xb4\xaf\x97\xcd\xdb\x56\xa5\x7f\x0f\x61\x55\xce" "\xdf\x43\xc8\xd6\x8f\x61\xcf\x9b\x79\xd0\xfa\xf7\x10\xb2\xab\x5d\x5e\xf0" "\x77\x04\x66\x8f\x5f\x67\xed\xcd\x3b\x7e\xa5\x39\xea\xb7\xeb\x1f\x79\xc7" "\x3b\x2f\xfe\x1f\xe7\xd4\x8f\xea\xc7\xff\x86\x3f\xa9\x86\xed\xfb\xae\xdd" "\xb1\x7b\xc7\xfe\x1d\x13\x3b\x77\x1c\x9c\x6c\xae\x37\x9d\xb5\x0e\xcc\xe3" "\x7b\x33\x93\xf4\xff\xbc\xbe\x2f\x35\xf3\xa3\x45\x69\xfe\xdf\xdf\x19\x0f" "\xcf\xc2\xda\x51\x6a\x69\x47\x5f\xba\x3f\xf2\xbe\x9f\x3d\xc9\xb4\x63\x75" "\xda\x92\xd5\x79\xdf\x7f\x90\xd3\xee\xef\xfe\xd7\xbf\xfc\xd3\x0b\xa7\x7e" "\xf9\xe5\x10\xc6\x5e\x57\x7e\xc3\x82\xf6\x5f\x32\x3e\xf5\x9f\x3e\x38\xf9" "\x87\xfb\x8f\xff\x60\xcf\x74\xfb\x4b\x73\xb6\xbf\x5e\x33\x6d\x57\xd1\xf7" "\x95\x66\xeb\xc7\xed\xa9\xec\xbc\x69\xdf\xfe\x37\x6d\xbf\xe9\xc0\xee\xec" "\x37\x4a\x76\x27\x8e\x67\x94\xea\xf3\x8b\x34\x9e\x91\xbe\xfc\xcb\x1d\x8e" "\x4f\x6c\xcd\x29\x9f\xef\xef\xef\x97\x5b\x1e\x2c\x4d\x1d\x8f\x4f\x00\x00" "\xd0\x24\x7e\xfe\x1f\xaf\x67\xe3\xe7\x87\x9f\x4d\x2f\xa0\x62\xf9\x6c\x9e" "\xfe\x9e\x82\x3c\x7d\x61\x9f\x1f\xe7\xe6\xe9\x63\x9d\xe5\xe9\xd9\xef\x25" "\x2b\xca\xd3\xb3\xf5\xe3\xf6\x76\x9a\xa7\x57\x17\x98\xa7\x67\xd7\x5f\x94" "\xa7\xb7\xab\xdf\x2e\x4f\xcf\xcb\xbb\xf3\xe2\xff\x51\x4e\xfd\xf9\xea\x7c" "\x3c\xa7\x8b\xfb\x3c\x62\xfa\xf9\xd5\xc3\x07\x72\xfb\xc9\x75\x9d\xf5\x93" "\xec\xf7\x19\x14\xf5\x93\x6c\xfd\xf9\xf6\x93\xa4\xa8\x9f\xf4\x87\x79\xb5" "\xb7\xa8\x9f\xb4\xab\xdf\xae\x9f\xe4\x1d\xf7\xbc\xf8\xef\xcb\xa9\x9f\xa7" "\xa8\x3f\x54\xea\xfd\x61\x61\xf7\xe5\xe4\xf6\x87\xcf\x74\xd6\x1f\x7e\x33" "\x33\x5f\xd4\x1f\xb2\xf5\xe7\xdb\x1f\x4a\x0b\x3c\x6f\x64\xd7\x5f\xd4\x1f" "\xda\xd5\x6f\xd7\x1f\xf2\x8e\x6f\x5e\xfc\xab\x73\xea\x77\xaa\xb9\x7f\x4c" "\x77\x8c\x99\x7e\x31\x79\xed\xcd\x37\xed\xfd\x68\x43\xbd\xc5\xfe\xfe\x8b" "\xd0\x7a\x4b\x46\x27\xed\x5b\x36\xbb\xec\xe2\x7e\xff\x47\xb7\x3a\xdf\xbf" "\x8b\x7b\xdf\xd7\xc2\xdb\x1f\xc2\xf8\x4c\x49\x5e\xfb\xe3\xe7\x03\x2d\xbf" "\x22\xd6\x93\xfb\xca\x16\xde\xfe\xa2\xfd\x3f\x8f\xfb\xca\x56\x86\x96\xfb" "\xca\x72\xdb\xff\xc4\xc2\x46\xc2\x3a\x6f\xff\xe2\x7e\xbf\x4b\x46\x5e\xf5" "\xd6\xe5\x4f\xd7\x78\x6d\xda\xed\x8a\xee\x3f\x2b\x1a\xc7\xdd\x92\x53\x3e" "\xdf\x71\xdc\x65\x2d\x0f\x96\x26\xe3\xb8\x70\xe6\xc4\xfc\x3f\x7e\xdc\x13" "\xf3\xff\xbb\xd2\x69\xaf\x3f\x06\x7a\xe5\x7f\x4f\xda\x2b\xf4\x7b\xcc\x4e" "\xdb\xfd\xf7\x0b\xbb\x3f\xbe\xe8\x3a\xe6\x35\xf7\x7e\x9e\xfd\xc8\xdd\xfb" "\x39\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xab\x42\x7f\x65\xed\xcc\xf4\xf8\x9d\xfb\x4e\x5d\x7d\xee\x1f\x7c" "\xf7\x2f\x26\x5f\xfa\xf8\x7b\xfe\x69\xd7\xed\xbf\xf1\xb1\xaf\xfc\x74\xf4" "\x86\xdf\xfb\xce\xfd\x03\x5f\x7c\xf9\xd8\xb6\x0b\xb6\xff\xf0\xf7\xcf\xba" "\xe1\xc1\x8f\x5c\x79\xf4\x9e\xbf\x7d\xe4\xc5\xa1\x6f\xfc\xea\x99\xc2\xc0" "\xc3\x33\x3f\x2b\x17\xa7\xb3\xd5\x10\x92\xe7\x92\x10\xaa\xdf\x3a\xf9\x57" "\x9f\x38\xf6\xf8\x39\xd3\x65\x49\x08\xa1\x9c\x0c\x1f\x0a\x61\x75\xb2\xe6" "\x91\xd5\x49\x26\xc2\xd8\x2f\x42\x08\xdb\xea\xed\x6c\x7e\xf2\xeb\x2f\x5d" "\xba\x7d\x7a\x7a\xfb\x5d\xfd\x4d\xe5\xab\x32\x41\xb2\xdb\x15\x06\xcb\xb1" "\x3d\x8d\xed\x0c\xe1\x96\xc2\x2d\xe2\x15\xa8\x9a\xf6\xb3\x83\xa7\x6e\x7e" "\x53\xf8\xd1\xef\x6e\xb9\xe3\xfb\xeb\xbe\xf6\x0f\x7d\x47\x9e\x3d\x34\x5b" "\x25\xa9\x36\xf4\xa7\x10\x56\x5e\xd7\xb8\x7c\x5f\x08\x61\x79\xfa\x7f\x5a" "\xec\x6d\x6b\xe3\xc2\xe9\x74\x73\x08\x61\xa0\x61\xb9\xb7\x16\xb4\xeb\x8d" "\x1d\xb6\x7f\x63\xce\xfc\x79\xe9\x74\x59\x3a\x1d\x2c\x88\x13\x9f\x5f\x9f" "\x99\x2f\x65\xea\x65\xe7\xa3\xbe\xcc\x74\xa0\x60\x7d\x71\xc7\x1c\x2a\xaa" "\x97\x23\xaf\x1d\xdd\xd6\x2b\xb2\x22\x33\x9f\x3d\x19\x2d\x54\x5e\x3b\x63" "\xf9\xea\x74\xfa\xcd\x74\x7a\xf1\x3c\xe3\x97\xe3\xff\x24\x94\x92\x50\xa9" "\x37\x7f\x67\x32\xdb\x47\x42\xc3\x71\x4b\x42\x32\x73\x2c\xab\xf5\xf9\x52" "\xfd\xd8\x86\x74\xfb\x33\xf3\x49\x66\xbe\x94\x99\x2f\xf7\x65\xb6\x6b\x66" "\xbd\x69\x47\x2b\x27\x49\x73\x79\xac\x97\x29\x8f\xa7\xe3\x4a\x5a\x7e\x41" "\xe3\xb9\xba\x8d\xf7\xe7\x94\xbf\x3e\x9d\x56\xd3\x17\xea\xcb\x71\x3e\x64" "\x1f\xd4\x0c\xb6\x3c\xa8\x6f\xd7\x8c\xd8\xae\x93\x73\xb4\x25\xf5\x1f\xda" "\x17\x57\x8a\x97\xec\x40\xa9\xe1\x1c\xd4\xae\xbc\x7e\xe0\xd3\x83\x31\x98" "\x96\x0d\x26\x6b\x5a\x96\x99\x6a\x23\x3e\x77\x6c\xcb\xdd\x1b\xca\x5b\xbf" "\x7d\x7c\x38\xa7\x1d\xc9\xfd\x49\x1a\x3f\xe9\x2a\xfe\xc1\xef\xad\x5e\xf1" "\xe1\xaf\x1e\x3e\xb0\x36\x2f\xfe\x75\xa5\x34\x7e\xa9\xab\xf8\x3f\xbe\xea" "\xc4\xf3\xd7\x1c\xfe\xc2\xe7\x73\xe3\x7f\x26\xc6\x2f\x77\x15\xff\x92\x87" "\x06\x9e\xbb\xea\xd1\x3b\xd7\xe7\xee\x9f\x93\x71\xff\x54\xba\x8a\x3f\xf1" "\xcc\x63\x9f\x5a\x77\xf6\xf5\x47\x72\xdb\x7f\x6f\x8c\x5f\xed\x2a\xfe\xf8" "\xd1\x13\xfd\x43\xa7\x1e\x7a\x38\xb7\xfd\x63\x71\xff\x2c\xef\x2a\xfe\xd3" "\xef\x78\xd7\x4f\xbe\xfc\xe4\x03\xcf\xe6\xc6\x0f\x31\xfe\x40\x57\xf1\xb7" "\x1e\xdd\xf3\xe9\xfe\x91\x53\x17\xe5\xc6\x7f\x38\xee\x9f\xc1\xee\xfa\xcf" "\x0b\x47\xae\x78\x6a\x64\xe4\x67\xa3\x79\xf1\x9f\x88\xf1\x87\xba\x8a\xff" "\xa5\x43\xf7\xbc\xfd\xbe\x55\x77\x5d\x99\x7b\x7c\x37\xc7\xfd\x33\xdc\x55" "\xfc\xf7\x5e\xf8\xe0\x1d\x2b\x4e\x3d\x70\x7e\xde\xb9\x33\xb9\xb7\x57\xef" "\x9c\x00\xaf\x4d\x67\xa5\xd7\x58\x9f\x4c\xe7\xbb\xcd\x33\x17\xaa\x21\x5f" "\xf8\x9b\xd1\x4a\xed\x9a\x6f\x45\xfa\x7f\xa8\x97\x2b\xca\x98\x5e\xcf\xca" "\x45\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\xab\xd3\xbf\xdc\x76\xd9\x87\x3e\xf8\xce" "\xf7\x6d\xa9\x24\x21\x24\x39\x75\xa6\xda\x88\xcf\x95\x97\x8d\x8f\x8f\x76" "\xb1\xde\x89\x67\x1e\xfb\xd4\xba\xb3\xaf\x3f\xd2\x58\xb6\xb6\x8b\x38\x00" "\x00\x00\x40\xb1\x98\x87\x97\xea\x25\xd5\xb0\x36\xdc\x9c\x2c\x0f\xe7\xb5" "\xad\x1f\xc7\x08\xce\x8b\x73\x49\x73\x79\x76\x0c\x21\xc6\xc9\x8e\x11\x74" "\x1b\xa7\xd4\x26\x4e\xa9\x8b\x38\xe5\x1e\xb5\xa7\xd2\xa3\x38\x7d\x3d\x8a" "\xb3\xac\x47\x71\xfa\x7b\x14\xa7\x5a\x10\xa7\x1a\x3a\x8b\xb3\x7c\x8e\x38" "\x95\xe9\x1e\xd0\x61\x7b\x06\xe6\x6c\x4f\xe7\x71\x06\x7b\x14\x67\x45\x8f" "\xe2\x0c\x65\x42\x74\x1b\x67\x65\x8f\xda\xb3\xaa\x47\x71\x86\x43\xf3\x8b" "\xbe\xdb\x7e\xb8\x7a\xce\xf6\x74\x1e\x67\x4d\x8f\xe2\x9c\xd5\xa3\x38\x67" "\xf7\x28\xce\xeb\x7a\x14\xe7\xd7\x7a\x14\xe7\x9c\x1e\xc5\xc9\x8e\x29\xcf" "\xb7\x1f\x0e\xa5\x35\xcf\xcd\x8b\x33\xf3\xa0\x5c\x18\xa7\x92\x94\xeb\x4f" "\xb4\x1b\x4f\x3f\x27\x5d\xcf\xf9\x0b\x5c\xcf\x60\xc1\x7a\x86\x8a\xde\x8f" "\x3b\x5c\xcf\xf2\x0e\xd7\xf3\xc6\xcc\x72\xa5\x79\xae\xa7\xda\xe1\x7a\x7e" "\x7d\x81\xeb\x49\x3a\x5c\xcf\x6f\x2e\x70\x3d\xa5\x82\xf5\xc4\x7e\x7b\x4b" "\xb6\x7d\x71\x3d\x71\xae\xc3\xfe\x7f\x6b\x8f\xe2\x1c\xec\x51\x9c\x8f\xf5" "\x28\xce\x6d\x3d\x8a\xf3\x67\x3d\x8a\xf3\xe7\x3d\x8a\xf3\xf1\x05\xc6\x01" "\xe8\x54\xcc\xff\x67\xf3\xbd\xe1\xd0\x5f\xf9\xed\x30\x90\x9e\x71\xb2\xa3" "\x00\x31\xdf\x5d\x37\xf3\xb3\xf5\xfd\x2e\xef\x84\x14\xe3\xbd\x21\x53\xbe" "\xac\x28\x5e\x36\x51\xcf\xc4\x5b\x37\xdf\xf6\x65\x07\x10\x32\xf1\xd6\x67" "\xca\xfb\x9a\xe2\x55\x6a\xf9\xc8\xdc\xf1\xaa\x8d\xf1\x36\x64\x9e\x9c\x6b" "\x7b\xdf\x31\xde\xbe\x6d\x8d\xf1\x2e\xce\x94\xf7\xcf\x11\xaf\x69\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x34\xf8\x97\xdb\x2e\xfb\xd0\x07" "\xdf\xf9\xbe\x2d\x21\x09\xd3\xff\xda\x9a\x6a\x23\x3e\x57\x5e\x36\x3e\x3e" "\xda\xc5\x7a\x8f\x6d\xb9\x7b\x43\x79\xeb\xb7\x8f\x37\x96\xf5\x57\xba\x08" "\x04\x00\x00\x00\x14\x8a\x79\x78\x5f\xbd\xa4\x1a\xfa\x2b\x9b\x42\x7f\xb2" "\xac\xa9\x5e\x35\x1d\x07\xa8\xa6\xf3\xe5\xe1\xda\x74\x64\x65\xd8\x3c\x3d" "\x4d\x46\x4b\x33\xf3\x03\xc9\xea\x39\x97\xab\xa4\xcb\x6d\xdc\xbf\x6b\xcf" "\xc6\x7d\xb7\x1e\x7c\xf3\x8e\x5d\x13\x37\x4e\xde\x38\xb9\xfb\x6d\x9b\x2e" "\xdb\x74\xc5\xd8\xe5\x57\x5c\xbe\x71\xfb\x8e\x9d\x93\x63\xb5\x9f\x21\xf4" "\x17\xc4\x0b\x21\xcc\x0c\x3f\xec\xbb\xf5\xe0\x47\x27\x76\xee\x9c\xdc\xbb" "\xaf\x56\x98\x6d\xff\xda\x74\xb9\x38\xc4\x90\xa4\xcb\x8d\xbc\x25\x8c\x4d" "\x4f\x6f\x4f\xdb\xbf\xa6\x60\x7d\xa5\x96\xf5\x2d\xde\x83\xe2\xa3\x07\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xfc\x7f\x76\xed\x2e\x44\xae\xb3\x7c\x00\xf8\x7b\x66\x66\x67\xa6\xdb" "\xe6\xdf\xf9\xd3\xaf\x69\x68\xb6\x43\x9a\x96\xa8\x55\x93\xb8\x95\x54\x4b" "\xf7\x80\x60\xa1\xf9\x20\x4b\x41\x66\xab\x6b\x09\x26\xc1\xe2\xa6\x09\x6d" "\x52\x62\x1d\xdb\x80\x6d\x4d\x50\x84\x96\x40\x88\xe4\xc2\x48\x2c\xb6\x16" "\x6f\x6c\x6b\x8b\xf4\x8b\x40\xa4\x46\x03\x6e\x0c\xd2\x16\xcd\x85\x5e\x28" "\xad\x56\xd2\x92\x0b\x49\x19\xd9\xd9\x39\xf3\xb5\x33\x9d\xed\x50\xf3\xe5" "\xef\x77\x71\xce\x99\xe7\x7d\xde\xf7\x39\xef\x59\x58\x78\xce\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\x70\x66\x4d\x57\x46\x27\xcb\x63\xe3" "\x13\xc3\x51\x08\x51\x8f\x9c\x6a\x17\xc9\x58\x3a\x1b\xc7\xa5\x01\xea\x7e" "\xe5\x85\xad\x3f\xc8\x8d\x9c\x5a\xda\x1a\xcb\x65\x06\x58\x08\x00\x00\x00" "\xe8\x2b\xe9\xc3\x87\x1a\x91\x7c\xc8\x65\xd2\x21\x1d\xae\xae\x7d\x5a\x1c" "\x5a\x06\x42\xb3\xef\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xfe\xf7\x4c\x57\x46\x27\xcb\x63\xe3\x13\x17\x47\x21\x44\x3d\x72" "\xaa\x5d\x24\x63\xe9\x6c\x1c\x97\x06\xa8\x7b\xe2\xdd\xa7\x3f\xfb\xfa\xc8" "\xc8\xdf\x5a\x63\xc5\x01\xd6\x01\x00\x00\x00\xfa\x4b\xfa\xf0\x54\x23\x92" "\x0f\xc5\x70\x5d\x18\x8a\xae\x9e\xe9\xfc\x1b\xd1\xe4\xdd\xc0\xc2\x8e\xf9" "\xb3\x79\x4d\xc9\x3a\x8b\xe6\x99\xd7\xf9\xee\xa0\x57\xde\x75\xf3\xcc\xbb" "\x61\x9e\x79\x1f\xeb\x93\xb7\xb6\x7e\xde\x11\x00\x00\x00\xe0\xfc\x97\xf4" "\xff\x99\x46\xa4\x10\x72\x99\x05\x73\xfa\xe1\xa4\xff\xef\xd7\xd7\x27\x79" "\xd7\x76\xe4\xa5\xeb\xe7\x52\x6b\xd2\x07\xca\xce\x27\x09\x00\x00\x00\x98" "\x87\xa4\xff\xcf\x35\x22\xc5\x90\xcb\x14\x1b\xfd\xfa\x7c\xfb\xfd\xc5\x1d" "\x79\xc9\xfc\x7e\xdf\xdb\x27\xf3\xaf\xef\x31\xbf\xdf\xf7\xf9\x6b\xea\x67" "\xdf\xd3\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xf9\x63\xba\x32\x3a\x59\x1e\x1b" "\x9f\x48\x47\x21\x44\x3d\x72\xaa\x5d\x24\x63\xe9\x6c\x1c\x97\x06\xa8\xbb" "\xe2\xa5\xe1\x7f\xac\x3a\xf4\xc8\xe2\xd6\x58\x2e\x33\xc0\x42\x00\x00\x00" "\x40\x5f\x49\x1f\xde\x6c\xbd\xf3\x21\x97\x19\x0e\x43\xe1\xe2\x5a\xdf\x3f" "\x72\xdb\xfe\x67\xbe\xf4\xcc\x73\xa3\x21\x84\xd9\x36\x3f\x9b\x0d\x3b\xd6" "\x6f\xdb\x76\xef\x8a\x99\x63\x58\x91\xe4\x2d\x3f\x72\x68\xe8\xfb\x87\xdf" "\xfe\xf6\x9c\xbc\xe5\xb3\xc7\xb3\xb6\x41\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\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\x23\x33\x5d\x19\x9d\x2c\x8f\x8d\x4f\x5c\x14" "\x85\x10\xf5\xc8\xa9\x76\x91\x8c\xa5\xb3\x71\x5c\x1a\xa0\xee\x9b\x9f\xff" "\xe2\x5f\x9e\x3c\xfe\xfc\x5b\xad\xb1\xe2\x00\xeb\x00\x00\x00\x00\xfd\x25" "\x7d\x78\xb3\xf7\xcf\x87\x62\xc8\x86\x6c\xb8\xb2\xf6\xa9\xb5\xd7\x9f\x91" "\xea\x98\xdf\xeb\x9d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x70\xe1\xb8\xef\x9b\x0f\x7c\x63\xfd\xd4\xd4\xc6\x7b\x5d\x9c" "\x9d\x8b\x6a\x3a\x84\x73\xe0\x36\x5c\xb8\x68\xbf\x38\xdb\xff\x99\x00\x00" "\x80\x8f\xda\xb5\x21\x0a\xd5\x0f\xe9\xaa\x75\x67\xfb\xae\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\x80\x73\xc1\x74\x65\x74\xb2\x3c" "\x36\x3e\x91\x8f\x42\x88\x7a\xe4\x54\xbb\x48\xc6\xd2\xd9\x38\x2e\x7d\xc8" "\x9a\x2f\xe6\x43\x88\x5f\x38\x9a\x5b\x70\xea\xa5\x57\x5a\xe3\xc5\x81\x76" "\x00\x00\x00\x00\xf4\x93\xf4\xe1\xcd\xde\x3f\x1f\x8a\x61\x28\x0c\x85\x2b" "\x6a\x9f\xba\xbd\x13\xa8\xf5\xff\x85\x33\x78\x93\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\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\x39\x65\xba\x32\x3a\x59\x1e\x1b" "\x9f\x58\x10\x85\x10\xf5\xc8\xa9\x76\x91\x8c\xa5\xb3\x71\x5c\x1a\xa0\xee" "\x13\x3b\xf7\x7d\xee\xe0\xa5\xdf\xbb\xbd\x35\x96\xcb\xd4\xd7\x5c\x30\xc0" "\x82\x00\x00\x00\x40\x4f\x49\x1f\x9e\x6d\x44\xf2\x21\x97\xf9\x78\xc8\x85" "\x6b\xea\x9f\xa7\xda\x27\x44\xe9\xfa\xb9\xfb\x7b\x81\xe6\xbc\xad\x6d\xd3" "\x86\xe7\x3d\xaf\xd2\x36\x2f\x3d\xef\x79\xbb\x3a\x76\x96\xa9\xef\x66\x76" "\x5e\x3e\x59\xaf\x30\x7b\x6e\xcc\x2b\x35\xe7\xa5\xea\xf3\x4a\x2d\xf3\x8a" "\xa1\x51\xbe\xd4\x98\x57\x7b\x58\x7b\xda\xaa\x2d\xe8\x73\x9f\x73\x9f\x3c" "\x00\x00\x00\x9c\x39\x49\xff\x9f\x6b\x44\x0a\x21\x97\xc9\xb5\xf4\xff\x3f" "\x6d\xcb\x2f\xe8\x73\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\x80\x1e\xa6" "\x2b\xa3\x93\xe5\xb1\xf1\x89\x28\x0a\x21\xea\x91\x53\xed\x22\x19\x4b\x67" "\xe3\xb8\x34\x40\xdd\x07\x7e\xfb\xff\x97\x7c\xf5\x67\xbb\xb7\xb7\xc6\x8a" "\x03\xac\x03\x00\x00\x00\xf4\x97\xf4\xe1\xcd\xde\x3f\x1f\x8a\x61\x51\xf8" "\xbf\xb0\xa8\xd6\xf7\x87\x42\x7b\x7e\x92\xf7\xcf\xf2\xe9\x83\x8f\xff\xeb" "\xaf\x4b\x43\x58\x76\xe5\xb1\x91\x4c\xe7\xb2\x3f\x4a\x2e\x7e\xfd\xe6\xad" "\x2f\x77\x1e\x42\x48\xb5\x67\xa7\x42\xb8\xb4\x5e\x2f\xea\x51\xef\x37\xbf" "\x7f\xfc\xfe\x25\xd5\xd3\x4f\x86\xb0\xec\x8a\xf4\x35\x73\xea\x85\x0f\xae" "\xd7\xbe\x64\x5c\x7d\xb6\xbc\x71\xcd\xb6\xc3\xc7\xb6\xf6\x79\x38\x00\x00" "\x00\x70\x81\x48\xfa\xff\xa1\x46\xa4\x10\x72\x99\x7b\x7a\xf6\xff\x49\xe7" "\xdd\xa7\xff\x6f\xa8\x35\xe0\x97\xde\xbf\xf3\x97\x97\xd7\x8f\xf5\x8e\xbc" "\x63\x46\xaa\x50\xaf\x97\xea\x51\xef\x0b\x4b\x9e\xfe\xf3\xf5\x2b\xff\xfe" "\xf6\x4c\xff\x3f\xb7\xde\x27\x1b\x57\x9f\xde\xb7\xf9\xe0\xe5\x6d\x05\x67" "\x23\x1d\xa2\xb8\x3a\xb6\x79\xfb\xda\x63\x37\x1d\x48\x25\xbb\x9e\xad\x9f" "\xee\xa8\x9f\x3c\x97\x2f\x7f\xeb\xad\x7f\x6f\xda\xf1\xd8\xe9\xd9\xfa\xf9" "\x90\xaf\xc7\x17\x76\xdc\xca\x6c\xb5\xb9\xc7\x8e\xf2\x21\xae\x4e\xa5\xf6" "\x4e\xac\x7e\x7f\x6f\xa5\xbd\x7e\x2e\x74\xdf\xff\x23\xbf\x7b\xe5\xf8\x8b" "\x0b\x77\xbf\x37\x53\xff\xdd\x6b\x87\x1b\xf5\x6f\x08\xdd\xea\xcf\xee\x3c" "\xd3\xb3\x7e\xb8\x28\xae\x0e\xdf\xf1\xe8\x9e\x9b\xf7\x1d\x5a\xdb\x5e\x3f" "\x84\x50\xea\x56\xff\x9d\xf7\x6e\x0f\x57\xfd\xf1\xee\x87\x3b\xf7\x3f\xdc" "\xb1\x70\xeb\x93\x6f\x3d\x76\x3e\x80\xb8\x7a\x64\xf1\xc9\x03\x2b\xf7\x17" "\x6f\x69\xaf\x1f\x75\xd4\x4f\x9e\xff\xcf\x8f\x3f\xb1\xe7\x27\x8f\x7d\xf7" "\xb9\xa4\x7e\xf2\x5b\x91\xa5\xd7\xcd\xb7\x7e\xaa\xa3\xfe\x6b\xbb\x2e\xdb" "\xf9\xea\x43\xeb\x16\xb6\xd7\x4f\xf5\xd8\xff\xcb\x77\xbe\x3e\xb2\xa5\xf4" "\x9d\x3f\x74\xee\x7f\x43\xdb\xaa\x99\x9e\x77\x31\x77\xff\x4f\xdd\xf8\x8b" "\xbb\xde\x58\x1f\x3f\xd8\x39\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\x70\x61\x99\xae\x8c\x4e\x96\xc7\xc6\x27\x52\x51\x08\x51\x8f\x9c\x6a" "\x17\xc9\x58\x3a\x1b\xc7\xa5\x01\xea\x9e\x58\x75\xf4\x9d\x3b\x77\xff\xf8" "\x87\xad\xb1\xe2\x00\xeb\x00\x00\x00\x00\xfd\x25\x7d\x78\xb3\xf7\xcf\x87" "\x62\xc8\x86\x6c\x18\xae\xf5\xfd\xcf\x96\x37\xae\xd9\x76\xf8\xd8\xd6\x50" "\x98\x1d\x8d\xea\xe7\xcc\xd4\x96\xfb\xb6\x7d\x62\xd3\x96\xed\xf7\x6c\x38" "\x4b\x77\x0e\x00\x00\x00\xcc\xd7\x89\x55\x51\xad\xff\xcf\x34\x22\x85\x90" "\xcb\x2c\x09\x43\xf5\xfe\x7f\x6c\xf3\xf6\xb5\xc7\x6e\x3a\x90\x4a\xfa\xff" "\xd4\xcc\x39\x6a\xfe\x54\x20\xc9\x7b\x6d\xd7\x65\x3b\x5f\x7d\x68\xdd\xc2" "\xc6\x7b\x82\x10\x6a\x3f\x0b\xc8\x6f\xba\x7b\x6a\xe3\x67\x9a\x79\xb7\xdd" "\x7a\xb4\x70\xf2\x4f\x5f\xbf\xbe\x6b\xde\x8a\x66\xde\x91\xc5\x27\x0f\xac" "\xdc\x5f\xbc\x25\xc9\x0b\xad\x79\xcb\x43\xe3\xfd\xc4\x53\x37\xa6\xee\x7a" "\x63\x7d\xfc\x60\xe3\xfe\x5a\xf3\x3e\xf5\xb5\x2d\x53\x1b\xda\xef\x73\xf8" "\x8e\x47\xf7\xdc\xbc\xef\xd0\xda\x54\xf2\x1e\xa3\x7e\x1e\xae\xaf\x9b\xe4" "\x4d\xa5\xf6\x4e\xac\x7e\x7f\x6f\x25\x55\x08\xb9\x99\xf1\x74\x3d\xaf\xb6" "\xee\xb2\xff\xca\x9f\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x7b" "\xd3\x95\xd1\xc9\xf2\xd8\xf8\x44\x48\x87\x10\xf5\xc8\xa9\xb6\xaa\x07\x92" "\xb1\x74\x36\x8e\x4b\x03\xd4\x5d\xbd\xe4\x57\x0f\x5f\x72\xea\xf9\x45\xad" "\xb1\x5c\x66\x80\x85\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x0f\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xaf\x9f\xd0\x38\xaa\x38\x0e\xe0" "\xef\xed\x26\x66\x9b\x4d\xda\xa4\x15\x8c\x8a\x69\x5a\x15\xa5\x1e\x5a\x14" "\x44\xf4\xa2\xa2\x22\xad\x48\xc1\x53\xa5\x48\xb5\xb5\x07\x51\x10\x44\x94" "\x7a\x30\x95\x56\x2c\x55\xf1\x22\x58\xbd\x14\x51\x41\x8d\x52\x50\xb0\xb1" "\x58\x5a\x25\x15\xff\x15\x2f\x1e\x54\x50\xa8\x1e\x84\x52\x0c\x68\x42\xf1" "\xa0\xb2\xbb\x6f\x36\x9b\xe9\x8e\xdb\x6e\xaa\xa0\x7e\x3e\xb0\xbc\xbc\x37" "\x33\xdf\xf9\xcd\xbc\xb7\xb3\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x7f\x95\xbe\x9e\x91\x7a\x7b\x64\xe7\x43\xb3\xb7" "\x5f\x70\xf3\xa7\x4f\xdc\x3b\xf3\xf8\xad\xef\x3f\xb0\xfd\xb2\xc7\xde\xf8" "\x71\x6c\xf3\x8d\x9f\xec\xeb\x7f\xf5\xe4\xd4\x96\x15\x5b\xbf\xb9\x69\xd9" "\xe6\x03\xf7\xad\x9d\xdc\xf3\xd2\xe1\x5f\x07\xdf\xfd\xfd\x58\xc7\xe0\x47" "\x1b\xcd\xaa\xd4\xad\x84\x10\x4f\xc4\x10\x2a\x1f\x4c\x3f\xff\xe4\xd4\x67" "\xe7\xd5\xc6\x62\x08\xa1\x1c\x87\xc6\x43\x18\x8e\x4b\x0f\x0f\xc7\x5c\xc2" "\x9a\xdf\x42\x08\x5b\x9a\x75\xce\xdf\xf8\xce\xcc\x55\x5b\x6b\xed\xf6\xdd" "\x7d\xf3\xc6\x97\xe4\x42\xf2\xd7\x15\xaa\xe5\xac\x9e\x86\xa1\xf9\xf5\xf2" "\xdf\x52\x49\xeb\x6c\xdb\xec\x23\x57\x84\xef\x6e\xd8\xb0\xe3\x8b\xe5\x6f" "\xbf\xd5\x3b\x71\x7c\x7c\x6e\x97\x58\xdb\xa7\x9c\xd6\x53\x08\x8b\x37\xb5" "\x1e\xdf\x1b\x42\x58\x94\x3e\x35\xd9\x6a\x1b\xc9\x0e\x4e\xed\xfa\x10\x42" "\x7f\xcb\x71\xd7\x74\xa8\xeb\xe2\xd3\xac\x7f\x75\x41\xff\xc2\xd4\x9e\x93" "\xda\x6a\x87\x9c\x6c\xfb\xca\x5c\xbf\x94\xdb\x2f\xdf\xcf\xf4\xe6\xda\xfe" "\x0e\xe7\x5b\xa8\xa2\x3a\xba\xdd\xaf\x93\x81\x5c\x3f\xff\x30\x5a\xa8\x66" "\x9d\xab\xdb\x8f\x0f\xa7\xf6\xbd\xd4\xae\x3a\xc3\xfc\x72\xf6\x89\xa1\x14" "\x43\x4f\xb3\xfc\xfb\xe3\xdc\x1a\x09\x2d\xf3\x16\x43\xac\xcf\x65\xa5\xd9" "\x2f\x35\xe7\x36\xa4\xeb\xcf\xf5\x63\xae\x5f\xca\xf5\xcb\xbd\xb9\xeb\xaa" "\x9f\x37\x2d\xb4\x72\x8c\xf3\xc7\xb3\xfd\x72\xe3\xd9\xe3\xb8\x27\x8d\xaf" "\x68\x7d\x56\xb7\x71\x47\xc1\xf8\xf9\xa9\xad\xa4\x2f\xea\xc9\xac\x1f\xf2" "\x7f\x34\x54\x4f\xf9\xa3\x79\x5d\x75\x59\x5d\xd3\x7f\x51\xcb\x3f\xa1\xd4" "\xf2\x0c\x6a\x37\xde\x9c\xf8\x34\x19\xd5\x34\x56\x8d\x4b\x4f\x39\xe6\x8f" "\x36\xb2\x6d\x53\x1b\x9e\xbe\xb4\xbc\xf1\xc3\x23\x43\x05\x75\xc4\x7d\x31" "\xe5\xc7\xae\xf2\xb7\x7d\x3e\x3c\x70\xd7\x9b\xbb\x1e\x1e\x29\xca\xdf\x54" "\x4a\xf9\xa5\xae\xf2\xbf\x5f\x77\xf4\xe7\x3b\x77\xbd\xfc\x62\x61\xfe\x73" "\x59\x7e\xb9\xab\xfc\x2b\x0f\xf6\x9f\x58\xf7\xd1\xce\x95\x85\xf7\x67\x7a" "\xee\x09\x72\x3a\xf9\x31\xf5\xb3\x6d\x77\x1f\xfb\xf8\x99\xe5\xe7\xde\x33" "\xd1\x6e\xae\xeb\x99\x7b\xb3\xfb\x5f\xe9\xaa\xfe\xeb\x27\x8f\xf6\x0d\xce" "\x1e\x3c\x54\x58\xff\x9a\xec\xfe\x2c\xea\x2a\xff\xdb\xeb\x6e\xf9\xe1\xf5" "\xaf\xf6\x1f\x2f\xcc\x0f\x59\x7e\x7f\x57\xf9\x1b\x27\x1f\x7c\xb6\x6f\x74" "\xf6\xf2\xc2\xfc\x43\x8d\xaf\x42\xb5\xbe\x42\xbb\x58\x3f\xbf\x4c\x5c\xfd" "\xf5\xe8\xe8\x4f\x63\x45\xf9\x5f\x66\xf7\x7f\xb0\x4d\x7e\xec\x98\xff\xda" "\xf8\x9e\x6b\x5f\x59\xb2\x7b\x6d\xe1\xfa\x5c\x9f\xdd\x9f\xa1\x94\xbf\xe8" "\x8c\xea\xbf\xed\x92\x03\x3b\x06\x66\xf7\x5f\x54\x2e\xca\xdf\x7b\xb6\x7e" "\x39\x01\xfe\x9f\x96\xa5\xff\xb1\x9e\x4a\xfd\xc2\xf7\xcc\xec\xe7\x61\xa6" "\xd4\xf6\x3d\x73\xa1\x5a\xde\x17\x5e\x18\xeb\x69\xfc\x02\x0d\xa4\xcf\xe0" "\xd9\x3c\x51\x4e\xed\x3c\x8b\xff\xc6\x7c\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\x4f\x76\xe0\x80\x04" "\x00\x00\x00\x40\xd0\xff\xd7\xed\x08\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x9e\x0a\x00\x00\xff\xff\xfe\xde" "\x24\x29", 23096)); res = -1; NONFAILING(res = syz_mount_image( /*fs=*/0x2000000000c0, /*dir=*/0x200000005c80, /*flags=MS_SYNCHRONOUS*/ 0x10, /*opts=*/0x200000000100, /*chdir=*/9, /*size=*/0x5a38, /*img=*/0x2000000001c0)); if (res != -1) r[0] = res; syscall(__NR_munmap, /*addr=*/0x200000001000ul, /*len=*/0x4000ul); syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0ul, /*flags=*/1, /*mode=*/0); NONFAILING(memcpy((void*)0x200000000680, "./file1\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000680ul, /*flags=O_SYNC|O_NOATIME|O_CREAT|FASYNC|O_WRONLY*/ 0x143041, /*mode=*/0); if (res != -1) r[1] = res; NONFAILING(*(uint64_t*)0x2000000001c0 = 0x200000000080); NONFAILING(memset((void*)0x200000000080, 255, 1)); NONFAILING(*(uint64_t*)0x2000000001c8 = 0xfdef); syscall(__NR_pwritev2, /*fd=*/r[1], /*vec=*/0x2000000001c0ul, /*vlen=*/1ul, /*off_low=*/0xe7b, /*off_high=*/0, /*flags=*/0ul); NONFAILING(memcpy((void*)0x200000000080, "./file1\000", 8)); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=O_SYNC|O_DIRECT|O_CREAT|O_RDWR*/ 0x105042, /*mode=*/0); if (res != -1) r[2] = res; syscall(__NR_mmap, /*addr=*/0x200000001000ul, /*len=*/0x1000ul, /*prot=PROT_WRITE*/ 2ul, /*flags=MAP_FIXED|MAP_SHARED*/ 0x11ul, /*fd=*/r[2], /*offset=*/0ul); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0ul, /*flags=*/2, /*mode=*/0); if (res != -1) r[3] = res; syscall(__NR_write, /*fd=*/r[3], /*buf=*/0ul, /*count=*/0x5cul); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0ul, /*type=*/0ul, /*flags=*/0ul, /*opts=*/0ul); NONFAILING(memcpy((void*)0x200000000300, "./file1\000", 8)); res = syscall( __NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000300ul, /*flags=O_NOATIME|O_DIRECT|O_CREAT|O_CLOEXEC|0x2*/ 0xc4042, /*mode=S_IXOTH|S_IWOTH|S_IXGRP|S_IWGRP|S_IRGRP|S_IWUSR|S_IRUSR*/ 0x1bb); if (res != -1) r[4] = res; NONFAILING(memcpy((void*)0x200000001400, "/dev/fb0\000", 9)); syscall( __NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x200000001400ul, /*flags=__O_TMPFILE|O_SYNC|O_PATH|O_NONBLOCK|O_LARGEFILE|O_CREAT|O_CLOEXEC*/ 0x789840, /*mode=*/0); syscall(__NR_truncate, /*file=*/0ul, /*len=*/0x7ffffffdul); syscall(__NR_splice, /*fdin=*/r[0], /*offin=*/0ul, /*fdout=*/(intptr_t)-1, /*offout=*/0ul, /*len=*/0xaul, /*f=SPLICE_F_MOVE*/ 1ul); NONFAILING(syz_mount_image( /*fs=*/0, /*dir=*/0, /*flags=MS_I_VERSION|MS_SLAVE|MS_POSIXACL|MS_STRICTATIME|MS_SILENT|MS_NOEXEC|0x24c0*/ 0x189a4c8, /*opts=*/0, /*chdir=*/1, /*size=*/0, /*img=*/0)); NONFAILING(syz_open_procfs(/*pid=*/0, /*file=*/0)); NONFAILING(*(uint64_t*)0x200000000180 = 0x200000001180); NONFAILING(*(uint64_t*)0x200000000188 = 0x1000); NONFAILING(*(uint64_t*)0x200000000190 = 0); NONFAILING(*(uint64_t*)0x200000000198 = 0); syscall(__NR_readv, /*fd=*/r[4], /*vec=*/0x200000000180ul, /*vlen=*/2ul); syscall(__NR_quotactl, /*cmd=Q_GETINFO_PRJ*/ 0xffffffff80000502ul, /*special=*/0ul, /*id=*/0, /*addr=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }