// https://syzkaller.appspot.com/bug?id=0e634623108ac273135510bb2ec155416d178137 // 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 < 8; 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*)0x200007c0, "./file0\000", 8); syscall(__NR_mknodat, 0xffffff9c, 0x200007c0ul, 0ul, 0); break; case 1: memcpy((void*)0x20000100, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20000100ul, 2ul, 0ul); if (res != -1) r[0] = res; break; case 2: 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)0); *(uint8_t*)0x20000213 = 0x2c; memcpy((void*)0x20000214, "group_id", 8); *(uint8_t*)0x2000021c = 0x3d; sprintf((char*)0x2000021d, "%020llu", (long long)0); *(uint8_t*)0x20000231 = 0x2c; *(uint8_t*)0x20000232 = 0; syscall(__NR_mount, 0ul, 0ul, 0ul, 0ul, 0x200001c0ul); break; case 3: memcpy((void*)0x20000480, "./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, 0x20000480ul, 0x20000040ul, 0ul, 0x20000180ul); break; case 4: memcpy( (void*)0x20003040, "\xf0\x4c\x2c\x0d\xd9\x57\xec\x6f\xd7\x28\xf8\xfd\x0e\x12\xd3\x70\x18" "\x8d\x2d\x43\x1c\x05\x1f\x5c\x7f\x43\x34\xce\xb4\x87\x21\x93\x18\xc8" "\xc3\xb1\x4f\x15\x80\x3d\x6f\x3f\x13\xd7\xba\xa5\x14\xa2\x49\x63\xc3" "\xcd\xcf\xb6\xde\x79\xc8\x1b\x8d\x7d\xe8\x7a\x63\x24\xa2\x67\x5e\x43" "\xf8\xfc\xa7\x9c\xe1\x5e\x90\x58\x96\xb8\x77\x5a\xfd\x57\xf3\x27\x09" "\x3e\x0a\xbc\x0b\x09\x9d\xdf\xcf\x5a\x36\xa8\x5b\xc1\xad\xa8\xa7\x2a" "\x6c\x64\x72\x20\x4b\x00\xe8\xdb\x77\x02\x59\x3a\x25\x14\xad\x9d\x73" "\x65\xd3\x90\x4a\xfd\xd3\xed\xb3\x2a\x63\x71\x7e\x84\x07\x72\x0a\x6d" "\xda\xe3\x44\x6e\x94\xf7\x1e\x33\x05\x6b\xbe\x53\xf6\xdb\x4e\xa0\xe0" "\xc4\x34\x4d\x4d\xec\x64\x89\x33\x95\xae\x3f\x33\xa2\xc5\xbc\xd6\x43" "\x9b\xb5\x93\xaf\xc5\x3f\x1e\xf8\xe6\x81\x4e\x79\x49\x75\x8c\x12\x37" "\x76\x16\x69\xf6\x0e\x25\xfa\xfe\xcd\x82\x58\xd7\x40\x66\x8c\xec\x7b" "\xae\xa2\x87\x86\xb0\xec\x7d\x01\x16\x8d\x88\x2f\xe9\x66\xdf\xbf\xae" "\xa3\x5d\x60\xa1\xf8\x83\x95\x1d\xd6\xc8\x98\x3e\x87\xdc\x1d\x4c\x01" "\x9e\xb6\x3b\x64\x21\xf0\xd2\x19\xc3\x6a\x4a\x38\x26\x00\x6b\x0a\xf9" "\xa7\x72\xfe\xd2\xf4\x6a\xb5\xe8\x33\xf4\x12\xc1\xb6\xce\x21\xbe\xc4" "\x64\xda\x10\xf3\xa4\x66\x7f\x80\x45\x31\x6b\x5a\x07\x69\x67\x82\x12" "\x3f\x4c\xa3\xe9\x18\xa1\xe1\x6c\x6e\x9b\xdf\x84\xc5\xce\x30\x8c\xd1" "\x4f\x17\x86\xbb\x81\xf9\xa2\x59\x7f\x16\x98\xc2\x78\x68\xf0\xb8\xdb" "\xf7\x1c\x84\x79\xb2\x11\x44\xe4\xbc\xeb\xea\x6e\x23\xe7\x6d\xd9\x00" "\x7e\xa9\x3d\x8f\xf8\x0f\xde\xd9\xdb\x68\xed\x2a\x4f\x4d\xa3\xe3\xad" "\x7f\x72\x2a\xad\xe2\x45\x33\xa1\xdb\x31\x71\x5f\xc4\x2b\x09\x27\x07" "\xe2\x99\x72\x01\xd2\x23\x51\x7d\xf3\xde\xb8\x9b\x76\x41\xa3\x4a\x80" "\xa0\x48\xa3\x3b\x28\xac\x55\x8c\x05\x41\xf0\xc8\x6c\xe4\x42\x6a\x84" "\xe6\x4e\xce\x08\x66\x48\xc8\xe9\x60\x0a\xdf\x88\x9c\x50\xb1\x0c\x67" "\x4e\xc6\x17\xf2\xd2\xfd\x2d\x81\x90\x28\xd6\x89\x5b\xac\xfa\xc6\x57" "\xac\xe6\x71\x88\x47\x70\x47\xf9\xf3\x38\x63\x57\xb9\x7b\xff\x66\x54" "\x5f\xa3\x9a\x65\x89\x95\x4c\xda\x90\x51\xc4\xcc\x14\x53\xa4\x65\x91" "\xb7\x1d\xdc\x01\x81\x09\x50\xaf\x8a\x86\xb5\x08\x80\xf8\xfc\x0c\x92" "\x95\x67\xe4\xad\xba\xd7\xcb\x33\xa8\xbc\xe8\xe1\xac\xf0\xec\x1b\x13" "\xe6\xc4\xda\xcf\x13\x7b\x34\x0d\x46\x74\x29\xeb\x22\x7a\xc5\x75\x2a" "\x1a\xc3\x08\x80\xa9\x32\x85\x7d\xfc\xf3\x74\x70\x75\x03\xba\x07\x88" "\x67\x11\x24\x90\x92\xc4\xad\xe2\xe7\xb5\xfa\xf9\x04\xce\x80\x9b\xe5" "\x9e\x32\x4a\xa3\xaf\x5a\x4a\x6a\xe2\xf8\xef\x29\xb1\xb3\xc4\x50\x2f" "\xb0\x91\x77\xd1\xd9\x2e\x7a\x7a\x1e\xa9\x21\x29\x44\xa0\x70\xc5\xd9" "\x6a\x32\x2b\xaa\x55\x77\x09\xd4\xda\xc7\xf0\xe8\x5f\x6f\x13\x7b\xb2" "\x58\x6b\x18\x15\xb7\xf1\x0c\xed\xeb\xaf\xd9\x05\xb8\x7d\x91\xbf\xe9" "\xcc\xdb\xf2\x6d\xe2\xb0\xfa\xbb\xc3\x6f\x4a\x39\x23\x75\x7a\x1f\xa7" "\x44\x52\xd8\x85\xd8\x8d\xc8\x65\x20\x3d\x42\x7c\x69\x46\xf8\x81\xc4" "\x48\xbc\xd5\x20\x23\xa3\x10\x7a\x2f\x6c\xa0\x34\xc1\x68\x8c\xde\x4b" "\xe3\x77\xa6\x65\xc1\xdd\xa2\xc6\x40\x53\x32\xe9\xc7\xa6\x0c\xbd\x15" "\x04\x2d\x96\x72\x28\x7b\x58\xee\x2f\x39\xd0\x01\xf5\xbf\x1e\x1b\x11" "\x58\x94\xc2\xe8\x8a\xa0\xab\x6c\x0d\xa1\xd6\xd6\xbc\x8d\x0b\x49\x63" "\x28\x4c\x56\xc5\xc8\xfb\x14\xd0\xe1\x02\x5c\x32\xa7\xf8\x97\x13\xfa" "\x88\xd5\x51\xe1\x6d\x40\x5c\x47\x8b\xd9\x27\x95\xcc\xb5\x45\x4a\xf8" "\xf6\x1f\x9a\x79\x5b\xf9\x0a\x6d\xf8\x64\x92\x2c\x7c\x62\x83\x9b\xe1" "\x52\x05\xbd\xc0\x51\x62\xf4\x7d\x83\xd3\x87\x61\x61\x39\xe3\xbb\x83" "\x4f\x14\xc1\xd6\x02\x01\x09\xc5\xe4\x89\xdf\xf0\x1f\x18\x8a\x41\xb7" "\x74\xe5\x12\x3a\x1d\x1a\xf4\x97\x48\xc7\x75\xa8\x9c\x61\x2e\x21\x94" "\x69\x33\x50\x20\x6b\x47\x98\xd2\x46\x00\x45\xf1\xc7\x68\xee\x29\x71" "\x1f\x83\xab\x3b\x3b\x24\x67\xa0\x7b\x8a\xb4\x1b\xd1\xb6\x9f\x43\xba" "\x44\x1f\x1b\x5e\x9f\x68\x39\xc0\xa2\xfc\x86\xb5\x4c\x3a\x7f\x07\x1f" "\x19\xd8\xeb\x5d\x46\x23\x4b\x14\x56\x53\x32\xeb\x45\x04\x21\x7a\xd8" "\x8b\xae\x48\x60\x09\xc1\x34\xbf\x89\xf3\xfb\x1b\x88\x3b\xfb\x35\xa0" "\xa1\xe7\xab\x58\x9b\x70\x4f\x40\xcd\x10\xf5\x1d\x73\x85\xca\x72\x33" "\xd5\x8c\xa0\x92\x0b\x0d\x12\x33\x61\x9d\x45\xa1\xb3\x6a\xa5\x1b\xd6" "\x5b\xc2\x50\x82\xcd\xaf\x08\xf2\x14\xe3\x37\xdf\x69\x39\xd1\xba\x9f" "\x5a\x38\xce\x72\xa4\x9a\xda\x1c\x19\x39\x60\xd7\xe4\x8f\x32\x1f\xed" "\x35\xa9\x11\xb6\xc7\x43\x3b\x22\xae\xb0\xeb\x56\x76\x04\x30\x46\x72" "\x10\x7d\xd9\x5c\x06\xb9\xc4\x80\xb5\x24\x6c\xe1\x18\xf5\xc7\xa0\x79" "\x42\x51\xbe\xb1\xec\x4c\xc9\xf9\x97\x3c\xe5\x8f\xe3\x92\xcd\x38\x1c" "\xf5\x23\xa1\x2b\xa2\x32\x82\x66\x1a\xf3\x2a\xea\xd8\x63\xd3\x0b\xe3" "\x52\x9a\xff\xb0\xf9\xb4\xb9\xae\xf8\x82\x39\xdc\xc1\x04\xd3\x49\x45" "\x18\x9c\xee\x51\x28\xc7\xce\x1e\x19\x88\xef\x70\xa7\x3c\xf4\x8c\xc2" "\xc1\xc5\x94\x9d\xc1\xd3\x23\x74\x8f\x45\xd3\x07\x3e\x03\x46\xdc\xdb" "\x6b\x34\x66\xf9\xdc\x54\x28\x45\xc2\x33\x1b\x58\xd8\x8b\x42\xbe\x3c" "\xed\x54\x90\xf2\xaf\x64\x0f\x89\x1b\x40\xff\xde\x35\x94\xbf\x20\xec" "\xec\xc9\x9c\x18\x51\x13\xd8\xae\xc3\x5d\x03\x0f\x1c\x5d\x5f\x10\x99" "\xe4\xc6\xba\xd3\x13\x41\x1c\x4f\xe3\xd7\xee\x17\x89\x77\x4f\xc4\x29" "\x33\xd5\x18\x2b\x59\xf9\xea\xe6\x73\x4e\x43\x2b\xcc\x1a\xb2\xcd\x0f" "\xce\x1b\x61\xca\x01\xbd\x9a\x94\xe0\x3e\xd6\xcf\x88\xa6\xb0\x75\xc8" "\xab\xdf\x61\x7a\x5a\xfc\xf5\x72\xa2\x75\x18\xf8\xf9\x1e\x83\xba\xd3" "\xc7\x68\xaf\x3c\x32\xa6\xb4\xc0\x70\xa5\xa3\x21\xac\x45\x2b\x3f\x9c" "\x50\x54\xf3\x92\xe1\xee\xd4\xfd\x91\x93\x58\x07\x1b\x36\x68\xb7\xf8" "\x7b\xfd\x0e\x31\xf3\x0a\xc0\xa4\x68\xa6\x32\xaf\x9e\x33\xda\x51\x69" "\x15\x20\xf7\x09\xc8\xa7\xee\x85\xe8\x41\x02\xb8\xc4\x8f\x9c\x2c\x61" "\x57\xe5\x18\xff\x05\x1e\x36\x90\xa0\xa4\xfa\xfa\x94\x11\x29\x3f\x61" "\x97\x4d\x11\xd0\x64\x72\x34\x78\x26\x38\x0e\x3c\x42\x6c\x26\xbc\x96" "\x84\xfd\x06\x0d\x52\xcf\x8a\x76\x3c\x03\xcc\x9d\x04\x0d\x5b\x98\x11" "\x40\x2c\x6c\xd0\x54\x84\xf9\x75\x17\xb0\x9c\xe9\xf9\x7d\x8e\xd6\xf9" "\x02\x1e\x0d\x1f\x76\xe9\x69\xef\x29\xd5\x8f\xcc\xfd\x5d\x9e\xbf\x37" "\xd5\x75\xa2\x5f\x5d\x6f\x80\xa5\xa7\x45\xcf\xfd\xab\xdd\x48\x03\x0f" "\x9e\xe2\xd1\x14\xc5\x37\xc6\x71\xc2\xfe\xfc\x83\x2e\x4a\x56\x95\x23" "\xee\xf6\x8f\x81\xa1\x31\x04\xf8\xc6\x4e\x9e\xba\x83\x01\x70\x9a\x2d" "\xb4\xd8\x5d\x03\x9a\x88\xe9\xb9\xb1\x11\xf8\x82\x80\xbd\xc8\x6f\x30" "\x71\xcb\xa7\x5f\x2c\x9e\xea\xb1\x4f\x62\x77\xb5\x4a\x4f\xc6\xed\x08" "\x33\x36\xbc\xdc\x55\xb5\xd8\x6b\x4b\x80\x81\x90\x13\xa7\xc2\x0f\x14" "\x30\xe4\xa0\x03\x76\xe0\xb1\x42\xad\x22\x7c\x38\x11\xd2\x0a\xe1\x01" "\xf6\x12\x7c\x06\x90\x64\x92\xf9\xc5\x91\x20\x7b\xac\x5a\x8e\x8c\x48" "\x5d\x85\x14\x7d\x85\xdd\x0a\x5d\x39\x8d\xc9\xf9\xa8\x03\xe2\xc0\x53" "\x68\xcb\x3d\xdc\x41\xe9\x28\x33\x2a\x33\x19\x66\x85\x2b\xd4\x6d\x5c" "\x77\x27\x53\x59\xa7\x0e\x48\xa2\xf0\x8e\x5c\xd9\x13\x86\xe0\x1e\xfa" "\x11\x5f\xd7\x2c\xe2\x3c\xfe\x9f\xc9\x72\x5e\x99\x55\xcc\xe0\x9b\xe3" "\xfc\x72\x6a\x2b\x0a\xc4\x49\x18\x08\x58\x58\xfc\x72\xec\x7e\xdc\x84" "\xda\xc0\x20\xb5\xbd\x3d\x25\x01\x7b\x6c\x4a\x3e\xad\x82\xe7\xb7\x9f" "\xca\x04\xac\x22\xf4\xc1\x65\x12\x6b\xde\x51\x15\x2c\x4b\x3c\x3f\xc3" "\x46\xcb\x17\xa4\x5c\x5b\x78\x4c\x82\xf6\x0d\xac\xc1\x21\xfe\xca\x61" "\x6a\x57\xdc\xbc\x52\x88\x5a\x58\x08\x7b\x51\xb3\x50\x45\xdd\xf9\xfc" "\xc4\x58\x90\xca\x96\xfe\x13\x87\x75\x96\x48\x41\x9b\xca\x39\xa8\xbd" "\xea\xbc\x15\xa8\x09\x90\xa2\xac\x35\xbb\xda\x60\x7c\x49\x96\x0d\x5c" "\x00\xd7\x4c\xed\x49\x6d\x90\x28\xbd\xf7\xed\xd4\xee\xb4\x23\xc1\x4c" "\x84\x9a\x10\x6a\x92\x48\xf7\xc3\x3c\x92\x20\xb4\xa3\x9f\xe0\xb8\x9d" "\x6d\x42\xbf\xd7\x1d\x54\x94\x0e\xff\x0a\xa0\x6d\x7c\xdc\x44\xda\x61" "\x28\x09\x93\x64\x61\x7a\xef\xce\xa0\x0c\x32\x15\x1d\xd8\x8c\xde\xf5" "\x42\x13\x62\x5f\xdd\x7e\x7c\x1b\x71\x14\x56\x4a\xae\x81\x72\xb9\xe6" "\x42\x47\x6b\x87\xcc\xc9\x08\xd6\x77\xeb\x5a\xd8\xc8\xc4\x65\xad\xc2" "\x11\x02\x5f\x1e\x1a\x17\xb8\xb0\xda\xda\xa8\xe1\x11\x64\x8c\x4f\xc7" "\x59\x6c\x9a\xf6\xce\xc0\x07\x41\xc0\x73\x48\x30\xa1\x7b\x36\x1d\x50" "\xa1\xc5\x20\x48\xd2\x85\x5e\xaa\xe4\xf5\xb1\xfb\xea\xaa\xc0\x72\x7c" "\xd2\xd0\x70\xfb\xbe\x63\xcc\x65\x4e\x70\x0f\x50\x77\x6f\xfa\xaf\xd0" "\x8f\x9a\x65\x88\x5c\xf0\xed\xc3\x35\x55\xbe\xb3\x54\xcd\x7a\xf1\x80" "\x46\xb9\x8a\x95\x64\xf7\x79\x2a\xa2\x07\x0b\xb3\x6c\x11\x63\x3b\x45" "\xe1\x7c\x5b\xb8\x48\x57\x56\x0c\x5e\xac\x35\x6f\x44\x0f\x33\xcf\x2e" "\xd3\x9e\xcf\x02\xf5\x61\xc5\x9d\xc5\x2f\x37\xe8\x37\x4e\x4c\xea\x4b" "\xcb\x4f\xce\xcc\xce\x62\x9c\x18\x95\xd1\x2f\x59\x82\xc8\x37\x09\xfc" "\x42\xe4\x32\x2c\x59\xa6\x79\x9c\x29\xc3\x91\xd4\x62\x9a\x56\xb6\x83" "\x45\x6a\xc7\x76\xc2\xd9\x3a\x8d\x86\x5b\xb6\x25\xaa\x63\x57\x83\x1f" "\xbc\x05\x3f\xb8\xaf\x62\x45\xa2\xa0\x85\x95\x30\x53\x85\x70\xf4\x7d" "\xd5\x33\xb3\x82\xd6\x19\xd7\xc3\x58\x56\xa0\xc3\x5b\x73\x6c\xc5\x7b" "\x92\x2c\x01\x59\xb2\xff\x35\x73\xd0\x10\xa7\x60\xca\xf5\x36\x90\x78" "\x7e\x2c\xcd\x13\x71\xd6\x01\xfc\xd8\x3a\x84\x86\xbb\x7a\x28\xd1\xe5" "\x84\x2c\xf9\xbb\xe9\x43\x7e\x53\x26\x3d\xd9\x63\x0b\xfe\x80\x42\x02" "\x78\xe9\x6e\xab\x9e\x9b\xa8\xcb\x58\x9c\xe9\xbd\x12\xf6\x04\x90\xc5" "\xa8\x0b\xaf\x47\x18\x4a\xf8\x19\x14\xcb\x54\x4a\x26\xb4\xf8\x3c\xad" "\xb5\x33\xbf\xe5\xd9\xf2\x01\x0a\x04\x72\x81\xfa\x58\x6f\xbe\x3d\xf8" "\x59\xdd\x2d\xa9\x89\x88\x5c\x74\x68\x31\x31\x63\xb9\x42\xad\xd7\xf1" "\xb9\xb8\xce\x8f\xbc\x75\x56\x73\xef\x09\xc3\x1a\x2b\x7c\x21\xd3\x98" "\x8e\x8f\x5b\x7a\x23\xc1\xd0\x8d\xb1\x82\x25\x05\xc4\xcb\xe9\x8f\x1d" "\x82\xe0\x1b\x25\x2a\xa7\xf0\xab\xd9\x3f\x47\x19\x6b\xb6\x79\x5e\xda" "\xf3\x1d\xb7\xd7\x5a\x4e\x5d\x37\x89\x43\x0b\xbc\xc2\xf7\x6e\x01\xa8" "\x89\xf1\x51\x4a\x39\x18\xa1\x4a\x9b\x7d\x88\xcf\x24\x87\x75\x5a\xfd" "\xbe\xa8\xf7\x9d\x0b\xaa\xbb\xa6\xe7\x65\x02\x54\x1a\x2e\xb2\xfb\x13" "\xdf\xbe\xb7\x4a\x6c\xd0\x85\xfc\xaf\x84\x26\x18\x90\x01\x40\x13\xd6" "\xa8\x16\x5d\x48\x33\x01\x15\x95\xe8\x7e\x7f\x92\xf4\xab\x16\x3b\x8a" "\x7c\xe9\xbb\x29\x19\x1e\x5b\x73\x8e\x92\xfe\x5e\xae\x17\x88\x14\xcf" "\x0b\x35\xd8\x36\x15\x8d\x60\xb1\xbd\x66\x1e\x03\x61\xa1\x42\x23\xd9" "\xe6\x0e\x55\x8a\x0a\x5f\xab\xef\xb1\xfc\xfb\xd0\x0b\x55\x8b\x93\x64" "\x2d\x7c\xef\x36\x4d\x0a\xf8\x22\xf2\x06\xf6\x77\xd0\x4e\xbe\x57\x5f" "\x56\x0d\xf8\x6e\xb5\x3f\x08\x24\xa8\x9d\x76\x4a\xe5\x1b\x8a\x68\xf2" "\x40\x98\xd9\x4f\x53\x4b\x60\x15\xf2\xa0\xa9\x4a\x8d\x3a\x17\x58\x1a" "\x2c\x31\x4f\x31\xfa\x2f\x3d\xb0\x8b\x77\x2c\x67\x3c\xa0\xdb\x46\x09" "\xc1\x62\xb4\xa5\x95\xe4\x60\x24\x38\xce\xde\xf3\x74\xbc\xa2\xcc\xf1" "\x09\x72\x68\xa8\x6a\x65\x56\x68\xd7\x7c\x58\x8a\x74\x98\x16\x17\xa2" "\x58\x96\xd1\x1c\xee\x6c\xf1\x72\x08\xe7\xa0\x76\xa6\x8a\xec\x31\x62" "\xa3\xe0\x8a\x00\x1b\xdc\xa2\xdb\x56\x9a\xb1\xc4\xec\x3b\x26\x75\x1d" "\x3d\xc0\x82\x05\x48\x69\x9f\xd4\xa7\x84\xf3\xdc\x4b\x5c\x5c\xf7\x5d" "\x98\x77\xb5\x86\xa0\xf8\xcc\xf5\x17\x15\x6e\x08\x16\xdd\x11\x0a\xbe" "\xf4\x38\xd3\x99\xa4\x16\x5d\x27\xb7\x4a\xa0\x48\x36\x97\x89\x6b\x44" "\x6a\x35\xcb\x15\xf6\xa2\x3f\xc9\x0b\xe3\x54\x55\xec\x2f\xd1\x42\x08" "\x37\x6e\xb4\x22\x77\x6b\xe9\x4c\xe3\x35\x68\xca\x5e\x43\x7a\xe3\x09" "\xed\x18\x01\x50\xfa\x48\x77\xde\x3c\xc6\x9b\xfa\xa1\x92\x49\xb4\x6d" "\x75\x85\xd1\x02\xf9\xa6\x61\xc3\x4c\x14\x1d\xa2\x49\xcb\x68\xb8\xe5" "\xb2\x20\x9b\xdb\xe6\xc1\x85\x55\x53\x09\x80\x1b\x8d\x10\x95\x43\x42" "\xc7\x73\x1f\x90\xbb\xe3\x3a\x4b\xa8\x63\xfb\x73\x4c\x04\x02\x40\x2e" "\x79\x2e\xd0\x50\xc4\x56\x02\x64\x98\x14\x62\xf2\xdd\x12\x1d\xe3\x1b" "\xf1\x75\x0b\xa9\x60\xfb\xac\x2a\x0b\x28\x30\x22\xc8\xba\x07\x2a\xc9" "\xf0\x2d\x2e\x28\x6b\x7e\xb5\xf8\x2a\xb4\x49\x12\xec\x69\x9a\x96\x2f" "\x4d\x40\xb5\xda\xe3\x6e\x47\x6c\x22\xb9\x10\xe0\x6c\x5e\x2a\x4d\x6b" "\x8d\xb1\x3e\xc1\x45\x53\x22\x69\x5f\xdc\x0d\x1e\x33\x7f\x47\x5d\x30" "\xec\x50\xaf\xe5\xe7\x43\xb6\x18\x27\x01\x24\x4e\x2c\xda\x49\xd1\x0b" "\x54\xa4\xea\x8e\x72\x9d\xd6\xfb\x4b\x14\xd7\xa9\x1e\xc9\x69\xcf\xff" "\xa5\x9a\x34\xeb\x36\x79\xcc\x58\x17\x54\x5b\xe4\x96\x03\x2a\xec\xb3" "\xd3\xee\xea\xa4\x8f\x63\x12\xf7\x72\x39\xe9\x06\x97\xa5\x38\x8c\x2d" "\x80\xc5\xc5\x84\x1c\xca\x1b\x22\xf3\xa1\xda\xbe\xca\x16\xb2\xaf\x95" "\xeb\x5b\xe0\xa5\x54\x3d\xbb\xab\x80\x85\x41\x2e\x48\x0a\xe6\xa9\x9c" "\x56\x94\xa6\x3d\x66\x83\x27\xac\x44\x51\x36\x10\x54\x4f\x94\xc4\x1d" "\x22\x8e\x63\x9c\xcd\x82\x17\x9c\x65\xb1\x20\x99\xb8\x49\x8a\xe7\xbf" "\x18\x31\x2b\xb8\x68\xfc\xfb\x7c\xf1\xfe\x0f\x30\x81\x07\x82\xb3\x24" "\xb5\x37\x1c\x4b\x60\x0c\xda\x15\x57\x93\x1c\x56\xc3\xa3\x6e\xdd\x77" "\x44\xdc\x09\x08\x0e\x3a\x75\x2e\xf7\xbe\x9e\x86\xf0\x36\xbf\x2b\x5a" "\x4c\xd4\xa2\x5f\xe3\xc2\xb4\xb0\x7c\x20\x29\x32\xfd\x12\xeb\x54\xf8" "\xa9\x52\x26\xc9\x10\x7e\xfe\x0d\xcc\x4d\x4c\x0a\x08\xd6\x0f\x92\x35" "\x29\x9c\x1d\xe0\x25\x67\x4f\xc1\x4e\xb6\x47\xad\x3f\x69\x59\xd0\xe4" "\x3a\x46\x62\xa8\xe1\xd9\xe6\x18\xba\xe0\x11\x6f\x37\x79\x56\x98\x02" "\xaa\x96\xd6\xe6\x5e\xbc\x9e\x08\x84\xe9\x45\xff\x5e\xcb\x58\x96\xb1" "\x7c\x4d\x66\xa1\x85\x91\x8d\x44\x52\x3e\x59\x3e\x7a\x5d\x29\x7b\xcb" "\x3a\x92\x55\x76\x06\x9e\x04\x13\x9c\x26\x5b\xe1\x6b\x80\x7e\x0e\x65" "\xe4\x06\xbe\x6d\xb9\x14\x6d\x41\x14\xb9\x21\x4d\xee\x08\x6c\xd3\x56" "\x18\x2a\x57\xc2\x20\xe7\xee\x87\x8f\x88\x50\x8b\x5e\x2d\x76\x54\x7b" "\x99\x71\x38\xce\x6c\xbc\x41\xc2\xac\xdf\xd2\x3c\x61\xaa\xa0\xb2\xca" "\x71\x8e\x36\x36\x3f\x06\x01\xa8\xe7\xa6\xfb\x5f\x6c\x09\x8d\xec\xf2" "\x06\xf5\x69\x4d\xc2\x59\x5f\x73\x08\xa1\x49\x94\xa8\xcb\x04\x1a\x65" "\x15\xee\x84\x7b\xb2\x3b\x8b\x2e\x79\x77\xbc\xdf\x8e\xf1\x1d\x23\x8c" "\xd5\x76\x59\xe3\x03\x08\x44\x31\x13\x7a\x69\x53\x9b\xb6\xd3\x98\xa9" "\xc6\xf5\x01\x28\x2e\xb4\x61\xc6\x45\x29\xd5\x25\x8d\x32\x58\x91\x55" "\xe3\x2e\x29\xec\x3d\x77\x05\xd4\x72\x72\xa2\xa7\x73\x09\x37\x0f\x26" "\xa2\xc4\xb3\xde\x25\x7e\xbc\x55\x43\xc6\xd4\x96\xa8\x83\xe4\xed\x4d" "\x9f\x0b\x15\x72\xdd\x2d\x20\x48\xd9\x35\x06\x31\xbc\x29\x72\xea\x78" "\xf6\xae\xf1\x70\xe9\xa5\x82\xdc\xd1\xe3\xfa\x8a\x74\xb3\x88\xea\x8c" "\xc7\x74\x91\x0a\x0b\xdc\x4d\x33\x1c\xbc\x21\x3f\xe8\x65\x49\xa7\x5c" "\x59\xac\xfa\x6e\xfb\xc1\xae\x7c\x1a\xa2\xcd\x61\xf1\xd3\xd6\x02\xf6" "\xac\x28\x78\x71\xca\xb6\xb3\x55\xfe\x5a\x69\x23\x2f\xa8\x8c\x52\xe6" "\x4a\xf0\x8a\x7f\x2a\x4f\xb0\xf1\x7c\x36\xbd\x8b\x2f\xab\x36\x58\xf2" "\xd4\x2c\x72\xe1\x27\xca\xf5\xd9\x9f\x3e\x06\x8c\xda\xa0\x47\x2d\x18" "\xaa\x3b\x93\xb6\x9f\x2e\x05\x21\x06\xd6\xe6\x81\x78\xaf\xdc\x5b\x3c" "\xbe\x50\x8a\x60\xcf\x91\x0a\x6d\x9d\xf6\xb1\xdd\x91\x05\x95\x2f\x25" "\x67\x48\x89\x81\x4b\x17\xb0\x1f\x72\x50\x76\xfb\x05\x06\x3d\x78\x23" "\x6c\xd3\x4e\x80\xa2\x1d\x3e\xf6\x77\x33\x8d\xfc\x68\x97\xb5\xa9\xaa" "\xc8\x28\xe5\xf7\xb4\x9c\x41\x22\xd3\xb2\x04\xea\x60\x54\xb6\xa2\x3f" "\x56\xf1\x98\x4c\x84\xdd\xc6\x0f\x48\xc6\x2a\xff\x3f\xf6\x97\x78\xed" "\xe6\x82\xa0\x82\xae\x70\xe3\xaa\xd0\x2b\xd2\x72\x7b\x21\xd8\x95\xf7" "\xd8\x0b\xda\x6d\x3e\x74\x87\x59\x24\x06\x37\xc0\xc9\x02\x6c\xd4\xdd" "\xa9\xba\x61\x18\x90\x46\x18\x75\x9f\xcd\xad\x94\xaf\xd9\xae\x9d\x55" "\x4a\x9a\x87\x06\x71\xec\x5e\xa1\x4f\x5b\xe8\x2a\xe7\xf4\x45\xbd\x4a" "\x85\xd0\xc4\x49\x03\x05\xfb\x46\x80\x3f\xc1\x71\xcf\x51\xbc\x90\xf9" "\xc7\x3d\xa2\x89\xc9\xa9\x63\x3e\x69\xdc\xe8\x7b\x8c\xbd\x07\xa8\x8a" "\x1e\x0d\x5d\x76\x8f\x24\xf3\xac\x8f\x06\xf6\xc6\x0a\x43\xfa\x9f\x12" "\x75\xab\x36\x44\xbf\x16\xc0\xbc\x2b\x0d\xec\x9e\x4c\xcb\xc5\x6c\x77" "\x4e\x9a\xb1\xd9\x36\x72\xfd\xf0\x5b\xd5\x07\xa1\xc5\x75\x0e\xde\x3a" "\xcb\xba\x44\x2d\xc2\x38\x39\x2c\x52\xf5\xd6\x09\x37\x70\x77\x2d\x8c" "\xd5\x49\x43\x18\x9f\xe4\x2d\x64\xec\x5f\x6d\x97\xfd\xc6\x16\x7e\xe1" "\xcd\x4c\x94\xdd\x9e\x28\xcf\x85\xcb\xc7\x71\x7d\x18\x23\x5a\x0b\x36" "\xc4\x6c\x5b\x26\xa8\xa7\xf8\x1b\xa0\xf0\x5f\xdb\xdf\x0b\xc4\xab\x32" "\x38\xd9\x14\x62\x3a\xc4\x6a\x2c\xff\xe3\x06\xe4\x14\x92\xee\x78\xca" "\x92\xb6\xaf\x75\x7f\x05\x27\xa0\x4f\x4a\x06\x7f\x84\xd2\x8c\x84\x0e" "\xfc\x98\xb4\x44\x2c\x57\x1a\x28\xba\xe8\x78\xf4\x70\xcd\x2d\xce\xb7" "\xf3\xe8\x2b\x87\x29\xa9\xcf\x4f\xb3\x5d\x18\xc4\x78\x71\x8b\x26\x57" "\x50\x38\x7e\xe3\x0e\x87\x08\x30\x24\x28\x21\x9c\xd5\xb8\x87\xe7\x87" "\x19\x34\xe8\xda\x90\x4d\x26\xa6\x66\xbc\xf1\x39\x6a\x25\x32\x91\xa0" "\x5e\x8f\xcc\x9b\x81\xdb\x40\xf9\x58\x23\xf4\x91\xf1\xdd\xf6\x6e\xeb" "\xff\xe6\x97\x09\x72\xd9\x2b\x88\x78\xd8\xd0\x16\x54\xfd\x7a\xa9\xcd" "\x70\xcc\x11\x15\xfb\x6c\x51\xd6\x47\xa1\xec\x0e\x1e\x51\x70\xe6\xcd" "\x09\xdb\x63\xa0\x3d\x63\xbb\x9b\x2f\x73\xf4\x44\x65\x15\x59\x6d\x7d" "\x3f\x95\xf3\x0f\x7a\xc5\x48\x7d\xe5\x9e\xf8\x65\x94\xfa\xbd\x35\x56" "\x1c\xd0\x76\x83\xbc\x30\xfc\x72\xa3\xe3\xbf\x93\x68\x39\x07\x19\xe9" "\x17\x19\xed\x61\xe9\xe4\x77\x22\x91\x9c\x9c\x33\x62\xe4\x6b\xe6\x29" "\x4d\x84\xc6\x5e\xba\x6c\x46\x1f\x38\xc3\x61\x64\x43\x26\x3e\x87\x48" "\x98\x81\xa1\x92\x37\x07\x4b\xfe\x2d\x57\x19\x58\xc7\x08\xae\xda\x35" "\x85\x74\x5e\xd7\x5c\x65\x32\x28\xc7\xd6\x49\x51\xaf\x0b\x7e\xa6\xd2" "\xfc\x2d\xb3\xb3\xa1\x40\x50\x45\xcd\x46\x11\x1f\x8e\x4f\x26\xa4\x17" "\xf8\x97\xd8\xb6\x4c\x65\x86\xa0\x50\x2c\xa5\x42\x3d\xd5\x5c\xec\x54" "\xa0\x07\x05\x51\x3a\xde\x35\xac\x2e\x4f\x18\x9e\x5b\xb8\x57\xaf\x1a" "\xce\xa4\x08\x9d\xd8\xa0\xa5\xd5\x55\xf1\xd6\x3b\x30\x4b\xbf\x0c\xc9" "\x75\x8e\x2e\xf5\x16\x9c\x84\x71\xc8\xda\xd1\xcc\x65\xfe\x9e\x7e\x9b" "\x23\x5b\x57\xbc\x8c\x94\x37\x86\xfa\x1d\x5e\x31\x90\x5b\xbd\x7f\x16" "\x7e\x25\x9f\x14\x61\xab\xda\x7f\xf0\xef\x9b\xe1\x78\x74\x7d\x78\x1c" "\x5c\xe2\x91\x67\x35\x45\x4b\xa6\xaa\x50\x6e\xc8\xee\x60\xd7\xe8\xe7" "\x42\xf8\x26\x36\x1c\x33\x2c\x1b\xd9\xb3\x76\xc9\xb7\xd9\xb2\x89\x76" "\x14\x21\x51\x02\x6e\xea\xf8\x6a\x75\xde\x11\x49\x8e\x00\x9d\x60\xdf" "\x69\x9e\x37\x43\x6b\x62\xf0\x30\x71\x2b\x5b\x42\xea\x65\xbf\x06\x39" "\x5c\x17\x16\xf7\xc2\x7d\xa2\xcb\xc3\x60\x74\xb8\x5a\xa6\xdc\x91\xe2" "\x93\x7a\x57\x57\x3d\xd2\x5f\x04\xe0\x99\x44\x26\x51\x70\x41\xe1\x75" "\x4d\x41\x30\x55\x64\xb1\x32\x50\x63\x33\x63\x73\xd9\xef\x5c\x83\x47" "\x5f\x58\x3d\xcd\xa0\x24\xa5\x98\xca\xf2\xc4\x90\xa6\x61\xba\x87\x10" "\xa7\x82\x65\xb9\xad\x64\x07\xf7\x9e\xd5\xb4\x83\x1d\x6a\x50\xab\x68" "\x0a\x36\x59\x05\xa9\x78\x4a\x87\xb5\x44\x74\x9d\xf5\xd8\x93\x3e\x44" "\xfc\x26\xfc\xc4\x15\xb9\xfd\x84\x66\x66\xab\x87\x10\x8a\x69\x39\x8b" "\x7d\x6f\x8c\xd1\x18\xac\x5b\x4d\xd0\x88\x5a\x4e\x62\xc8\x14\x7d\x57" "\xc1\xc7\xbf\xa8\x8d\x37\x7b\x84\xe1\x1a\x9c\x09\x73\x0a\x60\x22\x46" "\x8d\xe0\xbb\x2d\xd9\x1d\x81\x98\x03\xb6\x53\x9c\x5e\x1c\xae\x13\xfe" "\xa1\x4a\xfb\xa6\x06\x93\x14\xbc\x58\x87\xa2\x6d\x2d\x29\x10\x01\xac" "\x6d\x99\x4d\x59\xfd\xda\xa0\x4b\x4d\x1d\xbd\x53\xd4\x60\x9f\x05\xa1" "\xc6\x2b\x32\x44\xc5\x4d\x09\xc3\x18\x35\x77\xc6\x18\x27\xde\xbb\xf7" "\x6f\x4a\x28\x4b\x5e\x3e\xcf\x02\xd3\x61\x9b\xfd\xe2\xec\xc2\x8d\x1a" "\xc3\x3a\xc7\xb7\xbf\x5f\x24\x62\x90\xa7\x70\xb1\xa8\x1e\xcc\x38\xe1" "\xba\xaa\x98\x8f\x66\x5f\xf3\xe1\x0d\x67\x9a\x47\x41\xd1\xfc\xc9\x78" "\x12\x87\xa0\x8e\xd0\x93\x94\xf7\xc9\x3e\x09\x42\x29\x27\xb8\xf1\x8d" "\x4e\xe4\x50\x9e\xf8\x29\xe0\x7e\x55\x51\x7f\x12\x2f\x2c\xd3\xe2\x1f" "\xd8\x09\xdd\x60\xc9\x58\xf5\x98\x66\xbc\xa0\xe0\xb3\x6f\xe2\x6b\xfd" "\x0c\xa7\xd5\x23\x6b\x98\x8a\x3a\x93\x87\x28\x1a\xac\x76\xd8\x3d\x44" "\x41\xa4\xf4\x09\x9d\x6d\xf7\x6f\x31\xa6\xee\x9d\x9a\x37\x58\xb1\x95" "\x4c\x82\x58\xeb\xa1\x45\xab\xad\x6c\x20\x2a\x9d\xeb\x79\x9e\xf1\xf9" "\xb1\x42\x45\x34\x88\x76\x1e\x41\xaa\xa4\xed\xf4\x1f\x91\x2b\xfc\x70" "\x92\xc9\x6e\xb9\x28\x32\x04\x23\x56\x7e\x63\x90\xd4\xd7\x26\xeb\xda" "\xbd\xf3\xf0\x87\x7f\xd6\x89\x2b\x90\x5f\xc0\x6f\x06\xa1\xbd\x14\xc3" "\x87\xde\x25\x89\x74\xeb\x3d\x10\xe8\x29\x5b\x6a\x94\xf6\xf4\x64\x5f" "\x64\x28\xea\x4b\xd3\xac\xd5\x52\x91\xb4\x73\xf6\x0d\x34\x2f\x62\x3c" "\x8a\xa3\x45\x7b\xa8\x15\x78\xfc\x04\xa5\xcc\xd8\x22\x78\x69\x3d\xdd" "\x41\x6b\x01\x88\x36\x9b\x89\x3a\x0f\xd7\x41\x40\x3b\xa7\x55\xd4\xd1" "\x94\xf3\xbc\xf1\x26\x30\x0a\x34\x00\x71\xdf\x37\x21\x3d\x43\x7e\x19" "\xae\xfb\xc0\xc2\xd5\x1d\x90\xb5\xbe\x4d\x27\x87\x2f\xce\xbd\xe0\x99" "\x8d\x94\x29\x88\x7f\x01\x40\x6c\x56\x8a\xe0\xb6\xa3\x24\x62\x64\xfe" "\xbd\x5d\x2e\x4a\xdf\x3e\x5c\x82\x57\xa1\x26\xf1\x84\x21\x4d\xee\x0e" "\xc0\x7b\xff\x2a\x52\x6f\xf3\x98\x57\x08\xdb\xf5\x27\x51\x7d\xd5\x50" "\x09\xd1\x74\x52\x3f\xda\xa2\x84\x98\x04\x1c\x80\x49\x51\xa7\x25\xd7" "\x5f\xfc\xd7\x47\x4f\xc7\xdb\x75\x9f\x52\x8d\x61\x77\xc4\x8d\xd0\x00" "\xc1\xe3\x70\xb7\x69\x12\x25\x52\x16\x0d\x37\xd1\x30\x14\x8e\xaf\xef" "\x67\xac\x87\x39\x85\xe6\x6c\xfd\x1d\xad\x02\x9f\xeb\x2c\xaa\xf3\x56" "\xaa\xe3\x93\xa8\x67\xeb\xea\xf8\x30\x06\x28\x35\x53\x78\xce\xf9\x9d" "\x95\x38\x61\x38\xac\xed\xc2\xab\x85\x11\x06\x74\x38\x56\x3c\xe0\x99" "\x3e\xc4\xeb\x8e\x5c\x33\x5a\xa6\x96\xe0\x0a\x29\x7a\x3c\xfb\xc3\xbd" "\x3b\xd1\x66\xdb\xce\xe8\x88\x32\xe8\x7b\x68\xa0\x67\xba\xf2\xb8\x7a" "\x19\x61\xac\x51\xb1\x7f\x33\xe6\xdc\xfb\xed\xfe\x74\x7d\xc0\x00\x7b" "\xe8\xe6\xf0\x15\x04\x03\x64\xda\xc4\x18\x23\x24\x99\xe9\x38\x11\xca" "\x14\xbd\xf0\xe2\xa2\xd3\xa5\xfc\x45\x70\xf9\x88\xcd\x1b\x63\x83\xad" "\xef\x15\x8c\xc0\xa7\x79\xcd\x68\x50\xae\x85\xde\xd8\x6c\x39\xea\x85" "\xad\xc2\xb7\x19\x49\x77\x8b\xbe\xde\xce\x4f\xd3\xf4\xc8\x1c\x16\xde" "\x74\x2d\xe0\x77\xa5\x3d\x54\x15\xcd\xf6\x8f\x82\x7d\xcf\x56\xa7\x29" "\x4c\xc7\x21\x46\x80\x56\x04\x74\xaa\x35\x5c\x1d\x61\xcf\x4a\x98\x4d" "\x4c\x8f\x7d\xd3\x8b\xee\x6c\xd6\x84\x1a\x95\xf5\xb9\x61\x19\x35\x94" "\xb0\x2e\x33\x04\xfa\xaf\x8c\x4b\xa2\x65\x3c\xfe\x3a\xf4\xe9\x37\x8b" "\x37\x53\xde\xe4\xaf\xe9\x0e\x1c\x46\x9c\x1c\x06\x74\xfe\x64\x1c\xa0" "\x94\x55\xda\x39\xf6\x72\x54\x4f\x79\xce\xff\xc4\x20\x15\x65\x2d\xa8" "\x18\x47\x2a\xdd\x8a\x04\xf9\x9b\x2a\xf0\x8f\x21\x78\xf4\x0a\x0a\xbd" "\xae\x9f\x7c\xfa\x64\x08\xcb\x9d\x68\x12\x72\x25\x41\xfb\x4e\xf2\x65" "\x35\x1f\x72\xf5\xc0\xd4\x07\x6f\x22\x5e\x4f\x4a\xb5\xdc\x4b\x46\x7d" "\x06\x36\x34\x1c\x35\x4b\xd1\xf4\xdd\xee\x92\xa0\x75\xfd\x95\xe6\x64" "\x02\xe7\x7e\xd2\xfb\xf8\x85\x74\xab\x86\x6d\x61\x51\xaa\x00\x27\x41" "\xf0\x37\xa2\x57\xf5\x9f\x73\x53\x77\x07\xf7\x5e\x91\x3d\xeb\x7a\x28" "\xad\xed\x09\x47\x94\x68\x93\x38\xb1\xeb\x04\xfe\xe1\x8d\xda\xc0\x91" "\xa1\x9d\xe9\x81\x41\x63\x42\xab\x9d\x02\x84\xbd\x0f\xab\x41\xec\xf7" "\x98\x2c\x25\x75\xea\x03\xe4\x61\x5e\x44\x13\xe5\x42\x00\x57\x85\xbe" "\x31\x82\x14\x48\xcd\xbd\x6e\x99\xf3\x0d\x30\x8c\x5d\x97\x0e\x98\xbf" "\xf4\xec\x29\xe4\x1c\x72\x15\x77\x8e\x36\x33\x6c\xc3\xe8\xd0\xde\xdd" "\xc5\xd6\x02\x31\x1d\xc2\x97\x40\x1c\x00\x09\x2d\xb1\x55\x8b\x3b\xbf" "\x7d\x56\xc4\x7d\x45\x6b\x25\x8d\x13\xc8\x98\xaf\xa4\xb4\x22\xdb\x0a" "\xb2\x41\xe3\xf1\x52\x21\x36\xbb\x19\x60\x46\xd6\x8b\xcf\x1e\x71\xb7" "\x8d\x78\xc0\x35\x6f\x8f\x9f\xb1\x41\xa9\x01\x1a\xc4\xd2\x2c\xaf\xfb" "\xde\xf0\xd8\x31\xda\x1c\x64\xd9\x70\xc7\xbc\x0d\x85\x9b\x15\x8f\x80" "\x17\x0c\xe0\x82\xe5\x65\xfa\x20\xed\xa8\xc6\xe0\x2b\x49\x68\x5d\x49" "\x97\x51\x23\x15\xfe\x81\x88\x15\xee\x0f\x38\x4a\x85\x3e\xd3\x95\x41" "\x2c\x10\x95\x12\x47\x4e\x35\x7f\x33\xaf\x2e\x50\x0c\x98\x4c\x03\xaf" "\x8f\x2c\x88\x4a\x2a\x6d\x1c\x02\x09\x6c\x9e\x81\x07\x22\x84\xce\x6c" "\x4b\x6e\xe4\x9b\x7f\xfe\x98\x70\xa1\x55\x7a\xc3\x0b\x35\x3d\xa8\x8e" "\x2c\xda\x30\xd2\x5e\x1e\xd4\xc7\xcb\x46\x01\x95\xf4\xca\x9f\x24\x26" "\x15\x6f\x98\x8f\x58\x9a\xdc\xcb\x8f\xee\xcb\x9d\x3d\xa5\x79\x69\x1c" "\xc5\xfc\x44\x80\x61\x4c\x8c\xbd\xe7\x99\xc6\x41\xf8\xe0\x12\x1c\xba" "\xdf\x21\x5f\x0d\xf1\x52\xa4\x4b\x1c\x50\xfd\x8d\xfe\xa4\xad\xa8\x36" "\x3d\x65\x68\xf1\x43\xbb\xbc\xe2\x16\xb4\x0d\xab\x75\x43\x88\x23\x9d" "\xc2\x58\xc6\xee\xfd\x40\x96\xaf\x60\xc7\x48\xfe\x81\x81\xd9\xb2\x81" "\xb0\x6b\xd2\x48\xa1\x17\x4a\x65\x5c\x80\x83\xb7\x1d\xc6\xe1\x4b\xe3" "\x38\x4a\xbe\x15\x2c\xca\x49\xfe\xf9\x4d\xb2\x1e\x5c\x67\x6b\x3b\x24" "\x82\x3e\xff\xc1\xbf\xa2\xf4\x2b\x84\x35\x76\x24\x4a\xb9\xb0\x95\x17" "\xf4\xe2\x8d\x8d\x2b\xff\x11\x1c\x81\x98\x50\x2a\x67\x8b\xf3\x72\x30" "\x52\xe3\x65\x83\x66\x36\x3a\xc5\xa9\xbb\x5f\x09\x59\x15\x18\xe8\x1b" "\x6e\x84\xe2\x65\x9c\x7b\x5a\xb4\x81\x06\xdd\x5b\x90\x5a\x7d\x6d\x57" "\xf9\x24\x9c\xc6\x7a\x3b\x7f\xc3\x09\xd8\x47\xc3\x81\xd9\x1d\xb8\x45" "\x2a\x3a\x2d\xdb\xaf\x64\x54\xaa\x7d\x98\xcb\xce\xe4\x62\x72\x86\xf9" "\x22\xe4\x7b\x02\x18\x2a\x31\x3c\x18\x6e\x9a\x47\x9a\x4f\x4d\x61\x58" "\x71\x44\x0a\x0e\x8c\x0f\x20\x11\x65\xab\x60\x38\x72\xab\xb1\x37\x0d" "\x97\xf8\x78\x98\xe5\xd1\x43\x16\xc2\x19\x38\x66\xcb\x13\x3c\x94\xe5" "\xfa\x1d\xde\xba\xed\xa8\xe4\x92\xa8\xda\x34\x49\xa3\x73\xd9\x96\x9e" "\x68\x96\xf0\x22\x6e\xf4\xec\x02\xba\x7d\x7f\x2a\x43\xe0\x5f\xe4\x18" "\xb3\x65\x96\x0a\x94\x5e\xb4\xf5\xf5\x1c\x77\x3f\x7d\x36\x46\x04\x9e" "\xd6\xb0\xb8\xe0\xf8\x3b\x1a\x4d\x20\x02\x2e\x35\x58\x62\x4d\xd0\xb8" "\x05\x55\x91\x78\xd9\x01\x3e\x77\x3d\x3a\x87\xd9\x9f\x1e\x6b\x5a\xf4" "\xe4\xf3\x16\x70\x4b\x25\xd4\x5a\x11\x9d\x6d\x7b\x50\x49\xec\x57\x35" "\xe7\x1c\xac\x1d\x5a\x3f\xaf\x8c\xff\x50\xd2\x70\x4f\xdf\x7c\xb3\x09" "\xe2\xf0\xd7\xf3\xce\xf0\x2e\x52\xc3\x93\xce\x36\x18\x37\xe2\x94\xb2" "\x8a\x0a\x59\x1c\xc3\x5e\x6c\xd5\x05\x51\x76\x2e\xf0\x3d\x8e\x25\x90" "\xf3\xe9\x23\x82\x83\x70\x64\xeb\x1a\x34\xf6\x1e\x87\xb0\xd9\x95\x2e" "\x86\x94\x12\xf6\x2d\x35\x2a\xfe\x68\xa4\xe1\xe8\x0e\xd2\x3d\x6e\xbf" "\x78\x30\xdf\xb6\x26\xc0\x11\x0b\x93\x27\x4a\xfe\x51\xf9\x99\x52\x27" "\xd5\xca\xec\x6f\x85\xb0\x7e\x18\x7c\xaa\x48\xc7\xad\xd5\x3b\xa3\x60" "\x15\x86\xbe\xeb\xc9\xd5\x37\xb7\xd7\x2d\xfe\x1b\x5f\xa6\x2f\xcf\x47" "\xbe\x6b\x64\xf7\xb6\x52\xf0\x4c\x5b\xce\x08\xaa\xd0\xc3\xce\xc7\x36" "\x8f\x20\x0d\x67\xa7\x1d\x1b\xc9\x55\x95\xaf\x7a\x92\xdc\xa9\x4f\xdc" "\x33\x30\x9c\x12\x6a\x1c\xf8\xf0\x2b\xf4\xde\xe3\xd9\xcf\xfc\x24\xc0" "\x0b\x84\x99\xfa\x8e\x0d\x75\xf3\x24\x3f\x4b\xec\x76\xb2\xc5\xfb\x63" "\x17\x4c\xd6\x37\x60\x0f\x22\xc0\x2b\x33\xc5\x06\x6b\x58\x66\x19\x62" "\xbc\xab\x78\x84\x26\xfa\xd0\x0e\x17\xc0\x27\x55\x4b\xc8\xfb\xdd\x29" "\x52\xe2\x21\x21\x66\xa4\x9e\x7b\x1d\xb6\xa4\xa4\x9e\x9b\x63\xeb\xbc" "\x41\x71\xb0\xfe\x09\x11\x67\xcd\x3b\x23\xba\x27\x5b\x71\xa8\xf9\x48" "\x88\x8b\x68\xc8\x6e\x58\xcc\xae\x30\xac\xf9\x09\xad\xb5\x48\x6d\xf6" "\xc5\x9e\xd3\xee\xa7\xdb\x9b\xa3\x96\x4c\xb6\x6b\xf8\x71\xfe\xd0\x91" "\xf2\x20\xb9\xba\xe4\x0c\x5c\xed\x57\xdf\x04\xf8\xde\x5b\x10\xd6\xc7" "\xa7\x3e\x4e\x7f\x02\x06\x28\x81\xb2\xfc\x80\xda\x57\xd2\x6e\xef\xc2" "\xf8\xd0\x92\x0c\x43\xe0\x53\x86\x65\xd3\xe0\x06\x6a\x4c\xd1\xfe\x2e" "\x61\x6d\x5c\x64\xec\x9d\xe5\x5c\xc4\x43\xbd\x62\xf3\x33\x87\x27\x7e" "\x27\xe7\xe7\x6d\x07\xd5\xdb\xe6\xa4\x70\x1d\x79\x19\x90\x3b\xbe\x0a" "\x97\x4f\x4c\x67\xa6\x29\xdf\x91\xcc\xf0\x16\x19\x8a\xe4\x88\x95\x6c" "\xc2\x18\x1f\xe6\xfd\x94\xae\x80\xa6\xd8\x3b\x60\xa4\xf4\x5f\x95\x41" "\x71\x0e\xe3\x17\x3f\xef\xe1\x9d\xa2\x73\x4e\xf5\xa5\xcd\x09\x84\xff" "\x40\x87\xdb\x1a\xab\x35\xea\xdc\x52\x9d\x7a\xd7\x06\xbd\x4a\xfe\x3c" "\xea\x3d\xc0\xb1\x68\x29\x55\x10\x43\x71\xa1\xa4\x5d\xba\xbc\xd3\x87" "\x73\x37\x5d\x3b\xe3\xc1\x47\x94\x6b\xdd\x6b\xd3\x9e\x63\xd0\xfe\xff" "\x34\xff\xc1\x3b\x9e\x5f\x60\x9b\x22\x54\x54\x0c\x50\x69\xa6\xb6\xca" "\xd1\x36\x74\xc9\xfc\x9a\xed\x41\xef\xf6\x4c\x42\x0c\x35\x8c\x85\x5a" "\xb0\x2e\x73\x6a\x7b\x89\x3c\xab\xad\x9a\x07\xd2\xdb\xc0\x08\xb3\x8e" "\xa7\x3c\x81\x5e\xe5\xe5\x97\x4a\xe4\x77\xb1\x97\xdf\x5e\x6d\x28\x65" "\x31\xdf\xeb\xf3\xf0\xd6\x11\xf4\x06\xe3\x1c\x6f\x70\x4e\x03\x76\xaa" "\x92\x31\x98\xf6\xf5\x6b\xe5\xfc\x0c\xc2\x3a\xf9\xdc\xd2\x72\x81\x21" "\xed\x7c\x98\x60\x1d\x6f\x82\x78\xcb\x9e\x53\xb6\xc1\x74\x7f\x8c\x49" "\x01\xa8\x5d\x91\x5d\x16\x50\xa3\x66\xe1\x87\xe9\xe8\x5b\x24\xc5\xcd" "\x1e\x90\xbf\x1f\xf7\xba\xd3\xfd\x94\xa7\xd7\x6f\xec\xfd\x8d\xa4\xea" "\xdc\x93\xbd\xed\xbf\x7e\x04\xcc\x24\x32\x95\xae\x6c\x03\xb4\xbd\x41" "\x7b\xfb\x3b\x66\x9c\x9d\x48\x66\x41\xa6\x85\x44\xa0\x1e\xf6\x7f\xc2" "\xa2\xed\x17\x88\x8a\xde\x7d\xbc\x53\xe3\x47\xfa\xd9\xd4\xd4\x15\xbb" "\x02\x83\x19\x76\x3e\x8a\xed\x33\x97\x3c\xc6\x75\xca\x6f\xb9\x79\x09" "\xaf\xbf\xa0\x57\xc5\xf3\xfd\x98\xb2\x8d\x41\xdb\xec\x8d\x7c\x36\xc7" "\x12\x22\xf4\x98\xdf\x66\x44\xb4\xb7\x72\x41\xe8\x62\xc8\x1f\xb4\x8a" "\xda\x63\x83\xb8\x09\xeb\x6b\x17\x57\x3a\xa4\xa1\x62\xbe\x71\x38\xa6" "\x1d\x4f\xc9\x17\xd1\x4e\xd9\xf3\x77\xcb\xa4\x31\x3f\x81\x05\xb9\x20" "\xe6\xc9\x27\x9f\xbe\xda\x7e\xc6\x11\xeb\x1a\x0c\x4d\x91\xcf\x86\x14" "\x67\x26\x22\x97\xaa\xc6\x75\xb2\x5d\x72\x96\x6b\xe9\x27\x96\x3f\x14" "\x9d\xc9\xfc\xac\x91\xaa\xec\x02\xa2\x4a\x91\x14\x53\x8a\xd7\xf1\x4f" "\x60\x02\xed\x03\xb3\x18\x2b\x5d\xbc\x01\xc1\x45\xc1\x53\x6f\x24\xdd" "\x4e\x31\xac\xb5\xad\x99\x10\x84\x98\x70\xad\xf6\x3a\x4d\x82\x70\x8b" "\x32\x54\x49\xd3\x83\xd7\x97\xdd\xea\x74\x98\x9c\x3f\x4c\xdd\x47\xfa" "\xa2\xcd\x56\x8e\x3e\x56\x1f\xfe\x58\xae\x4e\x7e\xaf\x86\x2e\x12\x6c" "\xa9\xba\x33\x55\x6c\xae\x25\xcc\x6f\x92\x77\x69\x62\x0c\xb7\x47\x88" "\xf7\x38\x81\x14\xcc\xc3\x76\xe3\x27\x34\x09\x5d\x55\xab\x52\x34\xbf" "\x48\xa3\x7d\xee\x63\x1d\x77\x9f\x39\xb0\x95\x48\x3d\x71\xb1\x03\xc2" "\xa3\xf5\x74\x7d\x5b\x6a\xe5\xe8\x09\x25\xe2\x75\x5c\x46\x31\x38\x01" "\x58\xe7\xdf\xde\xba\xfc\xec\xe0\x66\x1f\x63\x44\x9c\xb1\x57\x27\x80" "\xdf\x8a\xa6\x44\xc7\xe2\x6d\x16\x28\xed\x4c\x4c\x72\x3c\xd9\xe3\xdd" "\xf1\xf1\xb4\xc1\x88\xf5\x80\xce\x98\x40\x08\xad\xab\x7b\xe8\x06\xb1" "\x1f\x88\xe4\x29\x91\x45\x4c\x10\x0b\xb6\xcf\xe5\x12\x71\xa2\x88\x77" "\x95\xfe\xec\x6c\x8a\x1f\x43\x7e\xc0\x81\x50\xa3\x72\xc7\x5c\x20\x64" "\x56\xd1\xa6\x7a\x3d\x38\xb1\x85\x84\x5c\xea\x57\xf7\x8b\x52\x80\xef" "\x3e\xbd\x37\x65\x08\x4b\x6b\xd3\x6d\x1a\x46\x1e\xde\x21\x85\xd2\x22" "\xd5\xe5\x5d\x68\x89\xfc\x7e\x8b\x66\x73\x49\x91\x48\x53\x4c\x12\x90" "\xae\xc0\x9d\x10\x58\x08\x24\x7c\xc6\x63\xb7\x8c\x16\xf8\xc7\x38\x21" "\x78\x3c\x73\x9b\xac\xf9\xdb\x1c\xb9\x24\xf5\x08\xa7\x68\xc0\xed\xeb" "\x14\x6e\xff\xf6\x6e\x8a\xaa\x72\x9d\xf2\x28\x26\x44\x7c\xce\x3b\x2d" "\xe0\x39\x18\x3b\x06\xef\xed\xff\x5d\xc6\xd7\xb4\xb0\x8e\x72\x22\x03" "\x43\xbb\xaf\x39\x39\x88\x1d\x96\x1a\x72\x09\x22\xfc\x93\xa5\xae\x3c" "\xf4\xdc\x35\x8e\xd7\x07\xbd\x52\xb5\x99\xb6\x2a\x4a\xd1\x43\xb2\x52" "\x2e\xca\x1b\x49\x8d\xb7\xd3\x39\x14\xb8\x3c\xdf\x49\xe5\xce\x42\x60" "\xd8\xf4\x99\xda\x5e\xe3\x54\xcd\x43\x2d\xea\xb0\x94\xec\x06\x51\x30" "\xbc\x2b\xe5\x73\x85\x92\x6b\xd8\xde\xf4\xc3\x4e\x20\x30\x6f\x44\xe6" "\xfe\xe4\x56\xca\x77\x5d\x90\xda\x1a\xdd\xaa\x8d\xc7\x6e\x78\x40\x80" "\x7b\x39\x58\xf5\x67\x0e\x3a\x20\xed\x8f\xbf\xcb\x4f\x98\x93\x70\x91" "\x90\x9c\x45\x37\x0c\xd8\x40\x25\xe5\xdf\xcc\x8b\xe8\x96\x8b\x19\xc6" "\x02\x83\x31\x84\xa8\x50\x94\x0e\xee\x7a\xfa\x5a\x52\x31\x68\xb3\xe5" "\x58\x53\x69\x58\x08\x7f\x14\x9e\x12\x00\x93\xb1\x6a\x1a\x7f\xea\x60" "\x56\x82\x71\xee\xd8\x4a\x34\xce\x9c\x8d\xce\xd1\xf8\x42\xa4\x3d\xdb" "\x0e\x41\xfc\xb5\xa3\x2d\x9e\xe0\x49\xd7\xab\xef\xae\x98\x1c\x64\xe3" "\xde\x87\xb4\x15\xdb\xfc\x3a\x64\xfd\xcc\x1c\xd7\x73\xdf\x1f\x67\xf6" "\xfc\xf6\x02\x84\x87\xc6\x06\x29\xae\x88\xab\x09\x6f\xce\x8b\x58\x97" "\xb2\x8a\x21\x5d\x69\x05\xf6\x94\x9a\x34\x31\x3c\xc4\x0e\x79\x7a\xcd" "\xd8\xcc\x3c\xba\x86\x98\x04\x41\x8a\x35\xb8\x26\x14\xb2\x7c\x75\xd6" "\x1b\x6e\x19\x6b\x3a\xfa\xce\xdf\xe9\x8a\x97\xe6\x70\x2d\x40\x5a\x5b" "\xd6\x04\x61\xcd\xfe\x85\xfd\xf8\xa0\x37\x0a\x41\x5d\x9e\x1b\x17\x35" "\x29\xc5\xa7\x06\xbd\x25\x53\x13\x86\xf1\x00\x36\x81\x17\x3b\x5c\x81" "\xb7\xf8\xf2\xf1\x88\xad\x61\x03\x53\x72\x3f\x56\x59\x4e\x20\x5b\xbd" "\xdf\xe1\xf7\x55\x06\xfd\xfb\xce\xe5\x95\x3b\x4b\x45\x59\xb1\x83\x11" "\xaa\x75\xc7\x7e\xff\x80\xba\xe6\x85\x6c\x12\x6a\xd5\x6a\xeb\x66\xa3" "\x9d\xf3\xd8\x91\xa6\xfc\x56\x77\x92\x9e\x92\x82\x6e\x45\x0c\x10\xcc" "\xfc\x76\x84\x4e\x5c\xef\x4d\x9c\x6b\x16\x18\xce\xe3\xcf\x75\x69\xd3" "\xc2\xee\x64\x98\xa3\x0b\x94\x31\xbf\x45\xa1\x7b\x39\xdd\xd8\xad\x7b" "\xc7\xc5\x6a\x92\x46\x54\xcc\x87\xdb\xec\xe4\x70\xa2\x5b\xce\x40\x73" "\x56\xd6\x51\x0a\x2e\xe0\xf7\xdf\x49\x84\x93\x80\xf0\x81\x26\xcd\xce" "\x20\x5a\x52\x08\x6c\x72\x13\xb1\x51\xec\x5f\x23\x85\xad\x84\x88\xee" "\x02\x21\x06\x74\x96\x2b\x9f\xac\x2c\x59\xed\x81\x2d\x44\x86\x9a\xa5" "\x2f\xae\x7c\x86\xe0\x71\x1e\xfd\xb4\x00\x09\x9b\x47\x2c\x05\xf0\x61" "\xe2\x1d\x5e\x8e\x77\xb0\x23\xd4\xb5\x1f\x06\x54\x12\xa9\x6b\xe1\x03" "\xc9\x56\x58\xa2\x2e\xcf\x29\x4c\x94\xd7\x47\x48\xd4\xd5\x50\x8c\xcd" "\xdf\x40\xea\xdf\xcf\xf2\x87\xe5\xd7\xb1\xc3\xb9\x5e\xac\xa0\xdb\x06" "\x55\xb1\x21\x1b\xf2\xf3\x8d\xa4\x60\x61\x24\xf5\x56\xcb\x9e\x12\x86" "\xc0\xd4\x38\x45\xf8\xe5\x4c\x98\x8f\x54\x2c\x2d\x17\xba\x2f\x77\x63" "\x71\xa5\xf7\x50\xb7\x5f\x62\x11\x92\xc6\x95\x43\x9a\x15\xfd\x59\x95" "\x46\xfd\x77\x12\xc7\x0f\x1f\xf8\x62\x8a\x44\x78\x40\x22\x8e\x40\x5a" "\x18\x67\xc7\x7c\x18\xb5\xab\x04\xb8\xc9\x1f\x64\x99\xa0\x86\x34\xf3" "\x5a\x71\x2c\xec\x4a\xe3\xdc\xa0\x5c\x60\xe1\xf3\x5b\x62\xde\xe6\x6f" "\xaf\x50\x43\xc8\x7b\x46\x9f\xe1\x89\x71\x67\x49\x8a\x0f\xb5\xe9\xee" "\x65\x2e\xc6\x42\x8c\x66\x5a\xb5\x62\x2e\x8a\x87\x7a\x1e\x33\xa2\x24" "\xd8\x58\x9f\x84\x70\xf1\xe1\x93\xf5\x53\x2c\x64\xec\xdc\xb4\xc4\xa8" "\x82\x90\xf7\x3f\x9a\xed\xab\x47\x78\xdd\xf5\x24\x11\x8c\xc7\x5e\xda" "\xa6\x61\x80\x37\xe8\x38\xfd\xfb\x47\xdc\x05\x26\x25\x08\xdf\x09\x31" "\x3f\x97\x2f\xf4\xee\x91\x85\xf2\xde\x94\x0d\xd2\xd9\x81\xae\xde\xa2" "\x25\x44\x4c\x8e\x87\x73\x22\x88\x17\x34\xeb\x6a\xf1\xca\x9e\xf3\xc8" "\xab\x16\xeb\xfa\x1b\x46\x81\x1b\x17\x59\x5d\xe2\x63\x54\xa6\x21\x84" "\x31\x68\x37\xa1\x7a\xda\xbf\xd8\xe4\xb1\x3b\x2b\x26\x5c\x89\x65\x68" "\xc9\x19\xa5\xe8\xac\xec\xc9\xfa\xc5\xf7\x18\xba\xb5\x55\xaf\x25\x62" "\xcd\x5b\xdb\xcf\xa3\x9d\xfd\xfc\x72\xec\xb9\xbc\xa7\xe1\xec\xfb\x7b" "\x8b\xb6\x68\xd2\x79\x2a\x22\x11\xa6\x08\xce\xf9\x06\xe4\xf7\xea\xfd" "\xfb\x75\xe6\x82\x85\x6f\x85\x77\xc4\x0f\x3b\x6c\x5f\x08\x2e\x69\x94" "\x90\x15\xdc\x60\x9c\x5f\xf6\x90\x25\xa2\xe4\xa0\x4e\x44\x83\x5b\x3e" "\xdf\x16\x5f\x68\xb3\x22\xf6\x08\xa3\xd3\xe0\x55\x8e\x5e\x48\x8c\xf2" "\x19\xae\x84\xb2\xde\x4a\x1a\x5d\xb7\x98\xbd\x63\xaa\x53\x55\xd0\x6f" "\x1d\x11\x54\x97\x3b\xbb\x9d\xf9\x30\xa9\xcd\x25\x28\x6b\x07\x0a\xf0" "\xeb\x61\xfd\xac\xd8\xc8\xb2\x9f\x0e\x14\xb2\x9c\x31\xef\xe5\xb2\xa2" "\xa5\x92\x3f\x24\xf1\x82\x5b\xb7\xfe\xe0\xb9\xd0\x01\xdf\xb4\x46\x6a" "\xa5\xd8\x07\x89\xde\x2d\x70\x19\x8c\x84\xed\xc2\x20\x87\x11\x15\xbb" "\xca\xf4\xfd\xeb\x4d\x01\x06\xe1\xcb\xbd\x45\xd9\xe9\x14\x6c\x78\xac" "\x3d\xd4\xc9\xef\x3a\x8f\x0c\xbf\xcf\xb6\x41\x88\x9a\x9e\xeb\x41\x25" "\xf7\xf1\xcb\x28\x7b\x6b\xe4\xc5\xe4\xe6\x75\x5e\xc0\xc8\x1c\xa9\x22" "\xa8\xa3\xf6\x35\x7f\xae\xc6\x71\x9d\x3d\x27\x2c\x02\xbe\xa6\xae\x8d" "\xf7\x44\x1a\x88\x8d\xda\xfe\x44\x85\x69\x3a\x2a\x2d\x48\x62\xfe\xfc" "\x94\x69\xc5\xd2\x42\x99\x6d\xf7\x3e\x4b\x91\xbe\xea\x63\xd1\x36\x05" "\xd3\xeb\x59\x8f\xcf\xad\x39\x45\x29\x78\xdc\x1b\x9f\xc5\x3f\x7b\x73" "\x2b\xae\x8b\x1e\xf2\x7f\x7f\x34\xba\x12\xe9\xd2\xc3\x5d\x3c\x9a\x19" "\xcc\x24\xc2\x7b\x59\xcd\xb7\x5a\x4d\x14\x9c\x09\x4b\xa0\xf3\x0e\x39" "\x87\x17\xfa\xb3\x11\x5f\x18\x55\x3d\xc6\x7e\xeb\xf5\x00\x66\x9e\x4d" "\x32\x6c\xbb\xc0\xc9\xd8\x18\x4d\xd4\x42\xe6\x67\x15\x62\x97\x8d\x85" "\xd7\x65\x46\x13\x07\x0a\x78\x31\x17\xe7\x0f\x20\xd4\x4f\x4b\xa5\x87" "\xcf\x7f\x22\xe7\x5d\xd0\xff\x37\x0e\x2e\x03\x63\x6b\x26\xe3\x19\xd2" "\xff\x0b\x59\x5f\x36\x1c\x41\xf2\xc1\x9c\x54\x0d\xb5\x98\xb7\x61\xca" "\x57\x51\x97\xf8\xed\x10\xe7\xf4\x58\x85\x15\xad\x2b\x72\x0c\xa1\x90" "\x4d\x81\x79\x64\xea\xbf\x20\xcb\x7b\x6b\x6b\x5c\x72\x71\xca\xd9\x91" "\x02\x69\xd5\x87\x5d\xb5\x4a\x91\xf0\x80\xa7\x34\x3e\x18\xda", 8192); *(uint64_t*)0x20005100 = 0x20000800; *(uint32_t*)0x20000800 = 0x50; *(uint32_t*)0x20000804 = 0; *(uint64_t*)0x20000808 = 0; *(uint32_t*)0x20000810 = 7; *(uint32_t*)0x20000814 = 0x24; *(uint32_t*)0x20000818 = 0; *(uint32_t*)0x2000081c = 0; *(uint16_t*)0x20000820 = 0; *(uint16_t*)0x20000822 = 0; *(uint32_t*)0x20000824 = 0; *(uint32_t*)0x20000828 = 0; *(uint16_t*)0x2000082c = 0; *(uint16_t*)0x2000082e = 0; memset((void*)0x20000830, 0, 32); *(uint64_t*)0x20005108 = 0; *(uint64_t*)0x20005110 = 0; *(uint64_t*)0x20005118 = 0; *(uint64_t*)0x20005120 = 0; *(uint64_t*)0x20005128 = 0; *(uint64_t*)0x20005130 = 0; *(uint64_t*)0x20005138 = 0; *(uint64_t*)0x20005140 = 0; *(uint64_t*)0x20005148 = 0; *(uint64_t*)0x20005150 = 0; *(uint64_t*)0x20005158 = 0; *(uint64_t*)0x20005160 = 0; *(uint64_t*)0x20005168 = 0; *(uint64_t*)0x20005170 = 0; *(uint64_t*)0x20005178 = 0; syz_fuse_handle_req(r[0], 0x20003040, 0x2000, 0x20005100); break; case 5: memcpy((void*)0x200006c0, "./file0\000", 8); syscall(__NR_newfstatat, 0xffffffffffffff9cul, 0x200006c0ul, 0ul, 0ul); break; case 6: memcpy((void*)0x20000000, "./file0\000", 8); syscall(__NR_creat, 0x20000000ul, 0ul); break; case 7: memcpy((void*)0x20000480, "./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, 0x20000480ul, 0x20000040ul, 0ul, 0x20000180ul); 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; }