// https://syzkaller.appspot.com/bug?id=91701ee2f288d658b82230f73db3750c73bdcbe7 // 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; } static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } 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)) { } loop(); exit(1); } #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 < 7; 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); } uint64_t r[2] = {0xffffffffffffffff, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x20000080, "./file0\000", 8); syscall(__NR_mkdir, 0x20000080ul, 0ul); break; case 1: memcpy((void*)0x20002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, 0xffffffffffffff9cul, 0x20002080ul, 0x42ul, 0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200042c0, "./file0\000", 8); memcpy((void*)0x20002000, "fuse\000", 5); memcpy((void*)0x20002140, "fd=", 3); sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x20002155, ",rootmode=00000000000002000040000,user_id=", 42); sprintf((char*)0x2000217f, "%020llu", (long long)0); memcpy((void*)0x20002193, ",group_id=", 10); sprintf((char*)0x2000219d, "%020llu", (long long)0); syscall(__NR_mount, 0ul, 0x200042c0ul, 0x20002000ul, 0ul, 0x20002140ul); break; case 3: res = syscall(__NR_read, r[0], 0x200021c0ul, 0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x200021c8; break; case 4: *(uint32_t*)0x20004340 = 0x50; *(uint32_t*)0x20004344 = 0; *(uint64_t*)0x20004348 = r[1]; *(uint32_t*)0x20004350 = 7; *(uint32_t*)0x20004354 = 0x22; *(uint32_t*)0x20004358 = 0; *(uint32_t*)0x2000435c = 0; *(uint16_t*)0x20004360 = 0; *(uint16_t*)0x20004362 = 0; *(uint32_t*)0x20004364 = 0; *(uint32_t*)0x20004368 = 0; *(uint16_t*)0x2000436c = 0; *(uint16_t*)0x2000436e = 0; memset((void*)0x20004370, 0, 32); syscall(__NR_write, r[0], 0x20004340ul, 0x50ul); break; case 5: memcpy( (void*)0x200043c0, "\x4b\xf6\xdc\x3f\xa0\x4e\x1e\x89\x3e\x52\x76\x2c\xcc\x69\x67\xa8\xd9" "\x2c\x06\x8d\x7b\x64\x7c\xd2\x5c\x28\x95\xfa\x71\xfd\x1b\x4e\xbf\x82" "\xc0\x45\xab\x88\xdd\x0c\xad\x96\x14\xc3\x9b\x0d\xf5\xae\x21\x74\xae" "\xe8\x5f\x6c\x64\xcb\x46\x90\x23\x9a\xfb\x86\x49\x8b\xf9\x07\x41\xa2" "\xf8\x7d\xf2\xa0\x53\x9b\xa2\x3d\x53\xdb\xf8\xf1\x06\x0b\x2e\x5b\xb1" "\x5d\xe2\x1f\x95\xd5\xd6\x3e\xc4\xe2\x96\x2f\xe6\xfb\xe3\x5a\xcc\x4c" "\xa5\x82\x65\xec\x00\x5b\x20\xe6\x43\x28\xd8\xcd\xea\x5b\x96\x05\x80" "\xe8\x9a\x86\xfd\x1b\x03\x4d\x54\x15\x07\xe0\x8f\x6b\xc7\x96\x7a\x4e" "\xc4\xe4\x9d\x5f\x08\xd9\x68\x06\xf0\x25\x6b\xf2\xcb\xcc\xae\xf2\x09" "\x8e\x5b\xc3\x17\x21\x6f\x90\xce\xf6\x8c\xb3\x19\x28\x9b\x0a\x50\x63" "\xb1\x0c\xeb\xe6\x91\x91\x2f\x9a\x36\x69\x2f\xdc\x8e\xe6\xd7\xee\xb6" "\xe1\x13\x9f\x30\x53\xfa\x94\xd8\x12\x54\x1a\x05\x2f\xde\x8d\x78\x6b" "\x97\xd5\x80\x7d\xcb\xa4\x9b\x44\x94\xd5\xda\x21\xbc\xaf\xc0\xb6\x5c" "\xc0\x8c\xff\xba\xa6\xd5\x47\x6a\x13\xc3\xb9\xf6\x6b\xa3\x9a\xa6\x71" "\x5a\xfd\x74\xbf\xdd\x99\x28\x3c\xb9\x33\x04\xda\x71\xca\x34\x43\x89" "\x31\xd3\x1b\xcf\xa4\x7e\xe3\x9c\x7f\x82\x9d\x4d\x22\x97\x68\x90\x96" "\xb2\x20\x65\x84\xa9\x9d\x3b\xed\x9b\x2a\xff\xdd\x73\x8b\x58\x4c\xd1" "\xd0\xa2\x08\x09\x0e\xc9\x35\xa1\xae\x62\x73\x70\x22\x19\x5b\xfb\x59" "\xea\xc4\x47\x93\x11\xfd\x67\xf2\xc7\x9c\xda\x18\x9b\xf6\xe6\x5d\x94" "\xf6\x7b\x63\x6a\xf7\xb0\x74\xa3\xc2\xcb\xa0\xb7\x8f\xfe\x24\xf2\x56" "\x20\x1e\x77\x39\x7f\xae\xcd\xad\xf3\xbd\x7a\xb8\x69\x4b\xcc\xd1\xdd" "\x11\xcd\x3b\x69\x87\xa5\x66\x51\xbf\x03\xc7\xf9\xec\xd1\xeb\x98\xe6" "\x1e\x4e\xe6\xee\xa5\xbb\x95\x15\x74\x07\x08\x1c\x46\x38\x66\x53\x30" "\xb0\xcc\x3f\xbf\xab\xd8\x6b\xa6\x0d\x72\x9a\x3e\x73\x9c\x87\xa5\x95" "\x20\xbc\xf4\x35\x21\xb2\x40\xeb\x26\x1e\xa1\x30\xb5\x12\xd5\x9a\xd8" "\x4a\xa4\x7c\xc6\xd6\x4f\xee\x21\x7d\xbb\x90\xd1\x87\xf2\xe8\x26\x6c" "\x6f\x7a\x97\xd8\x61\x5a\xfe\x9a\x42\xce\xbd\x1d\x5f\xaa\x1a\x01\xac" "\xb9\x86\xba\xb7\x57\x40\xea\x24\x03\xbc\xb9\x37\xda\xbe\xc0\x92\xc0" "\x84\x1e\x5f\x90\x29\xe9\xa6\x35\x42\xad\xbe\x24\xbb\x75\xdc\xbc\xce" "\xea\xa1\xc8\xf9\x1a\x4f\x71\x9d\x06\x7f\x3b\x36\x6a\xad\x19\xc5\xf9" "\xb4\xf9\x38\x50\xd9\x38\xdb\xd6\xc0\x56\xd1\x7e\x6f\x12\x79\x77\x98" "\xb1\x64\xc5\x1c\x3b\x4d\xa4\x49\xcb\xca\x88\xb8\xb2\xd1\x94\x82\xdc" "\xe0\xcf\xdf\x99\x4a\xfb\xf6\xdd\x3d\x71\x6d\xd2\x76\xd2\x3f\x8c\x6a" "\x76\xee\x51\x5d\x9f\x90\x61\x92\xdb\xea\x55\x12\x77\xbe\xb9\x1a\x4f" "\x53\x82\x7e\x0e\xd5\x6a\x07\x05\x0c\xfe\xb7\xd3\x32\xbb\x52\x98\xb6" "\x2b\x1a\x44\x0f\x0b\xc4\x83\x7a\x5d\xad\xc9\x75\x03\x85\xdb\x63\x92" "\xa5\x3e\xa7\xb5\x8b\xf6\xdb\x9a\x17\x5a\x66\x53\xe5\x70\xd9\x47\x36" "\x5a\xe4\x29\x63\xfe\x81\x16\x64\x6d\x0d\xc2\x4a\xb9\x31\x7c\x74\x75" "\xf3\xcb\xe5\xfa\xb2\x41\xc9\x8b\xc4\x95\x7c\xb6\x05\xa6\xa5\xca\x1e" "\x76\x41\xf0\xd9\xba\x32\x21\xf6\x9f\x14\xb3\x3d\x36\xf0\x8f\x27\xf8" "\x31\xc2\xfa\x48\x11\x19\xa4\x46\xf6\x55\x7a\x52\x8d\x98\x32\x6b\x6f" "\xaf\x88\x68\x5f\x5c\x06\x35\xe9\x05\xd7\x87\xdd\x77\x09\x57\xd5\x27" "\xc8\x8f\x61\xda\x01\x39\x28\xe8\xf6\xd9\xd3\x3d\x05\xfa\x30\x17\x1d" "\xb0\x06\xda\xcf\xbf\x38\xd0\x55\xec\x9a\x37\x07\xfb\xbf\x5c\x1f\x9b" "\x9a\xec\x25\x4f\xb6\x95\xdc\x72\x01\xf1\xa0\xc8\xb3\x17\x39\xf4\xde" "\x3d\x7b\x70\xbf\x85\xcd\x68\x9a\x38\x10\xd0\x9e\xe8\x76\x99\xff\x57" "\x8a\xe3\x93\x6f\xba\x08\x14\x6a\xbc\x98\x45\x87\x60\x83\xb1\xaa\xca" "\x93\x46\x3c\xd8\x70\x55\x53\xd3\x28\x58\x42\xf3\x50\x87\x52\x12\x4d" "\x80\x7b\x13\x73\x6f\x24\x1d\xb2\x8c\xfe\x28\xca\x92\x03\xd1\xf9\x32" "\x3f\xbe\x59\x65\x21\x58\x87\xcd\x36\x75\x90\xc7\x6c\x75\x33\x78\xf8" "\xe8\x7b\xbe\x37\x42\xda\x44\x79\xcf\x40\x42\x41\x04\x06\xd7\x22\x3c" "\x35\x0f\xb6\xc4\x92\xa9\x11\xa5\x11\xc6\x3e\x60\x28\x23\xeb\x5f\x0d" "\x2f\xe0\x2b\x43\xe0\x8b\xd3\x4f\x26\x6f\xa7\x37\x24\x88\x78\xe2\x56" "\x00\x8f\x85\xd7\xc6\x72\xf2\x39\x7d\xc8\x09\x1b\x35\x7e\x79\x10\x85" "\x73\x5b\xbe\xac\x97\x8c\x5a\x64\x81\xaa\xf2\x10\xad\x80\x0a\x0f\xc2" "\xce\xeb\xe4\xb3\xa5\x5b\xea\xb0\xf5\xc4\x07\x0a\x5d\x54\x67\xc8\xa7" "\xa7\xff\x70\xed\x05\x8b\xd2\x0d\x92\xc3\x27\x57\x64\x5a\xd4\x9b\xf2" "\x14\x16\xda\x27\x62\x24\xff\x21\xbb\xf1\x6f\x6e\xfb\xc5\xef\x46\x7a" "\xe3\x5d\xa4\xd6\xe1\x09\x56\x6f\x20\x5c\x2c\x03\xee\xd2\x39\xf0\xc3" "\xf5\x1b\xad\xe7\x41\x59\x76\x44\xf2\x73\x3f\xcd\x27\xb8\xb4\x92\x41" "\x4d\xdb\xd7\x4b\x6e\x57\xc5\x91\x85\xd7\x8b\x79\x12\x58\x93\x00\xcb" "\x2d\x2b\x9d\xed\x7a\x16\x9f\xf0\x8c\x21\x37\x3c\x0d\x62\x0d\x72\x61" "\xb2\x88\x7d\xd6\x3d\x78\x26\x74\x15\xd7\x99\xf1\x40\xe6\x3d\x68\x01" "\x0b\x7e\x6b\x40\x95\x29\x8d\x2d\x91\xe8\xeb\x03\x77\x6e\xe7\xe2\x3b" "\x37\x27\xb1\x56\x21\x2e\x49\xd9\x28\x69\xba\xf6\xb4\x34\xcb\xcb\x14" "\x81\xb1\x5c\x5f\xe5\x5d\x8f\xf1\x7a\x4f\x3b\x8a\x7b\x65\xad\x83\x52" "\x31\xc4\x52\x7f\x8d\x13\x59\xb4\x8b\x49\xb7\xdb\xf3\x69\xcc\xf3\x5d" "\x89\xd9\x58\x81\x8e\x1a\x62\xc3\x76\xa6\x48\x1a\x40\xf7\x02\x84\xaa" "\x09\x25\xbd\x68\xb4\x4e\x5d\x4a\x21\x65\xfb\x12\xae\x12\xda\xd6\x81" "\xe7\x61\x22\x60\xc2\x1c\x84\x69\xf8\x36\xe3\x58\x6e\xb7\xfc\x87\xe6" "\xef\x7b\x60\xca\xab\x4e\x60\x8d\x20\xd4\x43\xa9\x3c\xc7\xc5\x19\x1b" "\x86\x52\x65\x42\x60\x6f\xd0\xed\x36\xd0\x28\x99\xaf\x9b\xfb\x1d\x54" "\x9e\x82\x99\x87\x48\x6b\xdf\xb8\x7e\x6b\x0a\x5d\xb2\x48\x84\x37\x9a" "\x73\x2b\x7a\x47\x35\x24\x6f\xb8\x53\x38\x65\xe5\x61\xc7\xaa\xea\xf8" "\xbb\xac\xe9\x68\x6b\x5d\xc0\x5c\x16\xc6\x26\x4b\x7a\x2f\xc3\x13\xaa" "\xf5\x17\x12\x4c\xfc\xf5\x96\xac\x35\x81\x9b\x37\xfe\xea\xb2\xfc\xa4" "\x5a\xf1\x21\xce\xa1\xe8\xaa\x53\x2a\xb7\x42\xfb\x28\x9b\xc1\xf3\x5c" "\xd1\x62\x14\xa3\xc5\x01\xf3\x17\xf9\xe3\xf6\x5f\x04\x9d\xc4\xe8\x73" "\x9b\xda\x71\x73\xaf\x11\xb5\x2c\x6e\x46\xef\xb7\xa2\x46\xc1\x0d\x28" "\x39\xdb\xd3\x57\xda\xcc\x30\x88\xec\xee\x08\x86\x9d\x64\x94\x36\x98" "\xd1\x13\x99\xb2\x48\xc1\xf6\xfd\xf0\x61\x5e\x98\x33\x30\xa5\x8a\x50" "\xe1\xea\x4b\x94\x6f\xb5\xfb\x77\x68\x14\x4f\x93\x14\x5f\xf9\x1c\x3e" "\x5b\x45\x2f\x0f\x17\xd3\x9a\xb9\x37\x3c\xf3\x82\x6e\x39\xa5\xa4\x63" "\xb2\xdd\xac\x80\xda\xd0\x0e\xb2\x4b\xc8\xb9\x96\x9b\xbc\x0b\x76\xf4" "\xce\x27\xd8\x4a\x66\xdc\x18\xf0\x4d\xf2\x5e\x2e\x52\x6c\x6c\x40\xf8" "\xd9\x6e\x2e\x58\xd6\x53\xe3\xf1\xdf\x2b\xaf\xdb\x41\xea\x76\x34\xca" "\xc1\x34\xf4\x2f\x0a\xed\x90\x65\x93\xf7\xf6\x7f\xdf\x4b\x7e\x89\xac" "\xc4\x97\xf7\x77\x08\x9e\xcf\xf9\x10\x22\x30\x35\xc8\x90\xc7\x3f\xfe" "\xe0\x71\xd1\xbf\xf7\xef\xa3\x03\x40\xf6\x4e\x61\x5d\x42\xcd\x5c\xfe" "\x0c\x66\x64\xf7\x10\x3e\x40\xa4\x36\xcc\x48\xeb\x58\xbd\x85\x57\x81" "\x85\x15\x11\x6a\x13\x5e\x6e\x6d\xdd\x20\xd5\xe9\x1a\x66\x13\x76\xb8" "\x06\xe0\xc8\x07\x11\x04\xff\xf3\x01\x9d\x4a\x43\xde\xfe\x5a\xa0\x02" "\x30\x2d\xff\xb4\x91\xc8\x40\x0e\xae\xfe\x53\x35\x10\x3e\x75\xe8\x55" "\x81\xd0\x84\xd0\x94\x34\x6f\xee\xdd\xe9\x29\x71\x42\x62\x41\x9a\xc9" "\x7d\xf2\x4a\x92\xd0\xdb\x15\xa3\xff\xa8\x36\xb3\xac\xbd\xf3\xa9\x4e" "\x81\xb0\x20\xc6\xca\x19\x9a\x58\x41\xa1\x81\x49\xd4\x78\x3c\xe0\xa5" "\xf0\x96\xa5\x1f\x8a\xd4\x3a\x09\x55\x84\x61\x29\xc6\x5e\xcd\x92\x05" "\x66\x81\xda\xd7\xb6\xa7\xf1\x09\xda\x76\x87\xb0\x45\x9d\xdc\xcf\x5a" "\xb6\x81\xba\x44\xe7\xb1\xc5\xdb\xa0\x74\xa5\xf5\x8e\xec\xa5\xe5\x39" "\x8c\x3f\x0a\x3e\x68\xc6\xd3\x85\x21\x33\xab\xf5\xce\xc2\x6d\x62\x97" "\x22\x17\x00\x00\xb3\x21\xd3\xcc\x25\x18\xbe\x72\xaf\x03\xc8\xcb\x25" "\x55\x69\x60\xa9\xa7\x12\xdd\x5f\x57\x8c\xae\x02\x0c\x06\x3d\xf6\xc2" "\xdd\x1b\xe8\x80\x79\xc2\xc9\x83\xce\x5f\xea\x53\x09\xb8\xa3\xff\x18" "\xc6\x26\x5b\x6e\x1e\x51\xb9\x0f\xf0\x13\xa7\xda\x3f\xee\x4d\x30\xf3" "\x4c\x3e\xbb\xf2\x25\xf3\x01\x51\x16\x1a\xcd\xcf\x48\xbe\x64\x2e\x1e" "\x1a\x91\xd0\x5d\x2e\xf3\x97\xaf\x5c\x32\x54\x2f\xda\xd3\x1d\x4f\x03" "\xd0\xe6\xa2\x31\x3e\x56\x08\xaa\x35\xa2\x39\xf0\x6f\x6c\xcb\x55\xd7" "\x27\xd7\xcd\xff\xd8\x39\x9d\xaf\x8f\xfd\xba\x9f\xe1\x61\x98\xe2\xe8" "\x6e\x0f\xe5\x7e\x20\x9c\x25\xf2\x57\x32\x36\xed\xa9\x3b\xb8\xbd\x1e" "\x7a\xf1\x89\xd8\x08\xfa\x19\xd1\xb5\x88\xd3\x22\x2d\xef\x4b\xaa\x06" "\x27\x3d\x4e\x60\x58\xf7\x26\x90\xd3\xc2\xbb\xe1\xa9\xc4\xcf\x40\xa6" "\x43\x18\x5d\x55\x48\x66\x51\x99\x42\xf4\x9d\x25\xa3\xc6\x9a\x0a\x81" "\x8d\x9a\xea\xcf\xd6\xcd\xcf\x63\xa4\x16\x78\xbe\xfa\x28\x73\x70\x58" "\x06\x59\x98\xd3\xbb\xac\x06\xf5\xa6\x9e\x5f\xfa\x4c\x1f\x0e\x50\x7e" "\x6b\x6c\xae\x29\x8a\xd6\x68\x67\x22\x61\x81\xce\x2f\x69\xc0\xfc\xc0" "\x06\xbd\xc8\xf7\x2d\x70\x4c\x71\xe9\xb5\x6a\x44\xc6\xe2\x5c\x20\xaa" "\x58\x19\x15\xf1\x61\x12\xba\x06\xfd\xca\xa3\x0e\x54\x99\x4f\x5d\x3b" "\xda\x51\xe0\xc9\xbd\xf6\xa5\xf2\xbe\x50\xa9\xed\x5d\x52\x35\x4c\x0e" "\x95\x78\xd5\x1f\xbd\x6d\x45\x37\xbd\x74\x03\x4e\x06\xe6\x65\x24\xda" "\xe9\xd4\xd8\xa7\x37\xd7\xe7\x54\xcc\xfc\x8a\x9b\xa8\x66\xc6\x98\x97" "\xd0\x64\x2f\x09\xe5\x84\x21\x53\xbe\x82\x5b\xc5\xa9\xb6\xed\xbd\x05" "\x72\xfe\x82\xaf\x88\xdd\xcf\xd8\x9a\xd3\x67\x1e\xf0\x0e\xc8\x4d\x5a" "\xf1\x60\x4c\x36\x29\x34\xd5\xe7\xf6\xb3\x2c\xe6\xb5\x07\x63\x43\x5d" "\x75\xf6\xd0\xde\x21\x08\x6f\x66\x3f\x57\x3c\xb9\x7f\x52\x33\x57\xd9" "\xd8\x11\x13\x25\x74\x6e\xfd\x82\x34\x25\x8e\x34\xfa\x0f\xa0\xb0\xcd" "\x5c\xba\x95\xbf\xa4\x50\xe5\x72\x8e\x3b\xdf\x55\xa7\x43\x00\xb5\xbe" "\x64\x95\xab\x2c\x80\x2d\xe0\x40\xf6\xe6\x39\x74\xe7\x89\x8c\xd7\x52" "\xaa\x43\x0b\x5e\xf2\x93\xa9\x30\x97\x9c\x94\xa0\x55\xd1\xc6\x4f\x9c" "\x49\xcd\xa8\x99\xcd\x2a\x02\xdf\xa1\x1a\xff\xcd\x40\xcb\xad\x43\x05" "\x8d\x76\x48\x75\xbd\xe5\x1e\x48\x57\xe8\x39\x28\x78\x3e\x6a\xa0\x20" "\x5a\x81\x10\xad\xd1\xc1\x8a\x15\x24\x15\x0a\xd0\x4f\xdf\x8a\x87\xc7" "\xd9\xa0\x15\x0a\x98\xae\xba\x21\xea\x26\x95\x0f\x34\x5d\x87\x7b\xaa" "\x7e\x93\x22\x6a\x76\xc3\x3b\x80\x65\xca\x5d\xa9\x75\xd6\x74\x26\x14" "\xe2\xcb\x5b\xba\x3f\x44\xa7\xea\x8f\x9b\x1f\x04\xa3\xdf\x0c\x7a\x34" "\xbf\x5a\x53\x75\x94\x63\x62\xd3\x24\x62\x5a\x3d\xdb\x46\xf0\xa3\x8d" "\xa0\xbd\x5a\xfa\xda\xe2\xcc\xb6\x17\x39\x5f\x21\xbe\xc0\x67\xc6\x4c" "\xb8\xa3\x31\x54\x22\xa3\xf7\xd1\x57\x87\x4e\x80\x1a\x12\x17\x96\x64" "\x17\x4f\x5d\xd9\x3c\x37\xe0\xdc\xdf\xd7\xca\x29\xfc\x0c\xf7\x49\xc6" "\x1d\xba\xe4\x1a\x95\x13\x88\xdf\x9f\x9a\xb2\x45\xac\xdb\x63\xd1\x61" "\xae\x2e\x06\xc1\xf2\xc8\xe2\xae\x54\x8d\x87\x30\x05\xbe\x0e\x26\x7d" "\xcc\xda\x63\x29\x40\x41\x3e\x46\x41\x98\x53\xad\x4f\x8c\xe0\xfd\xde" "\xc1\xf3\x69\xf2\xf2\xf9\x80\xc0\x45\xac\x8b\xe2\x26\x8e\xe6\x31\xf4" "\x14\x6d\x40\xe0\xce\xba\x1e\x4f\xac\xc2\x3c\x10\x9b\xbe\x56\x8b\xaf" "\x8c\x47\xf2\x9b\x5c\xad\x32\x8a\x91\x2f\x7f\x7d\x0e\x65\xb6\x44\x6f" "\x39\x6f\xc0\xff\xcc\x04\x18\xab\x1b\x5a\xd7\x1d\x47\x31\x55\x85\x4c" "\x00\xa7\x48\xfe\xfe\x90\x07\x4b\x37\xa3\x93\x3f\x50\xb6\x8d\xca\xf9" "\x18\x81\x11\xe3\x70\x8d\xa2\x33\xd9\xf4\x56\xb0\x14\x67\x3d\xdf\xcf" "\x2d\x2b\x3a\x57\xfe\x36\xd3\x5e\xe7\x85\x30\x17\x9d\xce\x47\x57\x52" "\x78\x4e\xf7\xc7\x80\xee\x81\x36\xa9\xd9\x3b\xb5\xaf\xcf\x6e\x47\xe2" "\xc1\xe9\xc1\x01\x59\x9e\x3f\xf3\x0a\x9e\xec\x9e\x70\x0f\x8d\x35\x05" "\x0a\x28\xc1\x75\xd6\x16\x31\x92\x3d\xe5\x5f\x1a\x43\x98\x0f\xe8\xd0" "\xfe\xed\x2e\x44\xaf\x44\x26\x93\x98\x73\x59\x0a\x7a\xd7\xd5\x59\x27" "\x5e\x72\xaa\x2e\x1f\xc6\xb2\x4b\x6a\xa6\xe5\x89\x5a\x6b\xf2\xe0\x54" "\x5b\xbc\x41\x1c\x2a\xe5\x24\x3d\x2e\x14\x24\xd8\xbe\x74\xe1\x17\x06" "\x33\x62\xf1\xa1\x8f\x99\x62\x8e\xc5\x05\xbe\x8d\x2e\x81\xb4\x0a\x08" "\x39\x96\x83\xd2\xbd\x7c\x63\x8b\x15\x1a\x25\x1e\x01\x6a\xed\x18\x0c" "\x01\xee\x2d\x22\xac\x9c\x07\xe7\xfc\x2e\x55\x58\x1f\x4d\x0e\x8f\x86" "\xbc\x90\xcc\x03\xc6\x5a\x17\x71\xcf\x0e\xfa\xe5\xd3\x86\xda\x1c\x5a" "\x29\xea\x54\x36\x93\xfb\xa0\xd4\x56\x10\x05\x99\x86\x92\x8e\x34\xac" "\xb8\xfb\xad\x31\xf2\x98\x66\xb2\xdd\xc5\x87\x58\x55\x20\x78\xdc\xb9" "\xde\x36\xf1\xf4\x25\x5a\x38\x12\xbb\xbb\x0b\xa5\x79\x02\xc7\x15\x2a" "\x9c\xe6\x19\xd7\x39\xdd\xe6\xaf\x8e\x38\x59\x51\xa4\xe6\x62\xb9\x4a" "\x27\xf8\xc2\x07\xc9\xa9\x01\x8a\xbc\x65\xcc\xa9\x5a\x57\x73\x9c\xd1" "\x62\xd6\x5b\xd1\xf4\x92\xd6\x28\x2f\xae\xd4\xcd\x60\x6a\x77\xe0\x25" "\x7c\x7b\x2d\x99\xe1\x80\xbc\xc1\x01\x56\x1d\x40\x43\x26\x18\xe4\x04" "\xc7\xdf\x32\x19\xea\x93\xc7\xb8\x32\x74\x3f\x0d\xf8\xf1\x1f\x3b\x07" "\xc6\x94\x3d\xe5\x8b\xe1\xe7\x80\x72\xc7\x6c\x26\xf4\xe4\xad\x19\x81" "\x7e\xb8\x0e\x19\x6a\x45\x54\x5b\xf0\x1f\xef\x04\x89\x0e\xfa\x40\xcf" "\xeb\x99\xf3\x10\xf9\x7d\x6f\x28\x22\xdf\xcd\xf9\x6c\x26\xc6\xad\x1f" "\x99\x03\xa6\xd1\xb7\x4a\xe9\xc7\x1d\x3b\x8e\x58\x98\x18\xc7\x56\xab" "\x69\x96\x35\x16\x04\xea\xd6\x3d\xd5\xb5\xa8\x4b\x2d\xeb\xdc\xae\xe5" "\xeb\x06\x4c\x9a\x0c\x1d\x9d\x22\x4c\x7c\xe1\x71\xd7\xa4\x9c\x41\x3a" "\xaf\xf8\xbf\x85\xaa\xfa\x1c\x21\xf9\x14\xc5\xba\x70\x6f\xab\xe8\xcb" "\xbd\x9c\x6c\xab\xdb\x90\x83\x13\x7d\xc6\x57\xc0\x02\x8d\x6b\xf5\xb1" "\x6e\xb1\xc9\xf4\xd0\x46\x40\x4d\xaf\xb9\xe2\x67\x48\xb5\x99\x50\x26" "\x75\x9b\xaa\x01\xbf\x7a\xc8\x6c\x70\xec\xeb\x04\x25\x2f\x83\xa1\x1d" "\xfb\x1c\x7c\x33\x8d\x78\x08\x88\x9f\x9b\xb9\xea\x66\x6d\x6b\xb9\x08" "\x23\x1d\xa6\x5f\x83\xc4\xc0\x0c\x3d\x74\x69\x4d\x66\x11\x26\x42\x88" "\x04\x46\x47\x6f\xca\x05\xba\x9d\x48\x13\xf1\x7c\x35\xa2\x4a\x0f\xf8" "\x7e\x95\x61\xed\x01\x73\x10\xe4\x8e\xe5\xf2\x44\x06\xcf\x2b\x77\xac" "\x29\x94\x26\x49\xf3\xb9\x9d\x04\xf3\x57\xdc\x69\x41\xea\x6e\x16\xe3" "\x95\xcf\x2a\x6a\xbc\x7d\xd2\x18\x6e\xc0\x3e\x38\x25\x7a\x02\x02\xab" "\x94\x68\xc8\x16\xda\xe2\x92\xfb\xe8\xaf\xa6\x3c\x53\x1f\x1e\x05\x17" "\xb7\x52\x16\xf6\x9e\x9b\x5c\xf1\x2a\x38\x77\x42\x7c\xd7\x05\xc1\xc1" "\xbe\x6c\xcf\x9c\xea\x34\x33\x1f\xf7\x91\x26\xaf\xba\x55\xe7\xc8\x07" "\xbe\xd9\xf6\xb1\x70\xa4\xe8\x59\xd7\xab\x71\x93\x63\xc0\xd9\x3d\x2d" "\xc2\x9a\x28\x72\xfc\x64\x05\x1a\xd5\xe4\x9e\x79\x49\x1a\x19\x20\x5e" "\x2a\x12\x99\xe4\x0d\x65\x27\x18\xfa\x22\xd5\x09\xcf\x4a\x4f\xcb\x61" "\x00\x62\x44\x2a\x2b\x8f\x84\x77\x8d\xec\xf4\x19\x16\x2c\xb0\xc7\x12" "\xb1\xe2\xda\x9b\xc0\x00\x68\x41\x88\x5e\xdd\x5e\xf4\x64\x7f\x0d\x84" "\x4b\xd0\x40\x8f\xf9\x8f\xd4\x6e\xce\x64\xc4\xea\xa1\xdf\x38\x6c\x0e" "\xa3\xd9\x27\xbf\x1c\xe4\x98\xc9\xd6\x5d\x04\xf7\x05\x13\x5d\xa6\x4e" "\xb9\x02\x03\x79\x62\xe2\xd1\x28\xd5\xad\x2b\x3f\xa7\xf6\x39\x6f\x80" "\x62\x3a\x8e\x75\x6d\x7d\xaa\x94\x93\x18\x90\xc4\x76\x50\x66\x5d\xd6" "\x83\xa4\x1a\x9e\x7f\xcf\x9f\x41\x2f\xd7\x47\x9e\x34\x30\x4f\x7c\x01" "\x90\xe5\x48\x3e\xb2\x88\xcc\x66\x04\x06\xc1\xab\x22\x3d\xc1\x1f\x9c" "\x07\x61\xa7\xe2\x04\xff\x5e\x17\x06\xba\x6c\x06\x06\x27\x03\x45\x50" "\xc0\x7c\x7f\xb9\xa2\x15\xcf\x77\xfe\xd0\x79\x89\x5f\x1d\x3c\x0a\xcc" "\x55\x95\xf2\x84\x7c\xa6\x8b\xec\x53\x5c\x4b\x78\x9f\x2a\x7b\xf0\xf9" "\xaa\x8d\x7a\x45\xa4\x72\x68\xbd\x5c\xa1\x19\x9c\xbe\xf7\x05\x9e\xa3" "\x41\x7a\x2e\xd1\xf2\x07\x75\x76\x45\x0f\x75\x2b\x77\x99\x87\x01\xb3" "\x9a\x86\x91\x29\x25\xb0\xb1\xe1\x4a\xf6\xe6\x78\x5a\xf8\xfd\xbf\xc8" "\x0e\xa9\x1b\x9b\x39\x68\x8a\xf9\xfe\x83\xfe\x1f\xf7\x02\x29\x32\x8a" "\xa3\x7e\x6d\x89\x04\xfd\x6a\xb0\x26\xf4\x63\xa5\xf4\x69\x3d\x60\xc5" "\xde\x70\x8a\x66\x09\xf8\x88\xf1\x9d\x53\x9a\x14\xb2\x19\xd3\x82\x7f" "\x5c\x9a\xa9\xf8\xd6\x4f\x58\x00\x5a\x4f\xb4\x89\xc7\x8b\x99\x96\x11" "\x6f\x21\x0e\x15\x45\xa2\xdb\x01\x5a\xaa\x12\xaa\xd6\xa7\x2b\xd2\x78" "\x2b\x41\xfb\x73\x3b\xfd\x56\x70\x6e\x73\x9f\x3f\xa7\xfe\xd3\xe3\x50" "\x49\xd5\x23\xfd\x8d\x27\x9d\x41\x97\x80\x96\xf6\xfd\x44\x63\xe5\x4b" "\x10\xe5\x4e\x0c\x3c\xc5\x3e\xad\x22\xfe\x0d\x42\x32\x28\x1a\x5a\x2e" "\x1d\xc4\xf1\xca\x58\x61\x37\xe8\xf6\xc9\x27\x6e\x13\xd0\xda\x51\x3b" "\x7b\x59\x51\xb9\x2b\x9d\x8d\xf1\x95\x88\xa8\xdf\xa6\x3e\xba\xf5\xac" "\x15\x10\xe9\x46\x7e\xbe\xea\xc4\x85\x72\x74\x74\x29\x23\xcd\x62\xc9" "\x15\x81\x88\xbc\x2d\x0b\x63\x35\x88\x25\x13\x01\x8d\xa5\x65\xab\xd4" "\xd2\x0f\x32\x3b\x97\x6d\x23\xc0\x8e\x9d\x6c\x43\xf7\x35\x8b\x68\xf2" "\x6d\xbb\x72\x08\x2b\x97\xb7\x6f\x8d\x87\x19\xc6\xc5\x53\x1e\x4e\x92" "\x5c\xdf\x7f\x21\x29\xce\x71\xb7\x60\xb4\x26\x58\xc1\x46\xc4\xf1\xbd" "\x31\x6d\x9e\x00\xe9\x64\xe8\xd6\x5b\x4d\xf8\x92\x0d\xc3\xc0\x14\x9a" "\xaa\xa0\xa5\x04\x4a\xdf\xa5\xde\x19\x1d\x89\x15\xd6\x4a\x18\x1f\xd1" "\x25\xff\x70\x97\xc2\x7b\x3f\xe6\x88\x2b\xb6\x24\x63\x60\x39\xd9\x4a" "\xfa\x11\x8f\x82\xf7\x30\xa8\x43\x47\x85\x1c\xa1\xd2\x8b\x0f\x84\xf3" "\x23\x45\xf4\x80\xa3\x48\xe3\xbb\xc0\x34\x8c\xe2\x4b\x62\xb4\x0c\x92" "\x75\x74\x3c\xe4\xfa\xe3\x1b\x24\x1c\x74\xcb\x70\xd5\xe8\x41\x10\xe0" "\xde\x52\x59\xf5\x96\x10\x06\x25\xba\xbe\x3e\x01\x3f\x0a\x42\xfd\x0e" "\xe0\xcd\x4d\xb1\xea\x81\x40\xb3\x6e\x48\x48\xa8\xa7\xdf\x1e\xfe\xa5" "\x4b\x79\x27\xd6\x6a\x1a\x23\x33\x12\xa2\x0b\x92\x8d\x03\x68\xa9\x54" "\xbd\xf1\x33\xc0\x2e\x1d\x4c\xd8\xc7\x2e\x36\x35\x12\xec\xf7\x9a\x6e" "\x20\x14\x23\x28\x17\x2f\x95\x93\x05\xf3\x2f\xf6\x98\xa9\x42\x33\x57" "\x8f\xe7\x38\xbf\xf4\xa9\xfd\x91\xbb\xbe\xe2\xf4\xd6\x64\xb2\x43\xd0" "\x47\xbf\x16\x1b\xd5\xbe\xd0\xda\x85\xee\x82\xea\x85\x32\xc0\x04\x2a" "\xa4\x72\x51\x62\x12\xdf\x0b\x57\xf1\xde\x1a\x6d\xd4\xdc\x7d\xca\x1a" "\x7b\x39\x21\x77\x0f\xed\x42\xd9\xac\x4f\xa6\xb6\xce\x27\xfa\x01\x53" "\x91\xbb\xf6\x85\xdb\x95\xd5\x78\xde\x63\xfa\x76\x19\x3d\xc5\x7d\x94" "\xd3\x00\xe4\x9d\xd1\x62\xed\x48\xf4\x97\x58\xc4\xe7\xa2\xb5\x44\x90" "\x41\x36\x8d\xf8\x61\x96\x57\x44\x09\x94\x0e\x83\xc0\x64\xc4\x5e\xc4" "\x44\x8e\xbd\xcc\x39\xdb\x17\xfe\xde\x8d\xca\x59\x65\xde\x8e\x0b\xcc" "\x52\x6f\x87\xd5\x92\x6d\x5c\x20\xdc\xcf\x86\xcf\x3c\x59\x1d\x39\xa9" "\xa3\xd4\x27\x3f\x77\x8a\xc1\x3d\xb4\xbe\xf4\x55\xf0\xf5\x7e\x4f\x45" "\xfb\x00\x6e\x3a\x67\xf8\x02\x13\x27\x45\xa7\x55\x14\x54\x56\xcb\x15" "\xdd\x48\x03\x7f\xea\xf9\xb5\xfa\x8f\xf8\x1e\x03\xdf\xaf\x94\xa8\x06" "\x07\x68\xbe\xea\x04\x84\x95\xf3\xcc\x41\xca\xc7\x05\x42\x88\x17\xd5" "\xf5\xa3\x79\x82\x26\x1f\xa4\xeb\xbf\xac\x38\x1d\x01\xaf\x12\x7e\xee" "\xf6\x98\xf3\x8d\x6b\x41\xc8\x22\x80\xf3\x00\xaf\x60\x53\xe8\x6b\xd5" "\x6b\x76\x85\x92\x9b\xb7\x6e\x3c\x91\xd8\xd7\x80\x3f\x6e\xcd\x40\xc1" "\x7e\x2c\x28\xcf\x40\x8a\x9f\xfa\xd5\x1f\xa4\x2d\x04\xbb\xb3\xbe\x80" "\x96\x86\x6d\x38\x1a\xe2\x01\x03\x02\xa0\x49\xb0\x07\x4a\x24\x8a\x5c" "\x8c\xdc\x5a\x47\x2c\x3a\x4e\x1e\x27\xcb\x2f\x55\xe9\x2e\x2d\x37\xf5" "\xb8\x08\x2b\xb7\x00\xb7\xcc\xe9\x18\x66\x44\x53\xcb\xde\x11\x41\x7f" "\x11\x7c\x7f\x7c\xf7\x50\x09\xfe\x9c\xac\xc6\xc3\x8b\x9b\xc6\x82\xaa" "\xa0\x36\x35\x6d\xc2\xe4\x64\x7a\xee\x59\x43\x2d\x97\xf7\xd5\xf1\xdc" "\xfd\x64\xf6\x1c\x96\xcd\xda\x4e\x7a\x94\xfd\x00\xf0\x7b\xd6\xcd\x89" "\x5b\xfb\xfd\x4a\x54\x53\xa1\xdd\x51\xfd\xdc\x5c\xb6\x45\x5d\xb0\x34" "\x9b\xc3\x27\xe8\x89\xb8\xc6\x1d\x66\xa0\xc1\x44\x01\xa9\xf7\x1d\x22" "\x0d\x8c\xaa\x83\x8d\x6f\x1c\xce\x00\x74\xd2\x8e\x00\x91\x9a\x83\x9a" "\x25\xa0\xdf\x88\x58\xf0\x0e\xd9\x5d\x3f\x65\x78\x7b\x14\xc4\xed\x8d" "\x90\x1d\x2f\x8b\xab\xa0\x1d\x19\x5b\xc8\xd2\x68\xfd\xf1\x3f\x17\xa0" "\x37\xb0\xab\x06\x70\x21\x26\x68\x7f\xdc\xc5\xbe\xea\x4b\x37\x09\xbb" "\x1d\xd8\x5f\x3a\xb6\xb3\x01\xf0\x4e\x73\xb8\xca\x93\x76\xeb\xf6\x79" "\xd2\x12\xbd\x0f\x02\x36\xb2\x9d\x0b\xc1\x04\xe0\x8d\xb3\xac\xde\x01" "\xe6\x72\x9c\x3f\x50\xda\xb8\xae\x46\xd4\xd5\xe5\x60\x0d\xbb\x7e\x2a" "\x43\xbf\xdf\x96\x17\x88\x33\x47\xda\xf4\x1d\x4a\x78\x7d\xe3\x8a\x29" "\x9a\xb9\xb9\x7f\xdb\x25\x74\x8f\x07\x6b\x4a\x9e\x6e\xf9\x7e\xe5\xb9" "\x7a\xd8\xb5\x22\x75\x62\x70\x60\x0b\x1f\x65\x9d\x75\xfe\x51\x56\x4e" "\x24\x4d\x9c\x30\xab\x2f\xad\x64\x93\x5b\x9a\x9b\xe2\xb2\x17\xd0\x35" "\x28\x0f\x0d\x3b\x3a\xd9\x44\xdf\x63\x4e\xf0\x97\x0b\x4b\xb1\xe2\x57" "\x69\x70\x11\xbb\x5c\x44\xcf\xea\xad\xae\x5d\x6e\xd2\x09\x48\x38\x04" "\xbc\x08\xbb\xe7\xfa\xb0\x3b\xae\x2b\xf7\x5e\x17\x7b\x2a\x9d\x4e\xdd" "\x76\x9e\xd5\xa9\x99\xfb\x09\x6f\x04\x4c\xfe\x30\xee\x71\x3c\xe2\x8c" "\xc9\x70\x3b\x05\x4b\x83\x2f\xe0\x5b\x2c\x1d\x55\x18\x01\x8e\x94\xee" "\x85\xfa\xd4\x9f\x1b\xe5\x34\x04\x71\xb6\xb9\x62\xcf\x36\x1e\x93\xe5" "\x30\x7d\xe5\xe8\x1c\x66\x74\xcf\x3e\x22\x9e\x29\xbc\x0a\xd1\x91\x27" "\x68\xa8\x1b\x0e\x19\x75\xfa\x83\xf7\xea\xd3\x9e\xba\x6d\x79\x14\xa9" "\x0d\x93\xd0\x88\xd5\xf7\xf1\x63\xc2\x9c\x15\x6e\x61\xbe\x72\x76\x80" "\x45\xde\x15\x14\xf9\xaa\x09\xf2\xe5\xcd\xc3\xfd\xc6\x94\xe4\x26\x5d" "\x71\xd5\x26\xe4\x55\xa9\x8c\xc6\xf1\x61\x8d\x19\xbe\xd6\xb7\x2c\xc8" "\xfb\x9c\x6c\x2b\x38\x6f\xdd\x98\x5e\xdb\x7d\xdc\xed\xc8\xcc\xa6\x83" "\xaf\xd9\xb2\xac\xd7\xe2\x4f\x38\x8a\x63\x0b\xf3\x3f\x1c\xf7\x65\xb0" "\x48\x3e\xa5\x78\x2b\x14\x43\x76\x3e\x19\xea\x38\x95\x06\xec\x0b\x50" "\xfa\x42\xfb\x36\x16\x76\x11\xd0\xb3\xf3\x8a\x3b\x09\xec\x83\xe3\xf1" "\x05\x93\x8a\x2e\x08\x82\xaf\xed\xd3\x60\x9c\x5b\x19\x0f\xdb\xe6\x11" "\xc0\xc8\x0a\xe3\x5a\xdf\x07\x49\x9b\x16\x0d\x70\x2d\x91\xb8\xea\xfc" "\x3a\x6a\x73\x13\x5b\xa6\xf5\xd7\x34\xd1\x38\xba\xfa\xaf\x64\x8f\x64" "\x3e\x0a\x27\xe3\xb3\x29\x06\x25\xdc\x59\x2e\x54\xd0\x84\x55\x54\x4e" "\x94\x42\x88\xed\x10\xdd\x4e\xd5\x4d\x15\x8d\x7e\x42\x6a\xf1\xb8\xda" "\xdc\xd2\x6f\xd7\xb2\x12\x47\xbb\x7b\x21\xaf\xc8\xf5\x4f\x36\xfc\x57" "\xd3\xea\x75\xc2\xf8\x5e\x13\xcb\xfc\x46\xa7\x96\x60\x33\x2d\x3a\x29" "\xb3\x0a\xcc\x5f\x7d\x19\x67\x64\x4b\x15\xf0\x27\x85\xb7\x07\x1b\xe5" "\x7a\x0a\x85\x6c\x0b\xf6\xd2\xb0\xc8\x55\x9a\x08\x39\x7e\x94\x61\x9e" "\x62\xd3\xb1\x37\x29\x96\x3c\xf2\x0d\xba\xb9\x38\x7c\xed\x69\xf6\x03" "\xf0\x62\xad\x16\x88\xcb\x39\x09\x83\x80\x51\x5d\x22\x66\x73\x6c\x7f" "\x4e\x80\xae\x83\x24\xba\x21\x08\xda\xb6\x4f\x1a\xaa\xdb\x06\x43\xd7" "\x68\x18\xb5\xc8\xf3\x0a\xd8\xdb\x89\x9d\xf2\x1d\x14\x9d\x74\xd2\x16" "\xa4\xd6\x42\x31\x89\x9c\xa0\x39\x84\xc1\x6c\xc6\x10\x17\x7c\x32\x1c" "\x64\x49\x2e\xf4\xec\xe3\xdf\xd6\xec\x2a\x0f\x63\x0a\xa7\xc4\xfc\x0e" "\x87\xad\xdf\x06\xf7\x1a\x56\x9f\x84\x5f\xd2\x8b\x22\x7b\x88\xc3\x34" "\xcc\xbd\x41\xd1\x02\xde\x67\x0f\xfa\x8e\xde\xc7\x9e\xd8\xef\x72\xfe" "\x99\xf3\x10\xe4\xd7\x78\x29\x7f\xc7\x7f\xa0\x36\x0a\xe6\x4a\x37\xc6" "\x22\xaf\xf9\x7b\x7f\xa5\x44\x63\xd0\xb2\xb6\xf1\x34\xd3\x64\x86\x05" "\xc7\xae\x6a\x33\x03\x19\xc7\x7c\x24\x2e\xaf\x7d\x78\x1e\x21\x85\xff" "\x7d\x42\xa7\x1b\x49\xaa\x78\x30\x87\x65\xe6\xc3\xa6\x51\x77\x2c\xf3" "\xb4\x21\xb2\xd2\x26\xa2\xa9\x52\x06\x2d\x04\x07\x31\x65\x60\xf2\x58" "\x9c\xa2\xd4\x22\x71\x56\xcc\xe5\xd4\x44\x7e\xab\x52\x69\xef\x15\x35" "\xda\xee\xb9\xf7\x57\xdb\x31\xe3\x8e\xe8\x63\xcd\x9e\x23\x8c\xb1\xb5" "\xe1\x84\x79\x89\xb9\x0a\x26\xc0\x21\x04\x38\x26\xd1\xaa\xba\x9a\xad" "\x22\x91\xb3\x0c\x63\x47\xeb\x54\xf3\x9b\x4f\xa8\xbe\x77\xc2\x08\x11" "\xe9\x25\x67\x1e\xcd\x42\x2e\x08\x40\xa2\x13\x36\x8e\xa0\x4c\x5b\x89" "\xe5\xc2\x4f\xed\xa6\xc2\xe4\xde\x12\xac\x48\x76\x83\x52\xf6\x14\x5d" "\x4d\x63\x9c\xad\xb2\xc7\xa9\x93\x49\x02\xb2\x9c\x2a\xa7\x6e\xfd\xa7" "\x0e\x95\x39\x04\xce\x9e\x0b\x02\xf8\xf7\x38\xed\x0c\xef\x2d\x90\x2b" "\xc6\x6d\x3c\x14\xc1\xaf\xe1\xa5\x6a\xd1\x51\x6d\xd5\xdf\xce\xa8\x51" "\xb7\x14\x74\xd1\x67\x85\x34\x15\x75\x3c\x8b\x9a\x87\xbe\xe8\xb3\xfc" "\xa4\xaa\x55\xa0\xac\x7f\xbb\x55\xd8\xc6\x35\x61\x76\x77\x8b\x9b\x4a" "\xe1\xe8\x2c\x9a\x47\xe3\x6b\x68\x9c\xbe\xe4\x51\x7e\x49\x8c\xc3\x63" "\xda\x66\x26\x38\x94\x69\xde\xd9\x6a\xbd\xbe\x06\xec\x77\xce\x9a\x9d" "\x7b\xd8\x7f\x1d\x27\x8d\x55\xd1\x68\xa7\x12\xa1\x83\x0c\xa9\x4f\x8e" "\x81\x2d\x2f\x7b\x7b\xe5\x05\x92\x3f\x63\x4b\xf7\x84\x6f\x5c\x5a\x87" "\xd2\xbb\x6a\x4e\xe9\x33\x12\xd6\xe3\xbf\x17\x00\x41\x9b\xd9\x74\x4d" "\xfe\x91\x79\x09\xf3\xa9\x11\xc7\x94\x38\xd4\xe3\xea\x5c\x90\xd3\xc8" "\x5f\xe1\x14\x96\x50\x86\x30\x02\x68\xe4\x3c\xb1\x62\xe0\xab\x7a\xc1" "\x92\x2f\x59\xc7\x9f\x47\x88\x69\x2b\x13\xbd\x12\x03\xa4\x19\x92\x4d" "\xbf\x69\x4c\x2f\x2e\x13\x0f\xe0\xa3\x2a\x97\xa6\x7b\xa8\xec\x84\x01" "\x6f\xfd\xf0\x63\x64\x74\xd8\x8e\x3c\x6d\xdd\x3d\xe9\x99\x6c\xac\xd8" "\xa3\x4d\x27\x9b\x02\x97\xea\x69\x95\x1a\xc7\x2d\xf1\x8d\xd7\x63\x1f" "\x53\x1f\x13\x65\x03\x4c\xcf\xe3\x11\xde\x64\x50\xfe\xfe\x58\xa5\x26" "\x3d\x4a\x88\x46\xbe\x88\xd7\x88\xef\x61\xed\x3c\xdd\x6f\x9c\x44\x19" "\xf6\xff\x77\xbf\x94\x12\x0c\x04\x0c\xde\x3e\xd0\xbb\x55\x8e\x52\xcd" "\x0b\xd8\x1c\x4e\x88\xb6\x9f\xde\xf0\x7b\x7f\x63\x03\xa0\x74\xb0\xa7" "\x06\x7c\x85\xdf\x3d\x9f\x9c\xcf\xf3\x4d\x98\x4b\x06\x4d\xb9\xbd\x24" "\xe7\x82\x22\xb0\x5c\xb4\xaa\x7c\x80\x18\xf0\x00\xb6\xc8\x78\x80\xaf" "\x46\xb9\x3c\x12\x62\xa3\xcd\xe9\x81\x2f\xb9\xcc\x8e\x99\x57\xd4\x92" "\xb8\xd2\x78\x04\x7d\xf9\x19\x77\x4c\xf0\x6b\x46\x6d\x40\x4e\x7a\x51" "\x6d\xe9\x3d\x2a\x09\x5a\xac\xa4\x6a\x2e\xd5\x4a\x90\x77\x7f\x41\x32" "\x00\xfc\x3b\x31\xcd\x89\x6a\x1d\xbd\x2e\xf7\xde\x23\xf1\x95\x54\xf3" "\xf3\x43\xf5\x4a\xbc\xaa\x9b\x45\x9a\xf9\xbf\xd9\xaa\x99\xc7\xc3\xd6" "\xe2\x26\x5e\x38\xc4\x00\x03\xa8\x21\x89\x6a\x3c\x2f\xa4\x88\xc7\xc4" "\x6c\x0b\x60\xe1\x2c\x86\x0b\x2f\xba\xa3\x3f\xb0\xc7\x24\x57\xec\xb8" "\xef\x68\xbc\x53\x5c\x32\x1a\x41\x46\x04\x1c\xf0\x42\x1e\x7d\x0e\xf6" "\x58\x3c\xe3\xc5\xa7\xe3\x20\x2a\xf7\x2c\x82\x12\x18\xd7\x52\x63\x03" "\xb4\xd5\x30\xb6\x83\x65\x64\x88\x8c\x22\xcb\x7c\x0f\x76\x06\x61\x1c" "\x2a\x7a\xe0\x35\x6a\x3b\x73\xa1\x8d\xcb\x79\x11\x72\x90\xb2\x65\x09" "\x6d\x28\x9e\x7b\xe2\x0d\x30\x95\xff\xb1\x6a\xfe\x26\x02\xd6\xba\x11" "\x5b\x25\x08\xb7\x62\xa7\x48\x9a\xa4\x58\x3a\xc7\xb6\x7e\xa5\x7b\xf8" "\x90\xef\xb6\x2f\xfb\xd0\x2d\x22\x30\xe6\x90\xdc\xb1\x66\x3c\x21\x63" "\x6e\xaf\x0f\xcf\xe2\xef\x3c\xc7\x77\x61\x4a\x3f\x59\x9b\x87\xbe\x8b" "\xc3\xf2\x84\x1a\xa8\x95\xa2\xb7\x6c\xae\xa9\x1b\xc7\x23\x04\x8d\x41" "\x5e\x27\x5e\xa7\xe4\xb4\x10\xa2\xc9\x4f\xd8\x0a\x84\xa2\x0d\x28\x3c" "\x17\xec\xe7\xed\x40\x09\x93\xa0\x35\x35\xa4\x67\xeb\x17\x96\xee\x27" "\xd1\x29\x3e\x15\xf0\x3f\xbb\x23\x1c\xf6\xca\x1f\x2c\x79\xa4\x1a\x89" "\x16\x6c\x64\xd7\xef\xb1\xdb\xe9\x67\x49\xf1\x5a\xb8\x89\x17\xcd\xe9" "\x5d\xd2\x1c\x60\x08\x7b\xb1\x87\xbd\x69\x93\x5c\x55\x83\x19\xe5\xea" "\x64\x37\xf7\xc7\xdf\xd7\xa1\x86\xb5\xca\xd8\xf9\xbd\x5d\xd4\x03\x42" "\xa9\x72\x9d\xa0\x45\x78\x7d\x8f\x9e\x17\xfe\xc7\x82\x82\x8e\xa5\xd5" "\xec\x02\x3f\xa0\x12\x74\x33\x5c\xdd\x20\x78\x6a\xef\xd4\x98\x87\x02" "\x9f\x69\x03\x78\xfe\x7c\xc7\x0b\x87\x88\x00\x4b\x71\xfa\xec\xe9\xb4" "\x89\xe4\xd7\x98\x9a\xc0\x17\xc7\x69\x38\x9d\x8d\x0f\x3e\xcf\xce\x01" "\x63\xb3\xe3\x0b\x48\x27\x4e\x77\x45\xa7\x5e\xc6\xd0\xdc\xdc\xe2\x93" "\x1c\x7d\x09\x42\xa6\x7a\xb4\xac\x3d\xeb\x36\x6c\x6e\x23\xf3\x39\x1f" "\x85\x33\xb3\x45\x25\x3f\xe5\x31\x34\x10\x04\x12\x6b\x03\xa6\x40\x7e" "\x8f\x7a\x58\x4c\x49\xc2\xfe\x1f\xaf\x08\x4a\xb0\x30\xd1\x7a\xa2\x25" "\xb0\x3e\x93\x20\xad\x46\x40\x3a\xc6\xcf\x07\x70\x7d\xa4\x23\xcd\x7c" "\x14\x9a\x7a\x74\x7c\x95\xd1\x7f\x26\x09\xf2\xc2\x12\xc7\x9b\xc4\x21" "\x54\x6a\x2b\x6a\x85\x22\x84\xcc\xf8\x58\xa1\xa5\x16\x5d\xbf\x5c\xb0" "\xf3\xb7\xca\xd8\x69\xbf\x6d\x96\x40\xa9\xe6\x4b\x6d\x67\x9d\x76\x2b" "\xc7\x6e\xf9\x32\x62\x88\x8a\xc1\x70\xd6\xb3\xef\x06\xae\x9c\x55\x77" "\x3d\xc0\xe8\xe5\xf0\xe0\xb2\x92\xb2\xe0\xca\xa0\xa1\x71\xc6\x2a\x2f" "\x8c\x2a\xbb\x9e\x8f\xc1\x48\x3f\x21\x14\x3e\x26\x14\x27\xfb\x1d\x62" "\xe3\x7d\xae\x44\xb8\x4a\x1d\x0f\xc7\x03\x45\x29\x67\xa6\x9a\xfe\x0d" "\x9c\x56\x16\x07\xcf\x1a\xc2\x0e\x06\x1e\x59\x30\xc7\x7f\xbe\xc0\x72" "\x5f\x57\x20\xfc\xce\x0a\x52\x56\x4e\x72\x75\x6c\x5e\x32\xc9\xe2\x44" "\xac\x3b\xaf\x9d\x71\xbe\x55\x71\xa4\x4e\x4b\xd7\x2d\x98\x58\x24\xae" "\xb5\x8d\x8d\xf8\x22\x05\xfc\x47\x6b\xf1\xff\x61\xf9\x1a\x9e\xb1\xfa" "\x87\x6e\xe2\x9e\xae\x88\xd7\x15\x9b\x9d\x93\x17\xb5\x39\x98\x2f\x3f" "\xc5\x37\xbf\x50\x47\xc3\x6a\xf6\xcb\xbb\xfa\x2c\xc4\xaa\x06\xb9\xe1" "\x03\xa6\x5d\xab\x72\xa8\x52\xfd\x09\x86\x74\x08\xc7\x40\x34\x5c\xc3" "\xe4\xf4\x03\xe5\x6f\x15\x3f\x0d\x95\xb6\x6a\x66\xda\xaa\xb1\xaf\x0c" "\x60\x23\xdf\x20\xec\x26\x57\xb2\xca\x79\x35\x11\xde\xa5\x43\x9f\xb0" "\x8a\x44\x30\x7a\x26\xe6\x94\xf7\x82\xfd\xc4\x03\x1d\x37\xd0\x52\x26" "\xc9\x9c\x05\xcf\xc3\xbf\xea\x3a\x4b\x9d\xd3\x9a\x36\x05\x13\xef\x57" "\x81\x20\xd9\xfb\xbe\xf9\x9c\x1e\xfd\x7d\xcb\x49\xb9\x1d\x76\x6c\x58" "\x1b\x03\x36\x70\x94\xad\xc8\xe4\x5d\xf8\x94\x3f\xb2\xf9\x33\xb6\xfd" "\x0c\xe0\x77\x55\x93\x9a\xfc\x7a\xb5\xb6\x6d\x0c\xfe\xc8\xcf\x6e\x0e" "\xe4\x9d\xcd\x84\xee\x67\xcc\xcc\xe2\x2e\x3c\x7a\x3d\x01\x0f\xe9\x5d" "\x6c\x77\x1e\xe3\x7a\x5c\xb1\x08\x26\x5e\xf1\x6d\xfb\x90\xe5\xb0\xee" "\x4c\x58\x79\x33\xfd\x99\x3a\xef\x88\xaa\x39\xe2\x46\x33\xe3\x96\xb0" "\x24\x3b\x40\x87\x46\xc0\x64\x0b\xe0\x65\x3f\x5e\xc9\x30\x4f\x2a\xeb" "\xbf\x5d\xc3\x6c\x07\x05\x1b\xab\xf4\xbd\x33\x36\x3b\x64\x90\x1f\x04" "\x85\x56\x14\x43\xc3\xfa\xfe\xba\xa4\x40\xf5\x42\x0b\x6b\xb7\x3e\xf6" "\x72\x05\xfd\x81\xb6\xac\x4f\x5a\x98\x2a\x42\x68\x03\xb8\x79\x38\x42" "\xb3\xf9\x94\x9c\x70\xbf\x2e\x59\xca\x63\x42\xfd\xcc\x2e\xad\x7e\xb8" "\x5d\xca\xb1\xe5\x33\x72\xf3\xc3\xf7\xf6\x70\x29\x92\xac\x18\xcd\xf7" "\x84\xfc\xbb\x6c\x1d\x0c\xa3\x4e\x4b\x65\x84\x6b\xca\x8d\x8e\xbd\xf8" "\x34\xae\x9a\x25\xc8\x4a\xec\x28\x8e\xa7\x5b\xc8\x2d\x5b\xaf\x85\x46" "\x2a\x3e\xf1\x6e\x65\x5d\x52\x02\x1a\x76\x37\xe3\x89\x51\xeb\x16\x78" "\x66\xae\xce\x39\xe0\xc7\xd2\x55\x3e\xf1\xde\x52\x2a\xb0\x5e\x60\x39" "\x1a\x7f\x3f\x89\x03\x09\xa9\xcc\xef\x77\x1f\xf0\xf9\xf7\xb0\x97\x1a" "\x9e\x5c\x3e\xfc\x40\x9b\x1e\x45\x89\x81\xc5\x11\x53\x4d\x74\xa8\x32" "\x92\xdd\x5f\x9e\x5e\x85\x5c\x0e\x41\x51\x7b\x8f\x60\x69\xf4\x3a\xf3" "\x31\x68\x69\xc5\xdd\x8f\x0d\xe2\x29\xa2\x8b\xed\x6d\xf4\xcb\xe7\x52" "\x1d\xd9\x0e\x5e\x8d\x60\xa7\x1f\x70\xc4\xd5\x1d\x34\x69\x89\x17\x12" "\x77\xd7\x1a\xea\x09\xb1\x88\x41\x9e\x24\x00\xb0\x20\x07\x1c\xc9\x87" "\x90\xd6\xcd\xf2\x67\x11\x60\x05\x7c\xa6\x8f\x6f\xea\xf4\xec\xed\xb9" "\xac\x08\x9d\xe4\x80\x45\x2b\x30\xd2\xf0\xda\x96\x1a\xb8\x13\xd4\xd7" "\x4f\xa3\x65\xdc\x46\x08\x24\x65\x60\x3f\x3e\x02\xdf\x61\x82\xbf\x0e" "\x11\x35\x14\x04\x9f\x0f\xdd\x17\xd9\x56\xea\xb4\xc8\x5b\xd8\x76\x07" "\x4c\x06\x4f\xe2\x0f\xe5\x2b\x8c\x8c\x94\x46\x86\xa9\x08\xdd\x4b\xef" "\x77\xb3\x3b\x55\x33\x7f\x4a\x21\x5c\x4f\x1a\x1e\xde\x20\x3a\x11\xef" "\xfd\x81\x43\x27\x5e\x1d\x6d\x9c\x69\xea\x16\x7f\xf3\x38\x70\x2c\x6c" "\x80\x0b\xc4\x36\xc2\x5b\x62\xa2\x61\x27\xd7\x9a\x8e\x65\x1a\xff\xcc" "\x09\x95\x34\xbc\x29\x60\x8a\x17\xac\x21\x30\x19\xe7\x2f\xaf\x97\x88" "\x20\xb9\xac\xd8\xc0\x55\xcf\x9a\x95\x72\x4e\xa2\x36\x1e\xb4\x43\xd0" "\x4f\x59\x8c\xd5\x40\x6e\x6f\x84\x77\xa1\x27\x2b\x51\x1d\xd7\xd1\x83" "\x40\xf6\x0e\x09\x75\x75\xac\xfc\xeb\xcc\x21\x76\x9b\x98\x7d\xee\xcf" "\x19\x26\xd5\xe2\x9b\x22\x89\x7a\x46\x11\xa4\xa2\x59\xfd\x6f\xc4\xfd" "\xb3\x1b\xa2\xb4\x63\xb0\x2a\x43\xe8\x3d\x91\xe3\x6f\x8e\xce\xc6\xa6" "\x4c\xba\xf7\x0b\xdb\x59\xaa\x61\x3d\xe6\x30\x2d\x39\x38\x9f\xfa\xab" "\xc0\x40\xbc\x77\xe3\x9d\xf0\x3b\x3b\xd1\xdb\xfd\xbd\x00\x7e\x71\x5c" "\x21\x8d\x50\x82\xa9\xd5\x1d\x5f\xce\x4c\x14\x9e\x53\x87\xc1\x71\xdb" "\x21\x79\xd5\x7f\x13\xbd\xbf\x69\x31\xe2\xd9\x38\x02\x92\xd6\xf7\x4e" "\x33\x01\xac\x8c\x3b\x37\x76\x1f\xf6\x46\xef\x2d\x4e\x37\xdb\xb5\xbd" "\xa7\x4c\x25\x9d\xaf\xd9\xf1\x24\x4a\xbd\xec\x9a\xd8\x03\x9b\x5f\xbc" "\xc7\xb0\x11\x30\x47\x4f\x44\xf5\xbc\xdb\xbe\x31\x46\x07\xcb\x4a\x52" "\xf5\x92\x5e\x30\x13\x66\xb6\x85\x85\xec\x6f\x1e\xa3\x35\x34\x7d\xd4" "\xea\xfb\x3b\xe8\x68\x53\x5f\x78\x08\x20\x29\x0d\xf1\xf9\x36\xf1\xe3" "\x19\xd0\x66\x5c\x60\x04\xc4\x65\x5a\xda\x60\x19\x4e\x87\xf9\xb7\x70" "\x8c\x38\xef\xff\x20\x6c\x5d\x57\x45\x5a\x9f\xe8\x77\xb1\xe1\x94\xcb" "\xfb\x13\x7d\xa3\xcf\x30\x7e\x62\x46\xae\x40\x45\x26\x32\xda\x20\x61" "\xdc\xf2\xa8\xd8\x3a\xc5\xda\x3a\x11\x05\x5e\x1f\x5f\xff\xb8\xfc\x99" "\xce\x2d\x1e\x9d\xb1\xd1\x3e\xda\x58\x9b\x52\x67\xa1\xd9\x89\xeb\x54" "\x2c\x6c\x29\xf0\x59\xd3\x06\x12\xcb\x32\x28\x1c\x09\x08\xcc\xa8\xa5" "\xc5\x86\x71\xe1\xa6\x41\x02\x54\xf4\x46\x9e\xcb\xfd\xee\xcd\x58\xca" "\xaf\xf6\x86\xe7\x83\xfb\x4a\xa3\x59\xee\x7d\x4b\xcc\x95\x77\x9b\x3b" "\x47\xde\x86\x45\xf8\xa9\xae\x43\x88\xb0\x7a\x0e\x90\x9a\x60\x1d\xd0" "\xe2\x7e\x9b\x92\xd4\x24\x65\x7d\xc9\xc3\x86\x08\xcf\xbc\xf1\x87\x4e" "\x6b\x2e\x5b\xff\x21\x9e\xab\x2d\x5e\xfd\xc9\x2c\x56\xdb\xa0\x35\x84" "\xaf\xdb\x20\x1c\x50\x10\x55\xaa\x88\x7f\x5e\x02\xa5\x25\x52\xc6\xbe" "\x6e\x30\x8e\xc3\xc2\xaf\x89\x12\x2b\x67\x87\x74\x2b\xaf\xd0\x8e\xc7" "\xcd\x27\xb6\x8e\xd6\xd7\xbf\x2e\xea\xa9\xc9\x78\xde\x4f\xa4\xb0\xcb" "\x97\x20\xc2\x31\x20\xee\xfc\xd1\x3e\x99\xc0\x47\x6e\x46\x9b\x11\xc3" "\xdd\x0e\x61\x9c\x27\xa7\x55\x3f\xda\x8a\xdf\x37\x1f\x27\x0e\x3b\x91" "\xf2\xf6\xe7\x40\xb3\x4a\xb9\x8c\xc1\x33\x50\x67\x65\x55\xd7\xdb\xc6" "\x56\xb8\xc4\x7b\x93\x66\xf2\x07\x5f\x23\xa6\x8f\x60\x2a\xed\x37\xc7" "\x4b\x45\x34\xd9\xf3\xe9\x4f\x5d\x82\x81\xbf\x2f\x42\xa7\x75\x02\x7e" "\x7f\x4a\x8e\x11\xc2\x51\x44\xcd\x72\x82\x32\xcb\x9f\x6b\xc4\xee\xbf" "\xf5\x30\xd0\x80\xc5\x88\x6c\xcc\x3f\x73\x9b\x1f\x71\x36\x0e\x46\x14" "\xb5\xb6\x83\xd5\x11\x8a\xec\xed\x42\x7a\xc9\xb0\x3c\xc2\xb4\xa5\x69" "\xfa\x95\x21\x07\x53\xf4\xe3\x39\x73\xa8\x8a\x6e\x1a\x57\x7a\xa3\x98" "\x38\x1f\x7b\xfd\x88\xaa\x27\x9b\xc1\x30\xbf\x01\x8b\xc2\xa4\x80\x11" "\xb0\xf3\xda\x72\x11\x19\x1f\x4a\xdb\x05\x9f\x49\x27\xb6\x70\x43\xb9" "\xf3\x6c\xf8\xe2\xa4\x78\xc7\xbe\x7b\x38\x87\x84\xbc\xeb\x5f\xa6\xeb" "\xff\x96\x72\x43\x3d\xb3\x81\x1a\xbb\x2d\xc4\x6f\x79\x10\xd3\xac\x11" "\xde\x59\x3c\x5e\x02\x81\x3e\x8e\xe3\x28\x7a\x09\xc2\xe6\xe1\xc9\xa9" "\x5c\x5e\x6b\xc9\x94\x9d\xad\x46\x12\xaa\xd9\xe4\x95\xb8\x00\x53\x37" "\x9d\xea\x87\x85\xda\xeb\x75\x13\xb6\xac\x1a\xa5\x99\x57\x24\x24\xc3" "\x88\x57\x8a\xf4\x13\xf9\x27\xff\x63\x15\x90\x0f\x7a\x6f\xf2\x27\x4c" "\xfb\x53\x2d\x57\xe2\x17\xd5\xa4\x77\xb5\x3f\x9c\xdf\x6b\x4c\xac\xeb" "\x6a\xe3\x1b\x32\xfe\xa0\xe5\x92\x90\x5c\x92\x0d\x2e\x16\x67\x07\x23" "\x16\x9a\xae\x81\x57\x52\x98\x39\x0f\x2b\x6d\xf8\x84\xf2\x89\x1d\x4a" "\x2e\x02\xcb\xba\xc5\x63\x08\xf2\x92\xb6\xfe\x93\x19\x3e\xe2\x5e\x6a" "\xd2\xdf\xc3\x97\x32\xeb\x5f\x35\xc7\xa9\x73\x15\xe4\x70\xd2\x20\x4e" "\xc4\xba\x96\x2b\x5a\x25\xa1\xba\x53\x39\x2a\x0b\xab\xa9\x26\x0d\x66" "\x80\x12\x0d\xc9\x30\xb0\x73\x63\x9f\x24\x0f\x95\xac\x50\x3f\x58\x74" "\x9a\x79\xf7\x67\xb5\x93\x39\x09\x6b\x4d\xc8\xeb\x4b\x0c\xff\x53\xdd" "\x5d\x12\x59\x8d\x03\xe7\xca\x87\x9b\x79\x2d\x59\xd0\xb9\xe0\x41\x32" "\xe3\xef\xce\x33\x0d\x63\x81\xc0\x23\x65\xf1\xf4\x75\x94\xe0\x60\x9c" "\x8c\xfa\x7f\xc4\x14\xcc\x94\xd0\xc6\x47\xe1\x2d\x49\x43\x5c\x40\x4c" "\x2c\x01\xea\x66\x8a\xdb\x7e\x7f\x08\x89\x85\x8e\x1f\x6f\x97\xba\x2f" "\x0c\x28\xfd\x95\x4c\x80\xcc\x0a\x23\x5a\xc4\xb5\x51\xa1\x6d\x26\xc2" "\x52\x0a\xa2\xf4\x7a\x0f\xac\x3d\xe1\x73\xc7\xa9\xc7\x13\x54\x93\x27" "\x5c\x02\x68\x51\x48\x61\xf4\x45\xcf\xa8\x33\x68\x11\xc8\xb3\x24\x46" "\x62\x34\x85\xe8\xf1\xdd\x26\x7d\xda\x03\x4a\x15\xbe\x56\x90\x0e\x78" "\x5d\x50\xfe\xb6\xd7\x40\x19\x7b\xca\xc9\x7c\xfe\x0b\x0f\xf9\x0f\x6e" "\x9a\xf4\xf6\x46\x99\x86\x14\x10\x42\x60\xeb\x5a\xdb\x56\xcd\xf5\xde" "\xfa\xd5\xc9\x98\x2a\x20\xca\x76\x89\xb4\xdb\x38\x90\xa5\xb5\xbb\x3e" "\x38\x2b\xd3\x09\x53\x86\xaa\x76\x38\x2d\xc8\xc2\x71\x28\xa0\x7e\x86" "\x11\x28\x1e\x9d\x21\x11\x23\x7e\x5d\xd6\xe5\x05\x07\xda\x57\x13\xd4" "\x99\x7d\x47\x57\x5e\xab\x8c\x07\x10\x2b\x15\xf1\x62\x64\x6e\xa2\xa1" "\xcd\x73\x1a\x6d\xec\xd6\x40\xd3\x8e\x8c\x5b\xd6\xe0\xf1\x85\x19\x4b" "\x5e\xe9\xd6\x79\xe8\x74\xc3\x7c\xb1\xe1\x50\x47\x6b\x95\x9b\x11\x15" "\x2f\xa2\xe0\xcc\x0f\x36\xb2\x6a\xf2\x5f\x68\xed\x4f\x01\x89\x60\x07" "\xba\x4f\xbb\x0d\xa6\xa9\x82\xf2\xf7\x32\xac\x06\xa9\x2c\x17\xb5\x71" "\x26\x79\xe7\xc2\x3e\xde\x7d\xd1\x93\x7a\xec\x4a\x27\xdf\x64\x63\x93" "\x40\x0f\x3b\x5d\x0e\x14\x4a\x98\xd6\x83\x2c\x1e\xc7\x3e\xea", 8192); *(uint64_t*)0x2000f380 = 0; *(uint64_t*)0x2000f388 = 0; *(uint64_t*)0x2000f390 = 0; *(uint64_t*)0x2000f398 = 0; *(uint64_t*)0x2000f3a0 = 0; *(uint64_t*)0x2000f3a8 = 0; *(uint64_t*)0x2000f3b0 = 0; *(uint64_t*)0x2000f3b8 = 0; *(uint64_t*)0x2000f3c0 = 0; *(uint64_t*)0x2000f3c8 = 0; *(uint64_t*)0x2000f3d0 = 0; *(uint64_t*)0x2000f3d8 = 0x2000eb80; *(uint32_t*)0x2000eb80 = 0x90; *(uint32_t*)0x2000eb84 = 0; *(uint64_t*)0x2000eb88 = 0xfffffffffffffffb; *(uint64_t*)0x2000eb90 = 0; *(uint64_t*)0x2000eb98 = 0; *(uint64_t*)0x2000eba0 = 0x7fff; *(uint64_t*)0x2000eba8 = 0x7fffffff; *(uint32_t*)0x2000ebb0 = 0x1ff; *(uint32_t*)0x2000ebb4 = 0; *(uint64_t*)0x2000ebb8 = 0; *(uint64_t*)0x2000ebc0 = 0x4000; *(uint64_t*)0x2000ebc8 = 0xffffffff; *(uint64_t*)0x2000ebd0 = 5; *(uint64_t*)0x2000ebd8 = 0; *(uint64_t*)0x2000ebe0 = 0; *(uint32_t*)0x2000ebe8 = 0; *(uint32_t*)0x2000ebec = 0x400; *(uint32_t*)0x2000ebf0 = 0; *(uint32_t*)0x2000ebf4 = 0; *(uint32_t*)0x2000ebf8 = 5; *(uint32_t*)0x2000ebfc = 0; *(uint32_t*)0x2000ec00 = 0xee00; *(uint32_t*)0x2000ec04 = 0; *(uint32_t*)0x2000ec08 = 0x8c; *(uint32_t*)0x2000ec0c = 0; *(uint64_t*)0x2000f3e0 = 0; *(uint64_t*)0x2000f3e8 = 0; *(uint64_t*)0x2000f3f0 = 0; *(uint64_t*)0x2000f3f8 = 0; syz_fuse_handle_req(r[0], 0x200043c0, 0x2000, 0x2000f380); break; case 6: memcpy((void*)0x20000180, "./file0\000", 8); memcpy((void*)0x20000100, "./file0\000", 8); memcpy((void*)0x20000140, "incremental-fs\000", 15); syscall(__NR_mount, 0x20000180ul, 0x20000100ul, 0x20000140ul, 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; }