// https://syzkaller.appspot.com/bug?id=d13ff4f487f1df9c87d7a0abe11a8c14e5e7b244 // 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*)0x20005d80, "bcachefs\000", 9); memcpy((void*)0x20000240, "./file7\000", 8); memcpy( (void*)0x200003c0, "\x65\x72\x72\x6f\x72\x73\x3d\x63\x6f\x6e\x74\x69\x6e\x75\x65\x2c\x69\x6e" "\x6f\x64\x65\x73\x5f\x33\x32\x62\x69\x74\x2c\x63\x6f\x6d\x70\x72\x65\x73" "\x73\x69\x6f\x6e\x3d\x7a\x73\x74\x64\x2c\x6e\x6f\x72\x65\x63\x6f\x76\x65" "\x72\x79\x2c\x76\x65\x72\x73\x69\x6f\x6e\x5f\x75\x70\x67\x72\x61\x64\x65" "\x3d\x6e\x6f\x6e\x65\x2c\x72\x65\x63\x6f\x76\x65\x72\x79\x5f\x70\x61\x73" "\x73\x5f\x6c\x61\x73\x74\x3d\x63\x68\x65\x63\x6b\x5f\x64\x69\x72\x65\x6e" "\x74\x73\x2c\x64\x65\x66\x63\x6f\x6e\x74\x65\x78\x74\x3d\x75\x73\x65\x72" "\x5f\x75\x2c\x66\x6f\x77\x6e\x65\x72\x3d\x12\x43\x35\xc5\x9a\xe9\x11\x8b" "\x87\x13\x72\x7f\xca\x2c\x98\x6c\x1c\x7c\xd9\x78\x66\x00\xd7\xbc\xc1\xc1" "\xb3\x6f\x05\xed\xea\x77\x24\x1a\xff\x6b\x2f\xd8\x72\xf8\xbc\x8b\x15\x5f" "\x68\xf1\x2e\xd8\x4c\x94\x99\x6a\x73\x25\x2d\x6b\x79\x9a\x8c\xd9\xc7\x49" "\xc5\x5a\x0c\x61\xef\xab\xdd\x6d\x6d\x26\x82\x6b\x9b\x07", 212); sprintf((char*)0x20000494, "%020llu", (long long)0); memcpy((void*)0x200004a8, ",\000", 2); memcpy( (void*)0x20005dc0, "\x78\x9c\xec\xdd\x7d\x90\x1c\xe5\x99\x18\xf0\xee\x99\x59\xed\xae\x56\x82" "\x95\x2c\xcc\x0a\x09\xb1\x18\xd9\x8e\xb8\x60\x0b\x14\x88\xf1\x9d\xc3\xc6" "\x39\x3b\xb6\x83\x8d\x2c\x2c\xc0\xe2\x38\x49\x86\xc5\xd6\x59\x48\xb2\x3e" "\x10\xa0\x4b\xf8\xca\x61\x82\x9d\x94\xaa\xa0\x0e\x02\x71\xa2\x03\x97\x73" "\x95\xba\x4a\x70\xe9\x12\xe2\x3b\xa5\x4a\xc6\x18\x5f\x7c\x55\x14\xb2\xe3" "\x3f\x7c\xe4\xeb\xa8\xd8\xf9\x23\x36\x51\x9d\x25\x8e\x48\x8e\xf7\x6a\x77" "\xba\x77\xa7\x7b\xfb\xed\x9e\x9d\x99\x15\xc2\xf7\xfb\x55\x69\x67\xba\xf7" "\x99\xe7\x7d\x9e\x9e\x77\x7a\xba\x7b\xb5\xb3\x11\x00\x00\x00\x7f\x2d\xbc" "\xf8\x3b\x7b\x5e\xff\xc4\x05\x1f\xfa\xee\x03\xe3\x27\xef\xfd\xc8\x1f\xdd" "\x71\x7f\x34\x54\x9f\x5a\x3f\x90\x06\x0c\x27\xb7\x77\xbd\x59\x15\x32\x9f" "\xd6\x7c\xef\x74\xe6\x99\xed\x6f\x8c\x4c\xdd\xe6\xe7\xc5\xf9\x7f\xbc\xec" "\xf5\xe1\x07\xaf\xfd\xf8\x23\x57\x7f\xf8\x7b\x5b\xfe\x64\xc9\xd8\xaa\xd5" "\xe3\x57\x7d\xfd\xf0\x75\x0f\x3d\xf8\xfc\x07\x7e\xfe\xfc\xe3\x4f\x5e\x5b" "\x35\x4e\x3a\x9f\x2e\x9d\x59\x8e\x7f\x1a\x47\xd1\xaa\x1f\x1d\x7e\xfc\xa1" "\x6f\xff\xe9\xf9\x93\xeb\xe2\xc9\xf1\xe3\xe1\xfb\xa2\x25\x4b\xe2\xa5\xdf" "\x5c\x12\xe7\x52\xac\x3d\x15\x45\xd1\x6d\xd3\x75\x66\xbf\x79\xf8\xe4\xba" "\xdb\x27\x6f\xef\xff\x52\x7f\x66\xfd\xb9\xb9\x24\xe6\xfb\x5f\x6f\x03\xc9" "\x3c\x3b\xb0\xf9\x33\x4f\x1f\xfd\xfc\xd8\xb7\x0f\x8f\xee\x5a\xf7\x93\x13" "\x57\xee\xbc\x6f\x26\x24\x1e\x68\x99\x4f\x51\x74\xce\x96\xd6\xc7\xf7\x45" "\x51\x34\x98\xfc\x9b\x94\xce\xb6\x91\xf4\xc1\xc9\xed\xfa\x28\x8a\x16\xb6" "\x3c\xee\x7d\x15\x75\x5d\xd2\x66\xfd\x97\x05\x96\x57\x26\xb7\x0b\x92\xdb" "\xa1\x8a\x3c\xe9\xf7\x2f\xce\x2d\x37\xda\xac\xa3\x91\xbb\xed\x6f\xf3\x71" "\x9d\xaa\xcd\x73\xfe\xbc\xfc\xf6\xcb\xef\x8c\xe6\x4b\xda\xe7\x39\xc9\xed" "\x73\xc9\xed\xa5\x73\xcc\x53\x4f\xff\xc5\x51\x2d\x8e\x1a\xd3\xe5\x6f\x8f" "\x67\xe6\x48\xd4\xf2\xbc\xc5\x51\x3c\x35\xb7\x07\xa6\x97\x6b\x53\xcb\xd1" "\xf4\x72\x94\x5f\x8e\x73\xcb\xb5\xdc\x72\xbd\x2f\xd7\xd7\xd4\xb8\xc9\x86" "\xad\xc7\x71\x76\x7d\x1a\x97\x5b\x9f\xee\x8e\x1b\xc9\xfa\x8b\x5b\xf7\xd5" "\x05\x36\x04\xd6\x2f\x4f\x6e\x07\x92\x17\xea\x1b\xe9\x72\x94\xbf\xd3\x34" "\x34\xeb\xce\x4c\x1f\x51\x4b\x5d\xc7\xcf\xd4\xc4\x08\xa8\x05\x5e\x7b\xe9" "\xfa\xe9\xf2\x92\x27\x63\x28\x59\x37\x14\x2f\x9d\xf5\x98\x89\x02\xe9\xf7" "\x8e\x7f\x67\xeb\xa6\xd7\x7e\x78\xcf\x73\xc3\x81\x3a\xe2\x67\xe3\x24\x7f" "\xdc\x51\xfe\xb1\xf1\xa7\x8e\x7e\xed\xa6\x23\xcb\x47\x42\xf9\xb7\xd4\x92" "\xfc\xb5\x8e\xf2\xbf\x58\x7f\xe9\xd4\x57\x4f\x8c\x2c\x0a\xe6\x3f\x98\xe6" "\xaf\x77\x94\x7f\xe3\x2f\x7e\xfc\xf0\x03\xd7\xef\x5f\x16\xdc\x3e\xc7\xd3" "\xed\xd3\xe8\x28\xff\xea\x2f\x2f\x3a\x70\x72\xff\x86\xfe\xd1\x50\xfe\x43" "\x69\xfe\x81\x8e\xf2\x5f\x75\xcb\xaa\xab\x2f\x3c\xb1\xef\xce\x60\xfd\x6b" "\xd3\xed\x33\xd8\x51\xfe\x1f\x3c\xba\xe6\xf4\x2d\x07\xbf\x71\x24\x98\x3f" "\x4a\xf3\x2f\xec\x28\xff\x2b\x4f\x3d\xb3\xb2\xbe\xfc\xb1\x63\xc1\xfc\x47" "\xd3\xed\x33\xd4\x51\xfe\x1b\xd6\x3d\x71\xcd\xc7\x56\x3c\xf8\x64\x70\xfb" "\xbf\x9c\xe6\x5f\xdc\x51\xfe\x4d\xc7\x1e\xda\xb2\xeb\xe9\x17\xd6\x04\xe7" "\xe7\xfa\x74\xfb\x0c\x77\x94\xff\xd4\x35\xdf\x7f\xf5\xf4\xf0\xb5\xcf\x84" "\xf6\x9d\xf1\xa1\x33\xfd\x0e\x0b\xf0\xcb\xe5\x6d\xc9\x31\xd6\xc3\xc9\x72" "\xa7\xe7\x99\xdd\x6a\x39\x5f\x78\x62\xb4\xd1\x3c\xe6\x5b\x94\xfc\x5b\xdc" "\xcb\x81\x72\xe2\x96\x73\x17\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe8\xd4\x63\xd7\xfc\xfb\x2f\xb4\x2e\xbf" "\xf3\xff\xdc\xb9\xf1\xd8\x7f\x58\xb5\xad\x91\x2c\xf7\x37\xa2\x28\x8e\xa2" "\xe8\xb5\x7a\x73\x39\x5d\xbf\x20\x8a\xe2\xc1\x28\x8a\xf6\xec\xdd\xba\x7b" "\xef\xb6\x1d\x9f\x1d\xfd\xad\x9d\xfb\x76\xef\xd8\xba\x7d\x74\xeb\xde\xd1" "\xf1\x1d\x7b\x77\xdf\x3d\xfa\xb7\xfe\xe6\xe8\xee\xf1\x5d\xdb\xb7\xde\x3d" "\xf9\xdd\xb5\x97\xad\x6b\x3e\x6e\xe9\x54\xb6\x28\x5a\x1a\x5f\x38\xab\x96" "\x89\x89\x89\x89\x28\x8a\x46\x5b\xd7\xa5\xe3\xfd\xde\x47\x9f\xfd\x7f\x1b" "\x9f\xfc\x8b\x4f\x47\xd1\xda\xf3\xbe\xbf\xaa\x11\xec\xe7\xbd\xff\xf5\xd5" "\x0f\x2d\x2b\xf8\x9a\x13\x8f\x4d\xac\xff\x17\x57\x3e\x7a\xcf\x82\xff\x75" "\x6e\x73\xc5\x70\x52\xd7\x70\xa8\xae\xe1\xec\xba\xb4\x82\xa1\xb1\x97\xff" "\xec\x83\xcf\xfd\x70\xb2\xae\xb7\x97\xd5\xf5\xf8\x4b\x37\xfe\xdf\x4c\x41" "\x53\x2b\x66\xf2\x24\x6a\xfd\x51\x6d\xea\x4e\x7f\xbc\xb0\xb0\x8e\xe9\xaa" "\x67\xea\x99\xda\x5e\x8d\xdb\xb7\x6d\x1f\x5f\x5b\xbd\x7d\xe3\xc0\xf6\x7d" "\xf7\x0b\x7f\x78\xe2\xdf\xdd\xb5\xf1\x9f\x36\xb7\xef\x40\xb0\x8f\x36\xb7" "\xef\xe4\x56\x6d\x4c\x3c\xf2\xb3\x07\xde\x7d\xdf\x07\xc7\xdf\x7f\x16\x3f" "\xef\x55\xdb\xbb\xa5\x85\xa9\xfa\xd2\xed\x37\x90\x6c\xef\x73\x92\xbe\xce" "\x09\xf4\x55\x0b\xf4\x75\xe7\xe8\x2b\xc7\xff\xd9\xbf\xfd\x4f\x5f\xbd\x2f" "\x5a\xdb\xf8\xd9\x45\xb3\xc7\xae\xea\xab\x2f\x99\x00\x7d\xf1\xf2\xb6\xc6" "\x4d\x47\x58\x18\x2f\xc9\xc4\x0e\x24\xf1\xe9\x33\x9e\x3e\xee\xbd\x7b\xef" "\xd8\xf5\xde\x3d\x77\xdf\x73\xd9\xb6\x3b\xb6\x7e\x76\xfc\xb3\xe3\x3b\xd6" "\xad\xbb\xf2\xea\xcb\xd7\x5d\x7e\xc5\xd5\xeb\xde\x3b\xd5\x7a\xf3\x6b\xcf" "\xfa\x4f\xc7\x7f\x77\x9b\xfd\x2f\x4a\x32\x2d\x8a\x57\x14\x6e\xb7\xfc\xda" "\x74\xdc\x8b\xa6\xbe\xd6\xa3\xa4\xec\xf4\xa6\xe5\x4e\x56\x5f\x34\xd4\xbc" "\xcd\x6d\xe7\x34\x3c\xdf\xf5\x50\xf2\xbd\xa1\x78\xe9\xac\x5c\x13\x05\xd2" "\xef\x1d\xff\xce\xd6\x4d\xaf\xfd\xf0\x9e\xe7\x42\xaf\xbc\xf8\xd9\xe6\x88" "\x83\xd1\xe2\xe6\x6d\xbc\x32\x10\xb9\x3d\xf7\xc0\xfa\x74\xc1\x45\xe3\x9f" "\x99\xd7\xe5\xce\xdf\x1d\xd8\x9e\x7e\xcd\xbd\x2e\xfb\x9a\xd5\xe5\x5f\x97" "\x55\x75\x55\xcd\xab\xc9\xba\xaa\xe7\x55\x6b\x45\x25\xfb\xb1\x97\x2e\x79" "\xf8\x67\x4f\x7f\xf1\x9f\xdf\xdc\xc6\xfe\xa2\x25\x74\xaa\xbe\xb4\xce\x85" "\x93\x2f\x97\xcb\xa3\x96\xd7\xed\xec\x6d\x55\xd4\x57\x1b\xcf\xcf\x58\xd1" "\x76\xb8\xf5\xb2\xdd\x7f\x78\xf7\xb6\x4d\x07\xab\xf6\xe7\xad\xcf\x4c\xeb" "\xd7\x9c\x78\x6c\xe2\x7f\xae\x8c\x3f\xbe\x6f\xcf\x9f\xed\x6e\xae\x38\x23" "\xef\x97\xad\x05\x75\xf8\x7e\x39\x5d\xf5\x4c\x3d\x53\xdb\x6b\x20\x79\x3e" "\xce\xd6\xed\xdb\x1f\xd5\x93\xbe\x86\x0a\xeb\xda\x10\x3f\xfd\x81\x77\xdf" "\x71\xe4\x57\xa6\xeb\x5b\xb0\x20\xba\x6b\xeb\xde\xbd\xbb\x2f\x6f\x7e\x7d" "\xab\xf6\xf5\xe7\x0b\xce\x5d\xb6\xed\xfe\x15\x17\xce\xea\xeb\x8a\xe6\xd7" "\xaa\xfd\xfe\x45\xb9\xe5\xca\xfd\x7e\xad\xb8\xbf\xaa\xfd\x7e\x7e\x9c\x99" "\xf8\xe2\x7c\xa3\xb9\xe5\xa1\xa8\xde\xd1\xfb\xc4\xc6\x5f\xfc\xf8\xe1\x07" "\xae\xdf\xbf\x2c\xf8\x3e\x71\xbc\xdd\xf7\x89\xdf\xce\x2c\xd5\xbb\x7c\x9f" "\xa8\x05\x5e\xef\x8f\xfc\xc5\x57\x46\x5f\xbf\xf9\x53\xaf\x57\xcd\xa7\xeb" "\xf6\xac\xb8\x77\x59\xc1\xd7\x7c\x7b\x63\x13\xdf\xf8\x83\x5f\xbd\xfc\xfd" "\x37\x5e\xff\xe1\xe6\x8a\x33\xb2\x1f\x6a\x2d\xa8\xc3\xfd\xd0\x74\xd5\x49" "\x3d\xe9\xf6\x9a\xda\x0f\x5d\x71\xf6\xf4\xf1\xe6\x3d\xcf\x99\x17\x62\x3c" "\x36\x71\xd1\xd7\xdf\x75\xc3\xe9\x93\x5f\xf8\x64\x73\x45\xd5\xf6\x9d\x8e" "\x2e\xda\xbe\xeb\xaa\xf7\xf3\xf5\x40\x5f\x37\xf7\xbd\x63\xc9\xa3\x3f\x59" "\xf1\x8e\xde\xcd\xdf\x3d\x9b\xff\xf2\x92\xf7\x2c\x5c\x74\x96\xcd\xdf\x81" "\x64\xfb\x0e\x04\xb6\xef\x74\xd5\x49\x3d\xf5\xd6\xed\xfb\x9e\x5b\x77\x6e" "\xbf\xad\xb9\x7c\xf6\x1e\xb7\x35\xf5\x57\x9c\xff\xa4\xef\x3b\x7b\xee\xbe" "\xe7\xf3\x5b\xb7\x6f\x1f\xdf\xbd\xa7\xbd\xbe\xda\x7d\x3f\x4d\xc7\xc9\x6f" "\xe5\x4e\xdf\x4f\xd3\x77\x8f\xa5\x15\x7d\xa5\xcf\xd7\x4c\x5f\xc5\x77\x06" "\x93\xf8\x82\x6f\xbd\x18\x05\x1f\x95\xbd\xd3\xce\xf6\x6a\xf7\xf5\x96\xd6" "\x7f\x5b\x2e\x47\xa7\xaf\x37\x80\xd4\xcc\xfb\xc2\x82\xcc\xfa\xfc\xfe\x33" "\xbd\xee\xb7\xea\x9c\x68\xe3\x7b\xbe\xf8\xad\x97\xe2\xd1\xe6\xfb\x65\xaf" "\xae\xb7\xa6\xe3\x5c\x90\x7b\x63\x6e\xbe\xbb\x2d\x9e\xf3\xf5\xd6\xaa\xf3" "\xa4\x77\xe4\x96\xb3\xe7\x49\x8d\xa8\xa5\xef\xa6\xd9\xe7\x49\x53\x0f\xa9" "\x3a\x4f\xca\x8f\x53\x75\x9e\x74\x49\x6e\xb9\xfa\x3c\xe6\xe1\xc2\x4e\x42" "\xcf\x5f\x5f\xf2\xce\x5b\x74\xdd\x34\x57\x6f\x63\x32\x43\xe1\xfc\x88\xa3" "\x68\x24\xc9\x3f\x92\xac\x4a\x8f\x37\x57\xbd\x27\xba\xb2\xfe\xdc\x3b\x3f" "\x1a\x8f\xb5\x37\x3f\xda\x3d\x9e\x4e\xc7\xf9\x1b\xb9\x0d\xd4\xe9\xf1\x74" "\xd5\xfc\x58\x1d\x15\xd7\xd5\xeb\xf9\xf1\xae\xdc\x83\xaa\x9f\xef\x83\x85" "\x95\x0d\x04\x9e\x8f\xaa\xe7\x7b\x75\x26\xd1\xc4\x44\xb7\xe7\xe5\xc3\x81" "\xaa\xd3\xf3\xf2\xa1\x28\xee\x28\xff\xd8\xf8\x53\x47\xbf\x76\xd3\x91\xe5" "\xc1\xfc\x5b\x6a\x49\xfe\x5a\x47\xf9\x5f\xac\xbf\x74\xea\xab\x27\x46\x16" "\x05\xf3\x1f\x4c\xf3\x37\x3a\xca\xbf\xfa\xcb\x8b\x0e\x9c\xdc\xbf\xa1\x3f" "\x98\xff\x50\xba\x7d\x06\x3a\xca\x7f\xd5\x2d\xab\xae\xbe\xf0\xc4\xbe\x3b" "\x83\xf9\xd7\xa6\xf5\x0f\x76\x94\xff\x07\x8f\xae\x39\x7d\xcb\xc1\x6f\x1c" "\x09\xe6\x8f\xd2\xfc\x43\x1d\xe5\xbf\x61\xdd\x13\xd7\x7c\x6c\xc5\x83\x4f" "\x06\xf3\xbf\x1c\x27\xe3\x4c\xbe\x76\xa3\xe8\xf0\xc9\x75\xb7\x37\x97\xe3" "\xa9\x4b\xe8\x03\x2d\x75\xf4\x65\xea\x8a\xf2\xcb\xf1\xf4\xf2\x82\xa2\x3e" "\xa2\x7a\x6b\x7c\x2d\x0d\x4b\x06\xa8\xc7\x71\x76\x7d\x1a\x97\x5b\x9f\xf6" "\xd1\x48\xd6\x5f\xdc\x52\x63\x91\x8d\x81\xf5\xe9\xab\x76\x20\x79\x61\xbf" "\x91\x2e\x47\xf9\x3b\xe5\xeb\xd3\xdd\x53\x5a\xd7\xf1\xc0\xfb\xcf\x99\x52" "\x6b\x39\xf6\x28\x5a\x5f\x75\x7d\xb2\x57\x5e\xfb\xd1\xc8\xef\xb5\x2e\xa7" "\x3f\xff\x4f\xe7\x40\x7f\xa3\xf9\xdc\x5d\x91\xdb\x5e\x55\xef\x1f\xf9\xbd" "\x77\x9a\x2f\x78\x1d\x36\x70\x09\xa3\xea\x78\x61\xf6\xcf\xdf\x16\x76\xf4" "\xfa\x7b\xe5\xa9\x67\x56\xd6\x97\x3f\x76\x2c\x78\x5d\xf5\x68\xbb\xd7\x55" "\x77\x65\x96\x16\x56\x5c\x57\xed\xb6\xde\x82\xfd\x45\xbd\xb5\xde\x6e\xf7" "\x47\x23\xa1\xed\xf1\x72\x9a\xbf\xbb\xf7\x83\x60\xfe\xe4\xfd\xa0\x6a\x9e" "\xbd\x33\xb7\x5c\x39\xcf\xfa\x8a\xc7\xab\x9a\x67\xf9\xe3\x94\xa1\x68\x71" "\x59\xdf\xb3\x7a\x4f\xbf\xb7\xe9\xd8\x43\x5b\x76\x3d\xfd\xc2\x9a\xe0\x3c" "\x5b\xdf\x7c\xc1\x57\xcf\xb3\xc7\x32\x4b\x8b\x2b\xe7\x59\x77\x3f\x97\x0e" "\xbe\x2f\x3d\x1b\xb7\xb3\x3d\x82\xf9\xd3\xed\x11\xcc\xbf\xbe\x37\xc7\x35" "\xc1\x79\x96\x1c\xd7\x54\xcd\xb3\x4b\x73\xcb\xdd\xcf\xb3\xec\xf1\xe8\xc7" "\x93\xdb\xbb\x72\xf1\x43\xc9\x15\xe2\xb9\xf6\x7d\xea\x9a\xef\xbf\x7a\x7a" "\xf8\xda\x67\x82\xf3\xec\x50\xbb\xf3\xec\xf7\x33\x4b\xc3\x95\xf3\xac\x79" "\x7c\xdb\xdf\xe1\xf1\x6d\xf0\x79\x9a\x3e\xbe\x9d\xef\xe3\xf3\xb7\xf6\xf1" "\x67\x4f\x8f\x0f\x9b\xcb\xb5\xdc\x72\xf1\xf1\x61\xf2\xe3\xdc\xf9\x3a\x3e" "\xdc\x10\x58\x3f\xd7\xe3\xc3\xa1\x59\x77\x66\xfa\x88\xde\x8a\xc7\x87\x81" "\xfd\x0c\x00\x94\xf9\xee\x23\x77\xff\xef\xd6\xe5\xf4\xfc\x3f\x7d\xef\x4e" "\xcf\xff\xbf\x95\x7b\x5c\xb7\xe7\x95\xf9\xff\x0f\x95\xea\xd5\x79\x65\x30" "\xff\xa1\xde\x9c\xaf\x04\x8f\x53\xa7\xcf\x57\xe6\xfb\x7c\xab\xbb\xeb\xc8" "\xd5\xc7\xd9\xf3\x7b\xbe\xe5\x38\xbe\xd5\xe0\x4c\xfe\xe9\xeb\xc8\x3d\xbf" "\x2e\xd4\xcc\x3f\x7d\x5d\x68\x7e\xcf\x2b\x9d\x87\x24\xcb\x51\xfe\x4e\x93" "\xf3\x10\x00\x00\xde\x0c\x17\xff\xeb\xaf\xfc\x7a\xeb\x72\x7a\xfe\xdf\x7a" "\x6c\x37\x79\xfb\x42\x72\x3f\x7f\x2c\xe8\x3c\x37\x90\xff\x8c\x9d\xe7\xce" "\xf7\x75\x92\xb7\xd2\x79\x74\x4b\xfe\x33\x76\x1e\x3d\xdf\xd7\xc1\xe6\xfb" "\x3a\xd5\x5c\xae\x03\xfc\xe7\xf3\xd2\xef\xb9\x0e\x50\xcc\x75\x80\x33\x5b" "\x17\x00\x00\x73\xb3\xf9\xf6\xdd\xe3\xe3\x7b\x76\x6d\xbd\x75\x7c\xf3\xb6" "\x1d\xdb\xf6\x4e\xaf\xef\x9b\x3a\x73\x9a\xfd\xff\x54\xff\x76\x72\xbb\x3e" "\x97\xa7\xea\xff\x4f\x17\xc5\x2f\x2c\x89\xff\x64\x30\x7f\xb6\x9e\xf7\x05" "\xe2\x43\x1a\xc9\x4f\x5b\x3f\x73\xeb\xe7\xae\xd8\x7c\xdb\xf8\x9d\x73\xed" "\x3f\x34\x5e\x55\xff\x45\xf1\x65\xfd\xe7\xcf\x2f\x42\xfd\x5f\x1d\x88\x0f" "\xe9\xb6\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\x7f\x7d\x30\x7f\xb6\x9e\xf7" "\x07\xe2\x43\xba\xeb\xbf\xd1\x46\x7d\xed\xf7\x53\xd6\xff\xa7\x82\xf9\xb3" "\xfd\xff\x6a\x20\x3e\xa4\xdb\xe7\x3f\x34\x5e\x55\xff\x45\xf1\x65\xfd\xe7" "\x7f\x1f\x2c\xd4\xff\xaf\x05\xe2\x43\xba\xed\x3f\x34\x5e\x55\xff\x45\xf1" "\x65\xfd\xdf\x10\xcc\x9f\xad\xe7\x03\x81\xf8\x90\x6e\xfb\x0f\x8d\x57\xd5" "\x7f\x51\x7c\x59\xff\x37\x06\xf3\x67\xeb\xf9\x3b\x81\xf8\x90\x6e\xfb\x0f" "\x8d\x57\xd5\x7f\x51\x7c\x59\xff\x37\x05\xf3\x67\xeb\xb9\x26\x10\x1f\xd2" "\x6d\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\xff\xd3\xc1\xfc\xd9\x7a\xc6\x02" "\xf1\x21\xdd\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\x37\x05\xf3\x67\xeb" "\xf9\xbb\x81\xf8\x90\x6e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\x37\x07" "\xf3\x67\xeb\xf9\x60\x20\x3e\xa4\xa8\xff\x68\xac\xfd\xfe\x43\xe3\x55\xf5" "\x5f\x14\x5f\xd6\xff\x6f\x04\xf3\x67\xeb\xf9\x7b\x81\xf8\x90\xd2\xe7\xbf" "\xb0\xbe\xf6\xc6\xab\xea\xbf\x28\xbe\xac\xff\x5b\x82\xf9\xb3\xf5\xfc\x7a" "\x20\x3e\xa4\xdb\xf9\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\x7f\x33\x98\x3f" "\x5b\xcf\x87\x02\xf1\x21\xdd\xf6\x1f\x1a\xaf\xaa\xff\xa2\xf8\xb2\xfe\x37" "\x07\xf3\x67\xeb\xf9\x70\x20\x3e\xa4\xdb\xfe\x43\xe3\x55\xf5\x9f\x8f\xff" "\x69\xf2\x39\xc7\xa1\xf8\x2d\xc1\xfc\xd9\x7a\xfe\x7e\x20\x3e\xa4\xdb\xfe" "\x43\xe3\x55\xf5\x5f\x14\x5f\xf6\xfc\x6f\x0d\xe6\xcf\xd6\xf3\x91\x40\x7c" "\x48\xb7\xfd\x87\xc6\xab\xea\xbf\x28\xbe\xac\xff\xcf\x04\xf3\x67\xeb\xf9" "\x68\x20\x3e\xa4\xdb\xfe\x43\xe3\x55\xf5\x5f\x14\x5f\xd6\xff\xad\xc1\xfc" "\xd9\x7a\x3e\x16\x88\x0f\xe9\xb6\xff\xd0\x78\x55\xfd\x17\xc5\x97\xf5\x9f" "\xff\xbc\xc3\x50\xff\xff\x20\x10\x1f\xd2\x6d\xff\xa1\xf1\xaa\xfa\x2f\x8a" "\x2f\xeb\x7f\x3c\x98\x3f\x5b\xcf\xb5\x81\xf8\x90\x6e\xfb\x0f\x8d\x57\xd5" "\x7f\x51\x7c\x59\xff\xb7\x07\xf3\x17\x7f\x6e\x40\x3e\x3e\xa4\xdb\xfe\x43" "\xe3\x55\xf5\x5f\x14\x5f\xd6\xff\x67\x83\xf9\xb3\xf5\x7c\x22\x10\x1f\xd2" "\x6d\xff\xa1\xf1\xaa\xfa\x2f\x8a\x2f\xeb\xff\x73\xc1\xfc\xd9\x7a\xae\x0b" "\xc4\x87\x74\xdb\x7f\x68\xbc\xd9\xfd\x0f\x56\xf6\x53\xd6\xff\xb6\x60\xfe" "\x6c\x3d\xeb\x03\xf1\x21\xdd\xf6\x1f\x1a\xaf\xea\xf9\x2f\x8a\x2f\xeb\xff" "\xb7\x82\xf9\xb3\xf5\x7c\x32\x10\x1f\xd2\x6d\xff\xa1\xf1\xaa\xfa\x2f\x8a" "\x2f\xeb\xff\xf3\xc1\xfc\xd9\x7a\x36\x04\xe2\x43\xba\xed\x3f\x34\x5e\x55" "\xff\x45\xf1\x65\xfd\x6f\x0f\xe6\xcf\xd6\x73\x7d\x20\x3e\xa4\xdb\xfe\x43" "\xe3\x55\xf5\x5f\x14\x5f\xd6\xff\x1d\xc1\xfc\xd9\x7a\x3e\x15\x88\x0f\xe9" "\xb6\xff\xc9\xf1\xfe\x55\x41\xde\xaa\xfe\x8b\xfa\x29\xeb\x7f\x47\x30\x7f" "\xb6\x9e\x8d\x81\xf8\x90\x6e\xfb\x0f\x8d\x57\xd5\x7f\x51\x7c\x59\xff\x3b" "\x83\xf9\xb3\xf5\xdc\x10\x88\x0f\xe9\xb6\xff\xd0\x78\x55\xfd\x17\xc5\x97" "\xf5\xbf\x2b\x98\x3f\x5b\xcf\x8d\x81\xf8\x90\x6e\xfb\x0f\x8d\x57\xd5\x7f" "\x51\x7c\x59\xff\x5f\x08\xe6\xcf\xd6\x73\x53\x20\x3e\xa4\xdb\xfe\x43\xe3" "\x55\xf5\x5f\x14\x5f\xd6\xff\xee\x60\xfe\x6c\x3d\x9f\x0e\xc4\x87\x74\xdb" "\x7f\x68\xbc\xaa\xfe\x8b\xe2\xcb\xfa\xdf\x13\xcc\x9f\xad\x67\x53\x20\x3e" "\xa4\xdb\xfe\x43\xe3\x55\xf5\x5f\x14\x5f\xd6\xff\xde\x60\xfe\x6c\x3d\x37" "\x07\xe2\x43\xba\xed\x3f\x34\x5e\x55\xff\x45\xf1\x65\xfd\xef\x6b\xde\x0c" "\xcc\xce\x9f\xad\xe7\x37\xb2\xf1\x95\xba\xed\x3f\x34\x5e\x55\xff\x45\xf1" "\x65\xfd\xdf\x19\xcc\x9f\xad\xe7\x96\x40\x7c\x48\xb7\xfd\x87\xc6\xab\xea" "\xbf\x28\xbe\xac\xff\xfd\xc1\xfc\xd9\x7a\x7e\x33\x10\x1f\xd2\x6d\xff\xa1" "\xf1\xaa\xfa\x2f\x8a\x2f\xeb\x3f\xff\x39\x90\xa1\xfe\x37\x07\xe2\x43\xa6" "\xfb\xdf\xbb\x7b\x7c\x7c\xf3\xbe\x5d\xb7\x6d\xdd\x3b\xbe\x79\xc7\xce\xdb" "\xc6\xf7\x6c\xde\xbf\x7b\xdb\xde\xbd\xe3\xc9\x81\x5a\xb7\xbf\x57\x16\xfe" "\xbd\xa0\x37\xf9\x17\x59\x28\x95\x79\x7d\x34\x27\xc9\xb6\x1d\x7b\xc6\x77" "\xcf\xde\x7f\x0f\x96\xce\xdf\xd6\x39\x11\x4d\xed\xc8\x9b\xd7\x83\x06\xe2" "\xb7\xb7\x15\x9f\xff\xd8\xeb\x4e\x67\xcd\xd9\x32\xdf\xfb\xa2\x46\xe9\xf6" "\xba\x20\xb7\x7c\x6e\xf2\x7f\x0d\xcf\x0d\x7c\x1e\x6d\x3e\x3e\x4d\xbb\x62" "\xea\xce\xec\xcf\xa3\xcd\x0f\xdb\xa8\xf8\x1c\xd7\xaa\xfd\x53\x7e\xfc\xd0" "\xfe\x29\x2e\x89\x2f\xda\xbf\x86\xf6\x67\x55\xef\x7f\x73\xde\xff\x55\xce" "\xef\x81\xd2\xfe\xf3\xab\xfb\x93\x43\x95\xfe\xf8\xbc\xb6\xe2\xa3\x92\xbf" "\xef\xd6\xde\x7c\xed\xee\xf7\x4e\x83\xf3\xf5\xe5\xf6\xe6\x6b\xfe\x73\xd7" "\xab\xe6\x6b\x3e\x7e\xae\xf3\x75\xa8\xcb\xf9\x9a\x1f\x3f\x34\x9f\x6a\x25" "\xf1\x65\xc7\x43\xed\xce\xd7\x4d\x81\xf8\x54\xfb\xf3\x33\x0e\xf6\x5b\x34" "\xaf\xe6\xfa\x77\x06\xd3\xb4\x73\xfa\x3b\x83\xb9\x2f\xb3\x74\xf0\xb7\x0c" "\xda\x7f\x3d\x74\xf7\x7b\xe4\xc1\xd7\x43\x52\x74\xd5\xeb\x21\xff\x7b\xdc" "\x55\xaf\x87\x7c\xfc\x5c\x5f\x0f\x83\x5d\xbe\x1e\xf2\xe3\x57\xbd\x1e\x8a" "\xe2\xcb\xce\x8f\xdb\x7d\x3d\xdc\x18\x88\x0f\xc9\xcc\x87\x05\x51\xc9\x7c" "\xe8\xee\x73\x0b\x82\xf3\x61\x6d\x7b\xf3\x21\xff\x77\xac\xaa\xe6\x43\x3e" "\x7e\xae\xf3\x61\xa0\xcb\xf9\x90\x1f\xbf\x6a\x3e\x14\xc5\x97\x5d\x2f\x6c" "\x77\x3e\x7c\x2a\x10\xdf\xae\xf6\xf7\x17\xdd\x7d\xae\x48\x70\x7e\x6c\x69" "\x6f\x7e\xe4\xff\x9e\x44\xd5\xfc\xc8\xc7\xcf\x75\x7e\xc4\x5d\xce\x8f\xfc" "\xf8\x55\xf3\xa3\x28\x3e\xf4\xf3\x94\x68\x0e\xf3\xe3\x93\x81\xf8\x54\xe6" "\xfd\xf3\xf6\x3d\x53\x27\xf5\xdb\xb6\x6e\xdf\x76\x4f\xee\x3f\x60\x0c\x27" "\xef\x9f\x6f\xf6\xfb\xe1\x19\x79\x5f\xfe\xcb\x5f\xfb\xf3\x37\x9a\x5f\x92" "\x3a\x6a\xb3\xea\xa8\x3a\x9e\x88\x73\x75\x2c\x49\x2a\x59\x12\xfa\xbb\x87" "\x81\xba\x6f\xfd\x2f\xff\x66\xe3\xb7\x7e\xfe\xc5\xaf\x44\xd1\xda\xf3\xea" "\x2b\xc3\x75\xcf\x94\x3c\xf3\x25\x27\x1e\x9b\x58\x7a\xef\xea\xaf\xdd\xf4" "\xf6\x63\x1f\x9c\xac\xbf\x56\x5a\xff\x74\x64\xfa\x77\x8b\x2b\xfe\xde\x71" "\x3e\x3e\xed\xa7\xb1\x7d\xe7\x9e\xbd\xbf\x72\xfb\xce\x7d\x3b\xda\xfd\x1f" "\x57\xe5\xd2\xcf\x43\xa9\x4d\x2f\xcf\xd3\xe7\xa1\x24\x2b\xeb\x6d\x7e\xbe" "\x49\xe8\xf7\x09\xe6\xfa\xf9\x26\x7d\xb3\xee\x9c\x9d\xda\xfe\x7c\x13\x80" "\x5f\x12\xe7\x1e\x7a\x76\x71\xeb\x72\xfa\xf9\x7f\xe9\xfb\xd1\x48\xb2\xef" "\x1b\x4c\x76\x80\xe9\xfa\xf6\x8f\xb3\xbb\xfb\x7c\xbd\xe0\x71\xf6\xc1\xf6" "\x8e\xb3\xd7\xe4\xfb\xad\x38\xce\xce\xc7\xa7\xfd\xb6\x7b\x9c\x5d\xeb\xf2" "\x38\x3b\x3f\x7e\xd5\x71\x76\x51\x7c\xd9\xff\xdb\x6b\xf7\x38\xfb\x13\x81" "\xf8\xb9\xca\xce\x93\xc9\x09\x32\x35\x3f\xc6\x37\xef\xdf\xb9\xbb\xf5\xff" "\xc4\xcd\xf7\xdf\xad\xed\x7d\xbd\x65\xe7\x8f\x0b\x82\x7f\xff\xaf\xdd\xbf" "\xe3\xdb\x7d\x7d\xf3\xfb\xb9\x8d\x9d\x6a\xbf\xfe\xf9\xfd\x5c\xc8\xf9\xaf" "\x7f\x7e\xff\x0e\xf0\xfc\xd7\x3f\xbf\x7f\xe7\xb9\x53\x67\xec\x7c\x29\xf9" "\xb0\xc8\xaa\xcf\x8f\xac\x3a\x8f\x0a\xfd\x5e\xfa\x5c\xcf\xa3\x16\xcc\xba" "\x73\x76\x72\x1e\x05\x00\x67\xbf\x7f\xb2\xfb\x47\xff\xb2\x75\x39\x3d\xff" "\x4f\xce\x62\xa7\xcf\xff\xbf\x94\x2c\xd7\x7b\x3c\x7e\xb7\x3f\x87\xab\x3a" "\x8f\x9a\xef\xf3\xca\xf9\x3e\x4e\x7e\xeb\x7f\xfe\xfe\xfc\x9e\x07\x39\x1f" "\x28\x19\xec\x2c\xe0\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xa0\xd8\xef\xff\xf7\xff\xf8\xcd\xd6\xe5\xfe" "\xc6\xc8\xd4\xed\x8b\xbf\xb3\xe7\xf5\x4f\x5c\xf0\xa1\xef\x3e\x30\x7e\xf2" "\xde\x8f\xfc\xd1\x1d\xf7\x9f\xff\xc7\xcb\x5e\x1f\x7e\xf0\xda\x8f\x3f\x72" "\xf5\x87\xbf\xb7\xe5\x4f\x96\x8c\xad\x5a\x3d\x7e\xd5\xd7\x0f\x5f\xf7\xd0" "\x83\xcf\x7f\xe0\xe7\xcf\x3f\xfe\xe4\xb5\x95\x03\x0d\x37\x6f\x2e\x4d\x16" "\x07\xa2\x28\xfe\x69\x1c\x45\xab\x7e\x74\xf8\xf1\x87\xbe\xfd\xa7\xe7\x4f" "\xae\x8b\x27\xc7\x8f\x87\xef\x8b\x96\x2c\x89\x97\x7e\x73\x49\x9c\xcb\xb0" "\xf6\x54\x14\x45\xb7\x4d\xd7\x99\xfd\xe6\xe1\x93\xeb\x6e\x9f\xbc\xbd\xff" "\x4b\xfd\x99\xf5\xe7\xe6\x92\xe4\xfb\x8a\x86\xea\x69\x3d\x99\x3a\xa3\xbb" "\x2a\x3b\xe2\x2d\x68\x20\x99\x67\x07\x36\x7f\xe6\xe9\xa3\x9f\x1f\xfb\xf6" "\xe1\xd1\x5d\xeb\x7e\x72\xe2\xca\x9d\xf7\xcd\x84\xc4\x03\x2d\xf3\x29\x8a" "\xce\xd9\xd2\xfa\xf8\xbe\x28\x8a\x06\x93\x7f\x93\xd2\xd9\x36\x92\x3e\x38" "\xb9\x5d\x1f\x45\xd1\xc2\x96\xc7\xbd\xaf\xa2\xae\x4b\xda\xac\xff\xb2\xc0" "\xf2\xca\xe4\x76\x41\x72\x3b\x54\x91\x27\xfd\xfe\xc5\xb9\xe5\x46\x9b\x75" "\x34\x72\xb7\xfd\x6d\x3e\xae\x43\xff\xbf\x36\xbf\xf9\x67\xc9\x6f\xbf\xfc" "\xce\x68\xbe\xa4\x7d\x9e\x93\xdc\x3e\x97\xdc\x5e\x3a\xc7\x3c\xf5\xf4\x5f" "\x1c\xd5\xe2\xa8\x31\x5d\xfe\xf6\x78\x66\x8e\x44\x2d\xcf\x5b\x1c\xc5\x53" "\x73\x7b\x60\x7a\xb9\x36\xb5\x1c\x4d\x2f\x47\xf9\xe5\x38\xb7\x5c\xcb\x2d" "\xd7\xfb\x72\x7d\x4d\x8d\x9b\x6c\xd8\x7a\x1c\x67\xd7\xa7\x71\xb9\xf5\xe9" "\xee\xb8\x91\xac\xbf\xb8\x75\x5f\x5d\x60\x43\x60\xfd\xf2\xe4\x76\x20\x79" "\xa1\xbe\x91\x2e\x47\xf9\x3b\x4d\x43\xb3\xee\xcc\xf4\x11\xb5\xd4\x75\xfc" "\x4c\x4d\x8c\x80\x5a\xe0\xb5\x97\xae\x9f\x2e\x2f\x79\x32\x86\x92\x75\x43" "\xf1\xd2\x59\x8f\x99\x28\x90\x7e\xef\xf8\x77\xb6\x6e\x7a\xed\x87\xf7\x3c" "\x37\x1c\xa8\x23\x7e\x36\x4e\xf2\xc7\x1d\xe5\x1f\x1b\x7f\xea\xe8\xd7\x6e" "\x3a\xb2\x7c\x24\x94\x7f\x4b\x2d\xc9\x5f\xeb\x28\xff\x8b\xf5\x97\x4e\x7d" "\xf5\xc4\xc8\xa2\x60\xfe\x83\x69\xfe\x7a\x47\xf9\x37\xfe\xe2\xc7\x0f\x3f" "\x70\xfd\xfe\x65\xc1\xed\x73\x3c\xdd\x3e\x8d\x8e\xf2\xaf\xfe\xf2\xa2\x03" "\x27\xf7\x6f\xe8\x1f\x0d\xe5\x3f\x94\xe6\x1f\xe8\x28\xff\x55\xb7\xac\xba" "\xfa\xc2\x13\xfb\xee\x0c\xd6\xbf\x36\xdd\x3e\x83\x1d\xe5\xff\xc1\xa3\x6b" "\x4e\xdf\x72\xf0\x1b\x47\x82\xf9\xa3\x34\xff\xc2\x8e\xf2\xbf\xf2\xd4\x33" "\x2b\xeb\xcb\x1f\x3b\x16\xcc\x7f\x34\xdd\x3e\x43\x1d\xe5\xbf\x61\xdd\x13" "\xd7\x7c\x6c\xc5\x83\x4f\x06\xb7\xff\xcb\x69\xfe\xc5\x1d\xe5\xdf\x74\xec" "\xa1\x2d\xbb\x9e\x7e\x61\x4d\x70\x7e\xae\x4f\xb7\xcf\x70\x47\xf9\x4f\x5d" "\xf3\xfd\x57\x4f\x0f\x5f\xfb\x4c\x68\xdf\x19\x1f\x3a\xd3\xef\xb0\x00\xbf" "\x5c\xde\x96\x1c\x63\x3d\x9c\x2c\x77\x7a\x9e\xd9\xad\x96\xf3\x85\x27\x46" "\x1b\xcd\x63\xbe\x45\xc9\xbf\xc5\xbd\x1c\x28\x27\x6e\x39\x77\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x90\x9d\x13\xf5\x7d\xad\xcb\xaf\x1e\x79\xe4\xba\xcf\xfd\x8f" "\xcd\xff\xad\x11\x47\x51\x1c\x78\xcc\x44\x81\xf4\x7b\xf5\x05\x63\x63\xa3" "\x1d\xd4\xb1\xfa\xcb\x8b\x0e\x9c\xdc\xbf\xa1\x3f\x5d\x9e\x1c\x7b\xa4\x83" "\x3c\x00\x00\x00\xc0\x6c\x2b\x5e\xf9\xe2\x17\x5a\x97\xd3\xf3\xf0\x5a\xb2" "\x1c\x47\x03\xd1\x48\xb4\x3f\x1e\x8c\x56\x14\x3e\x3e\xbd\x46\xb0\x22\x5d" "\x8a\xb3\xeb\xf3\xd7\x10\x06\x67\x22\x7b\x92\xa7\xd6\xa3\x3c\xf5\x1e\xe5" "\x69\xf4\x28\x4f\x5f\x8f\xf2\x2c\xe8\x51\x9e\xfe\x1e\xe5\x19\xa8\xc8\x33" "\x10\xb5\x97\x67\xb0\x34\x4f\xad\xed\x7a\x16\xf6\x28\xcf\x50\x8f\xf2\x2c" "\xea\x51\x9e\xc5\x3d\xca\x73\x4e\xe7\x79\x1a\xad\x79\xce\xed\x51\x3d\xc3" "\xa5\x79\xda\x9f\x87\x4b\x7a\x94\x67\x69\x8f\xf2\xbc\xad\x47\x79\x96\xf5" "\x28\xcf\x79\x3d\xca\xf3\xf6\x1e\xe5\x39\xbf\x47\x79\xf2\xd7\x94\xe7\x3a" "\x0f\x17\x27\x91\x17\x84\xf2\x4c\xdd\xa9\x57\xe6\x69\xc4\xf5\xe9\x6f\x14" "\x5d\x4f\x4f\xc7\xb9\xb0\xcb\x71\x86\xda\x1c\x27\x7f\xcd\x7e\xae\xe3\x0c" "\xb6\x39\xce\x25\x5d\x8e\x33\x10\xdf\xdf\xd6\x38\xef\xea\x72\x9c\xb8\xcd" "\x7e\xd6\xe4\x1e\x57\x9b\xe3\x38\xb5\x8a\x71\xd2\x79\x7b\x57\xa8\x9f\x74" "\xa9\xcd\xf9\x7f\x77\x8f\xf2\xdc\xd3\xa3\x3c\x07\x7a\x94\xe7\xb7\x7b\x94" "\xe7\x1f\x96\xe5\x59\x1c\xb5\x9d\xe7\x1f\xf5\xa8\x9e\x7b\xbb\xcc\x03\x10" "\xf2\xbb\xcf\x5f\xfa\x07\xad\xcb\xe9\xf9\x7f\x7a\xfe\x19\x47\xc3\x51\x7f" "\xe3\x8a\x68\x61\xb2\xc7\xc9\x5f\x05\x48\xcf\x77\x2f\x9a\xfa\x3a\xfb\xfd" "\x2e\xb4\x43\x4a\xf3\xad\xcc\xad\xef\xab\xca\x97\x3f\xc1\xce\xe5\xbb\x68" "\xae\xf5\xe5\x2f\x20\xe4\xf2\xbd\xa3\x34\x5f\x63\xd6\xf9\x6a\x41\xbe\x46" "\x6b\xbe\xd5\x3d\xca\x07\x00\x00\x00\x73\xf1\x8f\x4f\x1d\xc8\xfc\x68\x6e" "\xf6\xf9\xff\x48\xd4\xdf\x58\x36\x7d\xfe\xfa\xce\xdc\xe3\x2b\xcf\xd7\xf3" "\x3f\xc8\x4e\xa4\xf9\x2e\xed\x51\x3e\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xfe\x8a\x5d\x7b\x0f\x91\xb3\x3c\x17\x00\xfe\x7e\x3b\xb3\x33\x73" "\xd6\x4b\x56\x49\xe2\xc4\xdc\x96\x24\xc7\x28\x62\x2e\x86\x1c\x8e\x9e\x73" "\x74\x08\x1c\xc1\xc3\xd1\x8d\xb5\x89\x97\x20\xdb\x54\x57\x37\xb8\x26\x9a" "\x4d\xd4\xa4\x2d\xb1\x5a\x9a\xb0\x60\xb1\x8d\xbd\x78\xfb\xa3\xd1\x4a\x11" "\xa9\x0a\x42\xb0\xdd\x82\x45\x5b\xe9\x1f\x0d\x0d\xd6\xe2\xa5\xdb\xd5\xad" "\xe8\x3f\x52\xad\xb9\xa9\xb1\x9d\x32\xbb\xf3\xee\xce\x65\xc7\x8d\xd3\x9a" "\x34\xed\xef\x87\x7c\xdf\x3c\xdf\xf7\x3c\xef\xf3\x7e\x9f\x20\x3c\xdf\x0a" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xf8\x7e\xfb\xed" "\x3f\x3d\x5f\x19\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\x86\x24\x94\xfe\x99\x50" "\x71\x02\xf1\x5e\x2a\x53\x28\x74\x34\xb1\x8f\xf7\x5e\x58\x7b\xf5\x1f\x5f" "\xd9\xba\x3b\xc6\xa5\xde\xd9\x74\x13\x0b\x01\x00\x00\x00\x75\x9e\xbc\x60" "\xc6\x99\x95\x71\x9c\xc3\xe3\xe8\x9d\x84\x5c\xc8\xa6\x97\x86\x6c\x92\xa9" "\xaa\xcb\x97\xbf\x03\xe4\xcb\x71\x4b\xfb\xe8\x79\xce\xa2\xb0\x3c\xb5\xfb" "\xdf\x2f\x4e\x0a\x2d\x23\xf1\xa9\xc9\x29\x55\x75\xb9\x72\x5d\xae\x1c\xa7" "\xca\x75\x7d\x5b\xb6\xde\xb8\xb6\xb7\xb7\x7b\xe3\x67\xf8\xa3\xd4\xa7\xf6" "\x39\x6a\xf7\x93\x84\x30\xf2\xf9\x62\xce\xc9\x61\xd5\xa2\xed\xcf\xed\x49" "\x3a\x46\x9f\xa3\x6d\x92\xe7\x68\x29\xd7\x2d\xde\x74\xd3\xcd\x8b\xfb\xb6" "\x6c\x3d\x67\xdd\x4d\x6b\x6f\xe8\xbe\xa1\x7b\xfd\xb2\x65\xcb\xcf\x5b\xba" "\x6c\xe9\xb9\xe7\x2d\x5b\x7c\xfd\xba\xde\xee\x25\xa3\xc7\x90\x9d\x64\xbd" "\x10\x42\xa1\xfa\xbd\x4c\xf2\x2f\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x8e\x82\x6d\xbf\xdc\xfd\xb5\xca\x78\x78\xa0\xbf\xb3" "\x67\xa8\x6b\xb0\x2d\x09\x21\x69\x50\x53\x9c\x40\xbc\x97\xca\x14\x0a\x1d" "\x4d\xec\xe3\xb5\x07\x1e\x9e\x95\x9a\x71\xef\xde\x18\x97\x7a\x67\xd3\x4d" "\x2c\x04\x00\x00\x00\xd4\xf9\xd9\x93\x33\x2e\xac\x8c\xe3\x1c\x1e\x47\xef" "\x24\xe4\x42\x36\x9d\x09\xa9\x30\x63\x24\x9e\x37\x9e\x9a\x0e\xa1\x58\x8c" "\xd7\x17\xd4\x5c\x3f\x1a\x7b\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\x8e\xae\x7d\x07\x3b\x7f\x5f\x19\x0f\x0f\xf4\x77\xf6\x0c" "\x75\x0d\x9e\x90\x84\x90\x34\xa8\x29\x4e\x20\xde\x4b\x65\x0a\x85\x8e\x26" "\xf6\xb1\x7a\xd9\xf7\x2e\xfc\xbf\x99\x77\xdd\x1f\xe3\x52\xef\x7c\x13\xeb" "\x00\x00\x00\x00\xf5\x5e\x3a\xb3\xf5\xae\xca\x38\xce\xe1\x2d\xe5\x38\x09" "\xb9\x90\x0f\xf3\x43\x6b\x32\xa3\xaa\x2e\x7e\x1b\x38\xbd\x66\xbd\xda\xbc" "\xb8\xce\xec\x23\xcc\xab\xfd\x76\xd0\x28\x6f\xfe\x11\xe6\x9d\x71\x84\x79" "\x67\x4d\x92\x77\x69\xf9\x7c\x7b\x00\x00\x00\x80\xe3\xcf\x55\xed\xbf\x5a" "\x5d\x19\xc7\xf9\xbf\xb5\x1c\x27\xa1\x3d\x64\xd3\xf9\x90\x2a\xc7\x93\xcd" "\xf1\xf1\xbb\xc0\xdc\x9a\xbc\x58\x3f\xd9\x7c\x1f\xeb\xe7\x35\xa8\x9f\x6c" "\xee\x8f\xf5\xb5\x73\x3f\x00\x00\x00\xfc\x2b\x3b\xe7\xed\xa7\x3e\xae\x8c" "\xeb\xe7\xff\x7c\xc8\xa6\x73\x63\xf3\xf7\x64\x7f\x4f\xbf\xa4\x7c\xf6\x77" "\x72\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x91\x9f\x1f\xbc\xf8\x27\x95\xf1\xf0" "\x40\x7f\x67\xcf\x50\xd7\x60\x2a\x09\x21\x69\x50\x53\x9c\x40\xbc\x97\xca" "\x14\x0a\x1d\x4d\xec\x63\xd5\x5f\xde\xda\x71\xe7\xe5\xb7\x4d\x8d\x71\xa9" "\x77\x36\xdd\xc4\x42\x00\x00\x00\x40\x9d\xc7\x33\xff\x79\x5b\x65\x1c\xe7" "\xf0\x38\x7a\x27\x21\x17\xb2\xe9\xb6\xd0\x1a\x4e\x18\x99\xfb\xdf\xc8\x4c" "\x99\xba\xee\xab\x33\x67\x87\x10\x0a\x23\x09\x99\x4c\xb8\x7d\xed\xa6\x4d" "\x1b\xcf\x1d\x3d\xc6\xbc\xcf\x25\xbb\xfe\x67\xe1\x4d\x03\x67\xd7\xe5\x2d" "\x1d\x3d\x1e\xfd\x27\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xfe\x56\xcb\x1e\xdb\xb9\xa6\x32\x1e\x1e\xe8\xef\xec\x19\xea\x1a" "\xfc\xb7\x24\x84\xa4\x41\x4d\x71\x02\xf1\x5e\x2a\x53\x28\x74\x34\xb1\x8f" "\x97\x76\x9e\x75\xf8\x9a\x7b\x9e\x19\x88\x71\xa9\x77\xbe\x89\x75\x00\x00" "\x00\x80\x7a\xb3\x7a\x9f\xfd\x43\x65\x1c\xe7\xf0\x38\xfb\x27\x21\x17\xf2" "\x21\x13\x32\x61\xfa\x48\x5c\x39\xeb\x97\xb4\xd4\xac\xd7\xe8\x9b\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\xf0\xcf\xa3\x6f" "\xcb\xd6\x1b\xd7\xf6\xf6\x76\x6f\xf4\xc3\x0f\x3f\xfc\x18\xfb\x71\xac\xff" "\xcb\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x1c\x2b\x3f\x5e\xff\xad\x77\x2b\xe3\xe1\x81\xfe\xce\x9e\xa1\xae\xc1" "\x5c\x12\x42\xd2\xa0\xa6\x38\x81\x78\x2f\x95\x29\x14\x3a\x9a\xd8\xc7\x7f" "\x5c\x33\xe7\xbc\xd9\xfb\x37\xdf\x1a\xe3\x52\xef\x7c\x13\xeb\x00\x00\x00" "\x00\xf5\xd6\xbc\xb3\x79\x7f\x65\x1c\xe7\xf0\x38\xfb\x27\x21\x17\xf2\xa1" "\x35\xb4\x86\x69\xe5\xb8\xde\xc8\xfc\xdf\x7e\x34\x76\x0b\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x4b\x73\x43\x12\x8a\x9f\xd2" "\x69\x2b\x8f\xf5\xae\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\x80\xcf\xc2\x81\x97\x57\x3d\x50\x19\x0f\x0f\xf4\x77" "\xf6\x0c\x75\x0d\x9e\x94\x84\x90\x34\xa8\x29\x4e\x20\xde\x4b\x65\x0a\x85" "\x8e\x26\xf6\x71\xf5\xde\xaf\x7f\xe1\xe6\x5d\xcf\x9f\x15\xe3\x52\xef\x6c" "\xba\x89\x85\x00\x00\x00\x80\x3a\xad\x6f\xbf\xfc\xc5\xca\x38\xce\xe1\x71" "\xf4\x4e\x42\x2e\x64\xd3\xb3\x42\x36\xcc\x2a\x5f\xe9\xad\x5e\x20\x49\xc5" "\xc4\x09\xbf\x0b\x8c\xd7\x7d\xb9\xaa\x2c\x75\xc4\x75\x3b\x6a\x76\x3c\xba" "\xb3\x5c\xf9\x3b\x44\x6e\x6c\x9f\x61\xe4\xb3\xc3\x78\xdd\x3d\x9f\x58\x97" "\x2f\x5f\x6d\x69\x3f\xb2\xf7\x04\x00\x00\x00\xc7\xb3\x69\x3b\x2e\xfd\x4a" "\x65\x1c\xe7\xff\xd6\x72\x9c\x84\xf6\x90\x4d\x4f\xab\x98\xab\x6f\xae\xaa" "\x6f\x3b\xe2\x39\xfe\xde\xaa\xba\x93\x8e\xb8\xee\x87\x55\x75\xed\x93\xd4" "\xfd\x1d\x5e\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\xa4\xbb\x57" "\xbe\x70\x5a\x65\x3c\x3c\xd0\xdf\xd9\x33\xd4\x35\x98\x24\x21\x24\x0d\x6a" "\x8a\x13\x88\xf7\x52\x99\x42\xa1\xa3\x89\x7d\x14\xba\x1f\x78\xf6\xd1\x2b" "\x07\x66\xc4\xb8\xd4\x3b\xdf\xc4\x3a\x00\x00\x00\x40\xbd\xcb\xdf\xca\x7d" "\xb3\x32\x8e\x73\x78\x9c\xfd\x93\x90\x0b\xf9\x30\x3b\x9c\x1c\x66\x8f\xcc" "\xfd\xa1\xbd\xba\x3e\xe6\x9d\x50\xf8\xf5\xab\x2b\x76\xbf\x72\x55\x08\x4b" "\xa6\xbf\x38\x27\xdd\xb0\xdf\x77\xf7\x5c\xf1\x6e\x38\xf4\xdf\x6f\x7c\x30" "\x7a\x18\x09\x43\x68\xa9\x4e\x6a\x09\x61\x4a\xb9\x5f\xd2\xa0\xdf\xb5\xbf" "\x79\x6c\xd5\x73\x1f\x6f\x7f\x28\x84\x25\xd3\x52\xb3\x1a\xf7\x1b\x6f\x35" "\x7e\xa8\x91\x14\x8a\xa7\x6e\x5b\xf0\xe8\x95\xd3\xf7\xae\x68\xb8\x0c\x00" "\x00\x00\x1c\xd7\x72\x0f\x1f\xf8\x41\x65\x1c\xe7\xff\x38\x51\x27\xa1\x3d" "\x64\xd3\xeb\x1b\xce\xff\x31\xef\x53\xcd\xff\x9d\x7d\x33\xb7\x4d\x2d\x1f" "\xcb\x5f\x00\x6a\x2a\x5a\xda\xcb\xfd\x5a\x1a\xf4\xeb\x7f\xff\xa1\x8e\x83" "\x6b\x3e\x7f\xb0\x34\xff\xbf\x38\x27\x37\xf6\xff\x0a\x9c\x39\xbf\x3a\x7f" "\xbc\x55\x4b\xd5\x95\x9a\x6f\x0e\x49\xa1\x38\xf7\xa9\x33\x56\x1f\x3e\x70" "\xcb\x65\xa3\x17\x62\xff\x54\x83\xfe\x6b\x5a\xe7\x9d\xb2\xf3\x9d\x99\xf3" "\x62\xff\x5c\xf9\xfa\x75\xa1\x51\xff\xea\x63\x8d\xa4\x50\xec\xeb\x3a\x34" "\x7f\x51\xdb\x89\x17\x55\xf7\x0f\x21\x74\x4c\xd4\xff\xfb\x17\x3f\xf9\xe1" "\xaa\xfb\xdf\xbf\x6a\xb4\x7f\xe3\xf7\xbd\xf8\x77\xc3\xff\x3b\x35\x6c\xf8" "\x4e\xae\x37\x1e\x47\xaf\xd4\xf7\x5f\xf9\xe0\xf2\x9d\x5b\x33\x6f\x4e\xa9" "\xee\x9f\x34\xe8\xbf\xf0\xf9\xa7\xf7\x3f\x71\xfb\xaa\xbb\x6b\x9f\xff\xf4" "\xf4\x44\xfd\xeb\x8f\x35\x4a\x5d\xd3\xc5\xfe\x7d\x77\x2e\xbc\x63\x45\xf7" "\xf9\x15\xfd\x5b\x1a\xf4\xbf\xb5\xe3\xb5\xf7\xbe\xf1\xa3\x9f\x3e\x52\xea" "\xbf\x6f\x6e\xdb\x58\xff\x85\x9f\xf0\xfc\x93\xf6\xdf\x33\x7f\xc7\xbe\x5d" "\xdb\xef\x5b\x53\xfd\xfe\x0b\xf5\xfd\xef\x08\xd7\x9e\xb3\xf1\xe9\x2d\xeb" "\xae\xbe\xa7\xf6\xf9\xdb\x6a\x16\xae\x7c\xf3\x95\xc7\xfa\xf7\xff\xfa\xac" "\xe4\x92\xcd\x7d\xaf\x6e\xac\xbd\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x70\x7c\xeb\x7a\xe2\xa3\x43\x95\xf1\xf0\x40\x7f\x67\xcf\x50\xd7" "\x60\x4b\x12\x42\xd2\xa0\xa6\x38\x81\x78\x2f\x95\x29\x14\x3a\x9a\xd8\xc7" "\x2f\x52\x7b\x3e\x7a\x64\x7f\xfe\xc4\x18\x97\x7a\xe7\x9b\x58\x07\x00\x00" "\x00\xa8\x77\xd9\x8a\xd7\x6f\xa8\x8c\xe3\x1c\x1e\x67\xff\x24\xe4\x42\x3e" "\x64\x42\x26\xb4\x8d\xcc\xfd\xa7\x6e\x5b\xf0\xe8\x95\xd3\xf7\xae\x08\xed" "\xe5\xfb\xe5\x73\xba\x77\x43\xdf\xa6\xb3\xaf\xdf\xb0\x79\xfd\x75\x47\xfb" "\x11\x00\x00\x00\x80\x49\xec\xba\xe0\xc3\x15\x95\x71\x9c\xff\xd3\xe5\x38" "\x09\xed\x21\x9b\x5e\x10\x5a\xcb\xf3\xff\xca\x07\x97\xef\xdc\x9a\x79\x73" "\x4a\x9c\xff\x43\x08\x23\x7f\xee\x4f\x5f\xbf\xae\xb7\x7b\x49\x18\xfb\x4e" "\xd0\xd7\x75\x68\xfe\xa2\xb6\x13\x2f\x8a\x79\xa9\xf2\x39\x57\xca\x5b\x74" "\xed\x86\xde\xf2\x67\x82\xb8\xee\x33\x8f\xff\xd7\xd2\xf3\xaf\xb8\x7c\x2c" "\xbf\xa5\x32\xff\xdc\xf1\xbc\xb9\x4f\x9d\xb1\xfa\xf0\x81\x5b\x2e\x9b\x30" "\x6f\xd9\x78\xde\xeb\xb3\x92\x4b\x36\xf7\xbd\xba\xb1\x62\x9f\x85\xb1\xbc" "\xa5\xe3\x79\xfd\xfb\xee\x5c\x78\xc7\x8a\xee\xf3\xe3\x73\x24\xe5\x73\xae" "\xfc\x3c\x31\x6f\xcf\xfc\x1d\xfb\x76\x6d\xbf\x6f\x4d\xcc\x6b\x29\x9f\xdb" "\xca\xeb\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\x21\x9c\xf2\xc1\x9f" "\xbf\x54\x19\x0f\x0f\xf4\x77\xf6\x0c\x75\x0d\x86\x54\x08\x49\x83\x9a\xe2" "\x04\xe2\xbd\x54\xa6\x50\xe8\x68\x62\x1f\x1f\x5d\xf8\xe2\xf0\xe1\xf6\xff" "\x7f\x38\xc6\xa5\xde\xd9\x74\x13\x0b\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xf0\x57\x76\xe0\x40\x00\x00\x00\x00\x00\xc8" "\xff\xb5\x11\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xb0\x53\x3f\xa1\x71" "\x15\x71\x1c\xc0\x67\x76\xb7\x66\xdb\xad\x35\x29\x85\x26\x5a\x43\x8b\xbd" "\x58\x10\x0a\xc1\x62\x0f\x62\x2e\xfe\x41\xea\x1f\x2a\x8a\x16\x8a\x51\x8c" "\x17\x15\x05\xd1\x8a\x3d\xd8\x36\x58\x44\x3d\x14\x14\x2a\xed\x45\x54\x3c" "\x2b\x7b\x28\x6a\x0f\xb1\xd0\x2a\x0a\x62\x05\x0f\xe2\xc9\x83\x9e\x54\x72" "\x48\x8a\x54\x51\xd9\xcd\xcc\x66\xf7\xb5\x8f\xc4\x07\x11\x91\xcf\x07\x96" "\xd9\xdf\xec\xce\xf7\xfd\xde\xec\xec\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\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\x4f\x7b\xe8\x87\xdb\x1b\xfd\xf5\x50\x63" "\xb4\x3b\x9e\x7b\xf9\xd9\x0b\x77\x5f\x7d\xeb\x17\x47\xa6\x17\x5e\xba\xe3" "\xe3\xa7\x0e\x6f\xfe\x64\xd3\x85\xe1\x99\x3d\x77\xbd\xba\xfb\xb6\x6f\xa6" "\x3e\x1f\x99\x1c\xdf\x3e\xbd\xeb\xc3\xf6\x3d\x47\x67\xce\xdc\xfc\xc7\x99" "\xe3\x27\xf6\x2c\x7b\xa1\x17\x16\x87\x1d\xa9\x6c\x86\x10\x7f\x89\x21\x8c" "\xff\xd8\x3e\x7e\xf4\xec\x97\x9b\x3b\x73\xb1\x73\xfd\x38\x7c\x28\x8c\x8c" "\xc4\x8d\x9f\x8e\xc4\x42\xc2\xce\x8b\x21\x84\xc7\x7a\x7d\x0e\x7e\xd8\x5e" "\x98\x78\xbc\x33\x1e\x7e\x6d\x68\x60\xfe\xaa\x42\x48\xf1\xbe\x42\xab\x9e" "\xfb\x59\x34\x3c\xd8\x2f\xff\x2f\xcd\x74\xce\x0e\x3e\xfc\xe8\x3b\xb3\x4f" "\x4c\x9e\x6d\x6f\x7d\x66\xe2\xe7\xf9\x1b\x9f\x3e\xb4\xf4\x95\xd8\xec\x3b" "\x4f\x21\x6c\x98\xea\x5f\xbf\x26\x84\xb0\x36\xbd\x3a\xf2\x69\x1b\xcd\x8b" "\xd3\x78\x6f\x08\x61\x5d\xdf\xba\x9b\x96\xe9\xeb\xba\x15\xf6\x7f\x43\x49" "\xbd\x25\x8d\x57\xa4\xb1\xb5\x4c\x4e\xfe\x7c\x5b\xa1\x6e\xac\xb0\x8f\x46" "\x61\x1c\x5a\xe1\xba\xaa\x6a\xab\x9c\x5f\x54\xdc\xbf\xe2\xc3\x68\xb5\xe4" "\xfb\xdc\x90\xc6\x53\x69\xdc\xf1\x0f\x73\xea\xf9\x15\x43\x2d\x86\x46\xaf" "\xfd\x27\xe3\xd2\x19\x09\x7d\xbf\x5b\x0c\xb1\x7b\xb6\x9b\xbd\xba\xd6\xad" "\x43\xaf\x0e\xc5\x3a\x16\xea\x5a\xa1\xae\xaf\x29\xdc\x57\xf7\xba\x69\x63" "\xeb\x31\x0e\xce\xe7\xef\x15\xe6\xf3\xe3\xb8\x91\xe6\xb7\xf5\x3f\xab\x2f" "\x63\x6f\xc9\xfc\x58\x1a\x9b\xe9\x8f\xfa\x5b\xae\x43\xf1\xcd\xa2\xd6\x25" "\x6f\x96\xee\x23\xf4\xf5\x35\xf7\x6f\x1d\x8c\x12\xb5\x92\xff\x5e\x9e\xef" "\xb5\x97\x7e\x8c\x56\x9a\x6b\xc5\x8d\x97\xac\xf9\xeb\x32\xf2\x67\x73\x9f" "\x3d\xb2\xef\xd7\xef\x5e\x3c\x35\x5c\xd2\x47\xfc\x20\xa6\xfc\x58\x29\x7f" "\x72\xfa\xe4\xec\xfb\x0f\x9e\x1e\x1b\x2d\xcb\x9f\xaa\xa5\xfc\x5a\xa5\xfc" "\x73\xf5\xaf\x2e\xbe\x37\x3f\xba\xbe\x34\xff\x58\xce\xaf\x57\xca\xbf\xff" "\xcf\x9f\x5e\x39\x72\xdf\x81\x4d\xa5\xfb\x33\x97\xf7\xa7\x51\x29\x7f\xfb" "\xeb\xeb\x0f\x2e\x1c\xd8\x3b\xb4\xb5\x2c\xff\xed\x9c\xdf\xac\x94\xbf\x6b" "\xff\xf8\xee\x6b\xe7\x9f\x7b\xbe\xb4\xff\x9d\x79\x7f\xd6\x56\xca\xff\xf6" "\x8d\xeb\x7f\xdf\x7f\xec\xa3\xd3\xa5\xf9\x21\xe7\xaf\xab\x94\xff\xfd\xc9" "\x77\xb7\xd4\xc7\xde\x3c\x5f\x9a\x3f\x9b\xf7\xa7\x55\x29\xff\x81\x89\xb7" "\x6e\xb9\xf3\x9a\x99\x13\xa5\xfb\xff\x75\xce\xbf\xb2\x52\xfe\xbe\xf3\x7f" "\xb3\x5f\xc7\x26\x08\xc4\x00\x14\x40\x09\x58\x2a\x04\x5c\xc0\xd6\x29\x5c" "\xc0\xc2\x11\x1c\xc1\x29\xc4\x11\x2c\x45\x57\x71\x03\x37\x70\x0c\x6d\xae" "\xb8\x04\xc2\x41\x9a\xdc\x71\xc5\xf1\x1e\xa4\x48\x93\x40\x08\xc9\xff\xd7" "\xf3\xe5\xf9\xde\x57\xef\xe7\x29\x9f\x4f\x6c\x5a\xff\x77\xf8\x7c\xff\xf1" "\xf8\xaa\xbd\x9d\xe1\x31\xf7\x0f\x0b\xb0\x2c\xdb\x94\xb1\x6e\x69\xde\xda" "\x33\xc7\x2a\xfa\xc2\x7d\xb7\xea\x33\xdf\x3a\x8d\xcd\x94\x1b\x0d\x84\xa2" "\xbb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\xd6\x05\x00\x00\xff\xff\x2f\xd2\x5e\x23", 24045); syz_mount_image(/*fs=*/0x20005d80, /*dir=*/0x20000240, /*flags=MS_NODEV|MS_MANDLOCK*/ 0x44, /*opts=*/0x200003c0, /*chdir=*/-1, /*size=*/0x5ded, /*img=*/0x20005dc0); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }