// https://syzkaller.appspot.com/bug?id=b1b66afe508ac9ac95fa7f6081cf577807e431df // 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 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 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; } #define MAX_FDS 30 static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } if (symlink("/dev/binderfs", "./binderfs")) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } setup_binderfs(); loop(); exit(1); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } #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); } 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 loop(void) { int i, call, thread; for (call = 0; call < 9; 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); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); close_fds(); } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000100, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000100ul, 2ul, 0ul); if (res != -1) r[0] = res; break; case 1: memcpy((void*)0x200001c0, "fd", 2); *(uint8_t*)0x200001c2 = 0x3d; sprintf((char*)0x200001c3, "0x%016llx", (long long)-1); *(uint8_t*)0x200001d5 = 0x2c; memcpy((void*)0x200001d6, "rootmode", 8); *(uint8_t*)0x200001de = 0x3d; sprintf((char*)0x200001df, "%023llo", (long long)0); *(uint8_t*)0x200001f6 = 0x2c; memcpy((void*)0x200001f7, "user_id", 7); *(uint8_t*)0x200001fe = 0x3d; sprintf((char*)0x200001ff, "%020llu", (long long)0xee00); *(uint8_t*)0x20000213 = 0x2c; memcpy((void*)0x20000214, "group_id", 8); *(uint8_t*)0x2000021c = 0x3d; sprintf((char*)0x2000021d, "%020llu", (long long)0xee00); *(uint8_t*)0x20000231 = 0x2c; *(uint8_t*)0x20000232 = 0; syscall(__NR_mount, 0ul, 0ul, 0ul, 0ul, 0x200001c0ul); break; case 2: memcpy((void*)0x20000080, "./file0\000", 8); syscall(__NR_creat, 0x20000080ul, 0ul); break; case 3: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000040, "fuse\000", 5); memcpy((void*)0x20000180, "fd=", 3); sprintf((char*)0x20000183, "%020llu", (long long)r[0]); memcpy((void*)0x20000197, "\x2c\x72\x6f\x6f\x74\x6d\x6f\x64\x65\x3d\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x61\x30\xfc\x2a\xef\xed\x2e\x2a\xff\x1f" "\xaa\x63\x75\x73\x65\x72\x5f\x69\x64", 41); syscall(__NR_mount, 0x20000000ul, 0x20000140ul, 0x20000040ul, 0ul, 0x20000180ul); break; case 4: memcpy((void*)0x20004780, "./file0\000", 8); syscall(__NR_newfstatat, 0xffffffffffffff9cul, 0x20004780ul, 0ul, 0ul); break; case 5: memcpy( (void*)0x20000240, "\xfa\x91\x84\xac\x14\x26\x99\xca\x8f\xb6\x04\xbc\xf2\xcc\x50\x38\x1f" "\xfb\x9e\xc5\x38\xff\xe5\xa3\x21\x8f\x69\x15\x6c\x5e\x79\xee\xab\xb9" "\x53\xee\x59\x1d\x24\x07\xe5\x88\x87\xea\x47\x54\x6a\xcb\x99\x2d\xcd" "\xc7\x53\x84\x79\x4c\xcc\xbb\x3f\x75\x3f\x90\xd0\xd8\xf4\xc8\xcb\x73" "\x23\x8b\xbc\x70\xd1\x3f\x58\xcb\x4b\x15\xd7\xc0\x7a\x97\xd2\x6b\x1c" "\x5d\x36\x15\x64\x48\x5a\x79\x8b\xe3\xba\xfc\x45\xa0\x54\xd1\xf8\x19" "\xb0\xe0\xf7\x38\x68\xe2\x7a\xc9\x0f\x6c\xc4\x8e\x07\x58\x4a\x3f\x9a" "\xc2\x72\x71\xe8\xe7\xb2\xf2\xb2\x8d\xd0\xc9\xb8\x45\x0f\xdc\x0b\xd8" "\x53\xb5\xdd\x76\x74\xc1\x6e\xd3\xc0\x56\x43\xdf\x3a\xf6\xef\xe8\xb5" "\xfe\xb1\x26\x68\xe8\xa1\xb3\x1a\x17\x3c\x68\x46\xc6\xf0\xf5\x2e\x2d" "\x86\x69\xf2\xa3\x9a\xa6\x84\x29\xb4\x8f\x45\x03\x27\x5d\x54\x71\x21" "\x90\xdb\x4b\xac\xe6\x47\xc0\x16\xaa\xe4\x19\x90\xba\xa6\x95\x09\xcc" "\x76\xec\x27\x99\xf6\x47\x93\xb2\x52\x4d\xe1\x94\x6e\xb6\xae\x72\xad" "\x5c\x29\xe1\x58\xe3\x17\x4a\x8a\x6a\xf3\xd3\x04\x0f\x0d\xa3\xa3\xad" "\x9e\xee\xea\xbc\xda\x93\xab\xb9\x2a\x93\x2c\xa9\x1c\x44\x01\xec\x84" "\xc4\x4b\xcb\x7c\x6b\x33\xf7\xe5\x04\xae\xd9\xa5\xa6\xb1\x4e\x37\x96" "\x0d\xe2\xc6\x5e\xe0\x41\x58\x20\x4a\x20\xa0\x32\x34\x40\x16\xc5\x5e" "\xa1\x04\x94\x64\xb9\x27\x0f\x4c\xf9\xd7\xd4\x25\x89\x12\xef\x78\xe2" "\x5e\x10\x37\x6c\x2d\x62\x16\x12\xf6\xec\x1f\x10\x81\xd3\xc7\xdd\x91" "\xd5\xfa\xfe\x28\x5b\x70\x06\xf0\xc8\x66\x35\xfd\xea\xed\x0b\x18\x10" "\x3f\xb3\xee\xa8\xf3\x78\xc7\x94\x5a\xed\xb7\x36\x84\x9c\xca\x1a\xf5" "\x92\x11\x0d\x55\x52\x35\x98\xe8\xb3\xf8\x8b\x65\x6c\x83\x3f\x12\x5c" "\xc6\x9e\x54\x43\x07\x93\xe5\xe1\x8d\xf7\x5a\xbb\x48\xf5\xca\x1a\x2d" "\x8a\x7e\x11\xf8\xa3\xec\x6a\xe9\x0c\x70\x32\x75\x75\x80\xac\xf5\x10" "\xe5\x93\xde\x2e\x90\x11\xd3\x50\x35\x1a\xb4\x90\xbd\x07\xe2\x88\x15" "\x0b\xf3\x19\xbe\xc2\x90\x5a\x10\x10\x39\x08\xa6\x27\x59\x56\xb4\x95" "\x01\x07\x64\xd9\x0a\x2b\xc6\x57\xa7\x92\x8b\x57\xfd\x64\x76\x7a\xec" "\x60\x7e\xe1\xf1\x53\x6e\x3b\x84\x5e\x85\xb7\x30\x8a\x1a\x04\x61\x39" "\x5f\xfa\x18\x9d\x59\xde\xf9\x4e\x9e\xfe\x87\x6f\xb1\x2f\x20\x09\xd1" "\xef\x2d\x79\x2d\x19\x0a\x33\x37\x2f\x32\x69\xd3\x3a\x5d\x20\x42\x1b" "\x7c\xd2\xfc\xa0\xad\x09\xc7\x50\xbc\xd4\xee\xbb\xcc\xaf\xf2\x68\xa8" "\xab\xd7\x2e\xe9\xcc\x97\x68\x89\x16\x95\xbb\x5a\x55\xfe\x4d\xe7\x22" "\xd6\x46\x3b\x05\xe0\x98\x4f\x76\x64\x95\xc6\x0d\x2a\xbe\x4f\x3e\xa8" "\xdd\x92\xc2\xae\xab\x25\xc1\xcd\x67\x00\x36\x54\x74\x66\xf7\xec\x80" "\x29\xaf\x5a\x1f\x21\xd0\xba\x78\xb5\xd1\xca\xe5\xe9\x98\x02\xfa\xb8" "\xc3\x8e\x89\x69\x6a\x02\xce\x3a\x69\xfd\xd7\x6a\xf8\x7b\x71\xb8\x2c" "\x37\xd9\x7e\x7e\x5e\xf8\x35\xba\x61\xab\x25\xd6\x32\x22\x62\x03\x19" "\xda\x36\x32\x9c\xbf\x68\xa1\xf6\x61\xa1\xa3\x45\xb8\x5b\xdc\x5d\x37" "\x64\xac\x27\xdb\x2e\x4f\xe7\x50\xac\x27\x25\x27\x82\x9c\x79\x44\x67" "\xf9\x46\xbd\x87\x37\x33\xbc\x43\xde\xd5\x3c\xa6\x98\x00\x3c\x1d\xc7" "\x4f\x3e\x5f\x29\x44\x68\xd2\x4d\xe7\x08\x85\xd1\xed\xf3\x1c\x46\xd1" "\x70\x85\x7e\xfd\x78\xbf\xd6\xfa\x64\xe1\x31\x21\x57\x07\x51\x8f\x1c" "\x78\x7c\xd1\x74\x46\xce\xba\xcd\xaf\xf1\xd1\x25\x1a\x70\xd6\x5f\x61" "\x9f\x52\x31\x6f\xc1\x1c\x27\x80\x94\x3b\x90\x90\x84\x3f\xf7\x7a\xd5" "\xfa\xcd\xcd\xd9\xf3\x9c\xbd\x34\x44\x8d\xe6\x3c\x6d\x62\x55\x88\xf1" "\x73\xa3\x47\x91\x69\x81\x51\xfa\x27\x25\x61\x97\x59\xa4\x4f\xc3\xdd" "\xc2\x01\xfc\xb1\x2f\xf3\x0c\xee\xae\x11\x45\x0f\x4c\xa8\xfa\x9f\x4f" "\xef\x6c\xed\xd8\xcd\xe6\x28\x23\x2f\xac\x9f\x87\xd0\x41\x26\xe6\xdd" "\x69\x69\xf8\x8d\x52\xc1\x2c\xbe\x2c\x12\x08\x73\x69\x53\xa0\xa8\x21" "\xc0\x28\x1c\x2c\xa1\x7f\x29\xd0\xda\x0a\xa3\xe3\xf3\x63\x51\xb4\xc6" "\x13\xd4\x69\x84\xb3\x4d\x7a\xd6\xbc\xb7\xbe\x4e\xa9\x34\x64\x7e\x65" "\xec\xba\x73\x8d\x18\x43\xa7\x75\xeb\xb7\x35\x6e\x78\xda\x42\xd0\x99" "\x6d\x90\xf9\xc9\x9f\xff\x2a\x6a\xfa\x77\x70\x84\x78\x37\xb6\xc6\xbc" "\x41\xea\x82\x2c\x74\x94\x8e\x2a\x09\x50\x1a\x86\xa3\xc9\x92\x48\x8a" "\x9a\x7a\xbf\x1d\xc8\x4d\x5f\x69\x24\x74\x04\xb7\xfd\x7d\x9a\xa1\xa0" "\xd7\xff\x36\x86\xee\x6d\x31\xa6\x30\xea\xed\x4d\xe5\x4c\xef\xe4\x10" "\x40\x17\xd2\xba\x17\xfc\x9e\x56\xea\xb2\x22\x7a\x63\xfe\x01\x72\x99" "\x07\x08\x6d\x32\xf6\x04\x24\x42\x7e\xa4\xf4\x8d\xe7\xf5\x5b\x95\x97" "\xb0\x5d\x5d\x5f\x6c\xa1\x89\x03\xc3\x7a\x0c\xfe\xb0\x99\x82\xcf\x02" "\x4e\x0a\x3b\x3e\xe0\xf3\x91\x9c\x01\x40\x30\xa0\x75\x17\x1e\x26\x0b" "\xe7\xce\x1e\x03\xf4\xa8\x2d\x7a\x3b\x26\x16\xfc\x48\x60\x7c\x14\x4a" "\x82\xcd\xb3\x58\xca\x71\x28\x78\x53\x7e\xd9\xf6\x98\x61\x08\x29\xcd" "\x09\x88\x59\xa3\x43\xba\x4b\x0a\x53\x25\x8c\x32\x70\xcb\x8a\xeb\xf2" "\xbe\x2a\xf1\x4c\x5d\x85\x17\xb3\x3d\x34\x0e\xd8\xe6\xca\x59\xc3\x40" "\xbb\x63\xb8\x97\x8c\xd9\x30\xdd\xed\x4c\x1b\xda\x63\x96\xcc\xcd\xc1" "\x2c\xf4\x5f\x4b\x5f\x0b\x52\x63\x2d\xfa\x4d\xbf\x60\xc5\x60\xf1\x61" "\xd0\xda\x24\x26\x58\xa1\x09\x46\x85\xaf\x20\x66\xfa\x80\x62\x4d\x4b" "\xfd\x55\x44\x8a\x22\xd4\x9e\xfd\x73\x38\x9f\x57\x44\xbe\x15\x47\xb0" "\x31\xbd\x06\x5e\x5e\x65\x0c\x55\x29\x4a\xb6\x19\x61\x0a\xfa\x64\x72" "\xe1\x02\xb8\xea\x2c\xab\xe8\x02\x91\x01\x3d\x9a\xaf\x53\x23\xb1\x6a" "\x5b\x54\xf3\x74\xef\x93\x33\x48\x02\x26\x6e\xbd\x7a\x8c\x06\x04\x0c" "\xa2\xa6\x39\xa0\x84\xc5\xd7\x29\x22\xa2\xa2\x19\x85\xbe\xcb\x6e\x43" "\x08\x75\xd1\x33\x65\x3c\xd2\xd1\x79\x4c\xb5\x3c\x55\x99\x31\x9e\x32" "\x01\xa9\xff\xcf\xd4\x9a\x4a\xdc\x9d\x5b\x01\x2c\xf1\x94\x1d\x37\xc3" "\xe6\x98\xad\x0a\x86\x91\xc9\x0c\x9f\x3d\xbf\x73\xf7\xf6\x57\x09\x06" "\x36\x0a\x4d\x1a\x13\x1c\x9a\x2a\x9d\x3e\x5d\xf8\xf0\xb3\x77\x48\x6b" "\x73\xb9\x1b\x06\x0b\x7a\x79\x1a\x6e\x58\x6d\xe8\x6c\xcd\xdf\x79\x8d" "\x09\x58\xc8\x18\x3a\xfb\x92\x7f\x7f\xa4\x0d\xf6\x6f\x14\x33\x7c\x6f" "\x9b\xc3\x56\x09\x95\x14\xe0\x65\x7a\x29\x84\xed\xd2\xc2\xfc\xf9\xad" "\x0e\xe5\xab\x85\x87\xed\x15\x9b\xf2\x35\xae\xe4\xd3\xb4\x98\x32\xb7" "\xdc\x79\x97\xfc\x25\x73\x16\x9e\x40\x43\xd5\x0d\x4d\x06\xde\x5d\x37" "\x43\x7d\xef\x87\x70\xc0\xa2\xac\x07\x7d\xbe\x2b\x81\x62\xc2\x11\x21" "\x54\xdd\xc9\xd3\x37\x9e\xb1\x56\xef\x7f\x4e\x70\x55\x66\x6e\x3b\x1b" "\x32\x26\x78\x73\x37\xc2\x5b\x6e\x3e\x9a\x1f\x7d\xc1\xae\xb7\xa3\x9a" "\x72\x5d\x7c\x33\x71\x67\xd9\x75\xa8\xc9\xf3\xd7\xda\x8a\x26\x27\x06" "\xf1\x0b\xd3\x92\xf5\xd0\x8f\xdb\x66\xe2\xb5\x04\xae\x83\xbc\xa7\x64" "\xb8\xd6\x2b\xb0\x2c\xad\xe1\xdc\x7d\x66\xa5\xd3\xa9\x35\x00\x93\x1d" "\x4f\x4a\x1b\x25\x57\xb9\x34\x4f\x04\x64\x72\x3b\x87\x15\xb8\x94\x0d" "\x42\x33\xdf\xcc\xab\xd6\xc0\x4a\x08\x2f\x13\x71\x7d\x40\x1c\x5e\x12" "\xc6\x90\xd4\x08\x20\xee\x20\xee\xa5\x30\xa3\x8c\xc6\x6c\x53\x3a\x00" "\x10\x45\x02\xd2\x7e\x8b\x49\xc6\x89\x3a\xdf\x5f\x4a\xf7\x2d\xde\xf7" "\x73\x67\xb1\x7d\x04\x01\x6a\x7f\x77\x8d\x22\x6e\x38\x07\x86\x32\x5f" "\x67\x11\x10\x06\xb8\x2e\xf5\xdd\x19\x6f\xcb\x07\xf0\x75\x3a\x12\x70" "\x92\x2e\x9b\x46\xbc\x2f\x89\x7a\x75\xdb\x3a\xa4\xa6\xcc\x72\x92\xe8" "\x11\x25\xc6\x19\x83\xa1\x13\x90\xff\xfc\xf9\x87\x3c\xdc\xfe\x3a\xd9" "\xa0\xa0\x82\xac\xc6\xb8\x8e\x8b\xb3\x11\x5c\xb9\xcb\xa1\xd3\x9c\x27" "\x60\x0a\xf3\xd3\x23\x3c\x6f\x5e\xff\xbc\x58\x20\x8f\x1b\xba\x36\x28" "\xa8\x6b\xf6\x42\x05\x49\xb7\x3a\x0e\x10\xa7\x8b\x34\x0a\xbb\x65\x55" "\xdc\x9f\xe7\x1c\xf8\xc3\xd1\x21\x21\x79\x6b\x40\x2e\x80\x57\xba\x98" "\xa0\x49\xd9\xb6\xa7\x45\x9b\x42\x39\x98\x5d\x5f\x38\x25\x66\x4e\x2f" "\x73\xa2\x3b\x69\x7f\x8c\x41\x3c\x0c\x74\x96\xb4\x04\xcf\xea\x72\x86" "\x11\x44\x6e\x01\x8d\x42\x90\xf0\xa1\xc7\xd4\x16\xd4\x88\xa8\xe3\x00" "\x06\xc1\x1d\xb0\x60\x4c\x13\xdb\x5d\xe0\xb4\xf1\xd1\xff\x7a\x8a\xb6" "\xf1\xee\x47\x8f\x5e\xf7\x11\x78\x0e\x19\xac\x22\x6c\x45\x1c\x16\xf3" "\x73\x4e\x88\x08\x17\x62\xf0\x22\x55\x03\x94\x85\x53\x80\xf8\x07\x8a" "\xbe\xaf\x93\x66\x0a\x5d\x89\xd0\x41\xc8\xe1\x0e\xe8\x1b\x60\xc8\x2a" "\x93\x43\x8e\x05\xf9\xed\x48\xc4\x52\x90\x3f\xeb\x01\xf1\x31\xcd\x62" "\xbd\x4b\x91\xd3\x1f\xa7\x1b\xef\x3e\x42\xfb\x66\x76\xae\xd8\xba\x98" "\x9c\x3a\xe3\x89\x53\x6d\x6a\x4a\x77\x4b\x0e\xfd\x09\x9a\x75\x09\xe6" "\x0a\xdc\x0a\x38\xa1\xbe\x5b\x7b\x0f\x92\x13\xfd\x8a\x3f\x7a\x7c\x19" "\x7a\xda\x32\x66\x56\x42\x15\x0b\x86\x56\x06\xff\xbd\x46\x29\x18\x4d" "\xf6\x3a\xcb\x1f\xea\x24\xb0\x7e\x3f\x2b\x59\xc7\x2d\x85\xbd\xd9\xa7" "\xa1\xd9\x24\x62\x2b\x91\x25\xdc\x2c\xdf\x36\xe5\x2a\xe8\xe3\xd2\x71" "\x23\x3b\xeb\x75\xe7\x12\x40\x26\x4f\x41\x8c\x17\x27\xf8\x60\xc5\xfb" "\x6a\xbc\x05\x62\x46\x7d\xb1\xa3\xe3\x1d\x72\x18\x4f\x13\x2b\xdc\x42" "\x86\xb5\xe4\xcc\xec\x56\x29\x6e\xf7\xd2\xcb\x15\x3c\xb2\xbc\x63\x73" "\xa2\x8a\x40\x7c\xad\x55\x9a\x8f\x43\xeb\xd2\xce\xf8\x81\xbe\x71\xe3" "\x47\xb4\xf1\x76\x7f\x4c\x6d\x12\x52\x63\xd9\xf5\x6b\xb2\x52\x7c\x1a" "\x9f\xb7\x18\x0c\x30\xae\xbc\x69\x42\xcb\x1b\xcf\x23\xf7\x77\xed\xc2" "\x79\x4d\x5c\x85\x29\x7e\x74\xd3\x27\xc5\xbc\x46\x94\xca\xc1\x4f\x87" "\x5a\x4c\xc4\x30\xd1\x0a\x39\xcb\xad\x7b\x2a\x9b\x77\x5e\x53\x8b\xfc" "\x5b\x4d\x8a\xf9\x48\xbf\x61\x37\x53\xfe\x70\x46\xc6\xbe\x46\x10\xf5" "\xd7\x75\x20\x0b\x6b\x9f\xc1\xf2\xfa\x53\x24\x5c\x3b\x4c\x0d\x57\x25" "\x1c\xf1\x9b\x95\x38\x92\xe2\xa3\x04\xf6\xd6\x09\xa8\xaa\x8d\xa4\x66" "\x6e\x5d\x85\xec\xb9\x66\xdf\xe7\x8b\x94\xa9\x20\xc4\x99\x6e\x7e\x29" "\xd5\x2a\xca\xaf\x68\x45\x4b\x22\xe7\x63\xcd\x14\x0e\xd0\x42\x4c\xfb" "\xa4\xc3\xa0\xbc\xa0\x35\xa2\x5f\x02\xb4\x35\xfd\x73\x25\xf7\xa7\x1d" "\x4f\x60\xba\x42\xac\x0d\x92\xe9\x85\xc5\x5d\xb9\x2f\x3e\x96\xc3\x91" "\xd6\x96\xb6\x3e\xd1\xf6\x98\x15\x52\x66\xf1\xa6\x78\x58\x83\x2a\x8e" "\xa0\xad\xb5\x61\x51\x22\xb7\xe6\xf3\xc1\xd4\x75\x28\x4d\xbe\x7a\x48" "\x9d\x7d\x4d\x04\x5f\x3f\x04\xed\x7f\xe2\x57\x4b\xb9\xf0\x95\xd8\xa3" "\xfa\x14\x40\x98\xdd\x48\x10\xf4\x0f\xca\x6e\xf2\x75\x47\xa6\x90\x87" "\xb0\x12\xe9\x40\x38\x05\x75\x2a\xaa\xfd\x22\xfa\x76\x64\x77\x01\x76" "\x2c\xfe\xee\xff\x87\x26\xd7\xa2\x1d\x0e\xc9\x2e\xd1\x0b\x99\x6e\x74" "\xde\x70\xd8\x39\x85\x9c\xef\xeb\xe9\x99\x86\xb4\x6f\x6d\xd0\x2e\x95" "\x07\x14\x8f\x96\x1d\x87\xde\xad\xf8\x8e\x13\xec\xba\x37\x06\x2a\xcf" "\x14\x9b\x89\xd1\xa5\x68\xbf\x3e\x9a\x97\xee\xb1\xad\xbb\xcd\x54\x19" "\x3e\xeb\x3d\x2c\xc1\x1c\xd6\x36\xbf\xfc\xe1\x71\x4c\x88\xdb\xf7\x70" "\x42\xeb\x51\x7e\xec\x20\x90\x92\xf1\x74\xde\xda\x4e\x29\x93\x9d\xb5" "\x1c\x2e\x6a\xaa\xaf\xe4\xb5\x4f\xe8\x21\x0d\xc9\x7c\xf7\x32\x96\xbc" "\xc8\x5f\x7f\xda\xef\x4e\xec\x32\x67\x83\x9b\x34\xde\x73\x2c\xd4\x88" "\x87\x5e\xfa\x0c\x78\x4a\x53\x33\x3d\x48\x2b\xf8\xa7\x51\x5e\x47\x45" "\xe8\xed\x88\xf3\x4c\xdf\x21\xa4\x51\x34\x81\x97\xba\xbf\xb7\xcb\xc7" "\xc4\x6a\x4f\xf9\x85\xa8\x73\x08\x98\x5e\x80\xf5\x55\x69\x22\x1f\x17" "\xff\x40\xe0\x2e\x89\xdf\xf4\xa2\xb0\xc7\x70\xd8\xb1\x54\x62\xbb\xcb" "\x4d\xfc\x28\xc5\xf3\x65\x1f\x42\x26\x6d\x3e\xed\xf0\x02\x7f\x25\xd1" "\x8b\xb2\x89\xd4\x5b\x65\x3f\xc2\x34\xa9\xfa\xa5\x41\xf4\xbb\xb5\xc2" "\xc7\xab\x93\x7f\xc3\x37\x10\x3d\x7a\xcd\xa3\x15\x93\x4f\x6b\x08\xbb" "\x19\xd5\xef\x15\x1f\x6f\xeb\x9f\x12\x8d\xcf\x93\x1e\xb2\x50\xed\xe9" "\x89\x6c\x25\x3e\x41\x13\x3d\xff\x9a\x7d\xd3\xc5\x98\x8d\x11\xfc\xb5" "\xf2\x90\x14\xbc\x56\xf7\xb4\x3f\xff\x15\x76\xc8\x3b\x24\x51\x9c\x1a" "\xec\x31\x82\x86\x68\xe8\x9d\x1b\x5f\xb5\xf2\x87\x8e\x44\x78\x83\xd8" "\x24\xaf\x2a\xcc\xbc\x78\x36\xb8\xbf\x59\x09\xd1\xf8\x61\xad\x44\xd4" "\x65\xac\xfd\x90\x8f\x9a\x12\x41\xe8\x12\x78\xfc\x10\x03\xa0\xe7\x28" "\x1f\xfe\x55\x94\x4a\x07\xef\xb4\x89\x68\x62\xa0\x53\x9b\x86\x19\xc6" "\x33\x90\x01\x91\x6f\x6c\x2b\x4a\x1a\xa9\x70\x94\x23\xc8\xbc\x63\x68" "\xc6\x02\x2a\x2d\x56\x19\xe9\x63\x90\xbb\x0f\x97\x8f\x2c\xfe\x26\x1d" "\x47\xe8\x95\x4e\x0a\xe8\x90\x1a\xf2\x83\x58\x20\xd0\x1d\x72\x6a\xb3" "\xe4\xa9\xdf\x82\x46\x70\x3c\x5c\xf0\x5e\x8b\xa6\xb3\xac\x5b\x4d\x03" "\x59\xa6\x0d\x54\xef\x5b\xb1\x1c\xb3\x26\x03\xe6\x64\xb2\xee\x0e\xd9" "\x7e\xde\x28\x6c\xc2\x33\x00\xb8\x3b\x1e\x45\x9a\xad\xdb\x1e\x12\x24" "\x10\x98\x1f\x10\x28\xc1\x79\x2d\x12\x68\xba\x3a\x92\xb4\xa3\x3c\xc5" "\x07\x2e\x12\x8b\x88\x90\x63\xb3\xe8\x2b\x51\x18\xf4\xa2\xae\xfe\x62" "\xd0\x59\x95\x18\x45\x20\xf0\x3f\x7c\x10\x91\x35\xec\x29\x06\xaa\xda" "\xb2\xb2\xeb\x42\x7c\x10\x16\x63\xf7\x95\xb7\x5e\x34\xcb\x67\xb1\x3f" "\x0b\x41\x53\x18\x00\x16\x89\x65\x4c\x59\xf8\x1c\x62\x16\xda\x16\x5b" "\xf5\xf6\x7e\x93\x9e\xae\x43\x6e\x2f\x95\xed\x19\xc2\x4f\x65\xe9\x7a" "\x63\xfc\x26\x92\x51\xd6\xda\x12\x62\x05\x45\x7a\x38\xa1\x2e\xb8\xbb" "\xdd\x99\xd9\xd5\xc9\xde\x73\xad\x1c\x37\x5b\x80\xfe\xf7\x4f\xac\xcb" "\xfa\x3d\x4e\x1a\x9f\x59\xc8\xe3\x4d\x82\x81\xec\xdb\x81\xdc\xd9\x6d" "\xc4\x0e\xea\x3f\x2d\xd0\xbc\x5e\x21\x5a\x97\xf7\xa7\x68\x2b\x1c\x37" "\x4e\x12\x3d\xfa\x20\x83\x58\xe5\x82\x21\xd4\x3f\xa9\xbf\x51\x8e\x08" "\xd1\x86\x40\xc5\xc5\x44\xcb\x96\x1f\x5e\x10\x28\xd6\x7a\x69\x2a\xe7" "\x3a\x1d\x1e\x55\x4a\xec\x5a\xdc\xa2\xce\x7b\xc9\x62\xbb\x6f\xf1\x56" "\xd3\x75\x3c\xd1\xf6\x25\x4b\x8a\x85\x83\xfb\x40\xc3\xe1\x16\x05\xfc" "\xe8\x0e\xf6\xf5\x75\xfc\x25\x2d\x14\xe5\xbc\xbf\xae\xc4\x32\xc8\xfd" "\x27\x6a\x11\x8f\xf0\x5d\x67\xdf\x2c\x68\xf3\xcd\x21\x0b\xd6\x2b\x8a" "\x6e\x64\xcb\x5c\x58\x53\xb9\x21\x7f\x71\xb0\x00\x22\x80\x3c\x96\x88" "\xa5\x28\xd2\x63\xbf\x09\x28\x1e\x72\x9f\xf7\x18\xdc\x5f\xf2\xa7\x83" "\x0a\x44\x62\x2d\x76\xc6\x16\x46\xa9\x9e\x30\xa8\x34\x2c\x0a\x34\x34" "\xba\xa7\x54\x9b\x09\xec\xe8\xc7\xb7\x59\x51\x83\xab\x30\xf4\x2d\xa5" "\xa4\x2b\x83\x7a\x86\x3f\x03\x79\x67\xcc\x7e\xc9\xa8\x14\xa0\xae\x72" "\xc1\x34\xb9\xb2\x3d\x99\x53\x85\x62\xeb\x4a\xb0\xe0\x6e\xe2\xe5\xad" "\xb1\x73\x3a\xa0\x60\xf4\xec\x6d\x62\xce\x0d\x01\x93\x0d\x90\x43\xd7" "\x2b\xc8\x38\xeb\x63\x98\x72\x91\x5f\x6c\x25\x45\x09\x6b\x1c\x8e\xee" "\xde\x37\x3c\xe9\x98\x73\x1e\x61\x71\x5e\x7e\x36\xde\x6b\x95\x99\x30" "\x65\x79\x4e\xe9\x54\xa4\x99\xf7\x82\x73\xf7\xb2\xe3\xd9\xeb\xb2\x85" "\x1f\xeb\x2d\x9d\xaf\x12\x0b\xe7\x2a\xfa\xa4\xac\x63\x58\xea\x1e\x4b" "\x80\x08\x3e\xff\x1f\xce\x15\xc3\xf7\xcd\xa2\xe4\x8e\x82\x78\xfa\xba" "\x81\x4c\x5f\x07\x67\xc2\xe8\x6a\xe0\x42\xb6\xa3\xe8\x61\x11\x03\x3b" "\x5e\xc2\x2a\xc6\x3a\x58\xc5\x9f\x25\x0b\x9c\xc2\x74\x53\xe3\xa8\x75" "\x69\x13\x59\x10\x9f\xe6\x91\x49\xf6\xd1\x48\x25\x86\xb1\xee\x60\x1f" "\x17\x11\xce\xa2\x4a\xff\xf4\xf7\x0c\x2a\x8f\x11\x15\x0a\xa1\x25\x35" "\x73\xff\x7e\xbe\xe0\xb1\x74\x89\x3e\xf2\xdb\x63\xe5\xcc\x60\xbe\xdd" "\xf9\xe1\x84\xc2\xc2\x4b\xb0\xdc\xca\xce\xed\xfa\x72\x83\x6c\x47\x97" "\xdf\xbb\x60\x15\x53\x79\xac\x7a\xf8\x97\xad\x09\x26\x13\x54\x76\xf6" "\x67\xbb\x60\x90\xba\x4f\x87\x96\xa3\xd6\x6b\x76\x94\x43\x50\x04\x55" "\x67\x1d\x59\x96\xe3\x41\x79\x96\x2d\x0a\x08\x44\xd0\xd6\x27\x2b\x36" "\x02\x25\xe7\xa1\xde\x8e\xb2\x48\x28\x11\xea\xad\x80\x3a\x03\xfb\x2b" "\xcd\xa1\xb3\xb7\xb0\xf1\x2a\xd8\x97\x68\x78\xe8\xb3\x45\xf8\xd2\xbf" "\xe8\x41\x2c\x30\x81\x1b\xf7\xa6\x5d\xc7\x1e\x64\x50\x4a\xbf\x35\x8e" "\x04\x68\x9d\x89\x42\x91\x8f\x81\x78\x4b\x75\xda\x2b\xd5\xe9\x29\x38" "\xde\xa9\xe7\x7e\x7e\x42\xbe\x5c\x47\xe8\x5d\x71\x15\xe0\xff\x7e\x03" "\x5c\xfa\xfe\x8f\xa2\xf5\x8d\x43\x89\x58\xb3\x60\x8a\xfd\x31\xbf\xe7" "\x2a\xf3\xb5\x5b\x37\x7a\x4e\x13\xbb\x47\x7a\x6d\xde\xcb\xd1\x93\x99" "\x14\x4a\x2f\xad\x89\xe8\xaf\xc3\xec\xbd\x1c\x23\x67\xf7\x4c\x50\x31" "\x0c\x1a\x20\x4b\x20\xd1\x50\x6d\x07\x51\x28\xd4\x11\x87\x91\xde\xc9" "\xf8\xc2\xf8\xdb\x32\x74\x25\x3a\x08\x48\x5f\x51\xf6\x0c\xf1\xb4\x25" "\x63\xe2\xa7\xee\x00\x5b\x28\xca\x71\x75\x55\x76\x4b\x32\x29\xf6\x70" "\x22\xcd\xdc\x21\x8c\x5b\x7a\xd7\x45\xae\xe3\x32\x36\x5b\x09\x31\xb4" "\x02\x45\x6c\x0a\x46\xbd\x8b\x73\xbe\xe1\xd3\xe9\xe3\x81\x7a\x62\xbd" "\x94\x05\xe9\x75\xfa\x10\x39\x5b\x3e\x2b\x60\xaa\x30\x90\x24\xe4\x66" "\x54\xcf\x9a\x8c\xf8\xad\x1d\xa9\xa2\x7a\x01\xf6\xe5\xf9\x0f\xac\x5d" "\xa9\x20\x3f\xd9\x07\x93\x42\x9c\x17\x69\xa1\x91\xe9\xf8\xa8\x8a\xeb" "\x40\x2b\x43\x5a\x41\xd5\xa7\x8f\xa7\x1a\xb9\x6e\xb7\xc5\x9c\x31\x72" "\xf1\xe3\xe7\x5c\x56\xe0\x99\x5e\x05\xa1\x9d\xad\xa2\x5a\x99\x94\xdc" "\xac\xd1\x08\xe4\x89\xd3\x9e\xa2\xd7\x52\xf4\xc3\x09\x7c\xce\x39\xbb" "\xcd\x08\xe1\x04\x56\xc0\x5a\x38\x96\x18\xfa\xe7\x9b\x60\x8e\x9b\x66" "\xd1\x31\x2e\x49\x6a\xc9\xf3\x9f\xca\x2a\xcd\x0a\x22\x89\x1b\x9f\xde" "\xf8\x49\x68\x61\x5d\xb0\xf6\x20\x50\x1a\x9b\x8b\x8b\x53\x35\x1d\x22" "\x80\x9c\x85\x15\xc7\x5c\xbf\x58\x7f\xd7\xd6\x68\x4c\x16\x08\xba\x2c" "\x0c\x33\xac\xa0\x0b\x07\x1f\x8e\x2f\x81\x56\x4c\x88\xe0\x46\x35\xa5" "\xd5\xa5\x12\xa3\xbf\x18\x83\x34\x46\xf2\x03\xae\xf3\xfd\xb4\x2e\x8d" "\xdc\x04\xa9\x22\xd6\xd6\x21\x89\x93\xf3\x66\xaa\xd1\xfe\x4a\xf1\xd3" "\xf3\x78\xa6\x9f\xbb\xa2\x3f\xb6\x4d\xea\x70\x10\xf8\x98\x92\x30\x5e" "\x32\x0a\x37\xbc\x64\x42\xff\x63\x39\x57\xb1\x1e\x90\xf9\x85\xcf\x6b" "\x0d\xc8\xe4\x92\x16\xe2\x80\x00\xc6\xa1\x8a\x48\x53\xf6\xda\x8b\x02" "\xa3\x26\x4e\xdf\x47\x43\x35\xbf\x0d\x2d\x8b\x7f\xc2\x41\x5f\xc6\x2f" "\x65\x48\xc6\xa6\xb7\x87\xbe\x32\xb3\x43\x9f\x37\x69\xe4\x78\xcd\x8d" "\x0e\x1e\xaa\x7d\xcb\xe3\xf7\x27\x68\x77\x28\x7f\x8b\xcb\x7d\x6b\x4d" "\x37\xf0\x07\x0e\x28\x2e\xd0\x19\x12\x13\x61\x51\x4e\x73\x26\xb1\x85" "\xec\x9e\x5e\xe0\xf4\x03\xea\xbf\x72\x59\x17\x94\x15\x5d\xbb\x29\x4e" "\x2c\x33\x67\xac\xbb\xf5\x49\x33\xe5\x28\x56\x4a\x2a\x27\xd5\x64\x1d" "\xfd\x46\x9f\x0f\x0f\x5f\x04\x2b\x0f\xbd\x44\x31\xea\xc0\x47\x30\x7a" "\xf5\x84\x79\x56\x5a\x54\x77\x74\xd9\xce\x26\xf8\xd8\xc4\x3c\xd3\x50" "\xcf\x22\x22\xff\xc9\xd6\x98\xaa\x65\x49\xed\x5b\x74\xcd\x7f\x65\x9e" "\x3d\x78\x43\xe3\xdd\xe5\xc1\x10\xa2\x3e\x0d\x64\x6d\xb4\xb3\x92\xfd" "\xbd\x9c\xb4\x24\xec\x81\xe1\x4a\x64\x18\xaa\x8e\x2b\x31\xc7\xc4\xb4" "\xe8\x94\x01\x5a\x8b\x1c\x8a\x99\x14\x45\x70\x06\x0b\xee\xfb\x44\xd1" "\x82\x69\x47\x33\x7a\x89\x36\xab\x86\xc4\xb2\x4e\xd4\xc5\xb4\xa5\x28" "\x4e\x41\x8c\x61\xe7\x36\x10\x1e\x82\x1f\x7e\x09\x24\x43\xc7\x3f\xb9" "\x46\xe2\xce\x23\x79\x80\x65\x66\x5b\x86\xa7\xe3\x2a\xab\x19\xd1\xf0" "\x3c\x5d\x35\xec\xe3\x3f\xb7\x91\x87\x58\x7f\x53\x41\x15\xef\xb5\xbd" "\x76\xc8\x61\x57\x27\xa6\x94\x2b\xcb\xfe\xe2\xb1\xe3\xa5\xe9\x4d\xc7" "\x8a\x8d\x13\x38\x1c\x0d\xfe\x0a\x65\xdd\x39\x0f\x59\x36\xc1\x99\x59" "\xe9\x89\xf6\xf0\x2c\xaf\x15\x2d\x83\x71\xa8\xdc\x82\xd1\x38\x87\xb1" "\x0a\xc3\x64\xc5\xef\xfb\x18\xb3\x9a\x8d\x76\x1e\xe5\x53\x5d\x9b\xac" "\x95\x25\xfa\x9d\x0c\x54\xae\x1a\x50\x96\x3e\x7d\xe8\xe4\xf8\x47\x22" "\xfc\x49\xdd\x09\x26\xbd\xec\x2e\x2c\xf4\xd5\xb4\xf3\x4b\x66\xae\x6b" "\xb0\x3f\xe2\xb6\x78\xb1\xf1\xee\x24\xb7\x48\x30\x71\x15\x04\xa2\x72" "\x50\x9c\x13\x21\x71\x14\xc3\x2e\x39\x75\xff\x98\xe9\xbb\xab\x99\x29" "\x31\x68\x81\x27\xa0\x66\x83\x3b\x05\xff\xde\xc9\x07\x45\xd6\x63\xef" "\x72\xdc\x1a\x1b\x35\xd2\xa9\xca\x8c\x70\x77\xc9\x32\x75\x96\xb8\xe8" "\xbd\x18\xd5\x4a\x3d\xe7\x68\x7d\xab\xf2\xb4\x11\x60\x5d\x60\x11\x2e" "\x7e\xdb\x33\xcc\x84\x59\x27\xac\x22\x30\xe5\x4f\xfe\x55\x57\x5c\xa1" "\x81\x79\x89\x98\x4d\x16\x15\xc2\xfe\xbb\xe2\xd5\xcf\x71\x4b\xca\x6d" "\x85\x0d\x9a\x0b\x39\xbd\x9e\x5c\x34\x8a\xd9\xab\x16\x57\xef\x68\x4b" "\xc1\x65\x71\xfe\xa5\xd0\xcd\xee\x47\xa2\xbb\x4c\xb8\xd0\xbd\xbd\x90" "\x08\xc0\x91\x7c\xdf\xe6\xed\xab\x8e\x3c\x86\x0d\x2f\x46\xbf\x12\x8b" "\x93\x97\x52\xf4\x4a\x8e\x51\x66\x2a\x16\xef\xb6\xa4\x5c\x4b\x89\x09" "\x69\xc9\x44\x60\x23\x8c\x1d\xf6\xa2\xf7\x0d\x97\x42\x64\x6e\x7d\xfd" "\x9c\xe8\xed\x2f\x47\xde\xcd\xa5\x27\x08\x41\x14\xea\x4a\xb5\xca\x9d" "\x94\x8b\xc3\x2a\x67\x79\x44\x6b\xaa\x74\x18\x78\xc2\x0b\xa2\x3c\xe2" "\xf0\xcb\xe4\x07\xcb\x98\xd4\x70\x5c\xb0\x5d\x6d\xe3\x30\xab\x9f\xff" "\xa9\xba\x7c\x90\x4d\xc5\xf4\x55\x13\xa4\xc1\x62\xc2\x11\xf6\xe4\x7a" "\x4f\xa7\x67\x4b\x2d\xa1\x30\x7c\xba\xa1\x22\x95\x67\x62\x1d\x12\xca" "\xa1\x20\xb6\x26\x34\xd3\x65\x11\xa2\x5f\x27\x84\x84\x88\x19\x8c\x8d" "\x2d\x1b\x28\xf3\x81\xb8\xfa\x98\x98\xc0\x29\x2c\xf6\x3b\xad\x82\x1e" "\xe5\xbb\x0f\xff\x43\x8c\x1c\xd3\xf2\x62\xd5\x95\xc6\x79\x14\xa5\xc8" "\x47\xc2\x44\xe4\x08\x81\x18\x52\x3e\xf3\x23\x2f\x06\xe4\xd7\xb7\x6c" "\x83\xf5\x4f\x0c\x9a\xab\x51\xff\x71\x5f\x03\x35\x1e\x20\x77\x57\x26" "\x78\x1a\x23\xef\xe2\x3a\x71\x8a\x8f\x7e\x21\x81\x12\x47\xb5\x2e\xa7" "\x53\x47\x1e\x3c\x4a\x46\x22\x0b\x10\xe8\x1c\xd6\x68\xb2\x0c\x13\x55" "\xcc\xa2\xb0\xd5\x16\x4f\x5f\xf9\x20\x0f\x66\x70\x35\x4c\xd1\x18\x49" "\xad\x92\x59\xa6\xc1\x4f\xec\xf9\x99\x8a\x80\x58\x90\x98\x8d\xf2\x8c" "\x15\xca\x42\xd8\xb9\xfd\xdc\x26\x2c\xde\xbc\x18\x04\xe6\xe8\xad\x71" "\x3f\x79\xe8\xc6\x7f\xa1\x96\x42\x3a\x6a\x36\xc7\xde\x25\x33\x92\xf7" "\x7e\x02\x4f\x49\xb5\xef\xc1\xf8\x51\x41\xd9\x31\x51\x47\x80\xa1\xad" "\xdc\x4b\x1c\x4b\x83\xe7\xcd\x86\x81\x99\x2a\xd5\xee\x8a\x6d\xf9\x64" "\x89\x84\xf6\xb0\x05\xad\x49\xb7\x16\x46\xfe\x24\xf7\x70\x44\xe3\xbb" "\x0c\xa8\xc4\xe2\x6d\x86\xd5\x4e\x8b\xd4\x3d\x1b\x4c\x4c\x07\xe7\x10" "\x29\x64\xd5\xea\xbd\xd6\x7e\xb3\x4d\xf2\x29\xd3\xa0\x2a\xc6\xe2\x02" "\xc6\xba\xd4\x50\xb3\xab\xf2\x4a\x65\x00\xfb\xd4\x1a\xa9\x82\xb7\x98" "\xe1\xdb\x36\x79\x8a\xc0\x35\xe3\x7d\x90\x07\x4b\x29\x40\x19\xb7\xa8" "\xdb\xd1\xea\x3c\xf4\x18\x40\x10\x1f\x58\x11\x41\x45\x06\x5c\xcb\x1e" "\x79\x38\xb1\x68\x9c\x51\xb1\x8a\x68\x42\x95\x96\x7f\xa3\xf7\xf8\x29" "\x80\x46\x24\x88\x82\x9a\x43\x3b\xbb\x1d\xf8\x2d\x66\x87\xa2\x9f\xf8" "\x8d\xfc\x55\x28\xef\xc1\x04\x79\xcf\x65\xe1\x11\xf3\xef\x61\xd0\x63" "\x7a\xfc\x12\xab\xad\xc2\x0f\x55\x81\xa7\xa0\x04\x94\x81\x87\x56\x50" "\x3c\x34\x20\x5b\xc8\xcb\x60\xbf\x56\x81\x20\x95\xef\x10\x80\x9e\x9d" "\xa2\xd4\x3f\x7c\xd7\xa6\x9f\xeb\x4e\xf1\xe7\x22\xda\x09\x22\x26\x3f" "\xa3\x2b\x8c\x41\x94\x9b\xd2\xac\x98\x77\xa8\x2a\x9e\x12\x80\xf4\xe6" "\x2f\xde\xd6\x1c\x50\x59\x4c\xac\x99\x29\xd2\x82\x88\x44\x96\x31\x37" "\xc8\x4c\xf0\x97\xeb\x71\x3c\x7a\xc9\x0f\xfe\x6a\x39\x11\xd9\xfc\x81" "\x94\xca\xf6\xab\x87\x0a\xf5\xfc\xcc\x40\xab\xb5\x69\x86\xdd\x61\x44" "\xf3\xdb\xeb\x21\xc6\xf5\x63\xee\x13\x62\xd0\x07\x8e\xc1\xb4\xa4\x07" "\x48\x2a\x9f\x66\xd9\x7b\x1e\x18\xb2\xfa\x52\x3b\xb7\x35\x3a\x37\x2f" "\xee\xf7\x0a\xfc\xf3\xfe\xea\x68\xfd\x03\xbc\xc7\x68\x2b\xee\xf1\x4a" "\x7b\x0b\x25\x7e\xc5\xcb\x23\xb4\x56\x07\x3d\xdd\xc4\xe5\x8e\x8a\x82" "\x31\xb6\x4c\x93\x29\xe7\x2d\x18\x13\x28\x2f\x06\xf5\xe3\xbc\xa9\x04" "\x6e\xd0\x27\xfe\xe0\xb6\x7b\x03\x21\x15\x3d\x8c\x90\xed\x6d\xa7\xf9" "\xbf\xaa\xb5\x6b\x0a\xbf\xe6\x19\xed\x85\x54\x60\x37\xa0\x59\x1e\x2d" "\xfc\xe5\x57\xc7\xe8\xa9\x1f\xc8\xc4\xd5\xa9\x85\x5a\x81\xb0\x95\x21" "\xb0\x88\x95\xee\xe8\x18\xed\xfa\xb5\x7d\xe8\x00\xf7\xaf\xff\x61\x14" "\xef\x97\xd0\x04\x0d\x83\x57\xd5\xce\x96\x4c\x69\x4c\x57\xc5\x6b\x5f" "\xd2\x55\x87\x5e\x4e\xeb\xfa\x67\xa4\x2d\x38\x8d\x18\xe4\x60\x8c\x38" "\x48\xf3\xd4\xb0\xdb\xdb\xdb\xbd\x0b\xc5\x48\x0e\x9a\xf4\x2d\x12\x09" "\x79\x15\xb5\x1c\xbf\xb6\x1c\xe4\xf3\x4d\xa6\x50\x7d\xe5\x30\xbd\x3e" "\x2d\x52\xea\xe7\x05\x6d\x30\xb5\x5f\xa6\x3d\x28\x4e\x2b\xf4\x6b\x48" "\x87\x27\x45\x11\xa6\x52\xe2\x71\xc7\x9a\x27\x47\x17\xcb\x6b\x7f\xbe" "\xd1\x81\xc3\x8f\x35\x08\x62\x86\x95\x5a\x32\x38\xcb\x34\xc9\xb5\x1a" "\x41\xcf\x01\x17\xff\x83\x0e\x68\xd4\xfc\x0f\x41\x47\x08\xa9\x7b\x24" "\xa8\xde\x6c\xd9\xd0\x10\x42\xfd\x3d\xe6\x8c\x4a\xba\xba\x85\x83\xed" "\x1e\xaf\xf0\x5b\x3d\xcd\x2f\x3b\xb0\x7e\xa5\x6a\xa3\xb3\x48\x39\x74" "\x31\x48\x91\xa6\x18\xef\xa1\x12\x3f\xc3\x01\xa1\x67\x48\xdc\x3e\x8f" "\x2f\x7a\x6e\x63\xd9\x27\x0c\x25\x89\x57\x0c\xeb\x13\x9d\xa8\x9e\x17" "\x8b\x43\x1e\xb3\xd3\x1e\xd1\xc7\x4f\x29\xfc\x4d\xb6\xf5\xc2\x58\x65" "\xcf\x3d\x5d\x03\x5d\x34\x93\x87\x43\xb3\x67\x56\x26\xf1\x74\xa9\xd1" "\xd8\xee\x30\xbc\xc7\xe3\x7d\x39\x72\x46\x8c\x42\x67\x36\xb8\x29\x1f" "\xe1\xe5\x6b\x13\x7f\xef\x63\x16\x3a\xce\x34\x90\xdc\xc9\x99\x3b\x55" "\x2d\x2f\xa7\xef\x5d\x1f\xc4\x9c\xdb\x2a\x61\x6b\xe2\x85\x08\x2e\x08" "\xb0\x84\xe0\xef\xa0\xe4\x82\x7a\x0a\x9c\x25\x61\x0d\x5e\x09\xe8\x0e" "\xd3\x8c\x2f\x8f\xcd\xd3\x08\x42\x45\xae\x65\x40\x9b\x97\x4a\x55\x01" "\xca\x7d\x8f\x85\x82\xa1\xc7\x10\xd4\x55\x1e\x09\xca\x7a\xf7\xdb\x6b" "\x00\x3c\xa7\x6b\x8e\xa5\x72\xc5\x37\xe6\xfd\x8d\x65\x82\x4b\x50\x33" "\x14\xe8\xe6\x9b\x92\xc7\xe7\xd1\x81\x47\x39\xc4\xe9\xec\x0b\xe7\x56" "\x64\x70\x6c\x11\x81\x1d\x2a\x3c\x8f\xb8\x81\x71\xdc\xf6\xc1\x0a\x49" "\xb6\x13\x7c\x99\x8f\xa8\xad\xac\x7a\x55\xf1\xf6\x71\x26\xde\xc6\xcb" "\x7d\xf5\x8b\x06\x02\xa3\x92\xcb\x41\xd3\x17\xc4\x12\x06\xab\x1c\x6f" "\x5e\x5b\x2a\xb9\x6a\x3c\x37\x69\x4d\x89\x7a\x26\xfe\x6e\xa9\xf3\xc1" "\x7f\x27\x45\x5e\xe6\xc4\xa5\x0b\x99\x1c\x25\x45\x94\x42\x34\xfd\x05" "\x85\x93\x68\x82\xc5\xaa\x2f\x9a\xe7\x3e\xfc\x13\x33\x3d\x3c\x0f\x78" "\x93\xaa\x5b\xd1\xad\x25\x5a\x89\xfd\x89\x60\x2b\x3c\xad\xff\xbf\x4c" "\x64\xba\xa6\x5b\x07\x19\xfb\xfb\xb3\x32\xa5\xb2\xd2\x32\x17\xf3\x6f" "\x9c\xfc\xa3\x87\xc4\x04\xc1\x42\x1e\x00\xd0\x0e\x73\x1d\x83\x4b\x53" "\x07\x0f\xfe\x7f\x3b\xaf\xf6\x59\xfa\xf7\x78\x39\xfe\xad\xf0\x97\x1c" "\x0b\xa8\x32\xc9\x04\x9a\xab\x54\x89\x49\xd2\x5a\x2b\x8d\x3a\x73\x39" "\xc7\x97\x9d\xcd\x74\xf5\x44\xb9\x1a\x64\xba\x52\x5e\xf3\xb6\xd0\xd1" "\xb7\xf2\x54\xf3\x64\x77\x58\x63\xc4\xf5\x43\x86\xf0\x24\x2c\x38\x3e" "\x19\xb8\x77\x44\x02\x6a\xa2\xbe\xbf\xd3\xb6\x32\xf9\x62\x4a\xfb\xe8" "\xee\x58\x12\x75\x02\xdb\x0f\xbe\x1c\xfd\x52\x5c\x60\xba\x09\xaa\x9e" "\x1f\x0f\x4f\x8b\xc8\xcb\x54\x00\xb6\xe2\xd3\x71\x0d\xdd\xc1\xbb\xc2" "\x31\x40\x2e\x78\xd7\xc9\x2b\xc5\x31\xbd\xca\x8a\xea\xf1\xab\xdd\xca" "\xff\xd3\xf8\x70\xe7\x35\xf8\x2b\x91\xaa\x12\x30\x24\xc3\x10\xc6\xcb" "\x38\xae\xab\xea\xac\x3f\xcc\xe0\xf7\x36\x3e\x60\x4b\x3a\x4b\xbc\xc2" "\xc2\x41\xcc\xf1\x54\x91\x83\x4f\x35\xb8\x09\x38\xf7\x7f\x31\x39\x29" "\xc9\xe1\xad\xdb\xb9\x19\xfd\x70\x3f\x62\xd1\x40\x87\x64\x44\x4b\xfd" "\x89\x93\xfb\x3d\x7e\xd5\xec\x77\xa3\x91\xb9\x20\xbc\x12\xaa\x15\xe0" "\x89\xd6\xa7\x99\xb8\x3a\x70\x14\x43\x82\x0d\x4d\x4a\xec\x9e\x5a\xfc" "\x19\x94\xf5\x56\xda\xac\x83\x9f\xae\xfc\x6c\x1a\xe4\x1b\xc3\xbe\x0b" "\x5e\x3e\x0e\xe2\x4b\xc5\xa6\x28\x8b\xfb\x3f\x60\x3e\xee\x8b\xe6\x25" "\x7a\x14\x34\x88\xd7\x48\x9b\x0a\xf6\xa3\x96\x90\xc4\x42\xcc\xa3\x6b" "\x3b\xdd\x70\x82\xf2\x01\xe7\x61\x49\x4c\xa2\x38\x2a\x69\xeb\x3e\xd1" "\x6d\x5a\x1f\xe1\x81\xdc\x4c\x6a\xab\x8e\x0d\x8b\x2a\x4d\x24\x73\x98" "\xb4\x35\x2b\xc7\x3a\xf1\xba\xbf\x99\x7c\x1f\x63\x68\xd6\x8f\x3f\xb8" "\x2e\x7d\xcf\xb2\x13\x36\xfa\x7e\x88\x58\x0e\x0c\x5f\x29\x09\x3a\x59" "\x08\xb3\xf4\xee\xa0\x64\x47\xf2\x43\x25\x2b\x5a\x0d\xe4\x9a\xf9\x4b" "\x82\xa1\x89\x5a\x27\xee\x2d\x62\x5e\xbf\xcb\xe1\x45\x99\x0d\x50\x89" "\x95\x3a\x82\x73\x26\x3c\x0a\xc6\x5c\x7b\x13\xcb\x55\x68\x80\x30\x5f" "\x6b\xc7\xe3\xcc\xc5\x05\x3f\xc3\xa6\x89\x85\x7e\x31\x61\x6b\x7c\x54" "\x71\xaa\x73\xe2\xd1\xa9\xcd\x31\x63\x43\x86\x72\x74\x33\x21\xe7\x4e" "\x8a\xaa\x12\x4e\x38\x8d\x56\x6d\x3b\x40\x9f\x60\x9d\x67\xeb\x43\xba" "\x46\xf4\x1e\x3d\x93\x3a\x8a\xd9\x66\x01\x6c\x1b\xf6\x9a\xe1\xdd\xda" "\xa5\x36\x40\x76\x92\x70\xcb\x5d\x9d\x82\x57\x85\x9e\xb1\x9d\xb0\x18" "\x84\x1c\xa1\xe9\x6c\xcf\xff\x83\x1a\xef\x9f\x7c\xac\xa5\x16\x57\xc5" "\x38\x51\xfd\x42\xdf\x54\xd3\x82\x0d\x57\xf0\x2d\x99\x0b\x60\x22\xa5" "\xcf\x03\x4a\xa7\xfe\x71\x0b\x3b\x6a\xbf\xf8\x44\xe6\xd1\x56\x0e\xab" "\xcf\xa9\xaf\x1c\xc6\xd3\x5b\xcf\x47\x32\xb2\x0e\x23\x6e\x9e\x9e\x51" "\x91\x95\x67\x6e\x0c\x53\x2d\x24\x0f\x49\x0b\xee\x9c\xe4\x0f\x47\x45" "\xea\x69\x55\xd3\x13\x26\x8e\x1f\x9c\xc2\x81\x7c\x28\x26\xf0\xac\x37" "\x9d\x75\x77\x4a\xc7\x0b\xff\x2e\xdd\x1c\xc7\x72\x6b\x77\xd5\x0f\x7b" "\x67\x24\xd6\xca\xa9\x8c\x6f\xf9\x2c\x78\xf0\x2b\x17\x08\x5c\xd2\x3e" "\xf3\xb4\x07\x7e\x38\x72\xbe\x72\x7f\x7e\x99\x65\x21\xa4\x81\x68\x6d" "\x41\xc6\x5a\xa3\xbe\xe2\x41\x8b\x56\x15\x90\x9c\x99\x37\xee\x00\xb5" "\x01\xee\x9d\x47\x69\x69\xc3\xfa\xeb\x89\xb4\x51\xe5\x0d\xdf\xc5\x33" "\xc9\x0d\x86\xa2\xa0\x7c\x38\x38\x25\xf0\x85\x6e\x6d\x89\x73\xe0\x7f" "\x30\x80\x69\x90\xdf\x23\x06\x2d\xec\x6d\xed\x25\x91\x83\x83\xac\xb0" "\x1a\xde\xaa\xc9\x30\x0b\xff\x63\x4b\xfc\xfc\x62\x92\xdd\x95\x64\x1b" "\x83\x71\xb9\x4f\xfa\x5d\xc5\x74\xca\x12\xde\x37\x1b\xc9\x93\x51\xc5" "\x10\x9e\x62\xd2\x20\xa5\xa0\xef\x21\xae\x48\x23\xbe\x4d\x5d\x88\x5d" "\x58\x50\xfd\x98\x1f\xab\x2f\x4a\xbd\x66\xab\x62\x3f\xed\x72\x07\xac" "\x57\xbc\xa0\x32\xfa\xe9\x8d\xcb\x02\x3f\x90\x19\xf7\x7b\xb8\x3b\xdb" "\xbe\xcc\x73\x8a\x0a\xd0\xb1\x92\x9f\xae\x0a\xf5\xcd\x7a\xcd\x94\x8c" "\x80\xbb\x20\x52\xad\x80\xf4\x18\xe1\xf2\x48\x92\x98\xf9\x16\x37\x56" "\x8c\x01\xaa\xaa\xf0\x19\xa1\x77\x10\xad\xa4\x08\x08\x30\xd9\x65\x21" "\xf2\x6e\x08\x03\xcf\x7f\x41\x72\x3a\x60\x80\x8d\xdb\x67\x35\xd2\xf8" "\xfd\x43\x9e\x02\x45\x07\x6b\x3d\x1c\x69\x03\xec\xed\x7f\xac\x5d\xe6" "\xc3\x02\x2f\xcd\x6d\x3f\x1c\x34\x3c\xf8\x1c\x5b\x66\xf5\x79\xdf\xc5" "\x40\xdb\x16\x51\xcb\xda\xab\xe9\xdb\x6b\xbc\x6a\xd3\x7c\xc4\x63\xe9" "\x49\x8e\x31\x05\x32\xcc\x6d\x6b\xd8\x7a\x88\x29\x50\xcf\x62\xb5\x3b" "\xa7\xbb\xae\x37\xc3\x88\xcd\x2c\xd1\x7b\xc9\x6c\x7f\x62\xdd\x91\xd9" "\x69\xc4\x8c\x0e\xfa\xae\x88\x98\x62\x2f\x2a\xde\x77\x20\x7d\x62\x81" "\xe3\x77\x72\xac\xb5\x0b\x7e\x13\x12\x86\x66\x39\xa8\x32\x0c\xdd\xd4" "\x9e\x47\x41\x09\x89\xfb\xed\x44\xfd\x58\x4d\x85\xf7\xcc\x60\x09\x8a" "\x58\x8e\x38\x16\xca\x0d\x29\x1a\xdc\x4b\x43\x3e\xa3\xe2\xac\x60\x16" "\xca\x4f\x61\x08\x5b\xa6\x23\xd1\x51\x8c\x2a\x9c\x94\x69\xc1\x40\x59" "\x07\x25\x81\x60\xdb\xa6\x1d\xa4\x7e\xde\x4d\xfa\xec\xe9\x00\xc0\x3f" "\x39\xae\x29\xdb\x72\x9a\x49\x2a\x32\xed\x82\x4a\x60\xec\x99\xf6\xcf" "\x16\x48\xa6\xda\x8b\x76\xeb\xa7\x2d\x80\x8c\xe5\x9b\x04\xba\x43\x26" "\xfd\x4c\x19\xbe\xd4\x05\x05\x93\xca\x7f\xa2\x60\x16\xb4\x9b\xff\xa3" "\x25\x8b\x85\xc5\x99\x8f\x96\x4d\x1d\x27\x05\x69\x41\x59\x2e\x1c\x45" "\x76\xc5\xf1\x15\x5b\xbf\xad\xda\x7e\x9b\x83\x25\x5d\xde\xb1\xdd\xd1" "\x69\x08\x7e\x09\xc1\x3d\x4c\x52\x0f\x73\x77\xae\xbc\x97\x2f\xc8\x24" "\xba\x1f\xd1\x76\xff\x1f\x4e\x40\xa3\xda\x96\x6e\xec\xfb\x5c\xe7\xeb" "\x19\x6d\xff\x25\x9b\xd6\xc9\x47\xcd\xeb\xb2\x02\x54\x3c\xd1\x97\x76" "\x10\xd7\xad\xce\xc8\xb4\x49\x96\x92\xc8\x27\xc0\xc6\xc6\x46\xad\x7d" "\x46\xa6\xea\x8b\x54\x8a\xfb\x39\xa3\xa6\x8a\x44\xd4\xa4\x39\xa7\x3b" "\x65\xd9\xbd\xb9\x87\xeb\xda\xa0\xa0\xbf\x02\x69\xd1\x2b\x28\xfc\x9b" "\xf4\xa2\xe9\xf2\x2b\x4f\x70\xa0\xb8\x94\xef\xd3\x7a\x6f\x8d\xb0\x9c" "\xb6\xdf\xd2\x97\x1e\x1a\x97\x86\x7b\xeb\x59\x03\x87\xe6\x6a\xa7\x72" "\xf4\x1b\x88\x23\x9f\x7e\x5e\x0f\x28\xbc\x11\x76\x08\xb1\x68\x4e\x00" "\x93\x02\x88\x87\xf9\xe1\x15\x90\x5a\xc4\x6d\xaa\xcc\x15\xd2\x51\x1f" "\x7c\x0d\x53\x6d\xce\xc9\xcb\xaf\x27\x02\x8b\xfd\x14\xcb\x93\xc9\xf1" "\x4b\x39\x12\x74\xd8\x6e\xfc\xdb\x08\xc8\x52\x9d\xce\xd2\xa5\xe8\xf0" "\x2c\xdb\xbd\x71\xed\x6a\xae\x06\x71\xc1\xd2\x51\xf6\x39\x67\x8d\x64" "\xcb\x9d\x3c\x3a\x6c\x1d\x28\xc4\xe0\x27\x07\x00\xb9\x67\xb1\x34\x1f" "\x4f\x55\xd6\x42\x2b\x45\xf1\xd5\x3b\x8f\x2e\xb1\xc1\xfe\xf9\x60\x17" "\x2e\x03\x90\xf3\x55\xeb\xd9\xa5\x56\x37\xd7\x5f\xe4\x2a\x52\x3b\xe7" "\xa1\x1a\x9b\x1e\xb7\xcc\x33\x19\xcc\xdc\x07\x04\x2f\x77\xb8\x81\x76" "\xa4\xaf\x37\xb3\x69\x48\xb2\xe6\x3a\xb9\x11\xec\xfa\xee\xa5\x07\xd8" "\x04\xba\xe5\x10\xd3\x3f\xdf\xd1\x78\xa7\x51\xd4\xf4\xc3\x44\xd5\x66" "\xf6\x51\x4a\xe8\x2f\x48\x41\x24\xfd\xc8\x9a\x1f\xbe\x09\x64\x49\xf2" "\x84\xb1\xe4\x06\xf4\x57\x77\xe9\xb8\x50\x03\x71\x08\xd6\xd3\x06\x14" "\x7a\x82\x0e\xf9\xb1\xa3\x47\x40\x96\x1a\x9e\xc8\xaa\xac\x41\x79\xc7" "\x76\x9f\x8b\xc5\x5e\xe7\xb9\x43\x1c\x7c\xf7\xd8\x1d\x08\xa0\x93\xe3" "\x68\x23\x4b\xab\x11\xa7\x43\xe8\x55\xde\xa1\x94\xaa\x43\x94\xa1\x6b" "\xfb\xc2\x48\x5a\x9f\x68\xeb\xdd\x72\x06\x4e\xea\xe0\xcc\x3d\x77\x49" "\xaf\x1c\x9a\xea\xb7\x24\xbf\x8c\xb0\xd8\x27\xee\x8d\x44\x88\x7f\x07" "\x2b\xfb\x21\x65\xf4\x35\x02\x73\xe2\x34\xe0\x5f\x9c\x5c\x0c\x9c\x53" "\xed\x38\x7d\x0f\xcd\x26\xf4\xf4\xa7\x69\xd2\xdc\xf6\x5c\x0b\xbb\xb2" "\xfe\x56\xf6\x9a\xbc\x30\xa8\x51\xe9\x1e\x21\xe9\x1c\x45\x9b\x6f\xe9" "\x0b\xef\x6e\x8d\xc7\x97\xb9\xbd\x2d\xa1\x67\x60\x07\xde\xe9\x12\x0f" "\xc5\x6c\xf9\x55\x21\x79\x40\xde\xbe\x3c\x50\x6e\xeb\x6f\x28\xd5\xd3" "\xb1\x78\x2d\xc3\xe1\xd7\x36\x39\x91\xef\x2d\xa6\x75\x2c\xd0\x2d\xc6" "\x5e\x8d\xc2\xc9\x9f\x44\xb2\xce\x1e\x87\x20\x2e\x01\x7b\x91\x76\x56" "\x7b\xaa\x42\x01\x32\x0c\xa9\xc9\x9b\xd5\xb9\xb5\x12\x86\x73\x6a\xa1" "\x68\x9a\x08\x03\x37\xd9\xa9\x20\x2a\xa6\xc4\x96\x4a\xb9\xb4\x5a\x30" "\x25\xa3\x2c\xc8\x83\xb2\x6e\x9e\x03\xae\xa6\x6c\x88\xc6\x88\x6d\x0b" "\x30\xd0\x04\xf3\x7a\x6c\x06\x33\x80\xe8\x19\x28\x2b\x28\xa8\x4a\x06" "\x34\xc9\xc3\xb1\xd4\x48\x12\x34\x3c\xf2\x01\x89\xe1\x17\xac\x67\x14" "\x9e\x3f\xe6\x59\xb0\x10\xe9\x0e\x7f\xee\x14\x6d\xe9\xf4\xb6\x6f\x5b" "\x97\xb1\xba\xde\x73\x38\x67\x09\xaf\x9c\x8b\x1e\xda\x51\x2d\x20\xf5" "\xf5\xf7\xfb\xec\x01\x29\xad\xbf\x82\xab\xad\x89\x50\xba\x8a\xf6\xfe" "\x35\x89\xbd\x3b\xaa\xb9\x8d\x90\xb8\xd8\xd5\xc3\xe2\x2f\x2e\x7a\xaa" "\x56\x9c\x9b\xd9\xf9\xe4\x09\x7d\xe2\x70\xe5\x7c\x15\x7b\x2e\xa3\xbb" "\x6d\x85\xbe\xf9\xfb\x26\x2a\x7b\xda\x11\x10\x45\xd1\x11\xe5\x2e\x5b" "\x31\x5d\x65\x1f\x57\xcd\xa7\xb0\x02\x52\x6d\x21\x7c\x1f\xcd\x23\x69" "\xca\x20\x7f\xc9\x52\x34\x41\x86\xd2\xff\xf3\x87\xdd\x15\x32\x56\xe0" "\xd9\x91\x1c\x21\x58\xad\x77\x54\xa9\x52\x06\x42\xb9\x24\x81\x9d\xad" "\x42\xae\x53\x36\x8c\x33\x75\x05\x0b\x37\xd7\x1e\xd3\x51\xea\x41\x1a" "\x30\x0c\x94\x33\x8a\x71\x96\xa8\x07\x86\x14\x85\xf9\x9e\xb8\xcb\xe2" "\x73\xa4\x6e\x23\x29\x3a\x0c\x62\x30\x4d\x09\xd9\x04\x68\x5c\xb6\x96" "\xe6\x59\x70\x43\x93\x66\x8b\x6a\x1e\x24\x06\xdb\xc5\x4e\x4a\xa7\xaf" "\x1b\xff\x48\x82\xff\x5b\x11\x53\xc9\x55\xea\x8d\x0d\xa3\x62\xa6\x25" "\xd8\x64\xea\xd0\xd0\x82\x70\x36\xab\x38\x6a\x8f\xcc\xda\x60\x5b\xb3" "\x4f\xe7\xb0\xfd\x6b\xe5\x34\x0c\x22\xe2\xf9\xda\x8e\x9b\xfd\xbc\x3a" "\x54\x7e\x11\x5e\x01\x01\xe5\xdd\xd1\xc4\xc3\x7a\x63\x3b\x3f\x9e\x9e" "\xa4\xd9\xd5\xb7\xa7\x0e\x58\x25\x13\x14\xe6\x7e\xa2\x8c\x35\x34\x15" "\x4d\x6d\xe0\xb3\x3c\x05\x9a\xb6\x96\x55\xb2\xc2\x04\xd2\xc8\x84\xa8" "\xa1\x7c\xc9\x53\x56\x48\x82\x38\x3d\xf9\x52\x9d\x39\x82\xbb\xf3\xd8" "\x92\x10\xdf\xb8\x56\xf0\xbd\x26\x85\x83\x03\xc8\xe4\x39\xc7\xda\xb5" "\x62\xb0\x6e\x14\xd7\x9c\xba\xd4\xbe\x6f\xb3\x7c\x41\x93\x5a\x40\xcd" "\xc3\x1d\x3b\xd7\x25\xa5\xb8\x88\x7c\x40\xc9\xb6\xd0\x99\xba\xb8\xda" "\x8d\x89\xad\x30\xa2\x7a\x23\xce\xcb\x5a\x7f\xfb\xb2\xd8\x36\x98\x4b" "\x15\xdb\x04\xfe\x56\x38\x0c\x13\xb0\xb5\xee\x59\x2f\xf1\xa2\x90\x6a" "\xd3\x37\xa2\xfb\x9f\x5e\x0f\x6b\x62\x16\xf2\x8a\x1c\x2a\x48\x85\xfe" "\x4b\xd9\x5d\x7d\x52\xac\x5a\xb3\xee\xa3\xf5\xfd\x91\xe9\x0d\x45\x93" "\x7a\x2d\x61\x9b\xc5\x90\x9a\x14\x41\x19\x5f\x19\x9f\x71\x62\xb2\xd8" "\x10\x26\x38\x2e\x80\xe4\xd5\x76\xd9\x47\xf9\xda\x8d\x3e\x7b\x0d\x88" "\x87\x52\x38\xda\x72\x2d\x02\x87\x7f\x99\x83\xb0\xec\x9b\x65\x2c\x45" "\x6a\x8b\x33\x08\x57\xf1\xb0\x72\xb2\x3c\xaf\xc0\x0b\x76\x1d\x61\x8e" "\xbf\xf8\xb0\x4b\xd3\x25\x9b\x47\x93\x95\x4d\x9a\x42\x29\xa3\x00\xf4" "\x13\xfd\x9f\x3b\x04\xc5\x98\x30\x97\x86\x1f\xf3\xa0\x07\x67\x08\x22" "\x51\x13\x78\xd8\x65\x4d\x7a\xe0\xec\x9b\x82\xf1\xaf\x72\x90\x28\xae" "\x81\x53\xa0\x61\x9c\x56\x2d\xc6\xde\x3e\x9f\xb8\xf6\xcd\x95\x7a\x58" "\xf0\xb4\xb0\x05\x45\x57\xd1\x63\x4f\xe9\x61\x67\x3b\x78\x68\x14\xa4" "\xe9\x7c\x1e\x5f\xa6\x6a\x5e\xa6\x1b\x3b\xf3\x5f\x60\x96\xf3\xa5\x4d" "\xee\xca\xba\x1d\xb1\x63\xba\x94\x25\xec\x8f\xa9\x72\x38\x8e\x46\x41" "\xf7\x71\xdc\xbd\x83\xd3\x2f\x08\x43\x07\x36\xc7\xeb\x59\x56\xf5\x62" "\x94\x1b\x1a\x65\x09\x77\x3d\x06\xfe\xf9\xd5\x29\x52\x4e\x74\x0f\x92" "\x2f\x1e\x58\xe7\x6e\x3b\xb5\x22\x8f\xdf\x59\xa9\xc6\xb5\xb0\x9b\x8c" "\x90\xfd\xb2\x7d\x0d\xaf\xa4\xe0\x7d\x48\x45\x4d\xbc\x7a\x8f", 8192); *(uint64_t*)0x20002c80 = 0x20002240; *(uint32_t*)0x20002240 = 0x50; *(uint32_t*)0x20002244 = 0; *(uint64_t*)0x20002248 = 0xb8d; *(uint32_t*)0x20002250 = 7; *(uint32_t*)0x20002254 = 0x24; *(uint32_t*)0x20002258 = 2; *(uint32_t*)0x2000225c = 2; *(uint16_t*)0x20002260 = 8; *(uint16_t*)0x20002262 = 3; *(uint32_t*)0x20002264 = 0x7fffffff; *(uint32_t*)0x20002268 = 0x2d; *(uint16_t*)0x2000226c = 0; *(uint16_t*)0x2000226e = 0; memset((void*)0x20002270, 0, 32); *(uint64_t*)0x20002c88 = 0; *(uint64_t*)0x20002c90 = 0; *(uint64_t*)0x20002c98 = 0; *(uint64_t*)0x20002ca0 = 0; *(uint64_t*)0x20002ca8 = 0; *(uint64_t*)0x20002cb0 = 0; *(uint64_t*)0x20002cb8 = 0; *(uint64_t*)0x20002cc0 = 0; *(uint64_t*)0x20002cc8 = 0; *(uint64_t*)0x20002cd0 = 0; *(uint64_t*)0x20002cd8 = 0; *(uint64_t*)0x20002ce0 = 0; *(uint64_t*)0x20002ce8 = 0; *(uint64_t*)0x20002cf0 = 0; *(uint64_t*)0x20002cf8 = 0; syz_fuse_handle_req(r[0], 0x20000240, 0x2000, 0x20002c80); break; case 6: memcpy((void*)0x20000080, "./file0\000", 8); syscall(__NR_creat, 0x20000080ul, 0ul); break; case 7: memcpy((void*)0x20000140, "./file0\000", 8); memcpy((void*)0x20000040, "fuse\000", 5); memcpy((void*)0x20000180, "fd=", 3); sprintf((char*)0x20000183, "%020llu", (long long)r[0]); memcpy((void*)0x20000197, "\x2c\x72\x6f\x6f\x74\x6d\x6f\x64\x65\x3d\x30\x30\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x61\x30\xfc\x2a\xef\xed\x2e\x2a\xff\x1f" "\xaa\x63\x75\x73\x65\x72\x5f\x69\x64", 41); syscall(__NR_mount, 0x20000000ul, 0x20000140ul, 0x20000040ul, 0ul, 0x20000180ul); break; case 8: memcpy((void*)0x20004780, "./file0\000", 8); syscall(__NR_newfstatat, 0xffffffffffffff9cul, 0x20004780ul, 0ul, 0ul); break; } } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); do_sandbox_none(); return 0; }