// https://syzkaller.appspot.com/bug?id=3531f8397abe542c2d66386970a42dc273de4b68 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_ioctl #define __NR_ioctl 29 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 279 #endif #ifndef __NR_mmap #define __NR_mmap 222 #endif #ifndef __NR_openat #define __NR_openat 56 #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 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; } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[1] = {0xffffffffffffffff}; void execute_one(void) { intptr_t res = 0; if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x20005b00, "bcachefs\000", 9); memcpy((void*)0x20000000, "./file0\000", 8); memcpy( (void*)0x20000380, "\xf6\x25\x70\x26\x52\x11\xf9\x43\xcb\x29\x3d\x7e\xad\xe5\x6c\x47\xe4\x5e" "\xe2\xb7\x40\x12\x45\x3e\xc8\x9c\xc9\x6a\x76\xf2\x2c\x23\xa9\xfd\x39\xa4" "\x31\xa4\xa9\x49\xcb\xa2\x67\xb3\x36\x30\xf0\xd9\x68\x73\x33\x56\x13\xa2" "\x08\xd0\x58\xea\x7d\x20\x0d\xe9\x93\x56\xd4\x02\x3a\x7a\xec\x4b\x98\x34" "\xb7\x2a\x41\x0f\x02\xa8\x1d\x87\x3b\x34\x9f\xe4\xa1\xa4\xf8\xe7\xa0\x99" "\x43\x6f\x50\x2e\xd3\xdd\x18\x3f\xbd\x7a\xe8\x15\x46\x15", 104); *(uint32_t*)0x200003e8 = -1; memcpy( (void*)0x200003ec, "\xb8\x07\x46\xf5\x4f\x88\xc0\xfc\xfd\xdc\x5b\xc8\x72\x0a\xd0\x12\x65\x54" "\x93\xd0\x15\xea\x07\x45\x12\xb1\x57\x32\xcb\x94\xca\xec\x3d\x37\x3b\xea" "\x53\xb8\x08\x30\x45\x6a\x43\xc7\x43\x7b\x99\xf7\x43\xa9\x35\xdc\x15\x62" "\xfa\x09\xce\x89\xbd\x7c\x21\x50\xb5\xd7\xa8\x26\x24\x0e\xb4\x04\xfb\xa2" "\x25\x47\x7a\x52\x8a\x0b\x0b\x1b\x55\xc6\xe3\x20\x1e\xa4\xbb\x67\xbd\x6c" "\x54\xd0\x7e\x8f\x31\x38\xef\xf3\x6c\xdb\xf0\x15\x95\xb3\x5b\xee\x30\x27" "\xe3\x49\x38\x3f\x4a\x7f\xeb\xe5\x6b\x6c\x85\xde\x3d\x25\xc9\x5f\x60\x55" "\x04\xcb\xd8\xdc\x64\x9b\x67\x1e\x47\x39\x4a\xed\x25\xdb\x42\xb3\xee\x4b" "\x48\x77\x6a\xec\x6e\x20\x56\x85\x71\x3c\xe0\xcd\xf8\x2c", 158); *(uint64_t*)0x2000048a = -1; memcpy( (void*)0x2000b6c0, "\x78\x9c\xec\xdd\x0d\x8c\x5d\x65\x9d\x30\xf0\x73\xee\x9d\x69\x67\x3a\x6d" "\x99\xa2\x85\x5a\x3e\x3a\x40\xe9\x5b\x78\x05\xa6\x14\x5f\xa0\xc1\x38\xf0" "\x46\xc0\x57\x8b\x08\x5a\x54\x90\xb6\xd2\x69\x19\xec\x07\x74\x5a\x0b\x55" "\x6c\x21\x11\x0d\xf2\xb2\x4d\x76\xa3\xac\x89\x84\x10\x4d\xd8\x10\x82\xbb" "\x64\x5d\x3f\xd6\x14\xb3\x88\x59\x59\x63\x13\x97\x2d\xee\xae\x8b\x01\xcd" "\xca\x6e\xb0\x06\x41\x2b\x25\x76\x33\x73\xcf\xb9\x73\xef\x99\xf3\xdc\x73" "\xe7\xde\x3b\xb5\xc0\xef\x97\x76\xce\x9c\x73\x9f\xfb\x7f\x9e\xff\x73\x9e" "\x39\x73\xce\x73\xcf\xdc\x1b\x01\x00\x00\xf0\xa6\xf0\xe4\x67\x47\x7f\x77" "\xc5\xc2\x77\xff\xf0\xce\xe1\x57\x76\x5d\xfe\xed\x4d\x77\x44\x7d\xe5\xf1" "\xed\x3d\x69\x81\xfe\x64\x79\xeb\x9f\xaa\x85\x1c\x49\x33\xbb\x16\x8c\x2f" "\xb3\xe3\x62\xcf\xd0\x8c\x27\xdf\x75\xcf\xfb\x9e\xf9\xca\xc7\xbe\xf6\xdc" "\xf3\xf3\x96\x2e\xfb\xea\x4d\x97\x1e\xba\x65\xf6\xca\xbb\xef\x1e\xfa\xc9" "\xf9\x87\x7e\xf4\xc7\xdb\x8b\xe2\xa6\xe3\xe9\x8c\x89\xf5\xf8\xc5\x38\x8a" "\x4e\xfa\xf1\xd2\x2f\xde\xf5\xfd\xa7\x8e\x1f\xdb\x16\x47\x51\x54\x8e\xfb" "\x77\x47\xd1\xbc\xb8\xf4\xbd\x79\x71\x26\xc4\xe0\xab\x51\x14\xad\xab\xb6" "\xb3\xfe\xc1\xc7\x5e\x59\xbe\x7e\x6c\xb9\xfb\x0b\x33\xeb\xb6\x1f\x93\x09" "\x62\xbc\xbf\xb9\xf5\x24\xe3\xec\x73\xdf\xdd\x72\xe2\xaf\xce\xbe\xf4\x99" "\xbd\x3f\xbd\xe4\x95\xc1\x9e\x57\xb7\xee\x9e\x28\x12\xf7\xd4\x8c\xa7\x28" "\x9a\xbb\xa6\xf6\xf9\xdd\x51\x14\xf5\x26\xff\xc7\xa4\xa3\x6d\x41\xfa\xe4" "\x64\x79\x65\x14\x45\xb3\x6a\x9e\x77\x41\x41\xbb\x4e\x6d\xb2\xfd\x67\x05" "\xd6\x17\x26\xcb\x19\xc9\xb2\xaf\x20\x4e\xfa\xf8\x29\x99\xf5\xee\x26\xdb" "\xd1\x95\x59\xf6\x34\xf9\xbc\x56\x95\xa6\x39\x7e\x2a\xdd\x7f\xb3\xa7\xb9" "\xfe\xec\xc1\x2d\x5b\xcf\xbc\x64\xf9\x8d\x64\x79\xc6\x14\xe3\x97\xd3\xff" "\x71\x54\x8a\xa3\xae\x6a\x75\x1b\xe3\x89\x31\x12\xd5\xec\xb7\x38\x8a\xc7" "\xf7\xfd\xc4\x7a\xa9\x6e\x2c\xc4\x99\xb1\x11\x47\x51\x9c\x59\x2f\x65\xd6" "\xcb\xdd\x99\xbc\xc6\xeb\x4d\x06\x5a\x39\x8e\xeb\xb7\xa7\xe5\x32\xdb\x07" "\x92\xed\x5d\xc9\xf6\x53\x0a\xc6\xda\xd5\x81\xed\x6f\x4b\xf3\x4d\x7e\x50" "\x0f\x66\xf2\xcf\x06\xed\x9b\xf4\x4d\x35\xaf\x71\x69\xbb\x7e\xde\xa0\x2d" "\x47\x42\xa9\xe6\x18\x94\xb7\x3d\x6d\x6f\x4f\xb2\x33\xfa\x92\x6d\x7d\xf1" "\xb1\x93\x9e\x73\x38\x47\xfa\xd8\xaa\xe7\xef\x7d\xf4\xb9\x9d\xf7\x2f\xee" "\x0f\xb4\x23\xfe\x7a\x9c\xc4\x8f\x5b\x8a\xff\xf4\xa6\x0b\xf7\x2f\xd9\xf9" "\xb3\x03\x0b\x42\xf1\xd7\x94\x92\xf8\xa5\x96\xe2\x8f\x9e\xfd\xd2\x23\x2f" "\x5c\xf5\x83\xe3\x83\xf1\xf7\xa4\xf1\xcb\x2d\xc5\x7f\xf6\xbc\x25\x5f\xfa" "\xce\xae\x1d\x07\x83\xfd\xf3\x9b\xb4\x7f\xba\x5a\x8a\x5f\x5e\x71\xe6\xa1" "\x65\x77\x0e\xae\x0a\xb6\xff\x81\x34\x7e\x4f\x4b\xf1\x1f\xbc\xe4\xe1\x2f" "\xcf\x7d\xc7\x13\x8f\x04\xdb\x3f\x98\xf6\x4f\x6f\x6b\xfd\x33\xb2\xfd\xb5" "\x6b\x1f\x9a\x7f\x20\x18\x3f\x4a\xe3\xcf\x6a\x29\xfe\xc5\x2f\x1f\x77\xfa" "\x8a\x2d\x0f\x6f\x08\xc6\x7f\x3c\xed\x9f\xbe\x96\xe2\x3f\x35\x3a\xb2\xf2" "\xae\x1b\x17\xed\x18\x08\xc5\xdf\x97\xc6\x9f\xd3\x52\xfc\x53\x7f\x71\xdd" "\xb5\x7b\xf7\x0f\x3f\x1b\x6c\xff\x50\xda\x3f\xfd\x2d\xc5\x7f\xe7\xe2\x8b" "\xaf\x5c\x79\x60\xf3\x3d\xa1\x63\x67\xbc\xfb\x48\xfd\x86\x05\x78\x63\x7a" "\x4b\x72\x8e\xf5\xf9\x64\xbd\xd5\xeb\xcc\x76\xd5\x5c\x2f\xdc\xd7\x1f\x57" "\xce\xf9\x66\x27\xff\xe7\x94\x3b\x59\x53\xbd\xb1\x7a\xe6\x4e\x5f\x78\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xde\x8c\x0e\xef\xaa\x2c\xbf\x75\xf2\x6b\x5d\xc9\xa6\x99\xc9\x37\x27\x97" "\x2b\xcb\x74\xfb\x8c\x28\x8a\x7b\xa3\x28\x1a\xdd\xb6\x76\xeb\xb6\x91\xcd" "\x1b\x06\x6e\xda\xb2\x7d\xeb\xe6\xb5\x1b\x07\xd6\x6e\x1b\x18\xde\xbc\x6d" "\xeb\x6d\x03\xe7\xbd\x7d\x60\xeb\xf0\xcd\x1b\xd7\xde\x36\xf6\xe8\xe0\x59" "\xcb\x2b\xcf\x3b\x36\x8a\x2b\xcb\xf8\xa4\xc9\xd5\x1f\x3e\x7c\xb8\xd4\x5f" "\xbf\x2d\xad\xef\x13\xe7\xff\xf9\x63\x03\x27\xef\xff\xd7\x28\x1a\x9c\xff" "\x93\x93\xbb\x82\x29\xbc\xff\xf6\x85\xff\x77\x5e\xce\xd7\x8c\x78\xe8\xf0" "\xc6\x3f\x3b\xfd\xfa\x17\x66\xff\xe3\xf6\xca\x86\xfe\xa4\x5d\xfd\x81\x76" "\x45\x81\x76\x5d\xf4\xd0\x8b\x2b\x7e\xf5\xed\xde\xff\x1f\x45\x83\xc7\x35" "\x6a\xd7\x7f\x2e\xbd\xec\xfb\x75\x0d\x1a\xdf\x30\x11\x27\x51\x9a\x19\x95" "\xc6\xbf\x99\x19\xcf\xca\x6d\x47\xb5\xd5\x49\x7b\xd2\xfe\xea\x5a\x3f\xb2" "\x71\x78\xb0\xb8\x7f\xcb\x81\x3c\x7e\x79\xf0\x6f\x3e\xb4\x63\xf4\x86\xdd" "\x95\xfe\xed\x09\xe6\xd1\x64\xff\xf6\x0e\x1d\xfe\xfd\xe6\x6f\x3e\x7e\xc3" "\x45\x3b\xaf\xac\x6c\x38\x5a\xf7\x7b\x51\x7f\xa7\x59\xa4\xed\x4b\xfb\xaf" "\x27\xe9\xef\xb9\x49\x5e\x73\xc7\xf2\x8a\x27\x3f\xbf\x2b\x90\xd7\x5d\xa7" "\x9f\xf2\x1f\xff\xf2\x97\x9b\x5e\xdc\x1d\x0d\x76\xfd\x76\xd1\xe4\xba\x8b" "\xf2\xea\x4e\x06\x40\x77\xfc\xb6\xdc\x76\x67\xeb\x4d\x6b\x98\x15\xd7\xf7" "\x49\x4f\x52\x3e\xdd\xe3\xe9\xf3\xce\xd9\xb6\xe9\xe6\x73\x46\x6f\xdb\x79" "\xd6\xc8\xa6\xb5\x1b\x86\x37\x0c\x6f\x5e\xbe\x7c\xf9\x05\xe7\x2d\x3f\xf7" "\xfc\x73\xff\xcf\x39\xe3\xa9\x57\xbe\xd6\xe7\xdf\x44\x3b\x42\xf9\xa7\xf5" "\xff\xaf\x26\xf3\x3f\x32\xe3\x69\xcb\xf9\x43\x23\xe9\xd7\xe6\xc6\x53\x51" "\xbb\x8a\xfa\x63\xac\x5d\xc5\xfd\x51\xdb\xa2\xd0\xcf\xdf\x5b\x3f\x78\xd9" "\xbf\xdd\xf1\xb7\x7b\xae\xaa\x6c\x28\x1a\xe7\x69\xe9\xea\xf1\x24\x59\xce" "\x1a\xdb\xcd\xcb\xa2\x9a\xf1\x36\xb9\xaf\xf2\xf2\x2a\xea\x87\xee\x40\x3f" "\x6c\xb8\xba\xef\xaf\x5e\x1e\xd8\xf2\x87\xa2\xe3\x50\xed\x9e\xa9\xfd\x9a" "\x11\x0f\x1d\xfe\xed\xc8\x3f\xbd\x6b\xf6\xde\xd3\xae\xaf\x6c\x38\x22\xc7" "\xf9\xda\x06\xb5\x78\x9c\xaf\xb6\x3a\x69\x4f\x77\xed\x71\x67\xd9\xd1\xdb" "\xbf\x33\xa3\x72\x92\x57\x5f\x6e\xbb\x4e\xbb\xf3\xa5\x0f\xff\xf3\xb7\xe2" "\x81\x6a\xfb\x66\xcc\x88\x6e\x5d\xbb\x6d\xdb\xd6\x65\x95\xaf\x47\x28\xaf" "\xb7\x5e\xfd\xe9\xce\xe6\x75\xc1\x92\xff\xbe\x65\xe7\x9a\x3b\xe6\x4d\xca" "\xeb\xdc\xca\xd7\xd9\x49\x4b\x67\xc7\x27\xe4\xb6\x2b\xbb\x35\xcd\x6b\xd1" "\xf8\xd7\x72\xf5\x77\x4b\xfa\xe3\xd7\x53\xca\xcf\xaf\x3b\xaa\xb4\x2f\xfb" "\x7b\x21\x7d\x5e\xb6\x57\xfb\x92\xc7\xfa\xe2\x63\x73\xf3\xca\x4a\x1f\x5b" "\xf5\xfc\xbd\x8f\x3e\xb7\xf3\xfe\xc5\xa1\x9e\x8e\xbf\x5e\xa9\xb1\x37\x9a" "\x53\x59\xc6\x27\x06\x4a\x6e\xcc\x3c\xb1\x5c\x6d\x70\x5e\xfd\x45\xe3\x23" "\x8a\xa2\x35\xb5\xdb\xd2\x7e\x7c\xfc\x9b\x7f\x31\xb0\xf7\x87\xf3\x36\x15" "\x8e\x8f\xca\xc8\x98\xf4\x35\x9b\xde\xd0\xe1\xcf\x5c\x38\xfb\x97\xa3\xd7" "\xec\x5b\x59\xd9\x70\x64\x8e\x2b\x35\x0d\x6a\xf1\xb8\x52\x6d\xf5\x44\x7b" "\xc6\xfb\x6b\xfc\xb8\x72\xee\x54\xf2\xf8\xc3\xb4\xe6\xf1\xa7\xdb\xcf\x75" "\x3f\x58\xf1\xd0\xe1\xbd\x27\xbe\x7d\xc3\xf2\xbf\xdf\x96\xfc\xd8\x17\xf5" "\x6f\xb5\x74\x5e\xff\x2e\x8f\xa2\xa2\xe3\xc0\xa2\xcc\xfa\x74\x1d\x07\xb2" "\xf5\x4c\x94\xcf\x8f\x37\x90\x59\xef\x8b\xca\x2d\x1d\x37\x9e\x3d\x6f\xc9" "\x97\xbe\xb3\x6b\xc7\xc1\xe0\x71\xe3\x37\xcd\x1e\x37\x3e\x5d\xb7\x56\x6e" "\xf3\xb8\x11\x07\xc6\xd3\xfe\xcf\xfc\xf5\xef\x3f\xb5\xff\xe9\xf7\x74\xee" "\xb8\xf1\x9e\x25\xe5\x8f\xfe\xfb\xa2\xe5\x49\x87\x1e\x2d\xc7\x8d\x9e\x64" "\x5c\xf7\x04\xc6\x75\xb5\xd5\x49\x7b\xe2\xda\x71\x7d\xf6\x0d\x5b\x36\xae" "\xab\x6c\x3f\x7a\xcf\x7f\x93\x65\xc1\xf5\x4f\xfa\xfb\x7b\xf4\xb6\x9d\x9f" "\x58\xbb\x71\xe3\xf0\xd6\xd1\xe6\xf2\x6a\xf6\xbc\x24\xa9\xa7\x37\xdb\xcb" "\xad\x9e\x97\xa4\x3f\x7d\xc7\x16\xe4\x95\xee\xaf\x89\xbc\x9a\xf9\x26\xf9" "\x99\x9a\xe2\xb3\x9a\xe9\xaf\x66\x7f\xde\xd2\xf6\xaf\xcb\xf6\x57\x8b\x3f" "\x6f\x90\xa7\x2f\x8a\x5b\xfa\x7d\xf6\xf4\xa6\x0b\xf7\x2f\xd9\xf9\xb3\x03" "\xfd\x81\xb8\xf1\x9a\x52\x12\xbf\xd4\x52\xfc\xd1\xb3\x5f\x7a\xe4\x85\xab" "\x7e\x70\x7c\x30\xfe\x9e\x34\x7e\x57\x4b\xf1\xcb\x2b\xce\x3c\xb4\xec\xce" "\xc1\x55\xc1\xf8\x0f\xc4\x49\xfc\x9e\x96\xe2\x3f\x78\xc9\xc3\x5f\x9e\xfb" "\x8e\x27\x1e\x09\xc6\x1f\x4c\xdb\xdf\xdb\xda\xf9\xc4\xc8\xf6\xd7\xae\x7d" "\x68\x7e\xb8\xff\xa3\x34\x7e\x5f\x4b\xf1\x9f\x1a\x1d\x59\x79\xd7\x8d\x8b" "\x76\x04\xe3\xef\x8b\x93\x7a\xc6\xce\xed\xa2\xe8\xb1\x57\x96\xaf\xaf\xac" "\xc7\x51\x77\x72\x1c\x4e\xdb\xd1\x5d\xd7\xae\x28\xbb\x1e\x67\xd6\x4b\x99" "\xf5\x72\xed\x7a\xa9\x32\x07\x5f\xad\xa0\x1c\xc7\xf5\xdb\xd3\x72\xc9\xf6" "\x53\x6a\xda\x92\xe7\x9a\x28\x8a\xf6\xcd\x9c\xbc\x3d\x3d\x7b\xec\x59\x50" "\x59\x1e\x4c\xd7\xa3\xec\x37\x8d\xb7\x1f\x6d\x4a\x35\xe7\x04\x79\xdb\x8b" "\xce\xaf\x01\xe0\x8d\xe4\xc1\xfe\x75\xc3\x7f\xfc\xd6\xc9\xaf\xa5\xe7\x1a" "\xe9\xeb\xff\x8b\x92\x5f\x88\x35\xaf\xff\x57\x96\xf1\x8c\xba\xe7\x2f\x48" "\xce\xa7\x16\x4c\x6c\x1a\xbf\xce\xbb\x63\xa0\xf2\x8b\x74\xaa\xf3\x7a\x69" "\x3b\xb2\xf3\x7a\x69\xfc\xa5\xa7\xd5\xc7\x68\x75\x5e\xaf\x68\x5e\xee\xd4" "\xcc\x7a\xda\xae\x45\x49\xaf\xa4\xed\x69\x70\xde\x30\x3b\x6a\x62\x5e\x6e" "\x72\x3d\x8d\xe7\xe5\x32\xe9\x17\xcf\x9b\x0d\x7c\x3e\xb3\xa1\x6b\x7c\x6e" "\x2f\xb4\xdf\xba\x93\x57\x8e\xf3\x5e\x67\xce\xb4\x77\xf6\x58\x84\x76\xcf" "\xb3\x17\xe4\xb7\xba\x7a\x9e\x1d\x1a\x77\xd9\xf9\x8e\xf4\x75\xfa\xb8\xc9" "\x71\x97\xbd\x2f\x22\xdd\xbf\xd9\xfb\x22\xd2\xf8\x0b\x33\x13\x68\xad\xde" "\x17\xd1\xee\xb8\x4b\xa7\x35\x1a\x8c\xbb\xf1\xcc\x8a\xe7\x53\x27\x8f\x8b" "\xa8\x41\xbf\x4e\x8c\x8b\xfc\x68\xd9\x71\x31\x85\x71\xd4\x5f\x19\x47\xd3" "\xfb\xba\xd4\xeb\xff\x7a\x7f\x7a\xe7\xdf\xdf\x34\xf3\x09\xd1\xee\xfa\xfe" "\x69\x72\x3e\xe1\x68\xbf\xde\x4f\xb7\xa7\xc7\x87\xae\x26\xe7\x01\x56\x05" "\xb6\x77\x6a\x1e\x20\x3d\x5c\xa4\xed\xfa\x79\x83\xb6\x1c\x09\xe6\x01\x00" "\x60\xe2\xfa\x3f\x3d\xa7\x18\xbb\xfe\x1f\xfb\x5d\x3d\x90\x39\xcf\x2f\xba" "\x6e\xc9\x5e\x65\xa4\xf1\x82\xf7\xb1\x94\xf3\xdb\x53\x74\xfd\x3b\xf9\x7e" "\xb6\x59\x2d\x9d\x57\x5e\xfc\xf2\x71\xa7\xaf\xd8\xf2\xf0\x86\xe0\x79\xf1" "\xe3\xcd\xde\x97\x72\x73\xdd\xda\xac\x82\xfb\x52\x8a\xfa\x71\x71\x66\xbd" "\xb0\x1f\x03\xb7\x82\x14\xcd\x3b\x2c\xc9\x94\xef\x8b\xe6\xb4\xd4\x8f\xa7" "\xfe\xe2\xba\x6b\xf7\xee\x1f\x7e\x36\xd8\x8f\x43\x95\x13\xa9\xe2\x7e\xdc" "\x53\xb7\x36\xa7\xcd\x7e\x5c\x9a\x59\x2f\xec\xc7\xee\xfc\x56\x15\xf5\x63" "\xb6\x9e\xa2\xf1\x7b\x46\x66\xbd\x2f\xb9\x23\x68\xaa\xfd\xfe\xce\xc5\x17" "\x5f\xb9\xf2\xc0\xe6\x7b\x82\xfd\xbe\xbb\xd9\x7e\x7f\xa0\x6e\xad\xbf\xa0" "\xdf\x5d\xa7\x07\xe2\xbb\x4e\x7f\x43\xbc\xee\x5f\x34\x1f\x39\xfd\xf3\x00" "\x67\xd5\xd5\x5b\xbd\xde\x4f\xe6\xad\xa7\x6b\x1e\xe0\xea\xc0\xf6\xa9\xce" "\x03\xf4\x4d\xfa\xa6\x9a\xe7\xb8\xd7\xdd\x3c\x40\xe0\xf7\x02\x00\xbc\x9e" "\xa5\xd7\xff\xd5\xfb\xe5\x93\xeb\xff\x7f\xc8\x94\x6b\xf7\xfa\x30\x78\xde" "\x36\xd4\x99\xfb\x59\x83\xe7\x6d\xd5\xf3\xda\xf6\xce\xcb\x83\xed\xaf\x9e" "\x97\xb7\x77\x5d\x14\x8c\x5f\xbd\x2e\x6a\xef\xba\x25\xd8\x3f\xd5\xeb\x96" "\xf6\xae\xbb\x82\xf1\xab\xd7\x5d\xed\xcd\xd3\x04\xfb\xe7\xf1\xb4\x7f\x26" "\x9f\xf7\xef\x6a\x22\x7e\x7a\xde\x1f\xfa\x73\x81\xf4\xbc\xff\xf5\x7f\x5d" "\x34\xbd\xf3\x0c\x7f\xb2\xd7\x47\x5d\x17\x75\x94\xeb\x22\x00\x80\x37\xb6" "\xf4\xfa\x3f\x3d\x5d\x4d\xef\xff\x7f\x22\x59\xcf\x9e\x1b\x4f\xff\x75\xee" "\x74\x5f\x87\x4e\xf7\x75\xf4\x74\xcf\x33\x4c\xf7\x3c\xc9\xeb\xfd\x3a\xf7" "\xc8\xcf\x33\x34\x13\xbf\xf9\x79\x86\xe9\x9e\x67\x33\x0f\x60\x1e\xa0\x98" "\x79\x00\x00\x80\x37\x86\x77\x27\xcb\xeb\x9b\x2c\xdf\x35\x7e\x0f\x71\x14" "\x7d\xfc\x86\x1b\xcf\x5d\xbd\x6e\xf8\x93\xab\xd7\x6f\x1d\x1e\x1e\xbd\x79" "\xed\x0d\xc3\xab\x47\x36\x8f\x6c\xab\x96\xeb\x1e\xbf\xf2\x9a\x7c\x9f\x74" "\xa8\xbe\xca\x7d\xd2\xe1\x33\xee\xbc\xf2\xb3\x1a\xdc\x57\xbd\x3a\x37\xfe" "\xe4\xf6\x5c\x1a\x28\x1f\xd2\x6e\xfe\xa1\xfa\x8a\xee\x13\xcf\x2b\xdf\x28" "\xff\x35\xc1\xf8\xf5\xed\xb9\x2c\x50\x3e\xa4\xdd\xfc\x43\xf5\x15\xe5\x9f" "\x57\xbe\x51\xfe\x6b\x83\xf1\xeb\xdb\x73\x79\xa0\x7c\x48\xbb\xf9\x87\xea" "\x2b\xca\x3f\xaf\x7c\xa3\xfc\x3f\x1e\x8c\x5f\xdf\x9e\xf7\x04\xca\x87\xb4" "\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\x37\xca\xff\x86\x60\xfc\xfa\xf6\xfc\xbf" "\x40\xf9\x90\x76\xf3\x0f\xd5\x57\x94\x7f\x5e\xf9\x46\xf9\x67\xdf\x2f\x33" "\x94\xff\x7b\x03\xe5\x43\xda\xcd\x3f\x54\x5f\x51\xfe\x79\xe5\x1b\xe5\x3f" "\x1c\x8c\x5f\xdf\x9e\xf7\x05\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca" "\x37\xca\x7f\x7d\x30\x7e\x7d\x7b\x56\x06\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2" "\xfc\xf3\xca\x37\xca\x7f\x43\x30\x7e\x7d\x7b\xae\x08\x94\x0f\x69\x37\xff" "\x50\x7d\x45\xf9\xe7\x95\x6f\x94\xff\x8d\xc1\xf8\xf5\xed\x79\x7f\xa0\x7c" "\x48\xbb\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3\xfc\x47\x82\xf1\xeb\xdb\x73" "\x65\xa0\x7c\x9d\x9a\x89\xe3\x76\xf3\x0f\xd5\x57\x94\x7f\x5e\xf9\x46\xf9" "\xdf\x14\x8c\x5f\xdf\x9e\x0f\x04\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3" "\xca\x37\xca\xff\x13\xc1\xf8\xf5\xed\xb9\x2a\x50\x3e\xa4\xdd\xfc\x43\xf5" "\x15\xe5\x9f\x57\xbe\x51\xfe\x1b\x83\xf1\xeb\xdb\x73\x75\xa0\x7c\x48\xbb" "\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3\xfc\x37\x05\xe3\xd7\xb7\xe7\x83\x81" "\xf2\x21\xed\xe6\x1f\xaa\xaf\x28\xff\xbc\xf2\x8d\xf2\xdf\x1c\x8c\x5f\xdf" "\x9e\x0f\x05\xca\x87\xb4\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\x37\xca\x7f\x4b" "\x30\x7e\x7d\x7b\x56\xe5\x95\x0f\xc4\x8c\x3a\x90\x7f\x6e\x7d\x4d\xe4\x9f" "\x57\xbe\x51\xfe\x37\x07\xe3\xd7\xb7\xe7\x9a\x40\xf9\x90\x76\xf3\x0f\xd5" "\x57\x94\x7f\x5e\xf9\x46\xf9\xdf\x12\x8c\x5f\xdf\x9e\x0f\x07\xca\x87\xb4" "\x9b\x7f\xa8\xbe\xa2\xfc\xf3\xca\x37\xca\x7f\x6b\x30\x7e\x7d\x7b\x3e\x12" "\x28\x1f\xd2\x38\xff\x89\xbb\x04\x42\xf9\x87\xea\x2b\xca\x3f\xaf\x7c\xa3" "\xfc\x47\x83\xf1\xeb\xdb\xf3\xd1\x40\xf9\x90\x76\xf7\x7f\xa8\xbe\xa2\xfc" "\xf3\xca\x37\xca\x7f\x5b\x30\x7e\x7d\x7b\xae\x0d\x94\x0f\x69\x37\xff\x50" "\x7d\x45\xf9\xe7\x95\x6f\x94\xff\xf6\x60\xfc\xfa\xf6\x5c\x17\x28\x1f\xd2" "\x6e\xfe\xa1\xfa\x8a\xf2\xcf\x2b\xdf\x28\xff\x4f\x06\xe3\xd7\xb7\xe7\x63" "\x81\xf2\x21\xed\xe6\x1f\xaa\xaf\x28\xff\xbc\xf2\x8d\xf2\xdf\x11\x8c\x5f" "\xdf\x9e\xeb\x03\xe5\x43\xda\xcd\x3f\x54\x5f\x51\xfe\x79\xe5\x1b\xe5\x7f" "\x6b\x30\x7e\x7d\x7b\x56\x07\xca\x87\x54\xf3\xdf\xb6\x75\x78\x78\xf5\xf6" "\x9b\xd7\xad\xdd\x36\xbc\x7a\xf3\x96\x75\xc3\xa3\xab\x77\x6c\x1d\xd9\xb6" "\x6d\x38\x39\x51\x6b\xf7\xbe\xc4\xe0\x7d\x65\xc9\x7d\x89\xdd\x51\x57\xc3" "\xfc\x17\x66\xd6\x8f\x49\xde\x1f\xe8\x98\xc0\xfb\x03\x65\xcb\xa7\x61\x4f" "\x18\xff\x66\xf2\xfb\x03\x65\xab\xed\x2a\x78\x9f\x9c\xa2\xfd\x95\xad\xbf" "\xe8\x7d\x86\xf2\xca\xe7\x8d\xb7\xd0\xfe\x2d\x3a\x1e\x34\x3b\x1e\xb2\xea" "\x7e\x3e\x2a\x83\x64\x64\xf3\xe8\xf0\xd6\xc9\xc7\xef\xde\x86\xfd\x51\x3b" "\x26\xa2\xf1\x57\x06\x7b\x2b\xcb\xf8\xb8\xa6\xca\x67\xdf\xae\xb3\xc1\x29" "\x7d\x43\xcd\xe7\xd3\xd3\x30\x9f\xec\xe6\x99\xc9\x6b\x9d\x33\xe3\xf9\x4d" "\x95\x8f\x02\x9f\x07\x37\x55\xcd\xe7\x13\x07\xf3\xc9\x6b\xc7\x54\x3f\xc7" "\x2e\x0d\x3b\xa5\xcf\xb1\xcb\x7c\x99\x24\xe7\x3d\x5a\xeb\xf2\x5d\x3f\x3a" "\x7e\x90\x1e\x59\xbb\x71\x64\xe7\xf0\xe4\xf6\xcf\x3a\x0a\xda\xdf\x4c\x3f" "\xee\xee\x50\x3b\x26\x3e\x04\xb0\x34\xa9\x1d\x45\xfb\x3f\xce\xf4\xc7\xbc" "\xa4\x25\xf3\x42\x9f\xf7\x16\xe8\xbf\x1d\xdf\xf8\xaf\x07\x7f\xfd\xeb\xbf" "\x7b\x6f\x14\x0d\xce\x2f\x9f\xd8\x56\xff\xc5\x43\x87\xd7\x1c\x3c\xee\xe3" "\x3f\xbe\x68\xe6\x39\x63\xed\x2f\x35\x6c\x7f\xb5\x64\xfa\xb9\xca\x05\x9f" "\x7f\x98\x2d\x9f\xe6\xd3\xb5\x71\xcb\xe8\xb6\xff\xbd\x7e\xcb\xf6\xcd\xf9" "\xaf\xa0\xa5\xf7\x3b\x97\xaa\xeb\xd3\x74\xbf\x73\x92\x67\xed\xdb\x28\x36" "\xba\x7f\x39\x74\xbf\xc7\x54\xef\x5f\x8e\x27\x7d\x73\x74\x6a\xf6\xfe\x65" "\x00\x00\x80\x37\x8b\xf4\xef\xff\xd3\xeb\xd5\x05\xc9\xdf\xa0\xce\xcb\x4c" "\x11\x34\x3f\x0f\xdc\xde\xdf\x47\x07\xe7\x81\xf7\x35\x37\x0f\x9c\x9d\x8d" "\x28\x9a\x07\xce\x96\x4f\xd3\x6e\x76\x1e\xb8\xaf\xcd\x79\xe0\x6c\xfd\xa1" "\x79\xda\x52\x83\xf2\x8d\x5e\x77\x69\x76\x1e\xf8\xa3\x81\xf2\x53\xd5\xfc" "\x38\x69\xfd\x7d\x00\x76\x45\xf3\x0f\x04\xc7\x49\xd2\x53\x45\xe3\x24\xfb" "\x77\xf8\x45\xe3\x24\x5b\x7e\xaa\xe3\xa4\xb7\xcd\x71\x92\xad\xbf\x68\x9c" "\xe4\x95\x6f\xf4\xfa\x74\xb3\xe3\xe4\x9a\x40\xf9\x90\xe6\xc7\x43\x0b\xef" "\x3b\x31\x30\xf1\xbe\x13\xc1\xf1\x30\xd8\xdc\x78\xc8\x7e\xae\x66\xd1\x78" "\xc8\x96\x9f\xea\x78\xe8\x69\x73\x3c\x64\xeb\x2f\x1a\x0f\x79\xe5\x1b\xdd" "\xaf\xd3\xec\x78\xf8\x60\xa0\x7c\xb3\x9a\x1f\x1f\xed\xbd\x2f\x4c\x70\x7c" "\xac\x69\x6e\x7c\x64\x3f\x2f\xa5\x68\x7c\x64\xcb\x4f\x75\x7c\xc4\x6d\x8e" "\x8f\x6c\xfd\x45\xe3\x23\xaf\x7c\xa3\xfb\x19\x9b\x1d\x1f\x1f\x08\x94\x4f" "\x35\xbf\xff\xdb\x7b\xdf\x9e\xe0\xfe\xdf\xd3\xdc\xfe\xcf\x7e\x6e\x4b\xd1" "\xfe\xcf\x96\x9f\xea\xfe\x2f\xb5\xb9\xff\xb3\xf5\x17\xed\xff\xbc\xf2\x8d" "\xee\xe7\x6e\x76\xff\x5f\x11\x28\x9f\xaa\xdf\xff\x63\x3b\x7e\x7c\xbf\x0f" "\xaf\xde\xb1\x65\x6b\xed\x3d\xd0\xd3\xfd\xb9\x2d\x21\xcd\xb7\xaf\xed\xcf" "\xad\xe9\xcd\x6d\xdf\x9a\xf6\x3e\x88\xb2\xf9\xf6\x4f\xef\xfb\x3e\x4d\x7f" "\xfb\xa7\xf7\x7d\xa5\xa6\xbf\xfd\xed\x5d\x37\x05\xdb\xbf\xaf\xbd\x57\xba" "\x9a\x6f\xff\xf4\x7e\x2e\x51\xab\x8e\xd8\xeb\xb1\xc9\xdf\x0c\x15\xbd\xff" "\x54\xd1\xfb\x4c\x7d\x24\xb0\x7d\xaa\xaf\xd3\xce\x98\xf4\xcd\xd1\xc9\xeb" "\xb4\x00\x00\x00\x30\xfd\xd2\xd7\xff\xd3\xfb\xc8\xd3\xf7\x87\xff\x42\xb2" "\x0c\x7c\x4c\x7f\xcb\x5e\xff\x9f\xef\xed\xf3\xb7\x73\xe3\x77\xe8\xf3\xb7" "\x8b\xe6\x31\xcd\xe7\x35\xa8\xec\x28\x60\x3e\x0f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x33\x66\x76\x2d\x18\x5f\x3e\xf9\xd9" "\xd1\xdf\x5d\xb1\xf0\xdd\x3f\xbc\x73\xf8\x95\x5d\x97\x7f\x7b\xd3\x1d\x7b" "\x86\x66\x3c\xf9\xae\x7b\xde\xf7\xcc\x57\x3e\xf6\xb5\xe7\x9e\x9f\xb7\x74" "\xd9\x57\x6f\xba\xf4\xd0\x2d\xb3\x57\xde\x7d\xf7\xd0\x4f\xce\x3f\xf4\xa3" "\x3f\xde\x5e\x18\xb8\xbf\xb2\x38\x23\x59\xed\x89\xa2\xf8\xc5\x38\x8a\x4e" "\xfa\xf1\xd2\x2f\xde\xf5\xfd\xa7\x8e\x1f\xdb\x16\x47\x51\x54\x8e\xfb\x77" "\x47\xd1\xbc\xb8\xf4\xbd\x38\x1b\x61\xf0\xd5\x28\x8a\xd6\x55\xdb\x59\xff" "\xe0\x63\xaf\x2c\x5f\x3f\xb6\xdc\xfd\x85\x99\x75\xdb\x8f\xc9\x04\xc9\xe6" "\x15\xf5\x95\xd3\xf6\xd4\xb5\x33\xba\xb5\x30\x23\x5e\x87\x7a\x92\x71\xf6" "\xb9\xef\x6e\x39\xf1\x57\x67\x5f\xfa\xcc\xde\x9f\x5e\xf2\xca\x60\xcf\xab" "\x5b\x77\x4f\x14\x89\x7b\x6a\xc6\x53\x14\xcd\x5d\x53\xfb\xfc\xee\x28\x8a" "\x7a\x93\xff\x63\xd2\xd1\xb6\x20\x7d\x72\xb2\xbc\x32\x8a\xa2\x59\x35\xcf" "\xbb\xa0\xa0\x5d\xa7\x36\xd9\xfe\xb3\x02\xeb\x0b\x93\xe5\x8c\x64\xd9\x57" "\x10\x27\x7d\xfc\x94\xcc\x7a\x77\x93\xed\xe8\xca\x2c\x7b\x9a\x7c\x5e\xab" "\x4a\xd3\x1c\x3f\x95\xee\xbf\xd9\xd3\x5c\xff\xa4\xa3\x5b\xa6\x9e\x79\xc9" "\xf2\x1b\xc9\xf2\x8c\x29\xc6\x2f\xa7\xff\xe3\xa8\x14\x47\x5d\xd5\xea\x36" "\xc6\x13\x63\x24\xaa\xd9\x6f\x71\x14\x8f\xef\xfb\x89\xf5\x52\xdd\x58\x88" "\x33\x63\x23\x8e\xa2\x38\xb3\x5e\xca\xac\x97\xbb\x33\x79\x8d\xd7\x9b\x0c" "\xb4\x72\x1c\xd7\x6f\x4f\xcb\x65\xb6\x0f\x24\xdb\xbb\x92\xed\xa7\x14\x8c" "\xb5\xab\x03\xdb\xdf\x96\xe6\x9b\xfc\xa0\x1e\xcc\xe4\x9f\x0d\xda\x37\xe9" "\x9b\x6a\x5e\xe3\xd2\x76\xfd\xbc\x41\x5b\x8e\x84\x52\xcd\x31\x28\x6f\x7b" "\xda\xde\x9e\x64\x67\xf4\x25\xdb\xfa\xe2\x63\x27\x3d\xe7\x70\x8e\xf4\xb1" "\x55\xcf\xdf\xfb\xe8\x73\x3b\xef\x5f\xdc\x1f\xa8\x2f\xfe\x7a\x9c\xc4\x8f" "\x5b\x8a\xff\xf4\xa6\x0b\xf7\x2f\xd9\xf9\xb3\x03\x0b\x02\x79\xc6\x6b\x4a" "\x49\xfc\x52\x4b\xf1\x47\xcf\x7e\xe9\x91\x17\xae\xfa\xc1\xf1\xc1\xf8\x7b" "\xd2\xf8\xe5\x96\xe2\x3f\x7b\xde\x92\x2f\x7d\x67\xd7\x8e\x83\xfd\xa1\xf8" "\xbf\x49\xfb\xa7\xab\xa5\xf8\xe5\x15\x67\x1e\x5a\x76\xe7\xe0\xaa\x60\xfb" "\x1f\x48\xe3\xf7\xb4\x14\xff\xc1\x4b\x1e\xfe\xf2\xdc\x77\x3c\xf1\x48\xb0" "\xfd\x83\x69\xff\xf4\xb6\xd6\x3f\x23\xdb\x5f\xbb\xf6\xa1\xf9\x07\x82\xf1" "\xa3\x34\xfe\xac\x96\xe2\x5f\xfc\xf2\x71\xa7\xaf\xd8\xf2\xf0\x86\x60\xfc" "\xc7\xd3\xfe\xe9\x6b\x29\xfe\x53\xa3\x23\x2b\xef\xba\x71\xd1\x8e\x81\x50" "\xfc\x7d\x69\xfc\x39\x2d\xc5\x3f\xf5\x17\xd7\x5d\xbb\x77\xff\xf0\xb3\xc1" "\xf6\x0f\xa5\xfd\xd3\xdf\x52\xfc\x77\x2e\xbe\xf8\xca\x95\x07\x36\xdf\x13" "\x3a\x76\xc6\xbb\x8f\xd4\x6f\x58\x80\x37\xa6\xb7\x24\xe7\x58\x9f\x4f\xd6" "\x5b\xbd\xce\x6c\x57\xcd\xf5\xc2\x7d\xfd\x71\xe5\x9c\x6f\x76\xf2\x7f\x4e" "\x27\x2b\xca\x18\xab\x67\xee\x34\xc6\x07\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe0\x8d\x69\xf8" "\xb2\xfb\x76\x5d\xb6\x6f\xf5\xe5\x5d\x71\x14\xc5\x81\x32\x87\x73\xa4\x8f" "\x95\x67\x0c\x0d\x0d\xb4\x50\x6f\x79\xc5\x99\x87\x96\xdd\x39\xb8\xaa\x76" "\xdb\x82\x16\xe2\x00\x00\x00\x00\xc5\xd2\xeb\xf0\x52\x75\x4b\x4f\xb4\x20" "\xda\x11\xf7\x46\x27\xe4\x96\x4f\xe7\x08\x4e\x48\xd7\xe2\xfa\xed\xd9\x39" "\x84\xde\x89\x92\x1d\x89\x53\xea\x50\x9c\x72\x87\xe2\x74\x75\x28\x4e\x77" "\x87\xe2\xcc\xe8\x50\x9c\x99\x1d\x8a\xd3\x53\x10\xa7\x27\x6a\x2e\x4e\x6f" "\xc3\x38\xa5\xa6\xdb\x33\xab\x43\x71\xfa\x3a\x14\x67\x76\x87\xe2\xcc\xe9" "\x50\x9c\xb9\x1d\x8a\x73\x4c\x87\xe2\xf4\x37\x8c\xd3\xfc\x38\x9c\xd7\xa1" "\x38\xc7\x76\x28\xce\x5b\x3a\x14\xe7\xad\x1d\x8a\x33\xbf\x43\x71\x8e\xeb" "\x50\x9c\xe3\x3b\x14\x27\x3b\xa7\x3c\xd5\x71\x38\x27\x29\xb9\x30\x14\x67" "\xfc\x9b\x72\x61\x9c\xae\xb8\x5c\x7d\x20\x6f\x3e\x3d\xad\xe7\xa4\xcc\xf3" "\x4a\x53\xac\xa7\xaf\xc9\x7a\xb2\x73\xf6\x53\xad\xa7\xb7\xc9\x7a\x4e\x6b" "\xb3\x9e\x9e\x26\xeb\x59\xd2\x66\x3d\x71\x93\xf5\x9c\xd1\x66\x3d\xa5\xb8" "\xb7\x61\x3d\xe9\xb8\xbd\x35\xdb\xbe\xb4\x9e\x74\xad\xc9\xf1\x7f\x5b\x87" "\xe2\xec\xec\x50\x9c\x4f\x75\x28\xce\xa7\x3b\x14\xe7\xf6\x0e\xc5\xf9\x4c" "\x87\xe2\xec\x6a\x33\x0e\x40\xb3\xd2\xeb\xff\x89\xeb\xc6\xfe\x68\x66\xd7" "\x45\xd1\xac\xe4\x88\x93\x9d\x05\x48\xaf\x77\x17\x55\x9e\x3d\xe9\x78\xd4" "\x93\xbd\x40\x4f\xa4\xf1\x4e\xcc\x6c\x9f\x51\x14\x2f\x7b\xa1\x9e\x89\xb7" "\xa8\xc3\xed\x3b\x35\xb3\xbd\xbb\x2e\x5e\x57\xf5\xbc\xa9\x41\xbc\xfe\xda" "\x78\x8b\x33\x0f\x16\xe6\x9b\x9d\x50\xc8\xb4\x6f\xe9\x54\xe3\x65\x27\x16" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x1a\x0d\x5f\x76\xdf\xae\xcb" "\xf6\xad\xbe\x3c\x8a\xa3\xb1\x7f\xb9\x0e\xe7\x48\x1f\x2b\xcf\x18\x1a\x1a" "\x68\xa1\xde\x55\xcf\xdf\xfb\xe8\x73\x3b\xef\x5f\x5c\xbb\x6d\x66\x57\x0b" "\x81\x80\xff\x61\xd7\xee\x62\xe4\x2a\xcb\x00\x00\x7f\x67\xe7\xb7\xdb\x82" "\x53\x03\x75\x20\x85\x8e\x94\x56\x8c\x48\x4b\x17\xe5\x27\x35\x1c\xf4\x62" "\x96\x18\x84\x00\x46\x03\xa6\xbb\xa5\x0c\x75\xc3\x76\x17\xd9\x6d\x0a\x2b" "\xb2\xd6\x0b\xe2\x85\x06\x12\x4d\x5c\xbd\x32\x5c\x61\x08\x17\x6a\x50\x54" "\x92\xe5\x42\x63\x50\x12\x36\x51\x6c\x22\x28\x37\x12\x45\x03\x24\x40\x42" "\x4d\x4c\xc6\xec\xce\x39\xf3\xd7\x99\xce\x32\xa2\x2d\xf8\x3c\x17\xe7\xe7" "\xfb\xde\xef\x7d\xcf\x37\xdb\x34\x79\xcf\x0c\x00\x00\xc0\x40\x69\x1f\x9e" "\x6b\x8e\x14\x43\x21\xbb\x2b\xe4\xa3\x7c\x47\x5c\x31\x79\x0f\x50\x4c\xee" "\x33\xa5\xc6\x39\xaa\x8c\xac\x9d\x47\xa3\xcd\x27\x8d\xcf\x26\xf1\xbb\xe6" "\x0f\xdd\xb5\x6b\xee\xde\x85\x8f\x4e\x1d\xda\x7f\xb0\x76\xb0\x36\x33\x36" "\x36\x76\xc5\x65\x63\x7b\x2e\xdf\xf3\xf1\x5d\x77\x4c\x4d\xd7\x76\x37\x8e" "\xa1\x30\x20\x5f\x2e\xc9\x37\x77\xef\xc2\x9d\xfb\xa7\xa7\x6b\x77\xcf\x35" "\xee\xbb\x9f\xbb\x9c\xac\x2b\xb7\x86\x26\x57\x0f\x47\x93\xe7\x7e\xff\x80" "\x3a\x51\x12\xdf\xaa\xf3\xdf\xbb\x18\xfc\xd7\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x80\x53\xab\x56\x5d\x5a\xac\xae\x4c\x8c\x8f" "\x46\x21\x44\x7d\x62\xea\x3d\xa4\x73\x99\x7c\x1c\x57\x86\xa8\x7b\xcd\x9b" "\x5b\x76\x5c\x35\xfb\xe8\xc1\xf6\xb1\x42\x76\x88\x44\x00\x00\x00\xc0\x40" "\x69\x1f\x9e\x6b\x8e\x14\x43\x21\x9b\x09\x99\x70\xce\xda\xdd\x05\xad\xd0" "\x52\x08\xad\xbe\x1f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf8\xff\x53\xab\x2e\x2d\x56\x57\x26\xc6\x37\x46\x21\x44\x7d\x62\xea" "\x3d\xa4\x73\x99\x7c\x1c\x57\x86\xa8\xfb\xdb\xb9\xa9\xeb\x1e\xf8\xe2\xb6" "\x23\xed\x63\xe5\x21\xf2\x00\x00\x00\x00\x83\xa5\x7d\xf8\x48\x73\xa4\x18" "\xca\x61\x7b\xc8\x45\xe7\x74\xc4\xa5\xef\x06\xce\xed\x5a\xdf\x1d\x97\xe6" "\x39\x6f\x9d\x71\x95\x10\x42\x61\x1d\x71\xdb\xd7\x99\x6f\xe7\x3a\xe3\x3e" "\x3c\x20\xee\x33\xc9\xf9\x9e\x00\x00\x00\x00\xef\x7e\x69\xff\x9f\x6d\x8e" "\x94\x42\x21\x7b\x46\xdf\xfe\x7f\x50\x5f\x9f\xc6\x6d\xeb\x8a\xcb\x24\xe7" "\x61\x7e\x2b\x00\x00\x00\x00\xfc\x67\xd2\xfe\x3f\xdf\x1c\x29\x87\x42\xb6" "\xdc\xec\xd7\xd7\xdb\xef\x5f\xd0\x15\x97\xae\x1f\xf4\xbd\x7d\xba\x7e\xd0" "\xf7\xf6\x69\xdc\x45\x7d\xea\x74\x7f\x9f\x0f\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x9c\xbe\x6a\xd5\xa5\xc5\xea\xca\xc4\x78\x26\x0a\x21\xea\x13\x53\xef\x21" "\x9d\xcb\xe4\xe3\xb8\x32\x44\xdd\x17\x2f\xdb\xf9\x9d\x5f\x2c\x1e\x39\xde" "\x3e\x56\xc8\x0e\x91\x08\x00\x00\x00\x18\x28\xed\xc3\x5b\xad\x77\x31\x14" "\xb2\xa3\x21\x17\x36\xae\xf5\xfd\x57\xec\xfc\xc7\x97\x16\x26\x8f\x6e\xce" "\x95\x92\xe9\x7c\x3e\xdc\xb3\x7f\x7e\xfe\xee\x3d\x8d\x63\x1a\xb7\xfd\x6b" "\xaf\x7f\xfe\xf7\x3f\x8b\x2a\x27\xc4\x5d\xda\x38\x9e\x92\xcd\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xef\xa8\x5a\x75\x69\xb1" "\xba\x32\x31\xbe\x21\x0a\x21\xea\x13\x53\xef\x21\x9d\xcb\xe4\xe3\xb8\x32" "\x44\xdd\x17\xa7\x0e\xff\xeb\xd6\x47\xce\x7e\xad\x7d\xac\x3c\x44\x1e\x00" "\x00\x00\x60\xb0\xb4\x0f\x6f\xf5\xfe\xc5\x50\x0e\xf9\x90\x0f\x5b\xd6\xee" "\xda\x7b\xfd\x55\x23\x5d\xeb\xfb\xbd\x33\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xde\x3b\xe6\xee\x5d\xb8\x73\xff\xf4\x74" "\xed\x6e\x17\x2e\x5c\xb8\x68\x5e\x9c\xea\xff\x99\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd3\x45\xad\xba\xb4\x58" "\x5d\x99\x18\x2f\x46\x21\x44\x7d\x62\xea\x3d\xa4\x73\x99\x7c\x1c\x57\x86" "\xa8\xfb\xf0\x27\x1f\xfd\xde\x99\x1f\xfb\xe5\x63\xed\x63\xe5\x21\xf2\x00" "\x00\x00\x00\x83\xa5\x7d\x78\xab\xf7\x2f\x86\x72\xc8\x85\x5c\x38\x7b\xed" "\xae\xd7\x3b\x81\xb5\xfe\xbf\xf4\x3f\x7c\x48\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xe0\xb4\x50\xab\x2e\x2d\x56\x57\x26\xc6\xcf" "\x88\x42\x88\xfa\xc4\xd4\x7b\x48\xe7\x32\xf9\x38\xae\x0c\x51\xf7\x82\xbf" "\x7c\xe1\xd6\xe5\x63\xb5\x17\xdb\xc7\x0a\xd9\x21\x12\x01\x00\x00\x00\x03" "\xa5\x7d\x78\xbe\x39\x52\x0c\x85\xec\xa5\xa1\x10\xb6\x26\xf7\xd3\x9d\x0b" "\xa2\x4c\x72\xee\xfd\x5e\xa0\xb5\xee\xae\x8e\x65\xa3\xeb\x5e\x77\x5f\xc7" "\xba\xcc\xba\xd7\x7d\xbd\x6b\x67\xd9\x64\x37\x8d\x75\xc5\x34\x5f\xa9\x71" "\x6e\xae\xab\x9c\xb8\xae\x12\x42\x28\x27\xeb\xca\xad\x89\xc9\x8e\x75\xe1" "\xa1\x8e\x55\x67\xac\xfb\x39\xbf\xdf\xb1\xae\x34\x60\x5d\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xd3\x50\xad\xba\xb4\x58" "\x5d\x99\x18\x8f\xa2\x10\xa2\x3e\x31\xf5\x1e\xd2\xb9\x4c\x3e\x8e\x2b\x43" "\xd4\x7d\xee\xd0\x95\xc7\x76\x2e\xfc\xe9\xb5\xf6\xb1\x72\x47\xc4\x86\x21" "\xb2\x02\x00\x00\x00\xbd\xa4\x7d\x78\xab\xf7\x2f\x86\x72\x38\x2f\x9c\x19" "\xce\x5b\xeb\xfb\x43\xa9\x33\x3e\x8d\xdb\xfb\xc8\x2b\x57\xfd\xed\xe7\x1b" "\xbe\x19\xc2\xee\x2d\xbf\x3b\x3f\xdb\x37\xff\x5f\x2f\xaa\xfe\xaa\xfb\x10" "\xc2\x48\x67\xd0\x48\x08\xef\x4b\xea\x45\x7d\xea\x1d\xf9\xc9\xdf\x1f\x7e" "\xf5\xd5\x9f\x7e\x3a\x84\xdd\x67\x67\xb6\xbe\xdd\x7a\x9d\x29\xe3\xfa\xe4" "\xf1\x2d\xb7\x3d\xbb\xb7\xb0\xeb\x24\x1f\x0c\x00\x00\x00\xbc\x87\xa4\xfd" "\x7f\xae\x39\x52\x0a\x85\xec\x4c\xdf\xfe\x3f\xed\xbc\xdf\x56\xff\x3f\x7b" "\xd6\x4d\xf7\x6d\x4e\x8e\x49\x47\xde\xb5\x62\xa4\x94\xd4\x1b\xe9\x53\xef" "\xce\xcb\xbf\xf5\xe3\xca\xf9\xc7\xfe\xb8\xda\xff\x9f\xac\xde\xf5\x5f\x39" "\xf7\x53\x9b\xc3\xec\xe5\xf1\x54\x7a\x6c\x8c\x74\x89\xe2\xfa\xf4\x83\x3b" "\xf6\xbd\xbc\xe9\xe9\xc3\xe9\xae\x1b\xf5\x33\x5d\xf5\xd3\xcf\xe5\xa5\xe3" "\x3f\xfa\xec\x91\xb9\x03\x5f\x6d\xd4\x2f\x86\x62\x32\x7e\x6e\xd7\xa3\xd4" "\xd7\xaa\x5d\x7f\xc2\xb1\xcb\x86\xb8\xfe\xd6\xcc\x13\x4f\x1d\xd8\xbb\x70" "\x43\x67\xfd\x6c\x9f\xfd\x3f\xb0\xe3\x83\x7f\xfe\xc3\x77\x0f\xbd\xb2\x5a" "\xff\x8d\x6d\xa3\xcd\xfa\x1f\x3a\xc9\xfe\x4f\x5e\xff\xac\x9b\xab\xcf\x1f" "\x7d\xfc\xa1\x1b\x3b\xeb\xe7\xfa\xd4\x3f\x78\xd3\xc6\x1f\xbc\x59\x99\xfd" "\x67\xf7\xfe\x47\xbb\x12\x27\x9f\x7c\xe3\x0f\xde\xf6\x57\xe8\x12\xc5\xf5" "\x37\xa6\x9e\xb9\x7a\xd3\xf2\xf6\x7d\x9d\xf5\x43\x08\x93\xed\x81\xe9\xe7" "\xff\xd4\x13\xdf\xae\x2c\xff\x66\xf3\xa1\xb4\x7e\xfa\x5b\x91\x8b\xb6\x77" "\xd5\x6f\xfb\xa7\xd6\x7e\xec\x7a\xe7\x14\xc5\xf5\xe5\xad\x17\x1f\x1c\x7b" "\x72\x7e\x63\x67\xfd\xa8\xab\x7e\xba\xff\x63\xf7\xff\xf0\xad\x2f\x1f\x7b" "\xee\xda\xee\xfd\xdf\xde\xbd\xff\xbe\xf5\xbb\xf7\x7f\xed\xce\xcc\x2d\x2f" "\x6c\x1b\x1b\xe6\xc7\x33\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xef" "\x02\xb5\xea\xd2\x62\x75\x65\x62\x3c\x64\x42\x88\xfa\xc4\xd4\x7b\x48\xe7" "\x32\xf9\x38\xae\x0c\x51\xf7\x13\x17\x5e\x73\xc3\x75\xaf\xcd\x7c\xa3\x7d" "\xac\x90\x1d\x22\x11\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xf0\x8e\xa9\x55\x97\x16\xab\x2b\x13\xe3\x23\x51\x08" "\x51\x9f\x98\x7a\x0f\xe9\x5c\x26\x1f\xc7\x95\x21\xea\xce\x5d\xf2\xfa\x63" "\x2f\xdf\xf8\xeb\x0f\xb4\x8f\x95\x87\xc8\x03\x00\x00\x00\x0c\x96\xf6\xe1" "\xad\xde\xbf\x18\xca\x21\x1f\xf2\x61\x74\xad\xef\x9f\x3c\xbe\xe5\xb6\x67" "\xf7\x16\x76\x85\x52\x63\x36\x4a\xce\xd9\xe9\xd9\xb9\xf9\x8f\xdc\x31\x7b" "\x78\xe6\xf6\x53\xf4\xe4\x00\x00\x00\xc0\x7a\xa5\xfd\x7f\xb6\x39\x52\x0a" "\x85\xec\x85\x21\x97\xf4\xff\xcb\x5b\x2f\x3e\x38\xf6\xe4\xfc\xc6\xb4\xff" "\x0f\x21\x4c\xae\x1e\x8a\x77\x4c\x4d\xd7\xc6\x42\xf3\x3d\xc1\xb5\x3b\x33" "\xb7\xbc\xb0\x6d\xac\xd2\x7c\x4f\xd0\x1e\x77\xc9\x81\xd9\xe9\xe4\x35\x41" "\x9a\xf7\xfe\x2b\x37\xbd\x34\xf7\xb9\x95\xeb\x7a\xe6\xdd\xd3\x8a\x7b\x63" "\xea\x99\xab\x37\x2d\x6f\xdf\x97\xc6\xe5\x92\xf3\x5a\xdc\xa5\xad\xb8\xe9" "\x07\x77\xec\x7b\x79\xd3\xd3\x87\xd3\xb8\x91\xf4\x3d\xc5\x6a\xdc\xee\x56" "\xdc\x5b\x33\x4f\x3c\x75\x60\xef\xc2\x0d\xe9\x7c\xa6\x3d\x5f\x5b\xdc\x59" "\x37\x57\x9f\x3f\xfa\xf8\x43\x37\x36\xf3\x24\xe7\xd1\xa4\x2e\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\xbf\xd9\x81\x03\x01\x00\x00\x00\x00\x20\xff\xd7\x46" "\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2\x7e\x1d\x85\x58\x55\xc4\x71" "\x00\x9e\xb9\x77\xd5\xab\x77\xdd\x76\x8b\x72\x93\x22\x15\x13\x0d\x92\x95" "\x8a\x4a\x88\x56\x21\xe9\xa1\x0d\x29\xf0\xc5\x02\x1f\xb2\x32\x32\xa9\x25" "\x0c\x21\xdc\x84\x2c\x4c\xc2\xa7\x8a\xa0\x88\x28\x08\x44\x0a\x82\x1e\x8a" "\xb0\xa0\x0c\x92\x28\x88\xd0\x1e\xc2\xd0\x1e\xea\x21\x36\xa2\x0d\x71\xa3" "\x62\x77\x67\x76\xef\x3d\x7a\xda\xf5\x94\x06\xf2\x7d\x70\x19\x67\xce\x39" "\xbf\xf9\x9f\x39\xe3\xd9\x7b\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf8\x7f\xcd\xe9\xe8\x1d\x6f\x0f\x3d\x3d\xf8\xfb" "\x9d\x0b\x6f\xfb\x7c\xd7\xe6\x91\x9d\xb7\xbf\xbf\xf5\xa9\x7d\xfd\xb3\x0f" "\xdd\xba\xf7\x8e\xa3\xaf\xdc\xfb\xe6\xf1\x13\x3d\xcb\x57\xbd\xf1\xd0\xba" "\xd1\x47\x3b\x07\xf6\xec\xe9\xff\xfa\xc6\xd1\x2f\xfe\x7c\x72\xda\xe0\x27" "\x26\x9a\x15\xa9\xdb\x08\x21\xfe\x1c\x43\xb8\xf2\xcb\xe5\x2f\xec\xfe\xf4" "\xf0\x82\xb1\xb1\x18\x42\xa8\xc7\xee\xa1\x10\x7a\x62\xed\xe3\x9e\x58\x48" "\xe8\x3b\x15\x42\xb8\x6f\xb2\xce\xf6\x83\xef\x8e\x5c\x77\xff\x58\x3b\xf4" "\xdc\x9c\xb6\xf1\x8b\x0a\x21\xc5\xfb\x0a\xcd\x7a\xae\x67\x42\x77\x7b\xbd" "\x5c\x58\x1a\x69\x9f\x3d\xf3\xe1\xb6\x2b\x7e\x5c\xb9\xee\xe8\xc1\x6f\xd7" "\x8e\xf4\x35\x4e\x3d\x36\x34\x75\x4a\x6c\xb4\xec\xa7\x10\xba\x36\xb5\x5e" "\x3f\x2b\x84\x30\x37\x7d\xc6\xe4\xdd\xd6\x9b\x2f\x4e\xed\xfa\x10\xc2\xbc" "\x96\xeb\x6e\x9a\xa6\xae\x25\x33\xac\xff\xda\x92\xfe\xc2\xd4\xce\x4e\x6d" "\x73\x9a\x9c\x7c\x7c\x71\xa1\x3f\x6b\x86\x75\x74\x14\xda\xc6\x0c\xaf\xab" "\xaa\x76\x8e\xf3\xb3\xfc\xfc\x3a\xcf\xf1\xfc\xc5\x97\x5b\x71\x9e\x9e\xd4" "\xbe\x97\xda\x15\x67\x99\x5f\xcf\x9f\x18\x6a\x31\x74\x4c\x4e\xf7\x70\x9c" "\xda\x23\xa1\xe5\xb9\xc5\x10\xc7\x9f\xfd\x54\xbf\xd6\xb6\x17\x62\x61\x6f" "\xc4\x10\x62\xa1\x5f\x2b\xf4\xeb\xb3\x0a\xf7\x35\x3e\x6f\xda\x68\xf5\x18" "\xdb\xc7\xf3\x79\x85\xf1\x45\x69\xbc\x23\x8d\x2f\x9e\x66\xaf\xdd\x5d\x32" "\x7e\x79\xbe\xdf\xf4\x1f\xf5\x64\xe1\xfe\x8b\xa1\xcd\xd3\xfe\x31\x79\x5f" "\xe3\x72\x5d\xdf\xff\x43\x2d\xe7\x43\xad\xe5\x1d\x74\xa6\xf1\x5c\x6f\x23" "\x3d\x8c\x66\x1a\x6b\xc6\x8b\x4f\xbb\xe6\xaf\x33\xc8\xc7\x36\x9c\x78\xfe" "\xed\xe3\x3b\x5e\x5d\xda\x5d\x52\x47\x7c\x27\xa6\xfc\x58\x29\xff\x9b\xad" "\x37\x1f\x59\xb6\xe3\xbb\xe1\xde\xb2\xfc\x4d\xb5\x94\x5f\xab\x94\x3f\xb8" "\xf2\xd7\x03\x3f\xdd\xf5\xd9\x82\xd2\xfc\x7d\x39\xbf\x5e\x29\xff\xd8\xf5" "\xcb\x5e\xfc\x60\xe7\xf6\x93\xa5\xeb\xf3\x4b\x5e\x9f\x8e\x4a\xf9\xf5\xd5" "\xd7\x8c\xae\xda\xd5\xb7\xa1\xb4\xfe\xd7\x72\x7e\xa3\x52\xfe\xeb\x6b\xf7" "\xbf\xdc\x75\xc3\x27\x07\x4a\xeb\xef\xcb\xeb\x33\xb7\xda\xfa\x6c\x79\xfc" "\x8f\x8d\x6f\x5d\x3a\x5c\x9a\x1f\x72\xfe\xbc\x4a\xf9\x6b\x7e\xbb\xec\xea" "\xd5\xdb\xf6\x3f\x50\x9a\xff\x51\x5e\x9f\x66\xa5\xfc\xc3\x83\x5b\x06\x76" "\x3f\x78\xd5\xf6\x45\x65\xf9\x5f\xe5\xfc\xf9\x95\xf2\x97\xfc\x70\xcf\xc6" "\x83\x47\x36\x1f\x2b\xad\xbf\x3f\xaf\x4f\x77\xa5\xfc\x5b\x96\xae\x59\x3f" "\x30\xfc\xc8\xde\xb2\x77\x67\x1c\x3a\x5f\x7f\x61\x01\x2e\x4c\x97\xa4\xef" "\x58\xcf\xa6\x7e\xd5\xdf\x99\xff\x56\xcb\xef\x85\x97\xba\xe3\xc4\x77\xbe" "\xce\xf4\x99\xff\x5f\x4e\x54\x30\x36\x4f\xd7\xd9\x9d\x0e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf0\x37\x3b\x70\x20\x00\x00\x00\x00\x20\xc8\xdf\x7a\x90\x0b\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\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\x81\x02\x00\x00\xff" "\xff\xde\x22\x58\x67", 23387); syz_mount_image(/*fs=*/0x20005b00, /*dir=*/0x20000000, /*flags=MS_LAZYTIME|MS_STRICTATIME|MS_NOSUID*/ 0x3000002, /*opts=*/0x20000380, /*chdir=*/1, /*size=*/0x5b5b, /*img=*/0x2000b6c0); memcpy((void*)0x200019c0, "cgroup.controllers\000", 19); res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x200019c0ul, /*flags=*/0x275aul, /*mode=*/0ul); if (res != -1) r[0] = res; *(uint32_t*)0x20000100 = 0; *(uint32_t*)0x20000104 = -1; *(uint64_t*)0x20000108 = 0; *(uint64_t*)0x20000110 = 2; *(uint64_t*)0x20000118 = 0; *(uint64_t*)0x20000120 = 0; syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x40305829, /*arg=*/0x20000100ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }