// https://syzkaller.appspot.com/bug?id=830d0991a093770c1c27f4a999c54de80bf4bbf0 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_setxattr #define __NR_setxattr 5 #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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } 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"); if (symlink("/dev/binderfs", "./binderfs")) { } } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } int i, call, thread; for (call = 0; call < 3; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 0 ? 4000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); 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; } remove_dir(cwdbuf); } } void execute_call(int call) { switch (call) { case 0: memcpy((void*)0x20000400, "jfs\000", 4); memcpy((void*)0x20000100, "./file1\000", 8); memcpy( (void*)0x20006480, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\x2f\xd3\x73\x09\x89" "\xad\x08\x45\xc6\x62\xe1\x38\x10\x12\x42\x7c\xb7\x21\xdc\xe2\xb0\x60" "\x01\x48\x20\x21\xaf\xb1\x35\x99\x44\x06\x07\x90\x6d\x10\x89\x2c\x3c" "\x91\x17\x88\x05\x97\x47\x80\x4d\x36\x2c\xf2\x22\x61\xc7\x1a\xf1\x00" "\x58\xb2\x59\x45\x82\x50\xa8\xa6\xcf\xb1\xab\xdb\x3d\xd3\x63\x3c\xd3" "\xd5\x3d\xe7\xf7\x93\xc6\x55\x5f\x9f\xaa\xe9\x53\xfe\x4f\x4d\x77\x4d" "\x55\xf5\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x20\xbe\xf3\xed\x1f\x9e\xee\x44\xc4\xe5\x5f\xa6\x07\x0e\x47\x7c\x2a" "\x7a\x11\xdd\x88\xd5\xba\x3e\x16\xf5\xcc\xc5\xbc\x7c\x3f\x22\x8e\xc4" "\x56\x73\x3c\x17\x11\xbd\xe5\x88\x7a\xfd\xad\x7f\x0e\x45\x9c\x8b\x88" "\x8f\x9e\x89\xb8\x77\xff\xd6\x7a\xfd\xf0\x99\x5d\xf6\xe3\xfc\xa9\x9b" "\xd7\x3f\xf9\xee\xb7\xfe\xfe\x9b\x3f\xdc\x39\xf2\xe3\x37\x7f\xf4\xc1" "\x78\xfb\x0f\x3e\x7d\xf6\xc3\xdf\xde\x8e\x38\xfc\xfd\xd7\x3e\xfc\xe4" "\xf6\xde\x6c\x3b\x00\x00\x00\x94\xa2\xaa\xaa\xaa\x93\x0e\xf3\x8f\xa6" "\xe3\xfb\x6e\xdb\x9d\x02\x00\x66\x22\xbf\xfe\x57\x49\x7e\x5c\xad\x56" "\xab\xd5\x7b\x5a\xff\xbe\x3b\x5f\xfd\x51\x17\x5a\x37\x55\x93\xdd\x6e" "\x16\x11\xb1\xd9\x5c\xa7\x7e\xcf\xe0\x74\x3c\x00\x2c\x98\xcd\xf8\xb8" "\xed\x2e\xd0\x22\xf9\x17\xad\x1f\x11\x4f\xb5\xdd\x09\x60\xae\x75\xda" "\xee\x00\xfb\xe2\xde\xfd\x5b\xeb\x9d\x94\x6f\xa7\xf9\x7a\x70\x6c\xd8" "\x9e\xff\x4e\x39\x92\xff\x66\xe7\xc1\xfd\x1d\xdb\x4d\xa7\x19\xbf\xc6" "\x64\x56\x3f\x5f\x77\xa2\x17\xcf\x6e\xd3\x9f\xd5\x19\xf5\x61\x9e\xe4" "\xfc\xbb\xe3\xf9\x5f\x1e\xb6\x0f\xd2\x72\xfb\x9d\xff\xac\x6c\x97\xff" "\x60\x78\xeb\x53\x71\x72\xfe\xbd\xf1\xfc\xc7\x8c\xe4\xff\xc7\x88\x58" "\xd8\xfc\xbb\x13\xf3\x2f\x55\xce\xbf\xff\x38\xf9\x6f\xf6\x16\x78\xff" "\x97\x3f\x00\x00\x00\x00\x00\x07\x5f\xfe\xfb\xff\xe1\x96\xcf\xff\x2e" "\x3f\xf9\xa6\xec\xca\x4e\xe7\x7f\x8f\xcd\xa8\x0f\x00\x00\x00\x00\x00" "\x00\x00\xb0\xd7\x9e\x74\xfc\xbf\x07\x8c\xff\x07\x00\x00\x00\x73\xab" "\x3e\x56\xaf\xfd\xe9\x99\x87\x8f\x75\x22\xfe\x76\x68\xc2\xb2\xf5\x21" "\xfe\xa5\x4e\xc4\xd3\x63\xcb\x03\x85\x49\x37\xcb\xac\xb5\xdd\x0f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x28\x49\x7f\x78\x0d\xef\xa5\x4e" "\xc4\x52\x44\x3c\xbd\xb6\x56\x55\x55\xfd\xd5\x34\x5e\x3f\xae\x27\x5d" "\x7f\xd1\x95\xbe\xfd\x50\xb2\xb6\x7f\xc9\x03\x00\xc0\xd0\x47\xcf\xa4" "\x7b\xf9\xef\xae\x0c\x1f\xe8\x44\xd4\x73\x97\xd2\x67\xfd\x2d\xad\xad" "\xad\x55\xd5\xca\xea\x5a\xb5\x56\xad\x2e\xe7\xf7\xb3\x83\xe5\x95\x6a" "\xb5\x71\x5c\x9b\xa7\xf5\x63\xcb\x83\x5d\xbc\x21\xee\x0f\xaa\xfa\x9b" "\xad\x34\xd6\x6b\x9a\x76\xbc\x3c\xad\x7d\xfc\xfb\xd5\xcf\x35\xa8\x7a" "\xbb\xe8\xd8\x6c\xb4\x9d\x3a\x00\xa5\x1b\xbe\x1a\xdd\xf3\x8a\x74\xc0" "\x54\xd5\xa1\x68\xfb\x5d\x0e\x8b\xc1\xfe\x7f\xf0\xd8\xff\xd9\x8d\xb6" "\x7f\x4e\x01\x00\x00\x80\xfd\x57\x55\x55\xd5\x49\x1f\xe7\x7d\x34\x9d" "\xf3\xef\xb6\xdd\x29\x00\x60\x16\x56\xf2\xeb\xff\xf8\x79\x01\xb5\x5a" "\xad\x56\xab\xd5\x07\xaf\x6e\xaa\x26\xbb\xdd\x2c\x22\x62\xb3\xb9\x4e" "\xfd\x9e\xc1\x70\xfc\x00\xb0\x60\x36\xe3\xe3\xb6\xbb\x40\x8b\xe4\x5f" "\xb4\x7e\x44\x1c\x69\xbb\x13\xc0\x5c\xeb\xb4\xdd\x01\xf6\xc5\xbd\xfb" "\xb7\xd6\x3b\x29\xdf\x4e\xf3\xf5\x20\x8d\xef\x9e\xaf\x05\x19\xc9\x7f" "\xb3\xb3\xb5\x5e\x5e\x7f\xd2\x74\x9a\xf1\x6b\x4c\x66\xf5\xf3\x75\x27" "\x7a\xf1\xec\x36\xfd\x79\x6e\x46\x7d\x98\x27\x39\xff\xee\x78\xfe\x97" "\x87\xed\x83\xb4\xdc\x7e\xe7\x3f\x2b\xdb\xe5\x5f\x6f\xe7\xe1\x16\xfa" "\xd3\xb6\x9c\x7f\x6f\x3c\xff\x31\x07\x27\xff\xee\xc4\xfc\x4b\x95\xf3" "\xef\x3f\x56\xfe\x3d\xf9\x03\x00\x00\x00\x00\xc0\x1c\xcb\x7f\xff\x3f" "\xec\xfc\x6f\xde\x64\x00\x00\x00\x00\x00\x00\x00\x58\x38\xf7\xee\xdf" "\x5a\xcf\xf7\xbd\xe6\xf3\xff\x9f\x9d\xb0\x5c\xa7\x39\xe7\xfe\xcf\x03" "\x23\xe7\xdf\xd9\x75\xfe\xee\xff\x3d\x48\x72\xfe\xdd\xf1\xfc\xc7\x2e" "\xc8\xe9\x35\xe6\xef\xbe\xf1\x30\xff\x7f\xdd\xbf\xb5\xfe\xc1\xcd\x7f" "\x7e\x26\x4f\xe7\x3e\xff\xa5\xde\xa0\x7e\xee\xa5\x4e\xb7\xd7\x4f\xd7" "\xfc\x54\x4b\x6f\xc5\xd5\xb8\x16\x1b\x71\xea\x91\xe5\xfb\x23\xed\xa7" "\x1f\x69\x5f\x1a\x69\x3f\x33\xa5\xfd\xec\x23\xed\x83\xba\x7d\x35\xb7" "\x9f\x88\xf5\xf8\x59\x5c\x8b\x37\x1f\xb4\x2f\x4f\xb9\x30\x6a\x65\x4a" "\x7b\x35\xa5\x3d\xe7\xdf\xb3\xff\x17\x29\xe7\xdf\x6f\x7c\xd5\xf9\xaf" "\xa5\xf6\xce\xd8\xb4\x76\xf7\xfd\xee\x23\xfb\x7d\x73\x3a\xe9\x79\x2e" "\xfe\xe5\x3f\x2f\x3e\xba\x77\xed\xb5\xc1\xd4\x25\xee\x44\xef\xc1\xb6" "\x35\xd5\xdb\x77\x7c\x5f\xfa\xb4\xb3\xad\xff\x93\xa7\x06\xf1\x8b\x1b" "\x1b\xd7\x4f\xfc\xea\xca\xcd\x9b\xd7\x4f\x47\x9a\x8c\x3c\x7a\x26\xd2" "\x64\x8f\xe5\xfc\x97\xd2\x57\xce\xff\xa5\x17\x86\xed\xf9\xf7\x7e\x73" "\x7f\xbd\xfb\xfe\xe0\xb1\xf3\x9f\x17\x77\xa2\xbf\x6d\xfe\x2f\x34\xe6" "\xeb\xed\x7d\x79\xc6\x7d\x6b\x43\xce\x7f\x90\xbe\x72\xfe\xf9\x15\x68" "\xf2\xfe\xbf\xc8\xf9\x6f\xbf\xff\xbf\xd2\x42\x7f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x60\x27\x55\x55\x6d\xdd\x22\x7a\x31\x22" "\x2e\xa4\xfb\x7f\xda\xba\x37\x13\x00\x98\xa9\xdf\x7d\x2f\xcd\x54\x49" "\xa8\xd5\x6a\xb5\x5a\xad\xde\xab\xba\x3f\x67\xfd\x19\x51\x4d\xf6\x7a" "\xb3\x88\x95\xd1\x75\x2e\x44\xc4\xaf\x27\x7d\x33\x00\x60\x9e\xfd\x37" "\x22\xfe\xd1\x76\x27\x68\x8d\xfc\x0b\x96\x3f\xef\xaf\x9e\x7e\xae\xed" "\xce\x00\x33\x75\xe3\xdd\xf7\x7e\x72\xe5\xda\xb5\x8d\xeb\x37\xda\xee" "\x09\x00\x00\x00\x00\x00\x00\x00\xf0\xff\xca\xe3\x7f\x1e\x6b\x8c\xff" "\xbc\x75\x1d\xd0\xd8\xb8\xd1\x23\xe3\xbf\xbe\x11\xc7\x16\x76\xfc\xcf" "\xee\xa0\xb7\x35\xd6\x79\xda\xa0\xe7\x63\xe7\xf1\xbf\x8f\xc7\xce\xe3" "\x7f\xf7\xa7\x3c\xdf\xd2\x94\xf6\x69\x23\x16\x2f\x4f\x69\x5f\x99\xd2" "\x3e\xf1\x46\x8f\x86\x9c\xff\xf3\x29\xe3\x9c\xff\xd1\xb4\x61\x25\x8d" "\xff\xfa\x52\x0b\xfd\x69\x5b\xce\xff\x78\x1a\xeb\x39\xe7\xff\x85\xb1" "\xe5\x9a\xf9\x57\x7f\x5e\xe4\xfc\xbb\x23\xf9\x9f\xbc\xf9\xce\xcf\x4f" "\xde\x78\xf7\xbd\x57\xaf\xbe\x73\xe5\xed\x8d\xb7\x37\x7e\x7a\xfa\xd4" "\x85\x73\x67\xcf\x9f\x3b\x7b\xfe\xfc\xc9\xb7\xae\x5e\xdb\x38\x35\xfc" "\xb7\xc5\x1e\xef\xaf\x9c\x7f\x1e\xfb\xda\x75\xa0\x65\xc9\xf9\xe7\xcc" "\xe5\x5f\x96\x9c\xff\xe7\x53\x2d\xff\xb2\xe4\xfc\x5f\x4c\xb5\xfc\xcb" "\x92\xf3\xcf\xef\xf7\xe4\x5f\x96\x9c\x7f\x3e\xf6\x91\x7f\x59\x72\xfe" "\x2f\xa7\x5a\xfe\x65\xc9\xf9\x7f\x31\xd5\xf2\x2f\x4b\xce\xff\x95\x54" "\xcb\xbf\x2c\x39\xff\x2f\xa5\x5a\xfe\x65\xc9\xf9\xbf\x9a\x6a\xf9\x97" "\x25\xe7\x7f\x22\xd5\xf2\x2f\x4b\xce\xff\x64\xaa\xe5\x5f\x96\x9c\x7f" "\x3e\xc3\x25\xff\xb2\xe4\xfc\xf3\x95\x0d\xf2\x2f\x4b\xce\xff\x4c\xaa" "\xe5\x5f\x96\x9c\xff\xd9\x54\xcb\xbf\x2c\x39\xff\x73\xa9\x96\x7f\x59" "\x72\xfe\xe7\x53\x2d\xff\xb2\xe4\xfc\x2f\xa4\x5a\xfe\x65\xc9\xf9\x7f" "\x39\xd5\xf2\x2f\x4b\xce\xff\x2b\xa9\x96\x7f\x59\x72\xfe\xaf\xa5\x5a" "\xfe\x65\xc9\xf9\x7f\x35\xd5\xf2\x2f\x4b\xce\xff\x6b\xa9\x96\x7f\x59" "\x72\xfe\x5f\x4f\xb5\xfc\xcb\x92\xf3\xff\x46\xaa\xe5\x5f\x96\x9c\xff" "\x37\x53\x2d\xff\xb2\xe4\xfc\x5f\x4f\xb5\xfc\xcb\xf2\xf0\xf3\xff\xcd" "\xcc\x78\xe6\xdf\x7f\x8d\x98\x83\x6e\xec\xc7\x4c\x55\x55\xd5\x1c\x74" "\xc3\xcc\x13\xcc\xb4\xfd\x9b\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x18\x37\x8b\xcb\x89\xdb\xde\x46\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xb1\x03\x07\x02" "\x00\x00\x00\x00\x40\xfe\xaf\x8d\x50\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x85\x1d\x38\x10\x00\x00\x00\x00\x00\xf2" "\x7f\x6d\x84\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\x2a\xec\xdd\x5d\x8c\x5c\x67\x7d\x06\xf0\xb3\x5f\xf6\xda\x09\xc4" "\x25\x21\x84\x60\xc8\xda\x71\x82\x21\x1b\xef\xae\xbf\x12\x13\x0c\xe6" "\xb3\x69\x68\x69\x1a\x08\x2d\x2d\xd4\x31\xf6\xda\x31\xf8\xab\x5e\x1b" "\x92\x28\x6a\x36\x4d\xda\x06\x11\xa9\x91\xda\x8b\xf4\xa2\x14\x50\x8a" "\x90\xda\x2a\x11\x42\x2a\x95\x52\x14\xa9\x48\xad\xd4\x8b\xe6\x0a\x94" "\x1b\xd4\x4a\xb9\xb0\xd4\xa4\x32\x11\x54\x02\x91\x6c\x75\xe6\xbc\xef" "\xbb\x33\xb3\xb3\x33\xbb\xf6\xae\x7d\xe6\x9c\xdf\x2f\x8a\xff\xde\x99" "\x33\x33\xef\x9c\x39\x33\xbb\xcf\x5a\xcf\x0c\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\xb3\x4d\x1f\x99\xfe\xf3\x81\x2c\xcb\xf2\xff\x1b" "\x7f\x6c\xc8\xb2\x2b\xf3\xbf\xaf\xcb\xf6\xe5\x5f\xce\xee\xbe\xdc\x2b" "\x04\x00\x00\x00\x2e\xd6\xeb\x8d\x3f\xff\xe1\xaa\x74\xc2\xbe\x25\x5c" "\xa8\x69\x9b\x7f\x7b\xd7\x7f\x7e\x6f\x6e\x6e\x6e\x2e\xfb\xc2\x6b\xe7" "\xde\xf8\xcb\xb9\xb9\x74\xc6\x58\x96\x0d\xad\xcd\xb2\xc6\x79\xd1\xbf" "\xff\xe2\xe7\x73\xcd\xdb\x04\x8f\x65\xa3\x03\x83\x4d\x5f\x0f\xf6\xb8" "\xf9\xa1\x1e\xe7\x0f\xf7\x38\x7f\xa4\xc7\xf9\x6b\x7a\x9c\xbf\xb6\xc7" "\xf9\xa3\x3d\xce\x5f\xb0\x03\x16\x58\x57\xfc\x3e\xa6\x71\x65\x5b\x1a" "\x7f\xdd\x50\xec\xd2\xec\x9a\x6c\xa4\x71\xde\x96\x0e\x97\x7a\x6c\x60" "\xed\xe0\x60\xfc\x5d\x4e\xc3\x40\xe3\x32\x73\x23\x87\xb3\xa3\xd9\xb1" "\x6c\x3a\x9b\x5c\x70\x99\x81\xc6\x7f\x59\xf6\xfc\xa6\xfc\xb6\xee\xcc" "\xe2\x6d\x0d\x36\xdd\xd6\xc6\x2c\xcb\xce\xff\xf4\xe1\x83\x71\x0d\x03" "\x61\x1f\x6f\xc9\x5a\x6e\xac\xa1\xf9\xb1\x7b\xf5\x43\xd9\xd8\x6b\x3f" "\x7d\xf8\xe0\xb7\xcf\xbc\xf2\xf6\x4e\xb3\xe7\x6e\x58\xb0\xd2\x2c\xdb" "\xba\x39\x5f\xe7\xe3\x59\x36\xff\xeb\xaa\x6c\x20\x5b\x9b\xf6\x49\x5c" "\xe7\x60\xd3\x3a\x37\x76\x58\xe7\x50\xcb\x3a\x07\x1a\x97\xcb\xff\xde" "\xbe\xce\xf3\x4b\x5c\x67\xbc\xdf\xa3\x61\x9d\x2f\x76\x59\xe7\xc6\xe6" "\xdb\x9f\xcd\x16\xdd\xa6\xdd\x63\xd9\x60\xb6\xbe\xed\x56\xd3\xfe\x1e" "\x2d\x8e\x88\xfc\x3a\xf2\x87\xf2\x2d\xd9\xf0\xb2\x8e\x93\x4d\x4b\x38" "\x4e\xf2\xcb\xbc\x7c\x63\xeb\x71\xd2\x7e\x4c\xc6\xfd\xbf\x29\xec\x93" "\xe1\x45\xd6\xd0\xfc\x70\xbc\xfa\xe8\x9a\x05\xfb\xfd\x42\x8f\x93\xfc" "\x5e\x97\xe1\x58\xcd\xaf\xfb\xee\xfc\x46\x47\x47\x9b\x7f\xb5\xda\x72" "\xac\xe6\xdb\x3c\x7c\xd3\xe2\xc7\x40\xc7\xc7\xae\xc3\x31\x90\x8e\xa5" "\xa6\x63\x60\x73\xaf\x63\x60\x70\xcd\x50\xe3\x18\x18\x9c\x5f\xf3\xe6" "\x96\x63\x60\x6a\xc1\x65\x06\xb3\x81\xc6\x6d\x9d\xbb\xa9\xfb\x31\x30" "\x71\xe6\xf8\xa9\x89\x99\x07\x1f\xba\xf5\xe8\xf1\x03\x47\xa6\x8f\x4c" "\x9f\x98\x9a\xdc\xbd\x73\xc7\xae\x9d\x3b\x76\xed\x9a\x38\x7c\xf4\xd8" "\xf4\x64\xf1\xe7\xf2\x76\x69\x1f\x59\x9f\x0d\xa6\x63\x70\x73\x78\xae" "\xc7\x63\xf0\xdd\x6d\xdb\x36\x1f\x92\x73\xdf\x5c\xb9\xe7\xc1\x68\x49" "\x9e\x07\xf9\x7d\xff\xf4\xcd\xf9\x82\xae\x1c\xcc\x16\x39\xc6\xf3\x6d" "\x1e\xdf\x7a\xf1\xcf\x83\xf4\x7d\xbf\xe9\x79\x30\xdc\xf4\x3c\xe8\xf8" "\x9a\xda\xe1\x79\x30\xbc\x84\xe7\x41\xbe\xcd\xf9\xad\x4b\xfb\x9e\x39" "\xdc\xf4\x7f\xa7\x35\xac\xd6\x6b\xe1\x86\xa6\x63\xe0\x72\x7e\x3f\xcc" "\x6f\xf3\x73\xef\x59\xfc\xb5\x70\x63\x58\xd7\x13\xef\x5d\xee\xf7\xc3" "\xa1\x05\xc7\x40\xbc\x5b\x03\xe1\xb9\x97\x9f\x92\x7e\xde\x1b\xbd\x3d" "\xec\x97\x85\xc7\xc5\xf5\xf9\x19\x57\xac\xc9\xce\xce\x4c\x9f\xde\xf6" "\xc0\x81\x33\x67\x4e\x4f\x65\x61\x5c\x12\x57\x37\x3d\x56\xed\xc7\xcb" "\xfa\xa6\xfb\x94\x2d\x38\x5e\x06\x97\x7d\xbc\xec\xfb\xfb\x5f\xdd\x7c" "\x7d\x87\xd3\x37\x84\x7d\x35\x7a\x4b\xf7\xc7\x2a\xdf\x66\xe7\x78\xf7" "\xc7\xaa\xf1\xea\xde\xba\x3f\xd7\x64\xc5\xfe\x6c\x39\x75\x7b\x16\xc6" "\x0a\xbb\xd4\xfb\xb3\xd3\x77\xb3\x7c\x7f\xa6\x2c\xd1\x65\x7f\xe6\xdb" "\x3c\x7e\xeb\xc5\xff\x2c\x98\x72\x49\xd3\xeb\xdf\x48\xaf\xd7\xbf\xa1" "\x91\xe1\xe2\xf5\x6f\x28\xed\x8d\x91\x96\xd7\xbf\x85\x0f\xcd\x50\x63" "\x65\x59\x76\xfe\xd6\xa5\xbd\xfe\x8d\x84\xff\x2f\xf5\xeb\xdf\x35\x25" "\x79\xfd\xcb\xf7\xd5\xe7\xb6\x75\x3f\x06\xf2\x6d\x9e\x98\x58\xee\x31" "\x30\xdc\xf5\xf5\xef\xc6\x30\x07\xc2\x7a\xde\x13\x12\xc3\x68\x53\xee" "\x7f\xa3\x71\xfe\x6c\x71\x98\x36\x3d\x96\x3d\x8f\x9b\xe1\xe1\x91\x70" "\xdc\x0c\xc7\x5b\x6c\x3d\x6e\x76\x2c\xb8\x4c\x7e\x6d\xf9\x6d\x6f\x9d" "\xbc\xb0\xe3\x66\xeb\x8d\xad\x8f\x55\xcb\xcf\x2d\x15\x3c\x6e\xf2\x7d" "\xf5\x57\x93\xdd\x8f\x9b\x7c\x9b\x17\xa6\x2e\xfe\xb5\x63\x5d\xfc\x6b" "\xd3\x6b\xc7\x9a\x5e\xc7\xc0\xc8\xd0\x9a\x7c\xbd\x23\xe9\x20\x28\x5e" "\xef\xe6\xd6\xc5\x63\x60\x5b\x76\x30\x3b\x99\x1d\xcb\x0e\xa5\xcb\xe4" "\x8f\x72\x7e\x5b\xe3\xdb\x97\x76\x0c\xac\x09\xff\x5f\xea\xd7\x8e\xeb" "\x4a\x72\x0c\xe4\xfb\xea\xe9\xed\xdd\x8f\x81\x7c\x9b\x1f\xee\x58\xd9" "\x9f\x9d\xb6\x86\x53\xd2\x36\x4d\x3f\x3b\xb5\xff\x7e\x61\xb1\xcc\x7f" "\xfd\xf0\xfc\xf5\xb5\xef\xb6\x95\xce\xfc\xf9\x3a\x3f\xfa\xa3\x4f\xa6" "\xd3\x3a\x65\x88\x7c\x9b\x57\x76\x2e\x37\x67\x74\xdf\x4f\xb7\x84\x53" "\xae\xe8\xb0\x9f\xda\x9f\x3f\x8b\x1d\xd3\x87\xb2\x4b\xb3\x9f\xae\x0b" "\xeb\x3c\xb6\xab\xfb\xef\xa6\xf2\x6d\xae\xd9\xbd\xc4\xe3\x69\x5f\x96" "\x65\x2f\x4d\xbd\xd4\xf8\x7d\x57\xf8\xfd\xee\x77\xcf\xfe\xe8\x7b\x2d" "\xbf\xf7\xed\xf4\x3b\xe5\x97\xa6\x5e\xba\x6b\xe2\x9e\x1f\x2f\x67\xfd" "\x00\x00\x5c\xb8\x37\x1a\x7f\xce\xae\x29\x7e\xd6\x6c\xfa\x17\xeb\xa5" "\xfc\xfb\x3f\x00\x00\x00\xd0\x17\x62\xee\x1f\x0c\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x1f\x0a\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee" "\x1f\x0e\x33\xa9\x49\xfe\xbf\xff\xf6\x3d\xcf\xbe\xfe\x48\x96\xde\x0d" "\x70\x2e\x88\xe7\xc7\xdd\x70\xf7\x07\x8a\xed\x62\xc7\x7b\x36\x7c\x3d" "\x36\x37\x2f\x3f\xfd\xc3\xcf\x8c\x3c\xfb\xd5\x47\x96\x76\xdb\x83\x59" "\x96\xfd\xea\xae\x77\x74\xdc\xfe\xfe\x0f\xc4\x75\x15\x4e\xc5\x75\xbe" "\xaf\xf5\xf4\x05\xae\xbb\x61\x49\xb7\x7f\xdf\xbd\xf3\xdb\x35\xbf\x7f" "\xc2\xf9\x3d\xc5\xf5\xc7\xfb\xb3\xd4\xc3\x20\x76\x95\x9f\x9f\xd8\xde" "\xb8\xde\xb1\x07\xa7\x1a\xf3\x85\xbb\xb2\xc6\xbc\x67\xf6\x89\xc7\x8a" "\xeb\x2f\xbe\x8e\xdb\x9f\xdb\x51\x6c\xff\x37\xe1\x4d\x4b\xf6\x1d\x1e" "\x68\xb9\xfc\xd6\xb0\x9e\x2d\x61\x8e\x85\xf7\x94\xb9\x7b\xdf\xfc\x7e" "\xc8\x67\xbc\xdc\xb3\x1b\xdf\xf5\xaf\x57\x7f\x66\xfe\xf6\xe2\xe5\x06" "\x36\xbf\xb9\x71\x37\x9f\xfe\xe3\xe2\x7a\xe3\x7b\x44\x3d\x75\x75\xb1" "\x7d\xbc\xdf\x8b\xad\xff\x5f\xbe\xf6\x9d\x67\xf3\xed\x1f\xb8\xa9\xf3" "\xfa\x1f\x19\xec\xbc\xfe\x73\xe1\x7a\x5f\x0e\xf3\x17\x7b\x8b\xed\x9b" "\xf7\xf9\x57\x9b\xd6\xff\xa7\x61\xfd\xf1\xf6\xe2\xe5\xb6\x7d\xeb\x07" "\x1d\xd7\xff\xdc\xdb\x8a\xed\x9f\x0b\xc7\xc5\x37\xc2\x6c\x5f\xff\x87" "\xfe\xe2\x9d\xaf\x77\x7a\xbc\xe2\xed\xec\xbb\xa3\xb8\x5c\xbc\xfd\xc9" "\xff\xdb\xd9\xb8\x5c\xbc\xbe\x78\xfd\xed\xeb\x1f\x7d\x64\xaa\x65\x7f" "\xb4\x5f\xff\x0b\xaf\x15\xd7\xb3\xf7\xcb\x3f\x1b\x6a\xde\x3e\x9e\x1e" "\x6f\x27\xba\xef\x8e\xd6\xe3\x7b\x20\x3c\xbe\x2d\x3d\xf2\x2c\xcb\xbe" "\xf3\x67\x59\xcb\x7e\xce\xde\x5f\x5c\xee\x9f\xdb\xd6\x1f\xaf\xef\xd4" "\x1d\x9d\xd7\x7f\x4b\xdb\x3a\x4f\x0d\xdc\xd0\xb8\xfc\xfc\xfd\xd9\xd0" "\x72\xbf\xbe\xfe\x77\xdb\x3b\xde\xdf\xb8\x9e\x7d\xff\xb8\xa1\xe5\xfe" "\x3c\xf5\xb1\xb0\xff\x5e\x9b\xf8\x61\x7e\xbd\xe7\xee\x09\xc7\x63\x38" "\xff\x97\x2f\x16\xd7\xd7\xfe\x5e\xa6\xcf\x7d\xac\xf5\xf5\x26\x6e\xff" "\x8d\x0d\xc5\xf3\x36\x5e\xdf\x44\xdb\xfa\x9f\x6a\x5b\xff\xec\x0d\xf9" "\xbe\xeb\xbd\xfe\x3b\x5f\x2b\xd6\xff\xdc\x07\xd7\xb6\xac\x7f\xdf\xc7" "\xc3\xf1\x74\x67\x31\x7b\xad\xff\xc8\xdf\x5e\xd5\x72\xf9\x6f\x7e\xbb" "\x78\x3c\x4e\x7f\x65\xfc\xc4\xc9\x99\xb3\x47\x0f\x35\xed\xd5\xe6\xe7" "\xf1\xda\xd1\x75\xeb\xaf\xb8\xf2\x4d\x6f\xbe\x2a\xbc\x96\xb6\x7f\xbd" "\xff\xe4\x99\xfb\xa7\x4f\x8f\x4d\x8e\x4d\x66\xd9\x58\x1f\xbe\x65\xe0" "\x6a\xaf\xff\x5b\x61\xfe\x6f\x31\x66\x57\xfe\x16\x0a\x3f\xfe\x59\x71" "\xdc\x3d\xf9\x89\xe2\xfb\xd6\xbb\x7f\x5e\x7c\xfd\x54\x38\xfd\xbe\xf0" "\x78\xc6\xef\x8f\x5f\xff\xeb\x91\x96\xe3\xb5\xfd\x71\x9f\xfd\x60\x31" "\x2f\x76\xfd\xef\x0d\xeb\x58\xaa\xb7\x7d\xed\xbf\x6f\x58\xd2\x86\xe7" "\x3e\xff\xfc\xd9\x7f\xfa\x93\x57\xda\x7f\x2e\x88\xf7\xe7\xd4\x5b\x47" "\x1b\xf7\xef\xe9\x4d\xd7\x36\xce\x1b\x78\xa1\x38\xbf\xfd\xf5\xaa\x97" "\xff\x7a\x6b\xeb\xf3\xfa\x27\xc3\x93\x8d\xf9\xfd\xb0\x5f\xe7\xc2\x3b" "\x33\x6f\xbe\xb6\xb8\xbd\xf6\xeb\x8f\xef\x4d\xf2\xe4\xa7\x8a\xe7\x6f" "\xfc\x49\x2e\x5e\x3e\x6b\x7b\x3f\x91\x0d\x43\xad\xf7\xe3\x62\xd7\xff" "\x93\xf0\x73\xcc\x0f\xae\x6b\x7d\xfd\x8b\xc7\xc7\xf7\x1f\x69\x7b\x37" "\xe7\x0d\xd9\x40\xbe\x84\xd9\xf0\xfa\x90\xcd\x16\xe7\xc7\xad\xe2\xfe" "\x7e\xf2\xfc\xb5\x1d\x6f\x2f\xbe\x0f\x4f\x36\xfb\xf6\xe5\x2c\x73\x51" "\x33\x0f\xce\x4c\x1c\x3b\x7a\xe2\xec\x03\x13\x67\xa6\x67\xce\x4c\xcc" "\x3c\xf8\xd0\xfe\xe3\x27\xcf\x9e\x38\xb3\xbf\xf1\xde\xa5\xfb\xbf\xd8" "\xeb\xf2\xf3\xcf\xef\xf5\x8d\xe7\xf7\xa1\xe9\xdd\x3b\xb3\xc6\xb3\xfd" "\x64\x31\x56\xd9\xe5\x5e\xff\xa9\x7b\x0f\x1e\xba\x6d\xf2\xe6\x43\xd3" "\x87\x0f\x9c\x3d\x7c\xe6\xde\x53\xd3\xa7\x8f\x1c\x9c\x99\x39\x38\x7d" "\x68\xe6\xe6\x03\x87\x0f\x4f\x7f\xa5\xd7\xe5\x8f\x1e\xda\x3b\xb5\x7d" "\xcf\x8e\xdb\xb6\x8f\x1f\x39\x7a\x68\xef\xed\x7b\xf6\xec\xd8\x33\x7e" "\xf4\xc4\xc9\x7c\x19\xc5\xa2\x7a\xd8\x3d\xf9\xa5\xf1\x13\xa7\xf7\x37" "\x2e\x32\xb3\x77\xe7\x9e\xa9\x5d\xbb\x76\x4e\x8e\x1f\x3f\x79\x68\x7a" "\xef\x6d\x93\x93\xe3\x67\x7b\x5d\xbe\xf1\xbd\x69\x3c\xbf\xf4\x97\xc7" "\x4f\x4f\x1f\x3b\x70\xe6\xe8\xf1\xe9\xf1\x99\xa3\x0f\x4d\xef\x9d\xda" "\xb3\x7b\xf7\xf6\x9e\xef\xfe\x78\xfc\xd4\xe1\x99\xb1\x89\xd3\x67\x4f" "\x4c\x9c\x9d\x99\x3e\x3d\x51\xdc\x97\xb1\x33\x8d\x93\xf3\xef\x7d\xbd" "\x2e\x4f\x3d\xcc\x9c\x0c\xaf\x77\x6d\x06\xc2\x4f\xe7\x9f\xbd\x65\x77" "\x7a\x7f\xdc\xdc\x33\x8f\x2e\x7a\x55\xc5\x26\xad\x3f\x9e\x66\xaf\x86" "\xf7\x82\x8a\xdf\xdf\x7a\x7d\x1d\x73\xff\x48\x98\x49\x4d\xf2\x3f\x00" "\x00\x00\xd4\x41\xcc\xfd\xe1\x8d\xff\xe7\xcf\x90\xff\x01\x00\x00\xa0" "\x32\x62\xee\x5f\x1b\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x5f\x24" "\xff\xd1\xf4\xf1\xef\x75\xc9\xff\x2b\xd5\xff\x7f\x54\xff\xbf\x41\xff" "\x5f\xff\x3f\xd3\xff\x4f\xf4\xff\xf5\xff\x33\xfd\x7f\xfd\xff\x1e\xf4" "\xff\xf5\xff\xfb\x79\xfd\xfa\xff\xfa\xff\xf4\x56\xb6\xfe\x7f\xc8\xfd" "\xd9\xba\x2c\xf3\xef\xff\x00\x00\x00\x50\x51\x31\xf7\xaf\x0f\x33\x91" "\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x22\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\xff\xca\x30\x93\x9a\xe4\x7f\x9f\xff\xaf\xff\xaf\xff\xdf" "\xad\xff\x1f\xb7\xd5\xff\xcf\xf4\xff\xcb\xd0\xff\xdf\xf2\x3f\xfa\xff" "\x0b\xe8\xff\xeb\xff\x67\xfa\xff\x17\xec\x72\xf7\xe7\xfb\x7d\xfd\x25" "\xec\xff\xaf\xd3\xff\xa7\x6c\xca\xd6\xff\x8f\xb9\xff\x4d\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xbf\x39\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\xaa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x0d\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\x3e\xff\x5f\xff\xbf" "\x6f\xfa\xff\x3e\xff\xbf\x03\xfd\x7f\xfd\xff\x4c\xff\xff\x82\x5d\xee" "\xfe\x7c\xbf\xaf\xbf\x84\xfd\x7f\x9f\xff\x4f\xe9\x94\xad\xff\x1f\x73" "\xff\xaf\x85\x99\xd4\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\xff\x96\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xab\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\xaf\x09\x33\xa9\x49\xfe\xaf\x67\xff\xff\xe5\x2c" "\xcb\xf4\xff\xb3\x5a\xf7\xff\xd7\x34\xa6\xfe\x7f\xeb\x3a\xf5\xff\xf5" "\xff\x57\x83\xfe\xbf\xfe\x7f\x37\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f" "\xfd\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\xb7\x86\x99\xd4\x24\xff\x03\x00" "\x00\x40\x1d\xc4\xdc\x7f\x6d\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73" "\xff\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xaf\x0b\x33\xa9" "\x49\xfe\xaf\x67\xff\xdf\xe7\xff\xeb\xff\x17\xf4\xff\x5b\xd7\xa9\xff" "\xaf\xff\xbf\x1a\xf4\xff\xf5\xff\xbb\xd1\xff\xd7\xff\xef\xe7\xf5\xeb" "\xff\xeb\xff\xd3\xdb\xf2\xfa\xff\x83\xdd\xae\x6a\x45\xfa\xff\x31\xf7" "\xbf\x3d\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\xeb\xc3\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xdf\x11\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xbf\x31\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x7f\x35\xf5\x57\xff\x7f\xf1\xde\xa1\xfe\x7f\x41" "\xff\xbf\xd5\xca\xf5\xff\x67\xe7\x17\xa0\xff\xdf\x37\xeb\xd7\xff\xd7" "\xff\xa7\xb7\xe5\xf5\xff\xb3\xec\x99\x47\x17\xbd\xaa\x15\xe9\xff\xc7" "\xdc\xff\xce\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\xdf\x15" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x43\x98\x89\xfc\x0f\x00" "\x00\x00\x95\x11\x73\xff\x58\x98\x49\x4d\xf2\xbf\xfe\xbf\xfe\xbf\xfe" "\xbf\xfe\xbf\xfe\xbf\xfe\xff\x6a\xea\xaf\xfe\xff\xe2\xf4\xff\x0b\xfa" "\xff\xad\x7c\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f\xdd\x95\xad\xff\x1f\x73" "\xff\xa6\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x37\x87\x99" "\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xdf\x18\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xbf\x25\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f" "\xff\x5f\xff\x5f\xff\x7f\x35\xe9\xff\xeb\xff\x77\xa3\xff\xaf\xff\xdf" "\xcf\xeb\xd7\xff\xd7\xff\xa7\xb7\xb2\xf5\xff\x63\xee\xbf\x29\xcc\xa4" "\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x9b\xc3\x4c\xe4\x7f\x00\x00" "\x00\xa8\x8c\x98\xfb\xdf\x1d\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc" "\xbf\x35\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\xbf\x8f\xfb\xff\x43" "\xfa\xff\x99\xfe\x7f\xe9\xe9\xff\xeb\xff\x77\xa3\xff\x5f\xae\xfe\xff" "\xb0\xfe\xbf\xfe\xbf\xfe\x3f\x2b\xac\x6c\xfd\xff\x98\xfb\xdf\x13\x66" "\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x7b\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x6f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62" "\xee\x1f\x0f\x33\xa9\x49\xfe\xd7\xff\xd7\xff\xd7\xff\xef\xe3\xfe\xbf" "\xcf\xff\x6f\x59\xff\x0a\xf4\xff\x47\x9a\x4f\xd7\xff\x5f\x19\xfa\xff" "\xfa\xff\xdd\xe8\xff\x97\xab\xff\xef\xf3\xff\xf5\xff\xf5\xff\x59\x69" "\x65\xeb\xff\xc7\xdc\x7f\x6b\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41" "\xcc\xfd\xdb\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x27\xc2\x4c" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x27\xc3\x4c\x6a\x92\xff\xf5\xff" "\x2f\x65\xff\xbf\xb1\x8f\xf5\xff\xf5\xff\xf5\xff\xc3\xf9\x25\xec\xff" "\xfb\xfc\xff\x55\xa0\xff\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\x5f" "\xff\x5f\xff\x9f\xde\xca\xd6\xff\x8f\xb9\x7f\x2a\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\xed\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\x3b\xc2\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x77\x86\x99" "\xd4\x24\xff\xf7\x49\xff\x7f\x5b\x2a\x40\xf5\x75\xff\xdf\xe7\xff\xeb" "\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x34\xfd\x7f\xfd\xff\x4c\xff\xff\x82" "\x5d\xee\xfe\x7c\xbf\xaf\x5f\xff\x5f\xff\x9f\x56\x83\x1d\x4e\x2b\x5b" "\xff\x3f\xe6\xfe\x5d\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7" "\xef\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xbf\x2d\xcc\x44\xfe" "\x07\x00\x00\x80\xca\x88\xb9\xff\xf6\x30\x93\x9a\xe4\xff\x3e\xe9\xff" "\x57\xe4\xf3\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\xf5\xff\x57\x5a\x79" "\xfb\xff\x03\x99\xfe\x7f\x6f\xfa\xff\xfa\xff\xfd\xbc\x7e\xfd\x7f\xfd" "\x7f\x7a\x2b\x5b\xff\x3f\xe6\xfe\x3d\x61\x26\x35\xc9\xff\x00\x00\x00" "\x50\x07\x31\xf7\xbf\x2f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\x8e\x30\x13\xf9\x1f\x00\x00\x00\xfa\x4a\xa7\xcf\x21\x8c\x62\xee\x7f" "\x7f\x98\x49\x4d\xf2\xbf\xfe\x7f\xd5\xfb\xff\x73\x6b\xf5\xff\xf5\xff" "\xf5\xff\xbb\xaf\x5f\xff\x7f\x75\xd5\xb7\xff\xef\xf3\xff\x97\x42\xff" "\x5f\xff\xbf\x9f\xd7\xaf\xff\xaf\xff\x4f\x6f\x65\xeb\xff\xc7\xdc\xbf" "\x37\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x0f\x84\x99\xc8" "\xff\x00\x00\x00\x50\x19\x31\xf7\x7f\x30\xcc\x44\xfe\x07\x00\x00\x80" "\xca\x88\xb9\x7f\x5f\x98\x49\x4d\xf2\xbf\xfe\x7f\xd5\xfb\xff\xb5\xf9" "\xfc\xff\xc6\xf9\xfa\xff\xfa\xff\xfa\xff\xe5\xa3\xff\xaf\xff\xdf\x8d" "\xfe\x7f\x7f\xf6\xff\xc3\x8f\x2d\xfa\xff\x25\xea\xff\xe7\xc7\x90\xfe" "\x3f\x65\x54\xb6\xfe\x7f\xcc\xfd\x1f\x0a\x33\xa9\x49\xfe\x07\x00\x00" "\x80\x3a\x88\xb9\xff\xc3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\x1f\x09\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xff\x68\x98\x49\x4d" "\xf2\xbf\xfe\xbf\xfe\x7f\x45\xfa\xff\x3e\xff\x5f\xff\x5f\xff\xff\xf2" "\xfb\xe5\x7f\x74\x38\x51\xff\x7f\xd5\xfa\xff\x8d\x97\x42\xfd\xff\xc2" "\xa2\xfd\xff\x75\xfa\xff\xdd\xcc\xf7\xe7\xaf\xf2\xf9\xff\x7d\xde\xff" "\xf7\xf9\xff\x94\x55\xd9\xfa\xff\x31\xf7\x7f\x2c\xcc\xa4\x26\xf9\x1f" "\x00\x00\x00\xea\x20\xe6\xfe\x8f\x87\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\xff\x7a\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x9d\x61" "\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xab" "\x49\xff\xdf\xe7\xff\x77\xe3\xf3\xff\xcb\xd2\xff\xbf\x3c\xfd\xf9\x7e" "\x5f\xbf\xfe\xbf\xfe\x3f\xbd\x95\xad\xff\x1f\x73\xff\x6f\x84\x99\xd4" "\x24\xff\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x57\x98\x89\xfc\x0f\x00\x00" "\x00\x95\x11\x73\xff\x27\xc2\x4c\xe4\x7f\x00\x00\x00\xe8\x33\x6b\x16" "\x3d\x27\xe6\xfe\xdf\x0c\x33\xa9\x49\xfe\xef\xbf\xfe\xff\x58\x5f\xf6" "\xff\x07\xd3\xf5\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xaf\x24\xfd" "\x7f\xfd\xff\x4c\xff\xff\x82\x5d\xee\xfe\x7c\xbf\xaf\xbf\x82\xfd\xff" "\x2b\xf4\xff\x59\x69\x65\xeb\xff\xc7\xdc\xff\x5b\x61\x26\x35\xc9\xff" "\x00\x00\x00\x50\x07\x31\xf7\x7f\x32\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\xb7\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x0e" "\x33\xa9\x49\xfe\x5f\xe9\xfe\x7f\xfb\xe5\xbb\xf1\xf9\xff\xfa\xff\x99" "\xfe\xbf\xfe\xbf\xfe\xbf\xfe\xff\x45\xea\xa7\xfe\xff\x88\xfe\xff\x02" "\xfa\xff\xfa\xff\xfd\xbc\xfe\x0a\xf6\xff\x7d\xfe\x3f\x2b\xae\x6c\xfd" "\xff\x98\xfb\x7f\x27\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe" "\x7b\xc2\x4c\xe4\x7f\x00\x00\x00\x28\xa9\xfb\x97\x7d\x89\x98\xfb\x3f" "\x15\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xe9\x30\x93\x9a\xe4" "\xff\xfe\xfb\xfc\xff\xfe\xeb\xff\xe7\xd7\xaf\xff\xaf\xff\x9f\xe9\xff" "\xeb\xff\x37\xed\x55\xfd\xff\x95\xd3\x4f\xfd\x7f\x9f\xff\xbf\x90\xfe" "\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xde\xca\xd6\xff\x8f\xb9\xff" "\xde\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x13\x66\x22" "\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xbb\x61\x26\xf2\x3f\x00\x00\x00" "\x54\x46\xcc\xfd\xbf\x17\x66\x52\x93\xfc\xaf\xff\xef\xf3\xff\xf5\xff" "\x97\xde\xff\xcf\xf4\xff\xf5\xff\xf5\xff\x97\x4d\xff\x7f\x61\xff\x3f" "\x7f\x0d\xd3\xff\x2f\xe8\xff\xeb\xff\xf7\xf3\xfa\xf5\xff\xf5\xff\xe9" "\xad\x6c\xfd\xff\x98\xfb\x3f\x1b\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\xef\x87\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xff\x41" "\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xe7\xc2\x4c\x6a\x92\xff" "\xf5\xff\xf5\xff\xf5\xff\x7d\xfe\xbf\xfe\xbf\xfe\xff\x6a\xd2\xff\xf7" "\xf9\xff\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa\x4b\xd8\xff\x1f\xcd\xf4\xff" "\x29\x99\xb2\xf5\xff\x63\xee\xff\x7c\x98\x49\x4d\xf2\x3f\x00\x00\x00" "\xd4\x41\xcc\xfd\x7f\x18\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf" "\x3f\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\xbe\x30\x93\x9a\xe4" "\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd5\xa4\xff\xaf" "\xff\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\xbf\x84\xfd\x7f\x9f\xff\x4f\xe9" "\x94\xad\xff\x1f\x73\xff\x81\x30\x93\x7d\xad\x37\x03\x00\x00\x00\xf4" "\xaf\x98\xfb\xbf\x10\x66\x52\x93\x7f\xff\x07\x00\x00\x80\x3a\x88\xb9" "\xff\x60\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xa1\x30\x93\x9a" "\xe4\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\xff\xd5\xa4\xff" "\xaf\xff\xdf\x8d\xfe\xbf\xfe\x7f\x3f\xaf\x5f\xff\x5f\xff\x9f\xde\xca" "\xd6\xff\x8f\xb9\x7f\x3a\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6" "\xfe\xc3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x47\xc2\x4c\xe4" "\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xef\x0f\x33\xa9\x49\xfe\xd7\xff\xd7" "\xff\xd7\xff\xaf\x6d\xff\xff\xc5\xef\xb6\xad\x53\xff\x5f\xff\x7f\x35" "\xe8\xff\xeb\xff\x77\xa3\xff\xaf\xff\xdf\xcf\xeb\xd7\xff\xd7\xff\xa7" "\xb7\xb2\xf5\xff\x63\xee\x3f\x1a\x66\x52\x93\xfc\x0f\x00\x00\x00\x75" "\x10\x73\xff\x17\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\xbf\x14" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\x7f\x2c\xcc\xa4\x26\xf9\x5f" "\xff\x5f\xff\x5f\xff\xbf\xb6\xfd\xff\xa5\x7d\xfe\xff\xba\xf9\xdb\xd5" "\xff\xd7\xff\xbf\x10\xfa\xff\xfa\xff\xdd\xe8\xff\xeb\xff\xf7\xf3\xfa" "\xf5\xff\xf5\xff\xe9\xad\x6c\xfd\xff\x98\xfb\x8f\x87\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x22\xcc\x44\xfe\x07\x00\x00\x80\xca" "\x88\xb9\xff\x64\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\xa9\x30" "\x93\x9a\xe4\x7f\xfd\xff\xe5\xf5\xff\x07\x16\xe9\x06\xea\xff\x77\x5e" "\xbf\xfe\x7f\x05\xfa\xff\x4d\xf4\xff\xf5\xff\x2f\x84\xfe\xbf\xfe\x7f" "\x37\x97\xa0\xff\xff\x46\xf3\x45\xf4\xff\x5b\x5d\xee\xfe\x7c\xbf\xaf" "\x5f\xff\x5f\xff\x9f\xde\x4a\xd1\xff\x1f\x99\xff\x3a\xe6\xfe\x3f\x0a" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x74\x98\x89\xfc\x0f" "\x00\x00\x00\x95\x11\x73\xff\x4c\x98\x89\xfc\x0f\x00\xc0\xff\xb3\x77" "\xdf\x4b\x9a\x95\xd5\x1e\xc7\x5f\x1a\xe6\xcc\x50\x47\xee\x81\x5b\xf0" "\x0a\xbc\x04\xaf\xc1\x2a\x2f\xc1\x1c\xc1\x8c\x59\x31\xe7\x84\x39\x61" "\x56\xcc\x39\xe7\x80\x09\x73\x16\xc5\x2c\x6a\x95\xd6\x74\xaf\xb5\x86" "\x79\xa1\xf7\xee\x66\xfa\xa5\xf7\x7e\xd6\xe7\xf3\x87\x4b\xe6\x70\x98" "\x4d\x31\xe7\x14\xbf\x82\x6f\x3d\x00\x0c\x23\x77\xff\x03\xe2\x96\x26" "\xfb\x5f\xff\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xdf\x25\xfd\xbf" "\xfe\x7f\x8a\xf7\xff\xf5\xff\x6b\xfe\x7e\xfd\xbf\xfe\x9f\x79\x8b\xe8" "\xff\xef\xf0\xdb\xb9\xfb\x1f\x18\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x07\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x83\xe3\x16" "\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x21\x71\x4b\x93\xfd\xaf\xff\xd7" "\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xff\x2e\xe9\xff\xf5\xff\x87\xc9\xff" "\x5f\xa4\xff\xd7\xff\xaf\xf5\xfb\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf" "\xdd\xff\xd0\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\x3f\x2c\x6e" "\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x1f\x1e\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\x8f\x88\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff" "\xd7\xff\xeb\xff\x77\x49\xff\xaf\xff\x9f\xe2\xfd\x7f\xfd\xff\x9a\xbf" "\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x8f\x8c\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\xa3\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xd1\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x4d\xdc\xd2" "\x62\xff\x5f\xa1\xff\xd7\xff\xeb\xff\xd7\xd8\xff\x5f\xa1\xff\xd7\xff" "\xaf\x87\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf7\xeb\xff\xf5\xff" "\xcc\x5b\x5a\xff\x9f\xbb\xff\xda\xb8\xa5\xc5\xfe\x07\x00\x00\x80\x1e" "\x72\xf7\x3f\x26\x6e\xb1\xff\x01\x00\x00\x60\x05\xf6\x8e\xf4\x7b\xe5" "\xee\x7f\x6c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x2e\x6e\x69" "\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x0a\xfb\x7f\xef\xff\xeb\xff\x57\x44" "\xff\xaf\xff\x9f\xa2\xff\xd7\xff\xaf\xf9\xfb\xf5\xff\xfa\x7f\xe6\x2d" "\xad\xff\xcf\xdd\xff\xf8\xb8\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7" "\x3f\x21\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x9f\x18\xb7\xd8\xff" "\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x8a\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f" "\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49\xff\xaf\xff\x9f\xa2\xff\xd7\xff" "\xaf\xf9\xfb\xf5\xff\x37\xc7\x7f\xd3\xff\x73\xb8\x9d\xf7\xff\xf7\xbd" "\x6e\xff\x1e\xb5\xff\xcf\xdd\x7f\x5d\xdc\xd2\x64\xff\x03\x00\x00\x40" "\x07\xb9\xfb\x9f\x1c\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\x4f\x89" "\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xa7\xc6\x2d\x4d\xf6\xbf\xfe" "\x5f\xff\x7f\xa1\xff\xff\xef\x65\xfa\x7f\xfd\xbf\xfe\xff\xc2\x8f\xeb" "\xff\x4f\x86\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf7\xeb\xff\xbd" "\xff\xcf\xbc\x9d\xf7\xff\x33\xbd\xff\xf6\x6f\xe7\xee\x7f\x5a\xdc\xd2" "\x64\xff\x03\x00\x00\x40\x07\xb9\xfb\x9f\x1e\xb7\xd8\xff\x00\x00\x00" "\x30\x8c\xdc\xfd\xcf\x88\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x67" "\xc6\x2d\x4d\xf6\xbf\xfe\x5f\xff\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff\xbf" "\x4b\xfa\xff\xc5\xf6\xff\xdb\xff\xa7\x77\x31\xfd\xff\x91\xe8\xff\xf5" "\xff\x87\xf5\xff\xf7\x39\xc2\xf7\xeb\xff\xe9\x60\x69\xfd\x7f\xee\xfe" "\x67\xc5\x2d\x4d\xf6\x3f\x00\x00\x00\x74\x90\xbb\xff\xd9\x71\x8b\xfd" "\x0f\x00\x00\x00\xc3\xc8\xdd\x7f\x7d\xdc\x62\xff\x03\x00\x00\xc0\x30" "\x72\xf7\x3f\x27\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\xff\xe2" "\xfe\x7f\xaf\x65\xff\x7f\xfe\xc7\xf4\xff\xbb\xa1\xff\x5f\x6c\xff\x3f" "\x4d\xff\x7f\x24\xfa\x7f\xfd\xbf\xf7\xff\xf5\xff\x4c\x5b\x5a\xff\x9f" "\xbb\xff\xb9\x71\x4b\x93\xfd\x0f\x00\x00\x00\x1d\xe4\xee\x7f\x5e\xdc" "\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x3f\x3f\x6e\xb1\xff\x01\x00\x00" "\x60\x18\xb9\xfb\x5f\x10\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\x25\xf5\xff" "\x67\xf5\xff\xe3\xf5\xff\xc7\x7c\xff\xff\xf2\x31\xfa\x7f\xef\xff\xef" "\x8e\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf7\xeb\xff\xf5\xff\xcc" "\x5b\x5a\xff\x9f\xbb\xff\x85\x71\x4b\x93\xfd\x0f\x00\x00\x00\xc3\xdb" "\xdb\xd4\xee\x7f\x51\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xbf\x38" "\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\x5f\x12\xb7\x34\xd9\xff\xfa" "\x7f\xfd\xbf\xf7\xff\xf5\xff\x97\xd4\xff\x0f\xf2\xfe\xbf\xfe\x7f\x77" "\xf4\xff\xfa\xff\x29\x47\xed\xff\x37\xfa\xff\xfa\x73\xd1\xff\x2f\xe7" "\xfb\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\xff\xd2\xb8\xa5\xc9\xfe" "\x07\x00\x00\x80\x0e\x72\xf7\xbf\x2c\x6e\xb1\xff\x01\x00\x00\x60\x18" "\xb9\xfb\x5f\x1e\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x88\x5b" "\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x77\x49\xff" "\xaf\xff\x9f\xe2\xfd\x7f\xfd\xff\x9a\xbf\x5f\xff\xaf\xff\x67\xde\xd2" "\xfa\xff\xdc\xfd\xaf\x8c\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff" "\xab\xf6\xc7\xbf\xfd\x0f\x00\x00\x00\x23\x3a\xf8\xf7\xee\xce\x6d\x5e" "\x1d\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd\xaf\x89\x5b\xb6\xf7\xff" "\xde\x3d\xf9\x55\xf7\x1c\xfd\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff" "\x77\x49\xff\xaf\xff\x9f\xa2\xff\xbf\xeb\xfe\xff\xdc\x21\x3f\xdf\x69" "\xf7\xff\x67\xb7\x7e\x5b\xff\xaf\xff\xd7\xff\x33\x67\x69\xfd\x7f\xee" "\xfe\x1b\xe2\x16\xff\xfc\x1f\x00\x00\x00\x86\x91\xbb\xff\xb5\x71\x8b" "\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xba\xb8\xc5\xfe\x07\x00\x00\x80" "\x61\xe4\xee\x7f\x7d\xdc\xd2\x64\xff\x1f\xd6\xff\xdf\xf6\xff\x07\xff" "\x73\xfd\xff\xd1\xe8\xff\xef\xfa\xfb\xf5\xff\xfa\xff\xa3\xf6\xff\xb7" "\xdf\x72\xe1\x7f\x4f\xff\xaf\xff\x3f\x0e\xfd\xbf\xfe\x7f\x33\x60\xff" "\xef\xfd\xff\x75\x7c\xbf\xfe\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\xdf" "\x10\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe\x37\xc6\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x9b\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\xcd\x71\x4b\x93\xfd\x7f\xf2\xef\xff\x5f\xad\xff\xd7\xff\xeb" "\xff\xe3\xea\xff\xbd\xff\xaf\xff\xd7\xff\xeb\xff\xa7\xe9\xff\xf5\xff" "\x6b\xfe\x7e\xfd\xbf\xfe\x9f\x79\x27\xd3\xff\x5f\xbe\x39\xa9\xfe\x3f" "\x77\xff\x5b\xe2\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xd6\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\x7f\x5b\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xbf\x3d\x6e\x69\xb2\xff\x4f\xbe\xff\xf7\xfe\xbf\xfe" "\xff\x98\xfd\xff\x9e\xfe\x3f\xe9\xff\xe3\xaf\xab\xfe\x5f\xff\x7f\x0c" "\xfa\x7f\xfd\xff\x46\xff\x7f\xb7\x9d\x76\x3f\xbf\xf6\xef\xd7\xff\xeb" "\xff\x99\xb7\xb4\xf7\xff\x73\xf7\xdf\xb8\x3f\xf5\xfa\xed\x7f\x00\x00" "\x00\xe8\xe0\xc6\xfd\xff\x3c\xb7\x79\x47\xdc\x62\xff\x03\x00\x00\xc0" "\x30\x72\xf7\xbf\x33\x6e\xb1\xff\x01\x00\x00\x60\x18\xb9\xfb\xdf\x15" "\xb7\x34\xd9\xff\xfa\x7f\xfd\xff\xa9\xf7\xff\xde\xff\x2f\xfa\xff\xf8" "\xeb\xaa\xff\xd7\xff\x1f\x83\xfe\x5f\xff\xbf\xd1\xff\xdf\x6d\xa7\xdd" "\xcf\xaf\xfd\xfb\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\xff\xee\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xbf\x27\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb1\xfb\x0f\xfe\xe5\x77\xfb\x1f\x00\x00\x00\x86\xf4\xde" "\xfd\xff\x3c\xb7\x79\x5f\xdc\xd2\x64\xff\x37\xee\xff\xaf\xbe\xd4\xfe" "\xff\xca\x3b\xfc\x77\xfd\xff\x5d\x7f\xbf\xfe\xff\x44\xfa\xff\x1b\xb7" "\x7f\xed\xe9\xff\xf5\xff\x6b\xa2\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7" "\xfc\xfd\xcb\xe9\xff\xe3\x07\xae\xd1\xff\xb3\x3c\x4b\xeb\xff\x73\xf7" "\xbf\x3f\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x88\x5b\xec" "\x7f\x00\x00\x00\x18\x46\xee\xfe\x9b\xe2\x16\xfb\x1f\x00\x00\x00\x86" "\x91\xbb\xff\x83\x71\x4b\x93\xfd\xdf\xb8\xff\x1f\xe4\xfd\xff\xfb\xdd" "\x1a\x5f\xa0\xff\x1f\xb7\xff\xf7\xfe\x7f\xdc\x55\xf5\xff\xb7\xe9\xff" "\x93\xfe\x5f\xff\x3f\x45\xff\xaf\xff\x5f\xf3\xf7\x2f\xa7\xff\xf7\xfe" "\x3f\xcb\xb5\xb4\xfe\x3f\x77\xff\x87\xe2\x96\x26\xfb\x1f\x00\x00\x00" "\x3a\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x48" "\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x34\x6e\x69\xb2\xff\xf5" "\xff\x6b\xef\xff\xbd\xff\xaf\xff\xd7\xff\x2f\xb2\xff\xf7\xfe\x7f\xd1" "\xff\xeb\xff\xa7\xe8\xff\xf7\xf6\xff\x4e\x44\xff\xbf\xce\xef\xd7\xff" "\xeb\xff\xd9\xb6\xfd\x77\x59\xcb\xeb\xff\x73\xf7\x7f\x2c\x6e\x69\xb2" "\xff\x01\x00\x00\xa0\x83\xdc\xfd\x1f\x8f\x5b\xec\x7f\x00\x00\x00\x18" "\x46\xee\xfe\x4f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x27\xe3" "\x96\x26\xfb\x5f\xff\xaf\xff\xdf\x55\xff\x7f\xfe\x27\xd1\xff\x37\xe9" "\xff\xaf\xd5\xff\x6f\xf4\xff\x87\xd2\xff\xeb\xff\xa7\xe8\xff\xbd\xff" "\xbf\xe6\xef\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\xa7\xe2\x96" "\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07\x00\x00" "\x80\x61\xe4\xee\xff\x4c\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f" "\x36\x6e\xb8\xf7\x55\xa7\xf7\x49\x27\xeb\xcc\x21\x3f\x1e\xbd\xb9\xfe" "\x5f\xff\xef\xfd\x7f\xfd\xbf\xf7\xff\xf5\xff\xbb\xa4\xff\xd7\xff\x4f" "\xd1\xff\xeb\xff\xd7\xfc\xfd\xfa\x7f\xfd\x3f\xf3\x96\xd6\xff\xe7\xee" "\xff\x5c\xdc\xe2\x9f\xff\x03\x00\x00\xc0\x30\x72\xf7\x7f\x3e\x6e\xb1" "\xff\x01\x00\x00\x60\x18\xb9\xfb\xbf\x10\xb7\xd8\xff\x00\x00\x00\x30" "\x8c\xdc\xfd\x5f\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\x5f\xff\xbf\xda\xfe" "\xff\x4a\xfd\xff\xc5\xdf\xaf\xff\x5f\x26\xfd\xbf\xfe\x7f\x8a\xfe\x5f" "\xff\xbf\xe6\xef\xd7\xff\xeb\xff\x99\xb7\xb4\xfe\x3f\x77\xff\x97\xe2" "\x96\x26\xfb\x1f\x00\x00\x00\x3a\xc8\xdd\xff\xe5\xb8\xc5\xfe\x07\x00" "\x00\x80\x61\xe4\xee\xff\x4a\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7" "\x7f\x35\x6e\x69\xb2\xff\xf5\xff\xfa\x7f\xfd\xff\x6a\xfb\x7f\xef\xff" "\x6f\x7d\xbf\xfe\x7f\x99\xf4\xff\xfa\xff\x29\xfa\x7f\xfd\xff\x9a\xbf" "\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\x5f\x8b\x5b\x9a\xec\x7f" "\x00\x00\x00\xe8\x20\x77\xff\xd7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91" "\xbb\xff\x1b\x71\x8b\xfd\x0f\x00\x00\x00\xc3\xc8\xdd\xff\xcd\xb8\xa5" "\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\x97\xf4\xff" "\xfa\xff\x29\xfa\x7f\xfd\xff\x09\x7c\x7f\xfe\x32\xd1\xff\xeb\xff\x59" "\xa0\xa5\xf5\xff\xb9\xfb\xbf\x15\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41" "\xee\xfe\x6f\xc7\x2d\xf6\x3f\x00\x00\x00\x2c\xdd\xf6\xbf\xde\x79\xa8" "\xdc\xfd\xdf\x89\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x9b\xe3\x96" "\x26\xfb\x7f\xe4\xfe\x7f\xea\x77\xd3\xff\x1f\xd0\xff\xeb\xff\x37\xfa" "\x7f\xfd\xff\x8e\xe9\xff\xf5\xff\x53\xf4\xff\xfa\xff\x35\x7f\xbf\xfe" "\x5f\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\xbf\x1b\xb7\x34\xd9\xff\x00\x00" "\x00\xd0\x41\xee\xfe\xef\xc5\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff" "\xf7\xe3\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\x07\x71\x4b\x93\xfd" "\x3f\x72\xff\x3f\x45\xff\x7f\x40\xff\xaf\xff\xdf\xe8\xff\xf5\xff\x3b" "\xa6\xff\xd7\xff\x4f\xd1\xff\xeb\xff\xd7\xfc\xfd\xfa\x7f\xfd\x3f\xf3" "\x4e\xa9\xff\x3f\xb3\x39\xa4\xff\xcf\xdd\xff\xc3\xb8\xa5\xc9\xfe\x07" "\x00\x00\x80\x0e\x72\xf7\xdf\x12\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc" "\xfd\x3f\x8a\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\x1f\xc7\x2d\x2b" "\xde\xff\x5b\x6d\xeb\xfd\x6f\x9a\xf8\x7d\xf5\xff\x27\xde\xff\xef\xff" "\x22\xd2\xff\xeb\xff\x37\xfa\x7f\xfd\xbf\xfe\x7f\x9f\xfe\x5f\xff\x3f" "\x45\xff\xaf\xff\x5f\xf3\xf7\xeb\xff\xf5\xff\xcc\x5b\xda\xfb\xff\xb9" "\xfb\x7f\x12\xb7\xac\x78\xff\x03\x00\x00\x00\x17\xcb\xdd\xff\xd3\xb8" "\xc5\xfe\x07\x00\x00\x80\x61\xe4\xee\xff\x59\xdc\x62\xff\x03\x00\x00" "\xc0\x30\x72\xf7\xff\x3c\x6e\x69\xb2\xff\xf5\xff\xcb\x78\xff\x3f\xbf" "\x41\xff\xaf\xff\xdf\x71\xff\x7f\xf9\x46\xff\xaf\xff\xbf\x87\xe9\xff" "\xf5\xff\x53\x8e\xd4\xff\x5f\xa5\xff\x4f\xfa\xff\x65\x7d\xbf\xfe\x5f" "\xff\xcf\xbc\xa5\xf5\xff\xb9\xfb\x7f\x11\xb7\x34\xd9\xff\x00\x00\x00" "\xd0\x41\xee\xfe\x5f\xc6\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\xaf" "\xe2\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xd7\x71\x4b\x93\xfd\xaf" "\xff\x5f\x46\xff\x7f\x69\xef\xff\x5f\xa8\xa7\xf5\xff\xa7\xd9\xff\xef" "\xdd\xe9\x8f\xbf\xa3\xfe\xff\xcc\xc6\xfb\xff\xfa\xff\x15\xd1\xff\xeb" "\xff\xa7\x78\xff\x5f\xff\xbf\xe6\xef\xcf\xfe\x3f\x7f\xdd\x9d\x62\xff" "\x7f\x2f\xfd\x3f\x4b\xb5\xb4\xfe\x3f\x77\xff\x6f\xe2\x96\x26\xfb\x1f" "\x00\x00\x00\x3a\xc8\xdd\xff\xdb\xb8\xc5\xfe\x07\x00\x00\x80\x61\xe4" "\xee\xff\x5d\xdc\x62\xff\x03\x00\x00\xc0\x30\x72\xf7\xff\x3e\x6e\x69" "\xb2\xff\xd7\xdb\xff\x6f\x17\xc3\xa1\x65\xff\xef\xfd\xff\x65\xf4\xff" "\x77\xfe\xe3\x2f\xf0\xfd\xff\x61\xfa\xff\xf3\x3f\xa6\xff\x5f\x07\xfd" "\xbf\xfe\x7f\x8a\xfe\x5f\xff\xbf\xe6\xef\xf7\xfe\xbf\xfe\x9f\x79\x4b" "\xeb\xff\x73\xf7\xdf\x1a\xb7\x34\xd9\xff\x00\x00\x00\xd0\x41\xee\xfe" "\x3f\xc4\x2d\xf6\x3f\x00\x00\x00\x0c\x23\x77\xff\x1f\xe3\x16\xfb\x1f" "\x00\x00\x00\x86\x91\xbb\xff\xb6\xb8\xa5\xc9\xfe\x5f\x6f\xff\x7f\x08" "\xfd\xbf\xfe\xff\xfc\xcf\x7f\x56\xff\x3f\x7a\xff\xef\xfd\xff\xf5\xd0" "\xff\xeb\xff\xa7\xe8\xff\xf5\xff\x6b\xfe\x7e\xfd\xbf\xfe\x9f\x79\x4b" "\xeb\xff\x73\xf7\xff\x29\x6e\x69\xb2\xff\x01\x00\x00\xa0\x83\xdc\xfd" "\x7f\x8e\x5b\xec\x7f\x00\x00\x00\x18\x46\xee\xfe\xbf\xc4\x2d\xf6\x3f" "\x00\x00\x00\x0c\x23\x77\xff\x5f\xe3\x96\x26\xfb\x5f\xff\xaf\xff\x3f" "\x7e\xff\x7f\xa6\xfe\xbc\x17\xdb\xff\x7b\xff\x5f\xff\xaf\xff\x5f\x8c" "\x71\xfb\xff\xff\xd3\xff\xeb\xff\x2f\xb9\xff\xbf\xfe\x86\x83\x1f\xd6" "\xff\xaf\xf3\xfb\xf5\xff\xfa\x7f\xe6\x2d\xad\xff\xcf\xdd\xff\xb7\xb8" "\xa5\xc9\xfe\x07\x00\x00\x80\x0e\x72\xf7\xff\x3d\x6e\xb1\xff\x01\x00" "\x00\x60\x18\xb9\xfb\xff\x11\xb7\xd8\xff\x00\x00\x00\x30\x8c\xdc\xfd" "\xff\x8c\x5b\x9a\xec\x7f\xfd\xbf\xfe\x7f\xc8\xf7\xff\xf5\xff\x47\xeb" "\xff\x2f\x8b\x9f\x44\xff\x7f\x62\xfd\xff\x59\xfd\xff\x9d\x8c\xdb\xff" "\x7b\xff\x5f\xff\xef\xfd\x7f\xfd\xbf\xfe\x5f\xff\xcf\x9c\xa5\xf5\xff" "\xb9\xfb\x6f\x8f\x5b\x9a\xec\x7f\x00\x00\x00\xe8\x20\x77\xff\xbf\xe2" "\x16\xfb\x1f\x00\x00\x00\x86\x91\xbb\xff\xdf\x71\x8b\xfd\x0f\x00\x00" "\x00\xc3\xc8\xdd\xff\x9f\xb8\xa5\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\x8d" "\xfb\xff\xad\xef\xd4\xff\x7b\xff\x7f\x17\xf4\xff\xfa\xff\x29\xfa\x7f" "\xfd\xff\x9a\xbf\x5f\xff\xaf\xff\x67\xde\xd2\xfa\xff\xdc\xfd\xff\x0b" "\x00\x00\xff\xff\xc2\x6f\x29\x0d", 24624); syz_mount_image( /*fs=*/0x20000400, /*dir=*/0x20000100, /*flags=MS_I_VERSION|MS_POSIXACL|MS_MANDLOCK|MS_DIRSYNC*/ 0x8100c0, /*opts=*/0x20000000, /*chdir=*/0xfd, /*size=*/0x6030, /*img=*/0x20006480); break; case 1: memcpy((void*)0x20000240, "./file0\000", 8); memcpy((void*)0x20000280, "system.posix_acl_default\000", 25); *(uint32_t*)0x200002c0 = 2; *(uint16_t*)0x200002c4 = 1; *(uint16_t*)0x200002c6 = 0; *(uint32_t*)0x200002c8 = 0; *(uint16_t*)0x200002cc = 4; *(uint16_t*)0x200002ce = 0; *(uint32_t*)0x200002d0 = 0; *(uint16_t*)0x200002d4 = 0x10; *(uint16_t*)0x200002d6 = 0; *(uint32_t*)0x200002d8 = 0; *(uint16_t*)0x200002dc = 0x20; *(uint16_t*)0x200002de = 0; *(uint32_t*)0x200002e0 = 0; syscall(__NR_setxattr, /*path=*/0x20000240ul, /*name=*/0x20000280ul, /*val=*/0x200002c0ul, /*size=*/0x24ul, /*flags=*/0ul); break; case 2: memcpy((void*)0x20000240, "./file0\000", 8); memcpy((void*)0x20000280, "system.posix_acl_default\000", 25); *(uint32_t*)0x200002c0 = 2; *(uint16_t*)0x200002c4 = 1; *(uint16_t*)0x200002c6 = 0; *(uint32_t*)0x200002c8 = 0; *(uint16_t*)0x200002cc = 4; *(uint16_t*)0x200002ce = 0; *(uint32_t*)0x200002d0 = 0; *(uint16_t*)0x200002d4 = 0x10; *(uint16_t*)0x200002d6 = 0; *(uint32_t*)0x200002d8 = 0; *(uint16_t*)0x200002dc = 0x20; *(uint16_t*)0x200002de = 0; *(uint32_t*)0x200002e0 = 0; syscall(__NR_setxattr, /*path=*/0x20000240ul, /*name=*/0x20000280ul, /*val=*/0x200002c0ul, /*size=*/0x24ul, /*flags=*/0ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }