// https://syzkaller.appspot.com/bug?id=6aa3f212fbd814aa1ff554012252888813baa7e0 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% 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); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: // syz_mount_image$bcachefs arguments: [ // fs: ptr[in, buffer] { // buffer: {62 63 61 63 68 65 66 73 00} (length 0x9) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 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 ff ff ff ff 00 00 00 // 00 2c 72 5d 92 6c 18 17 00 00 73 74 72 75 63 74 5f 61 6c 6c 79 // 0c 6f 63 2c 00 5b 7a b6 75 b5 8a 6f 9a db 72 8c bb ca b5 61 4e // c3 6b 23 fb 60 2f 6c 53 ce 38 12 1a ae 73 e4 a9 b5 72 55 d2 8c // d6 41 f8 ba d4 cd ad 47 38 cb 80 42 0e 85 56 21 31 14 f4 cf a6 // 7a 78 01 73 97 b3 9c 74 db cf e5 59 9a 64 99 99 8a ff 24 74 cb // 8d 86 b8 ae} (length 0x7c) // } // } // } // chdir: int8 = 0x21 (1 bytes) // size: len = 0x6765 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6765) // } // ] // returns fd_dir memcpy((void*)0x200000000000, "bcachefs\000", 9); memcpy((void*)0x200000000300, "./file2\000", 8); memcpy((void*)0x200000000200, "\x63\x6f\x6d\x70\x72\x65\x73\x73\xff\xff\xff\xff\x00\x00\x00\x00" "\x2c\x72\x5d\x92\x6c\x18\x17\x00\x00\x73\x74\x72\x75\x63\x74\x5f" "\x61\x6c\x6c\x79\x0c\x6f\x63\x2c\x00\x5b\x7a\xb6\x75\xb5\x8a\x6f" "\x9a\xdb\x72\x8c\xbb\xca\xb5\x61\x4e\xc3\x6b\x23\xfb\x60\x2f\x6c" "\x53\xce\x38\x12\x1a\xae\x73\xe4\xa9\xb5\x72\x55\xd2\x8c\xd6\x41" "\xf8\xba\xd4\xcd\xad\x47\x38\xcb\x80\x42\x0e\x85\x56\x21\x31\x14" "\xf4\xcf\xa6\x7a\x78\x01\x73\x97\xb3\x9c\x74\xdb\xcf\xe5\x59\x9a" "\x64\x99\x99\x8a\xff\x24\x74\xcb\x8d\x86\xb8\xae", 124); memcpy( (void*)0x20000000cf00, "\x78\x9c\xec\xdd\x0b\x94\x5c\x75\x9d\x27\xf0\x7b\xbb\x2a\x9d\xee\x34" "\x4d\x12\x0c\x1a\x04\xb1\x21\xf2\x98\xf1\x41\x50\x88\x89\xa8\xb4\x08" "\x04\xc2\x43\x44\x70\x60\x61\x0c\x81\x34\x1a\x09\x01\xf2\x10\x86\x87" "\x64\x70\x10\x14\x66\x04\x81\x11\x9d\x51\x86\xb3\xa3\x1c\x64\xd7\x39" "\x7b\x5c\x76\x40\x77\x1d\xc5\x9d\x28\xc2\xc1\x3d\xa2\xf3\x60\x44\xf1" "\x35\x8a\xa0\x01\x41\x50\x04\x7a\x4f\xa7\xeb\x86\xaa\x7f\xd5\xed\x5b" "\x55\xfd\xbf\xa4\xd0\xcf\xe7\x1c\xd2\xfc\xab\x7f\xf7\x77\xff\xf5\xed" "\xfb\xbf\x7d\xab\xba\xba\x2b\x01\x00\x00\xe0\x0f\xc2\xa6\x4b\xd7\x3d" "\x71\xfa\x3d\x57\xdd\xfc\xef\xef\x3d\xe5\x9b\x1b\xdf\xf4\xe4\xe6\x64" "\xa8\xb2\xe5\xf6\x81\xda\xe7\x07\xb2\xff\x39\x6f\x9b\x4d\x91\x12\x1d" "\xfb\xe8\xb7\xfb\xeb\xc7\xc3\xd5\xe1\x6a\xd2\xe2\xb8\x38\xfd\xbe\xdb" "\xbe\xfb\x9b\xb1\xa5\xa7\xdd\xf4\xad\x4b\x3e\x7a\xce\x25\x83\x8b\x6e" "\x59\x7c\xcb\xbb\x6f\xb8\xf4\xad\x9f\xb9\xf5\x73\xe7\xfe\xe9\x0e\x97" "\x7c\xfe\x27\x45\xfb\xc9\x0e\xa3\x79\xcf\x8d\xd3\x6f\xa5\x49\xf2\xd3" "\x67\xf6\x9a\xf3\x0f\x7f\x79\xfc\xfc\x89\xdb\xd2\x24\x49\x66\xa6\xd5" "\x8d\xc9\xdc\xb9\x7f\xde\xf7\x95\xb9\x69\xd0\x62\xe4\xa9\x24\x49\x56" "\xd6\xea\x86\xab\xbb\x6e\xf9\xf7\x81\xaf\x4c\x7e\xf2\xa2\x2f\x7c\xe0" "\x3d\x13\x1f\x37\x5e\x31\xb3\x61\xa3\xd9\x41\x93\x4d\x97\x26\x5f\x76" "\xbc\xff\xe1\x9a\x38\xfe\x86\x92\x24\xb9\xaa\x36\x3e\xec\xd5\x77\x8d" "\x7d\x79\xfe\xd2\x47\xaf\xf8\xee\x61\xcf\xec\x7f\xe9\x86\x5f\x24\x7d" "\x59\xe5\x68\x32\x71\x24\x5d\x58\x3b\xae\x92\xd1\xed\x4f\x89\x3d\x8f" "\xcc\x03\xff\xd1\x97\x4c\x1c\x85\x8b\x6b\xc7\x61\x3a\x8d\x79\x1d\x93" "\x24\xc9\xac\xba\xf1\xe2\x82\x79\xec\xdd\xe6\x7c\x17\xe4\x8c\x5f\x1a" "\xdc\x3e\x5c\xd0\x27\xfb\xfc\x5e\x05\xf5\xe1\xe2\xcf\x54\x82\x8f\x03" "\x05\xfb\x9b\xae\xbc\x79\x74\x5b\x57\x64\xfb\x48\x7d\xf2\x14\xcd\x33" "\x3b\x5f\xfe\x7d\xed\xe3\xbc\x2e\xfa\x6f\x57\xfb\xaf\xe8\x58\x98\x8e" "\x89\xaf\xff\x60\x92\x24\x6f\xa9\x8d\xb3\xe3\x60\x76\x2d\xc3\xc1\xea" "\x48\xb0\xc5\x76\xc9\x91\xc9\x51\xc9\xd1\xc9\xc1\xc9\x21\xc9\xa1\xc9" "\xd2\xe4\xb0\x64\x59\x72\x78\x72\x44\x72\x4c\x32\xab\xa9\x76\x38\xa7" "\x76\x6e\x7a\x4c\xb2\x5d\x53\x75\x9a\xcc\x49\x2b\xb5\x39\x55\xd2\xa4" "\x2f\x4d\xaa\x5b\x63\x3e\x38\x4d\x92\xfa\x6f\xb0\x03\x5b\xb7\xe9\x4b" "\x66\xd4\xdd\x3e\xb1\xbc\x67\xb6\xb8\x9f\xd9\xed\x59\xc3\xcb\x6b\xe7" "\x81\xa1\xda\x6d\x43\xe9\x0e\x4d\xdb\x8c\xb7\x90\x7d\xee\xb2\xfb\xaf" "\xfe\xec\x7d\x3b\x9d\xbf\xcf\x9c\x56\xa1\x4e\xf4\xbc\x30\xad\xf5\x4f" "\xbb\xea\xff\xd5\x33\x1f\x1a\x9e\x79\xe0\x5d\xd7\xe7\xf6\x5f\x99\xf5" "\xef\xeb\xaa\xff\x39\xbb\x2c\x39\x74\xc3\xca\x85\x2b\x73\xfb\x9f\x9d" "\xf5\xaf\x74\xd5\xff\x83\x17\x5c\x7d\xe6\xed\x5f\xbb\xf7\xda\xdc\xfe" "\x97\x67\xfd\xab\x5d\xf5\xbf\xf2\xd8\x73\x8e\xb8\xfc\xba\x8d\x0f\xe7" "\x9d\x77\xd3\xbd\xb3\xfe\x03\xdd\xcd\x7f\xf5\xa6\x9b\x2f\x3c\x7e\xd9" "\x77\x72\xe7\x7f\x42\xd6\x7f\xb0\xab\xfe\xe3\xb7\x1f\x34\x34\xfb\xa9" "\xfe\x4b\x73\xfb\x1f\x99\xf5\x9f\xd5\x55\xff\x2f\x7d\xff\xa2\x1b\xef" "\xfc\xd1\x0d\x9b\x73\xfb\x2f\xcc\xfa\x0f\x75\xd5\xff\x8e\xa3\x6e\xbb" "\x77\xe9\x82\x3d\x2e\xce\xed\xbf\x5f\xd6\x7f\xb8\xab\xfe\x77\xdf\xf4" "\xe0\x49\x77\x6f\xba\xeb\xe9\xdc\xfe\x27\x67\xfd\x67\x77\xd5\x7f\xe0" "\xb3\xdf\x7b\xdb\x41\x77\x1e\xf2\x89\xdc\xfe\xa3\x59\xff\x39\x5d\xf5" "\xdf\xed\x63\xb3\x4e\xfd\xdd\x2d\x6b\xae\xcf\xfb\xbe\x9a\x9e\x97\xf5" "\x9f\xd7\xe5\xf1\xbf\xf3\x9a\xd1\x3b\x2a\x8f\xe6\xce\x7f\x71\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\xc0\x36\xf7\x89\xf3\x1e\xaf" "\x1f\x0e\x57\x87\xab\x13\x1f\x37\x5d\xba\xee\x89\xd3\xef\xb9\xea\xe6" "\x7f\x7f\xef\x29\xdf\xdc\xf8\xa6\x27\x37\x9f\x7e\xdf\x6d\xdf\xfd\xcd" "\xd8\xd2\xd3\x6e\xfa\xd6\x25\x1f\x3d\xe7\x92\xc1\x45\xb7\x2c\xbe\xe5" "\xdd\x37\x5c\xfa\xd6\xcf\xdc\xfa\xb9\x73\xff\x74\x87\x4b\x3e\xff\x93" "\xa2\xdd\x0c\x0c\x4c\x7e\x9c\x97\x8d\x93\x24\xfd\x56\x9a\x24\x3f\x7d" "\x66\xaf\x39\xff\xf0\x97\xc7\xcf\x9f\xb8\x2d\x4d\x92\x64\x66\x5a\xdd" "\x98\xcc\x9d\xfb\xe7\x7d\x5f\x99\x9b\x06\x2d\x46\x9e\x4a\x92\x64\x65" "\xad\x6e\xb8\xba\xeb\x96\x7f\x1f\xf8\xca\xe4\x27\x2f\xfa\xc2\x07\xde" "\x33\xf1\x71\xe3\x15\x33\x1b\x36\x9a\x1d\x34\x09\xef\x57\x32\x54\xc9" "\xe6\xd3\x30\xcf\xe4\xbc\x76\xc2\xe3\x85\x66\xe2\xf8\x1b\x4a\x92\xe4" "\xaa\xda\xf8\xb0\x57\xdf\x35\xf6\xe5\xf9\x4b\x1f\xbd\xe2\xbb\x87\x3d" "\xb3\xff\xa5\x1b\x7e\x91\xf4\x65\x95\xa3\xc9\xc4\x91\x74\x61\xed\xb8" "\x4a\x46\xb7\x3f\x25\xf6\x3c\x32\x0f\xfc\x47\x5f\x32\x71\x14\x2e\xae" "\x1d\x87\xe9\x34\xe6\x75\x4c\x92\x24\xb3\xea\xc6\x8b\x0b\xe6\xb1\x77" "\x9b\xf3\x5d\x90\x33\x7e\x69\x70\xfb\x70\x41\x9f\xec\xf3\x7b\x15\xd4" "\x87\x8b\x3f\x53\x09\x3e\x0e\x14\xec\x6f\xba\xf2\xe6\xd1\x6d\x5d\x91" "\xed\x23\xf5\xc9\x53\x34\xcf\xec\x7c\xf9\xf7\xb5\x8f\xf3\xba\xe8\xbf" "\x5d\xed\xbf\xa2\x63\x61\x3a\x26\xbe\xfe\x83\x49\x92\xbc\xa5\x36\xce" "\x8e\x83\xd9\xb5\x0c\x07\xab\x23\xc1\x16\xdb\x25\x47\x26\x47\x25\x47" "\x27\x07\x27\x87\x24\x87\x26\x4b\x93\xc3\x92\x65\xc9\xe1\xc9\x11\xc9" "\x31\xc9\xac\xa6\xda\xe1\x9c\xda\xb9\xe9\x31\xc9\x76\x4d\xd5\x69\x32" "\x27\xad\xd4\xe6\x54\x49\x93\xbe\x34\xa9\x6e\x8d\xf9\xe0\x34\x49\xfa" "\xeb\x6a\x07\xb6\x6e\xd3\x97\xcc\xa8\xbb\x7d\x62\x79\xcf\x6c\x71\x3f" "\xb3\xdb\xb3\x86\x97\xd7\xce\x03\x43\xb5\xdb\x86\xd2\x1d\x9a\xb6\x19" "\x6f\x21\xfb\xdc\x65\xf7\x5f\xfd\xd9\xfb\x76\x3a\x7f\x9f\x39\xad\x42" "\x9d\xe8\x79\x61\x5a\xeb\x9f\x76\xd5\xff\xab\x67\x3e\x34\x3c\xf3\xc0" "\xbb\xae\xcf\xed\xbf\x32\xeb\xdf\xd7\x55\xff\x73\x76\x59\x72\xe8\x86" "\x95\x0b\x57\xe6\xf6\x3f\x3b\xeb\x5f\xe9\xaa\xff\x07\x2f\xb8\xfa\xcc" "\xdb\xbf\x76\xef\xb5\xb9\xfd\x2f\xcf\xfa\x57\xbb\xea\x7f\xe5\xb1\xe7" "\x1c\x71\xf9\x75\x1b\x1f\xce\x3b\xef\xa6\x7b\x67\xfd\x07\xba\x9b\xff" "\xea\x4d\x37\x5f\x78\xfc\xb2\xef\xe4\xce\xff\x84\xac\xff\x60\x57\xfd" "\xc7\x6f\x3f\x68\x68\xf6\x53\xfd\x97\xe6\xf6\x3f\x32\xeb\x3f\xab\xab" "\xfe\x5f\xfa\xfe\x45\x37\xde\xf9\xa3\x1b\x36\xe7\xf6\x5f\x98\xf5\x1f" "\xea\xaa\xff\x1d\x47\xdd\x76\xef\xd2\x05\x7b\x5c\x9c\xdb\x7f\xbf\xac" "\xff\x70\x57\xfd\xef\xbe\xe9\xc1\x93\xee\xde\x74\xd7\xd3\xb9\xfd\x4f" "\xce\xfa\xcf\xee\xaa\xff\xc0\x67\xbf\xf7\xb6\x83\xee\x3c\xe4\x13\xb9" "\xfd\x47\xb3\xfe\x73\xba\xea\xbf\xdb\xc7\x66\x9d\xfa\xbb\x5b\xd6\x5c" "\x9f\xf7\x7d\x35\x3d\x2f\xeb\x3f\xaf\xcb\xe3\x7f\xe7\x35\xa3\x77\x54" "\x1e\xcd\x9d\xff\xe2\x58\xdf\x49\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x21\x58\xf7\xfa\xed\xff\xb9" "\x7e\x7c\xdc\x87\xef\xbb\x78\xc9\x31\x3b\x2e\x4d\x6b\xe3\xe1\x6a\x92" "\xec\x96\x24\xc9\x4d\xdb\x37\x6e\x57\x4d\x92\x64\x30\x49\x92\x53\x4f" "\x7b\xcf\x6b\x97\xaf\x1c\x7b\xdf\xf2\x0d\xeb\x56\xbc\x7b\x6c\xf9\xaa" "\x35\xab\xd6\x37\xd4\x0d\x24\xf3\x26\x3f\xa6\xbb\x27\x33\x92\x24\x49" "\xeb\x3e\x57\x69\x35\xa1\xbe\xd6\xf3\x6c\xd8\xdf\xfa\xb5\x2b\xd6\xac" "\x5b\x7e\xe6\x8a\xb5\x67\x6c\xd9\xf5\xba\x53\x9f\xab\x9b\x91\x54\x93" "\x59\x13\x1f\xd3\xf6\xee\xff\xf0\x96\xce\x49\x32\x9c\xee\xdc\x56\x7d" "\xd6\x76\x41\x6d\x34\x1a\xdc\x5e\xb4\xdb\xfa\x3c\x5e\xd4\x94\x47\xf3" "\xd6\xd9\x2d\xa3\x53\xf4\xd9\xa5\x8d\x5c\xc7\x6b\xc2\xdb\x63\xe5\x1a" "\xde\x5c\x94\x6b\x58\x1f\x33\xd7\x37\x47\xca\x75\x69\x0f\xe4\x1a\x2e" "\x87\xa2\x5c\xc3\xfa\x98\xb9\xae\x8a\x94\xeb\xda\x1e\xc8\x35\xdc\x67" "\x51\xae\x61\x7d\xcc\x5c\xaf\x8d\x94\xeb\x27\x7b\x20\xd7\x6a\x30\x2e" "\xca\x35\xac\x8f\x99\xeb\x3f\x45\xca\xf5\xeb\x3d\x90\xeb\x8c\x60\x5c" "\x94\x6b\x58\x1f\x33\xd7\x9f\x47\xca\xf5\xb1\x1e\xc8\xb5\x3f\x18\x17" "\xe5\x1a\xd6\xc7\xcc\x75\xc7\x34\x4e\xae\xbb\x36\xf5\x69\x56\x76\xae" "\x33\x83\x71\x51\xae\x61\x7d\xcc\x5c\x47\x23\xe5\x7a\x78\x0f\xe4\x3a" "\x10\x8c\x8b\x72\x0d\xeb\x63\xe6\x7a\x46\xa4\x5c\xd7\xf7\x40\xae\x83" "\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x7f\x1d\x29\xd7\x1b\x7a\x20\xd7\x59" "\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x5f\x89\x94\xeb\x37\x62\xe4\xba\x7e" "\xed\xd8\xd8\xf2\x0d\x67\xaf\x5c\xb1\x7e\x6c\xf9\x9a\xb3\x56\x8e\xad" "\x5b\x7e\xee\xda\x55\xeb\xd7\x8f\xad\x29\xb8\x43\xd0\x85\x76\x8f\xbb" "\xa2\xf5\xbc\x2c\x18\x17\xad\xe7\xb0\xbe\x71\x3d\x57\x3a\x5e\xcf\x43" "\x49\x75\x4b\xcd\x50\xba\x43\xd3\xe7\xc6\x5b\xc8\x3e\x77\xe5\xb1\xe7" "\x1c\x71\xf9\x75\x1b\x1f\x0e\xbf\x1f\x6e\x9d\xd7\xde\x93\x7b\x1e\x4c" "\x86\x27\x3f\xa6\xbb\xe4\x54\x36\xde\xa3\x6a\x3a\xb9\xfa\x47\x73\xf6" "\xdf\x5f\x3b\x6f\xf4\xa7\xbb\x27\x6f\xef\x6b\xbc\x7f\x7d\x95\xb4\xe9" "\xee\x66\x79\xd4\x6f\x77\x42\xb0\x5d\x7f\xf8\xa0\xa9\x6e\xbb\xfa\xf3" "\xd4\xf2\xbe\xf0\x3c\xd5\x7c\xa6\x6a\xe7\x7c\xf7\x9e\xa6\x3e\xcd\xca" "\xfe\x3e\x32\x14\x8c\x8b\x8e\xbb\xb0\x3e\xe6\xf7\x91\x0f\x37\xe5\xd1" "\xdd\xf7\x91\x6b\x7a\x20\xd7\xed\x82\x71\x51\xae\x61\x7d\xcc\x5c\x6f" "\x8d\x94\xeb\x97\x7a\x20\xd7\xe1\xa6\xf1\xd4\xb9\x86\xf5\x31\x73\x7d" "\x20\x52\xae\x0f\xf6\x40\xae\xc1\x8f\x21\x0a\x73\x0d\xeb\x63\xe6\x3a" "\x54\x69\x3f\xd7\x30\x91\xfa\x3e\xf3\x9a\xfa\x34\x2b\x3b\xd7\xd9\xc1" "\xb8\x28\xd7\xb0\x3e\x66\xae\x8b\x3a\xc8\x75\xaa\xe3\xf5\xc0\x1e\xc8" "\x75\x4e\x30\x2e\xca\x35\xac\x8f\x99\xeb\x8a\x48\xb9\xbe\xb7\x07\x72" "\x9d\x1b\x8c\x8b\x72\x0d\xeb\x63\xe6\x7a\x65\xa4\x5c\xaf\xeb\x81\x5c" "\xc3\xab\xea\xa2\x5c\xc3\xfa\x98\xb9\xfe\x63\xa4\x5c\xbf\xdc\x03\xb9" "\xbe\x28\x18\x17\xe5\x1a\xd6\xc7\xcc\xf5\x87\x91\x72\x7d\xa8\x07\x72" "\x9d\x17\x8c\x8b\x72\x0d\xeb\x63\xe6\x3a\x5c\x8d\x93\xeb\x8b\x9b\xfa" "\x34\x2b\x3b\xd7\x1d\x83\x71\x51\xae\x61\x7d\xcc\x5c\x17\x47\xca\xf5" "\x2d\x3d\x90\xeb\x8b\x83\x71\x51\xae\x61\x7d\xcc\x5c\x4f\x8b\x94\xeb" "\xea\x1e\xc8\xf5\x25\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x7f\x15\x29\xd7" "\x8f\xf5\x40\xae\xf3\x83\x71\x51\xae\x61\x7d\xcc\x5c\x6f\x8f\x94\xeb" "\x1d\x3d\x90\xeb\x4e\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x3f\x8e\x94\xeb" "\x2f\x7a\x20\xd7\x97\x06\xe3\xa2\x5c\xc3\xfa\x98\xb9\xce\x9e\x11\x27" "\xd7\xf9\x4d\x7d\x9a\x95\x9d\x6b\x98\x5e\x51\xae\xe1\xad\x31\x73\x7d" "\x43\xa4\x5c\xdf\xda\x03\xb9\x86\x3f\x65\x28\xca\x35\xac\x8f\x99\xeb" "\x58\xa4\x5c\xd7\xf4\x40\xae\x2f\x0b\xc6\x45\xb9\x86\xf5\x31\x73\xbd" "\x2a\x52\xae\x1f\xef\x81\x5c\x77\x0d\xc6\x45\xb9\x86\xf5\x31\x73\xfd" "\x62\xa4\x5c\xff\x6f\x0f\xe4\xfa\xf2\x60\x5c\x94\x6b\x58\x1f\x33\xd7" "\xff\x8c\x94\xeb\xe6\x1e\xc8\x75\x24\x18\x17\xe5\x1a\xd6\xc7\xcc\x75" "\x6e\x7f\x9c\x5c\x5f\xda\xd4\xa7\x59\xd9\xb9\xee\x16\x8c\x8b\x72\x0d" "\xeb\x63\xe6\xfa\xc6\x48\xb9\x1e\xd2\x03\xb9\xee\x1e\x8c\x8b\x72\x0d" "\xeb\x63\xe6\xfa\xee\x48\xb9\x9e\xdd\x03\xb9\x2e\x08\xc6\x45\xb9\x86" "\xf5\x31\x73\xfd\x68\xa4\x5c\xff\xa6\x07\x72\x7d\x45\x30\x2e\xca\x35" "\xac\x8f\x99\xeb\xff\x89\x94\xeb\xa6\x1e\xc8\x75\x8f\x60\x5c\x94\x6b" "\x58\x1f\x33\xd7\x9f\x45\xca\xf5\xd1\x1e\xc8\x75\xcf\x60\x5c\x94\x6b" "\x58\x1f\x33\xd7\x17\xcd\x8c\x93\xeb\x2e\x4d\x7d\x9a\x95\x9d\xeb\x5e" "\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x6f\x8e\x94\xeb\xd2\x1e\xc8\x75\xef" "\x60\x5c\x94\x6b\x58\x1f\x33\xd7\x55\x91\x72\x5d\xdb\x03\xb9\xfe\x51" "\x30\x2e\xca\x35\xac\x8f\x99\xeb\xb5\x91\x72\xfd\x64\x0f\xe4\xfa\xc7" "\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\xff\x14\x29\xd7\xaf\xf7\x40\xae\xaf" "\x0c\xc6\x45\xb9\x86\xf5\x31\x73\xfd\x79\xa4\x5c\x1f\xeb\x81\x5c\x5f" "\x15\x8c\x8b\x72\x0d\xeb\x63\xe6\xba\xe3\x40\x9c\x5c\x77\x6d\xea\xd3" "\xac\xec\x5c\x5f\x1d\x8c\x8b\x72\x0d\xeb\x63\xe6\x3a\x1a\x29\xd7\xc3" "\x7b\x20\xd7\xd7\x04\xe3\xa2\x5c\xc3\xfa\x98\xb9\x9e\x11\x29\xd7\xf5" "\x3d\x90\xeb\x3e\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x7f\x1d\x29\xd7\x1b" "\x7a\x20\xd7\x85\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x5f\x89\x94\xeb\x37" "\x7a\x20\xd7\x7d\x83\x71\x51\xae\x61\x7d\xcc\x5c\x1f\x8e\x94\xeb\xaf" "\x7b\x20\xd7\xd7\x06\xe3\xa2\x5c\xc3\xfa\x98\xb9\xbe\x64\x30\x4e\xae" "\x23\x4d\x7d\x9a\x95\x9d\xeb\xeb\x82\x71\x51\xae\x61\x7d\xcc\x5c\x0f" "\x8a\x94\xeb\x11\x3d\x90\xeb\x7e\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\x67" "\x46\xca\xf5\x7d\x3d\x90\xeb\xfe\xc1\xb8\x28\xd7\xb0\x3e\x66\xae\xd7" "\x47\xca\xf5\xc6\x1e\xc8\x75\x51\x30\x2e\xca\x35\xac\x8f\x99\xeb\x57" "\x23\xe5\x7a\x77\x0f\xe4\xfa\xfa\x60\x5c\x94\x6b\x58\x1f\x33\xd7\x5f" "\x46\xca\xf5\xc9\x1e\xc8\x75\x71\x30\x2e\xca\x35\xac\x8f\x99\xeb\x4e" "\xb3\xe2\xe4\xba\x7b\x53\x9f\x66\x65\xe7\xba\x24\x18\x17\xe5\x1a\xd6" "\xc7\xcc\xf5\xe0\x48\xb9\x1e\xd5\x03\xb9\xbe\x21\x18\x17\xe5\x1a\xd6" "\xc7\xcc\xf5\xac\x48\xb9\x9e\xd7\x03\xb9\x1e\x10\x8c\x8b\x72\x0d\xeb" "\x63\xe6\xfa\x89\x48\xb9\xfe\xd7\x1e\xc8\xf5\x8d\xc1\xb8\x28\xd7\xb0" "\x3e\x66\xae\xff\x1c\x29\xd7\x7b\x7a\x20\xd7\x37\x05\xe3\xa2\x5c\xc3" "\xfa\x98\xb9\x3e\x12\x29\xd7\xdf\xf6\x40\xae\x6f\x0e\xc6\x45\xb9\x86" "\xf5\x31\x73\xdd\x79\x28\x4e\xae\xaf\x68\xea\xd3\xac\xec\x5c\x0f\x0c" "\xc6\x45\xb9\x86\xf5\x31\x73\x3d\x34\x52\xae\x6f\xeb\x81\x5c\xc3\xf9" "\x15\xe5\x1a\xd6\x87\xb9\x0e\x04\xb7\x77\x92\xeb\x39\x1d\xe4\x9a\xed" "\x67\x71\x8b\x3e\xe7\xf7\x40\xae\x0f\x04\xb7\x17\xe5\x1a\xd6\xc7\x3c" "\x5e\xff\x36\xd2\xf1\xfa\xe9\x1e\xc8\xf5\x07\x1d\xe6\x1a\xd6\xc7\xcc" "\xf5\x6b\x91\x72\xfd\x7f\x3d\x90\xeb\x0f\x3b\xcc\x35\xac\x8f\x99\xeb" "\xaf\x22\xe5\xfa\xbb\x1e\xc8\xf5\x47\x1d\xe6\x1a\xd6\xc7\xcc\xf5\x65" "\xdb\xc5\xc9\x75\xcf\xa6\x3e\xcd\xca\xce\xf5\xc7\x1d\xe6\x1a\xd6\xc7" "\xcc\xf5\xb0\x48\xb9\xbe\xbd\x07\x72\xfd\x49\x87\xb9\x86\xf5\x31\x73" "\x5d\x17\x29\xd7\x0b\x7b\x20\xd7\xff\xec\x30\xd7\xb0\x3e\x66\xae\x9f" "\x8a\x94\xeb\x4d\x3d\x90\xeb\x4f\x3b\xcc\x35\xac\x8f\x99\xeb\x9d\x91" "\x72\xfd\x56\x0f\xe4\xfa\xb3\x0e\x73\x0d\xeb\x63\xe6\xfa\x78\xa4\x5c" "\x9f\xe9\x81\x5c\x1f\xec\x30\xd7\xb0\x3e\x66\xae\x2f\x1f\x8e\x93\xeb" "\xde\x4d\x7d\x9a\x95\x9d\xeb\xcf\x3b\xcc\x35\xac\x8f\x99\xeb\xb2\x48" "\xb9\xbe\xa3\x07\x72\x7d\xa8\xc3\x5c\xc3\xfa\x98\xb9\x6e\x88\x94\xeb" "\xfb\x7b\x20\xd7\x87\x3b\xcc\x35\xac\x8f\x99\xeb\xdf\x45\xca\xf5\xe6" "\x1e\xc8\xf5\x17\x1d\xe6\x1a\xd6\xc7\xcc\xf5\xae\x48\xb9\x7e\xbb\x07" "\x72\xfd\x65\x87\xb9\x86\xf5\x31\x73\x7d\x22\x52\xae\xe3\x3d\x90\xeb" "\xe6\x0e\x73\x0d\xeb\x63\xe6\xba\xdb\xf6\x71\x72\xfd\xe3\xa6\x3e\xcd" "\xca\xce\xf5\x91\x0e\x73\x0d\xeb\x63\xe6\x7a\x64\xa4\x5c\x8f\xef\x81" "\x5c\x1f\xed\x30\xd7\xb0\x3e\x66\xae\xe7\x46\xca\x75\xe3\x34\x72\x4d" "\x6b\x7f\xf3\xfe\xc2\x2f\x7c\xe0\x3d\x93\xe3\xbe\x86\xf7\x56\xeb\x6b" "\xf1\xde\x55\xf5\xb7\x17\xdd\x5f\x00\x00\x78\x3e\xbd\xf8\xd7\x37\xbc" "\xbd\x7e\x9c\xbd\xff\x7f\xf6\x3e\xe2\xd9\xdf\xb4\xff\x8f\xda\x45\x6f" "\x76\x3d\x1b\xeb\xf1\xc6\xaf\x3a\x7c\xbc\x11\xd6\x67\xf3\x8c\xf1\x78" "\x63\x46\xf0\xfe\xe9\xdd\x3e\xde\xd8\xbe\xa9\x4f\xb3\xb2\x1f\xc7\x3d" "\xd6\x61\xae\x61\x7d\xcc\x5c\x17\x46\xca\x75\x49\x0f\xe4\xfa\x78\x87" "\xb9\x86\xf5\x31\x73\x3d\x29\x52\xae\x2b\x7b\x20\xd7\x5f\x77\x98\x6b" "\x58\x1f\x33\xd7\x0f\x46\xca\xf5\x23\x3d\x90\xeb\x13\x1d\xe6\x1a\xd6" "\xc7\xcc\xf5\x7f\x44\xca\xf5\x0b\x3d\x90\xeb\x93\x1d\xe6\x1a\xd6\xc7" "\xcc\xf5\xbb\x91\x72\xfd\x49\x0f\xe4\xfa\x9b\x0e\x73\x0d\xeb\x63\xe6" "\x3a\x33\x8d\x93\xeb\x9c\xa6\x3e\xcd\xca\xce\xf5\xb7\x1d\xe6\x1a\xd6" "\xc7\xcc\xf5\xb5\x91\x72\x3d\xa0\x07\x72\x7d\xaa\xc3\x5c\xc3\xfa\x98" "\xb9\xfe\x69\xa4\x5c\x4f\xef\x81\x5c\x7f\xd7\x61\xae\x61\x7d\xcc\x5c" "\x2f\x8f\x94\xeb\xd5\x3d\x90\xeb\xd3\x1d\xe6\x1a\xd6\xc7\xcc\xf5\xf3" "\x91\x72\xfd\xdf\x3d\x90\xeb\x33\x1d\xe6\x1a\xd6\xc7\xcc\xf5\x7b\x91" "\x72\xfd\x69\x0f\xe4\xfa\x6c\x87\xb9\x86\xf5\x31\x73\x1d\xec\x8b\x93" "\xeb\x0e\x4d\x7d\x9a\x95\x9d\xeb\x78\x87\xb9\x86\xf5\x31\x73\xdd\x2f" "\x52\xae\x6f\xea\x81\x5c\xdf\x12\x8c\x8b\x72\x0d\xeb\x1b\x73\xed\x9b" "\x56\xae\xcb\x9b\xf2\xe8\x6b\xaa\x6f\x27\xd7\xf7\xf4\x40\xae\x07\x05" "\xe3\xa2\x5c\xc3\xfa\x98\xb9\x7e\x38\x52\xae\xd7\xf4\x40\xae\x6f\x0d" "\xc6\x45\xb9\x86\xf5\x31\x73\xbd\x35\x52\xae\x5f\xea\x81\x5c\x0f\x0e" "\xc6\x45\xb9\x86\xf5\x31\x73\x7d\x20\x52\xae\x0f\xf6\x40\xae\x87\x04" "\xe3\xa2\x5c\xc3\xfa\x98\xb9\x0e\x55\xe2\xe4\x3a\xaf\xa9\x4f\xb3\xb2" "\x73\x3d\x34\x18\x17\xe5\x1a\xd6\xc7\xcc\x75\x51\xa4\x5c\x0f\xec\x81" "\x5c\x97\x06\xe3\xa2\x5c\xc3\xfa\x98\xb9\xae\x88\x94\xeb\x7b\x7b\x20" "\xd7\xc3\x82\x71\x51\xae\x61\x7d\xcc\x5c\xaf\x8c\x94\xeb\x75\xb1\x72" "\x9d\x08\xf3\xf4\xb5\x63\x63\xeb\xce\x5e\x71\xda\xd8\xf2\x55\x6b\x56" "\xad\xdf\x5a\x37\x23\x19\x9a\x32\xd7\x65\xc1\x78\xa2\x7e\xcb\xc7\x74" "\xa7\x96\xf7\x27\xac\x8f\x35\x8f\xf0\xef\x25\xe4\xcd\xe3\xba\xb4\x75" "\x7d\xc3\x3c\x4e\x5d\xbf\x76\x6c\x62\xff\xeb\xc6\xd6\xae\x6f\xba\x7f" "\xb3\xa7\x9c\x47\x78\x73\x7f\x32\x7b\xf2\x63\x1a\xbe\x03\x5f\xeb\xfa" "\xb4\xf6\x35\xdb\x3a\x9f\x2d\x53\xd9\x70\xf6\xca\x15\xeb\xc7\x96\xaf" "\x39\x6b\xe5\xd8\xba\xe5\xe7\xae\x5d\xb5\x7e\xfd\xd8\x9a\x6c\x3e\x53" "\x1f\xf7\x47\x05\xe3\xa2\xe3\x3e\xac\x6f\x3c\xee\x2b\x1d\x1f\xf7\x45" "\x5f\xb7\x70\x7f\x79\x5f\xb7\xbe\x29\xea\x67\x75\xf0\x75\xce\xeb\xff" "\xd1\x9c\xfa\xa1\x64\x68\xcb\x7d\x1c\x4a\x77\x68\x9a\xfb\x78\x0b\xd9" "\xe7\xee\x38\xea\xb6\x7b\x97\x2e\xd8\xe3\xe2\x81\xd6\x77\x3b\x49\xf7" "\x9b\xdc\xd1\x60\x32\x3c\xf9\x31\x0d\xdf\xa9\x35\x69\x79\x8f\x87\xd2" "\xc9\x55\x3e\x9a\xb3\xff\xfe\xda\xf9\xa1\x3f\xdd\x3d\x49\xab\x8d\xe7" "\x87\xbe\x4a\xda\xf4\x55\xc8\xbe\x9e\xf5\xdb\x0d\x04\xdb\xf5\x0f\x35" "\xcf\x2a\xdb\xae\xfe\x7c\x34\xbb\x1a\x9e\x8f\x9a\xcf\x48\xed\x9c\xd7" "\xe6\x37\xf5\x69\xd6\xd6\x79\x6d\xca\x75\x3c\x38\xf5\xf3\x1d\x41\xef" "\xed\xb6\x74\x4d\x92\xed\xd2\xf0\x1d\xf6\x5b\xd7\x87\x67\xf4\xb4\xcd" "\xd7\x76\xc7\x5a\xf7\xc7\x04\xe3\xa2\x75\x1f\xd6\x17\xad\xfb\x8d\x05" "\xf7\xa3\x68\xdd\x87\xfb\x2b\x5a\xf7\xad\xea\x5b\xad\xfb\xbc\x75\x9c" "\xd7\xff\x23\xb9\xeb\x7e\x76\x57\xeb\x7e\xe0\xb3\xdf\x7b\xdb\x41\x77" "\x1e\xf2\x89\xdc\x75\x3f\xda\xee\xba\x6f\xbc\xc7\xb3\x3b\x58\xf7\x1b" "\xbb\x5c\xf7\x97\x85\xeb\x7e\x76\xf3\xac\x5a\xad\xfb\xbf\x8a\xb4\xee" "\x3f\xf6\xbc\xac\xfb\x81\xc6\xe3\xf2\xe2\xd6\xf3\xcc\xcc\xaa\xfd\x65" "\xa9\x59\xe9\x8e\x2d\x66\xd3\x7a\x4d\x6f\x99\xdf\x9c\x96\xe5\xcd\xf3" "\x9d\xe6\x3a\x7f\x47\x30\x2e\x5a\xe7\x61\x7d\xd1\x3a\x2f\x3a\x69\x15" "\xad\xf3\x70\x7f\x45\xeb\xbc\x55\x7d\xab\x75\x9e\xb7\x6e\xf3\xfa\x5f" "\x99\xbb\xce\x07\xbb\x5a\xe7\xe3\xb7\x1f\x34\x34\xfb\xa9\xfe\x4b\x73" "\xd7\xf9\x91\xed\xae\xf3\xc6\x7b\x3c\xd8\xc1\x3a\x7f\xa6\xcb\x75\x5e" "\x9d\x11\xac\xf3\xc1\xe6\x59\xb5\x5a\xe7\x43\x33\xe2\xac\xf3\x79\x4d" "\x7d\x9a\x4d\x7f\x9d\xa7\xb9\xc7\x65\xab\xf5\x39\xb7\x36\xf3\xb9\x69" "\xf8\xce\xee\xad\xeb\xb3\xf9\xbf\x6a\xc3\xd5\xc7\x2f\xfe\xc1\xe3\x8b" "\x93\x64\xe1\x8b\xef\xdd\xb5\xda\xe2\x9e\x4c\xda\x3c\x76\xf8\x69\x07" "\xb4\xf8\xb7\x49\xad\x71\xfd\xd7\xeb\xe8\x19\xcd\xd7\x13\xa1\xec\x6e" "\x36\xe4\x73\xfa\xba\x2d\x0f\xa2\x56\xad\x58\xbd\xea\xfc\xb1\xc6\xfa" "\xa2\x7c\xd2\xe0\xfe\xee\x50\xdb\xc3\x0e\x39\xf9\x84\xf5\xd9\x7c\x3f" "\xb2\xe1\x82\x5f\xdd\xf6\xba\x5b\x9f\x4a\x92\x85\x3b\x56\x76\x99\x76" "\x3e\xe9\xe8\xf8\x2b\x46\xee\xb9\xf6\x37\x9f\x7e\xbc\x76\xd0\xcc\xad" "\xdd\x8f\x5e\xf9\xba\x6d\xbb\xe3\xa8\xaf\x65\xe3\x19\x49\xdf\x94\x5f" "\xe7\xad\x69\xd6\xe6\x35\x50\xdb\x70\x20\x9d\xd5\x56\x7d\xf6\x75\xaf" "\xae\x3e\x6b\xdd\xfa\x57\x9e\x7e\xd6\x86\x35\x2b\xb7\x8c\xeb\x8f\xdf" "\xb5\x1d\x1c\xbf\x43\x49\xb5\xab\xf3\xf1\x95\xc7\x9e\x73\xc4\xe5\xd7" "\x6d\x7c\x38\xf7\x7c\xbc\x77\xba\x75\x3f\x31\x7e\x3f\x73\x63\x3b\x17" "\xf3\xbf\x87\x9e\xf8\x6d\xfa\x64\xfd\x38\x7b\xfd\x7f\x76\x0e\xcf\x5e" "\xff\xff\xf6\xfe\xc9\x71\xd3\x79\x69\x9a\xd7\x3b\xef\x0c\xc6\x45\xd7" "\x3b\x61\x7d\x36\xcf\xdc\xc7\x35\xd3\xbc\xde\x09\xf7\x57\x74\xbd\xd3" "\xaa\xbe\xd5\xf5\x4e\xde\xf5\x4b\x5e\xff\x0f\xe5\x5e\xef\x0c\x74\xb5" "\xbe\x3e\xb8\x7a\xd3\xcd\x17\x1e\xbf\xec\x3b\xb9\xeb\xeb\x84\x76\xaf" "\x77\x1a\xef\xf1\x40\x07\xd7\x3b\x3b\x07\xd7\x0a\xed\x5e\xef\xec\x1e" "\x6c\xd7\xdf\xe2\x4e\xb4\xba\xde\xf9\xa3\x60\xbb\x6e\xaf\x77\x5e\xdb" "\xd4\xa7\x59\xe1\xf5\xce\x34\xd7\xcd\x89\xc1\xb8\x68\xdd\x84\xf5\x65" "\xaf\x9b\x70\x7f\x45\xeb\xa6\x55\x7d\xab\x75\x93\xb7\x0e\xf2\xfa\x7f" "\x30\x77\xdd\xa4\x5d\xad\x9b\xaf\x9e\xf9\xd0\xf0\xcc\x03\xef\xba\x3e" "\x77\xdd\xac\x6c\x77\xdd\x34\xde\xe3\xb4\x83\x75\x73\x49\x97\xeb\xe6" "\x43\xe1\xba\x69\xf1\xb5\x6b\xb5\x6e\xae\x8a\xb4\x6e\x3e\xde\x03\xeb" "\xe6\xe4\x60\x5c\xb4\x6e\xc2\xfa\xb2\xd7\x4d\xb8\xbf\xa2\x75\xd3\xaa" "\xbe\xd5\xba\xc9\x5b\x07\x79\xfd\x3f\x90\xbb\x6e\xfa\xba\x5a\x37\xe7" "\xec\xb2\xe4\xd0\x0d\x2b\x17\xae\xcc\x5d\x37\x67\xb7\xbb\x6e\x1a\xef" "\x71\x5f\x07\xeb\xe6\xc1\x2e\xd7\xcd\x23\xe1\xba\x69\x71\xf1\xdb\x6a" "\xdd\x3c\x19\x69\xdd\x4c\x14\x4d\x77\xdd\x2c\x5f\xbe\xe5\x11\xe4\x69" "\x6b\xc7\x56\xac\x1f\x6b\xb1\x7d\xd1\xe3\xc7\xbe\x0e\x1f\x3f\x86\xf5" "\x95\xda\x5e\x9e\xde\x7d\xaf\x7b\x8e\xfc\xe5\xfb\x6f\x9a\x78\xfc\x38" "\xd5\xe3\xa2\xb7\x7d\xf8\xe7\xef\x3d\xa0\xc5\xbf\x81\x74\x74\xfc\xdc" "\x39\x6f\xb9\xf5\x94\x87\xff\xf5\xf0\xc9\x1b\xb6\xdd\xe3\xc7\xd6\x8f" "\xd7\x3a\x7d\xfc\x58\xe9\x6a\x3e\xf5\x09\x65\xf3\xa9\xb6\x9c\x4f\xd1" "\xe3\xc7\xad\x69\xd6\xe6\x35\xb3\xb6\xe1\xcc\x9c\xc7\x8f\x61\x7d\xf6" "\x75\xaf\x9e\xbe\x6a\xf5\xd8\xc2\xc6\x75\xf4\x86\xb4\xf5\xb1\x5b\x2f" "\x7c\x7c\x31\xdd\xe3\xb6\xd2\xe1\x71\x1b\xd6\x67\xf3\xdd\xff\xfe\x85" "\x9b\x9f\xfd\xfa\xf1\x77\x4f\x1e\xb7\x79\x67\xb1\xb6\x8f\xdb\xc1\xd1" "\xf1\xc1\xbf\x38\xf3\xd0\x67\x8e\xd8\xb8\xef\x73\xf3\x9a\xd5\xf1\x7a" "\x4a\x4a\x5f\x4f\xdd\xad\xf3\xf2\xe7\x55\x74\x1c\x67\xe9\xf6\xb5\x79" "\x1c\x87\xf5\xd9\x71\x30\xd0\xe2\x38\xbe\x7a\x1b\x1c\xc7\xd5\x20\xe7" "\xed\x6b\x7b\xd8\x3e\xe7\xeb\x12\xd6\x67\xf3\x5d\xf2\xbe\xd7\x7c\xf2" "\x87\xc7\x9d\xb0\xc7\xc6\x64\x61\xf5\xb1\x97\x37\x67\x91\xc9\xfb\xba" "\xd4\xe7\xf0\xf3\x0e\x72\x98\x51\x3b\x41\x84\xd7\x19\x79\xf3\x6d\x78" "\xde\x73\xe2\x0a\x6f\x6c\xf9\xaa\x35\x2b\xc7\xce\x5b\xbe\x72\xec\xf4" "\x15\x1b\x56\x6f\x7d\x7a\x78\xc6\x96\x9f\xe9\xe4\xe7\x96\xad\xd4\xac" "\x7f\x76\x8f\x67\xa5\x73\x1b\x6a\x07\x72\xea\xf7\x59\x7f\xe6\xd9\xfb" "\xac\xfb\xb3\xf3\x5f\xbd\xea\xcc\x15\xef\x1e\x7b\xf7\xd8\x9a\xfd\x16" "\x2e\x7a\xfd\xc2\x45\x8b\x16\xed\xbb\x78\x9f\x2d\x87\xc6\xe4\xbf\x5b" "\xbe\x1e\xb3\xb6\xc1\xd7\x23\xd6\x71\x90\xdd\xef\xbd\xda\xdc\x6f\xac" "\xeb\xf1\xe5\xc1\xb8\xe8\x7a\x3c\xac\x2f\xfb\x7a\x3c\xdc\x5f\xd1\xf5" "\x78\xab\xfa\x56\xd7\xe3\x79\xd7\xd7\x79\xfd\x37\xe6\x5e\x8f\x27\x5d" "\x5d\x8f\x5f\x76\xff\xd5\x9f\xbd\x6f\xa7\xf3\xf7\xc9\xbd\x1e\xbf\xb0" "\xdd\xeb\xf1\xe0\x1e\x77\x70\x3d\x7e\x52\x5f\x77\xd7\xe3\xa7\x06\xdb" "\xf5\xb7\x98\x55\xab\xeb\xf1\x55\x7d\x71\xae\xc7\xd7\x36\xf5\x69\xd6" "\xe6\xf5\xf8\xea\x55\x6b\xce\x68\xb1\xb5\xeb\x81\x4e\xe7\x15\xeb\xfc" "\xdb\xe9\x79\xb0\x28\x8f\xa2\xfd\x4e\xe4\xd1\xcd\x7e\x03\x83\xa3\xe3" "\x3b\xbe\xe1\xc4\x3d\xce\x1b\xef\x7b\xd7\xe4\x0d\x45\xd7\x47\x03\xb5" "\xea\x76\xaf\x8f\x76\x0c\xea\xb7\x7e\x3f\x9d\xf8\xf6\xb7\x6f\xfd\xf7" "\xf7\xd6\xfb\xcb\xfb\xfe\x3e\xc5\x75\xd1\xcc\xa4\x8d\xeb\xa2\x19\x1d" "\x5e\xdf\x87\xf5\xd9\xd7\xe3\xc6\x6f\x3c\xbe\xe8\x94\xef\xfd\xec\xbb" "\x91\xae\xef\xd3\xd1\xf1\x65\xbf\x7e\xf2\x23\x5f\x5b\x74\xfe\xfb\x27" "\x6f\xe8\xf4\x71\x69\xd9\x8f\x03\x5f\x68\x8f\x4b\xb7\xa6\xd9\xe6\xf1" "\x1a\xd6\xcf\xa8\xbf\x9e\xdf\xb7\xf1\xfb\xc9\x70\xa5\xf3\xeb\xf9\x2d" "\x47\xed\x79\x2b\xd6\xaf\x5f\xbb\x7c\xdd\xd8\xfa\xe5\xef\x59\xb1\x66" "\xe5\xea\xb1\xb5\xcf\xd5\x17\x9d\xbf\xb7\xd5\x71\xf8\xfc\xac\x8f\x6f" "\x7e\xee\x8a\xb5\x9d\xcd\x6b\x46\x52\x99\xf2\xeb\xbf\xff\x01\x1f\xb8" "\xe0\xc2\xbf\xdc\xfe\xe2\x19\x5b\xbf\xfe\x93\x33\x9b\x99\x36\xbf\x98" "\xb5\x55\x7d\xd2\xdf\x9f\x6c\xf9\x72\xed\x3b\xf9\x6f\xac\xeb\xd7\x53" "\x83\x71\xd1\xf5\x6b\x58\x5f\x74\xfd\x3a\x50\xf0\x83\xf6\xa2\xeb\xd7" "\x70\x7f\x45\xd7\xaf\xad\xea\x5b\x5d\xbf\xe6\x5d\x8f\xe6\xf5\xbf\x28" "\xf7\xfa\xb5\xd2\xdd\xcf\x2f\x2f\xb8\xfa\xcc\xdb\xbf\x76\xef\xb5\xb9" "\xd7\xaf\x97\xb7\x7b\xfd\xda\x78\x8f\x2b\x1d\x5c\xbf\x7e\xbe\xd2\xdd" "\xf5\xeb\x17\x82\xed\xfa\x5b\x9c\x7c\x5a\x5d\xbf\x7e\xa5\x12\xe7\xfa" "\xf5\x1b\x4d\x7d\x9a\x15\x5d\xbf\xf6\xc6\xf9\xaf\xf3\xf3\xcc\x0b\xf5" "\xfc\xf7\x77\xef\x5d\x7c\xc0\x0f\x6e\xd9\xe1\x65\xed\x9e\xff\xc2\xfa" "\xad\xe7\xbf\xd7\x4e\xfe\x1b\xeb\x79\xa9\xfe\x0e\xaf\xbf\xc2\xfa\x2c" "\xdf\xf1\x05\x7d\x23\x47\xff\xdb\x2d\xbb\x14\xe5\x3b\x99\x6c\xf3\xbf" "\x81\x74\x74\xfc\x9f\x5e\xf9\xec\x1b\x3f\x7e\xc5\x19\xb5\x97\x27\xfc" "\x61\x5e\x7f\xd5\x27\x34\xbd\xeb\xaf\xad\x69\xb6\x79\xfd\x15\xd6\xf7" "\xd7\x5f\x7f\xbd\xb6\xf1\x7c\xf8\xa6\x6a\xd7\xcf\xa7\xe6\x3e\x7e\x7e" "\x7e\xbe\xde\xed\xe7\xdb\x6b\x5f\xef\xa2\xf3\xf3\xb6\x5a\xa7\xdb\xee" "\xfc\xd1\x17\xcc\x6b\xe4\xda\xd5\xfb\x9d\xb1\xf3\xee\x27\x4d\xde\x50" "\xb4\x3e\xb6\x56\xb7\xb9\x3e\xc2\xfa\x86\xf5\xf1\xba\x78\x3f\x37\x98" "\xd9\xe1\xf9\x39\xac\xcf\xf2\x5d\x7e\xdf\xb3\x5f\xfe\xcc\xc9\x8f\x6c" "\x8a\xf7\x75\xbf\xe1\xdb\x67\x9d\xf3\xe9\xc7\x07\x6b\x7f\x50\xc2\x7a" "\x9d\xde\xf9\x79\x6b\x9a\x6d\xbe\xee\x37\xac\x9f\x59\x7f\xfc\xbd\xe6" "\xb4\xb3\x56\x4f\xbe\xec\xb7\xe1\x3c\xfd\x68\x17\xe7\xe9\x86\x9f\xdf" "\x9c\xb5\xb2\xe9\x10\x2e\x3a\x0f\x6d\xab\xe7\xcf\x7a\xf5\x79\xbd\xd8" "\x3f\x17\x7b\xee\x7a\xb2\xf6\xb1\xe0\xe7\x62\x59\xfd\xba\x3f\x3b\xff" "\x8c\x15\xab\x57\x8f\xad\x5d\xf7\x5c\x5e\xbf\xcf\xd7\xfb\xd9\xcc\xc2" "\xd5\xd4\xed\xbc\x62\xad\x8f\x6d\x35\xff\xb2\x73\xad\x3f\x33\x4e\x3b" "\xd7\x69\xac\x8f\xec\xbc\x98\x3d\x3b\xb1\x43\xc1\xfa\x98\xd9\xb4\x3e" "\xca\xfb\x9f\xa4\x8d\xe3\x63\x5b\x7d\x3f\x8f\x75\x9d\x91\xcd\x6c\x65" "\xa4\x79\x95\xfd\xfb\x28\x65\xff\xfe\x61\xd9\x7f\xbf\xa0\xec\xdf\x93" "\x8e\xf5\xfb\x3a\x45\xcf\x8b\x02\x00\x00\x00\x00\x00\x00\xfc\xa1\xb9" "\x62\x79\x7a\x55\xfd\x38\xfb\xfb\x7f\xd9\xab\xd0\xb2\xbf\xff\xf7\xa6" "\xda\xcf\x5b\xa7\x7c\x7d\x57\x8b\xd7\x59\x00\xbc\xd0\xc5\x7e\x5d\x59" "\xa5\xe9\x75\x97\x8d\x7f\xc5\x20\x7c\x5d\x59\x56\xbf\xeb\xf6\xc9\x8c" "\xd7\x5c\xf6\xd5\x7b\xd2\x6b\x6b\xaf\xaf\x2a\x78\xfd\xd7\xb6\xfc\x7b" "\x46\x49\x07\xf3\xaa\xe6\xcc\x2b\x9b\xd9\x4b\xab\x71\xe6\x55\xf4\xfb" "\x9c\xe1\x0b\x30\x8b\x7e\x9f\x33\xac\xcf\xa6\xb9\xa0\x36\xca\xe6\x1f" "\xeb\xf7\x39\xc3\xfd\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\x1d\xef\xf5\xaf" "\x3f\xff\xef\xc1\xab\xe3\xfb\xaa\xcd\xbf\x6f\x99\x6d\x5f\xbf\xdd\xff" "\x0c\xb6\x9b\xd1\xe2\x17\x1b\x07\xb6\x7e\x7c\xee\xf7\x24\xbf\x18\x6c" "\x37\x10\x1e\xb4\xf5\x5f\xd7\xe0\xe3\x8c\xda\x2b\x5a\x5b\xfd\xbd\xa3" "\xa4\x31\x85\x39\x13\xf7\xbc\xe1\xf7\x33\x83\xfd\x56\xc2\xdf\x09\x68" "\xb1\xdf\xc5\x2d\xe6\x7f\x6f\x53\x9f\x66\x6d\xfd\x9e\xe7\x34\xce\x77" "\xf3\x6b\xff\xdf\x5f\x70\xbe\x9b\x9f\x53\xff\xae\xd7\x4c\xbe\x3c\xf0" "\xcf\xdb\x3c\xdf\x6d\xab\xdf\x0f\xea\xf4\xf7\x96\xaa\x39\xf3\xca\xee" "\xff\xde\x0b\xe2\xcc\x6b\xb8\x76\xbe\x7b\xbe\xce\x5f\xd3\x3d\x5f\x8e" "\x74\xb8\xbf\xc2\xf3\xcd\x48\xf3\x1e\x47\xa6\x38\xde\xea\xcf\x1b\x47" "\xa4\xc5\xe7\x9b\xad\xdb\xd7\x6d\x77\x6c\x5a\x7c\xbe\xc9\xb6\xab\x5f" "\xaf\x27\x06\xdb\x0d\x84\x07\x4d\x5d\x2e\xf3\x83\x8f\xcf\x9d\x6f\x5a" "\xa6\xd0\x74\xbe\xe9\xe0\xfc\x34\x1a\x9e\x9f\xd6\xa4\xc5\xe7\xa7\xf0" "\x7e\xfe\xac\x76\x9e\x29\xfb\xef\x55\x95\xfd\x77\x9d\xcb\xfe\xfb\xb7" "\x65\xff\x3d\x84\xf2\x5f\xff\x5e\xee\xdf\xa3\xf7\xfa\xfa\x9c\xfe\x5e" "\x5f\x0f\x00\x00\xc0\x14\xae\x7f\xec\x5f\xaf\xac\x1f\x67\x3f\xff\xcf" "\x1e\x33\x0e\x57\x93\x64\xb7\x24\x49\x2e\x08\xb6\x6b\xfc\xfb\x99\x6b" "\xce\x5a\x39\x56\x7b\x96\xf8\xdc\xb3\xd6\xd6\xff\x45\xae\xe9\x3e\xdf" "\x30\x92\x33\xef\xe7\x9e\x6f\xf0\x7c\x52\xcb\xfe\xcf\xdb\xf3\x49\x9e" "\xef\x69\xd9\xff\x79\x7e\xbe\xe7\xa2\x69\x3e\xdf\x73\xb9\xe7\x7b\x00" "\x00\xe0\xf7\xde\xa7\x7e\xf0\x85\x4b\xea\xc7\xd9\xe3\xff\xec\xd5\x59" "\xd9\xe3\xff\xa7\x82\xd7\x95\xc4\x7a\xff\x8c\x23\x83\x71\xd1\xeb\x87" "\xc2\xfa\x6c\x9e\x79\xef\x9f\x51\xf4\xb8\xa6\xe8\xf5\x96\xe1\xfe\xf2" "\x5e\x0f\x99\x4e\x51\xdf\xea\xf5\x96\xd9\xb4\x8e\xca\xed\xdf\x7a\x3e" "\x61\xfd\x44\xf7\x6e\x1e\x5f\x7e\xe9\xfb\x17\xdd\x78\xe7\x8f\x6e\xd8" "\x9c\xfb\xf8\x72\x61\xbb\xef\x9f\xd1\x78\x8f\x67\x75\xf8\xfe\xff\xf5" "\xaf\x02\xec\xe4\xfd\xff\xeb\xb7\xeb\x6f\xf1\xb6\x89\x79\xef\xff\x5f" "\xbf\xdd\x74\xde\xff\xbf\xb1\x4f\xb3\x30\xef\x4c\xac\x75\xf3\x27\xc1" "\xb8\x68\xdd\x84\xf5\xf1\xd6\x4d\xfb\xef\xe7\x9f\x4c\xb1\x6e\xc2\xfa" "\xa1\x64\xb8\xab\xe3\xfa\xee\x9b\x1e\x3c\xe9\xee\x4d\x77\x3d\x9d\x7b" "\x5c\x9f\xdc\xee\x71\xdd\x98\xd8\x70\x87\xef\xcf\xdf\xcd\x71\xfd\xa1" "\xf0\xb8\x1e\x6e\x9e\x55\xde\xfb\xf3\xc7\x38\xae\x3f\xde\x03\xc7\xf5" "\xbb\x82\x71\xd1\x71\x1d\xd6\x97\xfd\xfd\x20\xdc\x5f\xd1\x71\xdd\xaa" "\x7e\xaa\x75\x93\xff\x7e\xa3\xad\xe7\x13\xd6\x0f\x25\x73\xba\x5a\x37" "\xbb\x7d\x6c\xd6\xa9\xbf\xbb\x65\x4d\xfe\xf3\xd5\xe7\xb5\xbb\x6e\x1a" "\xef\xf1\x9c\x0e\xd6\xcd\xfd\x5d\xae\x9b\x1f\x87\xeb\xa6\xf9\x65\xb3" "\x2d\xd7\xcd\x43\x91\xd6\xcd\xe3\x3d\xb0\x6e\x8e\x0e\xc6\x45\xeb\x26" "\xac\x2f\xfb\xfb\xc1\x31\x2d\xea\x93\x29\xd6\x4d\x58\x3f\x94\xcc\xeb" "\xf2\xe7\x48\x3b\xaf\x19\xbd\xa3\xf2\x68\xee\x71\xbd\xb8\xdd\xe3\xba" "\x31\xb1\x79\x1d\x1c\xd7\x07\xa7\xdd\x1d\xd7\x47\x04\xdb\xf5\xcf\x6b" "\x9e\x55\xab\xe3\xfa\xd8\x34\xce\x71\x7d\x52\x53\x9f\x66\x79\xc7\xb5" "\x9f\xcb\xe5\xf4\x7f\x81\xbc\xce\xbb\xf8\xe7\xae\x7e\xee\xd7\xb2\xbf" "\x9f\xfb\x01\x00\x00\x00\x3d\xe6\xb2\x9d\xf7\x69\x78\x03\xed\xec\xe7" "\xff\xd9\x73\x07\xd9\xdf\xff\xfb\x61\x6d\x9c\xdd\xde\xfe\xeb\xff\xa7" "\xf7\xbc\x6d\x8b\xa7\xf2\xb7\xc8\x9e\xb7\x6d\x7f\x1e\xd3\xfb\x79\x62" "\xee\x3c\x4e\xee\x74\x1e\xd3\x7b\x5e\x31\x77\x1e\x67\x77\x3a\x8f\xe9" "\x3d\x7f\x9a\x3b\x8f\x95\x9d\xce\x63\x7a\xcf\x23\xe6\xce\xe3\x84\x4e" "\xe7\x31\xbd\xe7\x1b\x73\xe7\x71\x64\xa7\xf3\x98\xde\xf3\x86\xb9\xf3" "\x18\xed\x74\x1e\xd3\x7b\x7e\x34\x77\x1e\xfb\x75\x3a\x8f\xe9\x3d\x4f" "\x9e\x3b\x8f\xcb\x3b\x9d\xc7\xf4\x7e\x9e\x91\x3b\x8f\x0b\x3b\x9d\xc7" "\xf4\x9e\xd7\xdf\x3b\x6f\x1e\x7b\x77\x3a\x8f\xe9\xbd\xee\x28\x37\x8f" "\x85\xd9\xf3\xe7\xe5\xfe\x1c\xdb\xf3\xe7\x00\xc0\x1f\xaa\xe3\xef\xf9" "\x51\xc3\x4b\x3d\xb2\xc7\xff\xd9\xf5\x53\xf6\xf8\xff\xa6\xda\x38\xbc" "\xae\x2a\xfb\xba\xb8\xec\xc7\xa9\x65\x3f\x1e\x2f\xfb\xf1\x4b\xd9\x8f" "\x07\xca\x7e\x7c\x5e\xf6\xe3\xee\xf2\x1f\xa7\x94\xfb\x38\xb9\xec\xe7" "\xad\xca\x7e\xbe\xa1\xec\xc7\x71\x65\x3f\xbf\xe8\x71\x22\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x0b\xd3\x17\xf7\xbb\xf4\xc4\xfa" "\xf1\x35\xf7\xef\x39\xb6\x71\xc9\x71\x8f\x55\xd3\x24\x49\x73\xb6\x19" "\x6f\x21\xfb\x5c\xa5\x7f\x74\x74\xa4\x8b\x79\x5c\x79\xec\x39\x47\x5c" "\x7e\xdd\xc6\x87\xb3\xf1\xc4\xbe\x87\xab\x5d\x34\x02\x00\x00\x00\x9a" "\xfc\xe3\xfe\x57\xaf\xa8\x1f\x67\x8f\xc3\xb3\x87\xde\x69\x32\x90\x0c" "\x57\x1f\xad\x0e\x25\x3b\xb7\xdc\x3e\x7b\x8e\x60\x41\x6d\x34\x1a\xdc" "\x9e\xf7\x1c\x42\x26\xeb\x1b\xd6\xc5\xea\xdb\x57\x52\xdf\x4a\x49\x7d" "\xc3\xa7\x3c\x62\xf5\x9d\x51\x52\xdf\xfe\x92\xfa\xce\x2c\xa9\xef\x40" "\x49\x7d\x07\x4b\xea\x3b\xab\xa4\xbe\x43\x25\xf5\xdd\xae\xa4\xbe\xc3" "\x25\xf5\xdd\xbe\xa4\xbe\xb3\x4b\xea\x3b\xa7\xa4\xbe\x73\x4b\xea\xbb" "\x43\x49\x7d\x5f\x54\x52\xdf\x79\x25\xf5\xdd\xb1\xa4\xbe\x2f\x2e\xa9" "\xef\x4b\x4a\xea\x3b\xbf\xa4\xbe\x3b\x95\xd4\xf7\xa5\x25\xf5\x0d\xaf" "\xa6\x62\xf5\xdd\xa5\xa4\xbe\x2f\x2b\xa9\xef\xae\x25\xf5\x7d\x79\x49" "\x7d\xc3\x9f\x6d\xc5\xea\xbb\x5b\x49\x7d\x77\x2f\xa9\xef\x82\x92\xfa" "\xbe\xa2\xa4\xbe\x7b\x94\xd4\x77\xcf\x92\xfa\xee\x55\x52\xdf\xbd\x4b" "\xea\xfb\x47\x25\xf5\xfd\xe3\x92\xfa\xbe\xb2\xa4\xbe\xaf\x2a\xa9\xef" "\xab\x4b\xea\xfb\x9a\x92\xfa\xee\x53\x52\xdf\x85\x25\xf5\xdd\xb7\xa4" "\xbe\xaf\x2d\xa9\xef\xeb\x4a\xea\xbb\x5f\x49\x7d\xf7\x2f\xa9\xef\xa2" "\x92\xfa\xbe\xbe\xa4\xbe\x8b\x4b\xea\xbb\xa4\xa4\xbe\x6f\x28\xa9\xef" "\x01\x25\xf5\x7d\x63\x49\x7d\xdf\x54\x52\xdf\x37\x97\xd4\xf7\xc0\x92" "\xfa\x8e\x16\xf4\x1d\xe8\xb2\xef\x5b\x82\xdb\xfb\x1a\xfa\xf6\x75\x3d" "\xdf\x83\x4a\xea\xfb\xd6\x92\xfa\x1e\x5c\x52\xdf\x43\x4a\xea\x7b\x68" "\x49\x7d\x97\x96\xd4\xf7\xb0\x92\xfa\x2e\x0b\x6e\x6f\x5c\x17\x95\xae" "\xfb\x1e\x35\xe5\x7c\xbb\xef\x7b\x4c\x87\x7d\x37\xb6\xd9\xf7\x1d\x1d" "\xf6\x2d\x9a\x70\xd6\xf7\x9d\xc1\xed\x95\xa2\xf9\xb6\xd9\xf7\xc4\x92" "\xfa\x9e\x5c\x52\xdf\xe5\x25\xf5\x3d\xb5\xc3\xbe\x03\xe1\x0f\xd6\x72" "\xfa\x8e\x05\xb7\x57\x1b\xfa\x56\x9b\xbe\x5f\xb4\xdb\xf7\x81\xe0\x7e" "\xc5\xfa\xfe\xf6\x83\x92\xfa\xfe\xb0\xa4\xbe\x3f\x2a\xa9\xef\x8f\x4b" "\xea\xfb\x93\x92\xfa\xfe\x67\x49\x7d\x7f\x5a\x52\xdf\x9f\x95\xd4\xf7" "\xc1\x92\xfa\xfe\xbc\xa4\xbe\x0f\x95\xd4\xf7\xe1\x92\xfa\xfe\xa2\xa4" "\xbe\xbf\x2c\xa9\xef\xe6\x92\xfa\x3e\xd2\x75\xdf\x9d\xc2\x97\x4e\x34" "\xf4\x7d\xb4\xa4\xf9\xfe\x2a\x28\xec\x8b\xd4\xf7\xb1\x92\xfa\x3e\x5e" "\x52\xdf\x5f\x97\xd4\xf7\x89\x92\xfa\x3e\x59\x52\xdf\xdf\x94\xd4\xf7" "\xb7\x25\xf5\x7d\xaa\xa4\xbe\xbf\x2b\xa9\xef\xd3\x25\xf5\x7d\xa6\xa4" "\xbe\xcf\x96\xd4\x77\x3c\x72\x5f\x00\x80\xe9\xba\xf9\x13\x8f\x34\x3c" "\x65\x9b\xbd\xfe\x3f\x7b\x5d\x77\x9a\x8c\x24\xc3\xd5\xd7\x6f\xbd\x9e" "\x39\x32\xd8\x3e\xab\xcb\x7b\x9e\xf0\xf2\x36\x9f\xcf\x3b\xba\xa4\xbe" "\x7f\x52\x52\xdf\x77\x95\xd4\xb7\xe8\xf9\xd2\x91\xa0\x6f\xd1\xf3\xa5" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2f\x14\x0f\xfc" "\x7b\xf5\x17\xf5\xe3\x6b\xee\xdf\x73\x6c\xe3\x92\xe3\x1e\x9b\x95\x26" "\x49\x9a\xb3\xcd\x78\x0b\xd9\xe7\x2a\xfd\xa3\xa3\x23\x5d\xcc\xe3\x4b" "\xdf\xbf\xe8\xc6\x3b\x7f\x74\xc3\xe6\x6c\x3c\xb1\xef\xe1\x6a\x17\x8d" "\x00\x00\x00\x80\x26\xff\x6d\xf8\x82\x8f\xd7\x8f\xb3\xc7\xe1\xd9\x43" "\xef\x34\x19\x48\x86\xab\x95\xa4\x92\xec\xb4\x65\x3c\xf6\x5c\xe9\x68" "\x92\x3c\xf7\xb8\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7e\x9f" "\x7d\xfc\xb2\x63\x06\xea\xc7\xd9\xfb\xff\x0f\x3d\xcf\xef\xff\x7f\xc7" "\x51\xb7\xdd\xbb\x74\xc1\x1e\x17\x67\x63\xef\xff\x0f\x00\x00\x00\xf1" "\x3c\xf1\xcd\x7f\xb9\xb2\x7e\x9c\x3d\x0e\xef\xaf\x8d\x27\xdf\xff\xff" "\xf5\xc9\x8c\x74\xa7\x86\xed\xb2\xe7\x06\x96\x05\xfd\xf2\xea\x8e\x6c" "\xb3\xee\x98\x82\xba\xbe\xda\xc7\x77\xb4\x59\xf7\xce\x36\xf7\x7b\x62" "\x9b\xfd\x4e\x6e\xb3\xdf\xbb\x5a\xd4\xcd\x68\xd1\xef\xd4\x36\xf7\x3b" "\x56\x50\x77\x7e\x6d\xc7\x0f\xe4\x3d\x69\x03\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xc0\xb4\xbc\x72\xd1\x4b\x6e\xaa\x1f\x67\xef\xff\x5f\xad" "\x3c\xbf\xef\xff\x7f\xe5\xb1\x3b\xaf\x19\xbd\xa3\xf2\x68\x36\xf6\xfe" "\xff\x00\x00\x00\x10\xcf\xe6\xbf\x39\xed\xe5\xf5\xe3\xec\x71\x78\xe3" "\xfb\xff\x7f\x2a\xe9\x4f\x77\x4f\x1e\xad\x26\x49\xa5\xa0\xdf\x40\xf6" "\x31\xdd\x3d\x39\x29\x4d\x92\xfe\xba\xcf\xb5\xda\xf6\x43\x39\x4f\x32" "\x4c\xec\xef\xd4\xbe\xc6\x6d\xfa\x5b\xd4\x8d\xd6\xd5\x7f\x28\xd8\x47" "\x7f\x8b\xde\xf5\xf5\x8f\x84\xf5\x7d\x53\xd7\x7f\xa1\x12\xd4\xb7\xb8" "\x43\xf5\xf5\x27\xf4\x35\x3e\x87\xd2\xdf\xe2\xf9\x8c\xfa\xfa\xdd\xc3" "\xf9\x0c\x4c\x5d\x5f\x9d\x91\x24\xf5\x53\xee\x1f\x2c\xee\x5f\x9f\x61" "\xff\xac\xa9\xeb\x07\xaa\x41\xff\xa1\xa9\xeb\x3f\x14\xf6\x1f\x9e\xba" "\xfe\xb2\xb0\xff\xec\xa9\xeb\x7f\x1c\xf6\x9f\x33\x75\xfd\x11\xc1\xf1" "\xd7\x3f\x2f\xbf\x7e\xe2\x78\xdd\xaf\xaf\x71\x3e\x95\x16\xcf\x80\xad" "\xc8\xea\xe7\x4f\x7e\x5c\x5c\xb7\xfd\x95\x95\x70\xfb\xe6\x03\x6a\xeb" "\x97\x34\xf8\xd4\xc4\xf6\xc7\x36\xad\x97\xe6\x03\x2c\x8b\x74\xb4\xd2" "\xbc\xfd\x9a\x34\x49\xaa\x0d\xdb\x37\x1f\x70\xd9\x3d\x1a\x09\x3e\x4e" "\x6c\xff\xc5\xa4\x71\xfb\x81\x4a\x73\xc0\x69\x70\x3f\xea\xd7\xfb\x89" "\xc1\xfe\x07\x5a\x7c\x81\xb2\xed\xe7\x07\x1f\x27\xbe\x5e\x07\x07\xf7" "\xbf\xaf\x92\x36\x7d\x01\xb2\xfb\x9d\x7d\x7d\xeb\xf7\xd7\x57\x6d\xae" "\x1f\xa9\xeb\x7f\x6c\x50\x3f\xa3\xfe\x89\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\xbb\x72\x4e\xfd\xf8\x9a\xfb\xf7\x1c\xdb\xb8" "\xe4\xb8\xc7\x66\xa7\x49\x92\xe6\x6c\x33\xde\x42\xf6\xb9\x4a\xff\xe8" "\xe8\x48\x17\xf3\x18\xf8\xec\xf7\xde\x76\xd0\x9d\x87\x7c\x22\x1b\x4f" "\xec\x7b\xb8\xda\x45\x23\x00\x00\x00\xa0\xc9\xeb\xff\x65\xd9\x23\xf5" "\xe3\xec\x71\x78\x5f\x6d\x9c\x26\x03\xc9\x70\xb5\x9a\x54\x93\x97\xd7" "\xc6\x8d\xd2\xda\xf3\x01\xcf\xd7\x7c\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb6\x95" "\x1d\x3e\x34\x7e\x63\xfd\xf8\x9a\xfb\xf7\x1c\xdb\xb8\xe4\xb8\xc7\x06" "\xd3\x24\x49\x73\xb6\x19\x6f\x21\xfb\x5c\xa5\x7f\x74\x74\xa4\x8b\x79" "\x8c\xdf\x7e\xd0\xd0\xec\xa7\xfa\x2f\xcd\xc6\x13\xfb\x1e\xae\x76\xd1" "\x08\x00\x00\x00\x68\x72\xd4\xc1\x17\x3d\x51\x3f\xce\x1e\x87\xf7\xd5" "\xc6\x69\x32\x90\x0c\x57\x67\x25\xb3\x92\x17\x4f\x7e\xbe\xee\xb1\xfe" "\x84\xbe\xa0\x5f\x9a\xe4\x3f\x6f\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\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\x42\xb6" "\xf3\x8b\x1e\x3a\xb3\x7e\x7c\xcd\xfd\x7b\x8e\x6d\x5c\x72\xdc\x63\x03" "\x69\x92\xa4\x39\xdb\x8c\xb7\x90\x7d\xae\xd2\x3f\x3a\x3a\xd2\xc5\x3c" "\x3e\xb8\x7a\xd3\xcd\x17\x1e\xbf\xec\x3b\xd9\x78\x62\xdf\xc3\xd5\x2e" "\x1a\x01\x00\x00\x00\x4d\x7e\xf9\xdb\xbf\x3a\xaf\x7e\x9c\x3d\x0e\xef" "\xab\x8d\xd3\x64\x20\x19\xae\x0e\x24\x03\xc9\x8e\xb5\x71\xb3\x2d\x8f" "\xff\xe7\x3c\x1f\xb3\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\x80\x6d" "\xe3\xbf\x5c\x7a\xf7\x01\xf5\xe3\xec\xfd\xff\x87\x9f\xe7\xf7\xff\xbf" "\xfb\xa6\x07\x4f\xba\x7b\xd3\x5d\x4f\x67\x63\xef\xff\x0f\x00\x00\x00" "\xf1\x5c\x35\xe3\x90\xff\x55\x3f\xce\x1e\x87\xf7\xd7\xc6\x93\xef\xff" "\xbf\x2a\x99\x99\xec\x52\xbb\x65\x59\xc3\xf6\xd5\xb4\xb2\xe5\xe3\x68" "\xce\xf3\x02\xcf\x6d\x77\x64\xc3\x76\xb3\xda\xde\xee\xa8\x86\xed\x86" "\xda\xde\xee\xe8\x86\xed\xe6\xb5\xbd\xdd\x31\x0d\xdb\xcd\x6e\x7b\xbb" "\x77\x34\x6c\x37\xd8\xf6\x76\xef\x6c\xd8\x6e\xa0\xed\xed\xfe\xa4\x61" "\xbb\xe1\xb6\xb7\x3b\xb1\x61\xbb\xb4\xed\xed\x4e\x6e\xd8\xae\xaf\xed" "\xed\xde\xd5\xb0\xdd\x9c\xb6\xb7\x5b\x9e\x34\x4e\xb4\xdd\xed\x4e\x6d" "\xd8\xac\xd2\xf6\x76\x63\x8d\xfb\x4b\x26\x9f\x7c\x1a\xa8\x6d\x37\x90" "\xf5\x9b\x33\xf9\x71\xeb\x76\x23\xcd\xdb\x8d\x24\x49\x32\xbf\xb6\xdd" "\xfc\xda\xad\xfd\x73\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\xc1\xfb\xd4" "\xe6\xbf\xdd\x5c\x3f\xbe\xe6\xfe\x3d\xc7\x36\x2e\x39\xee\xb1\x34\x4d" "\x92\x34\x67\x9b\xf1\x16\xb2\xcf\x55\xfa\x47\x47\x47\xba\x98\xc7\x57" "\xcf\x7c\x68\x78\xe6\x81\x77\x5d\x9f\x8d\x27\xf6\x3d\x5c\xed\xa2\x11" "\x00\x00\x00\xd0\xa4\xff\xa9\x15\x7b\xd4\x8f\xb3\xc7\xe1\xd9\x43\xef" "\x34\x19\x48\x86\xab\x17\x27\xb3\x93\x97\x6d\x79\xdc\x9f\xcc\x69\xdc" "\xbe\x52\xfb\xf8\xaa\x0d\x57\x1f\xbf\xf8\x07\x8f\x2f\x4e\x92\x85\x2f" "\xbe\x77\xd7\xfc\x07\xee\x9b\xc7\x0e\x3f\xed\x80\xe4\x9b\x9f\xbb\x62" "\x6d\xf6\xef\xe4\x2d\x49\x12\x6c\xd3\x37\xf9\x61\x4e\x6d\xbf\xe9\x9c" "\x96\x9f\x4e\x3e\xb2\xe1\x82\x5f\xdd\xf6\xba\x5b\x9f\x4a\x92\x85\x3b" "\x56\x76\x29\xda\x6f\xf3\xbf\x81\x74\x74\xfc\x15\x23\xf7\x5c\xfb\x9b" "\x4f\x3f\x5e\x69\xdc\x7f\x5f\xce\xfd\x7e\x7a\xf7\xbd\xee\x39\xf2\x97" "\xef\xbf\x69\x62\xff\x53\xdd\xef\xb7\x7d\xf8\xe7\xef\x3d\xa0\xc5\xbf" "\xcd\xfb\x3f\x77\xce\x5b\x6e\x3d\xe5\xe1\x7f\x3d\xbc\x71\xff\x95\x60" "\xff\xd9\x9e\xf6\xbf\x7f\xe1\xe6\x67\xbf\x7e\xfc\xdd\x93\xfb\x1f\x48" "\x06\x6a\xb7\xbf\xb4\xda\xd5\xfe\x07\x47\xc7\x07\xff\xe2\xcc\x43\x9f" "\x39\x62\xe3\xbe\x8d\xfb\xaf\xe6\xdc\xff\x25\xef\x7b\xcd\x27\x7f\x78" "\xdc\x09\x7b\x4c\xec\xff\xb1\x97\xcf\xda\xba\xff\xbd\xba\xbb\xff\x83" "\xa3\xe3\x3b\xbe\xe1\xc4\x3d\xce\x1b\xef\x7b\x57\xe3\xfe\x67\xe4\xec" "\xff\xc6\x6f\x3c\xbe\xe8\x94\xef\xfd\xec\xbb\xe1\xfd\x9f\x15\x34\xae" "\x3f\xe2\xa6\xce\x7f\xd9\xaf\x9f\xfc\xc8\xd7\x16\x9d\xff\xfe\xc6\xfd" "\xf7\xe7\xe4\x3f\xbe\xa0\x6f\xe4\xe8\x7f\xbb\x65\x97\x6c\xff\xf3\x6b" "\xb7\xef\xbd\x20\x7f\xff\xf5\xff\x3e\x77\x24\x67\xfb\x1f\xb9\x76\xf5" "\x7e\x67\xec\xbc\xfb\x49\x8d\xfb\x9f\x99\x73\xff\x97\xdf\xf7\xec\x97" "\x3f\x73\xf2\x23\x9b\xc2\xfb\xbf\x72\x8a\xfb\xdf\xb8\xff\xf0\xfe\xdf" "\xf0\xed\xb3\xce\xf9\xf4\xe3\x83\x6f\x0d\x3f\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\xfc\x7f\xf6\xee" "\x25\x34\xae\x2a\x8e\x03\xf0\xb9\xb9\x33\x93\x69\x74\x4a\x2c\x0a\xf5" "\x1d\x45\xb3\xb0\x98\x47\xad\xb1\xb1\x22\x23\x62\x40\xdd\x06\x51\x84" "\x6a\xb4\x93\x12\x33\x49\x6c\x26\xc1\x66\x2a\x1a\x1f\x58\x44\x45\x42" "\x02\xea\x4a\x17\x66\x63\x71\x25\x2e\x5c\xb9\x50\xa8\x82\xd4\x85\x82" "\x50\xc8\xc2\xa5\xe0\x2e\x15\x05\xd1\xc8\x74\xee\x4d\xae\x26\xb1\x30" "\x6a\xa4\xf0\x7d\x8b\x7b\xce\x9f\xf3\x3b\x8f\x10\x18\x38\x77\x73\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xa0\x61\xf6\xe1\x1f\x1e\xcb\xd6\x8b\x2b\xdd\x95\xf9\xc1\xe1" "\xd5\xb6\x28\x84\x68\x9b\x39\x6b\x5b\x48\xc7\xe2\x42\xb9\xdc\xd5\xc2" "\x39\x8e\x5d\x33\x38\x34\x7b\xa4\xef\x48\x5a\x37\xf6\x2e\xe5\x5a\x58" "\x08\x00\x00\x00\xd8\xe4\xd5\x4b\x97\xbf\xc8\xd6\xe9\x3d\x3c\x4e\xea" "\x28\x14\x43\x29\x77\x4b\x28\x84\x8e\xf3\xf7\xfe\x9b\xba\xce\x2c\xfd" "\xb2\x7c\x2e\x0e\x9d\xc9\x78\xd2\xe6\xaa\x53\xb5\x99\x7d\xa3\x53\xb3" "\x93\xcd\x2b\x7c\x9a\x7f\xf7\xdb\xa9\x63\xcb\xe7\x76\xdd\x9b\xe6\xdb" "\x93\xb6\x38\x3a\x56\xad\xf4\x3c\x39\x55\x4d\x6e\xfc\xf9\x24\xff\x4c" "\xe7\x3d\x1f\x3f\xfe\xe3\x77\xf7\xa7\xf9\xb6\x74\xfd\x46\xbe\x6f\x23" "\xf7\xe9\xbe\xdf\xef\x7a\xe7\xb5\xf1\x87\xd2\x5c\x21\xbb\xee\xfe\x8d" "\x5c\xd7\x52\xf5\xc0\xf8\xd5\x37\x3e\xba\x65\xee\xb6\x8d\xdc\x03\x3f" "\xfd\xfc\xe6\xe9\x81\xfa\x73\x69\x2e\x9f\xcd\xf5\x6f\xe4\x76\xbd\x3c" "\x31\xf4\xdb\x83\xf3\xfd\xe9\xb9\xe2\x6c\x2e\x73\xbe\x2b\xee\x7c\xe4" "\xe6\xe3\x6b\x6d\x87\xd7\xcf\x9f\xb4\x1d\xc9\x7a\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x17\x9b\xa1\xda\x7d\xef\x67\xeb\xc5\x95\xee\xca\xfc\xe0" "\xf0\x6a\x88\x43\x88\xb6\x99\xb3\xb6\x85\x74\x2c\x2e\x94\xcb\x5d\x2d" "\x9c\xe3\x86\xb7\x3a\x9e\xf8\xf5\xd4\xe4\xdb\x69\xdd\xd8\xbb\x94\x6b" "\x61\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x68" "\xc1\x87\x77\x7f\xf9\x75\xb6\x5e\xff\xfe\x7f\xb4\xb3\xdf\xff\x3f\xb9" "\xb2\xf0\xc1\xd9\x2b\xeb\xbd\x69\xed\xfb\xff\x00\x00\x00\xf0\xef\xf9" "\xea\xf2\xab\xae\xcf\xd6\xe9\x3d\x3c\xbd\x7a\x47\xa1\x18\x4a\xb9\xfe" "\xd0\x1e\x15\xfe\x34\xaf\x98\xbc\x07\x28\x26\x75\xdc\xd9\x6c\xaf\xdb" "\x1d\xf2\x3d\x27\x3f\x3b\x13\x2d\x35\xdf\x1e\x74\x44\x97\xfd\xed\xbc" "\x5c\x32\xaf\x77\x66\xe2\xe9\xde\xda\x5c\xfd\xd6\xb1\x89\x91\xa3\x95" "\xa3\x95\xc9\x03\x7d\x03\x77\xf4\x0d\x0c\x0c\xf4\x1f\xec\x1d\x1d\xab" "\x56\xfa\x9a\xcf\xd0\x7e\x81\xf5\xf2\xc9\x7a\xb5\xb9\xfa\xf8\x48\xb5" "\x5a\x99\xae\x35\xeb\xbf\x9e\x7f\x6f\x32\x6f\x6f\x52\x17\x92\x79\x87" "\x7b\x42\xbe\xd1\xbe\x90\x9c\x7f\xcf\x05\xf6\x6b\xdf\xb4\xdf\x7f\xd7" "\xd9\xf6\x9f\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xec\x88\xa1\xcf\xcb\x67\xb3\xf5" "\xe2\x4a\x77\x65\x7e\x70\x78\x35\x8e\x42\x88\xb6\x99\xb3\xb6\x85\x74" "\x2c\x2e\x94\xcb\x5d\x2d\x9c\xe3\x95\x13\x0b\x13\x9f\x9c\xfe\x66\x29" "\xad\x1b\x7b\x97\x72\x2d\x2c\x04\x00\x00\x00\x6c\xf2\xd1\xc2\x8b\xaf" "\x67\xeb\xf4\x1e\x1e\x27\x75\x14\x8a\xa1\x94\xeb\x08\xf9\x70\xc9\xf9" "\x7b\xff\x7b\x4f\x1d\x3c\xf4\xfd\xa9\x3d\xd7\xe6\x3b\x93\x40\xa1\x10" "\x8e\x8f\xcc\xcc\x4c\xef\x6f\x3e\xd3\xdc\xed\x87\x5e\x3a\xf1\xec\x1b" "\xbb\x9f\xdf\x94\xeb\x6f\x3e\x77\xf6\xaf\x04\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf8" "\xe7\x6a\x73\xf5\xf1\x91\x6a\xb5\x32\xad\xa3\xa3\xa3\xb3\xde\xf9\xbf" "\x7f\x99\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xfe\x60\x07\x0e\x04\x00\x00\x00\x00\x80\xfc\x5f\x1b" "\xa1\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\x0a" "\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\xab\xbf\x10\xa9\xca" "\x37\x0e\xe0\xcf\x99\x99\x9f\x3b\xbb\xe3\xb8\xbb\xe2\x85\xbf\x8a\x30" "\x24\xf4\x26\xf2\xa2\x62\xbb\x88\x36\xff\xad\xf9\xa7\x24\x10\x82\x0a" "\xa4\x56\x8b\x48\x49\x42\x92\x52\xda\x36\xb6\x16\x2c\xd0\x28\x92\x6e" "\x24\x88\x44\x17\xea\x22\x02\xed\x22\xd2\x60\x43\x56\x0a\x94\x2e\x32" "\x2b\x21\x22\x22\x43\xbc\xa9\xb0\xc4\x98\xf6\x1c\x59\x67\xf7\x30\x71" "\x76\x23\x88\xcf\x07\x76\x5f\xde\xf7\xbc\xef\x77\x9e\x39\xf3\xcc\x19" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x9f\x36\xab" "\x6b\xd9\xb9\x89\xf3\x7a\xa5\x5e\x69\x8c\xa3\x43\x4f\xfd\xb2\xf9\xb3" "\x3d\x07\xbf\x7c\x7c\xe3\xe7\x03\x77\xfc\x7a\x7e\xf3\xe9\xc3\x67\x7e" "\xdb\xd4\xf7\xc8\x81\x93\x83\xaf\x6e\x1b\x6c\xbf\x6d\xa4\x67\xe4\xd1" "\xfd\x43\xcb\xde\xf9\xe0\xdd\xa7\x1f\x9a\x3b\xf8\xfe\xf7\x2d\x5f\x68" "\xc7\xf8\x30\x2f\x9d\x56\x23\x92\x93\x49\xc4\x0f\x97\x16\x75\xbd\xf7" "\xca\x86\xf9\x8d\xb5\x24\x22\xda\x92\xca\x40\x74\x77\x3f\x5f\x3a\xda" "\x9d\x34\x25\x2c\xb8\x18\x11\xfd\xe9\xbe\x7a\xe5\xfa\xbf\xfe\x9f\x3d" "\x3a\x7e\x71\xd7\x87\x2f\x3c\xd6\x18\x07\x76\xb7\x5d\x75\xa8\xb3\x29" "\xa4\xf9\x7d\x45\xad\x9c\xd5\x33\x3e\x56\xaf\xae\x97\xff\x96\x46\xff" "\xd5\x22\x62\x4f\x3a\x5f\x75\xd3\xd8\xa6\x8f\xe7\xf7\x5d\xd8\x7d\x66" "\xd5\xa5\x5b\x87\xb6\xff\x1c\xa5\x6c\x67\x6f\x34\x3a\x69\x67\xda\x57" "\xd1\x3b\x67\xe3\x4c\xd7\x91\x39\xfb\x55\x29\x1a\x5d\xd8\x93\xf6\x61" "\x32\x8d\xba\xd6\x47\x44\xc7\x84\x79\x4f\x8b\x3a\x16\xff\xcd\x7a\x17" "\xe6\xcc\xaf\x69\x5a\xaf\xb7\xc8\xc9\xae\x2f\x6a\xb1\xbf\xf9\xcb\x9f" "\x29\x37\x8d\xd5\x16\xaf\x37\x5d\x79\x75\x14\xdd\xd7\xca\x9c\x19\xca" "\xc9\xd3\xaa\xce\xec\x79\xf9\x76\x3a\xce\x2b\x90\x3f\x3b\xfd\x6b\xd5" "\x0b\xd3\xd1\xf8\xfc\xdb\x23\xe2\xae\x74\x9e\xf5\x41\x67\x7a\x0f\xdb" "\x2b\x0b\x9a\x4e\xcc\x8e\xb5\xb1\x2e\xee\x89\xe5\xb1\x22\x56\x46\x5f" "\xac\x8a\xd5\x71\x77\xac\x89\xf5\xd1\x31\x69\x6f\x3d\x67\x6f\x77\xb2" "\x3e\x66\x4f\xda\x9d\x44\x57\x52\x4e\x6b\x2a\x27\x51\x4a\xa2\x72\xe5" "\x36\x2f\x4f\x22\x66\x4d\xd8\x5b\xbd\x72\xa6\x14\xff\x9b\xb0\xde\xf8" "\x7a\xb7\x4d\xf1\x3e\xb3\xf5\x2c\x70\x38\x7d\x0e\xd4\xd2\xb5\x5a\x32" "\x77\xd2\x99\xcb\x53\xc8\xae\xbd\xf4\xf5\xde\x43\xa7\xff\xff\xcc\xcd" "\x5d\x53\xdd\xd4\x46\xe6\xce\x24\xcd\x4f\x0a\xe5\x7f\xb2\xe5\xa7\x7a" "\xdb\x9d\x63\xfb\x72\xf3\xfb\xb3\xfc\x52\xa1\xfc\x6d\xd7\xdd\xbe\x72" "\x7b\xff\x92\xfe\xdc\xfc\x27\xb3\xfc\x72\xa1\xfc\x17\x9f\xdd\xbb\xe5" "\xc8\xa7\xa7\x5e\xcb\xcd\x1f\xce\xf2\x2b\x85\xf2\x5f\xbe\x6f\xdb\x9a" "\xe1\xd7\x07\xce\xe5\x3d\x77\x93\xc5\x59\x7e\xb5\x58\xfd\x4f\x8c\x1e" "\xdc\xb9\x61\xf5\x17\xb9\xf5\xdf\x9f\xe5\xb7\x17\xca\xbf\x7c\x64\x69" "\xad\xf3\xe2\xac\xa1\xdc\xfc\xb5\x59\x7e\x47\xa1\xfc\x8f\xbe\xdd\xf5" "\xd6\xf1\xef\xf6\x9f\xcf\xcd\x5f\x92\xe5\xd7\x0a\xe5\x1f\x5b\x77\xf8" "\x54\xdf\xc2\x1b\x9f\xcb\xcd\xbf\x25\xcb\xaf\x17\xca\x3f\x71\xe0\xc7" "\x07\x4e\x8c\x8e\xfd\x91\x9b\xff\x60\x96\xdf\x59\x28\xbf\x7a\xe8\x9b" "\x7b\x97\x1e\x5f\xf1\x66\x6e\x7e\x6f\x96\xdf\x55\x28\xff\x86\x37\x3a" "\x1e\xfe\x7d\x64\xeb\xbe\xbc\xdf\xd5\x64\x47\x96\x3f\xaf\x60\xff\x5f" "\xbb\xb5\xf7\x58\xf9\x42\x6e\xfd\x3d\x33\xf5\x4b\x0a\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xfc\xdb\xfe\x0c\x00\x00\xff\xff\xa6\x8a\x90\x08", 26469); syz_mount_image(/*fs=*/0x200000000000, /*dir=*/0x200000000300, /*flags=MS_SILENT*/ 0x8000, /*opts=*/0x200000000200, /*chdir=*/0x21, /*size=*/0x6765, /*img=*/0x20000000cf00); break; case 1: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 32 00} (length 0x8) // } // flags: open_flags = 0x121142 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x200000000080, "./file2\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200000000080ul, /*flags=O_SYNC|O_NOFOLLOW|O_NOCTTY|O_CREAT|O_RDWR*/ 0x121142, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: // ioctl$FICLONERANGE arguments: [ // fd: fd (resource) // cmd: const = 0x4020940d (4 bytes) // arg: ptr[in, file_clone_range] { // file_clone_range { // src_fd: align64[fd] { // v: fd (resource) // pad = 0x0 (4 bytes) // } // src_offset: int64 = 0x0 (8 bytes) // src_length: int64 = 0x0 (8 bytes) // dest_offset: int64 = 0x100000 (8 bytes) // } // } // ] *(uint32_t*)0x200000000580 = r[0]; *(uint64_t*)0x200000000588 = 0; *(uint64_t*)0x200000000590 = 0; *(uint64_t*)0x200000000598 = 0x100000; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x4020940d, /*arg=*/0x200000000580ul); break; case 3: // openat arguments: [ // fd: fd_dir (resource) // file: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 30 00} (length 0x8) // } // flags: open_flags = 0x101100 (4 bytes) // mode: open_mode = 0x0 (2 bytes) // ] // returns fd memcpy((void*)0x2000000001c0, "./file0\000", 8); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x2000000001c0ul, /*flags=O_SYNC|O_NOCTTY*/ 0x101100, /*mode=*/0); if (res != -1) r[1] = res; break; case 4: // ioctl$EXT4_IOC_GROUP_ADD arguments: [ // fd: fd (resource) // cmd: const = 0x4010bc05 (4 bytes) // arg: ptr[in, ext4_new_group_input] { // ext4_new_group_input { // group: int32 = 0x1f (4 bytes) // pad = 0x0 (4 bytes) // block_bitmap: int64 = 0x0 (8 bytes) // inode_bitmap: int64 = 0x7fffffbf (8 bytes) // inode_table: int64 = 0x7fffffffffffffff (8 bytes) // blocks_count: int32 = 0x400868 (4 bytes) // reserved_blocks: int16 = 0x8 (2 bytes) // unused: const = 0x0 (2 bytes) // } // } // ] *(uint32_t*)0x2000000000c0 = 0x1f; *(uint64_t*)0x2000000000c8 = 0; *(uint64_t*)0x2000000000d0 = 0x7fffffbf; *(uint64_t*)0x2000000000d8 = 0x7fffffffffffffff; *(uint32_t*)0x2000000000e0 = 0x400868; *(uint16_t*)0x2000000000e4 = 8; *(uint16_t*)0x2000000000e6 = 0; syscall(__NR_ioctl, /*fd=*/r[1], /*cmd=*/0x4010bc05, /*arg=*/0x2000000000c0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }