// https://syzkaller.appspot.com/bug?id=9306e0b7e8ba48c473097097998765b8f1dc59b4 // 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_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static 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; } } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } memcpy((void*)0x4000000058c0, "bcachefs\000", 9); memcpy((void*)0x400000005900, "./file0\000", 8); memcpy((void*)0x400000002140, "errors=continue", 15); *(uint8_t*)0x40000000214f = 0x2c; memcpy((void*)0x400000002150, "erasure_code", 12); *(uint8_t*)0x40000000215c = 0x2c; memcpy((void*)0x40000000215d, "usrquota", 8); *(uint8_t*)0x400000002165 = 0x2c; memcpy((void*)0x400000002166, "subj_type", 9); *(uint8_t*)0x40000000216f = 0x3d; memset((void*)0x400000002170, 36, 1); *(uint8_t*)0x400000002171 = 0x2c; memcpy((void*)0x400000002172, "obj_type", 8); *(uint8_t*)0x40000000217a = 0x3d; memcpy((void*)0x40000000217b, "(\252)#!", 5); *(uint8_t*)0x400000002180 = 0x2c; memcpy((void*)0x400000002181, "func", 4); *(uint8_t*)0x400000002185 = 0x3d; memcpy((void*)0x400000002186, "KEXEC_KERNEL_CHECK", 18); *(uint8_t*)0x400000002198 = 0x2c; memcpy((void*)0x400000002199, "subj_user", 9); *(uint8_t*)0x4000000021a2 = 0x3d; memcpy((void*)0x4000000021a3, "BPRM_CHECK", 10); *(uint8_t*)0x4000000021ad = 0x2c; memcpy((void*)0x4000000021ae, "fowner", 6); *(uint8_t*)0x4000000021b4 = 0x3d; sprintf((char*)0x4000000021b5, "%020llu", (long long)0); *(uint8_t*)0x4000000021c9 = 0x2c; memcpy((void*)0x4000000021ca, "fowner<", 7); sprintf((char*)0x4000000021d1, "%020llu", (long long)0); *(uint8_t*)0x4000000021e5 = 0x2c; memcpy((void*)0x4000000021e6, "dont_measure", 12); *(uint8_t*)0x4000000021f2 = 0x2c; memcpy((void*)0x4000000021f3, "dont_measure", 12); *(uint8_t*)0x4000000021ff = 0x2c; memcpy((void*)0x400000002200, "subj_type", 9); *(uint8_t*)0x400000002209 = 0x3d; memcpy((void*)0x40000000220a, "mr\032\260#\036\241\335\275ntinue", 15); *(uint8_t*)0x400000002219 = 0x2c; *(uint8_t*)0x40000000221a = 0; memcpy( (void*)0x40000000b240, "\x78\x9c\xec\xdd\x7f\x90\x5c\x55\xbd\x20\xf0\x73\xbb\x7b\x32\x9d\x99\xfc" "\x98\x04\x78\x44\x90\xc9\x10\xc8\x7b\x3c\x78\x9a\x09\xbf\x0a\x7f\x94\x46" "\xd7\x5f\x0b\x48\x85\xc2\x52\xc2\x46\x61\x20\x13\x8c\x26\x21\x95\x04\x81" "\x80\x12\x5c\x70\xa1\x00\x0b\x2d\x2d\x45\xfd\x03\x2d\xa4\x16\x8d\x16\x55" "\xb0\x4a\xa4\xc4\x00\x9b\xb0\x8a\x52\xac\x2e\xb5\x85\xd4\xea\x2e\x5a\xb5" "\x6e\x21\x4b\x4a\x20\x4b\x59\xae\xf3\x6a\xa6\xef\xe9\xe9\xb9\xd3\x77\x6e" "\x4f\x4f\x4f\x48\xe0\xf3\xa9\x64\x6e\x9f\xd3\xb7\xbf\xf7\xdc\x73\x4f\xdf" "\xbe\xdf\xd3\x3d\xd3\x01\x00\x00\x80\x37\x84\x7d\x37\x6d\x3b\x70\xde\x31" "\xef\xff\xc5\xe7\x87\x5f\xb9\xfe\x43\x3f\xd9\x74\x43\xe8\x2d\x8f\xd5\x57" "\xe3\x0a\x7d\xe9\xf2\xea\xd7\xaa\x85\x1c\x4c\xdd\x95\x25\x63\xcb\xec\xb8" "\xf8\xa7\x6b\xbf\xf7\xc7\x81\xcb\xde\xfb\xf3\xfb\x7a\xbe\xfb\xea\xde\x75" "\xc7\xaf\xff\xed\xfb\x8e\xb8\xec\xa1\x4f\x9d\xbd\xfb\xce\x6f\x3e\xf2\xf2" "\xfc\x07\xfe\xfe\x5c\x51\xdc\x38\x9e\x4e\x1e\x2f\x27\x2f\x24\x21\x54\x7f" "\xba\xff\xab\x5f\xd8\xfb\xc4\xd1\xa3\x75\x49\x08\xa1\x9c\xf4\xed\x0c\x61" "\x51\xb2\xf8\x91\x45\x49\x26\xc4\xe0\x5f\x43\x08\xeb\xd2\x42\xb9\x32\xf1" "\xce\xfb\x5f\x39\x6d\xfd\xe8\xf2\x86\x5b\xbb\x27\xd4\x2f\xcc\x04\x31\xde" "\xdf\xd8\xaa\xe9\x38\xdb\x71\xe0\xaa\x53\xc2\xef\xde\xb3\xe6\xc6\x5f\x2d" "\xfd\xe1\x0f\xba\x76\x3d\xbf\x73\x7c\x95\xa4\xda\x30\x9e\x42\x58\x70\x49" "\xe3\xe3\xbb\x42\x08\x73\xd3\xff\xa3\xe2\x68\x5b\x12\x1f\x9c\x2e\x57\x87" "\x10\x7a\x1a\x1e\x77\x56\x41\xbb\x4e\x68\xb1\xfd\x2b\x72\xca\xc7\xa6\xcb" "\x39\xe9\xb2\xb7\x20\x4e\xbc\x7f\x59\xa6\x5c\xca\xac\x97\x2d\x47\x5d\x99" "\x65\x4f\xc1\xf6\x66\x2a\xaf\x1d\xed\xae\x57\x64\x5e\xa6\x9c\x3d\x19\xcd" "\x54\x5e\x3b\x63\xfd\xa2\x74\xf9\xe3\x74\x79\xf2\x34\xe3\x97\xe3\xff\x24" "\x94\x92\x50\xa9\x37\x7f\x63\x32\x3e\x46\x42\xc3\x71\x4b\x42\x32\x76\x2c" "\xab\xf5\x72\x69\xc2\x7a\x49\xc3\xb1\x4e\xcb\x49\xa6\x5c\xca\x94\xcb\x5d" "\x99\xfd\x1a\x8b\x97\x0e\xb4\x72\x92\x4c\xac\x8f\xeb\x65\xea\xe3\xe9\xb8" "\x92\xd6\x1f\xdf\x78\xae\x6e\xe2\x82\x9c\xfa\x37\xa5\xcb\x6a\xfa\x44\x7d" "\x35\x96\x43\xf6\x46\x4d\xef\xa4\x1b\xf5\xfd\x1a\x13\xdb\xb5\x7f\x8a\xb6" "\x1c\x0c\xa5\x86\x73\x50\xb3\xfa\xfa\x81\x4f\x0f\x46\x6f\x5a\xd7\x9b\x2c" "\x9e\xf4\x98\x91\x26\xe2\x7d\x7b\xd7\xdc\xb6\xbc\xbc\xf6\xd1\x7d\x7d\x39" "\xed\x48\xee\x4b\xd2\xf8\x49\x5b\xf1\x77\xfc\x72\xd1\xbc\x4f\x7c\xff\x96" "\x2b\x97\xe4\xc5\xbf\xa4\x94\xc6\x2f\xb5\x15\xff\xf7\xe7\x3c\xf9\xe2\x45" "\xb7\x7c\xe7\x1b\xb9\xf1\xef\x88\xf1\xcb\x6d\xc5\x3f\xf5\xe1\x9e\x17\xce" "\x79\xec\xa6\x65\xb9\xfd\xb3\x3f\xf6\x4f\xa5\xad\xf8\x43\xcf\x3d\x7e\xfb" "\xd2\x23\x2f\xdd\x95\xdb\xfe\xbb\x62\xfc\x6a\x5b\xf1\x57\xed\x7e\xb2\x7b" "\xfe\x81\x87\xf7\xe4\xb6\x7f\x30\xf6\xcf\xdc\x96\xe3\x97\x1a\xe2\x3f\xfb" "\x8e\x0f\xfc\xe1\xde\xa7\x1f\x7c\x3e\x37\x7e\x88\xf1\x7b\xda\x6a\xff\xda" "\xdd\x5b\xbe\xd8\xdd\x7f\xe0\xa4\xdc\xf8\x7b\x62\xff\xf4\xb6\x37\x7e\x5e" "\xda\x75\xe6\x33\xfd\xfd\x7f\x1a\xc8\x8b\xff\x54\x8c\x3f\xbf\xad\xf8\xf7" "\xec\xbc\xf3\xed\x77\x2f\xbc\xf5\xec\xdc\xe3\xbb\x3a\xf6\x4f\x5f\x5b\xf1" "\xcf\x3d\xf1\xa1\x1b\xe7\x1d\x78\xf0\xb8\xbc\x73\x67\x72\x57\xa7\x5e\x39" "\x01\xde\x98\x8e\x48\xaf\xb1\x6e\x4e\xcb\xed\xe6\x99\x33\xd5\x90\x2f\x7c" "\x7d\xa0\x52\xbb\xe6\x9b\x97\xfe\x9f\xdf\xc9\x0d\x65\x8c\x6e\x67\xc1\x2c" "\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\xe0\x8d\xe9\xa8\x53\xfe\xcb\x07\xff\xd7\x47\xfb\x5e\xa8\xa4\xe5" "\xee\xf4\xc6\xb3\xa5\xda\x32\xd6\xcf\x09\x21\x99\x1b\x42\xd8\xb6\x7d\x68" "\xeb\xf6\x0d\x9b\x2f\x1f\xf8\xd4\x15\x57\x6e\xdd\x3c\xb4\x71\x60\x68\xfb" "\xc0\xf0\xe6\xed\x5b\xaf\x19\x38\xfd\x5f\x06\xb6\x0e\x6f\xd9\x38\x74\xcd" "\xe8\xbd\x83\x6f\x39\xad\xf6\xb8\xc5\x21\xa9\x2d\x93\xe3\x26\x6d\x7b\x64" "\x64\x64\xa4\xd4\x37\xb1\x2e\x6e\xef\xdf\x9c\xb8\xeb\x77\xcb\xcf\xfa\x3f" "\x7f\x0e\x61\xf0\xa8\xdf\xf4\x57\x72\xdb\xbf\xe2\xce\x4d\x77\x1f\xd9\xe4" "\x67\x46\xb2\x6a\xe4\xdd\x9b\xae\x3c\xef\x37\x67\x7c\x3b\xdd\xaf\xbe\xb4" "\x5d\x7d\x39\xed\x0a\x39\xed\xfa\xbf\x17\xfe\xed\xee\x2f\xef\xff\xe3\x49" "\x21\x0c\xfe\xc3\x54\xed\x7a\xfc\xd9\x77\xfd\x6c\x42\x83\xc6\x2a\xc6\xe3" "\xa4\x4a\xdd\xa1\xd6\xa0\xee\xa4\xa7\x69\x3b\xea\xad\x4e\xdb\x13\xfb\xab" "\xb2\x7e\xc3\xc6\xe1\xc1\xe2\xfe\x2d\xe7\xec\xc7\xbf\xbb\xf6\xf9\xbf\xae" "\xbf\xfa\x4b\x7f\xab\xf5\x6f\x35\x77\x3f\x5a\xec\xdf\xb9\xab\x46\x36\x96" "\xbe\xb6\xe6\xdc\xff\xff\xb5\xeb\x6a\x15\x87\xea\x71\x2f\xea\xef\xb8\x17" "\xb1\x7d\xb1\xff\xaa\x69\x7f\x2f\x48\xf7\x6b\x41\xce\x7e\x55\x72\xf6\xeb" "\xa6\x5f\xed\x79\xfa\xa7\xc7\xdc\xf2\xf2\xce\x30\x58\x79\x69\xe9\xe4\x6d" "\x17\xed\x57\x57\x3a\x00\xba\x92\x37\xb5\xb4\xdd\xb8\x85\x9e\x64\xd1\x84" "\xfa\x6a\xba\x7e\x3c\xe2\xf1\x71\x2b\xb6\x6f\xda\xb2\x62\xdb\x35\x3b\xde" "\xb2\x61\xd3\xd0\xe5\xc3\x97\x0f\x6f\x7e\xdb\xca\xd3\x57\x9e\x39\x78\xc6" "\x99\x67\xac\x18\xdb\xf3\x15\x1d\xde\xff\xb8\xfd\x7f\x6c\x71\xff\x0f\xce" "\x78\x5a\xf8\x99\x9d\x3f\x8e\x3f\x5b\x1b\x4f\x45\xed\x2a\xea\x8f\xd1\x76" "\x15\xf7\x47\x63\x8b\xf2\x9e\x7f\x3d\x17\x7c\xe1\x2b\x6f\xbb\xf3\xb1\xf3" "\x6a\x15\x45\xe3\x3c\xae\x5d\x3f\x9f\xa4\xcb\x9e\xd1\xe3\xbc\x32\x34\x8c" "\xb7\xc9\x7d\xd5\x6c\xbf\x8a\xfa\x21\x84\x30\xd0\xac\x1f\x5e\x7c\xf9\xec" "\x70\xf4\x7f\xdf\x70\x63\xd1\x79\xa8\xf1\xc8\x34\xfe\xcc\x48\x56\x8d\x3c" "\xb1\xec\x2f\xdf\x3e\xeb\x5b\x4b\xde\x59\xab\x38\x28\xe7\xf9\xc6\x06\xb5" "\x79\x9e\xaf\xb7\x7a\xbc\x3d\x63\xfd\x55\x4d\x8f\xc7\xa1\xda\xbf\xdd\xa1" "\x9c\xee\x57\x6f\xd3\x76\xad\x7c\xe2\xb1\xae\xdb\xf6\xfd\xf9\xb3\xf5\xf6" "\xcd\x99\x13\xae\x1e\xda\xbe\x7d\xeb\xca\xda\xcf\x79\x69\x4b\xe7\x25\xc7" "\x36\x6d\x57\xb6\x36\xee\xd7\xd2\xb1\x9f\xe5\x90\x76\x4b\xa8\x0f\xd3\x26" "\xe3\x75\x54\x57\xa8\xb5\x2f\x7b\xfe\x8c\xab\x67\x7b\xb5\x37\xbd\xaf\x37" "\x59\xdc\x74\xbf\xb2\xe2\x7d\x7b\xd7\xdc\xb6\xbc\xbc\xf6\xd1\x7d\x79\x3d" "\x9d\xdc\x57\xdb\xe2\xdc\x30\xbf\xb6\x4c\xde\x9c\xb3\xe6\xc6\xcc\x03\xcb" "\xf5\x06\x37\xdb\xfe\xe1\x3a\x3e\xfa\x3f\xf8\xad\x07\x3e\xfa\xc0\x8f\x4e" "\x9f\x34\x3e\x4e\xad\xfd\x2c\xda\xaf\x24\x67\xbf\x7e\xf8\xf4\x3d\x5f\xf9" "\xee\x97\xfe\xc3\x8f\x3a\xb7\x5f\x1f\x7c\xd7\x93\x7d\x7f\xf9\x1f\x9f\x5c" "\x5e\xab\x38\x5c\xce\x2b\xf5\x56\xa7\xed\x49\x1a\xcf\x2b\xa7\x86\x50\xf4" "\xfc\x5b\x1a\x9a\xef\x47\xee\xf3\xaf\xd4\x7c\x7f\x8a\x9e\x7f\xd9\xed\x8c" "\xaf\xdf\x3c\xde\x40\xa6\xdc\x1b\xca\x6d\x3d\x5f\x4f\x7d\xb8\xe7\x85\x73" "\x1e\xbb\x69\x59\xee\xf3\x75\x7f\xab\xcf\xd7\xeb\x26\x94\xca\x05\xcf\xd7" "\x43\x65\xfc\xbc\x76\xcf\xaf\x09\x03\x25\x59\x35\xf2\xf3\x9b\x8f\xd8\xf9" "\xc8\xf5\xab\x8f\xa9\x55\x14\x8d\xeb\xfa\xda\xcd\xc6\xf5\x69\x2d\xe4\x1f" "\x39\xfb\xf5\xb3\x8b\x9e\xe9\xbf\x62\xe0\xdf\xff\xb7\xce\x9d\x37\xbe\xf7" "\x2f\xf7\x5f\xfc\xdb\xa1\x55\x9f\xab\x55\x1c\x2a\xc7\xbd\x9a\xf6\x6f\x35" "\xa7\x7f\xeb\xad\x8e\x79\x67\x63\xff\xbe\xf5\xb2\x2b\x36\xae\xab\xd5\x1f" "\xba\xd7\xbf\xe9\xb2\x20\xff\x89\xa7\x92\x6d\xd7\xec\xf8\xf4\xd0\xc6\x8d" "\xc3\x5b\xb7\xb5\xb6\x5f\xad\xbe\x9e\xc6\xed\x64\x7b\xb9\xdd\xd7\xd3\x78" "\x76\x5b\x5c\xb0\x5f\xa5\x49\xfb\x35\x7b\x37\x5a\xe9\xaf\x56\x9f\x6f\xb1" "\xfd\xeb\xda\xee\xaf\x89\xcf\xb7\xde\x90\xb4\xf5\xba\xb0\xe3\x97\x8b\xe6" "\x7d\xe2\xfb\xb7\x5c\xd9\x37\xe9\x51\xe9\x86\x2e\x29\xa5\xf1\x4b\x6d\xc5" "\xff\xfd\x39\x4f\xbe\x78\xd1\x2d\xdf\xf9\x46\x6e\xfc\x3b\x62\xfc\x4a\x5b" "\xf1\x87\x9e\x7b\xfc\xf6\xa5\x47\x5e\xba\x2b\x37\xfe\x5d\x49\x1a\xbf\xda" "\x56\xfc\x55\xbb\x9f\xec\x9e\x7f\xe0\xe1\x3d\xb9\xf1\x07\x63\xfb\xe7\xb6" "\x15\xff\xd9\x77\x7c\xe0\x0f\xf7\x3e\xfd\xe0\xf3\xb9\xf1\x43\x8c\xdf\xdb" "\x5e\xff\xbf\xb4\xeb\xcc\x67\xfa\xfb\xff\x94\x1b\xff\xa9\x24\xdd\xce\xe8" "\x35\x52\x08\xf7\xbf\x72\xda\xfa\x5a\x39\x09\x5d\xe9\xf3\x2d\xb6\xa3\x6b" "\x42\xbb\x42\xb6\x9c\x64\xca\xa5\x4c\xb9\xdc\x58\x2e\xd5\xe6\x5a\xeb\x1b" "\x28\x27\xc9\xc4\xfa\xb8\x5e\x5a\x7f\x7c\x43\x5b\x9a\xf9\x58\x4e\x7d\xbc" "\x0a\xab\x2e\xa9\x2d\x5f\x8d\xe5\x90\xbd\x31\x75\xfd\xa1\xa6\xd4\x70\xee" "\x6f\x56\x5f\x74\x9d\x0a\x00\xf0\x7a\x17\xdf\xff\x8f\xd7\xa0\xf1\xfd\xff" "\xe1\xf4\x42\x29\x7f\xa6\x01\xc6\xcd\x34\x0f\x5b\x92\x13\x37\xe6\x61\xe3" "\xf3\x39\x73\x26\xdc\xbf\x24\x8d\x1f\x1f\x1f\xe7\x01\xfb\xdf\x1a\x06\x47" "\x97\x37\x0c\xd4\x2e\xf4\xa7\x3b\xcf\x19\x9f\x0f\xd9\x79\xce\xb8\x9d\x93" "\x4e\x98\x18\xa3\xdd\x79\xce\xa2\xf9\xf7\x65\x99\x72\x6c\x57\x6d\xbe\xbc" "\xd2\x90\x87\xa6\x26\xe7\x35\x95\xd0\xc2\xfc\xfb\xe4\xed\x4c\x3d\xff\x9e" "\xd9\xfd\xe2\xf9\xf1\x81\x9b\x27\x35\x6b\xa0\x61\xde\x2a\x7b\xfc\xba\xd2" "\x19\xb3\x66\x9f\x77\xc8\xb4\xb7\x32\x1a\x21\x6f\x7c\x64\xe7\xc5\xe2\xe7" "\x39\xfa\x17\x84\xd5\x63\xdb\x6b\x71\x7c\x64\x3f\x47\x13\x8f\x43\xf6\x73" "\x34\x71\x3b\xc7\x64\x4e\x9c\xed\x7e\x8e\x66\xa6\xe3\x23\x36\x7b\x8a\xf1" "\x31\xd6\xe4\xe2\xf7\x37\x26\x1f\xbf\x30\x45\xff\x8e\x1f\xbf\xe6\xd1\xb2" "\xc7\x6f\x1a\xc7\xbb\x3a\xba\xfe\x6c\xbf\x3f\x7b\xf8\xcf\x1b\xce\xee\xfb" "\x61\x4d\xe6\x25\xe7\xb5\x12\xff\x30\x9f\x97\x4c\x92\x16\xe7\x25\x0f\xf5" "\x79\xc3\x58\x1f\xf7\xa3\xd2\xe2\x7c\xe2\x47\x73\xea\x3b\x35\x9f\x18\x4f" "\x17\xb1\x5d\xfb\xa7\x68\xcb\xc1\x60\x3e\x11\x78\xbd\x8a\xf9\x7f\x7c\x8d" "\x18\xcd\xff\x47\x2f\xc0\xff\x5f\x66\xbd\xa2\xeb\xd0\xec\x55\x63\x8c\x97" "\xfb\x39\xa1\x72\xf3\xf6\x14\xe5\x1d\x93\x3f\xa7\xd7\xd3\xd6\x75\xc2\xda" "\xdd\x5b\xbe\xd8\xdd\x7f\xe0\xa4\xdc\xeb\x9c\x3d\xad\x7e\xee\x67\xcb\x84" "\x52\x4f\xc1\xe7\x7e\x8a\xfa\x71\x79\xa6\x5c\xd8\x8f\x39\x13\x34\x45\xf9" "\x5e\x76\x3b\x45\xfd\x9e\xfd\x5c\x46\x6f\x98\xdf\x56\xbf\xdf\xb3\xf3\xce" "\xb7\xdf\xbd\xf0\xd6\xb3\x73\xfb\x7d\x75\xed\x85\xb4\xb8\xdf\xbf\x32\xa1" "\x34\xbf\xa0\xdf\xe5\x0b\xcd\xc7\xca\x6b\x98\x2f\x4c\x8a\xbf\xa7\x3c\x5e" "\x8e\xf7\x1d\xe6\xf9\xc2\x41\xfb\x1c\x43\xd1\xfc\xd9\x6b\x96\x8f\xa4\x1f" "\x7c\x9a\xad\x7c\xe4\x23\x39\xf5\xd3\xcd\x47\x7a\x26\xdd\xa8\xef\xd7\x98" "\xc3\x2e\x1f\xe9\x3a\xb8\xed\x02\x00\x0e\x1f\x31\xff\xaf\xbf\x7f\x96\xe6" "\xff\xff\x33\xb3\x5e\x51\xde\x7a\x72\xa6\x1c\xe3\xe5\xe6\xad\x39\xd7\x27" "\x79\x79\xeb\x87\xd3\xe5\xd5\x99\xf5\x7b\xd3\xdf\xa8\x98\xee\x75\xf3\xb9" "\x27\x3e\x74\xe3\xbc\x03\x0f\x1e\x97\x9b\xb7\xdc\xd5\x6a\x1e\xfa\x1f\x27" "\x94\xfa\x0a\xf3\xd0\x16\xf3\xe6\xda\xdb\x5c\x93\xf2\xe6\xdc\x3c\x62\x75" "\x67\x3e\x2f\x9e\x9b\x47\xd4\xf3\xac\x99\xe5\x89\xb9\xed\xaf\xe7\x89\x33" "\xcb\xd3\x73\xe3\xd7\xf3\xf4\x99\xe5\xd1\xb9\xfd\x53\xcf\xa3\x67\x36\x0f" "\x90\x1b\xbf\x3e\x0f\x70\xb8\xe7\xb9\xb3\x3b\x5f\xf7\xba\xcd\xa3\xd3\x5f" "\x9f\x9d\xad\x3c\xfa\x82\x9c\xfa\xe9\xe6\xd1\xbd\x93\x6e\xd4\xf7\x6b\x8c" "\x3c\x1a\x00\xe0\xb5\x15\xf3\xff\x78\x19\x17\xf3\xff\xc7\x32\xeb\xcd\xf4" "\xba\x3d\x37\x2f\xc8\x5e\xb7\x77\xb5\x77\xdd\x9e\xfd\x7b\x20\xf5\xf8\x4f" "\x1d\xac\xbc\x72\xb6\xf3\xbe\xd9\xce\x5b\x67\x3b\xaf\x9f\xed\x79\x89\xc3" "\x3d\x2f\x9e\xd9\xe7\x29\x8a\xe7\x85\x66\x77\x9e\x4c\x5e\x9c\x96\x43\xf6" "\x46\x8d\xbc\x18\x00\x80\x43\x41\xcc\xff\xe7\xa6\xe5\xfc\xfc\x7f\x66\xf9" "\x49\x6e\xfe\x56\xcf\x4f\xe4\xe7\x4d\xe3\x37\xe6\xe7\x39\x1f\x41\x98\x2a" "\xbe\xfc\xbc\x85\xfc\xbc\x59\xc2\x13\xe3\x77\xe8\x7d\xeb\x96\xe7\xbf\xda" "\x7c\xdf\xba\x78\xfe\x4b\xfe\x2f\xff\x2f\x26\xff\x07\x00\x78\x7d\x8b\xf9" "\x7f\xfc\xb5\xc7\xf8\xf7\xff\xfe\x73\x5a\xce\xfe\xdd\x7a\x79\x7a\x4e\x7c" "\xef\xa3\x1f\x22\xef\xa3\x1f\xee\x79\xfa\x6c\xcf\xb3\xbd\x4e\xe7\x01\xd2" "\xbf\xbf\x64\x1e\xa0\x33\xcc\x03\x00\x00\xbc\xbe\x74\x8d\x65\x4a\x93\x7f" "\xcf\xfe\xe3\xe9\x32\xfb\x7b\xf6\x79\xbf\x97\x7f\x51\xce\xfa\xad\xaa\x8c" "\xfd\x8e\x7d\x08\x97\x6e\xdf\x3a\x3c\x7c\xf1\x95\x5b\xd6\x0d\x6d\x1f\xbe" "\x78\xf3\x15\xeb\x86\xb7\x5d\x7c\xd5\xd6\x0d\xdb\xb7\x0f\x6f\xae\xad\x37" "\x21\x6f\x7c\x75\xe2\x1f\x5b\x6d\x25\x6f\xcc\xcd\x5b\xd2\xc4\xa1\x2b\x54" "\xd2\xfe\x68\xbe\x5e\x36\x6f\x5b\x98\xfe\x3d\x84\x85\x39\x7f\x0f\x21\xbb" "\x7e\x0c\x7b\xec\xd8\x8d\xc9\x7f\x0f\x21\xbb\xd9\xb9\x05\x7f\x47\x60\xfc" "\xf8\xb5\xd6\xde\xbc\xe3\x57\x9a\x62\xfd\x66\xe3\x23\xef\x78\xe7\xc5\xff" "\x58\xce\xfa\x51\xfd\xf8\x5f\xf6\xc9\x53\x2f\x5e\xbf\xed\xe2\x0d\x9b\x37" "\x6c\xdf\x30\xb4\x71\xc3\x8e\xe1\x89\xeb\x8d\x66\xad\x3d\xd3\xf8\xde\xcc" "\xd8\x2d\xd3\xfa\xde\xcc\xcc\x8f\x49\x4a\xd3\xff\xfe\xce\xce\xb4\xa3\x34" "\xa9\x1d\x5d\x69\x7f\xe4\x7d\x3f\x7b\x92\x69\xc7\xa2\xb4\x25\x8b\xf2\xbe" "\xff\x20\xa7\xdd\xbf\xf8\xaf\x5f\xfe\xcc\x89\x23\x7f\xbb\x37\x84\xc1\xa3" "\xca\x6f\x9e\x51\xff\x25\xab\x46\xfe\xd3\x85\xc3\x1f\xde\xbe\xef\x37\x5b" "\x46\xdb\x5f\x9a\xb2\xfd\xf5\x35\xd3\x76\x15\x7d\x5f\x69\x76\xfd\xb8\x3f" "\x95\x8d\x57\x6c\xdb\x7e\xca\xfa\x2b\xae\xdc\x9c\xfd\x46\xc9\xf6\xc4\xf9" "\x8c\x52\xbd\x3c\x4b\xf3\x19\xe9\xd3\xbf\x3c\x71\x7e\x22\x37\xdb\x5e\x9b" "\x53\x3f\xdd\xf9\x89\xf2\xa4\x1b\x87\xa6\x96\xe7\x27\x00\x00\x98\x20\xbe" "\xff\x1f\xaf\x67\xe3\xfb\x87\x5f\x4a\x2f\xa0\x62\x7d\xeb\x79\xfa\xcc\xde" "\x3f\xce\xcd\xd3\x07\x5b\xcb\xd3\xb3\xdf\x4b\x56\x94\xa7\x67\xd7\x8f\xfb" "\xdb\x6a\x9e\x5e\x9d\x61\x9e\x9e\xdd\x7e\x51\x9e\xde\x6c\xfd\x66\x79\x7a" "\x5e\xde\x9d\x17\xff\x23\x39\xeb\x4f\x57\xeb\xe3\x64\x66\x9f\xf3\xc8\x1d" "\x27\x97\xb4\x36\x4e\xb2\xdf\x67\x50\x34\x4e\xb2\xeb\x4f\x77\x9c\x24\x79" "\xe3\xa4\xfe\x26\xf5\xd4\xe3\x24\xbb\xfd\xa2\x71\xd2\x6c\xfd\x66\xe3\x24" "\xef\xb8\xe7\xc5\x3f\x3f\x67\xfd\x3c\xad\x8f\x87\x99\x7d\x2e\x27\x77\x3c" "\xdc\xd1\xda\x78\xf8\xe7\x4c\xb9\x68\x3c\x64\xd7\x9f\xee\x78\x28\xcd\xf0" "\xbc\x91\xdd\x7e\xd1\x78\x68\xb6\x7e\xb3\xf1\x90\x77\x7c\xf3\xe2\x9f\x97" "\xb3\x7e\xab\x26\x8e\x8f\xd1\x81\x31\x36\x2e\x86\x2f\xbe\xea\x8a\xad\x9f" "\x6e\x58\x6f\xb6\xbf\x2f\x6f\xe6\xed\x9b\xdd\xef\xff\x68\x57\xeb\xed\x9f" "\xdd\xcf\x7d\xcd\x7e\xfb\x67\xf7\x73\x65\xb3\xdf\xfe\x99\x7d\xae\x2c\xb7" "\xfd\x4f\xcd\x6c\x26\xac\xf5\xf6\xcf\xec\x73\x89\x45\xdf\xef\xd2\xae\x83" "\x36\x5f\x9b\xbe\x8e\x17\x7d\xfe\xac\xe8\x73\x66\x6b\x72\xea\xa7\x3b\x8f" "\x3b\x67\xd2\x8d\x43\x93\x79\x5c\x78\xed\xc4\xfc\x3f\xbe\xdd\x13\xf3\xff" "\x5b\xd3\x65\xa7\xdf\x06\x3a\x2c\xbe\x27\xad\x59\xfc\x3b\x3a\xf3\xf7\xf5" "\x7d\x8f\xd9\xcc\xae\x63\xbc\x9e\x4f\xb1\xb1\x43\x40\x6b\xaf\xe7\xff\x76" "\xde\x41\x6f\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\x21\xa6\xbb\xb2\x64\x6c\xb9\xef\xa6\x6d\x07\xce\x3b" "\xe6\xfd\xbf\xf8\xfc\xf0\x2b\xd7\x7f\xe8\x27\x9b\x6e\xf8\xa7\x6b\xbf\xf7" "\xc7\x81\xcb\xde\xfb\xf3\xfb\x7a\xbe\xfb\xea\xde\x75\xc7\xaf\xff\xed\xfb" "\x8e\xb8\xec\xa1\x4f\x9d\xbd\xfb\xce\x6f\x3e\xf2\xf2\xfc\x07\xfe\xfe\x5c" "\x61\xe0\xbe\xda\xe2\xe4\xb4\x58\x0d\x21\x79\x21\x09\xa1\xfa\xd3\xfd\x5f" "\xfd\xc2\xde\x27\x8e\x1e\xad\x4b\x42\x08\xe5\xa4\x6f\x67\x08\x8b\x92\xc5" "\x8f\x2c\x4a\x32\x11\x06\xff\x1a\x42\x58\x57\x6f\xe7\xc4\x3b\xef\x7f\xe5" "\xb4\xf5\xa3\xcb\x1b\x6e\xed\x9e\x50\xbf\x30\x13\x24\xbb\x5f\xa1\xb7\x1c" "\xdb\x33\xa1\x9d\xe1\xea\xc2\x3d\xe2\x90\xf1\xbf\x9f\x68\x75\xcd\x6a\x3a" "\xce\x76\x1c\xb8\xea\x94\xf0\xbb\xf7\xac\xb9\xf1\x57\x4b\x7f\xf8\x83\xae" "\x5d\xcf\xef\x1c\x5f\x25\xa9\x36\x8c\xa7\x10\x16\x5c\xd2\xf8\xf8\xae\x10" "\xc2\xdc\xf4\xff\xa8\x38\xda\x96\xc4\x07\xa7\xcb\xd5\x21\x84\x9e\x86\xc7" "\x9d\x55\xd0\xae\x13\x5a\x6c\xff\x8a\x9c\xf2\xb1\xe9\x72\x4e\xba\xec\x2d" "\x88\x13\xef\x5f\x96\x29\x97\x32\xeb\x65\xcb\x51\x57\x66\xd9\x53\xb0\xbd" "\x99\xca\x6b\x47\xbb\xeb\x15\x99\x97\x29\x67\x4f\x46\x33\x95\xd7\xce\x58" "\xbf\x28\x5d\xfe\x38\x5d\x9e\x3c\xcd\xf8\xe5\xf8\x3f\x09\xa5\x24\x54\xea" "\xcd\xdf\x98\x8c\x8f\x91\xd0\x70\xdc\x92\x90\x8c\x1d\xcb\x6a\xbd\x5c\xaa" "\x1f\xdb\x90\xee\x7f\xa6\x9c\x64\xca\xa5\x4c\xb9\xdc\x95\xd9\xaf\xb1\xed" "\xa6\x03\xad\x9c\x24\x13\xeb\xe3\x7a\x99\xfa\x78\x3a\xae\xa4\xf5\xc7\x37" "\x9e\xab\x9b\xb8\x20\xa7\xfe\x4d\xe9\xb2\x9a\x3e\x51\x5f\x8d\xe5\x90\xbd" "\x51\xd3\x3b\xe9\x46\x7d\xbf\xc6\xc4\x76\xed\x9f\xa2\x2d\x07\x43\xa9\xe1" "\x1c\xd4\xac\xbe\x7e\xe0\xd3\x83\xd1\x9b\xd6\xf5\x26\x8b\x27\x3d\x66\xa4" "\x89\x78\xdf\xde\x35\xb7\x2d\x2f\xaf\x7d\x74\x5f\x5f\x4e\x3b\x92\xfb\x92" "\x34\x7e\xd2\x56\xfc\x1d\xbf\x5c\x34\xef\x13\xdf\xbf\xe5\xca\x25\x79\xf1" "\x2f\x29\xa5\xf1\x4b\x6d\xc5\xff\xfd\x39\x4f\xbe\x78\xd1\x2d\xdf\xf9\x46" "\x6e\xfc\x3b\x62\xfc\x72\x5b\xf1\x4f\x7d\xb8\xe7\x85\x73\x1e\xbb\x69\x59" "\x6e\xff\xec\x8f\xfd\x53\x69\x2b\xfe\xd0\x73\x8f\xdf\xbe\xf4\xc8\x4b\x77" "\xe5\xb6\xff\xae\x18\xbf\xda\x56\xfc\x55\xbb\x9f\xec\x9e\x7f\xe0\xe1\x3d" "\xb9\xed\x1f\x8c\xfd\x33\xb7\xad\xf8\xcf\xbe\xe3\x03\x7f\xb8\xf7\xe9\x07" "\x9f\xcf\x8d\x1f\x62\xfc\x9e\xb6\xe2\xaf\xdd\xbd\xe5\x8b\xdd\xfd\x07\x4e" "\xca\x8d\xbf\x27\xf6\x4f\x6f\x7b\xe3\xe7\xa5\x5d\x67\x3e\xd3\xdf\xff\xa7" "\x81\xd0\xf0\xe2\xdf\x18\xff\xa9\x18\x7f\x7e\x5b\xf1\xef\xd9\x79\xe7\xdb" "\xef\x5e\x78\xeb\xd9\xb9\xc7\x77\x75\xec\x9f\xbe\xb6\xe2\x9f\x7b\xe2\x43" "\x37\xce\x3b\xf0\xe0\x71\x79\xe7\xce\xe4\xae\x4e\xbd\x72\x02\xbc\x31\x1d" "\x91\x5e\x63\xdd\x9c\x96\xdb\xcd\x33\x67\xaa\x21\x5f\xf8\xfa\x40\xa5\x76" "\xcd\x37\x2f\xfd\x3f\xbf\x93\x1b\xca\x18\xdd\xce\x82\x59\x8c\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\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xeb\xd3\xaf\xaf\x3b\xfd\xe3\x17\xbe\xfb\xfc\x35\x95\x24\x84" "\x24\x67\x9d\x91\x26\xe2\x7d\xe5\x39\xab\x56\x0d\xb4\xb1\xdd\xa1\xe7\x1e" "\xbf\x7d\xe9\x91\x97\xee\x6a\xac\x5b\xd2\x46\x1c\x00\x00\x00\xa0\x58\xcc" "\xc3\x4b\xf5\x9a\x6a\x58\x12\xae\x4a\xe6\x86\x63\x9b\xae\x1f\xe7\x08\x8e" "\x8d\xa5\x64\x62\x7d\x76\x0e\x61\xee\xf8\x9a\x1d\x89\x53\xea\x50\x9c\x72" "\x87\xe2\x54\x3a\x14\xa7\xab\x43\x71\xe6\x74\x28\x4e\x77\x87\xe2\x54\x0b" "\xe2\x54\x43\x6b\x71\xe6\x4e\x19\xa7\xd4\x72\x7b\x7a\x3a\x14\xa7\xb7\x23" "\x71\x9e\xed\x79\xef\xf9\x9d\x69\xcf\xfc\x0e\xed\xd7\x82\x0e\xc5\x59\xd8" "\xa1\x38\x7d\x53\xc6\x69\x7d\x1c\x2e\xea\x50\x9c\xc5\x1d\x8a\x73\x44\x87" "\xe2\x1c\xd9\xa1\x38\x47\x75\x28\xce\x3f\x74\x28\xce\xd1\x1d\x8a\x93\x9d" "\x53\x9e\xee\x38\x9c\x9f\xae\x79\x4c\x5e\x9c\xb1\x1b\xe5\xc2\x38\x95\xa4" "\x5c\xbf\xa3\xd9\x7c\x7a\xdc\xce\x71\x33\xdc\x4e\x6f\x6d\x3b\xd5\xa2\xed" "\x64\xe7\xec\xa7\xbb\x9d\xb9\x2d\xee\xcf\x09\x99\xc7\x95\xa6\xb9\x9d\x6a" "\x8b\xdb\xf9\xc7\x19\x6e\x27\x69\x71\x3b\xff\x3c\xc3\xed\x94\x0a\xb6\x13" "\xc7\xed\xd5\xd9\xf6\xc5\xed\xc4\x52\x8b\xe3\xff\x9a\x0e\xc5\xd9\xd1\xa1" "\x38\xd7\x76\x28\xce\x75\x1d\x8a\xf3\xd9\x0e\xc5\xf9\x5c\x87\xe2\x5c\x3f" "\xc3\x38\x00\xad\x8a\xf9\xff\x78\xbe\xd7\x17\xba\x2b\xef\x0c\x3d\xe9\x19" "\x27\x3b\x0b\x10\xf3\xdd\xa5\x63\x3f\x27\xbf\xde\xe5\x9d\x90\x62\xbc\x37" "\x67\xea\xe7\x14\xc5\xcb\x26\xea\x99\x78\x4b\xa7\xdb\xbe\xec\x04\x42\x26" "\xde\xb2\x4c\x7d\xd7\x84\x78\x95\x7a\x3e\x32\x45\xbc\x6a\x63\xbc\xe5\x99" "\x3b\x0b\xf7\x37\x3b\xa1\x90\x69\xdf\xc9\x99\xfa\xee\xa2\x78\xd9\x89\x05" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x98\x45\xbf\xbe\xee\xf4\x8f\x5f" "\xf8\xee\xf3\xd7\x84\x24\x8c\xfe\x6b\x6a\xa4\x89\x78\x5f\x79\xce\xaa\x55" "\x03\x6d\x6c\x77\xef\x9a\xdb\x96\x97\xd7\x3e\xba\xaf\xb1\xae\xbb\xd2\x46" "\x20\x00\x00\x00\xa0\x50\xcc\xc3\xbb\xea\x35\xd5\xd0\x5d\x59\x19\xba\x93" "\x39\x13\xd6\xab\x86\x10\x46\xe6\x8f\x8c\x54\xd3\x72\xb9\xaf\xb6\xec\x5f" "\x10\x56\x8f\x2e\x93\x81\xd2\x58\xb9\x27\x59\x34\xf9\x71\x23\xe3\x8f\xab" "\xa4\x8f\x5b\xb1\x7d\xd3\x96\x15\xdb\xae\xd9\xf1\x96\x0d\x9b\x86\x2e\x1f" "\xbe\x7c\x78\xf3\xdb\x56\x9e\xbe\xf2\xcc\xc1\x33\xce\x3c\x63\xc5\xfa\x0d" "\x1b\x87\x07\x6b\x3f\x43\xe8\x2e\x88\x17\x42\x18\x9b\x7e\xd8\x76\xcd\x8e" "\x4f\x0f\x6d\xdc\x38\xbc\x75\x5b\xad\x32\xdb\xfe\x25\xe9\xe3\x96\xa4\xe5" "\x24\x7d\x5c\xff\x5b\xc3\xe0\xe8\xf2\x86\xb4\xfd\x8b\x0b\xb6\x57\x9a\xb4" "\xbd\xd9\xbb\x51\x7c\xf4\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x7f\x65\xd7\xee\x42\xe4\x3a" "\xeb\x3f\x80\x3f\x67\x66\x76\x66\xb2\x6d\xfe\x99\x3f\xad\xed\x34\x34\x9b" "\x21\x2f\x25\x6a\xd1\x24\x6e\x25\xd5\xd2\x39\x20\x58\x68\x93\x90\xa5\x20" "\x33\xd5\xb5\x04\x9b\x60\x71\xd3\x84\x36\x29\xb1\x8e\x6d\xc0\xb6\x26\x28" "\x42\x4b\x20\x44\x72\x13\x89\xc5\xd6\xe2\x4d\x5f\x6c\x11\xfb\x42\x20\x52" "\xa3\x01\x37\x06\x69\x8b\xf6\x42\x2f\x94\x56\x2b\x69\xc9\x85\xa4\x8c\x64" "\x77\xce\xec\xcc\x64\x66\x67\x33\x96\x6c\x8d\x9f\xcf\xc5\x39\x33\xcf\xf3" "\x7b\x9e\xdf\x3c\x73\xb1\xf0\x3d\x3b\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xc5\x35\x59\x1b\x1d\xaf\x94\xc7\xaa\xc3\x51\x08\x51\x8f\x9a\x7a\x17" "\xc9\x5c\x3a\x1b\xc7\xa5\x01\xfa\x7e\xe5\xc5\x1d\x3f\xc8\x8d\x9c\x59\xd5" "\x3a\x96\xcb\x0c\xb0\x11\x00\x00\x00\xd0\x57\x92\xc3\x87\x9a\x23\xf9\x90" "\xcb\xa4\x43\x3a\x5c\x33\xf5\x6e\x59\x68\x99\x08\x33\xb9\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\xdf\x33\x59\x1b\x1d\xaf" "\x94\xc7\xaa\x97\x45\x21\x44\x3d\x6a\xea\x5d\x24\x73\xe9\x6c\x1c\x97\x06" "\xe8\xfb\xd6\x7b\x4f\x7f\xf6\xf5\x91\x91\xbf\xb6\x8e\x15\x07\xd8\x07\x00" "\x00\x00\xe8\x2f\xc9\xe1\xa9\xe6\x48\x3e\x14\xc3\xf2\x30\x14\x5d\xd3\x56" "\x97\x3c\x1b\x58\xdc\xb1\xbe\xb3\x2e\xd9\x67\xc9\x1c\xeb\x3a\x9f\x1d\xf4" "\xaa\x5b\x3e\xc7\xba\xeb\xe6\x58\xf7\xf1\x3e\x75\x1b\x1b\xf7\xdd\x01\x00" "\x00\x00\xfe\xfb\x25\xf9\x3f\xd3\x1c\x29\x84\x5c\x66\x61\xcf\xfc\xdf\x2f" "\xd7\x27\x75\x4b\x3b\xea\xd2\x8d\xfb\x20\xbf\x15\x00\x00\x00\x00\xfe\x33" "\x49\xfe\xcf\x35\x47\x8a\x21\x97\x29\x36\xf3\xfa\x5c\xf3\xfe\xb2\x8e\xba" "\x64\x7d\xbf\xff\xdb\x27\xeb\x57\xf6\x58\xdf\xef\xff\xf9\x1b\x1a\xf7\xd9" "\xff\x4f\x3f\x36\xeb\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x71\x4d\xd6\x46" "\xc7\x2b\xe5\xb1\x6a\x3a\x0a\x21\xea\x51\x53\xef\x22\x99\x4b\x67\xe3\xb8" "\x34\x40\xdf\xb5\x2f\x0d\xff\xfd\xb6\xa3\x8f\x2c\x6b\x1d\xcb\x65\x06\xd8" "\x08\x00\x00\x00\xe8\x2b\xc9\xe1\x33\xd1\x3b\x1f\x72\x99\xe1\x30\x14\x2e" "\x9b\xca\xfd\x23\xb7\x1c\x7a\xf6\x4b\xcf\x3e\x3f\x1a\x42\x98\x8e\xf9\xd9" "\x6c\xd8\xbd\x79\xe7\xce\x7b\xd7\x4e\x5f\x93\xba\x35\xc7\x8f\x0e\x7d\xff" "\xd8\x3b\xdf\x3e\xaf\x6e\xcd\xf4\x75\xde\x0e\x08\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x7c\x68\x26\x6b\xa3\xe3\x95\xf2\x58\x75" "\x41\x14\x42\xd4\xa3\xa6\xde\x45\x32\x97\xce\xc6\x71\x69\x80\xbe\x6f\x7e" "\xfe\x8b\x7f\x7e\xf2\xd4\x0b\x6f\xb7\x8e\x15\x07\xd8\x07\x00\x00\x00\xe8" "\x2f\xc9\xe1\x33\xd9\x3f\x1f\x8a\x21\x1b\xb2\xe1\xaa\xa9\x77\xad\x59\xff" "\x9c\x54\xc7\xfa\x5e\xcf\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x4b\xc7\x7d\xdf\x7c\xe0\x1b\x9b\x27\x26\xb6\xdc\xeb" "\x85\x17\x5e\x78\xd1\x7c\x31\xdf\x7f\x99\x00\x00\x80\x0f\xdb\xd2\x10\x85" "\xfa\x05\xba\x7a\xd3\x7c\x7f\x6a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xa3\x60\xb2\x36\x3a\x5e\x29\x8f\x55\xf3\x51\x08\x51" "\x8f\x9a\x7a\x17\xc9\x5c\x3a\x1b\xc7\xa5\x01\xfa\xc6\x2f\x9e\xc8\x2d\x3c" "\xf3\xd2\x2b\xad\x63\xc5\x01\xf6\x01\x00\x00\x00\xfa\x4b\x72\xf8\x4c\xf6" "\xcf\x87\x62\x18\x0a\x43\x61\xc1\xd4\xbb\x6e\xcf\x04\xa6\xf2\x7f\xe1\x22" "\x7e\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\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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" "\x23\x65\xb2\x36\x3a\x5e\x29\x8f\x55\x17\x46\x21\x44\x3d\x6a\xea\x5d\x24" "\x73\xe9\x6c\x1c\x97\x06\xe8\xfb\xc4\x9e\x83\x9f\x3b\xb2\xe8\x7b\xb7\xb6" "\x8e\xe5\x32\x03\x6c\x04\x00\x00\x00\xf4\x95\xe4\xf0\x6c\x73\x24\x1f\x72" "\x99\x4f\x84\x5c\xb8\xb6\xf1\x7e\xa2\x7d\x41\x94\x6e\xdc\xbb\x3f\x17\x98" "\x59\xb7\xa3\x6d\xd9\xf0\x9c\xd7\xd5\xda\xd6\xa5\xe7\xbc\x6e\x6f\xc7\xc9" "\x32\x8d\xd3\x4c\xaf\xcb\x27\xfb\x15\xa6\xef\xcd\x75\xa5\xf3\xd7\x95\x5a" "\xd6\x15\x43\xb3\x7d\xa9\x6d\x5d\xd8\xdf\xb6\x6a\x61\x9f\xcf\x19\x00\x00" "\x00\x60\x1e\x25\xf9\x3f\xd7\x1c\x29\x84\x5c\x26\xd7\x92\x73\x7f\xd2\x56" "\x5f\x90\x73\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\x80\x1e\x26\x6b\xa3" "\xe3\x95\xf2\x58\x35\x8a\x42\x88\x7a\xd4\xd4\xbb\x48\xe6\xd2\xd9\x38\x2e" "\x0d\xd0\xf7\x81\xdf\xfc\xff\xe5\x5f\xfd\xe9\xbe\x5d\xad\x63\xc5\x01\xf6" "\x01\x00\x00\x00\xfa\x4b\x72\xf8\x4c\xf6\xcf\x87\x62\x58\x12\xfe\x2f\x2c" "\x99\xca\xfd\xa1\xd0\x5e\x9f\xd4\xfd\xa3\x72\xf6\xc8\xe3\xff\xfc\xcb\xaa" "\x10\x56\x5f\x75\x72\x24\xd3\x73\xff\x5f\xbd\x79\xf3\xcb\x9d\x97\x10\x52" "\xed\x45\xa9\x10\x16\x35\xfa\x45\x3d\xfa\xfd\xfa\x77\x8f\xdf\xbf\xa2\x7e" "\xf6\xc9\x10\x56\x7f\x2c\x7d\xed\x85\xf6\x6b\xdf\x32\xae\x3f\x57\xd9\xb2" "\x61\xe7\xb1\x93\x3b\x66\xf9\x62\x00\x00\x00\xe0\x12\x92\xe4\xff\xa1\xe6" "\x48\x21\xe4\x32\xf7\xf4\xcc\xff\x49\xf2\xbe\xa0\xfc\xbf\xe8\xfe\x3d\x3f" "\xbf\xb2\x71\x6d\x24\xf2\x8e\x15\xa9\x42\xa3\x5f\xaa\x47\xbf\x2f\xac\x78" "\xfa\x4f\x2b\xd7\xfd\xed\x9d\x73\xf9\x7f\xb6\x7e\x9f\x3e\xb8\xed\xc8\x95" "\x6d\x0d\xa7\x47\x3a\x44\x71\xbd\xbc\x6d\xd7\xc6\x93\x37\x1c\x4e\x25\xa7" "\x9e\xee\x9f\xee\xe8\x9f\x7c\x2f\x5f\xfe\xd6\xdb\xff\xda\xba\xfb\xb1\xb3" "\xd3\xfd\xf3\x21\xdf\x18\x5f\x9c\xe9\xd6\xff\xfc\x6b\x87\x05\x71\x7d\x22" "\x75\xa0\xba\xfe\x83\x03\xb5\xf6\xfe\x99\x1e\xe7\x7f\xe4\xb7\xaf\x9c\xfa" "\xe5\xe2\x7d\xef\x9f\xeb\xff\xde\xd2\xe1\x66\xff\xeb\x66\x39\xff\xec\xfd" "\x87\x6f\x7f\x74\xff\x8d\x07\x8f\x6e\x6c\xef\x1f\x42\x28\x75\xeb\xff\xee" "\xfb\xb7\x86\xab\xff\x70\xf7\xc3\x9d\xe7\x1f\xee\xd8\xb8\xf5\x9b\x6f\xbd" "\x76\x88\xe2\xfa\xf1\x65\xa7\x0f\xaf\x3b\x54\xbc\xa9\xbd\x7f\xd4\xd1\x3f" "\xf9\xfe\x7f\x76\xea\x89\xfd\x3f\x7e\xec\xbb\xcf\x27\xfd\x93\xdf\x8a\xac" "\x5a\x3e\xd7\xfe\xa9\x8e\xfe\xaf\xed\xbd\x62\xcf\xab\x0f\x6d\x5a\xdc\xde" "\x3f\xd5\xe3\xfc\x2f\xdf\xf1\xfa\xc8\xf6\xd2\x77\x7e\xdf\x79\xfe\xbb\x06" "\x3e\xff\x53\xd7\x3f\x73\xe7\x1b\x9b\xe3\x07\x3b\xa7\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x2e\x2d\x93\xb5\xd1\xf1\x4a\x79\xac\x9a\x8a" "\x42\x88\x7a\xd4\xd4\xbb\x48\xe6\xd2\xd9\x38\x2e\x0d\xd0\xf7\xad\xdb\x4e" "\xbc\x7b\xc7\xbe\x1f\xfd\xb0\x75\xac\x38\xc0\x3e\x00\x00\x00\x40\x7f\x49" "\x0e\x9f\xc9\xfe\xf9\x50\x0c\xd9\x90\x0d\xc3\x53\xb9\xff\xb9\xca\x96\x0d" "\x3b\x8f\x9d\xdc\x11\x0a\xd3\xb3\x51\xe3\x9e\x99\xd8\x7e\xdf\xce\x4f\x6e" "\xdd\xbe\xeb\x9e\xbb\xe6\xe9\x93\x03\x00\x00\x00\x73\x95\xe4\xff\x4c\x73" "\xa4\x10\x72\x99\x15\x61\xa8\x91\xff\xcb\xdb\x76\x6d\x3c\x79\xc3\xe1\x54" "\x92\xff\x53\x49\xfe\xdf\x7a\xf7\xc4\x96\xd5\xa1\x59\xf7\xda\xde\x2b\xf6" "\xbc\xfa\xd0\xa6\xc5\xcd\xe7\x04\x21\x4c\xfd\x2c\x20\x7f\xae\xee\x33\x33" "\x75\xb7\xdc\x7c\xa2\x70\xfa\x8f\x5f\x5f\xd9\xb5\x6e\xed\x4c\xdd\xf1\x65" "\xa7\x0f\xaf\x3b\x54\xbc\x29\xa9\x0b\xad\x75\x6b\x42\xf3\xf9\xc4\x53\xd7" "\x3f\x73\xe7\x1b\x9b\xe3\x07\x9b\x9f\xaf\xb5\xee\x53\x5f\xdb\x3e\xd1\x78" "\x3c\x91\xec\x3b\x7c\xfb\xa3\xfb\x6f\x3c\x78\x74\x63\xf3\x1c\x8d\xfb\x70" "\x63\xdf\xa4\x6e\x22\x75\xa0\xba\xfe\x83\x03\xb5\xa4\x2e\xdd\xb8\xe7\x1b" "\xe7\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x37\x59\x1b\x1d\xaf" "\x94\xc7\xaa\x21\x1d\x42\xd4\xa3\xa6\xde\x45\x32\x97\xce\xc6\x71\x69\x80" "\xbe\xeb\x57\xfc\xe2\xe1\xcb\xcf\xbc\xb0\xa4\x75\x2c\x97\x19\x60\x23\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\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\x37\x3b\x70\x20\x00\x00\x00" "\x00\x00\xe4\xff\xda\x08\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\xd8\xaf" "\x9f\xd0\x38\xaa\x38\x0e\xe0\xef\xed\x26\x66\x9b\x4d\xda\xa4\x15\x8c\x8a" "\x69\x5a\x15\xa5\x1e\x2c\x0a\x22\x7a\x51\x51\x91\x56\xa4\xe0\xa9\x52\xa4" "\xda\xda\x83\x28\x08\x22\x4a\x3d\x98\x4a\x2b\x96\xaa\x78\x11\xac\x5e\x8a" "\xa8\xa0\x46\x29\x28\xd8\x58\x2c\xad\x92\x8a\xff\x8a\x17\x0f\x2a\x28\x54" "\x0f\x42\x29\x06\xb4\xa1\x78\xb0\x92\xe4\xbd\xcd\x66\x9a\x31\x75\x8c\x82" "\xfa\xf9\xc0\xf2\xf6\xf7\x76\xe6\x3b\xbf\x99\x79\x99\xec\x02\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff" "\x2a\x5d\x1d\x03\x53\xe3\xe1\x1d\x0f\x4e\xdc\x76\xde\x4d\x9f\x3c\x7e\xcf" "\x89\xc7\x6e\x79\xef\xfe\x6d\x97\x3c\xfa\xfa\x0f\x43\x9b\x6e\xf8\x78\x6f" "\xf7\x2b\x27\xc7\x36\xaf\xd8\xf2\xf5\x8d\xcb\x36\xed\xbf\x77\xcd\xe8\xee" "\x17\x0f\xfd\xd2\xfb\xce\x6f\x47\xf3\xfe\x8b\xca\x82\x1f\x99\x1e\x56\xa5" "\xb2\x11\x42\x3c\x1e\x43\x68\xbc\x3f\xfe\xdc\x13\x63\x9f\x9e\x33\x39\x17" "\x43\x08\xf5\xd8\x37\x1c\x42\x7f\x5c\x7a\xa8\x7f\xb2\x3c\xd5\x35\x93\xb0" "\xfa\xd7\x10\xc2\xe6\x56\x9f\xb3\xe3\xdf\x3e\x71\xe5\x96\xc9\x71\xdb\xae" "\xae\x59\xf3\x4b\x0a\x6d\x14\xcf\x2b\x34\xeb\xb9\x9f\x69\x7d\xb3\xfb\xe5" "\xbf\xa5\x91\xd6\xd9\xd6\x89\x87\x2f\x0b\xdf\x5e\xbf\x7e\xfb\xe7\xcb\xdf" "\x7a\xb3\x73\xe4\xd8\xf0\xcc\x26\xb1\xd1\xb6\x9e\x42\x58\xbc\xb1\x7d\xff" "\xce\xb4\xc6\xf3\x3a\xcf\xab\x6d\x20\xef\x9c\xc6\x75\x21\x84\xee\xb6\xfd" "\xae\x9e\xa7\xaf\x0b\xcf\xb0\xff\xcb\x4b\xea\xf3\xd3\x78\x56\x1a\x9b\xf3" "\xe4\xe4\xcf\x57\x16\xea\x5a\x61\xbb\x62\x9d\x75\x16\xc6\xee\x79\x8e\x57" "\xae\x7e\x46\x5b\x95\xf5\x51\x75\xbb\xf9\xf4\x14\xea\xb8\x40\xb9\x59\x59" "\x9f\x79\xbe\x3f\x8d\xef\xa6\x71\xd5\x9f\xcc\xaf\xe7\x57\x0c\xb5\x18\x3a" "\x5a\xed\xdf\x17\x67\xd6\x48\x68\xbb\x6f\x31\xc4\xa9\x7b\xd9\x68\xd5\xb5" "\xd6\xbd\x0d\xe9\xfc\x0b\x75\x2c\xd4\xb5\x42\x5d\xef\x2c\x9c\xd7\xd4\x71" "\xd3\x42\xab\xc7\x38\x7b\x3e\x6f\x57\x98\xcf\x8f\xe3\x8e\x34\xbf\xa2\xfd" "\x59\x3d\x87\xdb\x4b\xe6\xcf\x4d\x63\x23\xfd\xa1\x9e\xcc\x75\x28\xbe\x99" "\xd6\x3c\xed\x4d\xeb\xbc\xa6\xe4\xbe\xc6\xff\xa0\x97\x7f\x42\xad\xed\x19" "\x34\xd7\x7c\xeb\xc6\xa7\x9b\xd1\x4c\x73\xcd\xb8\xf4\xb4\x7d\x4e\xcd\x21" "\x7f\x36\xb6\xfe\xa9\x8b\xeb\x1b\x3e\x38\xdc\x57\xd2\x47\xdc\x1b\x53\x7e" "\xac\x94\xbf\xf5\xb3\xfe\x9e\x3b\xdf\xd8\xf9\xd0\x40\x59\xfe\xc6\x5a\xca" "\xaf\x55\xca\xff\x6e\xed\x91\x9f\xee\xd8\xf9\xd2\x0b\xa5\xf9\xcf\xe6\xfc" "\x7a\xa5\xfc\x2b\x0e\x74\x1f\x5f\xfb\xe1\x8e\x95\xa5\xd7\x67\x3c\x5f\x9f" "\x8e\x4a\xf9\x77\x1d\xfd\xe8\xe9\xe5\x67\xdf\x3d\x52\xda\xff\x9e\x9c\xdf" "\xa8\x94\x7f\xdd\xe8\x91\xae\xde\x89\x03\x07\x4b\xfb\x5f\x9d\xaf\xcf\xa2" "\x4a\xf9\xdf\x5c\x7b\xf3\xf7\xaf\x7d\xb9\xef\x58\x69\x7e\xc8\xf9\xdd\x95" "\xf2\x37\x8c\x3e\xf0\x4c\xd7\xe0\xc4\xa5\xa5\xf9\x07\xf3\xf5\x69\x56\x5b" "\x3f\x3f\x8f\x5c\xf5\xd5\xe0\xe0\x8f\x43\x65\xf9\x5f\xe4\xfc\xde\x4a\xf9" "\xaf\x0e\xef\xbe\xe6\xe5\x25\xbb\xd6\x94\xde\xdf\x75\xf9\xfa\xf4\x55\xca" "\xbf\xf5\xa2\xfd\xdb\x7b\x26\xf6\x5d\x50\xf6\xec\x8c\x7b\x16\xea\x3f\x27" "\xc0\xff\xd3\xb2\xf4\x1d\xeb\xc9\x54\x57\xfd\x9d\xf9\x57\xb5\xfd\x5e\x78" "\x7e\xa8\x63\xfa\x3b\x5f\x4f\x7a\xf5\x2e\xe4\x81\x0a\x26\x8f\xb3\xf8\x6f" "\xcc\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\x7e\x67\x07\x0e\x48\x00\x00\x00\x00\x04\xfd\x7f\xdd\x8e\x40\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\xe0\xa9\x00\x00\x00\xff\xff\x2e\x8d\x23\xa4", 22836); syz_mount_image(/*fs=*/0x4000000058c0, /*dir=*/0x400000005900, /*flags=MS_STRICTATIME*/ 0x1000000, /*opts=*/0x400000002140, /*chdir=*/1, /*size=*/0x5934, /*img=*/0x40000000b240); syscall(__NR_ioctl, /*fd=*/-1, /*cmd=*/0x80045505, /*arg=*/0ul); } int main(void) { syscall(__NR_mmap, /*addr=*/0x3ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x400000000000ul, /*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=*/0x400001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }