// https://syzkaller.appspot.com/bug?id=345d17288acb20f42c7a83874b03d00dd662f8eb // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_bpf #define __NR_bpf 357 #endif #ifndef __NR_chroot #define __NR_chroot 61 #endif #ifndef __NR_clone #define __NR_clone 120 #endif #ifndef __NR_exit #define __NR_exit 1 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 356 #endif #ifndef __NR_mkdirat #define __NR_mkdirat 296 #endif #ifndef __NR_mmap #define __NR_mmap 192 #endif #ifndef __NR_mount #define __NR_mount 21 #endif #ifndef __NR_openat #define __NR_openat 295 #endif #ifndef __NR_pivot_root #define __NR_pivot_root 217 #endif #ifndef __NR_read #define __NR_read 3 #endif #ifndef __NR_statfs #define __NR_statfs 99 #endif #ifndef __NR_umount2 #define __NR_umount2 52 #endif #ifndef __NR_write #define __NR_write 4 #endif #undef __NR_mmap #define __NR_mmap __NR_mmap2 static unsigned long long procid; static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } static void use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void thread_start(void* (*fn)(void*), void* arg) { pthread_t th; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, 128 << 10); int i = 0; for (; i < 100; i++) { if (pthread_create(&th, &attr, fn, arg) == 0) { pthread_attr_destroy(&attr); return; } if (errno == EAGAIN) { usleep(50); continue; } break; } exit(1); } typedef struct { int state; } event_t; static void event_init(event_t* ev) { ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { if (ev->state) exit(1); __atomic_store_n(&ev->state, 1, __ATOMIC_RELEASE); syscall(SYS_futex, &ev->state, FUTEX_WAKE | FUTEX_PRIVATE_FLAG, 1000000); } static void event_wait(event_t* ev) { while (!__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, 0); } static int event_isset(event_t* ev) { return __atomic_load_n(&ev->state, __ATOMIC_ACQUIRE); } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; for (;;) { uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; syscall(SYS_futex, &ev->state, FUTEX_WAIT | FUTEX_PRIVATE_FLAG, 0, &ts); if (__atomic_load_n(&ev->state, __ATOMIC_ACQUIRE)) return 1; now = current_time_ms(); if (now - start > timeout) return 0; } } static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } struct fs_image_segment { void* data; uintptr_t size; uintptr_t offset; }; #define IMAGE_MAX_SEGMENTS 4096 #define IMAGE_MAX_SIZE (129 << 20) static unsigned long fs_image_segment_check(unsigned long size, unsigned long nsegs, struct fs_image_segment* segs) { if (nsegs > IMAGE_MAX_SEGMENTS) nsegs = IMAGE_MAX_SEGMENTS; for (size_t i = 0; i < nsegs; i++) { if (segs[i].size > IMAGE_MAX_SIZE) segs[i].size = IMAGE_MAX_SIZE; segs[i].offset %= IMAGE_MAX_SIZE; if (segs[i].offset > IMAGE_MAX_SIZE - segs[i].size) segs[i].offset = IMAGE_MAX_SIZE - segs[i].size; if (size < segs[i].offset + segs[i].offset) size = segs[i].offset + segs[i].offset; } if (size > IMAGE_MAX_SIZE) size = IMAGE_MAX_SIZE; return size; } static int setup_loop_device(long unsigned size, long unsigned nsegs, struct fs_image_segment* segs, const char* loopname, int* memfd_p, int* loopfd_p) { int err = 0, loopfd = -1; size = fs_image_segment_check(size, nsegs, segs); int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (ftruncate(memfd, size)) { err = errno; goto error_close_memfd; } for (size_t i = 0; i < nsegs; i++) { if (pwrite(memfd, segs[i].data, segs[i].size, segs[i].offset) < 0) { } } 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; } } *memfd_p = memfd; *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile unsigned long size, volatile unsigned long nsegs, volatile long segments, volatile long flags, volatile long optsarg) { struct fs_image_segment* segs = (struct fs_image_segment*)segments; int res = -1, err = 0, loopfd = -1, memfd = -1, need_loop_device = !!segs; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(size, nsegs, segs, loopname, &memfd, &loopfd) == -1) return -1; 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) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) 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; } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); close(memfd); } errno = err; return res; } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; retry: while (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); while (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, MNT_DETACH | UMOUNT_NOFOLLOW)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); if (symlink("/dev/binderfs", "./binderfs")) { } } #define FUSE_MIN_READ_BUFFER 8192 enum fuse_opcode { FUSE_LOOKUP = 1, FUSE_FORGET = 2, FUSE_GETATTR = 3, FUSE_SETATTR = 4, FUSE_READLINK = 5, FUSE_SYMLINK = 6, FUSE_MKNOD = 8, FUSE_MKDIR = 9, FUSE_UNLINK = 10, FUSE_RMDIR = 11, FUSE_RENAME = 12, FUSE_LINK = 13, FUSE_OPEN = 14, FUSE_READ = 15, FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, FUSE_FSYNC = 20, FUSE_SETXATTR = 21, FUSE_GETXATTR = 22, FUSE_LISTXATTR = 23, FUSE_REMOVEXATTR = 24, FUSE_FLUSH = 25, FUSE_INIT = 26, FUSE_OPENDIR = 27, FUSE_READDIR = 28, FUSE_RELEASEDIR = 29, FUSE_FSYNCDIR = 30, FUSE_GETLK = 31, FUSE_SETLK = 32, FUSE_SETLKW = 33, FUSE_ACCESS = 34, FUSE_CREATE = 35, FUSE_INTERRUPT = 36, FUSE_BMAP = 37, FUSE_DESTROY = 38, FUSE_IOCTL = 39, FUSE_POLL = 40, FUSE_NOTIFY_REPLY = 41, FUSE_BATCH_FORGET = 42, FUSE_FALLOCATE = 43, FUSE_READDIRPLUS = 44, FUSE_RENAME2 = 45, FUSE_LSEEK = 46, FUSE_COPY_FILE_RANGE = 47, FUSE_SETUPMAPPING = 48, FUSE_REMOVEMAPPING = 49, CUSE_INIT = 4096, CUSE_INIT_BSWAP_RESERVED = 1048576, FUSE_INIT_BSWAP_RESERVED = 436207616, }; struct fuse_in_header { uint32_t len; uint32_t opcode; uint64_t unique; uint64_t nodeid; uint32_t uid; uint32_t gid; uint32_t pid; uint32_t padding; }; struct fuse_out_header { uint32_t len; uint32_t error; uint64_t unique; }; struct syz_fuse_req_out { struct fuse_out_header* init; struct fuse_out_header* lseek; struct fuse_out_header* bmap; struct fuse_out_header* poll; struct fuse_out_header* getxattr; struct fuse_out_header* lk; struct fuse_out_header* statfs; struct fuse_out_header* write; struct fuse_out_header* read; struct fuse_out_header* open; struct fuse_out_header* attr; struct fuse_out_header* entry; struct fuse_out_header* dirent; struct fuse_out_header* direntplus; struct fuse_out_header* create_open; struct fuse_out_header* ioctl; }; static int fuse_send_response(int fd, const struct fuse_in_header* in_hdr, struct fuse_out_header* out_hdr) { if (!out_hdr) { return -1; } out_hdr->unique = in_hdr->unique; if (write(fd, out_hdr, out_hdr->len) == -1) { return -1; } return 0; } static volatile long syz_fuse_handle_req(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { struct syz_fuse_req_out* req_out = (struct syz_fuse_req_out*)a3; struct fuse_out_header* out_hdr = NULL; char* buf = (char*)a1; int buf_len = (int)a2; int fd = (int)a0; if (!req_out) { return -1; } if (buf_len < FUSE_MIN_READ_BUFFER) { return -1; } int ret = read(fd, buf, buf_len); if (ret == -1) { return -1; } if ((size_t)ret < sizeof(struct fuse_in_header)) { return -1; } const struct fuse_in_header* in_hdr = (const struct fuse_in_header*)buf; if (in_hdr->len > (uint32_t)ret) { return -1; } switch (in_hdr->opcode) { case FUSE_GETATTR: case FUSE_SETATTR: out_hdr = req_out->attr; break; case FUSE_LOOKUP: case FUSE_SYMLINK: case FUSE_LINK: case FUSE_MKNOD: case FUSE_MKDIR: out_hdr = req_out->entry; break; case FUSE_OPEN: case FUSE_OPENDIR: out_hdr = req_out->open; break; case FUSE_STATFS: out_hdr = req_out->statfs; break; case FUSE_RMDIR: case FUSE_RENAME: case FUSE_RENAME2: case FUSE_FALLOCATE: case FUSE_SETXATTR: case FUSE_REMOVEXATTR: case FUSE_FSYNCDIR: case FUSE_FSYNC: case FUSE_SETLKW: case FUSE_SETLK: case FUSE_ACCESS: case FUSE_FLUSH: case FUSE_RELEASE: case FUSE_RELEASEDIR: case FUSE_UNLINK: case FUSE_DESTROY: out_hdr = req_out->init; if (!out_hdr) { return -1; } out_hdr->len = sizeof(struct fuse_out_header); break; case FUSE_READ: out_hdr = req_out->read; break; case FUSE_READDIR: out_hdr = req_out->dirent; break; case FUSE_READDIRPLUS: out_hdr = req_out->direntplus; break; case FUSE_INIT: out_hdr = req_out->init; break; case FUSE_LSEEK: out_hdr = req_out->lseek; break; case FUSE_GETLK: out_hdr = req_out->lk; break; case FUSE_BMAP: out_hdr = req_out->bmap; break; case FUSE_POLL: out_hdr = req_out->poll; break; case FUSE_GETXATTR: case FUSE_LISTXATTR: out_hdr = req_out->getxattr; break; case FUSE_WRITE: case FUSE_COPY_FILE_RANGE: out_hdr = req_out->write; break; case FUSE_FORGET: case FUSE_BATCH_FORGET: return 0; case FUSE_CREATE: out_hdr = req_out->create_open; break; case FUSE_IOCTL: out_hdr = req_out->ioctl; break; default: return -1; } return fuse_send_response(fd, in_hdr, out_hdr); } #define USLEEP_FORKED_CHILD (3 * 50 * 1000) static long handle_clone_ret(long ret) { if (ret != 0) { return ret; } usleep(USLEEP_FORKED_CHILD); syscall(__NR_exit, 0); while (1) { } } static long syz_clone(volatile long flags, volatile long stack, volatile long stack_len, volatile long ptid, volatile long ctid, volatile long tls) { long sp = (stack + stack_len) & ~15; long ret = (long)syscall(__NR_clone, flags & ~CLONE_VM, sp, ptid, ctid, tls); return handle_clone_ret(ret); } struct thread_t { int created, call; event_t ready, done; }; static struct thread_t threads[16]; static void execute_call(int call); static int running; static void* thr(void* arg) { struct thread_t* th = (struct thread_t*)arg; for (;;) { event_wait(&th->ready); event_reset(&th->ready); execute_call(th->call); __atomic_fetch_sub(&running, 1, __ATOMIC_RELAXED); event_set(&th->done); } return 0; } static void execute_one(void) { int i, call, thread; for (call = 0; call < 20; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); event_timedwait(&th->done, 50 + (call == 10 ? 50 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[3] = {0xffffffffffffffff, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20002040, "./file0\000", 8); syscall(__NR_mkdirat, 0xffffff9c, 0x20002040, 0); break; case 1: memcpy((void*)0x20002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffff9c, 0x20002080, 0x42, 0); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200020c0, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd=", 3); sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x20002155, ",rootmode=00000000000000000040000,user_id=", 42); sprintf((char*)0x2000217f, "%020llu", (long long)0); memcpy((void*)0x20002193, ",group_id=", 10); sprintf((char*)0x2000219d, "%020llu", (long long)0); memset((void*)0x200021b1, 0, 2); syscall(__NR_mount, 0, 0x200020c0, 0x20002100, 0, 0x20002140); break; case 3: *(uint32_t*)0x20000bc0 = 0x50; *(uint32_t*)0x20000bc4 = 0; *(uint64_t*)0x20000bc8 = 0; *(uint32_t*)0x20000bd0 = 7; *(uint32_t*)0x20000bd4 = 0x24; *(uint32_t*)0x20000bd8 = 8; *(uint32_t*)0x20000bdc = 0x1100; *(uint16_t*)0x20000be0 = 0x8000; *(uint16_t*)0x20000be2 = 2; *(uint32_t*)0x20000be4 = 0xfffffff8; *(uint32_t*)0x20000be8 = 0x1000; *(uint16_t*)0x20000bec = 0; *(uint16_t*)0x20000bee = 0; memset((void*)0x20000bf0, 0, 32); syscall(__NR_write, -1, 0x20000bc0, 0x50); break; case 4: memcpy( (void*)0x20004280, "\x58\x1b\x18\x87\x20\x4e\xde\xe1\xed\x20\x44\xce\x40\x2f\x51\x3e\xa8" "\x92\xcc\xfa\x26\x1c\x3d\xe9\xb5\x8d\x51\x7e\x31\xb7\x21\x58\x6e\x48" "\x39\x32\x21\x02\xff\xde\x9d\xb9\x27\x8c\x16\xeb\x5e\xf4\xcd\xdf\xea" "\xf1\xb9\xdb\xe8\xc0\x61\x45\xe0\xb5\xb5\x07\xeb\x5e\x98\x43\x87\x15" "\x04\x87\x00\xe9\xd8\xe9\x33\x3a\x24\xca\x8c\x42\xe0\x94\x26\x87\x0c" "\x18\xdb\x57\x4d\xa1\xa3\x9e\xba\x6b\x67\x26\x29\x45\x7b\xb2\xdd\x8e" "\x56\x3f\x62\x05\x07\xd3\x01\x0e\xc4\xcb\x97\xc9\x68\x46\x96\xa2\x89" "\x7d\x59\x05\xb2\xc8\x1a\xf1\xea\x35\xc8\x0b\xf5\x7e\xf9\x4d\x49\xcc" "\x43\x9e\xee\xcc\x16\xa8\x8a\x4c\x48\xef\x19\x56\x8c\xf8\x4c\x55\x7a" "\x96\xab\xa7\xff\x9d\xf3\xa6\x19\xae\x02\x40\x47\xaf\xb1\x97\x8d\x9f" "\x35\xd6\x3b\xb2\xe0\xed\xc2\x85\xcd\x34\x24\x24\xea\xd7\x4a\x37\x90" "\xc3\x25\xf7\x83\x8c\x31\x98\x9f\x2f\xc7\xec\x0d\xf3\x3d\xec\xa1\x01" "\x6f\x20\x63\xab\x61\x1a\xbc\x6c\xba\x67\x27\x28\x5c\x55\x84\x72\xcc" "\x76\xe7\xbc\x13\x55\x2e\xeb\x2f\x05\x47\x31\xba\x41\x54\x10\x80\x96" "\x18\x50\xb7\xdb\x8b\x72\xe0\xe1\x28\x99\x9c\x0e\x4e\x7a\x66\x38\x8d" "\x95\x29\xa6\x76\xb1\x0e\x2e\x69\x61\x5c\xed\xa4\x31\xf1\xc3\xb6\x39" "\x11\x38\xac\x75\x7d\x2a\x01\x4a\xfe\x70\x6f\xd5\x69\x5c\x8b\xdb\x13" "\xfe\x17\x48\x7d\xb0\xfd\xa0\x5c\x6c\xfa\xcf\xe5\x73\x1c\xb3\x75\x14" "\x89\x4a\x72\xbc\xe8\xcc\x39\xb3\x51\xd3\xbd\x7d\xeb\xe1\xa5\x20\x51" "\x4f\xa6\x10\xd4\xc1\xfa\xdd\x9f\x5a\x7d\xc6\xd9\x5a\x20\xaa\x59\x8e" "\xc9\x09\x1f\xfe\x1f\x62\xcb\x6c\x95\xad\x66\x0d\x84\xde\x84\x61\xc3" "\x50\xb4\xfd\x59\xe9\x09\x31\x36\xdb\x7b\x18\x1c\x7f\xcb\xe5\xfc\xc6" "\x99\xfa\x44\xf0\x02\x12\xf2\x1b\xf5\xc4\x35\xf7\x40\xae\xe7\x8c\x12" "\x43\xfc\x77\x9e\x7d\xe0\x67\x43\xca\x5d\x28\x2c\xef\x52\x2f\x15\x32" "\xe6\xfe\x83\x25\x53\x7a\x87\xf2\x87\xa2\xeb\x6f\xd8\xf7\x40\x30\x1f" "\x4c\x1b\xa2\x66\xf3\xe4\xbf\x68\x44\x7f\xea\x54\x97\xd3\x59\x02\x52" "\x71\x76\x61\x5a\x42\xf2\x62\x6b\x40\xc5\xfb\x58\x30\x30\xe7\xd4\xdc" "\xfa\xb7\x67\x2b\x88\xe7\x9d\xce\xb4\xc4\xd5\x3c\x0c\xf0\x5c\xc1\x34" "\x4a\x0b\xc2\xf1\x4a\x0c\x65\x33\x29\x2a\xd8\x46\xc9\x38\x4e\x75\x94" "\x30\x7c\xf9\x17\xd5\x05\x48\x15\xc2\xf4\x69\x43\xaa\xad\xc8\x28\xf9" "\x6f\xee\x55\x22\x44\x8d\xab\x97\x5c\x34\x70\x58\xef\x5e\x28\x12\xb6" "\x4f\x3f\xae\xb9\x61\x38\xc2\xd4\x1d\xb4\xd6\x66\xbd\x19\xc0\xec\xd5" "\xa9\xbe\xfc\xfc\x3c\xcf\x78\x5a\xb9\x1f\x22\xb0\x76\x1a\xf7\x03\x6d" "\xf0\xd9\xb1\x2c\xfc\xc8\x9f\x53\x19\x0d\xef\x33\xef\x42\x25\x82\xb7" "\x16\xd6\x0c\xc3\x05\xb6\xa8\x5e\xcd\x13\x56\xcd\xac\x24\x2a\x9f\xcb" "\x02\x05\xd6\x29\xdd\x63\x52\xaf\xca\x2b\xc6\x9d\x31\x75\x38\x31\x79" "\xdc\xa8\xea\x0c\x1e\x64\x31\x0b\x9c\xe6\xeb\x0f\x9f\x51\xd9\xaa\x7e" "\x00\x39\x69\x8a\xaa\x68\x3a\xe9\x58\x33\xe9\x61\x56\xb2\xed\xe7\xfc" "\xa5\x36\xb4\x6b\x7d\x18\xfe\x51\x10\xc2\xa3\x20\xe8\xf9\x8a\xcf\x4c" "\x74\x88\xdd\x2c\x54\x84\xcc\xc6\xdb\x0d\xe5\x3d\x31\x77\x52\x19\xee" "\x1c\x19\x39\xa7\xef\xe0\xbd\x67\x87\xae\x2a\xf7\x87\xb4\x4e\x8e\xd2" "\xc3\xeb\xd5\x0e\xce\x1a\x0d\x05\xe3\xf7\x5c\x79\xaa\xd7\x36\x5e\x09" "\x25\x73\x85\x25\x26\xd9\xbc\xcb\xb2\xd7\x67\x85\xd6\x8a\x36\x99\x9d" "\xf6\xeb\xa2\x9c\xf4\x94\xdc\x1b\xc7\x02\x0e\xa1\x7f\xaa\xde\x29\xd8" "\xdc\xd4\x57\x0b\xe1\x64\x63\xf1\x2c\x75\x80\x53\xdc\x74\xe0\x4e\x12" "\x87\xd7\x96\xa8\x19\x16\x4d\xf8\xc7\x5a\x81\x09\x78\x80\xe9\x7b\x08" "\xe6\x31\x74\x22\x56\x68\xb1\x96\x6f\xa6\x6c\x00\x1c\x14\x56\xab\x9f" "\xe7\xe8\xde\xdd\x81\x4d\x46\xb6\x11\x0a\x56\xd7\xd5\xdd\x7d\x6c\x4e" "\xef\x65\x2a\xb6\x64\x64\xf8\xd5\xaf\x3e\x92\xee\x27\x5d\xd6\x0a\x58" "\x9b\xdc\x08\xb6\x74\x2e\x82\xe1\xa7\x29\x8d\x85\x4b\x40\xf9\x01\x0e" "\x2a\xf6\xb8\x35\x5c\xa2\xc5\xf7\xd9\x33\x4c\xe3\x63\xd6\xcb\xa1\x50" "\xd9\x30\x6f\x37\x85\xcb\x07\x83\xa1\x8d\xe1\xff\xae\x6a\x22\xad\xaf" "\xa4\xdd\xf2\xe8\x7c\x8e\x39\x9a\x68\x27\xc2\xff\x0e\xb6\x99\x56\x5b" "\x7b\xa1\x96\xd5\x84\x79\x4d\xad\x05\x0b\xa8\xfe\xea\xa0\x24\xaa\xcf" "\xc8\xde\xea\x06\x3e\x3a\x96\xe9\x33\xb6\xe3\xf5\x6f\x8e\x0a\x5e\x90" "\x46\x51\x27\x37\xaa\x1b\x5d\x26\xe7\x85\x66\x73\x07\x3a\x96\x51\x38" "\x51\xe7\x86\xce\x54\x56\xed\x42\x46\x0b\x0f\xed\x48\x3c\xb1\xa7\x77" "\xdb\xf4\x21\xb0\x89\xe6\x36\x8c\xd1\xc8\xf3\x23\x12\xa5\x1b\x26\x61" "\x1b\x18\x8f\x7b\xea\x5c\xd1\xfc\x7a\x9a\x63\x7a\xc8\xd2\x01\xd4\x16" "\x7e\x5e\x2f\x6c\xf9\x1c\xc1\xcc\x6e\xf7\x18\x41\x87\x7e\x2d\x03\x7d" "\x53\x64\xc7\xdf\xad\xcc\xd3\x3b\xe8\x6c\xa6\xa0\x9f\xf7\x17\x46\x41" "\xf6\x47\x3f\xdb\x27\x04\x6a\xe5\xcc\x21\x5c\xd4\x7b\xef\xe2\x43\xbd" "\xfb\x49\x9d\xb5\xe8\x52\xc1\xe1\xc6\x56\x7b\x48\xfb\xd4\x7c\x81\x34" "\x86\x85\xb7\x93\xa2\x56\x89\x53\xa6\x6d\xcb\x8a\x22\xe1\x9f\x6e\xb6" "\x5b\x54\x99\x54\xe1\x3d\xaa\xc1\x0e\xfe\xb3\x26\x1f\xa3\x57\xed\xe0" "\x5e\xe4\xf2\xcb\xaa\xde\x71\x2c\x8e\x6f\x51\x86\xf5\x3a\x95\x1c\x45" "\x9b\xd6\x8e\x14\x69\xcc\xfb\xb4\x55\x01\x46\x02\x33\xa2\x84\x84\x02" "\x89\x9c\x04\x8d\xeb\x5c\x31\xc4\x9d\x61\x7a\xb6\xa9\x6c\x66\x1f\xea" "\x7e\x1d\x38\xac\x08\x9f\x3f\xb0\xb5\x5f\x2a\x30\xf0\xe8\x67\xc6\x53" "\x24\x1a\xf4\xaf\xe3\x73\xad\x3d\xf0\x2b\x8e\x60\x15\xc1\xad\xe8\xb0" "\x86\x71\x3c\xb8\x19\x95\x08\x43\x0e\x5e\x55\xae\xf7\x75\x64\x33\x3c" "\xf4\x99\x01\xf1\x63\x71\xb8\x8f\x9c\x20\xb7\xe0\x4f\xaf\x24\xa2\x70" "\x9c\x82\xf3\x23\xb5\x40\x66\x8d\x93\x1f\xb6\x8d\xee\x82\xa6\x3b\x52" "\xdf\x16\xde\x7a\xe4\x73\x47\x8c\x3f\xbe\xb0\xf0\xc8\x49\x5a\x87\xa4" "\x7a\x19\x6a\xa0\x3d\x8d\x7c\xb9\xf6\x04\x69\xaf\xee\x50\xb0\x2e\x29" "\x9b\x4a\x24\x0b\x7a\xde\x5a\xf2\x43\xc1\x11\x06\x5d\xa1\xb7\xd5\xf3" "\x5e\x10\xcc\x4e\x8d\xd8\xc4\x5b\xef\x37\xfa\x78\x63\x8a\xcd\x25\x14" "\x5c\x03\x4c\x23\xd2\x84\x7d\x15\xbc\x02\x7f\x66\xfa\xee\x74\x08\x69" "\x97\xb7\x14\x4f\x8c\x4f\xd7\x97\x6b\xfc\xf0\x19\x3e\xe7\x76\x18\x76" "\xc9\x62\xa1\x7f\x95\xb0\xf7\x09\xfd\x84\x97\xa4\x67\xf6\x39\xaa\x50" "\x1b\xbe\x46\xc5\xca\x62\x90\x87\x36\xee\x4c\xc5\xae\xf7\x3a\xff\x07" "\xf6\xac\xdc\xba\x25\x2c\xe7\xea\xad\x77\xeb\x5a\x6d\x26\xaf\xb7\x72" "\xae\x4c\x6c\xfe\xbb\xd6\xcd\x17\xc9\xab\xad\xe5\xea\x1c\x80\x62\x05" "\x50\xcf\x52\x15\x97\x41\x33\x07\xa2\x1b\xcd\xc8\xa6\x0f\x97\x1d\x84" "\x4e\x77\xf2\xe7\xea\x9b\x8e\x66\x0e\x8b\x69\x83\xcb\xcc\xf1\x1e\x3a" "\x81\xa7\xfb\x9b\xd9\x70\xf9\xf9\x7d\xea\x2d\x9c\x8a\x0c\x7a\xe2\x44" "\x52\x4b\x68\x16\xeb\x66\x79\x6b\x19\xd9\xff\xa5\x88\x27\xe4\x9b\xb9" "\x07\xfc\x1d\xa2\x7f\x45\x71\x67\xfa\xbe\xcd\x66\x85\x2d\xa2\x0d\x1f" "\xfe\xd6\x1d\x5b\x4a\x78\x40\x75\x44\x2c\x76\x12\x09\x90\x18\x7c\xc0" "\xcc\x2d\xc4\xe4\x85\x8d\x71\x32\x2d\x64\x69\x7f\xb8\xa7\x34\x60\xc5" "\xdf\x10\x03\x9d\x56\x21\x83\xec\x47\x01\x63\xfa\xf5\x40\x78\xe7\xd8" "\x44\xf8\x70\x0c\x90\xe0\x51\x61\x2c\xd9\x12\x49\x58\x44\x27\x86\x2a" "\x4a\x4c\x52\x13\x5a\x9d\xc6\x0c\x97\xa0\xde\x72\x54\x58\xac\x7e\xae" "\xfb\x92\x90\x1d\xeb\xc5\xa8\x90\xba\xd8\x29\xe1\x82\x13\x7e\xef\xf2" "\xc6\x68\xb4\x8e\xe9\xf0\xca\x9f\x6a\x6d\xd1\x07\x97\x9d\x16\xe2\x12" "\x92\x8a\x2e\x0f\x77\xad\xf1\x7f\x87\x2b\x88\x14\xf7\xcc\xbd\x18\x58" "\x1c\xee\xf9\x2e\x32\x70\x02\x2f\x7e\x4d\x34\x8e\xbc\xf5\x36\x15\x27" "\x0b\x60\x92\xa8\xdb\x82\x01\x62\xd9\x8f\xbb\xa9\x56\xb6\xc3\x65\x9f" "\xc4\x6f\x2e\x32\x55\x37\x1e\xc8\xec\x45\x2d\xe2\x6b\x70\xd3\x13\x04" "\x5b\xda\x22\xf8\x83\x62\xcc\x55\xe8\x41\x89\x84\x24\xfa\xa8\xec\xff" "\xc1\xf9\x39\x01\xe5\x9d\xc1\xae\x0a\x65\x79\x49\xe2\xaf\xbe\xbc\xc8" "\x19\xf3\xd4\x8a\x0b\x2b\xf7\xee\x34\x12\x06\x72\x38\x60\x9b\x8e\x4c" "\x11\x4e\x00\xbe\x18\x32\x68\xac\x0d\x9e\x5e\x02\x2e\x24\x2c\x71\x87" "\x15\x38\xc1\xbb\x04\xfa\xfc\x1b\xd4\x61\xde\xb8\xe5\xa2\x65\x4e\x16" "\xbe\x3d\x86\xd2\xba\x75\xa8\x30\x5d\xac\xf2\xca\x36\x23\x85\xc8\x5f" "\x33\x79\x6a\xb4\x0f\x13\xed\x87\xf4\xda\x4c\x19\x05\x2a\xe4\xec\x7a" "\x5b\xe7\x53\x11\xfb\xab\xd0\x7b\x62\xac\x35\x9f\xef\x8f\x41\x6a\x4b" "\x4a\xfd\x88\x0d\x2c\x48\xc1\xa1\x11\x51\x7c\x82\xe6\xda\x38\x4b\x3c" "\x6a\xb1\xd9\xe5\x33\x11\x2b\xb4\x8e\x3d\xdc\x31\x51\x6a\x36\x26\x62" "\x21\x42\x1f\xcf\xdc\x9c\xb5\x70\xd9\x14\x5f\xcd\x5b\x9c\x7d\x1e\x2d" "\x80\x43\x21\xab\x93\x53\x9f\xb9\xf0\x1a\x9b\xfb\xa2\xe2\xc1\x21\x5d" "\xf0\xed\x7c\x72\xd0\x88\xb4\x4f\x20\x3f\x01\x7c\x72\x08\x98\x0c\xa6" "\x30\xe1\x4a\xe9\x66\x2d\xe9\x66\xba\x4b\x72\x49\xea\xc0\x42\x59\xe7" "\xac\x89\x76\x4f\xaa\x5a\xe8\xfb\x51\x4e\x97\x25\x40\x0e\xcb\x13\xf1" "\xef\x9c\x06\x9a\x2f\x45\x50\x5d\xaf\x62\x5d\xa3\xab\xce\x11\x52\xa9" "\xb5\x53\xe3\x20\x7d\x1a\x07\x34\x4c\x21\xec\xd9\x9f\xe2\x40\x6e\xb6" "\x62\x51\x80\x6f\xef\x32\x62\x6f\xa5\x44\x64\x81\x40\x8f\x8c\x78\xe2" "\xf5\x01\xdd\x81\x02\xf7\x86\x64\x15\xe3\xc9\x78\x20\x85\xcc\x99\x49" "\x22\xdf\x66\xc9\x6a\xc5\x17\x53\xc9\x8e\x00\x63\x52\xfe\x77\x41\x08" "\xc8\x49\x40\x63\xd6\xd1\xc3\xa2\x2a\x6c\x7f\x62\x06\x5c\x95\x4c\x38" "\xb1\x4d\xa4\x95\x5e\x24\xf9\x73\xfd\x4e\xca\x2d\x4b\xdd\x1e\x21\xa2" "\xcf\x2d\x73\xe7\x9e\x3d\xb0\x77\x93\x6e\xbd\x91\x6c\x51\x92\xfa\xd8" "\xe0\xd4\x53\x6d\xeb\xfb\x51\x58\xa3\x47\x47\xee\xa6\xeb\xad\xe3\xea" "\x91\xbb\x65\x82\xcb\xf9\xae\x46\xce\xb3\x5f\x9c\x81\xbc\xf8\x93\x95" "\xb4\xab\x26\x1e\x12\xa9\x24\x34\x45\xa7\xba\x9d\xfd\x7e\x2f\x1a\xac" "\xef\x93\x75\x4c\x33\x45\x1b\x6e\x17\x0e\x75\x25\xac\x6b\x9f\x1a\x74" "\x4f\x03\x2f\x69\xad\xf6\x4e\x95\xf9\x69\x02\x74\x3f\x9b\x53\xcd\xb2" "\x3e\x42\x4f\xa9\x4c\xe3\xd2\x0c\x94\x48\xc5\x2b\xc7\xbe\x5a\xab\x67" "\x43\xf7\xed\xe2\x8a\x44\x9f\x3d\xbe\x67\xca\x21\x44\x7c\x51\x60\x45" "\xad\x54\x19\x30\x27\xd3\x3c\x6b\x0e\xcf\x3e\x89\xeb\xa9\xc2\x59\xfd" "\xe1\xba\x3c\x70\x08\x01\x4d\xe8\xfa\xc6\x45\x6f\x36\x36\xfc\x21\xc9" "\x56\xa7\xd2\x6a\x4c\x06\x2f\xfe\x00\x0a\x3a\x45\xf6\x8e\xdc\x6f\xa0" "\x26\x64\x81\xfe\xbd\x24\xc0\x1f\x65\xdb\x5a\x8c\x8d\xa1\x21\x34\x54" "\x65\xf6\x64\xb7\x11\xbd\xa0\xdc\x1b\xd8\x48\x69\x3d\x90\xb4\xff\xee" "\x81\x41\xa7\x52\x0e\x97\xa8\x83\xc3\x9c\xa2\x05\xbf\x2c\x21\x70\xc5" "\x6b\x95\x9f\x28\xa5\x60\x56\xe7\x9d\xd3\x58\x7e\x24\xff\x95\x96\x32" "\xd5\x73\xfb\xae\xfa\xd8\x6e\xdc\x23\xbb\x0b\x93\x47\x3f\xb2\xa9\x2d" "\xcd\xc6\x1c\xa7\xf9\xa5\xaf\xe9\xd7\x2e\xfd\x09\xa2\xba\x51\x50\x12" "\x0a\x48\x81\x61\x0b\x49\xfd\x80\x7d\xcf\xb8\xce\x04\xdf\xac\x68\xe7" "\xe4\x8d\xd6\x39\xe4\xaa\xb2\x94\xe9\x33\x01\x75\x5b\xbf\x43\xcb\x4e" "\x0b\x5c\xdb\x83\xca\x05\x73\x5b\x57\xcb\x6f\x19\xd0\x76\xe8\xe4\x2a" "\xc0\xdd\x1a\x69\x26\x80\x5f\x21\x99\xfb\xfb\xef\x80\x93\xbf\xb1\x16" "\x20\x1f\x7e\x92\x15\xe2\x95\x3d\x24\x3a\xd3\x4d\xbe\x3d\x24\x60\xf9" "\xfa\xff\xe4\x60\xfb\xc8\x66\xb8\xe7\xcc\x93\x01\x96\x78\x98\x40\xde" "\x79\x6e\xab\x7c\x20\x67\x76\xf0\xa8\xf4\x8e\x2c\x43\x87\x9c\x20\x3d" "\xe1\x63\xc4\xf3\x45\x87\xa1\x97\x07\x8b\xee\x6c\x0a\x2e\xcb\x6e\xec" "\x51\x81\x73\x2c\x8b\xa3\xfc\xef\xca\xbc\xe8\xa2\x60\x23\xb3\x6e\xf2" "\x52\x0a\xf6\xf2\xa9\x4d\x83\xa2\x06\x98\x17\xe0\x76\xd7\xd8\xc6\xd5" "\xcd\x10\xca\x3c\x4a\x2f\x6d\xaa\xdf\xa7\x35\x41\x38\x16\x17\x70\xdf" "\xaf\x4d\xf2\xb6\x06\xa8\xe3\xe0\xea\xe6\xec\x3a\x59\xd9\x97\x4e\x2f" "\x34\xd1\x9e\x57\xb5\x6c\x3b\x54\x51\xd5\xef\x4b\xba\x13\x0f\x41\xee" "\xe0\x72\xc9\xeb\x4a\x91\x3a\xf5\xc9\xde\x41\x0e\xe0\x76\x7f\x05\x85" "\x64\x38\xe2\xa0\xf2\x5f\x59\xae\x6b\xaf\x34\xee\x89\x48\x1c\x33\xab" "\x24\x54\x2b\x31\x8b\xc3\x1e\xd0\x6e\xa4\xc8\x47\x2b\x82\x20\x1b\xba" "\xd8\x22\x9c\x4a\xef\x0c\xad\x50\x7f\xf4\x11\xc1\x97\x4e\x1f\x10\x3e" "\xb9\xa7\x2f\x01\xa5\x63\x0d\xb8\xf0\x7e\x80\x3a\x27\xa8\x63\xd8\x29" "\x73\x05\xcf\xd8\xd2\x95\x33\xbf\x39\x76\xec\x12\xe8\xfe\xea\xcf\x83" "\x67\x71\x54\xae\xd8\xe4\x11\xcb\x72\x2b\xf6\xd3\xcf\x54\xe7\x2d\x9d" "\x11\x72\x77\x21\xd9\x5d\xd1\x3c\x29\xd1\x1e\xbd\xde\x7a\xa2\xa7\x2c" "\xf3\xa9\x46\xb2\x14\x5a\x65\xe7\x74\xdf\x60\x29\xb5\x41\x9f\xb6\x53" "\x88\x9d\xa3\xf1\x24\xda\x04\x73\x6f\xd8\x0f\x3a\x1c\xd6\xfc\xe8\x54" "\x83\xfd\xd2\xdc\x01\xba\xac\x4d\x03\xa7\xa6\x63\xbc\x0d\x5e\x34\x1c" "\xe3\x9f\x16\x6c\x95\x8d\x18\x3c\x8b\x1d\x8a\x9a\xe0\xa3\x73\x5d\xba" "\xd6\x24\x16\x8a\x3b\x6f\x78\x4b\x60\x61\x44\x7e\x24\x6d\xc5\xba\x50" "\x1a\x6c\x4d\x89\xa3\x15\x51\xb1\x26\x30\x08\x7b\xef\x8c\x2f\x48\x98" "\xb3\xeb\xb9\x00\x85\x44\x32\xcf\x8a\xad\x40\xe9\x1c\x13\x15\x08\x57" "\x30\x81\xba\x99\x1e\xfa\xdc\x72\x8a\x4e\xf7\xb9\xa2\x62\xe5\x7a\x8d" "\xf4\x0f\x71\xc9\xf6\x85\xd6\x30\x83\xa6\x4d\xe1\x35\x45\xf7\x7e\xc2" "\xa9\x24\x58\x47\x7c\x4c\xeb\xe6\x50\x8d\xe4\x88\x53\x80\xad\xd3\x44" "\x69\xc4\x31\x46\x0a\xd3\x2d\x5b\x61\x22\xa3\xb7\xc8\x6c\x29\x73\x2a" "\x52\x80\xa5\x60\xe6\x92\x11\x6d\x7d\xa0\x65\xd6\x2d\x2d\xed\x48\xb5" "\x9e\x0f\x8f\xcc\xd4\xfd\xe2\x31\xb8\x86\x14\xb2\x10\x9a\xa4\x11\xd2" "\x02\xe1\xe1\xf2\x94\xdd\x29\x7a\xfe\xeb\x20\x1a\xe0\xaf\x1a\x91\xc9" "\x28\x17\x5a\x2c\xdc\xd5\xed\xb4\x86\xc3\x7c\x08\xde\x18\xd5\x48\x39" "\xe6\x0f\xf3\xf5\xf1\x92\x2b\xd6\x1b\xd6\x3a\x06\xa2\x6c\x51\xdc\x8b" "\xd6\xa5\x3d\x2f\xe6\x16\xd0\xc0\xa6\xb8\xab\xaf\x34\x11\x1c\x22\x81" "\x58\xfc\xf8\xfb\xbc\x93\xf3\xd5\xea\x57\xbc\x39\xfb\xf9\xf1\x66\x0f" "\xd4\xe2\x1e\x6b\xd8\xfd\xaa\x2c\xe1\xc3\x59\xbc\x84\xdb\x8c\xf1\x4a" "\xfe\x79\xdd\x3b\xa7\x69\xdb\xd7\x79\xaf\x7d\x84\x95\xe0\x87\xd3\x58" "\x83\x3c\xdc\xfe\x57\xce\x70\x0e\xc3\xf9\xa1\x23\xf8\x93\x19\x42\xdb" "\xb8\x90\x5c\xf6\x7e\x31\x41\x94\x38\xc2\x51\x45\x5c\x52\x51\x23\x8e" "\x1f\x54\x82\xc0\x8c\x73\xb1\x3c\xfd\x55\x1c\x2c\x3a\x9d\x87\x42\x93" "\xfb\x2c\x71\x85\x55\x06\x9d\x3c\x96\x3e\xbd\xea\x0b\xac\x58\xd8\x23" "\xda\x78\xb1\x77\x62\x0d\x66\x4d\x08\x5c\x6c\x23\xae\x45\x10\x34\xc9" "\xf2\x17\xce\x37\xef\xb2\x8e\x24\xfc\x67\xfe\xc4\x37\xa1\x72\x63\xda" "\xed\x4c\xa5\x1b\x2c\xf6\x0e\x86\x35\xf8\x71\xd3\xeb\x9a\x0b\x81\x28" "\x96\x8e\xd4\xf7\x36\xd6\xdd\xcc\x80\x8d\xe1\x53\xb7\xa0\xf6\xd9\x92" "\x46\xd9\x05\x58\xaa\x16\x0c\xc3\xa7\x37\x8c\x9a\x17\x49\x7d\x44\x04" "\x32\x5b\x90\x4d\xa2\xc9\xcb\xb3\xc3\x1b\x1e\xcb\x3e\x34\xda\x4b\x1c" "\x8c\x46\xe8\xc8\xd0\xa5\x1c\x19\x36\xa7\xdf\x37\xe0\x01\xb4\x1f\x38" "\x45\x94\x5f\x72\xea\x02\x54\xc3\x24\x3b\xe6\x78\xc0\x4a\x9b\x52\x81" "\xee\xe3\x5e\x2e\xad\x66\x50\xf7\x68\x0a\x90\xd5\x22\x3a\xe1\xf5\xf4" "\x17\x8b\xbc\x31\x71\xa9\xa6\xdc\xd3\xd4\x27\x3f\xa1\x6c\x4e\x9f\x3e" "\xf3\xe6\xae\x90\x97\xce\xd0\x79\x81\xc8\xf0\xf6\xce\xf6\x53\xae\xca" "\xa7\xd0\xb5\x06\x0d\xc6\x27\xba\x51\x1c\x56\xa9\x78\x3f\x26\x39\xe8" "\xb2\xe8\x23\x51\xdd\xb7\xf7\x26\x50\x63\xaf\xf5\xac\x95\x36\x0a\x66" "\xb5\xbc\x04\xcc\xce\x8d\x6c\x5e\x6b\x35\xab\xa6\xc8\x5a\x24\x2e\x25" "\x49\xcc\xa2\x85\x67\x33\xd7\x6d\x4a\x5c\x8a\x38\x0f\xda\xb4\xf4\xd8" "\x20\x13\x69\xfc\xa3\xe0\xa1\x7e\xdf\x09\x9b\x77\xc0\x30\xc3\xe3\x13" "\x92\x53\xc3\x12\xd9\xa7\x8c\x8b\xba\xce\x17\xbd\x3e\x1b\x93\x9a\xd7" "\xde\x43\xc8\xf5\x68\xf7\x2d\x7d\xb1\x2c\xb0\x96\x78\x23\x5a\x72\xe9" "\x1e\x20\x1b\x2f\xc9\x6c\xe0\x2a\x9a\x4b\x00\xc8\x03\x6c\x54\xa4\x9f" "\x23\x73\x00\x5f\x45\x2d\x8f\x7f\x2e\x66\x07\x6f\x48\xc6\x11\xc0\xd0" "\x18\x1d\x0a\x88\xff\xf8\xf8\x41\x09\x9f\xb6\x4e\x44\x3b\xa1\xc5\xc1" "\x51\x1e\x41\xe0\xda\x86\x52\x1e\x33\x70\xef\x63\x35\x02\x65\x21\x56" "\xf0\xb9\xa2\x49\xeb\x74\x5c\xe4\x86\x60\x1a\x09\x89\x60\xa6\x15\x06" "\xca\x57\x01\xdc\x12\x4f\xd9\x81\xf0\x12\x83\x9b\x17\xd0\xd9\x68\x27" "\x7f\xd1\x15\x16\xb4\xc2\x19\x60\x92\x0d\x1c\x63\xd7\x03\x1b\xd4\x8a" "\xd2\x41\x06\xbb\x1c\x91\xc3\x86\x8c\xee\x66\xf0\x67\xb8\xc6\x7a\x7c" "\x14\xe0\x9a\x34\x54\x13\xd6\xaf\x91\x57\x11\x29\xdd\xdd\xea\x48\x9f" "\x5d\xd3\xa6\xd1\xdd\x47\xcd\xc9\x26\xa2\xf8\xe2\x80\x1e\x7c\x55\x20" "\xfe\x83\xa9\xca\x09\x89\x66\x2c\x38\x6d\x85\x31\x4d\xa8\x8e\x31\xc7" "\xfa\xa9\x92\xee\x23\x8a\xc7\x67\x58\x5c\x9c\xba\x7b\xaa\x78\x90\x06" "\x22\xf3\xf9\x83\x48\xc0\xef\x5b\x48\xd6\x4d\xd4\x37\x89\xb7\xf0\x9c" "\x41\xfb\xea\xe2\xac\x20\x64\x37\x5f\x67\xdc\xf3\xfb\xfc\x0c\xc1\x3a" "\xe2\x03\x61\x87\x0b\x7b\xca\x84\x1e\xd3\x10\xf2\x75\xcf\x78\x8a\x18" "\x09\x20\xd8\x01\xb8\xba\x3c\x8a\xd0\x03\x50\x3e\xb6\xcc\xa5\x1a\xff" "\x5d\xd0\x5c\x19\x84\xe5\x99\x1a\xc8\x22\x8e\x93\xc3\x30\xde\xd9\xfa" "\xa6\xc0\xaf\x96\x9d\x02\x18\x9b\x2c\x87\x3f\x2b\x49\xc1\x78\x89\x22" "\xdd\x7e\x6a\x12\xe5\x6b\x1c\xa7\x86\x19\xd3\x7f\x41\x5b\x0a\xd9\xb4" "\x73\xdf\x42\x3e\x48\xd8\x4b\x8a\xbf\xa5\xd4\xc9\x51\x82\xa7\x81\x4e" "\x4c\xfe\x40\xd7\x41\x5c\x47\x47\x7e\x91\xe1\x43\x9f\x17\x35\x9d\x4b" "\xdd\xa7\x24\x82\x69\xf4\xa3\x90\x22\xe6\xec\x16\xe2\xf0\xd5\x32\x13" "\x3e\x8b\x94\xbd\x4e\x41\x5d\x30\xa9\x0f\x51\x20\x95\x32\x93\x68\x76" "\x53\x9e\xf4\xc9\xd6\x3b\x5d\x02\xba\x66\x3a\x82\x7d\xad\xa0\x8f\x4b" "\x22\x30\xfa\xd1\xdb\x33\x4a\xb7\xb0\x46\x77\x49\x6f\x71\x3c\x5d\x33" "\xa1\xb1\x96\xcb\x0d\xc3\xc0\x8d\x13\xc2\xf5\x79\xd1\x64\x7d\xaa\x03" "\x86\x4e\x7b\x12\xd5\x9a\x5e\x89\x66\x19\x62\x7a\x49\xd8\x65\xc0\xa3" "\x71\xa0\x85\x66\xc2\x4b\xca\x68\xd3\xa6\xfc\xda\xae\x61\x58\x08\x27" "\xd5\xf3\x6d\x7a\x4c\x39\xb6\xbd\x51\x9c\x84\x18\x7c\x07\x3e\xbe\xfd" "\x62\x68\xb6\x3b\xff\x03\xca\xdd\x76\x85\xa1\xc5\xa6\xe4\x20\x5e\x9f" "\xf2\xda\x2a\xb1\xea\xbb\x70\x77\x1a\x55\xde\x77\xa7\x32\xd3\x44\x58" "\xa5\x76\x7e\x43\x36\x63\x61\x05\xe4\xf5\x31\x75\x87\x82\x6f\x2b\x81" "\x32\x34\x3d\xa7\x76\x0f\x1e\xa9\xf5\x7d\x16\x66\xb4\xd7\x99\xda\x7c" "\xdb\x48\x3f\x8f\x9f\x39\x7a\xd8\xcb\xf0\x6b\x52\xbe\x9c\x84\x8a\x62" "\xca\x6a\x09\x25\xe0\xfc\x29\x5a\xc2\x1a\xb3\xab\x5e\x85\x24\x00\x42" "\xac\xa1\x5d\xf4\x6b\xf8\x6f\xc3\xad\x19\x18\xbd\xe8\x71\x9e\xd7\x4a" "\xbb\x2c\x29\xda\x23\x42\x25\x4b\xb4\xd3\x36\x81\x66\x12\x17\x95\xe3" "\x78\x6c\x27\x52\xe8\x71\x63\xeb\x56\x33\xa7\xbc\x2e\xff\xfb\x5e\x31" "\x0c\x36\xcc\x9d\x5c\x05\x90\xa1\x6c\x4b\xd5\x13\x71\xb3\x74\x74\x43" "\xfd\xa5\xbd\x27\x3a\xc6\x9f\x93\x05\x20\x88\x90\x73\x36\x4f\xea\x7a" "\xc0\x7e\x15\x80\x31\xf6\x3c\xd4\x17\x57\x5b\x7e\x13\xc6\x73\x19\x70" "\x82\x7b\x33\x86\xdd\x90\x5f\xd8\x5d\xed\x2a\x1d\xf9\xa2\x79\x93\x5f" "\xc6\xa0\xaf\x0d\x1f\xf1\xfd\x35\x8c\x82\xed\xec\x4d\x8a\xde\x20\xdd" "\x35\x35\x26\x11\x54\x28\x3b\x31\x20\x9a\x21\x79\xef\x8e\xfc\x8d\x5d" "\x3b\xab\xa2\xfe\xd2\x5d\x63\x94\x9b\x3c\xe5\x24\x75\x4f\xae\x10\x9c" "\x45\x2f\x32\xdc\xde\xf7\xe5\x4b\xfb\xf2\xdb\xc1\xc3\x2a\x8d\xeb\x68" "\x28\x59\x06\x62\x1f\x70\xec\xbd\x20\xa9\x87\xa6\x71\x50\xc4\xc1\x68" "\xe3\x6d\xdd\xd6\xa0\xd2\x1e\xdc\xaf\x5c\x85\x38\x97\x7b\x7b\xf3\x73" "\x42\x22\x8f\x86\x7d\xc4\xe4\x55\x32\xad\x6d\xb2\xa8\xb0\xc1\x7c\x86" "\x9d\x3f\x7f\x9e\xf6\x7c\x2c\x75\xd5\xd8\xb2\xa5\x35\xc2\xfe\x0c\x96" "\xde\x95\xee\x28\xf8\xf1\xee\x9e\x29\x3a\xa4\xcc\xb4\x7e\x5d\x25\xb8" "\xfc\xe9\x2b\x2d\xf7\xbb\x37\x25\x90\x52\x34\x17\x1b\xb8\xce\xb8\x5c" "\x30\x54\x47\xf1\xfc\xb1\xd5\xe9\x7b\x92\xac\x31\x28\x27\xc2\xae\x32" "\xe5\x91\x08\x53\xda\x28\x9c\xad\xac\xcf\xbd\xca\x9a\xad\x6a\x0d\x43" "\x9d\x28\xdd\x53\xb7\x2f\x84\xd1\xfd\x77\x24\x89\x86\x51\xf6\xb2\xbc" "\x1c\x49\x2f\x7c\xcd\x0e\x90\xf0\x15\xad\xa1\xd6\xdc\x71\x76\x27\x2b" "\xd7\x07\xc6\x93\x12\x13\x39\xdc\xeb\x4d\xf5\xa7\x5b\xbb\xea\xf5\x83" "\x64\x25\x0b\x55\x6d\xca\xa6\x41\xc9\x33\x1f\x3e\x5b\x84\x37\x37\xe2" "\xa0\x23\xd1\x59\x1d\x70\x12\x92\x67\x20\xeb\x64\x40\xeb\x7f\xa8\xf7" "\x19\x93\x37\xe1\x78\x8e\xab\xb8\xdf\xc1\x29\x6c\x9b\x1f\x89\xcd\x68" "\x91\x85\x62\x53\x45\x49\xa6\xd2\x05\xd7\x99\x18\xc6\x27\xe6\x79\x1d" "\x5f\x05\xbd\x46\x9e\xd4\x71\xb7\xaf\x78\x9d\xdf\x48\x12\xa5\x9f\xc0" "\x02\x86\xe2\x6d\x7b\x81\xeb\x35\x96\x85\x69\x2a\x17\x11\xd6\x2a\x84" "\xb3\xad\xd5\xb1\x7c\x9d\xad\xcc\x3e\x08\x65\xad\x0d\x8a\xe8\xf6\x3f" "\xad\xf9\xe0\xe1\x22\x02\xdc\x60\x5d\x71\x6c\x6b\x15\x11\x66\xfd\x7b" "\x89\x68\x1d\xf5\x24\x98\x41\xd3\x5a\xf6\x37\x51\x98\x0f\xec\xb0\xf6" "\x51\x4e\x0c\x09\x7d\xd6\x68\x96\xd0\xfc\x7e\xfd\x71\x2a\xfc\xa1\x5c" "\x1c\x5d\xee\x10\x22\x29\x30\xbf\xa8\xff\x7d\xb5\x4a\x4f\xf5\x75\x2e" "\x6b\x4f\xfe\x3c\x6e\x13\x18\x8a\xc1\x14\x6d\x29\x0c\x70\x66\x52\x4d" "\x6c\x60\x6a\xd3\x44\x45\x7b\x5b\x4a\x31\x5a\x20\x94\x04\xb6\x8f\xee" "\x3f\xc6\x82\x9f\x6d\x6b\xda\xe2\x56\x21\x78\x66\x36\x28\xae\xeb\x1e" "\xb4\x8b\x0c\xdd\x96\xe5\xcc\x78\x62\xb3\x84\xec\x91\x09\x9a\x51\x4b" "\x6d\xfc\x52\x7b\x66\x49\x95\x9f\xef\x03\xe2\xd8\x20\xc8\xe2\x3d\xde" "\xf4\xc8\x11\x62\x88\x15\x86\xd5\x41\xc4\x91\x51\x4b\x92\x51\xd5\x93" "\xe7\x31\xc5\x3e\xa4\xf2\x84\x84\x46\xdc\x94\x2f\x62\xe5\xa8\xa6\xe2" "\xbe\xb8\x26\x3c\x01\x00\x1f\x1e\xef\x2f\xab\xa3\x2c\x1a\x34\x09\xfe" "\x5f\xcd\x5a\x7a\xab\xa1\xc7\xba\x99\x79\xf1\x09\x9b\x41\x5a\x6d\x57" "\xae\xbe\xdd\x1b\x33\xc9\xf1\x6a\x59\x29\x0c\xfd\xa5\xe8\xc1\xb3\xbe" "\xb2\xff\xbc\x6f\xf0\x69\x6e\x38\xc0\x75\xa6\x47\x60\x4c\x38\xe7\x7f" "\xad\xef\xdf\xf6\x4b\x9d\x16\x9c\x5b\x3a\x95\xc3\xe8\xb9\x2d\xe7\xc8" "\x9d\x10\x8d\x7b\x1d\x08\x27\x52\xb0\x0b\x82\x08\xb0\x45\x43\x42\xdc" "\x72\x6f\xb4\x19\xe8\xff\x59\x04\xfd\xe7\xe2\x9f\x7a\xf1\x16\x4e\xcf" "\x66\x3e\x0c\x2c\xb2\x04\x7d\xda\xe6\x95\xbe\xe6\xe0\xde\x08\xd3\x41" "\x2e\x3b\x3a\x9d\x6c\xa8\x61\xc8\x3a\x23\xf2\xf1\xf8\x6c\xde\x7c\xf3" "\xf2\x4f\xa5\x31\xe9\xdc\xc6\xc0\x3b\x83\x90\xf3\xc7\x4c\xef\x05\x49" "\xc9\x99\xd5\x3f\xac\xf6\xeb\xb0\x1d\x48\x3d\xf0\xfe\x29\xf2\xdf\x88" "\xe0\x2e\x65\xac\xda\x12\x37\x8f\x60\xb4\x47\x30\x63\x1f\x53\xdc\xe2" "\xd9\xeb\xb1\x9c\x2f\xcb\xfd\xe7\x30\x30\x6b\xe0\x1d\xe6\x50\x8c\x4d" "\xfd\x43\xe6\xce\x0d\x13\x7a\xbd\xc7\xb2\xb2\x15\xbe\xb1\xd0\x36\x18" "\x07\x91\x76\xbe\x31\x46\xdf\x20\x82\xab\xd2\xd5\xef\x73\x6f\xa4\x8c" "\xc3\x6c\x02\xc2\xb5\xc8\x7c\x0b\xd5\x3d\x8f\x51\x4b\xab\x15\x25\x74" "\xf1\x4e\xa9\x3c\xe9\xa2\xd6\xfc\x90\x65\x57\xd7\x7a\x34\xe0\xc8\x1b" "\x11\x98\xaa\x46\xc8\xa0\x48\x22\x75\x84\x6e\x74\x6e\xc0\x4c\xaf\xdb" "\x21\x55\x00\xa7\x4e\x53\x08\x4d\xee\x91\x60\xef\x9e\xc8\xb9\x1a\xd0" "\x2f\xc4\x92\x24\x90\xdb\xce\xaf\x24\x3f\x1d\x9d\x60\xf3\x84\x19\x5f" "\x0e\x59\xa8\xbf\xb8\x75\x0a\xb1\xbc\xe4\x07\xfe\x54\x6e\x1c\x80\x2d" "\x11\x44\xe3\x92\x53\xb7\x20\xed\x79\x96\x85\x9f\x68\xb6\x03\x89\xe1" "\xb0\xe3\x26\x63\x91\x85\xdf\xa1\x16\xa3\x86\xa2\xa1\x01\xd4\x84\xca" "\x51\x51\x74\xa2\xb2\x1c\x2f\x94\xec\xbd\xbf\x42\x9a\x8e\xb4\xba\x4f" "\xde\xdc\x07\x78\xa6\xd2\x55\x6f\x52\x23\x19\x32\x9f\xf1\x4d\xc0\x9f" "\xf5\xcf\xb0\x02\xa2\x56\x47\xdc\xd1\xa1\x80\x0b\x7d\x2f\x69\xe5\x29" "\xe1\x0b\x6c\x30\x36\xe3\x47\x83\xc0\x09\xf9\x34\x41\x4c\x35\xfc\x5c" "\x5f\x48\xc4\x35\xa8\x59\x0f\xa9\xba\x5d\x55\xa3\x4d\xc0\x0d\x64\xfe" "\x0c\x0a\xaa\x59\x9c\xad\x80\x47\x37\x26\xa6\x9a\x4c\x6c\xe4\x8d\xfb" "\x61\x16\xce\xa7\xe2\x7b\x3d\x87\x2e\x2e\x04\xff\x81\x1e\x1b\xa4\x7a" "\x5d\x82\xec\xc0\xef\x8b\x66\x73\x24\x39\x3b\xc0\x15\xb5\xf6\x0f\x12" "\xf8\x9e\x4f\x59\xe4\x2d\x2f\xb2\x33\x84\x28\xad\x06\xd7\xb8\xf2\xbc" "\x59\xbe\xc6\x0b\xef\x6e\x8f\x67\x05\x2b\xb7\xa2\x45\x77\x86\x5b\x2f" "\x64\xa6\x38\x9a\x49\xaa\x79\x68\xeb\x58\xc2\x4d\x68\x37\xd2\xaf\x38" "\xf0\xa8\x2a\x41\x6b\xe0\xa5\x53\xe0\x3f\x66\xf4\xd6\xcf\x8e\xf8\xbe" "\xc3\xb3\x49\xd9\x00\x25\x0b\x30\x95\xcc\xe6\x00\x5b\x18\x1a\xc0\x1a" "\x60\x2d\x78\x97\xee\x63\x19\x36\xcb\xf1\xee\x06\x5d\x22\xc8\x96\x2c" "\xce\xd9\xfe\x7d\x0b\x44\xc1\xbb\x2e\xd3\x03\xdc\x4d\x26\x94\x1e\xbd" "\xaa\xa2\x4e\x80\x8d\x9e\x83\x84\x8a\xd8\x56\x45\x55\xa1\xbd\x44\x74" "\x34\xbf\x8a\x34\x17\x58\x63\x90\xe1\x24\xa4\x3e\xf0\x89\x6e\xaa\x06" "\xed\xf5\x79\x63\xb2\x3b\x95\x3d\x28\x7f\x0a\xe2\xcf\xaf\x7e\xc8\xdd" "\xa7\x1c\x21\x61\x0e\x24\x5e\xf7\x21\x15\xe4\x5d\x7e\xed\xe3\x82\xcd" "\x29\x3a\x0f\x6a\x17\x18\x82\xc2\x75\xd6\x58\xc8\x9b\x80\x59\x62\xae" "\x61\xdc\x23\xab\xca\x66\x40\xf0\x88\xc2\x30\x97\xd2\x88\xfb\xab\xd1" "\xa6\x6d\xd2\xe5\x7c\x8e\x9f\x79\xb4\x16\xa2\x99\x8d\x9c\x11\x15\x77" "\xd7\x27\xd6\x09\x2a\x73\x6f\x04\xd3\x1e\x33\x4e\xc9\x1b\xf4\x5b\x50" "\x70\x48\x32\x0a\x09\x2d\x7c\x64\x9c\x17\x18\xc4\xa0\x43\x1a\xa2\xea" "\x24\x30\x2e\xb0\x0d\x2b\x5e\x92\xd2\x87\x60\x0b\x87\xf1\x88\x54\x22" "\x87\x57\xa6\xf7\x3c\x5b\x4e\xac\x4d\x56\xb7\x05\xa0\x89\x5e\x54\x69" "\x43\xdf\x64\xff\x4c\xfc\xc0\x37\x19\xbc\x8e\xda\x54\xfa\xad\x91\xe0" "\x7e\xcf\xc8\xad\xed\x3d\xb6\x94\xc7\x4f\xe4\xf3\xb7\x43\xd1\x50\xad" "\x87\x40\xbe\x1f\x16\x8f\x76\x56\xdc\xaa\xf2\x5a\xf1\xaa\xc2\x56\xaa" "\xbd\x36\x29\x08\xfd\x45\x3b\x94\x6a\xac\xba\x09\x18\xf5\xcc\x0e\x5e" "\xcc\x17\xfc\x73\x02\x7a\xb8\x2f\x7c\x7b\x83\xde\xfe\xa2\x26\x3b\x6d" "\x11\xb2\xf0\x3d\x11\xee\x8d\x21\x4d\x44\xf2\x27\x74\x1a\x33\xe1\xd4" "\x50\x02\x6f\xae\x74\x35\xf5\xc3\x83\x65\x3e\x04\x4c\x49\x31\x2d\x62" "\x7b\xf8\xa7\x36\x48\xba\x39\xe9\xab\x44\x00\x37\xf3\x14\x93\x10\x1b" "\x95\xc8\x0a\x9b\xf7\x94\xc4\xc6\xad\x24\x9f\xc5\x0e\x62\x13\x47\x14" "\x53\x08\xdc\x26\x0e\x9e\xbb\x24\xc3\x49\x5b\x22\x1a\xec\xf4\xfb\x14" "\xca\x91\x70\x0f\x68\x8a\xa9\xda\x7f\x3c\x7d\x80\x76\xaf\x90\x73\x51" "\xa3\xfb\xdd\x25\x08\x96\xc1\x3e\x6a\x01\xd6\x42\x8e\x5c\x4c\x14\xb8" "\xcd\x1f\x03\xa8\xaa\xab\x7f\xec\x33\x3d\x03\x5c\x2f\xd4\x88\x24\x91" "\x34\xb8\xcc\xf2\x13\x02\x61\xbd\xb1\xd1\x13\x75\x23\xe9\x07\x50\x4b" "\x44\x33\xd9\xe8\x0d\x63\xce\xac\x53\xdf\xeb\x5f\x18\x91\x9c\xe1\xf1" "\xcf\x08\x9f\xdd\x1e\xe2\xf6\x9b\x18\x32\xe4\xb3\x66\xb6\x57\x05\x37" "\xe4\x80\x66\x92\x2d\x51\xfb\x42\x55\x34\x60\x09\x38\xd7\xe6\x6d\x80" "\x6c\xe4\x42\xed\xe7\x29\xfe\xcb\x4a\xbe\x5f\xf6\xec\x56\x92\x2b\x35" "\xdb\xb6\xf3\xf2\xa3\x3f\x3c\x7c\x2d\x94\x9d\xaf\xb4\xb0\x70\xcd\x46" "\x18\x4d\x9e\x2f\x33\xb4\xe8\x80\x0c\xf1\x08\xe9\x6e\xbf\x2e\x67\x58" "\x09\x45\x7f\xe7\xcb\xc4\xc8\x21\x66\x4f\x2b\xbc\xcf\xa6\xcd\x68\xa6" "\x4d\xb6\x06\xd0\x7d\x78\xe2\x64\xf0\xdb\x3c\xb1\xeb\x28\x63\x0c\xe1" "\xf9\x5b\x33\x04\x7b\x5a\x35\x51\xdc\x9e\x26\x59\x64\x7a\xc1\xc8\x1c" "\xc6\x94\x2e\x73\x27\x36\xc1\x96\x0b\x74\xdb\x2c\x06\xcc\x12\x10\x1c" "\x60\x56\x84\x39\x6f\xfb\x71\x12\xed\x41\x43\x5c\x70\xb1\xb0\x94\xd5" "\xb3\xd6\x8d\x66\xfe\x64\xe4\x10\xc6\x81\x8d\xd0\x56\xda\x77\x29\x13" "\x6c\x2d\x21\x52\x33\x0d\xc9\x99\x64\xed\xe7\x83\x6e\x6b\x28\xf4\x26" "\x8c\x39\x39\x05\xa4\x13\x78\x91\xee\xe8\xca\xb4\xe9\xab\x7e\xad\x22" "\xdd\x2c\x16\x25\xbe\x8f\x08\xfd\xda\x17\xc0\xd1\x86\x6a\xe4\xf2\x3c" "\xaa\xb6\x7b\x41\xc9\x6c\xcb\xfc\x3e\x0a\x33\xc2\xd6\x00\x0c\xb3\x1b" "\xb2\x84\x23\x62\xab\x3e\xfa\xa1\x35\x4e\x8a\xbc\x06\x86\x64\x82\x5e" "\x80\x6f\x81\x54\xf3\xc0\x7b\x83\x37\x2a\x47\x5c\x8b\x8e\x8d\x60\x30" "\xaa\x53\x84\x39\xb0\x60\x9f\xc5\x5d\x4a\x8f\xb1\x7a\x81\x09\xf0\x76" "\xae\xe8\x49\xde\x05\xff\xed\x9f\x0e\x65\x60\x4a\x1a\x1c\x84\x42\x38" "\x60\x3a\x48\xc5\x79\x04\x4b\xc4\x6e\xb5\xe9\xc0\x37\x0b\x56\x68\x09" "\xa2\x67\xf9\xec\x85\xeb\xb9\x89\x09\x6a\x46\x71\x2d\x4e\x23\x2d\xb3" "\x54\xca\x7d\x99\xa3\x5a\x9f\x1d\x1b\x14\xe0\x0c\x3a\x9e\x6f\x7b\x55" "\xe4\x03\x4a\xcd\x20\x61\x6c\x9a\xa7\xc2\x2c\xe9\x39\x2b\xe7\x82\x23" "\x71\x70\xb2\x0f\xae\x6e\xb5\x27\xfc\x9e\xf4\xd0\x17\x9b\xa3\xca\xc6" "\x62\x02\x29\x99\x1f\xe1\x40\xd9\x8c\xd8\x82\x3a\xf9\x1d\xc9\x86\x12" "\x97\x18\x85\x00\xb5\xf3\xda\x6f\xb5\x14\x7d\xb0\x6d\x23\xa1\xed\xa5" "\xc3\x40\xf7\xdb\xaa\xf1\x8c\x59\x2a\xfa\x62\x62\x20\x59\x49\x25\x9d" "\x49\x62\xf1\xa5\xb7\x72\x11\x16\xe2\x95\x1b\x4a\xfe\x66\x12\x5e\x3c" "\xe0\xc5\x22\xe5\x49\xa5\x4b\x6c\xa5\x81\xf9\xe6\x49\xb2\xb5\x19\xa5" "\xb7\xa1\xf3\xc4\x4a\x5d\x55\x17\x5f\xed\x5e\xd4\x24\x8f\x47\x0a\x01" "\xda\x65\xdb\x3f\x8b\x24\x8e\xe5\xe9\x33\x06\x47\x8c\x68\x71\x1c\x1c" "\xa6\x5b\x5f\xa2\x9f\x28\xbe\x70\x50\xc5\xc1\xdb\x5f\x02\x63\x89\x8b" "\xf4\x41\xad\xeb\x55\xca\x03\x0a\xdf\x83\x3e\x00\x29\xaa\x91\x35\x0b" "\xdc\x2a\x40\xb8\x77\xb4\xbd\xcf\x99\xe5\x6e\x21\xe5\x33\x4d\xfc\x04" "\x79\x0f\xa6\xfb\xb0\x19\x75\x11\x89\x16\xb5\xac\x8e\x4d\xf6\x6c\x50" "\x9c\x2f\xe6\x9b\xa5\x64\x63\x63\x55\x0b\x97\xda\x90\x3f\xab\x34\x86" "\xeb\x98\x02\x12\x1e\x69\x9e\x1f\x3f\x61\x70\x7e\x56\xad\xb4\xb6\x5b" "\x05\x50\x0c\xd2\xce\x04\x63\xd7\xf4\x02\x81\x61\x78\x1f\xe0\x5d\x62" "\x7e\xe2\xcf\x94\x8b\x80\x57\x58\xf0\x3a\xed\x61\xc5\xef\x1f\xd9\x25" "\x63\xad\xed\xdf\xa4\x4c\x1d\x69\xd8\x6c\x6b\x3b\xe9\x64\x3a\xd2\xfd" "\x7a\x4a\x82\x35\x8b\x27\xcb\xaf\x99\xba\x3f\xdb\x43\x3f\x9d\xb0\x52" "\xd6\x60\x39\xec\x50\xe0\xaf\xa9\x16\x82\x7c\x24\xfe\x24\x29\x72\x6a" "\x1e\xa5\xa5\xe8\xb7\xe6\xa2\x77\x81\x8d\x07\x44\x5c\x7c\x8c\x4d\xa1" "\xf8\x7f\xb4\xcd\x43\xde\xcb\x76\x90\xa4\x5e\x37\x10\x93\x95\x85\x86" "\x72\xa2\x5c\x2e\x59\x25\xd2\x51\x39\xb8\x91\x16\x46\x9f\x36\xef\x89" "\xa1\x28\xb3\xe0\x06\x8d\xba\xc6\xc8\x0f\x82\x33\x88\xfb\x1c\xad\x09" "\x65\xbf\x76\xa1\xc0\x19\xf4\xe5\xbf\x60\x5c\x1a\xb4\xba\x89\xc3\x50" "\x29\x6f\xf5\xc3\x90\x87\xab\x2d\xdc\x78\xb9\xe7\x68\x98\x3b\x68\x2e" "\x9e\x6d\xd2\x9b\xd4\x20\x7e\xec\xb6\x5d\x31\x61\xdd\x56\xc0\xb6\xf4" "\x9a\xe4\x27\x1a\xcf\x37\x85\x44\x3a\x7d\xd8\xaa\xcb\x9c\xae\x8f\xc6" "\x70\x44\x0c\xe4\x06\xe4\xdb\x4c\x11\x95\xca\xd1\x5e\x13\x71\x58\x17" "\x8e\x97\xd0\x1b\xe9\x2f\x20\x6a\xe9\xba\x8d\xf5\x5a\xff\xc1\xff\x28" "\x47\x66\x1b\x39\x3c\x66\xc5\x29\xad\xcc\xc1\xa0\x29\xaa\x31\xee\x66" "\xbc\xa4\x15\x6a\x1c\x5e\xb5\xde\x58\xfe\xf2\xf8\x0f\x61\x69\xbf\x62" "\x62\x6b\x81\xdd\xf9\xec\xca\x72\x74\x74\x7d\x26\xc2\xff\x38\xe4\x52" "\x2a\xae\x72\x5b\x95\x8d\x0c\x54\x75\x2e\xd4\x75\xdd\x50\x5e\x27\x58" "\xe9\x34\xd3\x8c\x9f\xd2\x99\xf8\xfd\xbc\xe7\xf3\x30\x0e\xbc\x37\x54" "\xac\x76\x7e\x55\x00\x30\xec\xe9\x48\x85\xfd\xd1\x08\x02\x6e\xf7\x93" "\xcc\x8a\x40\x4d\xab\xe3\xd0\xdb\xa3\x68\x10\x2a\xb5\xcc\x2e\x9c\xfc" "\x0f\xad\xa6\xb0\x6b\x38\xaf\xe2\x12\x34\x6e\x24\x99\x13\xbc\x2f\xa4" "\x67\xb2\x7c\xe8\x07\xdc\x5f\xcc\x6f\x02\x3e\xa3\xad\x5e\x25\x37\xa4" "\x7c\x7b\x98\x68\xf5\x84\x3e\x27\xe9\x6a\xfd\x27\xf7\xc8\xf2\xf8\x58" "\xfa\xf2\x18\xa0\x9b\x22\x7b\x15\x3f\x08\x86\xfa\x63\x16\xab\x2e\x7b" "\xc2\x3b\x85\xd7\x59\xab\xd1\xaa\x93\xee\xd7\xf5\xc8\x2e\xbb\x21\xb2" "\xd4\xe9\xd9\x78\x1c\xcd\x06\xc8\x9f\x6c\x77\xd7\x18\x7e\x49\x85\x01" "\x51\xf0\xfc\x87\x08\x2e\x0c\xaa\xd3\x81\x88\xd9\x85\x30\x78\xed\x1a" "\xea\xff\x2a\xf6\x18\x0c\x2c\x68\xb4\x82\xb2\xe6\x77\xba\x73\x13\xf8" "\x40\x4d\x08\x20\xe1\xaa\x0b\x80\x6c\x4c\x43\x19\xea\x9b\xac\xad\x55" "\xf2\x4a\x71\xfa\xbd\x7a\x66\xef\xd3\x3f\x02\xcd\x7d\x53\xea\xea\x65" "\x1b\x7a\x74\xae\x4f\x8b\x7f\x9b\x11\xa6\xfa\xf7\x72\x1f\x07\x64\x70" "\x7b\xd7\x7c\x0b\xf4\xaf\x99\x59\xc0\x6b\xe0\xce\xc2\xf1\xe6\xd3\x89" "\xb6\x8e\x11\xc7\x67\x2c\x67\x9c\x94\x20\x63\x5b\x61\x75\x53\x70\x45" "\xc2\x88\x54\x13\xee\x10\x50\xef\xa5\xb1\x72\x43\xf8\x80\x1b\x8f\x05" "\x58\x10\x4d\x72\x57\x82\x91\x64\x09\x28\xe2\x60\x50\xeb\xd1\x03\x83" "\x14\x24\xe2\x30\x87\x98\x45\x96\xcb\xc3\x42\x35\x8d\x63\xb9\x0e\x40" "\x48\x2d\x17\x7f\x1d\xd7\x73\x98\x47\x4c\x07\x6c\x9f\xe4\x96\xf1\xbb" "\xcc\x33\x61\x15\xa2\x47\xb8\xa3\x0b\x0d\xb2\x90\x7a\x0e\x98\x12\x87" "\x84\x2b\x25\xae\xeb\x71\xa8\x3d\x4c\x13\xdc\x68\x46\x9d\x6e\xdb\xaf" "\x3e\x9d\x6a\x99\x2e\xa2\x66\xd8\x92\xcb\x55\x27\xf2\xe2\xca\x78\x72" "\x59\x8d\xb2\x16\x7c\xb8\xe2\xe2\x3d\x28\x73\x5d\x68\x6a\x8a\xea\x7a" "\xd7\xa6\x3b\x13\x30\xae\xe3\x4d\x68\xd5\x5b\x01\x78\x40\x32\x2a\x8c" "\x8f\x0b\xb6\xc4\x97\x8a\x62\x94\xa5\xf0\x2e\x91\x3f\x44\xa7\x1a\xad" "\x34\xdf\xe5\xe9\x56\x74\x26\xe0\x22\x3d\x45\x02\x0f\xe7\xaf\x37\xa4" "\x7f\xeb\x7a\xe4\x99\x9b\x92\x74\x19\xa8\xb5\x71\xb7\x57\x6e\x48\x81" "\x75\x71\x37\x27\x58\xef\xdb\x43\x46\x94\xf6\xf6\x68\x62\x7b\x05\xb9" "\x9d\xa0\xbe\xae\x2c\x27\x35\x4b\x38\xc0\x35\xc0\x68\xb6\x2c\xec\x6a" "\x55\x57\x23\x8e\xa0\xbe\x80\xf7\x6c\x31\xc4\xf8\x5c\x5a\xc2\x02\xbd" "\xb9\xd7\xf8\xfb\x82\xf5\x22\xc1\x9b\x56\x20\x8b\xa2\xc8\x90\x8d\xac" "\xac\x88\xb2\x02\xe0\xaf\xb0\x7a\x99\xd7\x9f\xd9\xff\x9d\x95\x85\xab" "\x64\x0e\xee\xa6\x71\x4a\x7a\xa1\xc6\x72\xe8\x45\xc2\xbc\x6d\xaf\xfc" "\x70\xdf\x96\x57\xa4\x05\xbf\x07\x95\x03\xa8\x94\x60\x3c\xd5\x15\xa4" "\xcd\x55\x82\x8c\xae\xf2\x4c\x50\xe9\xa5\x73\x5f\x55\xd3\xb8\x22\x91" "\x8d\x65\x2b\x5e\xd1\x8a\x3b\xe8\xb1\xc7\x44\x07\x3d\xf0\x8c\xed\x12" "\xb8\x70\x15\x6d\x34\xe9\x43\xb0\x3f\xba\x0b\x70\x34\xd0\xdd\xbb\x86" "\x92\x0f\x78\x0e\x02\x3e\xcd\x1c\xa4\xc1\x68\x51\x36\xa0\x89\x7a\xe4" "\xaa\x08\x70\xc4\x4a\xea\xdc\x7c\xf5\xf9\x58\x18\xc5\x1b\xe6\x73\xf2" "\x57\x36\x72\xab\x15\x6f\x52\x91\xac\x8d\x0c\xff\x7d\xf4\xd9\x9a\x1f" "\x10\xcd\x33\xa0\x2e\x94\xb2\x59\x5d\x98\xe8\x87\x8b\x31\x5c\x48\xb5" "\xd0\xb0\xf4\x24\xf2\xdd\x6e\x8a\xf7\xce\x6c\xc0\xc4\x4a\x6c\x87\x90" "\x4f\x50\x95\x0e\xd2\x71\x91\x5a\xa2\xd5\xc9\x67\x45\xa1\x31\xe7\x65" "\x4f\x7c\x39\xd6\x93\xd0\xc6\xf4\xc2\x8f\x1a\xf7\x48\x58\x5e\x02\x0e" "\xe7\xa9\x4a\x92\x2f\xb5\x01\xbb\x7c\xb0\xad\x50\xab\x67\xe1\x22\x04" "\x77\x81\xbf\xd7\x10\x53\xa4\xf8\xb2\xdf\x45\xbc\x39\xaa\x62\xe3\xe3" "\x68\xc5\x58\x64\x47\xc5\x0e\x0c\x5d\x48\x04\x75\x7e\xec\x39\x8b\x4a" "\x27\x13\x78\x86\x41\xe2\x7d\x2e\xcd\x84\xc1\x05\xf4\x79\x11\x44\xd4" "\x37\xe4\xaa\x00\x4c\x6c\x41\xed\xc1\xce\xd6\x58\xc1\x99\x39\x78\xa4" "\xac\x09\x38\x57\xc2\x85\xd3\x82\xf9\x7c\xd7\x31\x4b\xee\x4e\x9d\x7c" "\xd0\x35\xf2\x16\xad\x11\x4d\xad\xc5\x3d\x16\xb9\x22\xdd\x27\xcb\x11" "\xa1\xde\x54\xd1\x10\x44\xcd\x34\x68\xcc\x56\x4a\x5f\x4d\x3e\xff\x45" "\x94\x49\xd5\x1e\x96\x17\x49\x94\x9c\x11\xbd\x8e\x84\x58\xb2\x0d\x43" "\x1f\xd8\xa5\x44\xd1\x44\x74\x5b\x7f\x5e\xcf\xa8\x9a\x64\xb7\x08\x97" "\xbb\x1e\xa1\xb8\x11\x52\x56\x7b\x60\x8b\xeb\x13\xe4\xf9\x7c\xfb\x15" "\x3a\x0f\xd9\x7d\xb9\xc8\xff\xcc\xa0\x44\x9f\x94\x83\xa9\x1a\x87\x86" "\x91\xb8\x0a\x7f\xb4\x0b\xfc\xf8\xf6\xcb\x73\x98\xc6\x28\x9c\xf6\x77" "\x58\x37\x88\x86\xef\x47\x04\x61\x6c\xc1\x47\xdf\x1a\x52\xfc\x83\x03" "\x48\x32\x33\xd3\x37\x45\xcf\xf9\xc5\x2c\xc0\x43\x3f\xec\xdd\x44\x17" "\x13\x33\xc9\xa2\xab\xee\xd1\x3f\x35\xf4\xba\xa7\x86\x53\x0f\x22\x99" "\x99\x49\x3d\xf0\x82\x5e\x46\x40\x00\x23\xcb\x5b\x84\x8a\x4c\xca\x78" "\x79\x9d\x62\xe1\x15\x55\x55\xb4\xdf\x61\x16\xe9\x3b\x25\x25\x46\x7d" "\x7f\xfb\x39\x71\x0d\xfd\x37\xc6\x63\xcc\x91\x85\xea\xf0\x23\x60\xe3" "\x3a\x03\x57\xbe\x1b\x38\xd9\xe5\x90\x48\x8a\x7b\xa2\x95\x37\xbf\x71" "\xfc\x6d\x2f\xe2\xc0\x82\x2d\xa9\xa4\xed\xbb\x41\xad\x18\xbd\xc7\x19" "\x63\x2c\x01\xa5\x88\x86\x7e\x30\xdc\xbb\x7e\x95\xeb\x23\xe7\x49\x1f" "\x71\xf2\xf6\x8e\x6d\xcd\x9d\xef\x75\x56\xca\xc2\x66\xaa\x8f\x29\xab" "\xc1\x52\x58\xee\xa9\xb0\x1d\xcd\xd1\xfe\x51\x02\xaf\x6e\x3c\xe5\x70" "\x8f\x0f\xeb\x9b\x90\x7f\x5c\x0b\x50\x09\xc1\xba\xff\x63\xef\x09\xb2" "\x48\xdf\xdf\x3b\x48\x79\xd9\xd5\x97\x55\x73\x74\x76\xef\xe6\x44\xb6" "\x89\x07\x6e\x8b\x5d\x85\xb2\xac\x4f\x18\xae\x7c\xa0\x49\x25\xdb\xcd" "\xa0\x75\xf7\x8b\x45\xfe\xcf\x3d\xbd\x2c\x32\xb2\x4c\xf4\xbe\x87\xbb" "\x6f\xd4\x69\x4a\x3a\xbf\x7c\x31\xc9\xd3\x86\xfa\x2a\xd5\xa1\xaa\xf9" "\xb5\x26\x53\x2c\x47\x58\x99\x3b\x01\xf6\x3c\x2b\x8a\x22\xc3\xc1\xce" "\xed\x25\xae\x28\xcd\x8f\x5d\x94\x14\xac\x9f\xb2\x9b\x76\x5f\x88\x59" "\x86\x65\xc5\x75\x2f\xb8\xed\x4f\x33\x0e\x8f\xd9\xb7\x54\x86\xaf\x51" "\x2d\x4c\xa2\x9a\x88\x6b\xe5\xd2\x72\x5c\x6b\x81\x2c\x34\x7f\x70\xbc" "\x56\xe8\x28\x59\xaf\x82\x16\x1a\xff\x4c\xe8\xa7\x39\x8c\xbb\x33\x18" "\xee\x10\x55\xdb\x47\xd6\x64\x7d\x67\x94\xb3\xf6\xd5\x67\x2a\xfa\xf3" "\xb3\x00\xf7\x19\x4e\x35\x30\x21\x3e\xee\x4a\x98\x63\x4b\xdf\xc9\xee" "\x26\xfd\x28\xab\x93\x6e\xd2\xd8\x11\x85\x0f\xbf\xb8\x2f\xd7\x94\xd7" "\x6c\x08\x25\xb3\x84\xce\x42\xb7\xda\x3e\x9f\x62\xfd\xb0\x7b\x4c\x91" "\xe5\x7f\xff\x54\xd6\x71\x43\x1b\xdc\xae\xe1\x15\xea\x79\x23\x16\x6b" "\x8e\x3e\x80\x26\x72\x6b\xb5\x12\x46\xe2\x42\x26\x39\x93\x18\x3c\x32" "\xdc\xd1\xfc\xac\x69\x67\xd8\x1d\xa5\x89\x81\x66\x66\x08\x9b", 8192); *(uint32_t*)0x20001240 = 0x200006c0; *(uint32_t*)0x200006c0 = 0x50; *(uint32_t*)0x200006c4 = 0; *(uint64_t*)0x200006c8 = 2; *(uint32_t*)0x200006d0 = 7; *(uint32_t*)0x200006d4 = 0x24; *(uint32_t*)0x200006d8 = 6; *(uint32_t*)0x200006dc = 0x2a401; *(uint16_t*)0x200006e0 = 6; *(uint16_t*)0x200006e2 = 1; *(uint32_t*)0x200006e4 = 0x7ff; *(uint32_t*)0x200006e8 = 6; *(uint16_t*)0x200006ec = 0; *(uint16_t*)0x200006ee = 0; memset((void*)0x200006f0, 0, 32); *(uint32_t*)0x20001244 = 0x20000600; *(uint32_t*)0x20000600 = 0x18; *(uint32_t*)0x20000604 = 0xfffffffe; *(uint64_t*)0x20000608 = 2; *(uint64_t*)0x20000610 = 0; *(uint32_t*)0x20001248 = 0x20000740; *(uint32_t*)0x20000740 = 0x18; *(uint32_t*)0x20000744 = 0xfffffff5; *(uint64_t*)0x20000748 = 0xffffffffffffff6a; *(uint64_t*)0x20000750 = 0xfffffffffffffff9; *(uint32_t*)0x2000124c = 0x20000780; *(uint32_t*)0x20000780 = 0x18; *(uint32_t*)0x20000784 = 0xfffffffe; *(uint64_t*)0x20000788 = 4; *(uint32_t*)0x20000790 = -1; *(uint32_t*)0x20000794 = 0; *(uint32_t*)0x20001250 = 0x200007c0; *(uint32_t*)0x200007c0 = 0x18; *(uint32_t*)0x200007c4 = 0; *(uint64_t*)0x200007c8 = 4; *(uint32_t*)0x200007d0 = 3; *(uint32_t*)0x200007d4 = 0; *(uint32_t*)0x20001254 = 0x20000800; *(uint32_t*)0x20000800 = 0x28; *(uint32_t*)0x20000804 = 0xffffffda; *(uint64_t*)0x20000808 = 0xdfe; *(uint64_t*)0x20000810 = 0x2000000000000001; *(uint64_t*)0x20000818 = 4; *(uint32_t*)0x20000820 = 2; *(uint32_t*)0x20000824 = -1; *(uint32_t*)0x20001258 = 0x20000840; *(uint32_t*)0x20000840 = 0x60; *(uint32_t*)0x20000844 = 0xfffffff5; *(uint64_t*)0x20000848 = 6; *(uint64_t*)0x20000850 = 0x3f; *(uint64_t*)0x20000858 = 5; *(uint64_t*)0x20000860 = 0x1ff; *(uint64_t*)0x20000868 = 7; *(uint64_t*)0x20000870 = 0xffffffffffff149c; *(uint32_t*)0x20000878 = 0x7fffffff; *(uint32_t*)0x2000087c = 0x3afa9168; *(uint32_t*)0x20000880 = 0; *(uint32_t*)0x20000884 = 0; memset((void*)0x20000888, 0, 24); *(uint32_t*)0x2000125c = 0x200008c0; *(uint32_t*)0x200008c0 = 0x18; *(uint32_t*)0x200008c4 = 0; *(uint64_t*)0x200008c8 = 0xfffffffffffffff7; *(uint32_t*)0x200008d0 = 0x3f; *(uint32_t*)0x200008d4 = 0; *(uint32_t*)0x20001260 = 0x200005c0; memcpy((void*)0x200005c0, "\x15\xdd\x6c\x91\x7a\xba\x69\x84\x0d\x99\xdb\x34\x6d\x00\x00\x00" "\x00\x00\x00\x66\x75", 21); *(uint32_t*)0x20001264 = 0x20000940; *(uint32_t*)0x20000940 = 0x20; *(uint32_t*)0x20000944 = 0; *(uint64_t*)0x20000948 = 0x37; *(uint64_t*)0x20000950 = 0; *(uint32_t*)0x20000958 = 4; *(uint32_t*)0x2000095c = 0; *(uint32_t*)0x20001268 = 0x20000980; *(uint32_t*)0x20000980 = 0x78; *(uint32_t*)0x20000984 = 0; *(uint64_t*)0x20000988 = 0x40ff; *(uint64_t*)0x20000990 = 3; *(uint32_t*)0x20000998 = 0x3863; *(uint32_t*)0x2000099c = 0; *(uint64_t*)0x200009a0 = 1; *(uint64_t*)0x200009a8 = 0x40; *(uint64_t*)0x200009b0 = 0x95; *(uint64_t*)0x200009b8 = 0x7fffffffffffffff; *(uint64_t*)0x200009c0 = 0xd1b; *(uint64_t*)0x200009c8 = 5; *(uint32_t*)0x200009d0 = 0xcbbb; *(uint32_t*)0x200009d4 = 0xc0000000; *(uint32_t*)0x200009d8 = 9; *(uint32_t*)0x200009dc = 0x2000; *(uint32_t*)0x200009e0 = 3; *(uint32_t*)0x200009e4 = 0; *(uint32_t*)0x200009e8 = 0xee00; *(uint32_t*)0x200009ec = 0x7f6e; *(uint32_t*)0x200009f0 = 0xffff; *(uint32_t*)0x200009f4 = 0; *(uint32_t*)0x2000126c = 0x20000a00; *(uint32_t*)0x20000a00 = 0x90; *(uint32_t*)0x20000a04 = 0xfffffffe; *(uint64_t*)0x20000a08 = 0x998e; *(uint64_t*)0x20000a10 = 1; *(uint64_t*)0x20000a18 = 1; *(uint64_t*)0x20000a20 = 7; *(uint64_t*)0x20000a28 = 0xffffffffffff4d32; *(uint32_t*)0x20000a30 = 1; *(uint32_t*)0x20000a34 = 0x1a02; *(uint64_t*)0x20000a38 = 6; *(uint64_t*)0x20000a40 = 0xa8; *(uint64_t*)0x20000a48 = 7; *(uint64_t*)0x20000a50 = 1; *(uint64_t*)0x20000a58 = 6; *(uint64_t*)0x20000a60 = 0x4b; *(uint32_t*)0x20000a68 = 1; *(uint32_t*)0x20000a6c = 0x7f; *(uint32_t*)0x20000a70 = 0x7dfa; *(uint32_t*)0x20000a74 = 0xc000; *(uint32_t*)0x20000a78 = 0x3fe; *(uint32_t*)0x20000a7c = 0; *(uint32_t*)0x20000a80 = 0; *(uint32_t*)0x20000a84 = 0xfffff07d; *(uint32_t*)0x20000a88 = 3; *(uint32_t*)0x20000a8c = 0; *(uint32_t*)0x20001270 = 0x20000ac0; memcpy( (void*)0x20000ac0, "\xf8\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\x7f\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\xff\x07\x00\x00\x00\x00\x00\x00\x04\x00" "\x00\x00\x05\xb8\x70\x32\xaa\x5d\x2b\x2a\x00\x00\x00\x00\x02\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x80\x09\x00\x00\x00" "\x07\x00\x00\x00\x2c\x28\x29\x30\x40\x7d\x27\x5b\x2e\x00\x00\x00\x00" "\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x29\x00\x00\x00\x00\x00" "\x00\x00\x04\x00\x00\x00\x06\x00\x00\x00\x2a\x24\x2d\x2d\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x72\x6f\x6f\x74\x6d\x6f" "\x94\x00\x5d\xfa\xc9\x7c\x1b\x15\x64\x65\x02\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x90\xf6\x02\x00\x00\x00\x94\x2c\x00\x00" "\x29\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x80\x00\x00" "\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xfa\xff\xff" "\x07\xff\xff\xff\xff\x05\x00\x00\x00\xfa\x52\x00\x00", 234); *(uint32_t*)0x20001274 = 0x200012c0; memcpy((void*)0x200012c0, "\xc8\x03\x00\x00\xfe\xff\xff\xff\x9f\xd3\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x01\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x81\x00\x00\x00\x06\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x50\x0a\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\x09\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\xfc\xff\xff\xff" "\x01\x04\x00\x00\x00\x10\x00\x00\x2a\x9b\x00\x00", 124); *(uint32_t*)0x2000133c = 0xee00; *(uint32_t*)0x20001340 = 0; memcpy( (void*)0x20001344, "\x96\x0b\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x01" "\x00\x00\x73\x79\x7a\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\xd9\x97\x00\x00\x04\x00\x00\x00\x05" "\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x03\x00\x00\x00\x00\x00\x00\x21\xa9\x00" "\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00" "\x00\x00\x01\x00\x03\x00\x00\x00\x00\xc0\x00\x00\x00\x20\x01\x00", 152); *(uint32_t*)0x200013dc = 0; *(uint32_t*)0x200013e0 = 0; memcpy( (void*)0x200013e4, "\xea\x14\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\xff\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfe\xff" "\xff\xff\x06\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x00\x00\x00\x16\x00\xff\x7f\xff\xff\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x08\xca\x00" "\x00\x00\x00\x00\x00\x07\x05\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\xfd" "\xff\xff\xff\x00\x10\x00\x00\x00\x00\x00\x00\x01\x01\x00\x00", 134); *(uint32_t*)0x2000146a = -1; *(uint32_t*)0x2000146e = 0; memcpy( (void*)0x20001472, "\x05\x00\x00\x00\xfb\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x26\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x09\x00" "\x00\x00\xa1\x25\x5c\x7d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xff\x0f\x00\x00\x00\x00\x00\x00\xb8\x55\x00\x00\x00\x80\x00\x00\x00" "\x00\x83\xfa\xae\xfd\xf6\x15\x59\x81\x96\x74\x30\xb9\x50\x8a\x83\xf8" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00" "\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x76\x03\x00\x00" "\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x95\x0e\x00\x00\x1a" "\x08\x00\x00\x00\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00", 168); *(uint32_t*)0x2000151a = 0; memcpy((void*)0x2000151e, "\x6d\xc0\x4b\x07\x44\x2b\x4f\x66\x86\x51\xaa\xa8\x09\x28\x33\x51" "\x8f\x80\xc3\x34\xf8\xf4\x4c\x56\x51\xdc\xc0\x8c\x7c\x51\x18\x82" "\x69\x5d\x30\xd6\xaa\x88\x10\xf9\xf9\x75\xd7\x47\x67\x59\x08\xce" "\xce\x2d\xdf\x8c\x41\xd2\xa9\x42\x5a\x8d\xc2\x9c\xcc\x30\xe7\xd6" "\x1f\xf2\x3e\x14\xde\x3d\xff\x1b\xe0\x15\xfd\x34\x57\xbd\xcb\x9d" "\xf0\xa3\x51\xec\x34\xf9\x78\x3a\xb2\x9d\xfb\xe5\x8a\xb0\xbd\x58" "\xa6\xd4\xee\x29\x36\xdb\x33\xf5\xc7\xb2\x41\x6a\xa1\xd5\xcb\xe3" "\x04\xae\x89\x9a\x63\x1a\xfa\x16\x53\xcb\xe3\x13\xe5\xab\x75\x3c" "\x43\x04\xc9\x7f\x72\x39\x95\x91\x34\xdb\x2f\xda\x51\xd9\x43\xb5" "\x9a\x24\xbe\x50\xd4\x83\x91\x8d\x76\x7f\xf1\x89\x48\x64\x89\x45" "\x66\x0b\x88\xd5\xc7\x01\xe1\x06\x90\x22\x0f\x5b\xc1\xe7\x69\xd6" "\x74\xca\x6d\x41\x91\xbb\x91\xe0\x54\xf2\xaf\x89\xff\xcc\x3d\x00" "\x33\x9d\x7d\xe2\x18\x32\xcd\x79\x2a\x5f\x9e\x16\xd8\x4a\x24\x4c" "\x18\x00\xbf\x45\xa2\xb3\x10\xa0\x01\x99\x3b\x1e\xe8\xfb\x25\x7d", 224); *(uint64_t*)0x200015fe = r[0]; *(uint32_t*)0x20001606 = 0; *(uint32_t*)0x2000160a = 0; memcpy( (void*)0x2000160e, "\x03\x00\x00\x00\xff\x07\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x01\x04\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x86\xcc" "\x00\x00\x2c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x03\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\xf9\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x1f\x00\x00\x00\x05" "\x00\x00\x00\x00\x00\x00\x00\xca\xf2\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x01\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\xd5\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\xbd\xa3\x03\x00\x00\x00" "\xfd\xff\xff\xff\x00\x00\x00\x80\x00\x80\x00\x00\x09\x00\x00\x00", 152); *(uint32_t*)0x200016a6 = 0; *(uint32_t*)0x200016aa = 0xee00; memcpy( (void*)0x200016ae, "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x63\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x03\x00" "\x01\x00\x76\x66\x61\x74\x00\x00\x00\x00\x9a\x9e\x80\x28\xe1\x1a\x52" "\x63\xce\x3b\xec\xac\x81\x18\x10\x8a\xb1\xa3\xfc\x0e\xdf\x7d\x21\x03" "\xf6\x01\x98\x2b\x53\xa3\xdf\x7e\x61\x08\xb3\x12\x41\x45\x11\x6e\xd5" "\x38\x09\x03\xf8\x8e\xa1\xd1\xb3\x65\x86\x43\x6b\x44\xc0\xd3\xff\x14" "\x7d\x2a\x3d\x52\x11\x35\x0e\xde\x8d\xa8\xa4\x4c\x7a\xce\xf8\xd0\xe0" "\x8e\xad\x8d\x3a\xbb\x29\xb3\x09\x45\x2c\xb2\x4b\xb3\x5a\x50\xf7\xc7" "\x71\x57\xb9\xb6\xff\x2e\x71\x8b\x4b\x1d\x26\x27\x1b\x8a\x00\x49\xae" "\x16\x62\x34\x46\x5d\x51\x24\x73\xfa\xa2\x02\x00\x02\xb0\xfa\xd2\x90" "\x3e\x36\xc3\xfa\x6b\x81\x0a\x3e\x32", 179); *(uint32_t*)0x20001278 = 0x20001140; *(uint32_t*)0x20001140 = 0xa0; *(uint32_t*)0x20001144 = 0xfffffff5; *(uint64_t*)0x20001148 = 0x90c; *(uint64_t*)0x20001150 = 5; *(uint64_t*)0x20001158 = 2; *(uint64_t*)0x20001160 = 8; *(uint64_t*)0x20001168 = 8; *(uint32_t*)0x20001170 = 0x800477; *(uint32_t*)0x20001174 = 1; *(uint64_t*)0x20001178 = 4; *(uint64_t*)0x20001180 = 0xfffffffffffffffa; *(uint64_t*)0x20001188 = 0; *(uint64_t*)0x20001190 = 1; *(uint64_t*)0x20001198 = 0xe2; *(uint64_t*)0x200011a0 = 4; *(uint32_t*)0x200011a8 = 4; *(uint32_t*)0x200011ac = 5; *(uint32_t*)0x200011b0 = 1; *(uint32_t*)0x200011b4 = 0x6000; *(uint32_t*)0x200011b8 = 0xe971; *(uint32_t*)0x200011bc = 0; *(uint32_t*)0x200011c0 = 0; *(uint32_t*)0x200011c4 = 0; *(uint32_t*)0x200011c8 = 0x616; *(uint32_t*)0x200011cc = 0; *(uint64_t*)0x200011d0 = 0; *(uint32_t*)0x200011d8 = 0; *(uint32_t*)0x200011dc = 0; *(uint32_t*)0x2000127c = 0x20001200; *(uint32_t*)0x20001200 = 0x20; *(uint32_t*)0x20001204 = 0xfffffff5; *(uint64_t*)0x20001208 = 0x1f; *(uint32_t*)0x20001210 = 3; *(uint32_t*)0x20001214 = 4; *(uint32_t*)0x20001218 = 4; *(uint32_t*)0x2000121c = 5; syz_fuse_handle_req(-1, 0x20004280, 0x2000, 0x20001240); break; case 5: memcpy((void*)0x20000180, "./file0/file0/file0/file0/file0\000", 32); syscall(__NR_umount2, 0x20000180, 0); break; case 6: res = syscall(__NR_read, (intptr_t)r[0], 0x200021c0, 0x2020); if (res != -1) r[1] = *(uint64_t*)0x200021c8; break; case 7: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x1f; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0xeea390; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 4; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; memset((void*)0x20004230, 0, 32); syscall(__NR_write, (intptr_t)r[0], 0x20004200, 0x50); break; case 8: memcpy((void*)0x20000240, "syz\000", 4); memcpy((void*)0x20000540, "./file0\000", 8); memcpy((void*)0x20000580, "9p\000", 3); memcpy( (void*)0x20000640, "\x74\x72\x61\xb2\x40\xa1\xb1\x9a\x78\x91\xdd\x07\x99\xe4\x7e\x17\xa2" "\xb2\xbc\x6e\x73\x3d\x76\x69\x72\x74\x69\x6f\x2c\x63\x61\x63\x68\x65" "\x39\x66\xb6\xa7\x2a\x75\x78\xbf\x16\x6c\x49\xce\xdc\x63\x61\x63\x68" "\x65\x2c\x73\x65\x63\x6c\x61\x54\x00\x00\x00\x66\x73\x6d\x61\x67\x69" "\x63\x3d\x30\x78\x66\x66\x66\x85\x66\x66\x66\x66\x66\x66\x66\x66\x66" "\x66\x66\x66\x2c\xdd\x38\x6a\x5f\x74\x79\x70\x65\x3d\xe8\x2c\x61\x75" "\x64\x69\x74\x2c\x73\x65\x63\x6c\x61\x62\x65\x6c\x2c\x00", 116); syscall(__NR_mount, 0x20000240, 0x20000540, 0x20000580, 0x4000, 0x20000640); break; case 9: memcpy((void*)0x20000080, "./file0/file0/file0/file0/file0\000", 32); memcpy((void*)0x200000c0, "./file0/file0/file0/file0/file0\000", 32); syscall(__NR_pivot_root, 0x20000080, 0x200000c0); break; case 10: memcpy((void*)0x20000000, "vfat\000", 5); memcpy((void*)0x20000300, "./file0\000", 8); *(uint32_t*)0x20000200 = 0x200002c0; memcpy((void*)0x200002c0, "\xeb\x3c\x90\x6d\x6b\x66\x73\x2e\x66\x61\x74\x00\x02\x01\x01\x00" "\x02\x40\x00\x80\x00\xf8\x01", 23); *(uint32_t*)0x20000204 = 0x17; *(uint32_t*)0x20000208 = 0; *(uint32_t*)0x2000020c = 0; *(uint32_t*)0x20000210 = 0; *(uint32_t*)0x20000214 = 0xfff; syz_mount_image(0x20000000, 0x20000300, 0, 2, 0x20000200, 0, 0x20000100); break; case 11: memcpy((void*)0x20000040, "./file0/file0/file0/file0/file0\000", 32); syscall(__NR_chroot, 0x20000040); break; case 12: *(uint32_t*)0x20000100 = 0; *(uint32_t*)0x20000104 = 0; *(uint32_t*)0x20000108 = 0; *(uint32_t*)0x2000010c = 0; *(uint32_t*)0x20000110 = 0; *(uint32_t*)0x20000114 = 0; *(uint32_t*)0x20000118 = 0; *(uint32_t*)0x2000011c = 0x20000300; *(uint32_t*)0x20000300 = 0x18; *(uint32_t*)0x20000304 = 0; *(uint64_t*)0x20000308 = 0; *(uint32_t*)0x20000310 = 0; *(uint32_t*)0x20000314 = 0; *(uint32_t*)0x20000120 = 0; *(uint32_t*)0x20000124 = 0; *(uint32_t*)0x20000128 = 0; *(uint32_t*)0x2000012c = 0; *(uint32_t*)0x20000130 = 0; *(uint32_t*)0x20000134 = 0; *(uint32_t*)0x20000138 = 0; *(uint32_t*)0x2000013c = 0; syz_fuse_handle_req(-1, 0, 0, 0x20000100); break; case 13: *(uint32_t*)0x20000c40 = 0x50; *(uint32_t*)0x20000c44 = 0xfffffffe; *(uint64_t*)0x20000c48 = r[1]; *(uint32_t*)0x20000c50 = 7; *(uint32_t*)0x20000c54 = 0x24; *(uint32_t*)0x20000c58 = 0x80000000; *(uint32_t*)0x20000c5c = 0x800002; *(uint16_t*)0x20000c60 = 8; *(uint16_t*)0x20000c62 = 6; *(uint32_t*)0x20000c64 = 0x7ff; *(uint32_t*)0x20000c68 = 5; *(uint16_t*)0x20000c6c = 0; *(uint16_t*)0x20000c6e = 0; memset((void*)0x20000c70, 0, 32); syscall(__NR_write, (intptr_t)r[0], 0x20000c40, 0x50); break; case 14: memcpy( (void*)0x200066c0, "\xa0\x62\x03\x06\x07\x79\x2c\x01\x38\x6f\x28\xa4\x28\x82\x89\x47\xde" "\x99\xf7\x9c\xc5\x42\x70\x3d\x92\x3c\x7c\xb9\xd4\xe1\xf6\xfd\x95\xfb" "\xf2\xf7\x47\xab\x32\xf6\xfb\x04\x18\x61\xfb\x3f\x87\xa8\x8c\xb8\x54" "\x05\xb4\xe7\x3c\x0b\x6b\x12\xc8\x1e\x42\xa9\xf1\x3d\x82\xc3\x2b\x7d" "\xdb\x17\x2b\xcb\xa1\xaa\xc5\xc3\x8f\x08\x37\x47\xac\x17\x9f\x08\xd4" "\xd6\xd3\x42\xa8\x7b\xa8\xdd\x9b\xb7\xa9\x68\x0f\x27\x43\x3c\x33\x57" "\xb4\xf6\xac\x97\xb1\x9a\x97\x35\x92\xf1\xac\x6e\x78\x53\xa0\xb1\x5b" "\xa4\x2a\x28\xef\xb9\xcc\x30\xb1\x46\x34\x6b\x54\x60\x18\x96\x6e\x94" "\x97\x6c\xa2\x8f\x26\xa1\x95\x0d\xd6\x4c\x0a\xdb\xb0\xc2\xe0\x9b\xbd" "\x9c\xaa\x9e\x78\x86\xa2\xb3\xd6\xe2\xb6\xd6\x61\x6b\x71\x8f\x13\x22" "\xea\x28\x81\xca\x59\xef\x73\x94\x8b\x1b\xcd\xc2\xdd\x39\x70\xe6\x3c" "\xbc\x10\x43\xce\x42\xaf\x0e\xa1\xf9\x5d\x17\x26\x8c\xbc\x3e\xf0\x62" "\xc8\xc3\x1a\x53\x7e\x94\xa2\x0c\x1c\x50\x5a\x60\x22\xd5\xec\xe7\xf5" "\x1b\xd9\xc7\x54\xd8\xc4\x7c\xbe\x80\xbb\xb3\x0b\x21\x59\x99\x1a\x94" "\xdd\x3a\x25\xe6\x4a\xff\x8a\x7a\x17\x37\x4b\x5a\x71\xe0\xc7\xc2\x41" "\xcb\xfd\x7f\x08\x4e\x18\xa5\x0b\xea\x51\x2a\xda\x90\x22\x10\xa3\x88" "\x1f\xfc\xd4\x20\x71\xab\x09\xc4\xd8\x01\x39\xd8\x98\x0d\x6d\xc5\xd1" "\x2c\x25\x95\xce\xd4\x45\xca\xf2\x2f\x80\xd8\xfb\x1a\x4c\x24\x3d\xa4" "\x7f\xad\xb8\xe2\x8e\x9c\x04\xfe\xa8\x20\xa8\xa2\xf0\x32\xf5\xad\xff" "\x8b\x7d\x92\x69\xe6\x3d\xb6\x8d\x19\x6b\xf7\xf4\x16\x40\x5e\x52\xb6" "\xb8\xab\xd8\xbb\x9d\x96\x94\xb8\xb5\xed\xda\xe3\x48\x20\x99\x63\x73" "\x8c\xd9\x71\x0b\xd6\xc2\x91\xaf\x1c\x8e\xaf\x0e\x52\xd2\xf2\xf2\x4b" "\xef\x8c\x8b\xc9\xf7\x7e\xed\x40\x10\x4e\x07\xc8\xee\x1b\x4c\xb3\x58" "\xfc\x73\xe2\x65\x3f\xef\x62\x32\xb5\xe9\xf5\xd0\xbe\x26\xb9\x1a\x0b" "\x79\x67\xed\x5e\x3b\xf1\x0c\x44\x94\x24\xff\x4d\x11\x95\x1d\x96\x36" "\x77\x00\x1d\x95\x76\x42\x5d\x6a\x9c\x45\x03\x26\x8a\x40\x7d\x74\x85" "\x4f\x5e\x1c\xaa\xcc\x0c\xcc\x46\x3d\xc5\x6e\x68\x4d\xb1\xd8\x0b\x37" "\x0d\xa2\x38\x91\x55\x79\xab\x82\xcd\xbd\x7d\x15\x5a\xdf\x10\xb9\x6e" "\xd7\x11\x00\xea\x92\x83\x4e\x8a\x4e\x4f\x5b\x7b\x83\x1b\xff\x6f\xb4" "\xfe\xbe\x01\xbb\x39\x8e\xa4\x06\x54\x46\xf2\x77\xf1\x07\xaa\x3c\xc0" "\x6e\x0b\x7a\x6e\x98\x43\x4b\xf5\x77\x44\xba\x9e\xcb\x8e\xff\xe7\x04" "\xd7\xf8\x52\xe1\x6b\xc3\x3a\xc1\x13\x64\x9f\x75\x40\xb7\xa7\xa6\x7c" "\xf5\x49\x3b\x40\x0c\xe0\x6e\x57\x1d\x48\x5a\xf1\x73\x29\x38\xb7\x9d" "\xed\x4d\xe7\xda\xd9\x7a\x7e\x1c\x0b\xe7\xbd\x47\x9d\xc2\x64\x64\x7b" "\xb7\x65\x03\x16\x84\x23\xe3\xf6\xfc\x95\xf8\xac\x8e\xa3\x5e\x39\xf4" "\x76\xab\x54\xe8\x82\x86\xfc\xf7\x3e\xea\xd1\xf7\x94\x78\x44\x65\x59" "\x2f\xe4\xad\x11\x2a\xc6\x3b\xbc\x3b\x3f\x35\xb8\x7c\x40\xbc\x5f\xa6" "\xe3\xca\x6c\xad\x87\x8f\x97\x72\xa6\x1a\x23\xaa\x00\x49\x1a\x9e\x24" "\x42\xeb\x90\xa3\x2a\xf2\xbd\x74\xe9\x9d\x07\x5b\xcd\xa2\x02\x88\xbf" "\xc3\x0f\x3b\x00\xa7\xe8\xe1\xa0\xb4\x79\x15\x73\xab\xd6\x52\x84\xbb" "\xb5\x3e\x2b\x7d\x66\x72\x39\xb9\x5b\x33\x2d\xd4\x23\xe4\xd7\xc5\x12" "\xde\x55\x9b\xd5\x3f\xde\x52\x85\xad\xd9\x79\x5b\xda\x81\xec\x14\x26" "\x20\xe6\x93\xaf\x9c\x78\x7a\x44\x99\xdd\x76\xca\x0d\x77\xd9\xc7\xc4" "\x04\x3e\x53\x7e\xc6\xc1\xcd\x0b\x9a\x64\x2b\x12\xad\xc7\x82\xa0\xe0" "\x0f\x6c\x1e\xd7\x37\x9d\x5f\xff\x4c\x2f\xeb\x19\x18\x2d\xb9\x77\xf6" "\x57\xb1\x95\xe4\x71\x0f\xf0\x0f\x78\xe3\x5a\x14\x61\x19\x89\x74\x95" "\xb0\xe1\xa0\x06\x8a\x66\x06\x29\x2e\xe7\x2b\xf6\x5a\xdc\xd2\xcd\x29" "\xb4\xe5\x9a\x4b\x3f\x82\xea\xc7\x7d\x52\x54\x01\x3d\x03\xd2\xfb\x25" "\x11\x97\x55\x58\x90\x67\x41\x91\x2d\x09\x30\x4f\x0d\x4c\xf0\x8c\x8f" "\x62\x69\x0c\x67\x96\x8c\x86\x9f\x75\xa4\x02\x52\x24\xd8\xe8\x4b\xaf" "\x7a\x42\xe0\x1b\x4e\xcf\x7e\x55\xd7\xc4\x58\x39\x77\x8c\x22\x66\x88" "\x0d\x1b\xb7\x3e\x3a\xad\x61\x8d\x1a\x4f\x8d\x5a\x16\x91\x4d\x64\xd7" "\x04\x38\xa8\x85\x12\x64\x9f\xd4\xca\xa9\x05\x06\xe5\xa2\xd5\x8a\x33" "\xec\xae\xbc\x9b\x2e\x5f\x8a\x4f\xbe\xca\x57\xc8\x29\xae\x02\xfd\x2d" "\xc1\x46\xe9\x39\xc3\xd2\x95\xad\xa7\xdf\x4a\x07\xe7\x4b\x35\x6c\x6f" "\xfd\x7a\x9c\x54\x6b\x9e\xdd\xf7\xe0\x13\xcb\xcb\x2b\x57\xae\x0d\x22" "\x52\x49\xd7\xe0\x6a\x41\x56\x81\xd9\xf5\x97\xa0\x60\xfd\x55\xe3\x9b" "\xd5\x6f\x04\xb8\x63\xef\xec\xa4\x58\xa0\xcb\xc5\x4b\x66\x0d\xb5\x0c" "\xa4\x0d\x27\xa3\xfd\xa3\x41\x68\x60\xe6\x91\xcf\xc7\x80\x59\x3f\x06" "\xb4\x67\x70\x09\x68\xbb\x91\x8c\x32\x54\x7e\x37\x8b\x14\xb4\xe0\xdc" "\xd1\x1c\xb0\xb2\xfb\x36\xea\x70\x94\x6a\xc6\x22\x90\x18\x4b\x4e\xed" "\x38\xb5\x1c\x32\x2a\x75\x36\x7b\x50\xf5\x58\xe0\x63\xbf\x36\x33\x41" "\xa1\x7c\x28\xdd\xcb\xf9\xce\x53\xda\x06\xf2\x63\x03\xfd\x15\x64\x23" "\xa2\x5f\x68\x68\x09\xbc\x98\x45\xa7\x8e\x0c\xc3\xd9\x4e\x04\xbc\x8d" "\xa8\x5f\x22\xa4\xa8\xec\xe2\xc4\xac\x2c\x79\xe5\x4d\xcc\x4e\xab\xc6" "\x1e\x06\x70\x60\xad\x88\x03\x77\xa7\x1f\xe0\xc2\xc0\x30\x52\x56\xe4" "\xf3\xc6\x37\x57\x5f\x08\x6e\x4a\xe3\xd7\xab\x5d\x10\x6f\xde\x03\xd2" "\x4c\x47\xdc\xcb\xa3\xda\x23\xa2\x44\xc1\xf5\x0a\x4f\x60\xcd\x8d\x71" "\xb7\x73\x90\xc5\xce\x6d\x56\x12\xfd\x02\x60\xa2\xf3\x33\x89\xb0\x64" "\xae\x18\xc6\x67\x1d\xec\xa6\x28\x74\x23\x2f\xd3\x80\x8f\xb2\x18\x81" "\x51\xa4\x3d\xe6\xce\xbc\x7e\x24\x51\x06\x18\x3f\x7d\x92\x9f\x1e\xef" "\xf6\xf9\x72\xda\x3e\x3d\x96\x71\x70\x24\x79\x25\xfb\x0f\x04\xbf\x38" "\xe8\x8d\x06\x32\x1f\x9f\xf9\xd2\xc2\x96\x55\x3d\x84\x2b\x69\x03\x6a" "\x2b\x6d\xe2\xaa\xd3\x87\x9a\xed\xee\x72\x3f\xf0\x07\x36\xf7\xb0\xdf" "\xfe\x61\x82\x10\x41\x05\xff\x0f\x0b\x63\x6f\x51\x92\xd6\xbb\x5a\xe7" "\xef\x95\x08\x25\x82\x7d\x2f\x3d\x62\x85\xd8\x3a\xed\xca\x3f\x31\x47" "\x4e\x0a\xd5\x0c\xe6\x29\x0a\x0e\x54\x6c\x30\xd9\x00\xe5\xb4\x20\x8e" "\xcc\x8b\x3a\xca\x0b\xa3\xd1\x10\xfc\x3c\x0a\x7e\x00\x4a\x53\xe5\xd0" "\xba\x1c\xc1\xc2\xbb\x42\xc3\xdb\xcb\xb4\xce\xb6\x67\x41\x51\x93\x2a" "\xe5\x6f\x6b\x03\xcc\x34\xce\x45\x0c\x29\x2f\xec\xd2\x45\x6d\xdc\xf4" "\x2b\x07\x5e\x6f\xd4\x93\x05\xfb\xf2\x65\xa3\x6f\x3c\xff\x61\x32\x1d" "\xd6\x0f\x16\xe8\x44\x08\x9d\x65\x91\x30\x94\x76\x72\xa2\xd0\x59\xe0" "\x4a\xf9\xef\x65\x3e\x8a\xfe\xc9\x26\xb5\xa5\xd4\x11\xf6\x0a\x2a\x43" "\x54\x37\x09\x5a\x1d\xf8\xdc\x60\xa6\x16\xbd\x1a\x1c\xe7\xb5\x25\x1e" "\xd8\xf9\x05\xbe\xcf\xfe\xbd\x63\x5e\xee\x8f\xf0\x05\x5c\x40\xf1\x46" "\xf1\x35\x0a\x40\x6b\x85\x3e\xcb\x00\x5c\x6e\xde\x4d\xc2\x70\xce\x67" "\x51\xcf\xf9\x15\xaa\x27\xf5\xf6\xb0\x73\x6d\xa1\x4c\x99\x49\xde\x59" "\x9d\x57\x86\x8c\x29\xcc\x97\xad\x03\xbd\x89\x50\x2a\x34\xb8\x8a\xd2" "\x9c\x87\x62\xd0\xdc\x24\xa6\xdf\x75\x98\x21\x88\x2a\x32\xe7\x05\x31" "\xca\xb5\x1f\xa1\x75\x2a\x4f\xc4\x9c\xf0\x70\x6c\xb2\x4d\x20\x31\x74" "\xb2\x94\x0f\x29\xef\x8b\x0c\xe6\x5b\x40\xcf\xde\x4e\x0c\x73\x10\xc6" "\x85\xcc\x8d\xe8\x38\x4e\x48\x5a\x95\x11\x92\xfa\x8c\x36\xc1\x1f\x9b" "\x88\xa4\x8c\xaf\x02\x7d\xca\x48\x0c\xaa\x4f\xcc\xae\x70\xea\x6c\x83" "\x7e\xb8\x2f\x92\x6a\xd7\x69\x1c\x77\x09\xf2\x17\x22\x0d\x71\xf6\xe3" "\x74\xfb\x85\x22\xa8\x4c\x11\x8b\x5c\x25\xf3\xd5\x6a\xcf\xb2\x5a\xfb" "\xe6\x76\xfc\x9e\x57\x4b\x6c\x5a\x59\xc0\x0a\x0b\xbe\xef\xf6\x1f\xd8" "\x2a\x16\x77\xf3\xda\x9b\xb5\x96\x13\x3d\xb4\x91\xa8\xf1\x1b\x94\x5d" "\x93\x0c\x8a\x67\xde\x9c\xe8\x00\x25\xc7\x64\xd5\x18\xef\xcb\xae\x25" "\xd9\x19\x4d\xc9\x6c\x31\xed\x02\xc6\x3b\x1a\xc9\x76\x71\x5f\x72\x33" "\xff\xed\x7c\xb6\xe9\x29\xbb\xb5\xaf\xab\xd3\x4b\xc3\x7c\x09\x5a\xcd" "\x0a\xbb\xbd\xb1\xea\x48\xe4\x0a\x30\xac\x99\x55\x0f\x0c\xcc\xa1\x9e" "\xce\xf5\xac\xb2\x60\x4c\x48\xff\xfb\x53\xb3\x52\xd1\x14\xfa\xc7\x2d" "\x6f\xc0\x19\xdd\xec\x55\x84\x06\x66\x8f\x77\x3f\xed\x94\x76\x14\x81" "\x33\xc0\xf9\x00\x00\x00\x00\x01\x00\x00\x00\xfa\x08\x9d\xc5\x7e\x59" "\x40\xf2\x9a\x5f\xd3\x3d\xc7\x99\x13\xff\x48\x85\x37\x94\xfd\xaf\x89" "\x1d\x71\xde\x94\xc4\xa4\xfe\xd0\x54\x4e\x09\xf2\xbd\x57\x8b\x07\x00" "\x30\x31\xb8\x60\x2f\x08\xca\x8a\x79\xfa\x5e\xbf\xd5\x47\x7f\x4d\x4f" "\x03\x1c\x3e\xfe\x0d\xb2\x73\x44\x6a\x99\xd0\xcb\xe2\x1a\x3c\xf4\x3f" "\x3b\x82\x77\x4e\x46\x57\xbb\x4f\x96\x75\xad\xba\xf7\x1c\x52\x95\x3f" "\x0b\x18\xa6\x1e\x05\xa9\xc7\x70\x53\x6f\xba\xd2\x15\x84\x8f\x82\x38" "\xe8\x73\x0b\x90\x85\x18\x9e\xa4\x62\x17\x80\xda\xc5\x00\xd7\xd7\xdc" "\x78\x15\xb4\x5e\x23\x2f\x86\x59\x24\x98\xf1\x51\x5a\xc8\xc5\x03\x06" "\x01\x35\x24\xcc\x5f\x0a\x74\xb6\x7b\xc8\x5d\x43\x5d\x33\x2c\xe6\x9f" "\x00\x64\x1c\x86\x8c\xe9\x1b\xe8\x4b\x78\xac\x35\x8f\x35\xb1\x8d\x69" "\x67\x9d\xf4\x19\x7d\x3b\xe8\x55\x44\x17\xcf\x44\xae\xe6\xdc\x62\x3f" "\x68\xce\x33\x88\xdf\x18\x16\x8e\xfa\x1c\x87\xc7\x76\xcb\xda\x79\x2f" "\x61\x10\xb6\xaf\x17\x8e\xb8\x20\x0a\x91\xdf\xb7\x2c\x1e\x23\xb5\xe5" "\xa6\x6b\x5a\x3e\xe3\xf4\xc2\xbb\xa2\xcc\xac\x93\x9d\xcb\x03\x60\x06" "\xb8\x6e\x89\x40\x93\x92\x2a\x95\xfd\x70\xba\xba\x94\x24\xa3\xd0\x32" "\x7a\x0f\x20\x9f\xe1\x0b\x39\xf3\xce\xc3\xf6\x69\xd3\x01\xa2\x83\x4e" "\x58\xfd\x56\xf9\x4d\x62\x2d\xcc\xf6\x53\xf0\x8e\x77\x6c\x9f\x3e\x1b" "\x0e\x5b\x3c\xde\xf1\x33\x83\x4b\x93\xc4\x1c\x70\x43\x8d\x51\xa0\xb1" "\x27\x26\x28\x68\xd4\x9c\xa9\x16\x23\xc3\xd8\xb7\x5c\x2c\xce\x0b\x77" "\x1b\x9a\xc9\x41\xbb\x96\x02\x9e\x78\x22\x24\xa3\x68\x6a\x7c\x0d\xd1" "\x64\xe1\x62\xed\xe6\x67\xe0\xe5\x81\x7e\x7b\xde\x85\xad\x3b\xf3\x0a" "\x6a\x5b\xdc\x42\x0f\x75\x16\x79\xbe\x74\xa0\x2f\x84\xaa\x93\xb9\x71" "\xc3\xf4\x5a\x67\xd1\x55\xf7\xec\xb1\xd5\x28\x46\x60\x91\x8d\xbf\x10" "\x2b\xc1\x6f\x49\x6f\xb6\x2a\x12\x90\xe6\xb8\x8d\xda\xff\x55\x74\x05" "\x83\xcb\xa1\x30\x76\xaf\xd6\x23\x27\x66\x34\xe0\xc1\x16\x63\xbe\x50" "\x76\x69\x80\x94\x90\x95\x00\x3e\xf5\xbc\x6f\x90\xa9\x8b\xba\xd4\x36" "\xb6\x79\x28\x51\x3e\x70\x11\x52\x24\xf6\x72\xca\x2a\x24\xe2\x7b\xb9" "\x8b\xd5\x28\x8c\x49\xea\x23\xd4\x7e\xf1\x3c\x5f\xf2\x8c\x43\xce\x53" "\xca\x16\xa6\xca\xec\xcc\x1f\x60\x12\x26\x25\x3c\x4a\x38\xa8\x8a\x93" "\x82\x8f\x6c\x80\x05\x47\xca\xdb\xaa\x6d\x7a\xd2\x6d\xb6\x18\xcc\xcd" "\x38\xa6\x71\x50\x7c\xad\x5b\xa0\x06\x5c\xe2\xed\xba\x81\xa0\x59\xb9" "\x5c\x36\xc5\xd0\x4a\xb4\x56\xfd\x6f\xd8\x1e\xc3\x73\x8e\xbe\x54\x6d" "\x97\x3c\x08\x86\xa5\xe7\xb8\x3d\xd9\xc2\xf5\x8f\x5d\x6c\x19\x51\x9e" "\x67\x57\x5b\x37\x32\xa4\x86\x55\x5f\x8d\x8c\x4a\xe0\x04\xa6\x2e\x8d" "\x07\xab\x2c\x8e\xf7\x4c\xdb\x96\xaa\x99\xd7\x5a\xeb\x1c\x25\x98\x59" "\x96\xf2\x81\xd7\x11\x06\x91\x0a\x3c\x3d\xa1\x7d\xe3\x5e\x04\xdb\xe0" "\x0e\x2b\x7b\x75\xec\x2f\xed\x17\x7a\x7f\x2d\x04\xfb\xf6\x8b\xd0\xb8" "\xaf\x68\x2b\x30\x91\x18\x67\xd4\xd1\x49\x7b\xa0\x60\xb6\x62\xf4\xe9" "\x7a\x8e\x7f\xd3\x61\x30\x15\xcc\x34\x30\x23\x77\x49\x7c\xd0\x8b\xcd" "\xc2\x9f\x06\xda\xe2\x40\x82\x0d\x2c\xcd\xdb\xf8\xc9\x5c\x76\xa4\xba" "\x5d\x3e\x1b\x37\xa6\x23\x69\xce\x3f\x79\xfb\x74\xeb\xd9\xbc\x82\xc3" "\xfa\x3e\xda\xd4\x03\x4b\x67\x15\xc2\x85\x3f\xa7\x78\x1c\x97\x4b\x5a" "\x4e\x54\x1e\x8b\x69\xbf\x4b\xd6\x53\xfc\xce\x4e\x43\x40\xd9\x40\x9f" "\xe9\x11\x2e\x4d\x25\x3a\x3b\x7e\x9d\x43\xf4\x42\x61\x27\xb1\x0f\x2d" "\x5d\x3f\xcd\x21\x93\x49\x0f\x7d\x93\x3e\x0c\xc5\x3d\xae\x55\x2f\x2d" "\x7c\x9d\x77\xb8\xf9\xb2\x7c\x59\x10\x5c\xfa\xe4\x3a\x0a\xab\x31\x4a" "\x08\x20\xfb\xb5\x68\x4b\xf2\x09\x86\xe3\xbe\x21\x56\x88\xb4\x29\x38" "\xd2\x72\xc4\xc0\xed\xd1\x7b\xcd\xc8\x4a\x51\x4d\x24\x83\x45\x6d\x6c" "\xfb\x4f\x5c\x12\x18\x85\x9e\xe5\x5b\xfc\x77\xda\x36\xc9\xc7\x57\x34" "\x93\x2a\x12\xfd\x03\xdf\x38\x23\x20\x63\xed\x92\x02\x4f\x8e\xe7\xc2" "\x1f\x31\x41\x29\xfe\xb1\x06\x70\xbb\x4d\x6a\x0a\xd4\xfb\x3d\xc5\x7a" "\x64\xcf\xe6\x50\x9a\x07\x70\x65\x0c\xde\xc0\xef\xd5\xe0\xb1\xfd\x29" "\x43\x3c\xf8\x71\xc9\xdd\xbe\x64\x83\x19\xbd\x48\x13\x57\x32\x6a\xc1" "\xeb\x32\xb4\xbe\xf4\xad\x89\xab\x61\x22\xe9\x2d\xc7\x86\xde\xca\xc8" "\x86\x24\xa4\xa3\x96\x3a\xe7\x71\xf8\x02\x3b\x9a\x92\xe4\x46\x11\x47" "\x64\xc5\x3d\x7e\xfc\x07\xe3\xea\x77\xa9\xda\xac\x5c\xab\xbe\x64\x8a" "\x22\x3e\x24\x9d\xb6\x21\x02\xef\x7b\x7b\x6d\x06\xdf\x46\xb6\xff\x91" "\x39\x11\xb8\x98\x48\xa4\x7a\xec\xc0\x56\x3f\xb0\x6b\x6d\x77\xfe\x1d" "\xaf\x45\x41\xcf\x61\x91\x05\xab\x68\xe0\xbc\xdf\x7a\x05\xaf\x22\xb0" "\x55\x13\x23\xbf\x33\xde\xc8\x16\x7d\xf2\xb7\xfa\xc6\x2d\xc9\xe2\x86" "\xdd\x34\x62\xf4\x88\xc8\x2a\xd1\x94\xf7\xfd\x5d\x3c\xa7\x2f\xe9\xc0" "\xc3\x7c\xdb\x6d\x75\x68\x43\x26\xe5\xcb\x30\x31\x9a\xb3\x33\xfc\x70" "\xbb\x19\x73\x20\xac\xda\x16\x1d\x2e\x68\x5e\x78\xac\x2c\xb1\x41\x72" "\x23\xf6\x47\x42\xb1\x2a\x31\x6d\x59\x0b\x18\xa4\x17\x3b\x2a\x10\x5a" "\x38\x1b\xaf\x6f\x38\x3e\xc2\xe8\x1d\x04\x86\x0b\x5c\xc5\x36\x47\x5d" "\x7c\x5d\x05\xbd\x6a\x7d\xb1\xa5\xd9\x39\x30\xba\xcb\xa8\xc1\xde\x63" "\x70\x7b\xd2\x47\x85\xe1\x9f\xc1\xf1\x5b\xa7\x24\x66\x0a\xc0\x0d\x0f" "\x2e\xbb\xcd\x55\x28\xb8\xcb\xe4\xf3\xca\x33\x2e\x86\x11\xe9\x37\xa3" "\x10\xfc\x79\xd2\x34\xbe\x6c\x1c\xd0\x9d\x6a\x5c\xb0\x6a\xb3\x6a\x9d" "\x66\x71\x88\x14\x4c\x81\xf8\x6a\xaf\x08\x51\x76\x35\x73\xb3\x6c\xc2" "\x14\x62\xba\x4f\x3d\x6e\x95\xd3\x8d\x1e\x9b\x94\x30\x85\x66\x1d\x23" "\x4e\xf6\xd0\x79\xbc\x9d\x84\xc7\x44\x7c\x85\xba\xba\x88\x26\x34\x51" "\xba\x10\x55\x9e\x1c\xe3\x26\xfe\xe5\x07\x4b\x26\xb5\x48\x72\xe6\x90" "\xa9\xa1\xe5\x89\xe1\xc4\x44\xda\xa3\x22\x4b\x29\x2b\xf9\xec\x4a\x60" "\x4d\xc5\x12\x76\x00\x84\x08\x4f\x27\x38\x6c\x89\xa1\x19\x0b\x89\x05" "\xf0\xd7\x20\x50\x8c\x0e\xd6\x92\x72\xf3\x96\x72\x58\x05\x48\x01\x88" "\xaa\x46\x02\xa2\x6e\x83\x3c\x16\xaa\x50\x79\xc0\x57\x7a\x82\x03\xec" "\x0b\x2b\x92\x9e\xf3\xb4\x10\xbb\x42\x7c\x16\x8b\x7f\xef\xd1\xbe\x65" "\x2f\x06\xef\xc6\x1c\x7a\x29\x5a\x5d\x07\xa9\xfd\x61\xbd\x5b\xfe\x67" "\xac\x5f\x74\xe4\x85\xa6\x6c\x92\x95\x0a\x1b\x46\x02\x57\x08\x4c\xa3" "\xa3\x48\x99\x43\xad\x45\x03\x00\x96\x72\x34\xb4\x87\xfa\x3d\xef\x40" "\x10\xf9\x99\x15\x19\x65\x62\xeb\xb0\x84\x6b\x7a\xc3\xeb\xa4\x76\x46" "\xaf\x62\x85\x58\x2b\x44\x02\xf6\x4a\xa6\x84\xdf\xf7\xd9\xcf\x81\xfb" "\xe1\xaa\x88\x95\x9f\x79\x06\xf0\x68\x39\x38\x9f\x2a\xd5\x6e\xfb\x50" "\x29\xaf\xe1\xd5\xce\xac\x99\xa3\xe6\x98\xf4\x9f\xf0\xda\x7d\xb0\x6d" "\x7c\x9e\x94\xa8\x77\x3a\x13\xfa\xb9\x3d\xef\x13\x96\x67\xb4\xdc\x6b" "\x74\x1b\xd2\x76\x9d\xa7\x78\x6a\xce\xcb\xe3\x15\xf9\x00\x6b\xb6\xb7" "\x2a\xbe\x5b\xdc\x58\x7d\x8d\x5a\xa8\xf6\x7a\xae\xfe\xf6\x81\x97\xfd" "\x2e\x78\x74\xd9\xb7\xda\x2c\x3a\x56\x18\x72\x0c\x12\xe8\xfc\x31\xdb" "\x3e\x33\x4c\x47\xab\xcb\xf1\x0c\x61\x81\xec\x14\xaf\x4f\x9e\x90\xe1" "\x9a\x35\x36\x0a\x79\x3b\x1e\x9b\x33\x6e\x49\xb3\xed\x67\x56\x8a\x86" "\x0c\xd4\xc2\x98\xf9\x67\xba\x32\x3d\x31\x58\x21\x95\x96\x29\xe5\xb7" "\xaa\xac\x36\x7e\x1d\xdb\x8a\x1c\x5d\x61\x50\x0a\xfa\x69\x33\x1a\x4c" "\x90\x86\x18\x52\xf5\x33\x65\x7b\x28\xb9\x7a\x34\x3b\xc5\x31\xa1\x1f" "\xf6\x34\xb1\x57\xa6\xd8\x59\xa3\x5f\x0d\x2a\x59\x53\x75\xe1\x1a\x32" "\x45\x75\x75\xf1\xd7\x3d\xa0\x33\xbf\x5e\xed\xa1\x23\x37\xb9\xfd\xd4" "\x6b\xce\x19\x2d\x3a\xaa\xa2\x40\xa8\xc6\x5b\xf4\x77\x04\xd6\xaa\x64" "\xa9\x53\x1f\x9d\xe1\x4a\x96\xfc\x9f\xe3\x80\xdb\x35\xdd\x5e\xc5\x23" "\x21\xc6\x7f\xb4\xc1\x8a\xbc\xaf\x22\xfb\xe8\xf6\x02\xed\x20\x12\x32" "\x25\x13\x17\xe1\xa1\xb7\x1e\x1e\x2c\x92\x4a\x92\xd8\x46\x85\xde\x34" "\x8e\xec\x97\xfe\xd9\x54\xb7\xf6\x68\x1d\xdf\x52\x1b\x4e\xe0\x3a\x1a" "\xeb\x2e\x44\x6e\xe2\xa7\xf4\xdf\xa3\x7b\x1c\x53\x83\x11\x39\xfc\x62" "\x4c\x14\xdc\xc4\xd1\x44\xcc\xdf\x75\x8f\xd9\xf3\x44\xb4\xcd\xc1\xdf" "\x70\xf6\xa2\x4f\xa7\x8c\xab\x13\x6c\x91\x2d\x1e\xbf\xfa\x70\x53\xcc" "\xbc\x9b\x94\x45\x76\x22\x36\xdc\xa4\x09\x82\x0f\x73\x83\x70\x11\x7d" "\x5c\x36\x9d\xfc\x50\xfd\x42\x27\x7f\x14\xee\xaf\x29\x11\x0a\xed\xcd" "\x50\x30\x08\xc4\x29\x14\xd0\x4e\x21\x9a\x8b\x6c\x01\xe3\x37\xd0\x47" "\x24\x91\x9b\x07\x15\x7e\x22\x75\xba\x63\x65\xa9\xdb\xa5\xeb\xc8\x01" "\x9b\xd1\xaa\x1b\x86\x68\x02\x3f\x64\xcf\x47\xe1\xb4\x9b\x4f\xbc\xfc" "\x10\xd5\x60\xbb\x74\x40\x5c\x90\x75\x15\x04\xdb\x81\x00\xd8\xa8\xa1" "\xa3\xff\x84\xd9\x8f\x12\x62\xfb\xbd\x6b\x96\x2f\x49\x2b\x95\x31\xa7" "\x41\x1c\x08\xe7\xe5\x6e\xb0\xf8\x38\x07\x5f\x75\x4b\x6a\x39\x5b\x6b" "\x58\xa8\xe4\xc4\x7e\xb4\x6b\xfa\xba\x2a\xc9\x48\x00\xa3\x96\x74\x9d" "\x18\xba\x0e\x62\x19\xf8\xd6\x16\xec\x71\xa1\xe6\x0b\x3b\xcc\x24\xe1" "\x9d\x4a\x20\xdd\xbc\x6a\x87\x1e\x6d\x7e\xfa\x50\xa3\x62\x61\x05\x98" "\xd8\x92\xa5\xad\xec\xbc\xfe\x21\x75\x34\xde\xee\x36\x20\xdf\xc8\x8c" "\x79\x92\xec\x2e\x71\x0e\x08\x3e\xf0\xa5\x0c\x20\x62\x14\x05\xf6\x54" "\x80\x4d\x1a\xf4\xf2\x4d\x22\xb8\xca\x48\xf2\x63\x03\xe6\x96\x91\x27" "\xa7\x4f\x0b\x27\x6a\x56\x24\xc3\xb8\x44\x10\xd4\xd5\xee\x3c\x62\x60" "\x58\x76\xe6\x0a\x88\xdf\x2b\xd6\xe8\xdb\x8c\x7e\x48\x6f\xdb\x45\x21" "\x78\x56\x3e\x7a\xdd\x6b\xc1\x26\xb7\x21\xb9\xef\x8b\x12\x18\x19\x89" "\xb8\x70\x31\x57\x3a\x40\x10\xd8\x8e\x34\xf1\x5a\x23\x44\xe4\x80\x8b" "\x74\xc9\x9a\xd6\x8f\x0c\x2a\xca\x4e\x8d\x50\x43\x97\xc0\x3e\x13\x28" "\xc4\xb1\xec\x43\xfd\x90\x2d\x20\x6c\x3c\xfb\x63\xd7\x54\x1a\xc5\x7f" "\xdb\xc7\x0b\x00\x33\xf8\x75\x14\x28\x61\x01\x23\x1f\xe7\xe7\x96\x68" "\xc8\x02\xe1\xc2\x3d\x61\x54\x0c\xdf\x13\xa5\xe6\x75\xb7\x36\xe2\x21" "\xdd\xc2\x9a\xb7\x47\xd9\xc6\x4f\x62\x13\xf5\x1d\x3c\x1d\xed\x2e\x2b" "\x0e\xfc\x4e\x45\x18\x3d\x90\x46\x8f\x61\xec\x17\x20\xf7\xa0\xb8\x79" "\x47\xe2\xc5\x41\x25\xce\xbe\x65\x63\xee\x44\x15\xd8\x86\xbb\xe8\x69" "\xd1\x7d\x36\x37\x1c\x94\x2c\x11\xdb\x1e\x13\xc1\xdd\x40\xed\x24\xca" "\xba\xf7\xee\x80\xea\xe6\xc4\xdb\x93\x4e\x98\x2d\x96\x19\xd7\x53\xdc" "\xd6\x79\xc5\x65\x13\xdc\xc3\x1a\x58\x2e\x31\xb2\x59\x04\x3a\x0d\x03" "\x37\x1c\xd2\x94\xf4\xcc\x02\x80\x42\xc7\x50\x70\xc9\xb5\x34\xa2\xd7" "\x9f\x16\x4a\xb9\xd7\x73\x29\x57\x95\x28\x0d\x15\x84\xca\x66\x4b\x53" "\xb2\x63\xfe\x2e\x23\x53\x4d\x27\xb0\xd8\x57\x42\xfa\xe8\x06\x1e\x03" "\x18\x77\x95\x12\x9d\xd2\x72\x04\x1c\x6e\xb9\xc1\x0c\x34\x06\xda\x1f" "\x75\x2f\x4c\xa6\x97\xbd\xbd\xdd\x74\x97\x5c\xd4\xdb\xba\x56\x87\xfb" "\x30\xac\x4f\xd5\xd2\x57\x94\x94\xea\xc7\x30\x53\xa6\x38\x21\xa8\x52" "\xcf\x41\xa8\x0f\x66\x68\x00\x6f\x7e\x1c\x4e\x30\xb4\x8d\x63\x8e\xba" "\xb4\x70\xc5\x58\xd4\x2b\xae\xed\x1a\xdc\x8f\xc7\x1f\x73\xe9\x5f\x3c" "\xa2\x12\xa4\xb0\x09\xb5\x08\xe8\x98\x98\x72\x7f\x80\x56\x85\xe4\xe7" "\x65\x0a\x29\x61\xd6\x2c\x11\x7d\x1e\xe9\x01\x72\x36\xa6\xbf\xfa\x0c" "\x36\xae\x11\xbc\x52\xd3\x46\xc8\x33\x99\xe4\x3c\x42\xcd\xb9\xf4\x43" "\xaa\x30\x71\x09\xa9\x7e\xe6\x6c\xeb\x7a\x29\xee\xb2\xf1\xa2\xbb\x3e" "\xe1\x49\x22\x29\x11\x6d\xb0\x73\x01\xb2\xaa\x41\x26\xae\xe7\x77\x5d" "\xaa\x2d\x0e\xab\x4d\x20\x6f\xae\x11\xb3\xc6\xb5\x65\xdc\xc4\xc7\xb4" "\xdd\x1c\xf2\xab\xec\x81\x15\x0d\x06\x29\x80\x3f\x6e\xb2\x21\xbe\x38" "\x4b\x87\x72\xfe\x6d\x6c\x4f\xa9\x8c\x92\x8a\x9d\x0a\x02\xe9\xff\x8b" "\xb7\xa2\x16\x8d\xbe\xbe\x14\x03\x23\xd9\x3b\xee\x89\x83\xc4\x96\xbc" "\xcf\x75\x2c\x37\x2b\x79\x5a\x34\x93\x62\x4c\xef\xb3\xcf\xeb\x43\x07" "\xbd\x39\x82\x6c\xac\x1e\xa3\xf1\x89\x12\xde\xef\x1b\x8c\x8d\xb3\x0b" "\xc0\x16\x99\x0a\x47\x7b\xc0\xa9\x25\xfb\x36\x45\x3a\x9e\x21\x35\x4b" "\x2d\x7e\x6e\x3d\x4c\xa4\xdd\x20\xf2\x7a\x8d\xb0\x54\x29\xd4\x4b\x7a" "\x48\x53\x65\x19\x1d\xc4\xba\x97\x7a\x81\x59\x58\xfa\xf6\x43\x48\x13" "\xa9\xf4\x04\x60\x54\x76\x3d\xd5\x5d\xbb\x7f\xae\x89\x2b\x74\x6e\x16" "\x9a\xe0\x46\xae\x33\x61\xa9\xf7\x5c\xf6\x22\xb0\x3f\x75\xb1\x63\x3d" "\xa8\x64\x39\x5b\xd1\xc3\xa5\x94\xfa\xb0\xb1\xfb\x37\xf0\x88\xdd\x1f" "\x27\x76\xe2\xb7\x95\xc7\x86\x35\xc2\x02\x6a\x8c\xe7\xff\x40\x96\x8a" "\x19\x60\x78\x60\x49\xa2\x17\xdd\x88\x72\xac\x0c\x01\xf4\xba\xfc\xf2" "\xd3\xd7\x51\xdd\x46\xa5\xe1\xbe\xc0\x05\x40\xa9\xca\x7a\xfc\xa3\xef" "\x37\x57\x5d\x4a\x8b\x12\x91\xd0\x5b\xe9\x49\x13\x09\x28\x90\xa9\xb4" "\xbf\xff\x39\xed\xbf\xf3\x07\xe5\x65\x48\x96\xe7\x92\x28\x77\x7c\x0f" "\x8e\xa4\x6c\x55\xbf\xe1\x9e\x52\x2b\xf4\x57\xab\x4e\x6b\x01\x67\xd7" "\x76\xdb\xcd\x01\x60\x59\x83\x70\xa1\x2c\x4a\x03\xe4\xed\xc8\x2b\x24" "\x5a\x76\x08\x79\x7b\x03\xd4\xed\x89\xdf\xc2\xa5\xbf\x07\xb9\xfc\xb2" "\x51\xfb\x86\x08\x55\x3f\x3b\x37\x74\x81\x87\x17\xa9\xaa\xbe\x6b\x2d" "\xed\x81\x15\x15\xba\x45\x4b\x39\x0a\x60\x65\xbb\xc5\x95\x52\xf3\xbf" "\xe5\x1d\x38\xf1\x39\x79\x2e\x1a\xae\x60\x09\x3a\x7c\x57\x70\xb5\x2a" "\x17\x30\xfe\xb1\x04\x9c\x14\xa7\xd5\x26\x1d\x64\x4f\x6b\x73\x8e\x22" "\xee\x72\xaa\xfa\x42\x2b\xd9\x3f\x61\xe1\xcc\xac\x0a\x5e\xf4\x72\x6c" "\x66\xf6\x1b\xb5\x39\xac\xb9\x37\xbd\x63\xda\x82\xc7\x00\xc0\x86\xe5" "\x62\x1c\xed\x22\xb5\x2b\x63\xd0\x41\x26\x6f\xc2\x58\xfb\xfa\x66\x41" "\xae\xf2\x2e\x97\x80\x4e\x51\x38\xad\x2c\xe4\x40\x5e\xaf\x76\xbb\x0a" "\xcd\x7f\xc6\x1b\x2d\x6d\xe4\xaa\xbc\x5c\x28\xa8\x50\xfc\xf2\x19\xcf" "\xf7\x7c\x97\xd3\xcb\x6b\xec\x00\x67\xc1\x71\xb9\x12\xd1\x1d\x82\xc5" "\x6c\xba\xd5\x6c\x00\x32\xa9\x65\x7d\x4c\xdd\x1e\xac\xac\xa5\x3f\x40" "\xf5\xe3\xfe\x91\x11\x27\xe1\xcd\x30\x78\x13\x51\xf1\x80\xe1\x41\x39" "\x33\xce\xe2\xd4\x6c\xa0\xee\xa3\x1e\xe0\x1f\xe4\xe9\x9a\x56\x7e\xdd" "\x0b\x10\x56\x5d\x47\xb8\x7c\x8a\x48\x36\x61\x43\xe8\x89\xe5\x2d\x0f" "\xf1\x3c\x92\x0a\xea\x09\x2c\x25\x45\xfa\x9b\x70\x56\x20\x4f\xec\x15" "\x65\x49\xd3\xc0\xa9\x97\xbc\x1c\xf4\xa0\x13\x38\x48\x3b\xf5\xc6\x9d" "\x69\x58\xae\x03\x8f\x1c\x3e\x3b\x84\xba\xeb\x2c\x1f\x9e\x06\x4c\x07" "\x50\x60\x2c\x34\xc6\xc4\x83\xc3\x16\x39\x1d\x97\x5f\x94\xf2\x1f\x6d" "\xfe\x74\xe9\x2c\x33\x22\x8b\x40\x8a\x9e\x2b\x9a\xbc\xda\x33\xc4\x97" "\xab\xba\x9c\x48\xa6\x3e\x5c\x8f\x1a\x8d\x0f\x4c\x24\xd3\x6a\x44\xe1" "\x60\x1e\x8a\x09\xe8\xa5\xc7\x17\x9b\xd4\xc4\x4b\x17\xe5\x42\xdd\x99" "\xca\xce\x87\xaa\xb6\x0a\x5e\x53\x32\x5d\x54\x4c\x99\x1b\x6f\xa5\xde" "\xff\xa4\x9f\xd8\x86\x33\x29\x80\xde\xec\xa9\x22\x9c\xb2\xf6\x7f\x49" "\x5a\x7b\x74\x31\x53\x85\x4e\xd8\x1e\x16\x23\xb1\x2d\xbd\x65\x51\x2d" "\x08\xa5\x73\x2f\xee\x2d\xb3\xfb\x45\x5c\xf6\xdf\x5a\x17\x01\xa2\xb8" "\x67\x46\x33\xc6\x79\x21\x62\xdc\x86\xac\x76\xe3\x0d\xa2\x25\xb0\x16" "\x7a\x7e\x70\x4a\xd3\x3b\xa6\x94\xf9\xc9\x02\xaf\xbe\xed\x58\xee\xf6" "\x09\x87\x47\x67\x05\x3f\x59\x41\x4d\x4d\x3e\xcc\xbb\xcd\xbc\x7e\xba" "\x99\x7c\x71\xf9\xb1\xf5\x13\x9b\xb0\x20\xd5\xda\xe1\xdb\x6e\x2d\xcf" "\xbb\x51\xb5\x37\x1b\x08\xbd\xbc\x33\x12\xb0\x5e\xe6\xd8\xc0\x3c\x8b" "\x5a\x7d\x4f\x23\xda\x45\xf2\x76\x39\x4f\x22\x2b\x1a\x0b\xdf\x4e\x26" "\x03\x24\x3c\xdb\xa6\x0e\xe0\x53\x03\x87\xc8\x8b\xb4\x57\xca\x99\x32" "\xf2\x28\x3a\x4d\x55\xbb\x11\x95\xe6\xd3\x25\xed\x93\xf7\x14\xe2\x19" "\x08\xb1\xba\xaf\xa4\x67\xf1\xce\xc7\xfa\x26\xe5\xc3\x84\xee\x68\x28" "\xe7\x79\x78\xbd\x1a\xbd\x01\x4d\xe5\x49\xa5\xe5\x96\x6f\x2b\x2f\x4b" "\xa0\x00\xf9\xd7\x7f\x1a\xbf\xe3\xa6\xc3\x37\xcd\xb8\x52\xc1\xec\x59" "\xf6\x1b\x63\xd5\x43\xf3\x06\x2d\xd2\x61\x6a\x16\x3e\xd7\xca\x60\x16" "\x8b\x03\x47\xb5\xc5\x64\x6a\x67\x8d\xaf\xb4\xc5\x02\xc3\x33\xa0\xa4" "\x8f\x03\x41\xb4\x7f\x5c\x59\x46\xe4\x2e\x57\x1d\xb0\xbf\xa0\x68\x2a" "\x44\x9c\xa6\x4e\x71\xb5\x66\x1a\x84\x29\x75\x18\x23\x99\x24\x5c\x6d" "\xe2\x41\x51\x2c\x67\xac\x91\x8d\x7e\x0c\x5c\xb6\x65\x65\x01\x0e\x88" "\x1b\x83\x33\x56\x7c\xa5\x84\x32\x1e\xad\x1c\x38\x3b\x09\x9d\x8b\xf1" "\xc5\x6d\xac\x08\xcb\x21\x8c\xde\x42\x26\xad\x42\x0d\x6d\x63\x13\xf9" "\xc4\x88\x4d\x63\x94\x72\x23\x04\xfd\xaa\x76\xe6\x1d\xb8\xc0\xd5\x4e" "\xb1\x15\x13\x44\xc4\x1c\xe1\x13\x02\x72\x92\x8e\xec\xb2\xf9\xf0\xf2" "\x3c\x75\x26\x22\x37\x4e\xb1\x22\x3a\x80\xef\xcf\x0b\x93\x7d\xff\x7d" "\x81\x3d\x7b\xe0\x34\x02\x26\xc0\xa7\xb1\x63\x74\x1d\x9a\xec\xaf\xcb" "\x7d\xda\xe5\xa2\x19\x32\x33\x23\xf6\x21\xc8\x02\xbe\x82\x39\x9e\x06" "\xd2\xe1\xcc\x58\x2e\x75\x9f\xfa\x30\x3c\x51\x03\xf8\xa4\x4d\x71\x29" "\xd2\x85\x3b\x02\xe5\x06\xab\xda\x57\xad\x28\x36\xd7\xff\x16\xf9\x52" "\x32\x14\x9f\xbe\xb8\xb6\x2e\x58\x6d\x35\x36\xbb\x4a\xe0\x42\xec\xd9" "\xe2\x5d\x1d\xee\x78\x93\x53\x07\x1f\x9c\x89\xd4\x36\x10\x00\xc4\x7b" "\x76\x35\x56\xe8\x90\x2f\x1f\x25\xcb\xd8\xae\x71\x67\x9e\x03\xff\x27" "\xdb\x0e\xc7\x5e\xee\xe3\xfc\xca\xfc\x7f\xcf\x22\xc3\x77\xac\x60\xd3" "\xc6\x1a\x43\xcb\x53\xab\xf6\x16\x21\x18\xf2\xef\xc8\x6a\x5c\xe8\x0e" "\x69\xa0\x2b\xc1\xdb\x80\x01\x8b\xee\xef\x6d\x56\x79\x41\x23\x2e\x44" "\x12\xa9\x58\xed\x01\x2b\xf7\xa8\x32\xc1\xea\xf6\x81\x34\xec\xab\xc4" "\x92\x7a\xd6\x66\xb3\xd0\xf2\x1d\x4e\x8d\x52\xfa\x37\xe0\xa9\x75\x11" "\x24\xef\xed\x8b\xf4\x75\x44\x29\x91\x38\xa6\xf6\x9d\x89\xe2\x95\x67" "\x7f\x12\x60\x6c\x79\xb7\x24\x51\xc2\x63\xfc\xa3\xee\xc2\x2b\xf0\xc4" "\x7c\x64\x11\x59\xa0\xbb\xfb\x3b\x2b\x03\x15\x4a\xf5\x33\xe5\xc0\x6a" "\x14\x9e\x52\xad\xcf\xae\x31\xbf\xc5\x5f\x30\x06\x4a\x89\x03\xc8\xd3" "\xb8\x28\xd2\x75\xa9\x37\xb1\xe4\xad\xff\xa0\x59\x7d\xa5\xe2\x53\xb5" "\x0b\xd7\x1b\x33\xf0\x57\xff\xef\xf0\xb2\xa0\x82\x9b\x3b\xf3\x33\x50" "\xfb\xe6\x7c\x7c\x79\x03\x4f\x80\xd6\x9e\x6a\x21\xbe\x49\x5a\x84\x8d" "\x32\x8f\x41\x6f\x15\x96\x64\x91\xb2\x18\xea\xb3\x90\x54\x4e\x39\xd4" "\x98\x25\x8a\xd8\x0d\xda\xe2\x48\x63\x4c\x84\x5c\xbe\x6f\x1c\x1e\x93" "\xe7\xc2\xb0\x20\x75\x41\x1e\x07\x5f\xe9\x36\xbc\xc7\x5f\x4a\x4e\x1a" "\x36\x87\xcb\x3d\xbb\xb6\x1c\xb3\x1d\xdf\xbb\xc8\x7a\x18\x59\xb3\xa4" "\x8f\xcc\xdd\x8e\x59\x15\xc8\xbf\x4e\xeb\xe8\xf7\x09\x3c\xef\x6a\x7a" "\x91\xc8\x68\x29\x15\xf9\x90\x8c\x85\x4c\x48\x3e\x90\xc9\x64\x34\x67" "\x29\x28\x84\xd2\x84\x13\x4d\xba\xdd\xaf\xdb\xc7\x4d\x94\xa5\xf9\x71" "\x37\x19\xd6\x2b\x4f\x6b\x42\x36\x80\x3d\x21\x01\x81\x84\x7c\xa2\x71" "\x29\xfd\xe2\x64\x15\x68\x95\xf4\xe1\x82\x2e\xf7\x8a\x3b\x21\x5e\xf5" "\x6d\x7e\x36\xd2\xb9\x4c\x93\xf5\xe9\x31\xa0\xd1\x3a\x3a\x30\x30\x06" "\x1c\xe6\x2d\xe5\x95\xee\xcf\x47\xea\xe6\xbf\x69\x85\x30\x14\x57\x57" "\x70\x0d\xf1\x8f\x66\xfd\x72\x61\xa1\x2c\x11\x9d\x66\x79\x66\x3b\x3c" "\x0f\x99\xd1\x70\x5a\xeb\xe6\x6d\xc8\x62\xeb\x21\xcc\xb7\x36\x0b\x93" "\xf5\x45\x07\x14\x9b\x57\x7a\xbf\x52\x11\x13\x99\x1e\x06\xf3\x45\xe8" "\x28\x2f\xdc\x18\xde\x67\x3e\x1c\xa7\xb1\x88\xee\x34\xb1\x4f\x37\xf8" "\x6d\xdc\xf9\x7f\xef\x0b\x91\x3c\x33\xcf\x8e\x5d\x5d\x33\x70\x7d\xbc" "\xdb\xe4\xb2\x7c\xef\x05\x66\x70\x25\x2f\x18\x67\x35\xcd\xd0\x2f\x6e" "\xd6\xbf\xe5\x31\x8a\x70\x4f\x00\xe3\x4f\xfc\x4f\xda\x98\x55\xbf\x37" "\xc5\x1b\xe6\xa7\x42\x3e\x44\xdd\x8a\x98\x88\x3c\x8f\xa8\x2c\xa3\x7c" "\x90\xd6\x81\xfb\x7a\x0d\xb9\x15\x57\x6b\x50\xe4\x9a\xff\x54\x5b\x99" "\xaa\x3a\xa6\x34\x3b\x81\x4b\xa0\xbf\x64\xe5\x3b\x2a\x1e\xdc\xae\x22" "\x31\xbf\x20\xd6\x5e\x4b\xb4\xda\x6d\xc8\x38\x21\x20\xed\xe6\x52\xad" "\xfb\x7c\x30\xa4\x6e\x0e\xe7\x84\xcb\xde\x74\x56\x3d\x83\xeb\x8d\x89" "\xa1\x57\x3f\xa1\x04\xfd\xdc\xa9\xd4\x83\x3c\x49\xdc\x90\x4b\xda\x90" "\x54\x26\xc7\xde\xe3\xe4\x8b\x59\x6c\x8e\xe2\x01\xbe\xa5\x7f\xed\xb1" "\xa0\x64\x94\x57\xea\xac\x3c\x5b\x5f\x45\x19\xaf\x3a\xdb\x66\xf1\x0b" "\x86\x1e\x71\x1c\xd4\x03\x44\x48\x89\x0e\x15\x04\x7c\x2f\x89\x02\x58" "\x82\x68\xb5\x64\x50\x51\xf3\xf3\x96\x8e\xd8\xd6\x30\xe0\x50\xcc\xef" "\x0d\x01\xb6\x1f\xfe\xad\xe5\x1e\x4e\x72\xd8\xfd\x46\xbb\xa4\xc2\x00" "\x09\x39\x6e\x98\x4c\x42\x4d\x17\x49\x34\xa6\x7a\x19\x30\x66\x5f\xbe" "\xa0\x4c\x80\x9e\x7c\xda\x0a\x2c\xdf\xd3\xa1\x4d\x6b\x99\xc3\xa8\xd8" "\xb3\x69\x18\x25\x83\x04\x56\x87\x6f\x18\x8f\xf8\x71\xfc\x86\x1e\x4c" "\x6a\x0c\xa3\x77\xdc\x1f\x0c\xb0\xf9\x29\xf7\xeb\x1f\x5d\xa0\x45\xd9" "\xa5\x88\xa3\x93\x31\x2a\xca\xcc\xa5\xc5\xa3\xb1\x5b\xb1\xb4\x88\xb0" "\x8f\xc4\x0a\xd6\x5a\xe2\xc1\xdf\x18\x7e\xcc\xd8\x37\x75\x25\xa8\x1d" "\x80\xdf\x57\x57\x9a\xe5\x2f\x77\x5f\xb2\xef\xdd\x17\x2a\x41\xc3\x70" "\x30\x0f\xcc\x59\x4c\x26\x35\xdc\xf5\x0e\x9e\xb9\xd3\x4f\xa8\xb4\xbb" "\xfd\x13\x07\x84\x22\xe3\xa7\x73\x4a\x8a\xe6\xcc\x09\xe3\x9d\x07\xc7" "\xee\x19\x83\x8f\x8d\xa4\xcb\xaf\xe4\x16\x2c\x8f\x8d\xc4\x4e\x28\x48" "\x40\xbd\x0a\x5c\x80\xbf\xc6\x57\xc2\x2e\x37\xe0\xd9\xa9\x6d\xda\x34" "\xa5\x1c\xe6\x16\xc9\xcc\xdc\x95\x95\x5c\xf8\x5d\x93\x86\x0d\xa9\x02" "\xab\x30\xf1\x1a\xa3\x33\xea\xcc\x25\xc4\x79\x81\xd8\x63\x60\x38\x76" "\x1e\xd4\xd8\x4f\xcb\xb0\xca\x92\xdd\x2e\x07\x86\x3b\x95\x05\xb4\x51" "\xc3\xc4\x9e\x36\xa1\x72\x52\x75\x78\x12\x30\x49\xff\x2d\xc2\xb4\xe2" "\x58\xa3\xf6\x98\xa1\x2c\xa4\x70\x5a\x6f\xd0\xce\x6b\xc4\xf1\x76\x7b" "\x4d\x9c\x2e\x57\xc9\xed\x13\x88\x52\x79\x64\xac\x96\xff\x5e\x4c\xf5" "\xad\x6f\xdb\x6a\x85\x3b\x43\x90\x5d\xf3\x2a\xf8\xbd\x78\x8b\x52\x0f" "\xd5\x26\xcb\xb9\x51\x95\xa1\xbc\x00\xd6\x54\xcb\x08\x0a\xcd\xf6\x79" "\x38\x51\x7a\x6c\xda\xc7\x41\xd8\x67\x30\x35\x8b\xe1\x64\x65\xb4\xe1" "\x30\x1f\x47\xf6\xa4\x44\xc4\xe8\xd2\x98\x0b\x8b\xd9\x8a\x8d\xcd\x66" "\x17\xcd\xe0\xb2\x87\xe2\xd1\xf5\x91\x67\xb5\xc4\x45\x14\x6f\xa4\x97" "\x28\x11\x1b\x8a\x27\x29\x42\x8c\xab\xd0\x2f\xac\xb8\xfb\xdd\xbd\xb2" "\x76\x96\x80\xf2\x88\x64\x8d\x6b\xaa\xc5\x3e\x0d\x90\x93\x35\xda\x3e" "\x2b\x4c\x13\xeb\xd4\x1f\x32\x82\x0c\x9f\x49\x1e\x91\x24\xca\x44\x4a" "\x05\x32\xf6\x0e\x28\x16\xe1\x5a\x58\x10\xba\xa9\x1f\x64\x45\x4a\xa3" "\x55\xf9\xd3\x62\xc7\xd1\xa4\x61\x56\x16\x89\xd0\x8b\x13\x50\xa2\x16" "\xb6\xf1\xbd\xa5\x7a\xae\x07\x06\xb3\x71\x0a\x1b\x8e\x52\xa7\xe3\x08" "\x4e\x60\x0b\x5e\xe3\xdc\x54\x0b\xba\x0c\x16\x26\x7d\x54\x93\x04\xa7" "\x84\x06\x59\x01\x00\x01\x00\x00\x00\x00\x00\x91\x27\x92\xd4\xa7\xb8" "\x4f\xa0\x6e\x73\xb9\xdd\xbc\x2f\x06\xc4\xed\xc1\x9d\x25\xf5\xa1\x98" "\xc7\xe3\xfc\x62\x26\x84\x2e\x62\x15\xda\x5d\x82\x6f\xcf\x59\x49\x61" "\x28\x89\xf7\x8e\x9d\xe3\x9d\x4e\x64\xb8\x6b\x70\x33\xb5\x71\x7a\x21" "\xf8\xf2\xb8\x1c\x79\x9a\x3f\xc0\xbf\xe6\xf5\x83\x7b\x25\x2e\xef\xa3" "\x60\xc9\x1a\x61\x48\x29\x6b\xd1\x9d\x50\xa3\x43\xd9\x09\xc1\xed\xf5" "\x26\x1e\x70\xc8\xdf\xb2\xc4\x88\x94\x0c\xf2\x36\x94\x1a\xd3\xfd\x01" "\x24\x7e\x37\x90\x2a\x4b\xbf\xdd\x18\x39\xf7\xc9\x2c\x26\x0a\x2c\x49" "\x40\x22\xfa\xc0\x86\x29\x30\x3c\x8e\x54\x10\x8d\x78\xae\x2c\x94\x28" "\x9c\x7f\x99\x8b\xa3\xb6\x22\xb4\x89\x31\xee\x7c\x17\xc5\x9f\x54\x99" "\xd2\x82\x46\x7a\x1b\x80\x50\xac\xc9\x4a\x0b\x17\xb2\x18\x36\xc8\x0b" "\x69\xf5\x19\xb9\xb0\x77\xd1\x8e\x33\xc0\x27\xfa\xad\x56\x2f\xa0\x9f" "\x2c\xc6\x12\x0f\x8c\xf5\xee\x18\xcf\x7d\xb9\xd7\x29\xff\xbb\x9d\xe5" "\x88\x85\x71\x53\x02\x00\x00\x00\x00\x00\x00\xfa\x00\x9b\xe0\xa9\xef" "\x3c\xec\xcd\xb2\xb3\x19\x68\xdb\x55\x5b\x26\xc5\xc9\x4e\x38\x2d\x06" "\xeb\xf6\xd3\x56\xe8\xca\xa8\x5d\xef\x58\x13\xdd\x15\x96\xd8\x23\x92" "\x4c\x4f\xb6\x3d\xba\x5b\xd0\x94\xcb\x64\xf2\x04\xd1\xe5\x9d\x31\x28" "\x77\x15\xf8\x31\xa1\xf0\xbe\x95\xd8\x74\x9f\x21\x66\xba\x0b\x0b\x6b" "\x64\xa3\x79\x91\xbe\x1f\xe1\xc1\xe9\x22\x83\x5f\x2d\xa0\xc0\x74\xec" "\x94\x13\x56\x1d\x52\x16\x65\x76\xb1\xc4\xf1\xe1\x8f\x07\x8d\xc0\x46" "\xd1\xc2\x84\x96\x4b\x80\x21\x7b\x55\xc5\x9a\x47\x47\x40\xc3\x64\x91" "\x16\xb3\x3e\x92\x74\x79\x73\x6b\xff\x60\x05\x85\x9c\x7c\x00\x59\x8f" "\x22\xcb\x8e\xca\x38\xaf\x80\x2f\x4c\x86\x83\x6e\x83\x30\x49\x2a\xc7" "\xef\x37\x07\x89\x0a\x8f\xf8\x56\xdc\x77\x86\xed\x76\x9b\xba\x75\xb1" "\x84\x84\xb2\x57\xb3\xb0\x22\xee\xb5\x1a\xa7\x20\x63\x9f\x79\xe6\xe6" "\xbd\x3d\x3c\x9a\x61\xf7\x82\x2a\xbe\x56\x28\x67\xb4\x69\x3f\x0b\x2f" "\x61\x13\x5a\xae\xaa\x51\x0b\x31\x11\x2e\xfe\xec\x48\xd2\x60\x2c\x6d" "\x4f\x2d\xde\xeb\x51\xbb\x03\xab\x18\xc1\x8d\x8e\x12\x7a\x37\xe2\x28" "\x81\xfe\xbc\xa4\x77\x42\xb9\x33\x2d\x3f\x22\x51\x00\x3b\x1a\x46\xc4" "\x0e\xca\x11\x1d\x02\x44\x64\x66\xb6\x69\x56\x8c\x70\x97\x1b\xd3\x32" "\x54\xca\x57\x77\x77\xf1\x26\xf8\x6f\x8a\x36\x65\xf0\x65\xb6\x45\xff" "\x26\x1e\x78\xe0\xf5\x32\xe8\x3a\x81\xb9\x9c\x5d\xe3\x48\x8d\xe7\x4c" "\xa8\x2d\xaa\x0e\x4e\x74\x04\xef\xf9\x11\xae\x95\x5a\xcb\xb8\x00\xf9" "\xf9\x1b\x77\x4e\x47\x2b\xc1\x4a\xa9\x28\x17\xb6\xd8\x58\x77\xb1\x86" "\x1a\x6c\xa9\x2c\x03\xc8\x3b\x6f\x14\x90\x06\x8b\xad\x8e\xab\x1f\x58" "\xc9\xe9\x1e\x10\x29\x68\x3d\xe2\xca\x45\xc9\x99\x66\x96\x60\x31\xee" "\x86\xd8\xc9\x99\x5e\x06\x12\x48\x0e\x2a\x6d\x53\x96\xe8\xae\x36\x1d" "\x6f\xd2\xe2\x45\x57\x61\x3a\x11\x91\xf5\x01\x9d\x4c\x80\x78\x62\x80" "\x13\x51\x2e\xa3\xa5\x95\x32\xef\xff\xa6\xcf\xe4\x97\x0d\x28\xd8\xc7" "\xaa\x8c\x86\x6c\x42\x75\xff\x2b\x0b\x4e\xf1\xa7\xe5\x68\x54\xd7\xee" "\x4b\xc4\x45\x71\x3d\xa9\x34\x9d\x13\xe3\x0a\x4a\x80\x2c\xb9\xdb\x2f" "\x10\x28\x0f\xd9\xea\x04\x3b\x5b\x34\x80\x44\x1e\x8e\xd2\xd9\x07\xea" "\xe1\x25\x9b\xef\xba\x9d\x87\xa0\x4c\xe4\x2b\x00\x10\xc7\x0a\xf1\x57" "\xb9\x0e\x0b\xf7\x25\x49\x85\x2f\xd1\x22\xed\xd6\xcf\x34\x75\xf7\x68" "\x52\xb1\x3b\x4b\xf8\x87\xcf\x32\xe2\x5a\xd3\x4a\xed\x7f\xd5\xa6\xe9" "\x7b\x30\x7f\x9b\x4f\xf1\xc0\x7b\x2b\x55\xbe\xef\x5e\xf3\xdd\x96\xee" "\xb2\xa5\x77\x20\xc1\x82\x09\xd9\x11\xa5\x53\x41\xce\xe6\x7e\x6f\xf5" "\x77\xf7\xac\xab\xa0\x1c\x2c\x96\x90\xb1\x5a\x3b\x8a\xaa\x5b\x9d\x73" "\x41\x96\x46\x7a\x8c\x07\x4b\x2e\xee\xb5\xae\x93\x1d\xdf\x3d\xeb\x15" "\xb1\xa8\xd6\x03\xe7\x21\x25\xc2\xe6\x8a\xd2\x06\xf2\xc4\x25\x2a\x65" "\x9f\x82\x48\xff\x88\x2a\x8e\x54\x12\x6e\xbc\x0d\x77\xa4\x61\x01\x07" "\x22\x72\x46\x0e\x68\x3d\x46\x52\x79\xa3\x69\x5b\xe6\xb6\x4c\x9e\xeb" "\x4a\x57\x6d\x95\xfd\x52\x0b\xe4\x2e\xab\x5c\x95\xcb\xac\xe0\xdf\xd8" "\x0e\x2d\x67\xba\xb9\xf6\x83\xa1\xcc\x9c\x00\x6c\x02\xf0\xf9\x0a\x21" "\xa0\xf5\x12\x18\xc6\x28\xf5\x60\x8f\xbf\x1a\xbc\x79\xaa\x63\x45\x2b" "\xde\x10\x02\x38\x30\x33\x57\x8f\x32\x98\x0e\x37\x79\xa8\xed\xeb\x22" "\x6f\x6d\x3f\x9b\x36\xd8\xf0\x7b\xdd\xd7\x47\x9b\x60\x34\x6a\x4b\x4f" "\xa8\x83\x94\x0e\xd8\xd8\x34\xda\xd4\x40\x59\x60\xa4\x40\x9a\x62\x55" "\xe8\x75\x3d\x0c\x0a\xd0\x96\x0f\xf3\xef\x48\xce\x93\xfb\xe6\xb1\x65" "\xe8\x6e\xab\x36\xfc\xcb\x8b\x98\x9f\x5b\x54\xe6\xcc\xaa\x19\x74\x9f" "\xf0\x65\xa0\xa7\x32\xd1\x5c\x41\xb9\x07\x2b\xbc\x6f\x07\xe1\xfd\x5a" "\x3d\xf2\x77\x58\x74\xe4\x6b\x61\xed\x50\x71\x4e\x8c\x40\x3f\xbe\xd6" "\x88\x4e\xc0\x6f\x52\xab\x71\xd2\xc1\x91\xfc\xc5\x6a\xc0\xb1\x7b\xa3" "\xc4\x6d\x2d\xab\x3e\x11\xc7\x93\x83\xbd\x88\x67\xff\x14\xb5\xfb\xca" "\x73\xb9\xae\x59\x4b\x6a\x09\xfb\x73\xa2\xe8\xf1\x5a\xee\x59\x15\x0e" "\x8d\x6d\x3d\xad\x96\x59\x02\x5d\x04\x5b\xbd\x1b\x9c\xa2\x57\xc6\x7b" "\xb7\x8a\xbe\x8f\x7e\xb9\xc8\xb3\xbc\x32\x95\x1c\x41\xf7\x39\x0b\xac" "\xc8\xc7\x05\x9a\x2a\x9b\x07\x8a\xb5\x04\x13\x60\x5a\xec\x60\x4e\x46" "\x66\xa6\xac\xe7\x65\xb0\xe7\xab\x55\x8f\xe6\x23\x2f\x27\x03\xd0\x78" "\x11\xe3\xd0\xac\x5b\xf9\x43\x4e\x87\x87\x6e\x99\x25\x0e\xe9\xdb\x65" "\x27\xa8\xcc\xb4\xa3\xee\x3b\xde\x73\x85\x63\xc9\x74\x6f\x94\x1c\xf2" "\xcd\x7e\xfa\xcd\xbd\x25\x93\xca\xfd\xbe\x51\x71\x86\x4b\x29\x82\xb5" "\x4d\xc5\xa3\x2c\x86\x63\x8c\x0e\x65\x0a\x33\x16\x25\x03\x3b\x8d\xd6" "\x58\x51\x96\x5a\xe7\x91\x88\x03\x49\xd5\xcd\x52\x54\x8f\x44\x22\xa3" "\x17\xf9\x6e\xd7\x9e\x7c\xcf\x3b\xd6\x71\xe6\xdc\x70\x36\x5f\x52\x1c" "\x65\x20\x63\x86\xeb\x1f\x99\x57\x0a\x54\x4d\x11\xb3\xd3\x6f\xea\x28" "\x5f\x8a\x37\x70\xca\x30\x3a\x96\x5a\x0c\x1d\x59\x8e\xbe\x36\x96\xe6" "\x47\xbe\x73\x4c\xcf\x76\x0d\x3d\x47\xde\xc7\x5e\x23\x6d\x7a\xc0\x80" "\x19\xb6\x62\x2a\x7b\x9f\x08\xbc\x8f\x09\x37\xab\x75\xe7\x5a\x04\x7a" "\x73\x86\xbe\xfb\xd5\x6f\xc4\xb2\xf8\x9c\x85\xa7\xad\xce\x8d\xf9\x46" "\xcb\x3f\xaf\xe4\xee\xd2\x67\x8c\xaa\xdf\x1a\x91\x3a\xe3\x2b\x2c\x0b" "\x8a\x37\x98\x4c\xb7\x00\x34\x3c\x5e\x24\x60\x9f\x8c\x5d\xde\xff\x5e" "\x65\x38\x37\xa9\x33\x2a\x41\xc8\xe2\x14\x66\xa1\x3d\x79\x22\x41\x25" "\xd5\xf6\xa4\xfe\xf7\x9b\x5a\xda\xe7\xf4\xab\x7d\x35\x1c\x55\x40\x05" "\x45\xed\xd3\xc0\x06\x37\xbd\x27\x16\x48\x28\x92\x5e\x9b\xb5\xd7\x9f" "\x1f\x1e\x6e\xb3\x27\x0a\xb7\x99\xae\x38\x77\x2f\x77\x95\x65\xd9\x2c" "\x47\x50\x3d\xe6\x95\xf7\xaa\xd7\xdd\x2c\xda\x6f\x6c\x71\xe7\x55\xb3" "\x73\x72\x31\xb6\x47\x15\xbf\x07\x84\x9d\x34\x66\xe4\xf9\x22\x39\xf7" "\x33\x43\x6c\xe6\x74\x38\x9b\xd1\x69\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 8192); *(uint32_t*)0x20008b40 = 0; *(uint32_t*)0x20008b44 = 0; *(uint32_t*)0x20008b48 = 0; *(uint32_t*)0x20008b4c = 0; *(uint32_t*)0x20008b50 = 0; *(uint32_t*)0x20008b54 = 0; *(uint32_t*)0x20008b58 = 0; *(uint32_t*)0x20008b5c = 0; *(uint32_t*)0x20008b60 = 0; *(uint32_t*)0x20008b64 = 0; *(uint32_t*)0x20008b68 = 0; *(uint32_t*)0x20008b6c = 0x20000340; *(uint32_t*)0x20000340 = 0x90; *(uint32_t*)0x20000344 = 0; *(uint64_t*)0x20000348 = 0; *(uint64_t*)0x20000350 = 0x100000000404; *(uint64_t*)0x20000358 = 3; *(uint64_t*)0x20000360 = 4; *(uint64_t*)0x20000368 = 0; *(uint32_t*)0x20000370 = 1; *(uint32_t*)0x20000374 = 0x80000000; *(uint64_t*)0x20000378 = 4; *(uint64_t*)0x20000380 = 0; *(uint64_t*)0x20000388 = 0; *(uint64_t*)0x20000390 = 6; *(uint64_t*)0x20000398 = 0x100000000000; *(uint64_t*)0x200003a0 = 0; *(uint32_t*)0x200003a8 = 1; *(uint32_t*)0x200003ac = 0; *(uint32_t*)0x200003b0 = 0; *(uint32_t*)0x200003b4 = 0xa000; *(uint32_t*)0x200003b8 = 0; *(uint32_t*)0x200003bc = 0; *(uint32_t*)0x200003c0 = 0; *(uint32_t*)0x200003c4 = 0; *(uint32_t*)0x200003c8 = 0; *(uint32_t*)0x200003cc = 0; *(uint32_t*)0x20008b70 = 0; *(uint32_t*)0x20008b74 = 0; *(uint32_t*)0x20008b78 = 0; *(uint32_t*)0x20008b7c = 0; syz_fuse_handle_req(r[0], 0x200066c0, 0x2000, 0x20008b40); break; case 15: res = syscall(__NR_read, (intptr_t)r[0], 0x20008bc0, 0x2020); if (res != -1) r[2] = *(uint64_t*)0x20008bc8; break; case 16: syz_clone(0, 0, 0, 0, 0, 0); break; case 17: *(uint32_t*)0x20000280 = 0x50; *(uint32_t*)0x20000284 = 0; *(uint64_t*)0x20000288 = r[2]; *(uint32_t*)0x20000290 = 7; *(uint32_t*)0x20000294 = 0x24; *(uint32_t*)0x20000298 = 0; *(uint32_t*)0x2000029c = 0; *(uint16_t*)0x200002a0 = 0; *(uint16_t*)0x200002a2 = 6; *(uint32_t*)0x200002a4 = 0; *(uint32_t*)0x200002a8 = 0; *(uint16_t*)0x200002ac = 0; *(uint16_t*)0x200002ae = 0; memset((void*)0x200002b0, 0, 32); syscall(__NR_write, (intptr_t)r[0], 0x20000280, 0x50); break; case 18: memcpy((void*)0x200001c0, "./file0\000", 8); syscall(__NR_statfs, 0x200001c0, 0x20000480); break; case 19: syscall(__NR_bpf, 5, 0, 0); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000, 0x1000, 0, 0x32, -1, 0); syscall(__NR_mmap, 0x20000000, 0x1000000, 7, 0x32, -1, 0); syscall(__NR_mmap, 0x21000000, 0x1000, 0, 0x32, -1, 0); for (procid = 0; procid < 4; procid++) { if (fork() == 0) { use_temporary_dir(); loop(); } } sleep(1000000); return 0; }