// https://syzkaller.appspot.com/bug?id=f549ab5d2059d350b70eec699fa66d2bd82fed7c // 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_linkat #define __NR_linkat 37 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_mount #define __NR_mount 40 #endif #ifndef __NR_unlinkat #define __NR_unlinkat 35 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_handler = SIG_IGN; syscall(SYS_rt_sigaction, 0x20, &sa, NULL, 8); syscall(SYS_rt_sigaction, 0x21, &sa, NULL, 8); memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 5; 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); if (call == 3) break; 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; } } } void execute_call(int call) { switch (call) { case 0: // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // flags: mount_flags = 0x8000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {63 6f 6d 70 72 65 73 73 69 6f 6e 3d 67 7a 69 // 70 2c 72 5d 17 00 00 73 74 72 75 63 74 5f 61 6c 6c 6f 63 2c 00} // (length 0x24) // } // } // } // chdir: int8 = 0x1 (1 bytes) // size: len = 0x6739 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6739) // } // ] // returns fd_dir NONFAILING(memcpy((void*)0x20000000, "bcachefs\000", 9)); NONFAILING(memcpy((void*)0x200000c0, "./file2\000", 8)); NONFAILING(memcpy((void*)0x20000180, "\x63\x6f\x6d\x70\x72\x65\x73\x73\x69\x6f\x6e\x3d\x67\x7a" "\x69\x70\x2c\x72\x5d\x17\x00\x00\x73\x74\x72\x75\x63\x74" "\x5f\x61\x6c\x6c\x6f\x63\x2c\x00", 36)); NONFAILING(memcpy( (void*)0x200067c0, "\x78\x9c\xec\xdd\x0b\x94\x1c\x75\x9d\x2f\xf0\xaa\xe9\xce\x64\x1e\x0c" "\x49\x30\x68\x10\xc4\x81\xc8\x63\xd7\x07\x41\x21\x26\xa2\x32\x22\x10" "\x08\x0f\x11\xc1\x85\x0b\x6b\x08\x64\xd0\x48\x08\x90\x87\xb0\x3c\x34" "\x8b\x8b\xa0\xb0\x2b\x08\xac\xe8\xae\xb2\x9c\xbb\xca\x41\xee\x75\xcf" "\x3d\x5e\xee\x82\xde\xeb\x2a\xde\x45\x11\x0e\xde\x23\xba\x0f\x56\x14" "\x5f\xab\x08\x1a\x10\x04\x45\x70\xee\x99\x4c\x57\xe8\xfe\x77\xd7\x54" "\x77\xcf\xbf\x48\xa3\x9f\xcf\x39\xa4\xf9\xf7\xfc\xea\x57\xff\xfe\x76" "\x55\x4d\x55\x4f\xcf\x74\x02\x00\x00\xc0\x1f\x84\x3b\x2e\x59\xff\xc4" "\xe9\xf7\x5c\x79\xd3\xbf\xbf\xfb\x94\x6f\x6c\x7a\xc3\x93\x9b\x93\xe1" "\xca\x96\xfb\x07\x6a\x5f\x1f\xc8\xfe\xe7\xbc\x6d\x36\x45\x4a\x74\xec" "\xa3\xdf\xea\xaf\x1f\x8f\x54\x47\xaa\x49\x8b\xed\xe2\xf4\xfb\x6e\xfd" "\xce\xaf\xc7\x97\x9d\x76\xe3\x37\x2f\xfe\xc8\x39\x17\x0f\x2e\xbe\x79" "\xc9\xcd\xef\xbc\xfe\x92\x37\x7f\xfa\x96\xcf\x9e\xfb\xa7\x3b\x5c\xfc" "\xb9\x1f\x17\xad\x27\xdb\x8c\xe6\x3f\x3b\x4e\xbf\x99\x26\xc9\x4f\x9e" "\xd9\x6b\xee\x3f\xfc\xe5\xf1\x0b\x26\xef\x4b\x93\x24\x99\x9d\x56\x37" "\x25\xf3\xe6\xfd\x79\xdf\x97\xe7\xa5\x41\x8b\xd1\xa7\x92\x24\x59\x55" "\xab\x1b\xa9\xee\xba\xe5\xdf\x07\xbe\x3c\xf5\xc5\x8b\x3e\xff\xfe\x77" "\x4d\xde\x6e\xba\x7c\x76\xc3\x42\x73\x82\x26\xb6\xf7\x3f\x6c\x93\xdb" "\xdf\x70\x92\x24\x57\xd6\xc6\x87\xbd\xf2\xae\xf1\x2f\x2d\x58\xf6\xe8" "\xe5\xdf\x39\xec\x99\xfd\x2f\xd9\xf8\xf3\xa4\x2f\xab\x1c\x4b\x26\xb7" "\xa4\x0b\x6b\xdb\x55\x32\xb6\xfd\x29\xb1\xe7\x91\x79\xe0\x3f\xfa\x92" "\xc9\xad\x70\x49\x6d\x3b\x4c\x67\x30\xaf\x63\x92\x24\x19\xaa\x1b\x2f" "\x29\x98\xc7\xde\x6d\xce\x77\x61\xce\xf8\xc5\xc1\xfd\x23\x05\x7d\xb2" "\xaf\xef\x55\x50\x1f\xee\xfc\x99\x4a\x70\x3b\x50\xb0\xbe\x99\xca\x9b" "\x47\xb7\x75\x45\xb6\x8f\xd4\x27\x4f\xd1\x3c\xb3\xe3\xe5\xdf\xd7\x6e" "\xe7\x77\xd1\x7f\xbb\xda\x7f\x45\xdb\xc2\x4c\x4c\x3e\xff\x83\x49\x92" "\xbc\xa9\x36\xce\xb6\x83\x39\xb5\x0c\x07\xab\xa3\xc1\x12\xdb\x25\x47" "\x26\x47\x25\x47\x27\x07\x27\x87\x24\x87\x26\xcb\x92\xc3\x92\xe5\xc9" "\xe1\xc9\x11\xc9\x31\xc9\x50\x53\xed\x48\x4e\xed\xbc\xf4\x98\x64\xbb" "\xa6\xea\x34\x99\x9b\x56\x6a\x73\xaa\xa4\x49\x5f\x9a\x54\xb7\xc6\x7c" "\x70\x9a\x24\xf5\xdf\x60\x07\xb6\x2e\xd3\x97\xcc\xaa\xbb\x7f\x72\xf7" "\x9e\xdd\xe2\x71\x66\xf7\x67\x0d\x2f\xab\x1d\x07\x86\x6b\xf7\x0d\xa7" "\x3b\x34\x2d\x33\xd1\x42\xf6\xb5\x4b\xef\xbf\xea\x33\xf7\xed\x74\xfe" "\x3e\x73\x5b\x85\x3a\xd9\xf3\xc2\xb4\xd6\x3f\xed\xaa\xff\x57\xce\x7c" "\x68\x64\xf6\x81\x77\x5d\x97\xdb\x7f\x55\xd6\xbf\xaf\xab\xfe\xe7\xec" "\xb2\xf4\xd0\x8d\xab\x16\xad\xca\xed\x7f\x76\xd6\xbf\xd2\x55\xff\x0f" "\x5c\x70\xd5\x99\xb7\x7d\xf5\xde\x6b\x72\xfb\x5f\x96\xf5\xaf\x76\xd5" "\xff\x8a\x63\xcf\x39\xe2\xb2\x6b\x37\x3d\x9c\x77\xdc\x4d\xf7\xce\xfa" "\x0f\x74\x37\xff\x35\x77\xdc\x74\xe1\xf1\xcb\xbf\x9d\x3b\xff\x13\xb2" "\xfe\x83\x5d\xf5\x9f\xb8\xed\xa0\xe1\x39\x4f\xf5\x5f\x92\xdb\xff\xc8" "\xac\xff\x50\x57\xfd\xbf\xf8\xbd\x8b\x6e\xb8\xf3\x87\xd7\x6f\xce\xed" "\xbf\x28\xeb\x3f\xdc\x55\xff\xdb\x8f\xba\xf5\xde\x65\x0b\xf7\x78\x5f" "\x6e\xff\xfd\xb2\xfe\x23\x5d\xf5\xbf\xfb\xc6\x07\x4f\xba\xfb\x8e\xbb" "\x9e\xce\xed\x7f\x72\xd6\x7f\x4e\x57\xfd\x07\x3e\xf3\xdd\xb7\x1c\x74" "\xe7\x21\x1f\xcf\xed\x3f\x96\xf5\x9f\xdb\x55\xff\xdd\x3e\x3a\x74\xea" "\x6f\x6f\x5e\x7b\x5d\xde\xf7\xd5\xf4\xbc\xac\xff\xfc\x2e\xb7\xff\x9d" "\xd7\x8e\xdd\x5e\x79\x34\x77\xfe\x4b\x62\x7d\x27\x05\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xb6\xb9\x8f\x9f\xf7\x78\xfd\x70\xa4\x3a\x52\x9d" "\xbc\xbd\xe3\x92\xf5\x4f\x9c\x7e\xcf\x95\x37\xfd\xfb\xbb\x4f\xf9\xc6" "\xa6\x37\x3c\xb9\xf9\xf4\xfb\x6e\xfd\xce\xaf\xc7\x97\x9d\x76\xe3\x37" "\x2f\xfe\xc8\x39\x17\x0f\x2e\xbe\x79\xc9\xcd\xef\xbc\xfe\x92\x37\x7f" "\xfa\x96\xcf\x9e\xfb\xa7\x3b\x5c\xfc\xb9\x1f\x17\xad\x66\x60\x60\xea" "\x76\x7e\x36\x4e\x92\xf4\x9b\x69\x92\xfc\xe4\x99\xbd\xe6\xfe\xc3\x5f" "\x1e\xbf\x60\xf2\xbe\x34\x49\x92\xd9\x69\x75\x53\x32\x6f\xde\x9f\xf7" "\x7d\x79\x5e\x1a\xb4\x18\x7d\x2a\x49\x92\x55\xb5\xba\x91\xea\xae\x5b" "\xfe\x7d\xe0\xcb\x53\x5f\xbc\xe8\xf3\xef\x7f\xd7\xe4\xed\xa6\xcb\x67" "\x37\x2c\x34\x27\x68\x12\x3e\xae\x64\xb8\x92\xcd\xa7\x61\x9e\xc9\x79" "\xed\x84\xc7\xf3\xcd\xe4\xf6\x37\x9c\x24\xc9\x95\xb5\xf1\x61\xaf\xbc" "\x6b\xfc\x4b\x0b\x96\x3d\x7a\xf9\x77\x0e\x7b\x66\xff\x4b\x36\xfe\x3c" "\xe9\xcb\x2a\xc7\x92\xc9\x2d\xe9\xc2\xda\x76\x95\x8c\x6d\x7f\x4a\xec" "\x79\x64\x1e\xf8\x8f\xbe\x64\x72\x2b\x5c\x52\xdb\x0e\xd3\x19\xcc\xeb" "\x98\x24\x49\x86\xea\xc6\x4b\x0a\xe6\xb1\x77\x9b\xf3\x5d\x98\x33\x7e" "\x71\x70\xff\x48\x41\x9f\xec\xeb\x7b\x15\xd4\x87\x3b\x7f\xa6\x12\xdc" "\x0e\x14\xac\x6f\xa6\xf2\xe6\xd1\x6d\x5d\x91\xed\x23\xf5\xc9\x53\x34" "\xcf\xec\x78\xf9\xf7\xb5\xdb\xf9\x5d\xf4\xdf\xae\xf6\x5f\xd1\xb6\x30" "\x13\x93\xcf\xff\x60\x92\x24\x6f\xaa\x8d\xb3\xed\x60\x4e\x2d\xc3\xc1" "\xea\x68\xb0\xc4\x76\xc9\x91\xc9\x51\xc9\xd1\xc9\xc1\xc9\x21\xc9\xa1" "\xc9\xb2\xe4\xb0\x64\x79\x72\x78\x72\x44\x72\x4c\x32\xd4\x54\x3b\x92" "\x53\x3b\x2f\x3d\x26\xd9\xae\xa9\x3a\x4d\xe6\xa6\x95\xda\x9c\x2a\x69" "\xd2\x97\x26\xd5\xad\x31\x1f\x9c\x26\x49\x7f\x5d\xed\xc0\xd6\x65\xfa" "\x92\x59\x75\xf7\x4f\xee\xde\xb3\x5b\x3c\xce\xec\xfe\xac\xe1\x65\xb5" "\xe3\xc0\x70\xed\xbe\xe1\x74\x87\xa6\x65\x26\x5a\xc8\xbe\x76\xe9\xfd" "\x57\x7d\xe6\xbe\x9d\xce\xdf\x67\x6e\xab\x50\x27\x7b\x5e\x98\xd6\xfa" "\xa7\x5d\xf5\xff\xca\x99\x0f\x8d\xcc\x3e\xf0\xae\xeb\x72\xfb\xaf\xca" "\xfa\xf7\x75\xd5\xff\x9c\x5d\x96\x1e\xba\x71\xd5\xa2\x55\xb9\xfd\xcf" "\xce\xfa\x57\xba\xea\xff\x81\x0b\xae\x3a\xf3\xb6\xaf\xde\x7b\x4d\x6e" "\xff\xcb\xb2\xfe\xd5\xae\xfa\x5f\x71\xec\x39\x47\x5c\x76\xed\xa6\x87" "\xf3\x8e\xbb\xe9\xde\x59\xff\x81\xee\xe6\xbf\xe6\x8e\x9b\x2e\x3c\x7e" "\xf9\xb7\x73\xe7\x7f\x42\xd6\x7f\xb0\xab\xfe\x13\xb7\x1d\x34\x3c\xe7" "\xa9\xfe\x4b\x72\xfb\x1f\x99\xf5\x1f\xea\xaa\xff\x17\xbf\x77\xd1\x0d" "\x77\xfe\xf0\xfa\xcd\xb9\xfd\x17\x65\xfd\x87\xbb\xea\x7f\xfb\x51\xb7" "\xde\xbb\x6c\xe1\x1e\xef\xcb\xed\xbf\x5f\xd6\x7f\xa4\xab\xfe\x77\xdf" "\xf8\xe0\x49\x77\xdf\x71\xd7\xd3\xb9\xfd\x4f\xce\xfa\xcf\xe9\xaa\xff" "\xc0\x67\xbe\xfb\x96\x83\xee\x3c\xe4\xe3\xb9\xfd\xc7\xb2\xfe\x73\xbb" "\xea\xbf\xdb\x47\x87\x4e\xfd\xed\xcd\x6b\xaf\xcb\xfb\xbe\x9a\x9e\x97" "\xf5\x9f\xdf\xe5\xf6\xbf\xf3\xda\xb1\xdb\x2b\x8f\xe6\xce\x7f\x49\xac" "\xef\xa4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x3c\x1f\xac\x7f\xed\xf6\xff\x5c\x3f\x3e\xee\x43\xf7\xbd" "\x6f\xe9\x31\x3b\x2e\x4b\x6b\xe3\x91\x6a\x92\xec\x96\x24\xc9\x8d\xdb" "\x37\x2e\x57\x4d\x92\x64\x30\x49\x92\x53\x4f\x7b\xd7\xab\x57\xac\x1a" "\x7f\xcf\x8a\x8d\xeb\x57\xbe\x73\x7c\xc5\xea\xb5\xab\x37\x34\xd4\x0d" "\x24\xf3\xa7\x6e\xd3\xdd\x93\x59\x49\x92\xa4\x75\x5f\xab\xb4\x9a\x50" "\x5f\xeb\x79\x36\xac\x6f\xc3\xba\x95\x6b\xd7\xaf\x38\x73\xe5\xba\x33" "\xb6\xac\x7a\xfd\xa9\xcf\xd6\xcd\x4a\xaa\xc9\xd0\xe4\x6d\xda\xde\xe3" "\x1f\xd9\xd2\x39\x49\x46\xd2\x9d\xdb\xaa\xcf\xda\x2e\xac\x8d\xc6\x82" "\xfb\x8b\x56\x5b\x9f\xc7\x0b\x9a\xf2\x68\x5e\x3a\xbb\x67\x6c\x9a\x3e" "\xbb\xb4\x91\xeb\x44\x4d\x78\x7f\xac\x5c\xc3\xbb\x8b\x72\x0d\xeb\x63" "\xe6\xfa\xc6\x48\xb9\x2e\xeb\x81\x5c\xc3\xdd\xa1\x28\xd7\xb0\x3e\x66" "\xae\xab\x23\xe5\xba\xae\x07\x72\x0d\xd7\x59\x94\x6b\x58\x1f\x33\xd7" "\x6b\x22\xe5\xfa\x89\x1e\xc8\xb5\x1a\x8c\x8b\x72\x0d\xeb\x63\xe6\xfa" "\x4f\x91\x72\xfd\x5a\x0f\xe4\x3a\x2b\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5" "\x67\x91\x72\x7d\xac\x07\x72\xed\x0f\xc6\x45\xb9\x86\xf5\x31\x73\xdd" "\x31\x8d\x93\xeb\xae\x4d\x7d\x9a\x95\x9d\xeb\xec\x60\x5c\x94\x6b\x58" "\x1f\x33\xd7\xb1\x48\xb9\x1e\xde\x03\xb9\x0e\x04\xe3\xa2\x5c\xc3\xfa" "\x98\xb9\x9e\x11\x29\xd7\x0d\x3d\x90\xeb\x60\x30\x2e\xca\x35\xac\x8f" "\x99\xeb\x5f\x47\xca\xf5\xfa\x1e\xc8\x75\x28\x18\x17\xe5\x1a\xd6\xc7" "\xcc\xf5\xcb\x91\x72\xfd\x7a\x8c\x5c\x37\xac\x1b\x1f\x5f\xb1\xf1\xec" "\x55\x2b\x37\x8c\xaf\x58\x7b\xd6\xaa\xf1\xf5\x2b\xce\x5d\xb7\x7a\xc3" "\x86\xf1\xb5\x05\x0f\x08\xba\xd0\xee\x76\x57\xb4\x3f\x2f\x0f\xc6\x45" "\xfb\x73\x58\xdf\xb8\x3f\x57\x3a\xde\x9f\x87\x93\xea\x96\x9a\xe1\x74" "\x87\xa6\xaf\x4d\xb4\x90\x7d\xed\x8a\x63\xcf\x39\xe2\xb2\x6b\x37\x3d" "\x1c\x7e\x3f\xdc\x3a\xaf\xbd\xa7\xd6\x3c\x98\x8c\x4c\xdd\xa6\xbb\xe4" "\x54\x36\x3e\xa2\x6a\x3a\xb5\xf7\x8f\xe5\xac\xbf\xbf\x76\xdc\xe8\x4f" "\x77\x4f\xde\xda\xd7\xf8\xf8\xfa\x2a\x69\xd3\xc3\xcd\xf2\xa8\x5f\xee" "\x84\x60\xb9\xfe\xf0\xa2\xa9\x6e\xb9\xfa\xe3\xd4\x8a\xbe\xf0\x38\xd5" "\x7c\xa4\x6a\xe7\x78\xf7\xae\xa6\x3e\xcd\xca\xfe\x3e\x32\x1c\x8c\x8b" "\xb6\xbb\xb0\x3e\xe6\xf7\x91\x0f\x35\xe5\xd1\xdd\xf7\x91\xab\x7b\x20" "\xd7\xed\x82\x71\x51\xae\x61\x7d\xcc\x5c\x6f\x89\x94\xeb\x17\x7b\x20" "\xd7\x91\xa6\xf1\xf4\xb9\x86\xf5\x31\x73\x7d\x20\x52\xae\x0f\xf6\x40" "\xae\xc1\x8f\x21\x0a\x73\x0d\xeb\x63\xe6\x3a\x5c\x89\x93\xeb\xfc\xa6" "\x3e\xcd\xca\xce\x75\x4e\x30\x2e\xca\x35\xac\x8f\x99\xeb\xe2\x48\xb9" "\x1e\xd8\x03\xb9\xce\x0d\xc6\x45\xb9\x86\xf5\x31\x73\x5d\x19\x29\xd7" "\x77\xf7\x40\xae\xf3\x82\x71\x51\xae\x61\x7d\xcc\x5c\xaf\x88\x94\xeb" "\xb5\x3d\x90\x6b\x78\x56\x5d\x94\x6b\x58\x1f\x33\xd7\x7f\x8c\x94\xeb" "\x97\x7a\x20\xd7\x17\x04\xe3\xa2\x5c\xc3\xfa\x98\xb9\xfe\x20\x52\xae" "\x0f\xf5\x40\xae\xf3\x83\x71\x51\xae\x61\x7d\xcc\x5c\x47\xaa\x71\x72" "\x7d\x61\x53\x9f\x66\x65\xe7\xba\x63\x30\x2e\xca\x35\xac\x8f\x99\xeb" "\x92\x48\xb9\xbe\xa9\x07\x72\x7d\x61\x30\x2e\xca\x35\xac\x8f\x99\xeb" "\x69\x91\x72\x5d\xd3\x03\xb9\xbe\x28\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5" "\xaf\x22\xe5\xfa\xd1\x1e\xc8\x75\x41\x30\x2e\xca\x35\xac\x8f\x99\xeb" "\x6d\x91\x72\xbd\xbd\x07\x72\xdd\x29\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5" "\x47\x91\x72\xfd\x79\x0f\xe4\xfa\xe2\x60\x5c\x94\x6b\x58\x1f\x33\xd7" "\x39\xb3\xe2\xe4\xba\xa0\xa9\x4f\xb3\xb2\x73\x0d\xd3\x2b\xca\x35\xbc" "\x37\x66\xae\xaf\x8b\x94\xeb\x9b\x7b\x20\xd7\xf0\xa7\x0c\x45\xb9\x86" "\xf5\x31\x73\x1d\x8f\x94\xeb\xda\x1e\xc8\xf5\x25\xc1\xb8\x28\xd7\xb0" "\x3e\x66\xae\x57\x46\xca\xf5\x63\x3d\x90\xeb\xae\xc1\xb8\x28\xd7\xb0" "\x3e\x66\xae\x5f\x88\x94\xeb\xff\xed\x81\x5c\x5f\x1a\x8c\x8b\x72\x0d" "\xeb\x63\xe6\xfa\x9f\x91\x72\xdd\xdc\x03\xb9\x8e\x06\xe3\xa2\x5c\xc3" "\xfa\x98\xb9\xce\xeb\x8f\x93\xeb\x8b\x9b\xfa\x34\x2b\x3b\xd7\xdd\x82" "\x71\x51\xae\x61\x7d\xcc\x5c\x5f\x1f\x29\xd7\x43\x7a\x20\xd7\xdd\x83" "\x71\x51\xae\x61\x7d\xcc\x5c\xdf\x19\x29\xd7\xb3\x7b\x20\xd7\x85\xc1" "\xb8\x28\xd7\xb0\x3e\x66\xae\x1f\x89\x94\xeb\xdf\xf4\x40\xae\x2f\x0b" "\xc6\x45\xb9\x86\xf5\x31\x73\xfd\x3f\x91\x72\xbd\xa3\x07\x72\xdd\x23" "\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5\xa7\x91\x72\x7d\xb4\x07\x72\xdd\x33" "\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5\x05\xb3\xe3\xe4\xba\x4b\x53\x9f\x66" "\x65\xe7\xba\x57\x30\x2e\xca\x35\xac\x8f\x99\xeb\x1b\x23\xe5\xba\xac" "\x07\x72\xdd\x3b\x18\x17\xe5\x1a\xd6\xc7\xcc\x75\x75\xa4\x5c\xd7\xf5" "\x40\xae\x7f\x14\x8c\x8b\x72\x0d\xeb\x63\xe6\x7a\x4d\xa4\x5c\x3f\xd1" "\x03\xb9\xfe\x71\x30\x2e\xca\x35\xac\x8f\x99\xeb\x3f\x45\xca\xf5\x6b" "\x3d\x90\xeb\xcb\x83\x71\x51\xae\x61\x7d\xcc\x5c\x7f\x16\x29\xd7\xc7" "\x7a\x20\xd7\x57\x04\xe3\xa2\x5c\xc3\xfa\x98\xb9\xee\x38\x10\x27\xd7" "\x5d\x9b\xfa\x34\x2b\x3b\xd7\x57\x06\xe3\xa2\x5c\xc3\xfa\x98\xb9\x8e" "\x45\xca\xf5\xf0\x1e\xc8\xf5\x55\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x67" "\x44\xca\x75\x43\x0f\xe4\xba\x4f\x30\x2e\xca\x35\xac\x8f\x99\xeb\x5f" "\x47\xca\xf5\xfa\x1e\xc8\x75\x51\x30\x2e\xca\x35\xac\x8f\x99\xeb\x97" "\x23\xe5\xfa\xf5\x1e\xc8\x75\xdf\x60\x5c\x94\x6b\x58\x1f\x33\xd7\x87" "\x23\xe5\xfa\xab\x1e\xc8\xf5\xd5\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x2f" "\x1a\x8c\x93\xeb\x68\x53\x9f\x66\x65\xe7\xfa\x9a\x60\x5c\x94\x6b\x58" "\x1f\x33\xd7\x83\x22\xe5\x7a\x44\x0f\xe4\xba\x5f\x30\x2e\xca\x35\xac" "\x8f\x99\xeb\x99\x91\x72\x7d\x4f\x0f\xe4\xba\x7f\x30\x2e\xca\x35\xac" "\x8f\x99\xeb\x75\x91\x72\xbd\xa1\x07\x72\x5d\x1c\x8c\x8b\x72\x0d\xeb" "\x63\xe6\xfa\x95\x48\xb9\xde\xdd\x03\xb9\xbe\x36\x18\x17\xe5\x1a\xd6" "\xc7\xcc\xf5\x17\x91\x72\x7d\xb2\x07\x72\x5d\x12\x8c\x8b\x72\x0d\xeb" "\x63\xe6\xba\xd3\x50\x9c\x5c\x77\x6f\xea\xd3\xac\xec\x5c\x97\x06\xe3" "\xa2\x5c\xc3\xfa\x98\xb9\x1e\x1c\x29\xd7\xa3\x7a\x20\xd7\xd7\x05\xe3" "\xa2\x5c\xc3\xfa\x98\xb9\x9e\x15\x29\xd7\xf3\x7a\x20\xd7\x03\x82\x71" "\x51\xae\x61\x7d\xcc\x5c\x3f\x1e\x29\xd7\xff\xda\x03\xb9\xbe\x3e\x18" "\x17\xe5\x1a\xd6\xc7\xcc\xf5\x9f\x23\xe5\x7a\x4f\x0f\xe4\xfa\x86\x60" "\x5c\x94\x6b\x58\x1f\x33\xd7\x47\x22\xe5\xfa\x9b\x1e\xc8\xf5\x8d\xc1" "\xb8\x28\xd7\xb0\x3e\x66\xae\x3b\x0f\xc7\xc9\xf5\x65\x4d\x7d\x9a\x95" "\x9d\xeb\x81\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x87\x46\xca\xf5\x2d\x3d" "\x90\x6b\x38\xbf\xa2\x5c\xc3\xfa\x30\xd7\x81\xe0\xfe\x4e\x72\x3d\xa7" "\x83\x5c\xb3\xf5\x2c\x69\xd1\xe7\xfc\x1e\xc8\xf5\x81\xe0\xfe\xa2\x5c" "\xc3\xfa\x98\xdb\xeb\xdf\x46\xda\x5e\x3f\xd5\x03\xb9\x7e\xbf\xc3\x5c" "\xc3\xfa\x98\xb9\x7e\x35\x52\xae\xff\xaf\x07\x72\xfd\x41\x87\xb9\x86" "\xf5\x31\x73\xfd\x65\xa4\x5c\x7f\xdb\x03\xb9\xfe\xb0\xc3\x5c\xc3\xfa" "\x98\xb9\xbe\x64\xbb\x38\xb9\xee\xd9\xd4\xa7\x59\xd9\xb9\xfe\xa8\xc3" "\x5c\xc3\xfa\x98\xb9\x1e\x16\x29\xd7\xb7\xf6\x40\xae\x3f\xee\x30\xd7" "\xb0\x3e\x66\xae\xeb\x23\xe5\x7a\x61\x0f\xe4\xfa\x9f\x1d\xe6\x1a\xd6" "\xc7\xcc\xf5\x93\x91\x72\xbd\xb1\x07\x72\xfd\x49\x87\xb9\x86\xf5\x31" "\x73\xbd\x33\x52\xae\xdf\xec\x81\x5c\x7f\xda\x61\xae\x61\x7d\xcc\x5c" "\x1f\x8f\x94\xeb\x33\x3d\x90\xeb\x83\x1d\xe6\x1a\xd6\xc7\xcc\xf5\xa5" "\x23\x71\x72\xdd\xbb\xa9\x4f\xb3\xb2\x73\xfd\x59\x87\xb9\x86\xf5\x31" "\x73\x5d\x1e\x29\xd7\xb7\xf5\x40\xae\x0f\x75\x98\x6b\x58\x1f\x33\xd7" "\x8d\x91\x72\x7d\x6f\x0f\xe4\xfa\x70\x87\xb9\x86\xf5\x31\x73\xfd\xbb" "\x48\xb9\xde\xd4\x03\xb9\xfe\xbc\xc3\x5c\xc3\xfa\x98\xb9\xde\x15\x29" "\xd7\x6f\xf5\x40\xae\xbf\xe8\x30\xd7\xb0\x3e\x66\xae\x4f\x44\xca\x75" "\xa2\x07\x72\xdd\xdc\x61\xae\x61\x7d\xcc\x5c\x77\xdb\x3e\x4e\xae\x7f" "\xdc\xd4\xa7\x59\xd9\xb9\x3e\xd2\x61\xae\x61\x7d\xcc\x5c\x8f\x8c\x94" "\xeb\xf1\x3d\x90\xeb\xa3\x1d\xe6\x1a\xd6\xc7\xcc\xf5\xdc\x48\xb9\x6e" "\x9a\x41\xae\x69\xed\x6f\xde\x5f\xf8\xf9\xf7\xbf\x6b\x6a\xdc\xd7\xf0" "\xd9\x6a\x7d\x2d\x3e\xbb\xaa\xfe\xfe\xa2\xc7\x0b\x00\x00\xcf\xa5\x17" "\xfe\xea\xfa\xb7\xd6\x8f\xb3\xcf\xff\xcf\x3e\x47\x3c\xfb\x9b\xf6\xff" "\x51\x3b\xe9\xcd\xce\x67\x63\x5d\x6f\xfc\xb2\xc3\xeb\x8d\xb0\x3e\x9b" "\x67\x8c\xeb\x8d\x59\xc1\xe7\xa7\x77\x7b\xbd\xb1\x7d\x53\x9f\x66\x65" "\x5f\xc7\x3d\xd6\x61\xae\x61\x7d\xcc\x5c\x17\x45\xca\x75\x69\x0f\xe4" "\xfa\x78\x87\xb9\x86\xf5\x31\x73\x3d\x29\x52\xae\xab\x7a\x20\xd7\x5f" "\x75\x98\x6b\x58\x1f\x33\xd7\x0f\x44\xca\xf5\xc3\x3d\x90\xeb\x13\x1d" "\xe6\x1a\xd6\xc7\xcc\xf5\x7f\x44\xca\xf5\xf3\x3d\x90\xeb\x93\x1d\xe6" "\x1a\xd6\xc7\xcc\xf5\x3b\x91\x72\xfd\x71\x0f\xe4\xfa\xeb\x0e\x73\x0d" "\xeb\x63\xe6\x3a\x3b\x8d\x93\xeb\xdc\xa6\x3e\xcd\xca\xce\xf5\x37\x1d" "\xe6\x1a\xd6\xc7\xcc\xf5\xd5\x91\x72\x3d\xa0\x07\x72\x7d\xaa\xc3\x5c" "\xc3\xfa\x98\xb9\xfe\x69\xa4\x5c\x4f\xef\x81\x5c\x7f\xdb\x61\xae\x61" "\x7d\xcc\x5c\x2f\x8b\x94\xeb\x55\x3d\x90\xeb\xd3\x1d\xe6\x1a\xd6\xc7" "\xcc\xf5\x73\x91\x72\xfd\xdf\x3d\x90\xeb\x33\x1d\xe6\x1a\xd6\xc7\xcc" "\xf5\xbb\x91\x72\xfd\x49\x0f\xe4\xfa\xbb\x0e\x73\x0d\xeb\x63\xe6\x3a" "\xd8\x17\x27\xd7\x1d\x9a\xfa\x34\x2b\x3b\xd7\x89\x0e\x73\x0d\xeb\x63" "\xe6\xba\x5f\xa4\x5c\xdf\xd0\x03\xb9\xbe\x29\x18\x17\xe5\x1a\xd6\x37" "\xe6\xda\x37\xa3\x5c\x57\x34\xe5\xd1\xd7\x54\xdf\x4e\xae\xef\xea\x81" "\x5c\x0f\x0a\xc6\x45\xb9\x86\xf5\x31\x73\xfd\x50\xa4\x5c\xaf\xee\x81" "\x5c\xdf\x1c\x8c\x8b\x72\x0d\xeb\x63\xe6\x7a\x4b\xa4\x5c\xbf\xd8\x03" "\xb9\x1e\x1c\x8c\x8b\x72\x0d\xeb\x63\xe6\xfa\x40\xa4\x5c\x1f\xec\x81" "\x5c\x0f\x09\xc6\x45\xb9\x86\xf5\x31\x73\x1d\xae\xc4\xc9\x75\x7e\x53" "\x9f\x66\x65\xe7\x7a\x68\x30\x2e\xca\x35\xac\x8f\x99\xeb\xe2\x48\xb9" "\x1e\xd8\x03\xb9\x2e\x0b\xc6\x45\xb9\x86\xf5\x31\x73\x5d\x19\x29\xd7" "\x77\xf7\x40\xae\x87\x05\xe3\xa2\x5c\xc3\xfa\x98\xb9\x5e\x11\x29\xd7" "\x6b\x63\xe5\x3a\x19\xe6\xe9\xeb\xc6\xc7\xd7\x9f\xbd\xf2\xb4\xf1\x15" "\xab\xd7\xae\xde\xb0\xb5\x6e\x56\x32\x3c\x6d\xae\xcb\x83\xf1\x64\xfd" "\x96\xdb\x74\xa7\x96\x8f\x27\xac\x8f\x35\x8f\xf0\xef\x25\xe4\xcd\xe3" "\xda\xb4\x75\x7d\xc3\x3c\x4e\xdd\xb0\x6e\x7c\x72\xfd\xeb\xc7\xd7\x6d" "\x68\x7a\x7c\x73\xa6\x9d\x47\x78\x77\x7f\x32\x67\xea\x36\x0d\x3f\x81" "\xaf\x75\x7d\x5a\x7b\xce\xb6\xce\x67\xcb\x54\x36\x9e\xbd\x6a\xe5\x86" "\xf1\x15\x6b\xcf\x5a\x35\xbe\x7e\xc5\xb9\xeb\x56\x6f\xd8\x30\xbe\x36" "\x9b\xcf\xf4\xdb\xfd\x51\xc1\xb8\x68\xbb\x0f\xeb\x1b\xb7\xfb\x4a\xc7" "\xdb\x7d\xd1\xf3\x16\xae\x2f\xef\x79\xeb\x9b\xa6\x7e\xa8\x83\xe7\x39" "\xaf\xff\x47\x72\xea\x87\x93\xe1\x2d\x8f\x71\x38\xdd\xa1\x69\xee\x13" "\x2d\x64\x5f\xbb\xfd\xa8\x5b\xef\x5d\xb6\x70\x8f\xf7\x0d\xb4\x7e\xd8" "\x49\xba\xdf\xd4\x8a\x06\x93\x91\xa9\xdb\x34\xfc\xa4\xd6\xa4\xe5\x23" "\x1e\x4e\xa7\xf6\xf2\xb1\x9c\xf5\xf7\xd7\x8e\x0f\xfd\xe9\xee\x49\x5a" "\x6d\x3c\x3e\xf4\x55\xd2\xa6\x67\x21\x7b\x3e\xeb\x97\x1b\x08\x96\xeb" "\x1f\x6e\x9e\x55\xb6\x5c\xfd\xf1\x68\x4e\x35\x3c\x1e\x35\x1f\x91\xda" "\x39\xae\x2d\x68\xea\xd3\xac\xad\xe3\xda\xb4\xfb\xf1\xe0\xf4\xaf\x77" "\x04\xbd\xb7\xdb\xd2\x35\x49\xb6\x4b\xc3\x4f\xd8\x6f\x5d\x1f\x1e\xd1" "\xd3\x36\xdf\xdb\x1d\x6b\xbf\x3f\x26\x18\x17\xed\xf7\x61\x7d\xd1\x7e" "\xbf\xa9\xe0\x71\x14\xed\xf7\xe1\xfa\x8a\xf6\xfb\x56\xf5\xad\xf6\xfb" "\xbc\xfd\x38\xaf\xff\x87\x73\xf7\xfb\x39\x5d\xed\xf7\x03\x9f\xf9\xee" "\x5b\x0e\xba\xf3\x90\x8f\xe7\xee\xf7\x63\xed\xee\xf7\x8d\x8f\x78\x4e" "\x07\xfb\xfd\xa6\x2e\xf7\xfb\x4b\xc3\xfd\x7e\x4e\xf3\xac\x5a\xed\xf7" "\x7f\x15\x69\xbf\xff\xe8\x73\xb2\xdf\x0f\x74\xf4\xfd\x7b\xa8\xf6\x97" "\xa5\x86\xd2\x1d\xdb\xaa\xcf\xe6\x98\xcc\x6d\xdd\xbf\x69\xbe\x33\xdc" "\xcf\xdf\x16\x8c\x8b\xf6\xf3\xb0\xbe\x68\x3f\x2f\x3a\x68\x15\xed\xe7" "\xe1\xfa\x8a\xf6\xf3\x56\xf5\xad\xf6\xf3\xbc\xfd\x36\xaf\xff\x15\xb9" "\xfb\xf9\x60\x57\xfb\xf9\xc4\x6d\x07\x0d\xcf\x79\xaa\xff\x92\xdc\xfd" "\xfc\xc8\x76\xf7\xf3\xc6\x47\x3c\xd8\xc1\x7e\xfe\x4c\x97\xfb\x79\x75" "\x56\xb0\x9f\x0f\x36\xcf\xaa\xd5\x7e\x3e\x3c\x2b\xce\x7e\x3e\xbf\xa9" "\x4f\xb3\x99\xef\xe7\x69\xee\x76\xd9\x6a\xff\x9c\x57\x9b\xf9\xbc\x34" "\xfc\x64\xf7\xd6\xf5\xd9\xfc\x5f\xb1\xf1\xaa\xe3\x97\x7c\xff\xf1\x25" "\x49\xb2\xe8\x85\xf7\xee\x5a\x6d\xf1\x48\xa6\x6c\x1e\x3f\xfc\xb4\x03" "\x5a\xfc\xdb\xa4\xd6\xb8\xfe\xf9\x3a\x7a\x56\xf3\xf9\x44\x28\x7b\x98" "\x0d\xf9\x9c\xbe\x7e\xcb\x45\xd4\xea\x95\x6b\x56\x9f\x3f\xde\x58\x5f" "\x94\x4f\x1a\x3c\xde\x1d\x6a\x6b\xd8\x21\x27\x9f\xb0\x3e\x9b\xef\x87" "\x37\x5e\xf0\xcb\x5b\x5f\x73\xcb\x53\x49\xb2\x68\xc7\xca\x2e\x33\xce" "\x27\x1d\x9b\x78\xd9\xe8\x3d\xd7\xfc\xfa\x53\x8f\xd7\x36\x9a\x79\xb5" "\xc7\xd1\x2b\xcf\xdb\xb6\xdb\x8e\xfa\x5a\x36\x9e\x95\xf4\x4d\xfb\x3c" "\x6f\x4d\xb3\x36\xaf\x81\xda\x82\x03\xe9\x50\x5b\xf5\xd9\xf3\x5e\x5d" "\x73\xd6\xfa\x0d\x2f\x3f\xfd\xac\x8d\x6b\x57\x6d\x19\xd7\x6f\xbf\xeb" "\x3a\xd8\x7e\x87\x93\x6a\x57\xc7\xe3\x2b\x8e\x3d\xe7\x88\xcb\xae\xdd" "\xf4\x70\xee\xf1\x78\xef\x74\xeb\x7a\x62\xfc\x7e\xe6\xa6\x76\x4e\xe6" "\x7f\x0f\x3d\xf1\x9b\xf4\xc9\xfa\x71\xf6\xfe\xff\xec\x18\x9e\xbd\xff" "\xff\xad\xfd\x53\xe3\xa6\xe3\xd2\x0c\xcf\x77\xde\x1e\x8c\x8b\xce\x77" "\xc2\xfa\x6c\x9e\xb9\xd7\x35\x33\x3c\xdf\x09\xd7\x57\x74\xbe\xd3\xaa" "\xbe\xd5\xf9\x4e\xde\xf9\x4b\x5e\xff\x0f\xe6\x9e\xef\x0c\x74\xb5\x7f" "\x7d\x60\xcd\x1d\x37\x5d\x78\xfc\xf2\x6f\xe7\xee\x5f\x27\xb4\x7b\xbe" "\xd3\xf8\x88\x07\x3a\x38\xdf\xd9\x39\x38\x57\x68\xf7\x7c\x67\xf7\x60" "\xb9\xfe\x16\x0f\xa2\xd5\xf9\xce\x1f\x05\xcb\x75\x7b\xbe\xf3\xea\xa6" "\x3e\xcd\x0a\xcf\x77\x66\xb8\xdf\x9c\x18\x8c\x8b\xf6\x9b\xb0\xbe\xec" "\xfd\x26\x5c\x5f\xd1\x7e\xd3\xaa\xbe\xd5\x7e\x93\xb7\x1f\xe4\xf5\xff" "\x40\xee\x7e\x93\x76\xb5\xdf\x7c\xe5\xcc\x87\x46\x66\x1f\x78\xd7\x75" "\xb9\xfb\xcd\xaa\x76\xf7\x9b\xc6\x47\x9c\x76\xb0\xdf\x5c\xdc\xe5\x7e" "\xf3\xc1\x70\xbf\x69\xf1\xdc\xb5\xda\x6f\xae\x8c\xb4\xdf\x7c\xac\x07" "\xf6\x9b\x93\x83\x71\xd1\x7e\x13\xd6\x97\xbd\xdf\x84\xeb\x2b\xda\x6f" "\x5a\xd5\xb7\xda\x6f\xf2\xf6\x83\xbc\xfe\xef\xcf\xdd\x6f\xfa\xba\xda" "\x6f\xce\xd9\x65\xe9\xa1\x1b\x57\x2d\x5a\x95\xbb\xdf\x9c\xdd\xee\x7e" "\xd3\xf8\x88\xfb\x3a\xd8\x6f\x1e\xec\x72\xbf\x79\x24\xdc\x6f\x5a\x9c" "\xfc\xb6\xda\x6f\x9e\x8c\xb4\xdf\x4c\x16\xcd\x74\xbf\x59\xb1\x62\xcb" "\x15\xe4\x69\xeb\xc6\x57\x6e\x18\x6f\xb1\x7c\xd1\xf5\x63\x5f\x87\xd7" "\x8f\x61\x7d\x36\xe7\xa7\x77\xdf\xeb\x9e\x23\x7f\xf1\xde\x1b\x27\xaf" "\x1f\xa7\xbb\x2e\x7a\xcb\x87\x7e\xf6\xee\x03\x5a\xfc\x1b\x48\xc7\x26" "\xce\x9d\xfb\xa6\x5b\x4e\x79\xf8\x5f\x0f\x9f\xba\x63\xdb\x5d\x3f\xb6" "\xbe\x5e\xeb\xf4\xfa\xb1\xd2\xd5\x7c\xea\x13\xca\xe6\x53\x6d\x39\x9f" "\xa2\xeb\xc7\xad\x69\xd6\xe6\x35\xbb\xb6\xe0\xec\x9c\xeb\xc7\xb0\x3e" "\x7b\xde\xab\xa7\xaf\x5e\x33\xbe\xa8\x71\x3f\x7a\x5d\xda\x7a\xdb\xad" "\x17\x5e\x5f\xcc\x74\xbb\xad\x74\xb8\xdd\x86\xf5\xd9\x7c\xf7\xbf\x7f" "\xd1\xe6\xdf\x7d\xed\xf8\xbb\xa7\xb6\xdb\xbc\xa3\x58\xdb\xdb\xed\xe0" "\xd8\xc4\xe0\x5f\x9c\x79\xe8\x33\x47\x6c\xda\xf7\xd9\x79\x0d\xf5\xe0" "\xfe\xd4\xab\xfb\x79\xd1\x76\x9c\xa5\xdb\xd7\xe6\x76\x1c\xd6\x67\xdb" "\xc1\x40\x8b\xed\xf8\xaa\x6d\xb0\x1d\x57\x83\x9c\xb7\xaf\xad\x61\xfb" "\x9c\xe7\x25\xac\xcf\xe6\xbb\xf4\x3d\xaf\xfa\xc4\x0f\x8e\x3b\x61\x8f" "\x4d\xc9\xa2\xea\x63\x2f\x6d\xce\x22\x93\xf7\xbc\xd4\xe7\xf0\xb3\x0e" "\x72\x98\x55\x3b\x40\x84\xe7\x19\x79\xf3\x6d\x78\xdd\x73\xf2\x0c\x6f" "\x7c\xc5\xea\xb5\xab\xc6\xcf\x5b\xb1\x6a\xfc\xf4\x95\x1b\xd7\x6c\x7d" "\x79\x78\xd6\x96\x9f\xe9\xe4\xe7\x96\xed\xa9\x59\xff\xec\x11\x0f\xa5" "\xf3\x1a\x6a\x07\x72\xea\xf7\xd9\x70\xe6\xd9\xfb\xac\xff\xb3\xf3\x5f" "\xb9\xfa\xcc\x95\xef\x1c\x7f\xe7\xf8\xda\xfd\x16\x2d\x7e\xed\xa2\xc5" "\x8b\x17\xef\xbb\x64\x9f\x2d\x9b\xc6\xd4\xbf\x5b\x9e\x8f\xa1\x6d\xf0" "\x7c\xc4\xda\x0e\xb2\xc7\xbd\x57\x9b\xeb\x8d\x75\x3e\xbe\x22\x18\x17" "\x9d\x8f\x87\xf5\x65\x9f\x8f\x87\xeb\x2b\x3a\x1f\x6f\x55\xdf\xea\x7c" "\x3c\xef\xfc\x3a\xaf\xff\xa6\xdc\xf3\xf1\xa4\xab\xf3\xf1\x4b\xef\xbf" "\xea\x33\xf7\xed\x74\xfe\x3e\xb9\xe7\xe3\x17\xb6\x7b\x3e\x1e\x3c\xe2" "\x0e\xce\xc7\x4f\xea\xeb\xee\x7c\xfc\xd4\x60\xb9\xfe\x16\xb3\x6a\x75" "\x3e\xbe\xba\x2f\xce\xf9\xf8\xba\xa6\x3e\xcd\xda\x3c\x1f\x5f\xb3\x7a" "\xed\x19\x2d\x96\x76\x3e\xd0\xe9\xbc\x62\x1d\x7f\x3b\x3d\x0e\x16\xe5" "\x51\xb4\xde\xc9\x3c\xba\x59\x6f\x60\x70\x6c\x62\xc7\xd7\x9d\xb8\xc7" "\x79\x13\x7d\xef\x98\xba\xa3\xe8\xfc\x28\xab\x6e\xf7\xfc\x28\xac\xdf" "\xfa\xfd\x74\xf2\xdb\xdf\xbe\xf5\xdf\xdf\x5b\xaf\x2f\xef\xfb\xfb\x4c" "\xcf\x8b\x66\x75\x78\x7e\x1f\xd6\x67\xcf\xc7\x0d\x5f\x7f\x7c\xf1\x29" "\xdf\xfd\xe9\x77\x22\x9d\xdf\xa7\x63\x13\xcb\x7f\xf5\xe4\x87\xbf\xba" "\xf8\xfc\xf7\x4e\xdd\xd1\xe9\x75\x69\xd9\xd7\x81\xcf\xb7\xeb\xd2\xad" "\x69\xb6\xb9\xbd\x86\xf5\xb3\xea\xcf\xe7\xf7\x6d\xfc\x7e\x32\x52\xe9" "\xfc\x7c\x7e\xcb\x56\x7b\xde\xca\x0d\x1b\xd6\xad\x58\x3f\xbe\x61\xc5" "\xbb\x56\xae\x5d\xb5\x66\x7c\xdd\xb3\xf5\x45\xc7\xef\x6d\xb5\x1d\x3e" "\x37\xfb\xc7\x37\x3e\x7b\xf9\xba\xce\xe6\x35\x2b\xa9\x4c\xfb\xfc\xef" "\x7f\xc0\xfb\x2f\xb8\xf0\x2f\xb7\x7f\xdf\xac\xad\xcf\xff\xd4\xcc\x66" "\xa7\xcd\x6f\x66\x6d\x55\x9f\xf4\xf7\x27\x5b\x9e\xae\x7d\xa7\xfe\x8d" "\x75\xfe\x7a\x6a\x30\x2e\x3a\x7f\x0d\xeb\x8b\xce\x5f\x07\x0a\x7e\xd0" "\x5e\x74\xfe\x1a\xae\xaf\xe8\xfc\xb5\x55\x7d\xab\xf3\xd7\xbc\xf3\xd1" "\xbc\xfe\x17\xe5\x9e\xbf\x56\xba\xfb\xf9\xe5\x05\x57\x9d\x79\xdb\x57" "\xef\xbd\x26\xf7\xfc\xf5\xb2\x76\xcf\x5f\x1b\x1f\x71\xa5\x83\xf3\xd7" "\xcf\x55\xba\x3b\x7f\xfd\x7c\xb0\x5c\x7f\x8b\x83\x4f\xab\xf3\xd7\x2f" "\x57\xe2\x9c\xbf\x7e\xbd\xa9\x4f\xb3\xa2\xf3\xd7\xde\x38\xfe\x75\x7e" "\x9c\x79\xbe\x1e\xff\xfe\xee\xdd\x4b\x0e\xf8\xfe\xcd\x3b\xbc\xa4\xdd" "\xe3\x5f\x58\xbf\xf5\xf8\xf7\xea\xa9\x7f\x63\x9d\x7f\xf5\x77\x78\xfe" "\x15\xd6\x67\xf9\x4e\x2c\xec\x1b\x3d\xfa\xdf\x6e\xde\xa5\x28\xdf\xa9" "\x64\x9b\xff\x0d\xa4\x63\x13\xff\xf4\xf2\xdf\xbd\xfe\x63\x97\x9f\x51" "\x7b\x7b\xc2\x1f\xe6\xf9\x57\x7d\x42\x33\x3b\xff\xda\x9a\x66\x9b\xe7" "\x5f\x61\x7d\x7f\xfd\xf9\xd7\xab\x1b\x8f\x87\x6f\xa8\x76\xfd\x7a\x6a" "\xee\xf5\xf3\x73\xf3\x7c\xb7\x9f\x6f\xaf\x3d\xdf\x45\xc7\xe7\x6d\xb5" "\x9f\x6e\xbb\xe3\x47\x5f\x30\xaf\xd1\x6b\xd6\xec\x77\xc6\xce\xbb\x9f" "\x34\x75\x47\xd1\xfe\xb1\xb5\xba\xcd\xfd\x23\xac\x6f\xd8\x3f\x5e\x13" "\xef\xfa\x78\x76\x87\xc7\xe7\xb0\x3e\xcb\x77\xc5\x7d\xbf\xfb\xd2\xa7" "\x4f\x7e\xe4\x8e\x78\xcf\xfb\xf5\xdf\x3a\xeb\x9c\x4f\x3d\x3e\x58\xfb" "\x83\x12\xf6\xd7\x99\x1d\x9f\xb7\xa6\xd9\xe6\xfb\x7e\xc3\xfa\xd9\xf5" "\xdb\xdf\xab\x4e\x3b\x6b\xcd\xd4\xdb\x7e\x1b\x8e\xd3\x8f\x76\x71\x9c" "\x6e\xf8\xf9\xcd\x59\xab\x9a\x36\xe1\xa2\xe3\xd0\xb6\x7a\xfd\xac\x57" "\x5f\xd7\x8b\xfd\x73\xb1\x67\xcf\x27\x6b\xb7\x05\x3f\x17\xcb\xea\xd7" "\xff\xd9\xf9\x67\xac\x5c\xb3\x66\x7c\xdd\xfa\x67\xf3\xfa\x7d\x3e\xdf" "\xcf\x66\x16\xee\x4d\xdd\xce\x2b\xd6\xfe\xb1\xad\xe6\x5f\x76\xae\xf5" "\x47\xc6\x19\xe7\x3a\x83\xfd\x23\x3b\x2e\x66\xaf\x4e\xec\x50\xb0\x7f" "\xcc\x6e\xda\x3f\xca\xfb\x9f\xa4\x8d\xed\x63\x5b\x7d\x3f\x8f\x75\x9e" "\x91\xcd\x6c\x55\xa4\x79\x95\xfd\xfb\x28\x65\xff\xfe\x61\xd9\x7f\xbf" "\xa0\xec\xdf\x93\x8e\xf5\xfb\x3a\x45\xaf\x8b\x02\x00\x00\x00\x00\x00" "\x00\xfc\xa1\xb9\x7c\x45\x7a\x65\xfd\x38\xfb\xfb\x7f\xd9\xbb\xd0\xb2" "\xbf\xff\xf7\x86\xda\xcf\x5b\xa7\x7d\x7f\x57\x8b\xf7\x59\x00\x3c\xdf" "\xc5\x7e\x5f\x59\xa5\xe9\x7d\x97\x8d\x7f\xc5\x20\x7c\x5f\x59\x56\xbf" "\xeb\xf6\xc9\xac\x57\x5d\xfa\x95\x7b\xd2\x6b\x6a\xef\xaf\x2a\x78\xff" "\xd7\xb6\xfc\x7b\x46\x49\x07\xf3\xaa\xe6\xcc\x2b\x9b\xd9\x8b\xab\x71" "\xe6\x55\xf4\xfb\x9c\xe1\x1b\x30\x8b\x7e\x9f\x33\xac\xcf\xa6\xb9\xb0" "\x36\xca\xe6\x1f\xeb\xf7\x39\xc3\xf5\x15\xfd\x3e\x67\xab\xfa\x56\xbf" "\xcf\x99\xf7\xfb\x99\x79\xfd\xcf\xcf\xa9\x2f\xfe\x7d\xcb\xd6\x89\xe5" "\x6d\xef\xf5\xef\x3f\xff\xef\xc1\xbb\xe3\xfb\xaa\xcd\xbf\x6f\x99\x2d" "\x5f\xbf\xdc\xff\x0c\x96\x9b\xd5\xe2\x17\x1b\x07\xb6\xde\x3e\xfb\x7b" "\x92\x5f\x08\x96\x1b\x08\x37\xda\xfa\xe7\x35\xb8\x9d\x55\x7b\x47\x6b" "\xab\xbf\x77\x94\x34\xa6\x30\x77\xf2\x91\x37\xfc\x7e\x66\xb0\xde\x4a" "\xf8\x3b\x01\x2d\xd6\xbb\xa4\xc5\xfc\xef\x6d\xea\xd3\xac\xad\xdf\xf3" "\x9c\xc1\xf1\x6e\x41\xed\xff\xfb\x0b\x8e\x77\x0b\x72\xea\xdf\xf1\xaa" "\xa9\xb7\x07\xfe\x79\x9b\xc7\xbb\x6d\xf5\xfb\x41\x9d\xfe\xde\x52\x35" "\x67\x5e\xd9\xe3\xdf\x7b\x61\x9c\x79\x8d\xd4\x8e\x77\xcf\xd5\xf1\x6b" "\xa6\xc7\xcb\xd1\x0e\xd7\x57\x78\xbc\x19\x6d\x5e\xe3\xe8\x34\xdb\x5b" "\xfd\x71\xe3\x88\xb4\xf8\x78\xb3\x75\xf9\xba\xe5\x8e\x4d\x8b\x8f\x37" "\xd9\x72\xf5\xfb\xeb\x89\xc1\x72\x03\xe1\x46\x53\x97\xcb\x82\xe0\xf6" "\xd9\xe3\x4d\xcb\x14\x9a\x8e\x37\x1d\x1c\x9f\xc6\xc2\xe3\xd3\xda\xb4" "\xf8\xf8\x14\x3e\xce\x9f\xd6\x8e\x33\x65\xff\xbd\xaa\xb2\xff\xae\x73" "\xd9\x7f\xff\xb6\xec\xbf\x87\x50\xfe\xfb\xdf\xcb\xfd\x7b\xf4\xde\x5f" "\x9f\xd3\xdf\xfb\xeb\x01\x00\x00\x98\xc6\x75\x8f\xfd\xeb\x15\xf5\xe3" "\xec\xe7\xff\xd9\x35\xe3\x48\x35\x49\x76\x4b\x92\xe4\x82\x60\xb9\xc6" "\xbf\x9f\xb9\xf6\xac\x55\xe3\xb5\x57\x89\xcf\x3d\x6b\x5d\xfd\x5f\xe4" "\x9a\xe9\xeb\x0d\xa3\x39\xf3\x7e\xf6\xf5\x06\xaf\x27\xb5\xec\xff\x9c" "\xbd\x9e\xe4\xf5\x9e\x96\xfd\x9f\xe3\xd7\x7b\x2e\x9a\xe1\xeb\x3d\x97" "\x79\xbd\x07\x00\x00\x7e\xef\x7d\xf2\xfb\x9f\xbf\xb8\x7e\x9c\x5d\xff" "\x67\xef\xce\xca\xae\xff\x9f\x0a\xde\x57\x12\xeb\xf3\x33\x8e\x0c\xc6" "\x45\xef\x1f\x0a\xeb\xb3\x79\xe6\x7d\x7e\x46\xd1\x75\x4d\xd1\xfb\x2d" "\xc3\xf5\xe5\xbd\x1f\x32\x9d\xa6\xbe\xd5\xfb\x2d\xb3\x69\x1d\x95\xdb" "\xbf\xf5\x7c\xc2\xfa\xc9\xee\xdd\x5c\x5f\x7e\xf1\x7b\x17\xdd\x70\xe7" "\x0f\xaf\xdf\x9c\x7b\x7d\xb9\xa8\xdd\xcf\xcf\x68\x7c\xc4\x43\x1d\x7e" "\xfe\x7f\xfd\xbb\x00\x3b\xf9\xfc\xff\xfa\xe5\xfa\x5b\x7c\x6c\x62\xde" "\xe7\xff\xd7\x2f\x37\x93\xcf\xff\x6f\xec\xd3\x2c\xcc\x3b\x13\x6b\xbf" "\xf9\x93\x60\x5c\xb4\xdf\x84\xf5\xf1\xf6\x9b\xf6\x3f\xcf\x3f\x99\x66" "\xbf\x09\xeb\x87\x93\x91\xae\xb6\xeb\xbb\x6f\x7c\xf0\xa4\xbb\xef\xb8" "\xeb\xe9\xdc\xed\xfa\xe4\x76\xb7\xeb\xc6\xc4\x46\x3a\xfc\x7c\xfe\x6e" "\xb6\xeb\x0f\x86\xdb\xf5\x48\xf3\xac\xf2\x3e\x9f\x3f\xc6\x76\xfd\xb1" "\x1e\xd8\xae\xdf\x11\x8c\x8b\xb6\xeb\xb0\xbe\xec\xef\x07\xe1\xfa\x8a" "\xb6\xeb\x56\xf5\xd3\xed\x37\xf9\x9f\x37\xda\x7a\x3e\x61\xfd\x70\x32" "\xb7\xab\xfd\x66\xb7\x8f\x0e\x9d\xfa\xdb\x9b\xd7\xe6\xbf\x5e\x7d\x5e" "\xbb\xfb\x4d\xe3\x23\x9e\xdb\xc1\x7e\x73\x7f\x97\xfb\xcd\x8f\xc2\xfd" "\xa6\xf9\x6d\xb3\x2d\xf7\x9b\x87\x22\xed\x37\x8f\xf7\xc0\x7e\x73\x74" "\x30\x2e\xda\x6f\xc2\xfa\xb2\xbf\x1f\x1c\xd3\xa2\x3e\x99\x66\xbf\x09" "\xeb\x87\x93\xf9\x5d\xfe\x1c\x69\xe7\xb5\x63\xb7\x57\x1e\xcd\xdd\xae" "\x97\xb4\xbb\x5d\x37\x26\x36\xbf\x83\xed\xfa\xe0\xb4\xbb\xed\xfa\x88" "\x60\xb9\xfe\xf9\xcd\xb3\x6a\xb5\x5d\x1f\x9b\xc6\xd9\xae\x4f\x6a\xea" "\xd3\x2c\x6f\xbb\xf6\x73\xb9\x9c\xfe\xcf\x93\xf7\x79\x17\xff\xdc\xd5" "\xcf\xfd\x5a\xf6\xf7\x73\x3f\x00\x00\x00\xa0\xc7\x5c\xba\xf3\x3e\x0d" "\x1f\xa0\x9d\xfd\xfc\x3f\x7b\xed\x20\xfb\xfb\x7f\x3f\xa8\x8d\xb3\xfb" "\xdb\x7f\xff\xff\xcc\x5e\xb7\x6d\xf1\x52\xfe\x16\xd9\xeb\xb6\xed\xcf" "\x63\x66\x3f\x4f\xcc\x9d\xc7\xc9\x9d\xce\x63\x66\xaf\x2b\xe6\xce\xe3" "\xec\x4e\xe7\x31\xb3\xd7\x4f\x73\xe7\xb1\xaa\xd3\x79\xcc\xec\x75\xc4" "\xdc\x79\x9c\xd0\xe9\x3c\x66\xf6\x7a\x63\xee\x3c\x8e\xec\x74\x1e\x33" "\x7b\xdd\x30\x77\x1e\x63\x9d\xce\x63\x66\xaf\x8f\xe6\xce\x63\xbf\x4e" "\xe7\x31\xb3\xd7\xc9\x73\xe7\x71\x59\xa7\xf3\x98\xd9\xcf\x33\x72\xe7" "\x71\x61\xa7\xf3\x98\xd9\xeb\xfa\x7b\xe7\xcd\x63\xef\x4e\xe7\x31\xb3" "\xf7\x1d\xe5\xe6\xb1\x28\x7b\xfd\xbc\xdc\x9f\x63\x7b\xfd\x1c\x00\xf8" "\x43\x75\xfc\x3d\x3f\x6c\x78\xab\x47\x76\xfd\x9f\x9d\x3f\x65\xd7\xff" "\x37\xd6\xc6\xe1\x79\x55\xd9\xe7\xc5\x65\x5f\xa7\x96\x7d\x3d\x5e\xf6" "\xf5\x4b\xd9\xd7\x03\x65\x5f\x9f\x97\x7d\xdd\x5d\xfe\x75\x4a\xb9\xd7" "\xc9\x65\xbf\x6e\x55\xf6\xeb\x0d\x65\x5f\xc7\x95\xfd\xfa\xa2\xeb\x44" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\xe7\xa7\x2f\xec\x77" "\xc9\x89\xf5\xe3\xab\xef\xdf\x73\x7c\xd3\xd2\xe3\x1e\xab\xa6\x49\x92" "\xe6\x2c\x33\xd1\x42\xf6\xb5\x4a\xff\xd8\xd8\x68\x17\xf3\xb8\xe2\xd8" "\x73\x8e\xb8\xec\xda\x4d\x0f\x67\xe3\xc9\x75\x8f\x54\xbb\x68\x04\x00" "\x00\x00\x34\xf9\xc7\xfd\xaf\x5a\x59\x3f\xce\xae\xc3\xb3\x4b\xef\x34" "\x19\x48\x46\xaa\x8f\x56\x87\x93\x9d\x5b\x2e\x9f\xbd\x46\xb0\xb0\x36" "\x1a\x0b\xee\xcf\x7b\x0d\x21\x93\xf5\x0d\xeb\x62\xf5\xed\x2b\xa9\x6f" "\xa5\xa4\xbe\xe1\x4b\x1e\xb1\xfa\xce\x2a\xa9\x6f\x7f\x49\x7d\x67\x97" "\xd4\x77\xa0\xa4\xbe\x83\x25\xf5\x1d\x2a\xa9\xef\x70\x49\x7d\xb7\x2b" "\xa9\xef\x48\x49\x7d\xb7\x2f\xa9\xef\x9c\x92\xfa\xce\x2d\xa9\xef\xbc" "\x92\xfa\xee\x50\x52\xdf\x17\x94\xd4\x77\x7e\x49\x7d\x77\x2c\xa9\xef" "\x0b\x4b\xea\xfb\xa2\x92\xfa\x2e\x28\xa9\xef\x4e\x25\xf5\x7d\x71\x49" "\x7d\xc3\xb3\xa9\x58\x7d\x77\x29\xa9\xef\x4b\x4a\xea\xbb\x6b\x49\x7d" "\x5f\x5a\x52\xdf\xf0\x67\x5b\xb1\xfa\xee\x56\x52\xdf\xdd\x4b\xea\xbb" "\xb0\xa4\xbe\x2f\x2b\xa9\xef\x1e\x25\xf5\xdd\xb3\xa4\xbe\x7b\x95\xd4" "\x77\xef\x92\xfa\xfe\x51\x49\x7d\xff\xb8\xa4\xbe\x2f\x2f\xa9\xef\x2b" "\x4a\xea\xfb\xca\x92\xfa\xbe\xaa\xa4\xbe\xfb\x94\xd4\x77\x51\x49\x7d" "\xf7\x2d\xa9\xef\xab\x4b\xea\xfb\x9a\x92\xfa\xee\x57\x52\xdf\xfd\x4b" "\xea\xbb\xb8\xa4\xbe\xaf\x2d\xa9\xef\x92\x92\xfa\x2e\x2d\xa9\xef\xeb" "\x4a\xea\x7b\x40\x49\x7d\x5f\x5f\x52\xdf\x37\x94\xd4\xf7\x8d\x25\xf5" "\x3d\xb0\xa4\xbe\x63\x05\x7d\x07\xba\xec\xfb\xa6\xe0\xfe\xbe\x86\xbe" "\x7d\x5d\xcf\xf7\xa0\x92\xfa\xbe\xb9\xa4\xbe\x07\x97\xd4\xf7\x90\x92" "\xfa\x1e\x5a\x52\xdf\x65\x25\xf5\x3d\xac\xa4\xbe\xcb\x83\xfb\x1b\xf7" "\x8b\x4a\xd7\x7d\x8f\x9a\x76\xbe\xdd\xf7\x3d\xa6\xc3\xbe\x9b\xda\xec" "\xfb\xb6\x0e\xfb\x16\x4d\x38\xeb\xfb\xf6\xe0\xfe\x4a\xd1\x7c\xdb\xec" "\x7b\x62\x49\x7d\x4f\x2e\xa9\xef\x8a\x92\xfa\x9e\xda\x61\xdf\x81\xf0" "\x07\x6b\x39\x7d\xc7\x83\xfb\xab\x0d\x7d\xab\x4d\xdf\x2f\xda\xed\xfb" "\x40\xf0\xb8\x62\x7d\x7f\xfb\x7e\x49\x7d\x7f\x50\x52\xdf\x1f\x96\xd4" "\xf7\x47\x25\xf5\xfd\x71\x49\x7d\xff\xb3\xa4\xbe\x3f\x29\xa9\xef\x4f" "\x4b\xea\xfb\x60\x49\x7d\x7f\x56\x52\xdf\x87\x4a\xea\xfb\x70\x49\x7d" "\x7f\x5e\x52\xdf\x5f\x94\xd4\x77\x73\x49\x7d\x1f\x29\xa9\xef\xa3\x25" "\xf5\xfd\x65\x50\xd8\x17\xa9\xef\x63\x25\xf5\x7d\xbc\xa4\xbe\xbf\x2a" "\xa9\xef\x13\x25\xf5\x7d\xb2\xa4\xbe\xbf\x2e\xa9\xef\x6f\x4a\xea\xfb" "\x54\x49\x7d\x7f\x5b\x52\xdf\xa7\x4b\xea\xfb\x4c\x49\x7d\x7f\x57\x52" "\xdf\x89\xc8\x7d\x01\x00\x66\xea\xa6\x8f\x3f\xd2\xf0\x92\x6d\xf6\xfe" "\xff\xec\x7d\xdd\x69\x32\x9a\x8c\x54\x5f\xbb\xf5\x7c\xe6\xc8\x60\xf9" "\xac\x2e\xef\x75\xc2\xcb\xda\x7c\x3d\xef\xe8\x92\xfa\xfe\x49\x49\x7d" "\xdf\x51\x52\xdf\xa2\xd7\x4b\x47\x83\xbe\x45\xaf\x97\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\x3c\x5f\x3c\xf0\xef\xd5\x9f\xd7" "\x8f\xaf\xbe\x7f\xcf\xf1\x4d\x4b\x8f\x7b\x6c\x28\x4d\x92\x34\x67\x99" "\x89\x16\xb2\xaf\x55\xfa\xc7\xc6\x46\xbb\x98\xc7\x17\xbf\x77\xd1\x0d" "\x77\xfe\xf0\xfa\xcd\xd9\x78\x72\xdd\x23\xd5\x2e\x1a\x01\x00\x00\x00" "\x4d\xfe\xdb\xc8\x05\x1f\xab\x1f\x67\xd7\xe1\xd9\xa5\x77\x9a\x0c\x24" "\x23\xd5\x4a\x52\x49\x76\xda\x32\x1e\x7f\xb6\x74\x2c\x49\x9e\xbd\xee" "\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\x80\xdf\x67\x1f\xbb\xf4\x98" "\x81\xfa\x71\xf6\xf9\xff\xc3\xcf\xf1\xe7\xff\xdf\x7e\xd4\xad\xf7\x2e" "\x5b\xb8\xc7\xfb\xb2\xb1\xcf\xff\x07\x00\x00\x80\x78\x9e\xf8\xc6\xbf" "\x5c\x51\x3f\xce\xae\xc3\xfb\x6b\xe3\xa9\xcf\xff\x7f\x6d\x32\x2b\xdd" "\xa9\x61\xb9\xec\xb5\x81\xe5\x41\xbf\xbc\xba\x23\xdb\xac\x3b\xa6\xa0" "\xae\xaf\x76\xfb\xb6\x36\xeb\xde\xde\xe6\x7a\x4f\x6c\xb3\xdf\xc9\x6d" "\xf6\x7b\x47\x9b\xfd\x4e\x6d\xb3\x6e\xbc\xa0\xee\xfc\xda\x8a\x1f\xc8" "\x7b\xd1\x06\x00\x00\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\x19\x79\xf9\xe2" "\x17\xdd\x58\x3f\xce\x3e\xff\xbf\x5a\x79\x6e\x3f\xff\xff\x8a\x63\x77" "\x5e\x3b\x76\x7b\xe5\xd1\x6c\xec\xf3\xff\x01\x00\x00\x20\x9e\xcd\x7f" "\x73\xda\x4b\xeb\xc7\xd9\x75\x78\xe3\xe7\xff\x7f\x32\xe9\x4f\x77\x4f" "\x1e\xad\x26\x49\xa5\xa0\xdf\x40\x76\x9b\xee\x9e\x9c\x94\x26\x49\x7f" "\xdd\xd7\x5a\x2d\xfb\xc1\x9c\x17\x19\x26\xd7\x77\x6a\x5f\xe3\x32\xfd" "\x2d\xea\xc6\xea\xea\x3f\x18\xac\xa3\xbf\x45\xef\xfa\xfa\x47\xc2\xfa" "\xbe\xe9\xeb\x3f\x5f\x09\xea\x5b\x3c\xa0\xfa\xfa\x13\xfa\x1a\x5f\x43" "\xe9\x6f\xf1\x7a\x46\x7d\xfd\xee\xe1\x7c\x06\xa6\xaf\xaf\xce\x4a\x92" "\xfa\x29\xf7\x0f\x16\xf7\xaf\xcf\xb0\x7f\x68\xfa\xfa\x81\x6a\xd0\x7f" "\x78\xfa\xfa\x0f\x86\xfd\x47\xa6\xaf\xbf\x34\xec\x3f\x67\xfa\xfa\x1f" "\x85\xfd\xe7\x4e\x5f\x7f\x44\xb0\xfd\xf5\xcf\xcf\xaf\x9f\xdc\x5e\xf7" "\xeb\x6b\x9c\x4f\xa5\xc5\x2b\x60\x2b\xb3\xfa\x05\x53\xb7\x4b\xea\x96" "\xbf\xa2\x12\x2e\xdf\xbc\x41\x6d\x7d\x4a\x83\x2f\x4d\x2e\x7f\x6c\xd3" "\xfe\xd2\xbc\x81\x65\x91\x8e\x55\x9a\x97\x5f\x9b\x26\x49\xb5\x61\xf9" "\xe6\x0d\x2e\x7b\x44\xa3\xc1\xed\xe4\xf2\x5f\x48\x1a\x97\x1f\xa8\x34" "\x07\x9c\x06\x8f\xa3\x7e\x7f\x3f\x31\x58\xff\x40\x8b\x27\x28\x5b\x7e" "\x41\x70\x3b\xf9\x7c\x1d\x1c\x3c\xfe\xbe\x4a\xda\xf4\x04\x64\x8f\x3b" "\x7b\x7e\xeb\xd7\xd7\x57\x6d\xae\x1f\xad\xeb\x7f\x6c\x50\x3f\xab\xfe" "\x85\xcb\xa0\x1e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd6\x4e\x1b\xbf\x62\x6e" "\xfd\xf8\xea\xfb\xf7\x1c\xdf\xb4\xf4\xb8\xc7\xe6\xa4\x49\x92\xe6\x2c" "\x33\xd1\x42\xf6\xb5\x4a\xff\xd8\xd8\x68\x17\xf3\x18\xf8\xcc\x77\xdf" "\x72\xd0\x9d\x87\x7c\x3c\x1b\x4f\xae\x7b\xa4\xda\x45\x23\x00\x00\x00" "\xa0\xc9\x6b\xff\x65\xf9\x23\xf5\xe3\xec\x3a\xbc\xaf\x36\x4e\x93\x81" "\x64\xa4\x5a\x4d\xaa\xc9\x4b\x6b\xe3\x46\x69\xed\xf5\x80\xe7\x6a\xbe" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xdb\xca\x0e\x1f\x9c\xb8\xa1\x7e\x7c\xf5\xfd" "\x7b\x8e\x6f\x5a\x7a\xdc\x63\x83\x69\x92\xa4\x39\xcb\x4c\xb4\x90\x7d" "\xad\xd2\x3f\x36\x36\xda\xc5\x3c\x26\x6e\x3b\x68\x78\xce\x53\xfd\x97" "\x64\xe3\xc9\x75\x8f\x54\xbb\x68\x04\x00\x00\x00\x34\x39\xea\xe0\x8b" "\x9e\xa8\x1f\x67\xd7\xe1\x7d\xb5\x71\x9a\x0c\x24\x23\xd5\xa1\x64\x28" "\x79\xe1\xd4\xd7\xeb\xae\xf5\x27\xf5\x05\xfd\xd2\x24\xff\x75\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\xe7\xb3\x9d\x5f\xf0\xd0\x99\xf5\xe3\xab\xef\xdf" "\x73\x7c\xd3\xd2\xe3\x1e\x1b\x48\x93\x24\xcd\x59\x66\xa2\x85\xec\x6b" "\x95\xfe\xb1\xb1\xd1\x2e\xe6\xf1\x81\x35\x77\xdc\x74\xe1\xf1\xcb\xbf" "\x9d\x8d\x27\xd7\x3d\x52\xed\xa2\x11\x00\x00\x00\xd0\xe4\x17\xbf\xf9" "\xab\xf3\xea\xc7\xd9\x75\x78\x5f\x6d\x9c\x26\x03\xc9\x48\x75\x20\x19" "\x48\x76\xac\x8d\x9b\x6d\xb9\xfe\x9f\xfb\x5c\xcc\x16\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xb6\x8d\xff\x72\xc9\xdd\x07\xd4\x8f\xb3\xcf" "\xff\x1f\x79\x8e\x3f\xff\xff\xee\x1b\x1f\x3c\xe9\xee\x3b\xee\x7a\x3a" "\x1b\xfb\xfc\x7f\x00\x00\x00\x88\xe7\xca\x59\x87\xfc\xaf\xfa\x71\x76" "\x1d\xde\x5f\x1b\x4f\x7d\xfe\xff\xea\x64\x76\xb2\x4b\xed\x9e\xe5\x0d" "\xcb\x57\xd3\xca\x96\xdb\xb1\x9c\xd7\x05\x9e\x5d\xee\xc8\x86\xe5\x86" "\xda\x5e\xee\xa8\x86\xe5\x86\xdb\x5e\xee\xe8\x86\xe5\xe6\xb7\xbd\xdc" "\x31\x0d\xcb\xcd\x69\x7b\xb9\xb7\x35\x2c\x37\xd8\xf6\x72\x6f\x6f\x58" "\x6e\xa0\xed\xe5\xfe\xa4\x61\xb9\x91\xb6\x97\x3b\xb1\x61\xb9\xb4\xed" "\xe5\x4e\x6e\x58\xae\xaf\xed\xe5\xde\xd1\xb0\xdc\xdc\xb6\x97\x5b\x91" "\x34\x4e\xb4\xdd\xe5\x4e\x6d\x58\xac\xd2\xf6\x72\xe3\x8d\xeb\x4b\xa6" "\x5e\x7c\x1a\xa8\x2d\x37\x90\xf5\x9b\x3b\x75\xbb\x75\xb9\xd1\xe6\xe5" "\x46\x93\x24\x59\x50\x5b\x6e\x41\xed\xde\xfe\xb9\x09\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x3c\xef\x7d\x72\xf3\xdf\x6e\xae\x1f\x5f\x7d\xff\x9e\xe3" "\x9b\x96\x1e\xf7\x58\x9a\x26\x49\x9a\xb3\xcc\x44\x0b\xd9\xd7\x2a\xfd" "\x63\x63\xa3\x5d\xcc\xe3\x2b\x67\x3e\x34\x32\xfb\xc0\xbb\xae\xcb\xc6" "\x93\xeb\x1e\xa9\x76\xd1\x08\x00\x00\x00\x68\xd2\xff\xd4\xca\x3d\xea" "\xc7\xd9\x75\x78\x76\xe9\x9d\x26\x03\xc9\x48\xf5\x7d\xc9\x9c\xe4\x25" "\x5b\xae\xfb\x93\xb9\x8d\xcb\x57\x6a\xb7\xaf\xd8\x78\xd5\xf1\x4b\xbe" "\xff\xf8\x92\x24\x59\xf4\xc2\x7b\x77\xcd\xbf\x70\xdf\x3c\x7e\xf8\x69" "\x07\x24\xdf\xf8\xec\xe5\xeb\xb2\x7f\xa7\xee\x49\x92\x60\x99\xbe\xa9" "\x9b\xb9\xb5\xf5\xa6\x73\x5b\x7e\x39\xf9\xf0\xc6\x0b\x7e\x79\xeb\x6b" "\x6e\x79\x2a\x49\x16\xed\x58\xd9\xa5\x68\xbd\xcd\xff\x06\xd2\xb1\x89" "\x97\x8d\xde\x73\xcd\xaf\x3f\xf5\x78\xa5\x71\xfd\x7d\x39\x8f\xfb\xe9" "\xdd\xf7\xba\xe7\xc8\x5f\xbc\xf7\xc6\xc9\xf5\x4f\xf7\xb8\xdf\xf2\xa1" "\x9f\xbd\xfb\x80\x16\xff\x36\xaf\xff\xdc\xb9\x6f\xba\xe5\x94\x87\xff" "\xf5\xf0\xc6\xf5\x57\x82\xf5\x67\x6b\xda\xff\xfe\x45\x9b\x7f\xf7\xb5" "\xe3\xef\x9e\x5a\xff\x40\x32\x50\xbb\xff\xc5\xd5\xae\xd6\x3f\x38\x36" "\x31\xf8\x17\x67\x1e\xfa\xcc\x11\x9b\xf6\x6d\x5c\x7f\x35\xe7\xf1\x2f" "\x7d\xcf\xab\x3e\xf1\x83\xe3\x4e\xd8\x63\x72\xfd\x8f\xbd\x74\x68\xeb" "\xfa\xf7\xea\xee\xf1\x0f\x8e\x4d\xec\xf8\xba\x13\xf7\x38\x6f\xa2\xef" "\x1d\x8d\xeb\x9f\x95\xb3\xfe\x1b\xbe\xfe\xf8\xe2\x53\xbe\xfb\xd3\xef" "\x84\x8f\x7f\x28\x68\x5c\xbf\xc5\x4d\x9f\xff\xf2\x5f\x3d\xf9\xe1\xaf" "\x2e\x3e\xff\xbd\x8d\xeb\xef\xcf\xc9\x7f\x62\x61\xdf\xe8\xd1\xff\x76" "\xf3\x2e\xd9\xfa\x17\xd4\xee\xdf\x7b\x61\xfe\xfa\xeb\xff\x7d\x76\x4b" "\xce\xd6\x3f\x7a\xcd\x9a\xfd\xce\xd8\x79\xf7\x93\x1a\xd7\x3f\x3b\xe7" "\xf1\xaf\xb8\xef\x77\x5f\xfa\xf4\xc9\x8f\xdc\x11\x3e\xfe\x55\xd3\x3c" "\xfe\xc6\xf5\x87\x8f\xff\xfa\x6f\x9d\x75\xce\xa7\x1e\x1f\x7c\x73\xf8" "\x25\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xff\xb3\x77\x2f\xa1\x71\x55\x71" "\x1c\x80\xcf\xcd\x9d\x99\x4c\xa3\x53\x62\x51\xa8\xef\x28\x9a\x85\xc5" "\x3c\x6a\x8d\x8d\x15\x19\x11\x03\xea\x36\x88\x22\x54\xa3\x9d\x94\x98" "\x49\x62\x33\x09\x36\x53\xd1\xf8\xc0\x22\x2a\x12\x12\x50\x57\xba\x30" "\x1b\x8b\x2b\x71\xe1\xca\x85\x42\x15\xa4\x2e\x14\x84\x42\x16\x2e\x05" "\x77\xa9\x28\x88\x46\xa6\x73\x6f\x72\x35\x89\x85\x51\x23\x85\xef\x5b" "\xdc\x73\xfe\x9c\xdf\x79\x84\xc0\xc0\xb9\x9b\x0b\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0d\xb3\x0f\xff\xf0\x58\xb6\x5e" "\x5c\xe9\xae\xcc\x0f\x0e\xaf\xb6\x45\x21\x44\xdb\xcc\x59\xdb\x42\x3a" "\x16\x17\xca\xe5\xae\x16\xce\x71\xec\x9a\xc1\xa1\xd9\x23\x7d\x47\xd2" "\xba\xb1\x77\x29\xd7\xc2\x42\x00\x00\x00\xc0\x26\xaf\x5e\xba\xfc\x45" "\xb6\x4e\xef\xe1\x71\x52\x47\xa1\x18\x4a\xb9\x5b\x42\x21\x74\x9c\xbf" "\xf7\xdf\xd4\x75\x66\xe9\x97\xe5\x73\x71\xe8\x4c\xc6\x93\x36\x57\x9d" "\xaa\xcd\xec\x1b\x9d\x9a\x9d\x6c\x5e\xe1\xd3\xfc\xbb\xdf\x4e\x1d\x5b" "\x3e\xb7\xeb\xde\x34\xdf\x9e\xb4\xc5\xd1\xb1\x6a\xa5\xe7\xc9\xa9\x6a" "\x72\xe3\xcf\x27\xf9\x67\x3a\xef\xf9\xf8\xf1\x1f\xbf\xbb\x3f\xcd\xb7" "\xa5\xeb\x37\xf2\x7d\x1b\xb9\x4f\xf7\xfd\x7e\xd7\x3b\xaf\x8d\x3f\x94" "\xe6\x0a\xd9\x75\xf7\x6f\xe4\xba\x96\xaa\x07\xc6\xaf\xbe\xf1\xd1\x2d" "\x73\xb7\x6d\xe4\x1e\xf8\xe9\xe7\x37\x4f\x0f\xd4\x9f\x4b\x73\xf9\x6c" "\xae\x7f\x23\xb7\xeb\xe5\x89\xa1\xdf\x1e\x9c\xef\x4f\xcf\x15\x67\x73" "\x99\xf3\x5d\x71\xe7\x23\x37\x1f\x5f\x6b\x3b\xbc\x7e\xfe\xa4\xed\x48" "\xd6\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb8\xd8\x0c\xd5\xee\x7b\x3f\x5b" "\x2f\xae\x74\x57\xe6\x07\x87\x57\x43\x1c\x42\xb4\xcd\x9c\xb5\x2d\xa4" "\x63\x71\xa1\x5c\xee\x6a\xe1\x1c\x37\xbc\xd5\xf1\xc4\xaf\xa7\x26\xdf" "\x4e\xeb\xc6\xde\xa5\x5c\x0b\x0b\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\x40\x0b\x3e\xbc\xfb\xcb\xaf\xb3\xf5\xfa\xf7\xff" "\xa3\x9d\xfd\xfe\xff\xc9\x95\x85\x0f\xce\x5e\x59\xef\x4d\x6b\xdf\xff" "\x07\x00\x00\x80\x7f\xcf\x57\x97\x5f\x75\x7d\xb6\x4e\xef\xe1\xe9\xd5" "\x3b\x0a\xc5\x50\xca\xf5\x87\xf6\xa8\xf0\xa7\x79\xc5\xe4\x3d\x40\x31" "\xa9\xe3\xce\x66\x7b\xdd\xee\x90\xef\x39\xf9\xd9\x99\x68\xa9\xf9\xf6" "\xa0\x23\xba\xec\x6f\xe7\xe5\x92\x79\xbd\x33\x13\x4f\xf7\xd6\xe6\xea" "\xb7\x8e\x4d\x8c\x1c\xad\x1c\xad\x4c\x1e\xe8\x1b\xb8\xa3\x6f\x60\x60" "\xa0\xff\x60\xef\xe8\x58\xb5\xd2\xd7\x7c\x86\xf6\x0b\xac\x97\x4f\xd6" "\xab\xcd\xd5\xc7\x47\xaa\xd5\xca\x74\xad\x59\xff\xf5\xfc\x7b\x93\x79" "\x7b\x93\xba\x90\xcc\x3b\xdc\x13\xf2\x8d\xf6\x85\xe4\xfc\x7b\x2e\xb0" "\x5f\xfb\xa6\xfd\xfe\xbb\xce\xb6\xff\x44\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x47" "\x0c\x7d\x5e\x3e\x9b\xad\x17\x57\xba\x2b\xf3\x83\xc3\xab\x71\x14\x42" "\xb4\xcd\x9c\xb5\x2d\xa4\x63\x71\xa1\x5c\xee\x6a\xe1\x1c\xaf\x9c\x58" "\x98\xf8\xe4\xf4\x37\x4b\x69\xdd\xd8\xbb\x94\x6b\x61\x21\x00\x00\x00" "\x60\x93\x8f\x16\x5e\x7c\x3d\x5b\xa7\xf7\xf0\x38\xa9\xa3\x50\x0c\xa5" "\x5c\x47\xc8\x87\x4b\xce\xdf\xfb\xdf\x7b\xea\xe0\xa1\xef\x4f\xed\xb9" "\x36\xdf\x99\x04\x0a\x85\x70\x7c\x64\x66\x66\x7a\x7f\xf3\x99\xe6\x6e" "\x3f\xf4\xd2\x89\x67\xdf\xd8\xfd\xfc\xa6\x5c\x7f\xf3\xb9\xb3\x7f\x25" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xc0\x3f\x57\x9b\xab\x8f\x8f\x54\xab\x95\x69\x1d" "\x1d\x1d\x9d\xf5\xce\xff\xfd\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\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\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" "\x07\x3b\x70\x20\x00\x00\x00\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x5e\xfd\x85\x48\x55\xbe\x71\x00\x7f\xce" "\xcc\xfc\xdc\xd9\x1d\xc7\xdd\x15\x2f\xfc\x55\x84\x21\xa1\x37\x91\x17" "\x15\xdb\x45\xb4\xf9\x6f\xcd\x3f\x25\x81\x10\x54\x20\xb5\x5a\x44\x4a" "\x12\x92\x94\xd2\xb6\xb1\xb5\x60\x81\x46\x91\x74\x23\x41\x24\xba\x50" "\x17\x11\x68\x17\x91\x06\x1b\xb2\x52\xa0\x74\x91\x59\x09\x11\x11\x19" "\xe2\x4d\x85\x25\xc6\xb4\xe7\xc8\x3a\xbb\x87\x89\xb3\x1b\x41\x7c\x3e" "\xb0\xfb\xf2\xbe\xe7\x7d\xbf\xf3\xcc\x99\x67\xce\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xb4\x59\x5d\xcb\xce\x4d\x9c\xd7\x2b\xf5\x4a\x63\x1c" "\x1d\x7a\xea\x97\xcd\x9f\xed\x39\xf8\xe5\xe3\x1b\x3f\x1f\xb8\xe3\xd7" "\xf3\x9b\x4f\x1f\x3e\xf3\xdb\xa6\xbe\x47\x0e\x9c\x1c\x7c\x75\xdb\x60" "\xfb\x6d\x23\x3d\x23\x8f\xee\x1f\x5a\xf6\xce\x07\xef\x3e\xfd\xd0\xdc" "\xc1\xf7\xbf\x6f\xf9\x42\x3b\xc6\x87\x79\xe9\xb4\x1a\x91\x9c\x4c\x22" "\x7e\xb8\xb4\xa8\xeb\xbd\x57\x36\xcc\x6f\xac\x25\x11\xd1\x96\x54\x06" "\xa2\xbb\xfb\xf9\xd2\xd1\xee\xa4\x29\x61\xc1\xc5\x88\xe8\x4f\xf7\xd5" "\x2b\xd7\xff\xf5\xff\xec\xd1\xf1\x8b\xbb\x3e\x7c\xe1\xb1\xc6\x38\xb0" "\xbb\xed\xaa\x43\x9d\x4d\x21\xcd\xef\x2b\x6a\xe5\xac\x9e\xf1\xb1\x7a" "\x75\xbd\xfc\xb7\x34\xfa\xaf\x16\x11\x7b\xd2\xf9\xaa\x9b\xc6\x36\x7d" "\x3c\xbf\xef\xc2\xee\x33\xab\x2e\xdd\x3a\xb4\xfd\xe7\x28\x65\x3b\x7b" "\xa3\xd1\x49\x3b\xd3\xbe\x8a\xde\x39\x1b\x67\xba\x8e\xcc\xd9\xaf\x4a" "\xd1\xe8\xc2\x9e\xb4\x0f\x93\x69\xd4\xb5\x3e\x22\x3a\x26\xcc\x7b\x5a" "\xd4\xb1\xf8\x6f\xd6\xbb\x30\x67\x7e\x4d\xd3\x7a\xbd\x45\x4e\x76\x7d" "\x51\x8b\xfd\xcd\x5f\xfe\x4c\xb9\x69\xac\xb6\x78\xbd\xe9\xca\xab\xa3" "\xe8\xbe\x56\xe6\xcc\x50\x4e\x9e\x56\x75\x66\xcf\xcb\xb7\xd3\x71\x5e" "\x81\xfc\xd9\xe9\x5f\xab\x5e\x98\x8e\xc6\xe7\xdf\x1e\x11\x77\xa5\xf3" "\xac\x0f\x3a\xd3\x7b\xd8\x5e\x59\xd0\x74\x62\x76\xac\x8d\x75\x71\x4f" "\x2c\x8f\x15\xb1\x32\xfa\x62\x55\xac\x8e\xbb\x63\x4d\xac\x8f\x8e\x49" "\x7b\xeb\x39\x7b\xbb\x93\xf5\x31\x7b\xd2\xee\x24\xba\x92\x72\x5a\x53" "\x39\x89\x52\x12\x95\x2b\xb7\x79\x79\x12\x31\x6b\xc2\xde\xea\x95\x33" "\xa5\xf8\xdf\x84\xf5\xc6\xd7\xbb\x6d\x8a\xf7\x99\xad\x67\x81\xc3\xe9" "\x73\xa0\x96\xae\xd5\x92\xb9\x93\xce\x5c\x9e\x42\x76\xed\xa5\xaf\xf7" "\x1e\x3a\xfd\xff\x67\x6e\xee\x9a\xea\xa6\x36\x32\x77\x26\x69\x7e\x52" "\x28\xff\x93\x2d\x3f\xd5\xdb\xee\x1c\xdb\x97\x9b\xdf\x9f\xe5\x97\x0a" "\xe5\x6f\xbb\xee\xf6\x95\xdb\xfb\x97\xf4\xe7\xe6\x3f\x99\xe5\x97\x0b" "\xe5\xbf\xf8\xec\xde\x2d\x47\x3e\x3d\xf5\x5a\x6e\xfe\x70\x96\x5f\x29" "\x94\xff\xf2\x7d\xdb\xd6\x0c\xbf\x3e\x70\x2e\xef\xb9\x9b\x2c\xce\xf2" "\xab\xc5\xea\x7f\x62\xf4\xe0\xce\x0d\xab\xbf\xc8\xad\xff\xfe\x2c\xbf" "\xbd\x50\xfe\xe5\x23\x4b\x6b\x9d\x17\x67\x0d\xe5\xe6\xaf\xcd\xf2\x3b" "\x0a\xe5\x7f\xf4\xed\xae\xb7\x8e\x7f\xb7\xff\x7c\x6e\xfe\x92\x2c\xbf" "\x56\x28\xff\xd8\xba\xc3\xa7\xfa\x16\xde\xf8\x5c\x6e\xfe\x2d\x59\x7e" "\xbd\x50\xfe\x89\x03\x3f\x3e\x70\x62\x74\xec\x8f\xdc\xfc\x07\xb3\xfc" "\xce\x42\xf9\xd5\x43\xdf\xdc\xbb\xf4\xf8\x8a\x37\x73\xf3\x7b\xb3\xfc" "\xae\x42\xf9\x37\xbc\xd1\xf1\xf0\xef\x23\x5b\xf7\xe5\xfd\xae\x26\x3b" "\xb2\xfc\x79\x05\xfb\xff\xda\xad\xbd\xc7\xca\x17\x72\xeb\xef\x99\xa9" "\x5f\x52\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xdf\xf6\x67\x00\x00" "\x00\xff\xff\xe4\xa6\x8e\x54", 26425)); NONFAILING(syz_mount_image( /*fs=*/0x20000000, /*dir=*/0x200000c0, /*flags=MS_SILENT*/ 0x8000, /*opts=*/0x20000180, /*chdir=*/1, /*size=*/0x6739, /*img=*/0x200067c0)); break; case 1: // syz_mount_image$fuse arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x3000009 (8 bytes) // opts: nil // chdir: int8 = 0x1 (1 bytes) // size: const = 0x0 (8 bytes) // img: nil // ] // returns fd_dir NONFAILING(memcpy((void*)0x200000c0, "./bus\000", 6)); NONFAILING(syz_mount_image( /*fs=*/0, /*dir=*/0x200000c0, /*flags=MS_LAZYTIME|MS_STRICTATIME|MS_RDONLY|MS_NOEXEC*/ 0x3000009, /*opts=*/0, /*chdir=*/1, /*size=*/0, /*img=*/0)); break; case 2: // mount$overlay arguments: [ // src: const = 0x0 (8 bytes) // dst: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // type: ptr[in, buffer] { // buffer: {6f 76 65 72 6c 61 79 00} (length 0x8) // } // flags: mount_flags = 0x8 (8 bytes) // opts: ptr[in, fs_options[overlay_options]] { // fs_options[overlay_options] { // elems: array[fs_opt_elem[overlay_options]] { // fs_opt_elem[overlay_options] { // elem: union overlay_options { // upperdir: fs_opt["upperdir", stringnoz[filename]] { // name: buffer: {75 70 70 65 72 64 69 72} (length 0x8) // eq: const = 0x3d (1 bytes) // val: buffer: {2e 2f 66 69 6c 65 30} (length 0x7) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // lowerdir: fs_opt["lowerdir", stringnoz[filename]] { // name: buffer: {6c 6f 77 65 72 64 69 72} (length 0x8) // eq: const = 0x3d (1 bytes) // val: buffer: {2e} (length 0x1) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // workdir: fs_opt["workdir", stringnoz[filename]] { // name: buffer: {77 6f 72 6b 64 69 72} (length 0x7) // eq: const = 0x3d (1 bytes) // val: buffer: {2e 2f 62 75 73} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[overlay_options] { // elem: union overlay_options { // metacopy_on: buffer: {6d 65 74 61 63 6f 70 79 3d 6f 6e} // (length 0xb) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // ] NONFAILING(memcpy((void*)0x20000100, "./file0\000", 8)); NONFAILING(memcpy((void*)0x20000b80, "overlay\000", 8)); NONFAILING(memcpy((void*)0x20000180, "upperdir", 8)); NONFAILING(*(uint8_t*)0x20000188 = 0x3d); NONFAILING(memcpy((void*)0x20000189, "./file0", 7)); NONFAILING(*(uint8_t*)0x20000190 = 0x2c); NONFAILING(memcpy((void*)0x20000191, "lowerdir", 8)); NONFAILING(*(uint8_t*)0x20000199 = 0x3d); NONFAILING(memset((void*)0x2000019a, 46, 1)); NONFAILING(*(uint8_t*)0x2000019b = 0x2c); NONFAILING(memcpy((void*)0x2000019c, "workdir", 7)); NONFAILING(*(uint8_t*)0x200001a3 = 0x3d); NONFAILING(memcpy((void*)0x200001a4, "./bus", 5)); NONFAILING(*(uint8_t*)0x200001a9 = 0x2c); NONFAILING(memcpy((void*)0x200001aa, "metacopy=on", 11)); NONFAILING(*(uint8_t*)0x200001b5 = 0x2c); NONFAILING(*(uint8_t*)0x200001b6 = 0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000100ul, /*type=*/0x20000b80ul, /*flags=MS_NOEXEC*/ 8ul, /*opts=*/0x20000180ul); break; case 3: // linkat arguments: [ // oldfd: fd_dir (resource) // old: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 31 00} (length 0xe) // } // newfd: fd_dir (resource) // new: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 32 00} (length 0xe) // } // flags: linkat_flags = 0x1000 (8 bytes) // ] NONFAILING(memcpy((void*)0x200001c0, "./file0/file1\000", 14)); NONFAILING(memcpy((void*)0x200003c0, "./file0/file2\000", 14)); syscall(__NR_linkat, /*oldfd=*/0xffffff9c, /*old=*/0x200001c0ul, /*newfd=*/0xffffff9c, /*new=*/0x200003c0ul, /*flags=AT_EMPTY_PATH*/ 0x1000ul); break; case 4: // unlinkat arguments: [ // fd: fd_dir (resource) // path: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 2f 66 69 6c 65 32 00} (length 0xe) // } // flags: unlinkat_flags = 0x0 (8 bytes) // ] NONFAILING(memcpy((void*)0x20000140, "./file0/file2\000", 14)); syscall(__NR_unlinkat, /*fd=*/0xffffff9c, /*path=*/0x20000140ul, /*flags=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-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=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; install_segv_handler(); loop(); return 0; }