// https://syzkaller.appspot.com/bug?id=2b6ba26eeadef2f80a30ec6fd2263526272e545c // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } static long syz_open_dev(volatile long a0, volatile long a1, volatile long a2) { if (a0 == 0xc || a0 == 0xb) { char buf[128]; sprintf(buf, "/dev/%s/%d:%d", a0 == 0xc ? "char" : "block", (uint8_t)a1, (uint8_t)a2); return open(buf, O_RDWR, 0); } else { char buf[1024]; char* hash; strncpy(buf, (char*)a0, sizeof(buf) - 1); buf[sizeof(buf) - 1] = 0; while ((hash = strchr(buf, '#'))) { *hash = '0' + (char)(a1 % 10); a1 /= 10; } return open(buf, a2, 0); } } //% 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"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20005dc0, "./file1\000", 8); memcpy((void*)0x20000200, "errors=continue", 15); *(uint8_t*)0x2000020f = 0x2c; memcpy((void*)0x20000210, "inline_data", 11); *(uint8_t*)0x2000021b = 0x2c; memcpy((void*)0x2000021c, "fsck", 4); *(uint8_t*)0x20000220 = 0x2c; memcpy((void*)0x20000221, "fix_errors", 10); *(uint8_t*)0x2000022b = 0x3d; memcpy((void*)0x2000022c, "yes", 3); *(uint8_t*)0x2000022f = 0x2c; *(uint8_t*)0x20000230 = 0; memcpy( (void*)0x20005e00, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\x4a\xab" "\x8f\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xe5\x3b" "\x47\x1b\xe7\xec\xd8\x8e\x6c\x64\x61\x01\x16\xa7\x93\x64\x58\x61\x1d" "\x42\x12\xfa\x40\x20\x5d\xc2\x57\x0e\x08\x26\x29\x55\x41\x1d\x04\xe2" "\x44\x07\x14\xb9\x4a\x5d\x25\xb8\x74\x09\xe1\x4e\xa9\x92\x31\xe0\x8b" "\xaf\x8a\x42\x26\xfe\x83\x23\x5f\x47\x05\xe7\x8f\xf8\x88\xea\x2c\x71" "\x44\x72\xbc\x57\xbb\xdb\xbd\x3b\xd3\xdb\xef\xf4\xec\xf4\xac\x10\xf6" "\xef\x57\xa5\x9d\x7d\x7b\x9f\x79\xde\xe7\xe9\x7d\xa7\xa7\x7b\xb4\x3b" "\x1b\x01\x00\x00\xf0\x4b\xe1\x95\xdf\xd9\xf3\xee\x57\x2e\xf8\xdc\x0f" "\xee\x1d\x3a\x75\xd7\x17\xfe\xe8\xd6\x7b\xa2\xde\xea\xe8\xf6\x9e\x34" "\xa0\x2f\xb9\xbd\xe3\xfd\xaa\x90\xe9\xb4\xfc\x87\x67\x1a\xbe\xb3\xdd" "\xb5\xfe\xd1\xdb\xec\xba\x38\xff\x8f\x17\xbe\xdb\x77\xdf\x9a\x2f\x3f" "\xb4\xea\xf3\x3f\xdc\xfc\x27\xf3\x07\x97\x2e\x1b\xba\xea\x3b\x47\xae" "\xbe\xff\xbe\x17\x3f\xf3\xb3\x17\x1f\x7b\x62\x4d\xd1\x3c\xe9\x7a\xba" "\x74\x62\x1c\xff\x45\x1c\x45\x4b\xdf\x3e\xf2\xd8\xfd\x2f\xff\xe9\xf9" "\x23\xdb\xe2\x91\xf9\xe3\xbe\xbb\xa3\xf9\xf3\xe3\x05\xdf\x9d\x1f\x67" "\x52\xac\x38\x1d\x45\xd1\x4d\xe3\x75\x36\x7e\xf1\xc8\xa9\x95\x5b\x47" "\x6e\xef\xf9\x56\x77\xc3\xf6\x79\x99\x24\xd6\xfb\x2f\xb7\x9e\x64\x9d" "\x1d\xdc\xf4\x8d\xa7\x8e\xdd\x32\xf8\xf2\x91\x81\x5d\x2b\x7f\x72\xf2" "\xca\x9d\x77\x4f\x84\xc4\x3d\x75\xeb\x29\x8a\xe6\x6e\xae\xbf\x7f\x57" "\x14\x45\x33\x93\x7f\x23\xd2\xd5\xd6\x9f\xde\x39\xb9\x5d\x1b\x45\xd1" "\xac\xba\xfb\x7d\xaa\xa0\xae\x4b\x5a\xac\xff\xb2\xc0\x78\x49\x72\x3b" "\x23\xb9\xed\x2d\xc8\x93\x7e\xfd\xe2\xcc\xb8\xd6\x62\x1d\xb5\xcc\x6d" "\x77\x8b\xf7\x6b\x57\x65\x9a\xf3\x67\x65\xf7\x5f\xf6\x60\x34\x5d\xd2" "\x3e\xe7\x26\xb7\xcf\x27\xb7\x97\x4e\x31\x4f\x35\xfd\x17\x47\x95\x38" "\xaa\x8d\x97\xbf\x3d\x9e\x58\x23\x51\xdd\xf7\x2d\x8e\xe2\xd1\xb5\xdd" "\x33\x3e\xae\x8c\x8e\xa3\xf1\x71\x94\x1d\xc7\x99\x71\x25\x33\xae\x76" "\x65\xfa\x1a\x9d\x37\xd9\xb1\xd5\x38\x6e\xdc\x9e\xc6\x65\xb6\xa7\x87" "\xe3\x5a\xb2\xfd\xe2\xfa\x63\x75\x8e\x75\x81\xed\x8b\x92\xdb\x9e\xe4" "\x81\xfa\x5e\x3a\x8e\xb2\x9f\x8c\xe9\x9d\xf4\xc9\x44\x1f\x51\x5d\x5d" "\x27\xce\xd6\xc2\x08\xa8\x04\x1e\x7b\xe9\xf6\xf1\xf2\x92\x6f\x46\x6f" "\xb2\xad\x37\x5e\x30\xe9\x3e\xc3\x39\xd2\xaf\x9d\xf8\xfe\x96\x0d\xef" "\xbc\x71\xe0\xf9\xbe\x40\x1d\xf1\x73\x71\x92\x3f\x6e\x2b\xff\xe0\xd0" "\x93\xc7\x9e\xbd\xfe\xe8\xa2\xfe\x50\xfe\xcd\x95\x24\x7f\xa5\xad\xfc" "\xaf\x54\x5f\x3d\xfd\xcc\xc9\xfe\xd9\xc1\xfc\x87\xd2\xfc\xd5\xb6\xf2" "\xaf\xff\xf9\x8f\x1f\xbc\xf7\x9a\xfd\x0b\x83\xfb\xe7\x44\xba\x7f\x6a" "\x6d\xe5\x5f\xf6\xf0\xec\x83\xa7\xf6\xaf\xeb\x1e\x08\xe5\x3f\x9c\xe6" "\xef\x69\x2b\xff\x55\x1b\x97\xae\xba\xf0\xe4\xbe\xdb\x83\xf5\xaf\x48" "\xf7\xcf\xcc\xb6\xf2\xff\xe8\x91\xe5\x67\x36\x1e\x7a\xe1\x68\x30\x7f" "\x94\xe6\x9f\xd5\x56\xfe\x37\x9f\x7c\x7a\x49\x75\xd1\xa3\xc7\x83\xf9" "\x8f\xa5\xfb\xa7\xb7\xad\xfc\xd7\xae\x7c\x7c\xf5\x97\x16\xdf\xf7\x44" "\x70\xff\xbf\x96\xe6\x9f\xd3\x56\xfe\x0d\xc7\xef\xdf\xbc\xeb\xa9\x97" "\x96\x07\xd7\xe7\xda\x74\xff\xf4\xb5\x95\xff\xf4\xea\xd7\xdf\x3a\xd3" "\xb7\xe6\xe9\xd0\xb1\x33\x3e\x7c\xb6\x9f\x61\x01\x7e\xb1\x7c\x28\x39" "\xc7\x7a\x30\x19\xb7\x7b\x9d\x59\x56\xdd\xf5\xc2\xe3\x03\xb5\xb1\x73" "\xbe\xd9\xc9\xbf\x39\x9d\x9c\x28\x23\xae\xbb\x76\x01\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x76" "\x3d\xba\xfa\xdf\xdf\x56\x3f\xfe\xe8\xff\xb9\x7d\xfd\xf1\xff\xb0\x74" "\x5b\x2d\x19\x77\xd7\xa2\x28\x8e\xa2\xe8\x9d\xea\xd8\x38\xdd\x3e\x23" "\x8a\xe2\x99\x51\x14\xed\xd9\xbb\x65\xf7\xde\x6d\x3b\x6e\x1e\xf8\xad" "\x9d\xfb\x76\xef\xd8\xb2\x7d\x60\xcb\xde\x81\xa1\x1d\x7b\x77\xdf\x39" "\xf0\xb7\xfe\xe6\xc0\xee\xa1\x5d\xdb\xb7\xdc\x39\xf2\xd5\x15\x97\xad" "\x1c\xbb\xdf\x82\xd1\x6c\x51\xb4\x20\xbe\x70\x52\x2d\xc3\xc3\xc3\xc3" "\x51\x14\x0d\xd4\x6f\x4b\xe7\xfb\xbd\x2f\x3e\xf7\xff\xd6\x3f\xf1\x97" "\x5f\x8f\xa2\x15\xe7\xbd\xbe\xb4\x16\xec\xe7\x93\xff\xf5\xad\xcf\x2d" "\xcc\xf9\x98\x11\x0f\x0e\xaf\xfd\x17\x57\x3e\x72\x60\xc6\xff\x9a\x37" "\xb6\xa1\x2f\xa9\xab\x2f\x54\x57\x5f\xe3\xb6\xb4\x82\xde\xc1\xd7\xfe" "\xec\xb3\xcf\xbf\x31\x52\xd7\x87\x9b\xd5\xf5\xd8\xab\xd7\xfd\xdf\x86" "\x82\x46\x37\x4c\xe4\x49\x54\xba\xa3\xca\xe8\x27\xdd\xf1\xac\xdc\x3a" "\xc6\xab\x9e\xa8\x67\x74\x7f\xd5\xb6\x6e\xdb\x3e\xb4\xa2\x78\xff\xc6" "\x81\xfd\xfb\xf1\x97\xfe\xf0\xe4\xbf\xbb\x63\xfd\x3f\x1d\xdb\xbf\x3d" "\xc1\x3e\x5a\xdc\xbf\x23\x7b\xb5\x36\xfc\xd0\x4f\xef\xfd\xf8\xdd\x9f" "\x1d\xfa\xf4\x39\xfc\x7d\x2f\xda\xdf\x75\x2d\x8c\xd6\x97\xee\xbf\x9e" "\x64\x7f\xcf\x4d\xfa\x9a\x1b\xe8\xab\x12\xe8\xeb\xf6\x81\x37\x4f\xfc" "\xb3\x7f\xfb\x9f\x9e\xb9\x3b\x5a\x51\xfb\xe9\x45\x93\xe7\x2e\xea\xab" "\x2b\x59\x00\x5d\xf1\xa2\x96\xe6\x4d\x67\x98\x15\xcf\x6f\x88\xed\x49" "\xe2\xd3\xef\x78\x7a\xbf\x4f\xee\xbd\x75\xd7\x27\xf7\xdc\x79\xe0\xb2" "\x6d\xb7\x6e\xb9\x79\xe8\xe6\xa1\x1d\x2b\x57\x5e\xb9\xea\xf2\x95\x97" "\x5f\xb1\x6a\xe5\x27\x47\x5b\x1f\xfb\xd8\xb1\xfe\xd3\xf9\x3f\xde\x62" "\xff\xb3\x93\x4c\xb3\xe3\xc5\xb9\xfb\x2d\xbb\x35\x9d\xf7\xa2\xd1\x8f" "\xd5\x28\x29\x3b\xbd\xa9\xfb\xa4\x51\x57\xd4\x3b\x76\x9b\xd9\xcf\x69" "\x78\xb6\xeb\xde\xe4\x6b\xbd\xf1\x82\x49\xb9\x86\x73\xa4\x5f\x3b\xf1" "\xfd\x2d\x1b\xde\x79\xe3\xc0\xf3\xa1\x47\x5e\xfc\xdc\xd8\x8c\x33\xa3" "\x39\x63\xb7\xf1\x92\x40\xe4\xf6\xcc\x1d\xab\xe3\x05\xe7\xcd\x7f\x76" "\x1e\x97\x3b\x7f\xb7\x67\x7b\xfa\xb1\xb5\xc7\x65\x51\x5d\x45\xeb\x6a" "\xa4\xae\xe2\x75\x55\x5f\x51\x93\xe3\xd8\xab\x97\x3c\xf8\xd3\xa7\x1e" "\xf8\xe7\x37\xb4\x70\xbc\xa8\x0b\x1d\xad\x2f\xad\x73\xd6\xc8\xc3\xe5" "\xf2\xa8\xee\x71\x3b\x79\x5f\xe5\xf5\xd5\xc2\xf7\x67\x30\x6f\x3f\xdc" "\x78\xd9\xee\x3f\xbc\x73\xdb\x86\x43\x45\xc7\xf3\xfa\xef\x4c\xfd\xc7" "\x8c\x78\x70\xf8\x7f\x2e\x89\xbf\xbc\x6f\xcf\x9f\xed\x1e\xdb\x70\x56" "\x9e\x2f\xeb\x0b\x6a\xf3\xf9\x72\xbc\xea\x89\x7a\x46\xf7\x57\x4f\xf2" "\xfd\x38\x57\xf7\x6f\x77\x54\x4d\xfa\xea\xcd\xad\x6b\x5d\xfc\xd4\x67" "\x3e\x7e\xeb\xd1\x5f\x19\xaf\x6f\xc6\x8c\xe8\x8e\x2d\x7b\xf7\xee\xbe" "\x7c\xec\xe3\x07\xb5\xaf\x3f\x9f\x31\x6f\xe1\xb6\x7b\x16\x5f\x38\xa9" "\xaf\x2b\xc6\x3e\x16\x1d\xf7\x2f\xca\x8c\x0b\x8f\xfb\x95\xfc\xfe\x8a" "\x8e\xfb\xd9\x79\x26\xe2\xf3\xf3\x0d\x64\xc6\xbd\x51\xb5\xad\xe7\x89" "\xf5\x3f\xff\xf1\x83\xf7\x5e\xb3\x7f\x61\xf0\x79\xe2\x44\xab\xcf\x13" "\xbf\xdd\x30\xaa\x96\x7c\x9e\xa8\x04\x1e\xef\x0f\xfd\xe5\xb7\x07\xde" "\xbd\xe1\x6b\xef\x16\xad\xa7\xab\xf7\x2c\xbe\x6b\x61\xce\xc7\x6c\x7b" "\x83\xc3\x2f\xfc\xc1\xaf\x5e\xfe\xe9\xeb\xae\xf9\xfc\xd8\x86\xb3\x72" "\x1c\xaa\x2f\xa8\xcd\xe3\xd0\x78\xd5\x49\x3d\xe9\xfe\x1a\x3d\x0e\x5d" "\x71\xee\xf4\xf1\xfe\x7d\x9f\x1b\x1e\x88\xf1\xe0\xf0\x45\xdf\xf9\xd8" "\xb5\x67\x4e\xdd\xf6\xd5\xb1\x0d\x45\xfb\x77\x3c\x3a\x6f\xff\xae\x2c" "\x3e\xce\x57\x03\x7d\xdd\xd0\xf5\x91\xf9\x8f\xfc\x64\xf1\x47\x3a\xb7" "\x7e\xf7\x6c\xfa\xab\x4b\x3e\x31\x6b\xf6\x39\xb6\x7e\x7b\x92\xfd\xdb" "\x13\xd8\xbf\xe3\x55\x27\xf5\x54\xeb\xf7\xef\x27\x6e\xdc\xb9\xfd\xa6" "\xb1\xf1\xb9\x7b\xde\x36\xa6\xbb\xe0\xfa\x27\x7d\xde\xd9\x73\xe7\x81" "\x5b\xb6\x6c\xdf\x3e\xb4\x7b\x4f\x6b\x7d\xb5\xfa\x7c\x9a\xce\x93\xdd" "\xcb\xed\x3e\x9f\xa6\xcf\x1e\x0b\x0a\xfa\x4a\xbf\x5f\x13\x7d\x4d\xdf" "\x27\xad\xec\xaf\x56\x1f\x6f\x69\xfd\x37\x65\x72\xb4\xfb\x78\x03\x48" "\x4d\x3c\x2f\xcc\x68\xd8\x9e\x3d\x7e\xa6\xaf\xfb\x2d\x9d\x1b\xad\xff" "\xc4\x03\xdf\x7b\x35\x1e\x18\x7b\xbe\xec\xd4\xeb\xad\xe9\x3c\x17\x64" "\x9e\x98\xdb\x7d\xbd\xb5\xe8\x3a\xe9\x23\x99\x71\xe3\x75\x52\x2d\xaa" "\xeb\x7b\xcc\xe4\xeb\xa4\xd1\xbb\x14\x5d\x27\x65\xe7\x29\xba\x4e\xba" "\x24\x33\x2e\xbe\x8e\x79\x30\xb7\x93\xd0\xf7\xaf\x2b\x79\xe6\xcd\x7b" "\xdd\x34\x53\x6f\x6d\x24\x43\x68\x7d\xf4\x27\xf9\xfb\x93\x71\x7a\xbe" "\xb9\xf4\x13\xd1\x95\xd5\xe7\x3f\xfa\xc5\x78\xb0\xb5\xf5\xd1\xea\xf9" "\x74\x3a\xcf\xdf\xc8\xec\xa0\x76\xcf\xa7\x8b\xd6\xc7\xb2\x28\xbf\xae" "\x4e\xaf\x8f\x8f\x65\xee\x54\xfc\xfd\x3e\x94\x5b\x59\x4f\xe0\xfb\x51" "\xf4\xfd\x5e\xd6\x90\x68\x78\xb8\xec\x75\x79\x5f\xa0\xea\xf4\xba\xbc" "\x37\x8a\xdb\xca\x3f\x38\xf4\xe4\xb1\x67\xaf\x3f\xba\x28\x98\x7f\x73" "\x25\xc9\x5f\x69\x2b\xff\x2b\xd5\x57\x4f\x3f\x73\xb2\x7f\x76\x30\xff" "\xa1\x34\x7f\xad\xad\xfc\xcb\x1e\x9e\x7d\xf0\xd4\xfe\x75\xdd\xc1\xfc" "\x87\xd3\xfd\xd3\xd3\x56\xfe\xab\x36\x2e\x5d\x75\xe1\xc9\x7d\xb7\x07" "\xf3\xaf\x48\xeb\x9f\xd9\x56\xfe\x1f\x3d\xb2\xfc\xcc\xc6\x43\x2f\x1c" "\x0d\xe6\x8f\xd2\xfc\xbd\x6d\xe5\xbf\x76\xe5\xe3\xab\xbf\xb4\xf8\xbe" "\x27\x82\xf9\x5f\x8b\x93\x79\x46\x1e\xbb\x51\x74\xe4\xd4\xca\xad\x63" "\xe3\x38\xea\x4a\xd6\x7f\x5a\x47\x57\x43\x5d\x51\x76\x1c\x8f\x8f\x67" "\xe4\xf5\x11\x55\xeb\xe3\x2b\x69\x58\x32\x41\x35\x8e\x1b\xb7\xa7\x71" "\x99\xed\x69\x1f\xb5\x64\xfb\xc5\x75\x35\xe6\x59\x1f\xd8\x9e\x3e\x6a" "\x7b\x92\x07\xf6\x7b\xe9\x38\xca\x7e\xd2\x7c\x7b\x7a\x78\x4a\xeb\x3a" "\x11\x78\xfe\x39\x5b\x2a\x75\xe7\x1e\x79\xdb\x8b\x5e\x9f\xec\x94\x77" "\xde\xee\xff\xbd\xfa\x71\xfa\xff\xff\xe9\x1a\xe8\xae\x8d\x7d\xef\xae" "\xc8\xec\xaf\xa2\xe7\x8f\xec\xd1\x3b\xcd\x17\x7c\x1d\x36\xf0\x12\x46" "\xd1\xf9\xc2\xe4\xff\x7f\x9b\xd5\xd6\xe3\xef\xcd\x27\x9f\x5e\x52\x5d" "\xf4\xe8\xf1\xe0\xeb\xaa\xc7\x5a\x7d\x5d\x75\x57\xc3\x68\x56\xc1\xeb" "\xaa\x65\xeb\x0d\x1e\x2f\x8e\xa5\xc7\xd3\x72\xc7\xa3\xfe\x50\xfe\xd7" "\xd2\xfc\xe5\x9e\x0f\x82\xf9\x93\xe7\x83\xa2\x75\xf6\xd1\xcc\xb8\x70" "\x9d\x75\xe5\xcf\x57\xb4\xce\xb2\xe7\x29\xbd\xd1\x9c\xb6\xfa\xde\x70" "\xfc\xfe\xcd\xbb\x9e\x7a\x69\x79\x70\x9d\xad\x1d\x7b\xc0\x17\xaf\xb3" "\x47\x1b\x46\x73\x0a\xd7\x59\xb9\xff\x97\x0e\xae\xb3\xe7\xe2\x8e\xec" "\x8f\x60\xfe\xb5\x9d\x39\xaf\x09\xae\xb3\xe4\xbc\xa6\x68\x9d\x5d\x9a" "\x19\x97\x5f\x67\x8d\xe7\xa3\x5f\x4e\x6e\xef\xc8\xc4\xf7\x26\xaf\x10" "\x4f\xb5\xef\xd3\xab\x5f\x7f\xeb\x4c\xdf\x9a\xa7\x83\xeb\xec\x70\xab" "\xeb\xec\xf7\x1b\x46\x7d\x85\xeb\xac\xdc\xf9\x6d\xf0\xfb\x34\x7e\x7e" "\x3b\xdd\xe7\xe7\x1f\xec\xf3\xcf\x8e\x9e\x1f\x8e\x8d\x2b\x99\x71\xfe" "\xf9\x61\xf2\xdf\xb9\xd3\x75\x7e\xb8\x2e\xb0\x7d\xaa\xe7\x87\xbd\x93" "\x3e\x99\xe8\x23\xfa\x20\x9e\x1f\x06\x8e\x33\x00\xd0\xcc\x0f\x1e\xba" "\xf3\x7f\xd7\x8f\xd3\xeb\xff\xf4\xb9\x3b\xbd\xfe\xff\x5e\xe6\x7e\x65" "\xaf\x2b\xb3\x3f\x0f\x95\xea\xd4\x75\x65\x30\xff\xe1\xce\x5c\xaf\x04" "\xcf\x53\xc7\xaf\x57\xa6\xfb\x7a\x6b\xba\xcf\xb3\xa7\xf7\x7a\xcb\x79" "\x7c\x20\xff\xf8\xeb\xc8\xd3\xfd\xba\xd0\xf4\x5e\x57\xba\x0e\x49\xc6" "\x51\xf6\x93\x31\xae\x43\x00\x00\x78\x3f\x5c\xfc\xaf\xbf\xfd\xeb\xf5" "\xe3\xf4\xfa\x7f\xfc\xe7\xde\x92\xdf\xff\x7f\x29\x1d\x67\xee\xef\x3a" "\x37\x90\xff\xac\x5d\xe7\x4e\xf7\xeb\x24\xae\xa3\x73\xf3\x77\xe8\xe7" "\x2b\x8a\x5f\x07\x9b\xee\xd7\xa9\xa6\xf2\x3a\xc0\x7f\x3e\x2f\xfd\x9a" "\xd7\x01\xf2\x79\x1d\xe0\xec\xd6\x05\x00\xc0\xd4\x6c\xda\xba\x7b\x68" "\x68\xcf\xae\x2d\x37\x0e\x6d\xda\xb6\x63\xdb\xde\xf1\xed\x5d\xa3\x57" "\x4e\x93\x7f\x4e\xf5\x6f\x27\xb7\x6b\x33\x79\x8a\x7e\x7e\x3a\x2f\x7e" "\x56\x93\xf8\xaf\x06\xf3\x37\xd6\xf3\xa9\x40\x7c\x48\x6d\xf4\x67\x5e" "\xa3\xe8\x1b\x37\x7e\xf3\x8a\x4d\x37\x0d\xdd\x3e\xd5\xfe\x43\xf3\x15" "\xf5\x9f\x17\xdf\xac\xff\xec\xf5\x45\xa8\xff\x55\x81\xf8\x90\xb2\xfd" "\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xd7\x04\xf3\x37\xd6\xf3\xe9\x40" "\x7c\x48\xd9\xfe\x43\xf3\x15\xf5\x9f\x17\xdf\xac\xff\xaf\x05\xf3\x37" "\xd6\xf3\xab\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff" "\xd9\xdf\x07\x0b\xf5\xff\x6b\x81\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f" "\x2f\xbe\x59\xff\xd7\x06\xf3\x37\xd6\xf3\x99\x40\x7c\x48\xd9\xfe\x43" "\xf3\x15\xf5\x9f\x17\xdf\xac\xff\xeb\x82\xf9\x1b\xeb\xf9\x3b\x81\xf8" "\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xd7\x07\xf3\x37\xd6" "\xb3\x3a\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff\xeb" "\xc1\xfc\x8d\xf5\x0c\x06\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8" "\x66\xfd\x6f\x08\xe6\x6f\xac\xe7\xef\x06\xe2\x43\xca\xf6\x1f\x9a\xaf" "\xa8\xff\xbc\xf8\x66\xfd\xdf\x10\xcc\xdf\x58\xcf\x67\x03\xf1\x21\x65" "\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x7f\x23\x98\xbf\xb1\x9e\xbf" "\x17\x88\x0f\x69\xda\x7f\x6e\x7d\xad\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe" "\x37\x06\xf3\x37\xd6\xf3\xeb\x81\xf8\x90\xb2\xdf\xff\xd0\x7c\x45\xfd" "\xe7\xc5\x37\xeb\xff\x37\x83\xf9\x1b\xeb\xf9\x5c\x20\x3e\xa4\x6c\xff" "\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6\xff\xa6\x60\xfe\xc6\x7a\x3e\x1f\x88" "\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xbf\x39\x98\xbf\xb1" "\x9e\xbf\x1f\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xbf" "\x25\x98\xbf\xb1\x9e\x2f\x04\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc" "\xf8\x66\xfd\x7f\x23\x98\xbf\xb1\x9e\x2f\x06\xe2\x43\xca\xf6\x1f\x9a" "\xaf\xa8\xff\xbc\xf8\x66\xfd\xdf\x18\xcc\xdf\x58\xcf\x97\x02\xf1\x21" "\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xb3\xef\x77\x18\xea\xff" "\x1f\x04\xe2\x43\xca\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\x0f\x05" "\xf3\x37\xd6\xb3\x26\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37" "\xeb\x7f\x6b\x30\x7f\xfe\xfb\x06\x64\xe3\x43\xca\xf6\x1f\x9a\xaf\xa8" "\xff\xbc\xf8\x66\xfd\xdf\x1c\xcc\xdf\x58\xcf\x57\x02\xf1\x21\x65\xfb" "\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\xbf\x19\xcc\xdf\x58\xcf\xd5\x81" "\xf8\x90\xb2\xfd\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xdb\x82\xf9\x1b" "\xeb\x59\x1b\x88\x0f\x29\xdb\x7f\x68\xbe\xa2\xfe\xf3\xe2\x9b\xf5\xff" "\x5b\xc1\xfc\x8d\xf5\x7c\x35\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7" "\xc5\x37\xeb\xff\x96\x60\xfe\xc6\x7a\xd6\x05\xe2\x43\xca\xf6\x1f\x9a" "\xaf\xa8\xff\xbc\xf8\x66\xfd\x6f\x0f\xe6\x6f\xac\xe7\x9a\x40\x7c\x48" "\xd9\xfe\x43\xf3\x15\xf5\x9f\x17\xdf\xac\xff\x5b\x83\xf9\x1b\xeb\xf9" "\x5a\x20\x3e\xa4\x6c\xff\x23\xf3\xfd\xab\x9c\xbc\x45\xfd\xe7\xf5\xd3" "\xac\xff\x1d\xc1\xfc\x8d\xf5\xac\x0f\xc4\x87\x94\xed\x3f\x34\x5f\x51" "\xff\x79\xf1\xcd\xfa\xdf\x19\xcc\xdf\x58\xcf\xb5\x81\xf8\x90\xb2\xfd" "\x87\xe6\x2b\xea\x3f\x2f\xbe\x59\xff\xbb\x82\xf9\x1b\xeb\xb9\x2e\x10" "\x1f\x52\xb6\xff\xd0\x7c\x45\xfd\xe7\xc5\x37\xeb\xff\xb6\x60\xfe\xc6" "\x7a\xae\x0f\xc4\x87\x94\xed\x3f\x34\x5f\x51\xff\x79\xf1\xcd\xfa\xdf" "\x1d\xcc\xdf\x58\xcf\xd7\x03\xf1\x21\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e" "\x7c\xb3\xfe\xf7\x04\xf3\x37\xd6\xb3\x21\x10\x1f\x52\xb6\xff\xd0\x7c" "\x45\xfd\xe7\xc5\x37\xeb\x7f\x6f\x30\x7f\x63\x3d\x37\x04\xe2\x43\xca" "\xf6\x1f\x9a\xaf\xa8\xff\xbc\xf8\x66\xfd\xef\x0b\xe6\x6f\xac\xe7\x37" "\x02\xf1\x21\x65\xfb\x0f\xcd\x57\xd4\x7f\x5e\x7c\xb3\xfe\x6f\x0f\xe6" "\x6f\xac\x67\x63\x20\x3e\xa4\x6c\xff\xa1\xf9\x8a\xfa\xcf\x8b\x6f\xd6" "\xff\xfe\x60\xfe\xc6\x7a\x7e\x33\x10\x1f\x52\xb6\xff\xd0\x7c\x45\xfd" "\xe7\xc5\x37\xeb\x3f\xfb\x3e\x90\xa1\xfe\x37\x05\xe2\x43\xc6\xfb\xdf" "\xbb\x7b\x68\x68\xd3\xbe\x5d\x37\x6d\xd9\x3b\xb4\x69\xc7\xce\x9b\x86" "\xf6\x6c\xda\xbf\x7b\xdb\xde\xbd\x43\xc9\x89\x5a\xd9\xdf\x2b\x0b\xff" "\x5e\xd0\xfb\xfc\x8b\x2c\x34\xd5\xf0\xf8\x18\x5b\x24\xdb\x76\xec\x19" "\xda\x3d\xf9\xf8\x3d\xb3\xe9\xfa\xad\x5f\x13\xd1\xe8\xaf\x3d\xcd\x1c" "\xbb\x8d\x3f\xdc\x52\x7c\xf6\x6d\xaf\xdb\x5d\x35\xe7\xca\x7a\xef\x8a" "\x6a\x4d\xf7\xd7\x05\x99\xf1\xbc\xe4\xfd\x68\xe7\x05\xde\x8f\x36\x1b" "\x9f\xa6\x5d\x3c\xfa\xc9\xe4\xf7\xa3\xcd\x4e\x5b\x2b\x78\x1f\xd7\xa2" "\xe3\x53\x76\xfe\xd0\xf1\x29\x6e\x12\x9f\x77\x7c\x0d\x1d\xcf\x8a\x9e" "\xff\xa6\x7c\xfc\x2b\x5c\xdf\x3d\x4d\xfb\xcf\x6e\xee\x4e\x7e\xb1\xaf" "\x3b\x3e\xaf\xa5\xf8\xa8\xc9\xdf\x77\x6b\x6d\xbd\x96\xfb\xbd\xd3\xe0" "\x7a\x7d\xad\xb5\xf5\x9a\x7d\xdf\xf5\xa2\xf5\x9a\x8d\x9f\xea\x7a\xed" "\x2d\xb9\x5e\xb3\xf3\x87\xd6\x53\xa5\x49\x7c\xb3\xf3\xa1\x56\xd7\xeb" "\x86\x40\x7c\xaa\xf5\xf5\x19\x07\xfb\xcd\x5b\x57\x53\xfd\x3b\x83\x69" "\xda\x29\xfd\x9d\xc1\xcc\x87\x49\xda\xf8\x5b\x06\xad\x3f\x1e\xca\xfd" "\x1e\x79\xf0\xf1\x90\x14\x5d\xf4\x78\xc8\xfe\x1e\x77\xd1\xe3\x21\x1b" "\x3f\xd5\xc7\xc3\xcc\x92\x8f\x87\xec\xfc\x45\x8f\x87\xbc\xf8\x66\xd7" "\xc7\xad\x3e\x1e\xae\x0b\xc4\x87\xb4\xbe\x1e\xca\xbd\x6f\x41\x70\x3d" "\xac\x68\x6d\x3d\x64\xff\x8e\x55\xd1\x7a\xc8\xc6\x4f\x75\x3d\xf4\x94" "\x5c\x0f\xd9\xf9\x8b\xd6\x43\x5e\x7c\xb3\xd7\x0b\x5b\x5d\x0f\x5f\x0b" "\xc4\xb7\xaa\xf5\xf5\x51\xee\x7d\x45\x82\xeb\x63\x73\x6b\xeb\x23\xfb" "\xf7\x24\x8a\xd6\x47\x36\x7e\xaa\xeb\x23\x2e\xb9\x3e\xb2\xf3\x17\xad" "\x8f\xbc\xf8\xd0\xff\xa7\x44\x53\x58\x1f\x5f\x0d\xc4\xa7\x1a\x9e\x3f" "\xb7\xee\x19\xbd\xa8\xdf\xb6\x65\xfb\xb6\x03\x99\x1f\xc0\xe8\x4b\x9e" "\x3f\xdf\xef\xe7\xc3\xb3\xf2\xbc\xfc\x57\xbf\xf6\xe7\xef\x8d\x7d\x48" "\xea\xa8\x4c\xaa\xa3\xe8\x7c\x22\xce\xd4\x31\x3f\xa9\x64\x7e\xe8\xef" "\x1e\x06\xea\xbe\xf1\xbf\xfc\x9b\xf5\xdf\xfb\xd9\x03\xdf\x8e\xa2\x15" "\xe7\x55\x97\x84\xeb\x9e\x28\x79\xe2\x43\x46\x3c\x38\xbc\xe0\xae\x65" "\xcf\x5e\xff\xe1\xe3\x9f\x1d\xa9\xbf\xd2\xb4\xfe\xf1\xc8\xf4\xef\x16" "\x17\xfc\xbd\xe3\x6c\x7c\xda\x4f\x6d\xfb\xce\x3d\x7b\x7f\x65\xeb\xce" "\x7d\x3b\x5a\xfd\x89\xab\xe6\xd2\xf7\x43\xa9\x8c\x8f\xa7\xe9\xfd\x50" "\x92\x8d\xd5\x16\xdf\xdf\x24\xf4\xfb\x04\x53\x7d\x7f\x93\xae\x49\x9f" "\x9c\x9b\x5a\x7e\x7f\x13\x80\x5f\x10\xf3\x0e\x3f\x37\xa7\x7e\x9c\xbe" "\xff\x5f\xfa\x7c\xd4\x9f\x1c\xfb\x66\x26\x07\xc0\x74\x7b\xeb\xe7\xd9" "\xe5\xde\x5f\x2f\x78\x9e\x7d\xa8\xb5\xf3\xec\xe5\xd9\x7e\x0b\xce\xb3" "\xb3\xf1\x69\xbf\xad\x9e\x67\x57\x4a\x9e\x67\x67\xe7\x2f\x3a\xcf\xce" "\x8b\x6f\xf6\x73\x7b\xad\x9e\x67\x7f\x25\x10\x3f\x55\x8d\xeb\x64\x64" "\x81\x8c\xae\x8f\xa1\x4d\xfb\x77\xee\xae\xff\x99\xb8\xe9\xfe\xbb\xb5" "\x9d\xaf\x77\x7a\xff\x8e\x6f\xf9\xfa\xa6\xf7\x7d\x1b\xdb\xd5\x7a\xfd" "\xd3\xfb\xbe\x90\xd3\x5f\xff\xf4\xfe\x1d\xe0\xe9\xaf\x7f\x7a\xff\xce" "\x73\xbb\xce\xda\xf5\x52\xf2\x66\x91\x45\xef\x1f\x59\x74\x1d\x15\xfa" "\xbd\xf4\xa9\x5e\x47\xcd\x98\xf4\xc9\xb9\xc9\x75\x14\x00\x9c\xfb\xfe" "\xc9\xee\xb7\xff\x65\xfd\x38\xbd\xfe\x4f\xae\x62\xc7\xaf\xff\xbf\x95" "\x8c\xab\x1d\x9e\x7f\xba\xaf\xa3\xa6\xfb\xba\x72\xba\xcf\x93\x3f\xf8" "\xef\xbf\x3f\xbd\xd7\x41\xae\x07\x9a\x4c\x76\x0e\x70\x3d\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x90\xef\xf7\xff\xfb\x7f\xfc\x6e\xfd\xb8\xbb\xd6\x3f" "\x7a\xfb\xca\xef\xec\x79\xf7\x2b\x17\x7c\xee\x07\xf7\x0e\x9d\xba\xeb" "\x0b\x7f\x74\xeb\x3d\xe7\xff\xf1\xc2\x77\xfb\xee\x5b\xf3\xe5\x87\x56" "\x7d\xfe\x87\x9b\xff\x64\xfe\xe0\xd2\x65\x43\x57\x7d\xe7\xc8\xd5\xf7" "\xdf\xf7\xe2\x67\x7e\xf6\xe2\x63\x4f\xac\x29\x9c\xa8\x6f\xec\xe6\xd2" "\x64\xd8\x13\x45\xf1\x5f\xc4\x51\xb4\xf4\xed\x23\x8f\xdd\xff\xf2\x9f" "\x9e\x3f\xb2\x2d\x1e\x99\x3f\xee\xbb\x3b\x9a\x3f\x3f\x5e\xf0\xdd\xf9" "\x71\x26\xc3\x8a\xd3\x51\x14\xdd\x34\x5e\x67\xe3\x17\x8f\x9c\x5a\xb9" "\x75\xe4\xf6\x9e\x6f\x75\x37\x6c\x9f\x97\x49\x92\xed\x2b\xea\xad\xa6" "\xf5\x34\xd4\x19\xdd\x51\xd8\x11\x1f\x40\x3d\xc9\x3a\x3b\xb8\xe9\x1b" "\x4f\x1d\xbb\x65\xf0\xe5\x23\x03\xbb\x56\xfe\xe4\xe4\x95\x3b\xef\x9e" "\x08\x89\x7b\xea\xd6\x53\x14\xcd\xdd\x5c\x7f\xff\xae\x28\x8a\x66\x26" "\xff\x46\xa4\xab\xad\x3f\xbd\x73\x72\xbb\x36\x8a\xa2\x59\x75\xf7\xfb" "\x54\x41\x5d\x97\xb4\x58\xff\x65\x81\xf1\x92\xe4\x76\x46\x72\xdb\x5b" "\x90\x27\xfd\xfa\xc5\x99\x71\xad\xc5\x3a\x6a\x99\xdb\xee\x16\xef\xd7" "\xa6\xff\x5f\x99\xde\xfc\x93\x64\xf7\x5f\xf6\x60\x34\x5d\xd2\x3e\xe7" "\x26\xb7\xcf\x27\xb7\x97\x4e\x31\x4f\x35\xfd\x17\x47\x95\x38\xaa\x8d" "\x97\xbf\x3d\x9e\x58\x23\x51\xdd\xf7\x2d\x8e\xe2\xd1\xb5\xdd\x33\x3e" "\xae\x8c\x8e\xa3\xf1\x71\x94\x1d\xc7\x99\x71\x25\x33\xae\x76\x65\xfa" "\x1a\x9d\x37\xd9\xb1\xd5\x38\x6e\xdc\x9e\xc6\x65\xb6\xa7\x87\xe3\x5a" "\xb2\xfd\xe2\xfa\x63\x75\x8e\x75\x81\xed\x8b\x92\xdb\x9e\xe4\x81\xfa" "\x5e\x3a\x8e\xb2\x9f\x8c\xe9\x9d\xf4\xc9\x44\x1f\x51\x5d\x5d\x27\xce" "\xd6\xc2\x08\xa8\x04\x1e\x7b\xe9\xf6\xf1\xf2\x92\x6f\x46\x6f\xb2\xad" "\x37\x5e\x30\xe9\x3e\xc3\x39\xd2\xaf\x9d\xf8\xfe\x96\x0d\xef\xbc\x71" "\xe0\xf9\xbe\x40\x1d\xf1\x73\x71\x92\x3f\x6e\x2b\xff\xe0\xd0\x93\xc7" "\x9e\xbd\xfe\xe8\xa2\xfe\x50\xfe\xcd\x95\x24\x7f\xa5\xad\xfc\xaf\x54" "\x5f\x3d\xfd\xcc\xc9\xfe\xd9\xc1\xfc\x87\xd2\xfc\xd5\xb6\xf2\xaf\xff" "\xf9\x8f\x1f\xbc\xf7\x9a\xfd\x0b\x83\xfb\xe7\x44\xba\x7f\x6a\x6d\xe5" "\x5f\xf6\xf0\xec\x83\xa7\xf6\xaf\xeb\x1e\x08\xe5\x3f\x9c\xe6\xef\x69" "\x2b\xff\x55\x1b\x97\xae\xba\xf0\xe4\xbe\xdb\x83\xf5\xaf\x48\xf7\xcf" "\xcc\xb6\xf2\xff\xe8\x91\xe5\x67\x36\x1e\x7a\xe1\x68\x30\x7f\x94\xe6" "\x9f\xd5\x56\xfe\x37\x9f\x7c\x7a\x49\x75\xd1\xa3\xc7\x83\xf9\x8f\xa5" "\xfb\xa7\xb7\xad\xfc\xd7\xae\x7c\x7c\xf5\x97\x16\xdf\xf7\x44\x70\xff" "\xbf\x96\xe6\x9f\xd3\x56\xfe\x0d\xc7\xef\xdf\xbc\xeb\xa9\x97\x96\x07" "\xd7\xe7\xda\x74\xff\xf4\xb5\x95\xff\xf4\xea\xd7\xdf\x3a\xd3\xb7\xe6" "\xe9\xd0\xb1\x33\x3e\x7c\xb6\x9f\x61\x01\x7e\xb1\x7c\x28\x39\xc7\x7a" "\x30\x19\xb7\x7b\x9d\x59\x56\xdd\xf5\xc2\xe3\x03\xb5\xb1\x73\xbe\xd9" "\xc9\xbf\x39\x9d\x9c\x28\x23\xae\xbb\x76\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\x90\x9d\xc3\xd5\x7d\xf5\xe3\xb7\x8e\x3e\x74\xf5\x37\xff\xc7\xa6" "\xff\x56\x8b\xa3\x28\x0e\xdc\x67\x38\x47\xfa\xb5\xea\x8c\xc1\xc1\x81" "\x36\xea\x58\xf6\xf0\xec\x83\xa7\xf6\xaf\xeb\x4e\xc7\x23\x73\xf7\xb7" "\x91\x07\x00\x00\x00\x98\x6c\xf1\x9b\x0f\xdc\x56\x3f\x4e\xaf\xc3\x2b" "\xc9\x38\x8e\x7a\xa2\xfe\x68\x7f\x3c\x33\x5a\x9c\x7b\xff\xf4\x35\x82" "\xc5\xe9\x28\x6e\xdc\x9e\x7d\x0d\x61\xe6\x44\x64\x47\xf2\x54\x3a\x94" "\xa7\xda\xa1\x3c\xb5\x0e\xe5\xe9\xea\x50\x9e\x19\x1d\xca\xd3\xdd\xa1" "\x3c\x3d\x05\x79\x7a\xa2\xd6\xf2\xcc\x6c\x9a\xa7\xd2\x72\x3d\xb3\x3a" "\x94\xa7\xb7\x43\x79\x66\x77\x28\xcf\x9c\x0e\xe5\x99\xdb\x7e\x9e\x5a" "\x7d\x9e\x79\x1d\xaa\xa7\xaf\x69\x9e\xd6\xd7\xe1\xfc\x0e\xe5\x59\xd0" "\xa1\x3c\x1f\xea\x50\x9e\x85\x1d\xca\x73\x5e\x87\xf2\x7c\xb8\x43\x79" "\xce\xef\x50\x9e\xec\x6b\xca\x53\x5d\x87\x73\x92\xc8\x0b\x42\x79\x46" "\x3f\xa9\x16\xe6\xa9\xc5\xd5\xf1\x2f\xe4\xbd\x9e\x9e\xce\x73\x61\xc9" "\x79\x7a\x5b\x9c\x27\xfb\x9a\xfd\x54\xe7\x99\xd9\xe2\x3c\x97\x94\x9c" "\xa7\xa7\xc5\x79\x3e\x56\x72\x9e\xb8\xc5\x79\x96\x67\xee\x57\x99\xe2" "\x3c\x95\x82\x79\xd2\x75\x7b\x47\xa8\x9f\x74\xd4\xe2\xfa\xbf\xb3\x43" "\x79\x0e\x74\x28\xcf\xc1\x0e\xe5\xf9\xed\x0e\xe5\xf9\x87\x1d\xca\xf3" "\x8f\x3a\x94\xe7\xae\x92\x79\x00\x42\x7e\xf7\xc5\x4b\xff\xa0\x7e\x9c" "\x5e\xff\xa7\xd7\x9f\x71\xd4\x17\x75\xd7\xae\x88\x66\x25\x47\x9c\xec" "\xab\x00\xe9\xf5\xee\x45\xa3\x1f\x27\x3f\xdf\x85\x0e\x48\x69\xbe\x25" "\x99\xed\x5d\x45\xf9\xb2\x17\xd8\x99\x7c\x17\x4d\xb5\xbe\xec\x0b\x08" "\x99\x7c\x1f\x69\x9a\xaf\x36\xe9\x7a\x35\x27\x5f\xad\x3e\xdf\xb2\x0e" "\xe5\x03\x00\x00\x80\xa9\xf8\xc7\xa7\x0f\x36\xfc\xd7\xdc\xe4\xeb\xff" "\xfe\xa8\xbb\xb6\x70\xfc\xfa\xf5\xa3\x99\xfb\x17\x5e\xaf\x67\xff\x23" "\x3b\x91\xe6\xbb\xb4\x43\xf9\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x9a" "\x5d\x7b\x8d\x91\xab\x2c\x1f\x00\xfe\x9e\x9d\xd9\x99\xf9\x2f\x97\x2e" "\xa4\x2d\x53\x7a\xdb\xb4\xfd\x53\x08\xa1\x17\x9a\x1a\x41\x85\x49\x13" "\x49\x30\xc2\x16\xb1\xe5\xd2\x90\xb5\xc2\xc2\x36\x2c\x2d\x74\x5b\xa0" "\x55\x53\x04\x63\x9b\x4d\x30\x68\xf1\xc2\xed\x83\x05\x89\x21\x44\x20" "\x21\x69\xd0\x35\xc1\x80\x12\x3f\xd8\xd8\x20\x86\x8b\xeb\xc2\x4a\xe0" "\x0b\x11\xa4\x37\xa0\xe8\x98\xd9\x3d\x67\xf7\xec\xcc\x0e\xbb\x8c\xd2" "\x5a\xfd\xfd\x42\xce\x99\xe7\x9c\xe7\x79\x9f\xf7\x1c\x12\x92\xe7\x2c" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x7f\xbe\x3f\x7e\xff\x6f\xcf\xa6\xe3\xc1\xbe\xde" "\xf6\xae\x81\x8e\xfe\x10\x85\xca\x3f\xe3\x2a\x8f\x23\xb9\x97\xc9\x95" "\x4a\x6d\x0d\xec\xe3\x9d\xe7\xd6\x5e\xf9\xd7\x97\xb6\xee\x4e\xe2\x4a" "\xef\x7c\xb6\x81\x85\x00\x00\x00\x80\x1a\x8f\x9f\x37\xe3\xf4\x74\x9c" "\xcc\xe1\xc9\xe8\x1d\x85\x42\xc8\x67\x97\x86\x7c\x94\x1b\x53\x57\x8c" "\xbf\x03\x14\xe3\xb8\xa9\x75\xf8\x3c\x67\x51\x58\x9e\xd9\xfd\xff\x17" "\x46\xa5\xa6\xa1\xf8\xe4\xe8\xa4\x31\x75\x85\xb8\xae\x10\xc7\x99\xb8" "\xae\x67\xcb\xd6\xeb\xd7\x76\x77\x77\x6e\xfc\x04\x7f\x54\xfa\x54\x3f" "\x47\xf5\x7e\xa2\x10\x86\x3e\x5f\xcc\x39\x31\xac\x5a\xb4\xfd\x99\x3d" "\x51\xdb\xf0\x73\xb4\x4c\xf0\x1c\x4d\x71\xdd\xe2\x4d\x37\xdc\xb8\xb8" "\x67\xcb\xd6\xb3\xd6\xdd\xb0\xf6\xba\xce\xeb\x3a\xd7\x2f\x5b\xb6\xfc" "\x9c\xa5\xcb\x96\x9e\x7d\xce\xb2\xc5\xd7\xae\xeb\xee\x5c\x32\x7c\x0c" "\xf9\x09\xd6\x0b\x21\x94\xc6\xbe\x97\x09\xfe\x45\x02\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0\x11" "\xb0\xed\xb7\xbb\xbf\x95\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x5b\xa2" "\x10\xa2\x3a\x35\xe5\x71\x24\xf7\x32\xb9\x52\xa9\xad\x81\x7d\xbc\x72" "\xdf\x83\xb3\x32\x33\xee\xde\x9b\xc4\x95\xde\xf9\x6c\x03\x0b\x01\x00" "\x00\x00\x35\x7e\xf5\xf8\x8c\xf3\xd3\x71\x32\x87\x27\xa3\x77\x14\x0a" "\x21\x9f\xcd\x85\x4c\x98\x31\x14\xcf\x1b\x4d\xcd\x86\x50\x2e\x27\xd7" "\x17\x54\x5d\x3f\x12\x7b\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\x8e\xac\x7d\x07\xdb\xff\x9c" "\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x8f\x8b\x42\x88\xea\xd4\x94\xc7" "\x91\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\xb1\x7a\xd9\x8f\xce\xff\xc2\xcc" "\x3b\xee\x4d\xe2\x4a\xef\x62\x03\xeb\x00\x00\x00\x00\xb5\x5e\x38\xbd" "\xf9\x8e\x74\x9c\xcc\xe1\x4d\x71\x1c\x85\x42\x28\x86\xf9\xa1\x39\x9a" "\x31\xa6\x2e\xf9\x36\x70\x6a\xd5\x7a\xd5\x79\xc9\x3a\xb3\x27\x99\x57" "\xfd\xed\xa0\x5e\xde\xfc\x49\xe6\x9d\x36\xc9\xbc\x33\x26\xc8\xbb\x38" "\x3e\xdf\x1a\x00\x00\x00\xe0\xd8\x73\x45\xeb\xef\x56\xa7\xe3\x64\xfe" "\x6f\x8e\xe3\x28\xb4\x86\x7c\xb6\x18\x32\x71\x3c\xd1\x1c\x9f\x7c\x17" "\x98\x5b\x95\x97\xd4\x4f\x34\xdf\x27\xf5\xf3\xea\xd4\x4f\x34\xf7\x27" "\xf5\xd5\x73\x3f\x00\x00\x00\xfc\x2f\x3b\xeb\xcd\x27\x3e\x4c\xc7\xb5" "\xf3\x7f\x31\xe4\xb3\x85\x91\xf9\x7b\xa2\xbf\xa7\x5f\x14\x9f\xfd\x9d" "\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xa8\xe7\xd7\x07\x2f\xfc\x45\x3a\x1e\xec\xeb\x6d\xef" "\x1a\xe8\xe8\xcf\x44\x21\x44\x75\x6a\xca\xe3\x48\xee\x65\x72\xa5\x52" "\x5b\x03\xfb\x58\xf5\x8f\x37\x76\xdc\x7e\xe9\x2d\x53\x93\xb8\xd2\x3b" "\x9f\x6d\x60\x21\x00\x00\x00\xa0\xc6\xa3\xb9\x4f\xdf\x92\x8e\x93\x39" "\x3c\x19\xbd\xa3\x50\x08\xf9\x6c\x4b\x68\x0e\xc7\x0d\xcd\xfd\xaf\xe5" "\xa6\x4c\x5d\xf7\xcd\x99\xb3\x43\x08\xa5\xa1\x84\x5c\x2e\xdc\xba\x76" "\xd3\xa6\x8d\x67\x0f\x1f\x93\xbc\x2f\x45\xbb\x3e\xb7\xf0\x86\xbe\x33" "\x6b\xf2\x96\x0e\x1f\x8f\xfc\x93\x02\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xaa\x65\x8f\xec" "\x5c\x93\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\xff\x2f\x0a\x21\xaa\x53" "\x53\x1e\x47\x72\x2f\x93\x2b\x95\xda\x1a\xd8\xc7\x0b\x3b\xcf\x38\x7c" "\xd5\x5d\x4f\xf5\x25\x71\xa5\x77\xb1\x81\x75\x00\x00\x00\x80\x5a\xb3" "\xba\x9f\xfe\x4b\x3a\x4e\xe6\xf0\x64\xf6\x8f\x42\x21\x14\x43\x2e\xe4" "\xc2\xf4\xa1\x38\x3d\xeb\x57\x34\x55\xad\x57\xef\x9b\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xf0\xdf\xa3\x67\xcb\xd6\xeb\xd7\x76" "\x77\x77\x6e\xf4\xc3\x0f\x3f\xfc\x18\xf9\x71\xb4\xff\xcb\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\x1c\x2d\x3f\x5f\xff\xbd\xb7\xd3\xf1\x60\x5f\x6f\x7b" "\xd7\x40\x47\x7f\x21\x0a\x21\xaa\x53\x53\x1e\x47\x72\x2f\x93\x2b\x95" "\xda\x1a\xd8\xc7\xa7\xae\x9a\x73\xce\xec\xfd\x9b\x6f\x4e\xe2\x4a\xef" "\x62\x03\xeb\x00\x00\x00\x00\xb5\xd6\xbc\xb5\x79\x7f\x3a\x4e\xe6\xf0" "\x64\xf6\x8f\x42\x21\x14\x43\x73\x68\x0e\xd3\xe2\xb8\xd6\xd0\xfc\xdf" "\x7a\x24\x76\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x1c\x4d\x73\x43\x14\xca\x1f\xd3\x29\x2b" "\x8f\xf6\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\x00\x00\x00\x00\x80\x4f\xc2\x81\x17\x57\xdd" "\x97\x8e\x07\xfb\x7a\xdb\xbb\x06\x3a\xfa\x4f\x88\x42\x88\xea\xd4\x94" "\xc7\x91\xdc\xcb\xe4\x4a\xa5\xb6\x06\xf6\x71\xe5\xde\x6f\x7f\xe5\xc6" "\x5d\xcf\x9e\x91\xc4\x95\xde\xf9\x6c\x03\x0b\x01\x00\x00\x00\x35\x9a" "\xdf\x7c\xf1\xab\xe9\x38\x99\xc3\x93\xd1\x3b\x0a\x85\x90\xcf\xce\x0a" "\xf9\x30\x2b\xbe\xd2\x3d\x76\x81\x28\x93\x24\x8e\xfb\x5d\x60\xb4\xee" "\xeb\x63\xca\x32\x93\xae\xdb\x51\xb5\xe3\xe1\x9d\x15\xe2\xef\x10\x85" "\x91\x7d\x86\xa1\xcf\x0e\xa3\x75\x77\x7d\x64\x5d\x31\xbe\xda\xd4\x3a" "\xb9\xf7\x04\x00\x00\x00\xc7\xb2\x69\x3b\x2e\xfe\x46\x3a\x4e\xe6\xff" "\xe6\x38\x8e\x42\x6b\xc8\x67\xa7\xa5\xe6\xea\x1b\xc7\xd4\xb7\x4c\x7a" "\x8e\xbf\x7b\x4c\xdd\x09\x93\xae\xfb\xe9\x98\xba\xd6\x09\xea\xfe\x0d" "\xaf\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\x68\xd0\x9d\x2b\x9f\x3b\x25\x1d\x0f\xf6\xf5\xb6\x77\x0d\x74\xf4" "\x47\x51\x08\x51\x9d\x9a\xf2\x38\x92\x7b\x99\x5c\xa9\xd4\xd6\xc0\x3e" "\x4a\x9d\xf7\x3d\xfd\xf0\xe5\x7d\x33\x92\xb8\xd2\xbb\xd8\xc0\x3a\x00" "\x00\x00\x40\xad\x4b\xdf\x28\x7c\x37\x1d\x27\x73\x78\x32\xfb\x47\xa1" "\x10\x8a\x61\x76\x38\x31\xcc\x1e\x9a\xfb\x43\xeb\xd8\xfa\x24\xef\xb8" "\xd2\xef\x5f\x5e\xb1\xfb\xa5\x2b\x42\x58\x32\xfd\xf9\x39\xd9\xba\xfd" "\x7e\xb8\xe7\xb2\xb7\xc3\xa1\xcf\xbe\xf6\xde\xf0\x61\x28\x0c\xa1\x69" "\x6c\x52\x53\x08\x53\xe2\x7e\x51\x9d\x7e\x57\xff\xe1\x91\x55\xcf\x7c" "\xb8\xfd\x81\x10\x96\x4c\xcb\xcc\xaa\xdf\x6f\xb4\xd5\xe8\xa1\x4a\x54" "\x2a\x9f\xbc\x6d\xc1\xc3\x97\x4f\xdf\xbb\xa2\xee\x32\x00\x00\x00\x70" "\x4c\x2b\x3c\x78\xe0\x27\xe9\x38\x99\xff\x93\x89\x3a\x0a\xad\x21\x9f" "\x5d\x5f\x77\xfe\x4f\xf2\x3e\xd6\xfc\xdf\xde\x33\x73\xdb\xd4\xf8\x18" "\x7f\x01\xa8\xaa\x68\x6a\x8d\xfb\x35\xd5\xe9\xd7\xfb\xee\x03\x6d\x07" "\xd7\x7c\xf9\x60\x65\xfe\x7f\x7e\x4e\x61\xe4\xff\x15\x38\x7d\xfe\xd8" "\xfc\x74\xab\xf4\xb1\xea\x9b\x43\x54\x2a\xcf\x7d\xe2\xb4\xd5\x87\x0f" "\xdc\x74\xc9\xf0\x85\xa4\x7f\xa6\x4e\xff\x35\xcd\xf3\x4e\xda\xf9\xd6" "\xcc\x79\x49\xff\x42\x7c\xfd\x9a\x30\xd9\xfe\xa1\xaa\x7f\x4f\xc7\xa1" "\xf9\x8b\x5a\x8e\xbf\x60\x6c\xff\x10\x42\xdb\x78\xfd\x7f\x7c\xe1\xe3" "\xef\xaf\xba\xf7\xdd\x2b\x86\xfb\xd7\x7f\xdf\x8b\xff\x34\xf8\xf9\xa9" "\x61\xc3\x0f\x0a\xdd\xc9\x71\xf8\x4a\x6d\xff\x95\xf7\x2f\xdf\xb9\x35" "\xf7\xfa\x94\xb1\xfd\xa3\x3a\xfd\x17\x3e\xfb\xe4\xfe\xc7\x6e\x5d\x75" "\x67\xf5\xf3\x9f\x9a\x1d\xaf\x7f\xed\xb1\x4a\xa5\x6b\xb6\xdc\xbb\xef" "\xf6\x85\xb7\xad\xe8\x3c\x37\xd5\xbf\xa9\x4e\xff\x9b\xdb\x5e\x79\xe7" "\x3b\x3f\xfb\xe5\x43\x95\xfe\xfb\xe6\xb6\x8c\xf4\x5f\xf8\x11\xcf\x3f" "\x61\xff\x3d\xf3\x77\xec\xdb\xb5\xfd\x9e\x35\x63\xdf\x7f\xa9\xb6\xff" "\x6d\xe1\xea\xb3\x36\x3e\xb9\x65\xdd\x95\x77\x55\x3f\x7f\x4b\xd5\xc2" "\xe9\x37\x9f\x3e\xd6\xbe\xff\x57\x67\x45\x17\x6d\xee\x79\x79\x63\xf5" "\x2d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\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\x63" "\x5b\xc7\x63\x1f\x1c\x4a\xc7\x83\x7d\xbd\xed\x5d\x03\x1d\xfd\x4d\x51" "\x08\x51\x9d\x9a\xf2\x38\x92\x7b\x99\x5c\xa9\xd4\xd6\xc0\x3e\x7e\x93" "\xd9\xf3\xc1\x43\xfb\x8b\xc7\x27\x71\xa5\x77\xb1\x81\x75\x00\x00\x00" "\x80\x5a\x97\xac\x78\xf5\xba\x74\x9c\xcc\xe1\xc9\xec\x1f\x85\x42\x28" "\x86\x5c\xc8\x85\x96\xa1\xb9\xff\xe4\x6d\x0b\x1e\xbe\x7c\xfa\xde\x15" "\xa1\x35\xbe\x1f\x9f\xb3\xdd\x1b\x7a\x36\x9d\x79\xed\x86\xcd\xeb\xaf" "\x39\xd2\x8f\x00\x00\x00\x00\x4c\x60\xd7\x79\xef\xaf\x48\xc7\xc9\xfc" "\x9f\x8d\xe3\x28\xb4\x86\x7c\x76\x41\x68\x8e\xe7\xff\x95\xf7\x2f\xdf" "\xb9\x35\xf7\xfa\x94\x64\xfe\x0f\x21\x0c\xfd\xb9\x3f\x7b\xed\xba\xee" "\xce\x25\x61\xe4\x3b\x41\x4f\xc7\xa1\xf9\x8b\x5a\x8e\xbf\x20\xc9\xcb" "\xc4\xe7\x42\x25\x6f\xd1\xd5\x1b\xba\xe3\xcf\x04\xc9\xba\x4f\x3d\xfa" "\x99\xa5\xe7\x5e\x76\xe9\x48\x7e\x53\x3a\xff\xec\xd1\xbc\xb9\x4f\x9c" "\xb6\xfa\xf0\x81\x9b\x2e\x19\x37\x6f\xd9\x68\xde\xab\xb3\xa2\x8b\x36" "\xf7\xbc\xbc\x31\xb5\xcf\xd2\x48\xde\xd2\xd1\xbc\xde\x7d\xb7\x2f\xbc" "\x6d\x45\xe7\xb9\xc9\x73\x44\xf1\xb9\x10\x3f\x4f\x92\xb7\x67\xfe\x8e" "\x7d\xbb\xb6\xdf\xb3\x26\xc9\x6b\x8a\xcf\x2d\xf1\x7a\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x08\x27\xbd\xf7" "\xf7\xaf\xa5\xe3\xc1\xbe\xde\xf6\xae\x81\x8e\xfe\x90\x09\x21\xaa\x53" "\x53\x1e\x47\x72\x2f\x93\x2b\x95\xda\x1a\xd8\xc7\x07\xe7\x3f\x3f\x78" "\xb8\xf5\x8b\x0f\x26\x71\xa5\x77\x3e\xdb\xc0\x42\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\x64\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b" "\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a" "\xfb\xf5\x13\x1a\x47\x15\xc7\x01\xfc\xbd\xdd\xad\xd9\x76\xd3\xba\xa9" "\x85\x26\x5a\x43\x8a\xbd\xb4\x20\x14\x82\xc5\x1e\xa4\xb9\xf8\x07\x89" "\x5a\x2a\x8a\x16\x8a\x51\x8c\x17\x15\x0b\xa2\x15\x7b\xb0\x6d\x30\x14" "\xf5\x50\x50\x68\x69\x2f\xa5\x15\xcf\x4a\x0e\x45\xed\x21\x16\x5b\x45" "\x41\xac\xe2\x41\x3c\x29\xe8\x49\x25\x87\xa4\x48\x2a\x2a\x49\xe6\x6d" "\x36\xd3\x0e\x89\xa3\x2d\xa5\x7c\x3e\x30\xbc\xfd\xbd\xd9\xf9\xce\x9b" "\xb7\x6f\x67\x77\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xb8\xa6\x3d\xfe\xe3\xbd\xb5\xf6\xba" "\xa3\xd6\x3d\xdb\x9e\x7b\xfd\xc5\x0b\x0f\xde\x7c\xf7\x17\x07\x86\xa7" "\x5e\xbb\xef\xa3\xe7\xf7\xaf\xfd\x78\xcd\x85\xe6\xc8\xe0\x03\x6f\x6c" "\xbd\xe7\x9b\xa1\xcf\xbb\x06\x7a\x37\x0c\x6f\xf9\x60\xec\xa1\xd1\x91" "\x33\x77\xfd\x79\xe6\xf0\xd1\xc1\x45\x4f\xf4\xca\x5c\xb3\x29\x2b\xeb" "\x21\xc4\xdf\x62\x08\xbd\x3f\x8f\x1d\x1e\x3d\xfb\xe5\xda\x99\xbe\x38" "\x73\xfe\xd8\xdc\x17\xba\xba\xe2\xea\x4f\xba\x62\x2e\x61\xf3\x74\x08" "\xe1\xe9\xd6\x38\x17\xee\x1c\x9b\xea\x7f\x66\xa6\xdd\xff\x66\xc7\x82" "\xfe\x1b\x73\x21\xf9\xeb\x0a\x8d\x6a\x1a\xcf\x9c\xe6\xc2\xf1\x72\x7d" "\xa9\x67\xeb\x6c\xef\x13\x4f\x9d\x18\x7f\x76\xe0\xec\x58\xdf\xee\xfe" "\x5f\x27\xef\x78\x61\xdf\xfc\x5b\x62\xbd\x6d\x3d\x85\xb0\x6a\xa8\xfd" "\xf8\x65\x21\x84\xe5\xd9\x36\x23\xad\xb6\xee\x74\x70\xd6\x6e\x0f\x21" "\xac\x68\x3b\xee\xce\x45\xc6\x75\xdb\x12\xc7\x7f\x7b\x41\xbd\x2e\x6b" "\x6f\xc8\xda\xc6\x22\x39\x69\xff\xfa\x5c\x5d\x5b\xe2\x38\x6a\xb9\xb6" "\x63\x89\xc7\x95\x55\xb9\xc2\xf9\x79\xf9\xf9\xcb\xdf\x8c\xae\x94\x74" "\x9d\xab\xb2\xf6\x54\xd6\x6e\xfa\x97\x39\xd5\xb4\xc5\x50\x89\xa1\xd6" "\x1a\xfe\x73\x71\x7e\x8d\x84\xb6\xcf\x2d\x86\x38\xbb\xb6\xeb\xad\xba" "\x32\x5b\x87\x56\x1d\xf2\x75\xcc\xd5\x95\x5c\x5d\x5d\x96\xbb\xae\xd9" "\xf3\x66\x13\x5b\x8d\x71\x61\x7f\x7a\x5f\xae\x3f\xdd\x8e\x6b\x59\xff" "\xfa\xf6\x7b\xf5\x65\xec\x28\xe8\xef\xc9\xda\x7a\xf6\x45\xfd\x23\xd5" "\x21\xff\x62\x4e\xe3\x92\x17\xf3\xd7\x11\xda\xc6\x35\x71\xb5\x16\x46" "\x81\x4a\xc1\x77\x2f\xf5\xb7\x86\x97\x7d\x18\x8d\xac\xaf\x11\x57\x5f" "\x72\xcc\xdf\x97\x91\xf6\x4d\x7c\xf6\xe4\xce\xdf\xbf\x7f\xf5\x54\xb3" "\x60\x1c\xf1\xfd\x98\xe5\xc7\x52\xf9\x03\xc3\xc7\xc6\xdf\x7b\xec\x74" "\x4f\x77\x51\xfe\x50\x25\xcb\xaf\x94\xca\x3f\x57\xfd\x6a\xfa\xdd\xc9" "\xee\xce\xc2\xfc\x43\x29\xbf\x5a\x2a\xff\x91\xbf\x7e\x39\x78\xe0\xe1" "\x3d\x6b\x0a\xe7\x67\x22\xcd\x4f\xad\x54\xfe\x86\xb7\x3a\xf7\x4e\xed" "\xd9\xd1\xd1\x57\x94\x7f\x3c\xe5\xd7\x4b\xe5\x6f\xd9\xd5\xbb\xf5\xd6" "\xc9\x97\x5e\x2e\x1c\xff\xe6\x34\x3f\xcb\x4b\xe5\x7f\xf7\xf6\xc6\x8b" "\xbb\x0e\x7d\x78\xba\x30\x3f\xa4\xfc\x15\xa5\xf2\x7f\x38\x76\x72\x5d" "\xb5\xe7\x9d\xf3\x85\xf9\xe3\x69\x7e\x1a\xa5\xf2\x1f\xed\x3f\xb2\xed" "\xfe\x5b\x46\x8e\x16\xce\xff\xd7\x29\x7f\x65\xa9\xfc\x9d\xe7\x47\x87" "\x76\x9f\xf8\x74\x63\xe1\xfa\xdc\x9e\xe6\xa7\x59\x2a\x7f\x7a\xdb\xb7" "\x3f\x5d\x6c\x0e\x9e\x2c\xba\x77\xc6\xe3\x57\xfb\x17\x16\xe0\xfa\x72" "\x53\xf6\x1f\xeb\x60\x56\x97\x7d\xce\xfc\xaf\xda\x9e\x17\x8e\xf4\xd5" "\xe6\xfe\xf3\x75\x66\xdb\xca\xff\xf3\x44\x39\xb1\xed\xd9\x85\x7f\xd8" "\x81\x63\x01\x00\x00\x00\x00\x61\xfe\xd6\x5d\x59\x6c\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xac\x00\x00\x00\xff\xff\xc4\x7a\x66\x62", 23933); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20005dc0, /*flags=*/0, /*opts=*/0x20000200, /*chdir=*/1, /*size=*/0x5d7d, /*img=*/0x20005e00); break; case 1: memcpy((void*)0x20000640, "/dev/loop#\000", 11); res = -1; res = syz_open_dev(/*dev=*/0x20000640, /*id=*/0, /*flags=O_NOFOLLOW|FASYNC|O_APPEND*/ 0x22400); if (res != -1) r[0] = res; break; case 2: *(uint32_t*)0x200000c0 = 0; *(uint16_t*)0x200000c8 = 0; *(uint64_t*)0x200000d0 = 0; *(uint16_t*)0x200000d8 = 0; *(uint32_t*)0x200000e0 = 0x1d; *(uint32_t*)0x200000e4 = 9; *(uint32_t*)0x200000e8 = 0x10; *(uint32_t*)0x200000ec = 0x1d; memcpy((void*)0x200000f0, "\x9e\x95\x9f\x16\xde\xab\x7b\x08\xaa\x26\xe6\x6c\x40\x56\xa5\x16" "\x95\x06\x00\x00\x00\x00\x00\x00\x00\xee\xf4\xfb\x0e\xfc\xc1\xd8" "\xa6\x07\x8e\xd9\x8e\x5e\x6b\xd5\xf8\x64\x39\x02\xdd\x8f\x6f\xac" "\x27\x4d\xe9\xd9\x40\xff\xa5\xe5\x92\xbb\xd4\x86\x85\x45\x0d\x00", 64); memcpy((void*)0x20000130, "\xf6\x25\xc1\x0e\x6e\x4c\x36\xc8\x00\xde\xe9\x60\x15\xe0\xfb\x7e" "\x90\x4d\xc8\xdf\x62\xa3\xa8\x93\xec\x00\x34\x7f\x41\xbe\x5a\x08", 32); *(uint64_t*)0x20000150 = 2; *(uint64_t*)0x20000158 = 9; *(uint32_t*)0x20000160 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4c02, /*arg=*/0x200000c0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }