// https://syzkaller.appspot.com/bug?id=92562d75911aa205315d8ca816ab805888c6e989 // 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 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; } } #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*)0x20000400, "./file0\000", 8); syscall(__NR_mkdir, /*path=*/0x20000400ul, /*mode=*/0ul); break; case 1: memcpy((void*)0x20002080, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x20002080ul, /*flags=*/0x42ul, /*mode=*/0ul); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x20000000, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20002140, "fd=", 3); sprintf((char*)0x20002143, "0x%016llx", (long long)r[0]); memcpy((void*)0x20002155, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x2000217e, "%020llu", (long long)0); memcpy((void*)0x20002192, ",group_id=", 10); sprintf((char*)0x2000219c, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x20000000ul, /*type=*/0x20002100ul, /*flags=*/0ul, /*opts=*/0x20002140ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x2000a280ul, /*len=*/0x2020ul); if (res != -1) r[1] = *(uint64_t*)0x2000a288; break; case 4: memcpy( (void*)0x200021c0, "\x6b\x32\x7e\x51\x0a\x44\xd1\xc8\xdf\xdb\x4c\x50\xd4\x09\x31\xae\x29" "\x88\x29\x80\x18\x98\xa9\x48\x6b\xf0\xc3\xb1\x73\x0a\xb3\x44\x99\x31" "\xf8\x83\xcc\x42\x7f\x04\xf8\xa6\x91\x38\xb1\x97\x45\xef\x72\xdf\x37" "\x5b\x67\xb2\x3f\xbf\x15\xb8\x2c\x56\x9a\xe8\xe0\xae\xc0\x03\x96\x91" "\x8b\x32\xea\xc3\xf7\xd3\x96\x2c\x93\xa4\xec\x6c\x83\x26\x0e\x1a\x5e" "\x15\x23\xa9\xa3\xea\x02\x1b\xfc\x1f\xe9\x77\x7e\xb4\x62\x6c\xf9\xd6" "\xe5\x18\x83\xa2\xf3\xb1\x42\x50\x11\x39\xb6\x14\xc7\x31\xeb\x53\xad" "\xb8\x80\x1a\x64\x25\x85\x79\x76\x81\xef\x57\x7b\x6d\xcd\x4a\xa8\x62" "\x5a\x47\x8f\x07\x4a\x85\xe8\x86\xa5\xa7\xc9\xf8\xba\x13\xd2\xf9\xc2" "\x44\x80\xd6\x28\x36\x80\x13\x57\xb8\x19\xe3\xb9\x92\x4d\xc2\x8e\xe1" "\x8c\xf8\x3f\xd9\xf4\x78\xb6\xec\x1e\x6f\x31\x62\x4c\x04\xdb\xb1\xab" "\x62\x7c\x6e\x44\x3f\x9d\x99\x54\xd3\xd1\x63\xc9\x6d\x9f\xe8\x47\x49" "\x27\x12\x54\x9f\x8d\x6d\xb3\x4c\x70\xc4\x33\x84\xfa\x26\x1a\x7e\x3f" "\x67\x60\x0f\xf6\x2b\x5b\xca\x0c\xb0\xa5\xa9\x61\xf9\x6b\x02\xdd\x50" "\xfa\x91\x84\x4a\xdf\x2d\x4e\x2b\x92\x82\xa0\x28\x84\x93\x25\x28\xdd" "\xb2\x22\x1c\x71\xf9\xdb\x5b\xf6\x0f\xa4\x8c\x04\xec\x07\x1d\x5c\x55" "\x41\x0d\x9a\xe1\xc4\x00\xc9\x9a\x12\xd0\x54\xf8\x95\xa0\xe7\x08\xc6" "\x77\x0b\xdd\x27\xee\x6c\x2e\x87\xbb\x99\x7e\x62\xdd\xe3\xe3\xf9\xc1" "\x3b\xe0\x46\x18\xaa\x11\xf4\xf2\x10\xa2\x78\x1f\x23\xb1\x48\xc0\x78" "\x72\xec\xf1\x77\x59\xca\xf9\xaf\xc6\x9e\xfe\xa4\x42\x87\x9b\xc3\xf2" "\x66\x73\xf5\x46\xde\x9a\x2d\xfa\x68\xdf\x0d\xd9\x08\x1f\xa9\xcf\x3d" "\x48\x76\xc0\xc6\x14\xa4\x26\xff\x98\xaa\xb0\x57\x27\x20\x1f\x85\xf0" "\x94\xcf\xc5\x0a\xc5\xc2\x0a\xbf\x22\x1e\x73\x08\x3a\x10\x22\x66\xd1" "\x9c\xa3\x91\x9f\xc4\x4e\x23\x00\x27\x63\xd6\xee\x93\x3b\xaf\xf8\x8d" "\x5e\xfe\xfb\x99\x6b\x87\xe8\x86\xa9\x6f\x0d\x6b\x68\x5e\xe4\x1b\x51" "\xf6\x9f\xc9\xc2\x28\xf3\x44\x69\xaf\x01\x5d\x1a\x39\xdc\xcd\x25\xe0" "\xb9\x4f\x96\x7b\x43\xed\x02\xb6\x8a\xd5\x33\xfc\x01\xff\xc3\x5e\xd9" "\x0c\xaa\xa6\x75\x65\x7a\xa4\x68\x8c\x9e\x6c\xbf\x52\x24\x71\x2f\x07" "\xd4\x9b\x41\x4e\x6c\xf0\x0a\x31\x33\x92\xc4\x72\xe1\xb0\x22\x58\xda" "\xce\x20\xab\xd3\xdb\x5f\xb0\x8d\xcf\xbd\x1a\x47\xa6\x67\x66\xd9\x5f" "\x49\x29\x61\x1b\xf4\xf7\x83\x72\x13\xbe\x29\xb1\xd9\xb9\x38\xb6\xeb" "\x63\xc8\xea\x11\x0a\xae\x20\xb3\x2d\x90\x0f\xc1\xe7\x16\x70\x46\x53" "\x86\x5d\xe4\x33\x9d\xca\x2e\x5d\x96\xab\xff\x84\x8a\x67\x56\x2b\x88" "\x40\x10\x76\x3b\x04\x53\xee\xfe\xf4\xb4\xeb\x53\x56\xd3\x2e\x0f\x06" "\xc4\x86\xc0\x62\x76\x1e\xcb\x8d\x1c\x40\x07\xf5\x63\x1d\x74\x0c\x56" "\x2a\xa6\x88\xd8\x0c\xc1\x47\x1f\x9d\xec\x84\x0e\x0f\x75\x05\xec\xcd" "\x36\x38\x3b\xd5\x22\x2a\xea\x01\x04\x99\x8d\x36\x62\x32\xa0\xc1\x68" "\xe7\x91\xe2\xb0\x89\xc5\x17\x31\xb2\xdd\x43\xe2\x50\xaa\xec\x62\x04" "\xf4\x8c\x75\x56\x42\x77\x5a\x4f\xae\x94\xfe\xaa\x63\xa2\xc3\x61\x26" "\xe6\x54\xcf\xe8\x3a\xac\x2f\xd2\xc0\x2a\xf9\x67\x79\xc5\x25\x73\xef" "\x60\xf5\x2b\x8f\x3d\x58\xf4\x6b\xad\xb8\x8a\x6c\x80\x8c\x08\x87\x05" "\x53\x11\x9c\xe8\xac\x9f\x72\xf9\xcc\x1c\xfa\x33\x00\x52\x5f\x6f\x19" "\x91\xfc\x9f\xa8\xb5\xfa\x02\xca\xe8\x76\x28\xe1\xb5\x82\x19\x28\x84" "\x5f\x85\x21\x27\x65\xbc\xf6\x11\x36\xd6\x47\xcf\x1a\x9a\xb3\x78\x7a" "\x8d\xbc\x22\xe7\xf6\x35\xe8\xc5\x44\x06\x8c\x87\xb6\x61\x86\x4b\x8e" "\x5b\xe2\x78\x64\xed\xbf\x19\x42\xda\x91\x4c\xfb\xd3\x9f\xa6\x3f\xce" "\xd8\xff\x16\x7f\x8b\x25\x59\xcf\x76\xee\x70\xd4\x14\x55\x27\x7c\xf6" "\x88\xfd\x1c\xbe\xe2\x6d\x78\x8e\x53\x15\xd7\x59\xe8\xfa\x6b\x10\xd4" "\xc0\x3a\xaa\x55\xf8\xd0\x4e\x29\x84\xb0\x29\x3f\xec\xea\x76\x4d\x57" "\xe4\x0b\x1c\x27\xe1\xad\xb5\xe7\x6a\xf7\x91\x3b\x4d\xe7\x58\x78\xee" "\x33\x13\xb2\x53\xe4\x17\x46\x4f\x21\x42\x68\xe5\xa8\x85\x39\xe5\x05" "\x32\x86\x9c\x98\x7d\x99\xc5\x34\x27\xbb\x49\xda\x50\x1d\x0f\xe6\xb0" "\xce\x00\xd3\x4d\xa6\x77\x23\x7f\xa1\xeb\xa2\x53\xae\x6e\x0f\xc8\xb0" "\xd4\x16\x18\x9d\x4a\x08\x28\xf5\x15\x96\xd6\x04\x1e\x31\xf1\x05\x0d" "\x16\xe8\x7f\x85\xf9\xba\x96\x7d\x01\xf6\x55\x77\x1d\x50\x93\x3a\xbb" "\xf0\xe0\x03\x95\x86\x39\x51\x72\x59\x5b\xed\xec\xce\xed\xba\x6c\x51" "\x8a\x8e\xef\x93\x6e\x4b\x31\xfc\x8b\x56\x87\xc8\xb5\xf7\x4d\xce\x9b" "\xa9\x7a\x10\x35\x92\x5d\xf7\x99\x19\xeb\xa1\xea\xc8\xcf\x18\x69\x34" "\xdc\x9b\xbb\xc2\xc6\x29\x03\x3c\xda\x0a\xdc\xfa\x7d\x58\x14\xb9\xec" "\xd2\x82\x85\x48\x8a\x3b\xab\x89\x4c\xe5\xce\xd4\x2e\x18\x96\x4d\xe4" "\x01\x76\x42\xcb\x57\x04\xa0\x51\x23\x28\x21\xdd\x7d\x56\x2b\x48\x73" "\x82\xa0\x4c\x27\x65\x4a\xd9\x53\x1e\xa7\xb7\x2c\xb5\x22\x36\x22\x83" "\xbc\xda\xb6\xa0\x54\xbe\x22\x5b\xcf\x3a\x4d\x49\xe0\xbe\xfc\x9d\xe2" "\x70\x2c\x65\xa8\x5d\x4f\x2d\xcb\xb3\xc4\x45\xdf\x2d\x84\x3c\xba\x7c" "\xc4\xcb\x6b\xdd\xe8\xbd\x43\x30\xd9\xa6\x09\x04\x0d\x0d\x96\x49\x29" "\xb7\x94\x98\xec\xe4\xfb\xf5\x5c\x4e\xd1\xd0\xf1\x84\x77\x49\x73\x6c" "\xe6\xb7\x86\xc5\x11\x0e\xc9\x20\x09\x59\xf9\x53\x48\x70\x70\x4b\xf0" "\xb4\x53\x39\xc9\x28\x8d\x5b\xad\x4b\x97\x01\x9c\x60\xae\x02\x43\x83" "\x7a\xfc\x5e\x69\xf9\xa6\xfb\xad\xe7\xf8\x17\x2b\x94\xbf\xe5\x4b\xcc" "\x04\xc3\x15\x0c\x52\x35\x5b\x7f\xc8\x43\xa5\xdc\xc9\xa5\xf2\x53\x7c" "\x2b\xe2\x76\x9c\xc5\x01\xb0\xf9\x9a\x75\x03\xac\xa1\xc3\xd8\x6b\x47" "\x7c\x38\x00\xa1\x82\x0b\x47\x61\xe7\x5f\x48\xbb\x23\x07\x28\x90\x8f" "\x7c\x74\x90\xf4\x2d\xfc\x82\x94\x2e\x2c\x18\xef\xaf\x46\xda\xfe\x58" "\x61\xc1\xac\xc2\x13\xd6\x40\x48\x44\x06\x4e\xa6\xde\x54\x44\x6f\xac" "\xac\x36\xeb\x69\x57\xc5\xd3\x66\xde\x9d\x6c\x03\xe1\xd1\x28\xfc\xf4" "\x98\x01\x54\x45\x73\x84\xa3\x24\x4e\x72\x59\xbe\x35\x23\x44\x25\x8b" "\x3c\xf6\xe1\xef\x83\xe1\x71\x21\xde\x2c\xaf\x26\x31\x8e\xf3\x14\xf5" "\x13\xf4\x99\x18\x44\x5f\x7e\xd9\xa6\x7e\x16\xd0\xbd\xb1\xc2\xde\xd8" "\x7e\xbe\xa4\x9e\x16\x7d\x9f\xd7\xdd\xe8\x62\xd1\xa8\x66\xdf\x24\x02" "\x9e\x67\x3e\x9b\x7f\xa4\x1e\x47\x65\x66\x3c\xbf\x6d\xea\xa6\x23\xb0" "\xb2\xad\x90\xb0\xe3\x74\x44\xfa\x91\x5f\xf1\x98\x5f\xef\x85\xfa\x36" "\xe8\xd1\xd7\x73\x7d\x30\xf6\xc8\xfb\xf5\x10\x9e\xc9\x84\x8e\xc9\xfe" "\x92\x3f\x86\xfd\xb4\x82\xe2\xdd\x75\x31\xd6\xef\xdb\x45\x8d\x2e\x2e" "\x5d\x2c\xe1\x8c\xdf\xff\xe6\x43\xa7\xb7\xa7\xd5\x5d\x9a\x58\x58\x3c" "\x54\xc9\x25\xe2\x1a\x23\xe5\xe7\x98\x5e\x46\x6e\x0f\xa0\xdc\x0c\x2c" "\x7a\xb9\xab\x7f\x03\xe4\x71\xa9\x66\x20\xbb\x93\x10\xdc\x57\x45\x38" "\x93\x72\x32\x97\xde\x2e\xe6\x58\x7f\xd4\x5b\x09\xde\x27\x5f\x71\xe9" "\xe1\x42\x6d\x27\x5c\xcb\xe5\x98\x7e\xf6\x45\xf8\x89\x23\xda\x76\x36" "\x06\x9f\xf4\x32\xdf\xcf\x50\x31\x02\x3e\xf4\xc8\xc3\xc6\x5e\x78\x48" "\x60\x89\xb6\xc1\x59\xe9\xdb\x5e\x79\x35\x0b\x5b\xbd\xc7\xd4\xca\x69" "\x67\x42\xb3\xec\x60\xad\x3c\xf1\xb6\x72\xd8\x27\xf3\xc1\xd5\xbe\x83" "\x2d\xea\x73\xae\xa1\x60\x70\x72\x12\x09\xdf\xaa\x48\xc4\x13\xd7\x94" "\xd6\x6e\xf3\x6d\x46\x0b\xa9\x26\x19\x2c\xfb\x4b\xd0\xac\x9e\x28\xa7" "\x52\x0a\x8e\xb2\x03\xe5\x4a\x46\xa8\xbe\xe7\x4b\xac\x59\x6c\x84\xa5" "\x01\x81\xfa\x7f\xa9\xf3\x78\x1d\x30\xf1\xa2\x4e\xa4\x2b\xec\x28\xae" "\x3e\x49\xf0\x8a\x81\x4e\x79\x4c\x60\xfb\xb3\x21\xc1\xe3\x2c\x72\x7a" "\xb5\x53\xff\xb4\xd8\x05\x52\xc1\x51\xbd\xa8\x65\x1a\xff\x3b\xad\x5f" "\x81\xc2\x24\xf6\x1a\x34\x5d\xab\xea\x31\x18\x94\x5a\xa4\x3b\x2f\x1e" "\xbd\xb5\x9b\x55\x37\x02\xcb\xc3\x9c\x71\xce\xb8\x60\x08\xab\x36\x8b" "\x7e\x8a\xf7\x94\x50\x25\xdf\x13\xc8\xe3\x71\x24\x9a\x28\x06\x36\x40" "\xf9\x98\xf9\xff\x89\x23\x27\xf2\xf4\x2f\xa8\x6f\x26\xa4\x38\xc8\xf0" "\x27\x6f\x15\xf9\x51\xd4\xd6\xf6\x21\xb0\x94\x28\x79\xc7\x63\x1d\x57" "\x46\x5d\x92\x3b\xf0\xd8\x81\x2f\xc9\xef\x1f\x4b\xbd\x31\x61\x29\x99" "\x76\x3c\xef\xb8\xbf\x5e\x68\x46\x46\x80\x3a\xc9\x73\x85\x82\x44\x70" "\xdc\x02\x4d\xdc\x2b\xf6\xfa\xe5\xf0\xe7\x89\xc0\xcc\x87\xdb\x6b\xcb" "\x7e\xbc\x08\x7f\x04\xfe\xc6\xa4\x04\x6b\x89\x87\x87\x9f\x3d\x70\x90" "\x6a\x17\x3c\x4d\x62\x64\x59\xde\xb4\x8f\xde\x1f\xa3\x2c\xc1\x76\x40" "\x8e\x75\x4b\x5a\x0d\xe9\x1b\x94\x79\x3a\x99\x6e\x26\xbd\x54\x07\x04" "\x90\x59\x02\x22\x99\x5e\xfa\x59\x6c\xf3\x2a\x53\xac\x91\x58\x61\x3b" "\x7d\x92\x52\xd2\xb8\x52\x8c\x29\x9b\xed\x2d\x94\xf7\xe2\x45\xd6\xdc" "\x6a\xd5\xe8\xd9\x1d\x15\xf6\x59\xef\x58\xed\x96\xe7\xa5\x80\x32\x9b" "\x33\xe2\x6e\x3e\xfd\xda\x0d\xae\x70\xa4\x20\x3e\x5e\xb7\xc5\x1c\xf6" "\x5c\x26\x74\xdd\xe0\x88\x2c\x84\x4f\x44\xd1\x9d\x79\x0f\x99\x54\xf1" "\xbf\xff\x9b\xca\x74\x31\x05\x1b\x5d\xad\x0f\xf0\x12\x18\x49\xda\x46" "\x9b\x5d\x8d\x79\x3e\x99\xd3\x74\x2a\x7c\x96\xd1\x57\xc7\x46\x46\xb6" "\x30\x9c\xd1\x5c\xfb\x8d\xe4\x4c\xfd\x6f\x07\x21\xd7\x48\xb9\xb6\x1a" "\xb5\x3e\x92\x8b\x5f\x7b\xbb\x87\xe2\x7a\x29\xde\x58\xf7\x7c\xab\x46" "\x21\x1e\x37\x11\xef\x62\x73\xa0\x7b\xb0\x79\x93\xbb\xb9\x4e\x60\xd2" "\xd9\x29\x3a\x08\x6c\xc7\xc7\x5d\x74\x56\x1e\x4d\xa9\xea\x13\xed\x08" "\x99\x5c\x80\x97\x70\x66\x34\xc6\xe0\x9e\xd8\x77\x1e\x3d\xab\x64\x5f" "\x93\xc1\xe9\xe6\x3a\x71\x65\x0a\x85\xcd\xf3\xb5\x3a\x85\x32\x5b\x6f" "\xaf\xf0\x66\x6f\x9f\xc0\x91\xd7\x81\x5b\xb0\xc1\x1b\xf9\xd1\xd4\x4f" "\xbe\x50\x70\xbc\x21\xbe\x6d\x38\x06\x14\x00\xc7\x01\xe5\x9a\xe9\xd3" "\x0c\x74\x0d\xc9\x51\x52\xe2\xa4\xb7\x54\xb1\xd0\x75\xc6\xb1\x87\xe6" "\xd4\xe1\x8a\x04\x60\x8e\x26\xbe\x1f\xca\x6c\x73\xb4\x36\x48\x19\xba" "\x25\x58\xf1\xcc\x08\xc4\xae\x49\xf0\x6f\xb8\x96\xfb\x3a\x96\x31\x37" "\x89\xa7\xc6\x9e\x4c\xf5\x3c\xea\x1b\xc4\x16\x71\xc4\xd1\x19\x2e\xd3" "\xfc\xa4\x54\x80\x48\xdd\x84\x55\x73\x83\x7c\xb4\x15\xcd\xab\x32\x62" "\x01\x06\x4c\x8e\x09\xdb\xd4\xfd\x31\xee\x6d\x78\xf0\x83\x9d\x4b\x58" "\xd7\x09\x46\x44\x89\x5b\x7d\xb1\x74\xca\x32\xb4\xf1\x93\x13\xc9\x83" "\x39\x13\x7b\xbd\x6a\xe1\xe8\x77\x9f\x16\xa4\x44\x10\xa1\xb7\xd1\xc7" "\x04\xa9\xe9\x32\x57\xae\xaf\xa6\x2f\x2a\xe2\x82\xd6\x2a\x47\x6d\x8f" "\x1f\x08\xff\xe4\x48\x07\xe0\xd6\x87\x1e\x28\x88\x60\x1a\x1c\x72\xc6" "\x7b\x7f\xc9\x22\x42\x07\xf6\xce\x45\xb6\xdf\x97\x51\x70\x55\xa4\x97" "\xd4\xa4\xec\xd6\x7a\x3b\x7f\x28\x65\x1f\x8c\xa9\xcb\x33\xe1\xa8\x3e" "\x2e\x78\x6f\x49\x7b\xe1\x8b\xce\xef\xe6\xd4\x19\x70\xb6\x37\xaa\xed" "\x82\xba\xb4\xde\x15\xe2\xe1\x8b\xaf\xbe\x95\xe4\xdd\xa9\x9b\x2c\xac" "\x43\x86\xe6\x88\x20\x34\xe9\x0b\x9e\xe4\x79\x08\x08\x78\x8c\x0d\xc5" "\x27\x40\x7f\x39\xab\x40\x09\x2a\x6a\x67\x3d\x9a\x3d\x3d\xd5\x53\xa8" "\x31\x75\xba\x53\x4a\x8c\x1c\x55\x2a\x3a\x99\x21\xac\x77\x13\x8e\xb2" "\xdd\xce\xc6\x7b\xec\xe9\x4e\xf3\x45\xfa\x35\x37\xf1\x71\x3e\xc7\x1d" "\xb9\xec\xfc\xf5\x38\x91\x4c\x35\xe9\x2d\xe0\x48\x01\x13\x77\xe3\x93" "\x9b\xe2\x86\x7a\x2e\x2a\x15\xe0\x17\xdd\x3a\x57\xff\x39\x1c\x74\x3b" "\xbc\x17\x38\xcd\xbb\xe2\x4b\xab\x12\xc7\x8a\x80\x45\x6f\xcf\xcd\xcc" "\xc1\xfc\x5f\xb8\x82\x34\x2f\x80\x8f\x89\x50\xa9\xf6\x82\xd6\x70\x04" "\xaa\x64\x32\xe1\x32\xb6\xf0\x75\x94\xb9\xa0\x0e\x1f\xc7\x7c\xed\xe6" "\x98\x30\x6d\x6a\x16\x58\x78\xcf\x1d\x1f\x48\x40\x78\xf2\x10\xf6\xcf" "\xa2\x11\x58\x5a\xd6\x78\xed\x0d\x5e\xf4\x47\xd9\xde\xfd\x9f\x24\x4d" "\x17\x4c\x8c\x4f\x28\x1a\xa5\x59\xe6\x20\x72\x19\x47\x60\xb6\xe7\xe6" "\xf8\x80\x9a\x27\xcf\x52\xf8\x09\xe7\x8e\x90\x25\x33\xae\xfd\xce\xe3" "\x31\xa8\x19\x16\x52\x10\x0d\xd7\xf0\xac\x66\x42\xda\x68\x05\x3e\xa3" "\xcb\x12\xc5\x6d\xb8\x82\x03\x62\x16\xa8\x9c\xee\xce\xaf\x49\xc2\x0a" "\x68\x3e\x41\x97\x59\x3e\xc1\x39\x83\x2b\x69\xdc\x06\xfb\xe1\xac\x1b" "\x0e\xb7\x26\x61\x38\x99\xc7\xa4\xc5\xec\x44\x4c\xe1\x31\xb3\x94\x79" "\x8c\xef\x9d\xf4\x8f\xca\x8e\xb2\x14\x7d\x55\x46\x33\x99\xbd\x6c\xc3" "\x0f\x65\x3b\x9a\xf1\x23\x03\x3a\x93\xd6\x9f\xf8\xb4\x6e\x61\xfa\xc8" "\x24\x42\xd9\x4c\x48\xdf\x9f\x89\x79\x77\x56\xa5\xe7\xe1\xd8\xae\x67" "\xde\x4b\xc3\x7e\x51\xe9\x53\x67\x2f\xbb\x01\x30\x07\x52\x83\x33\x05" "\x51\x08\x1b\x8c\x8e\x2f\xf1\x16\xc6\xb2\xc6\x0d\x63\x73\x46\xe6\xc6" "\x8e\x9e\xbc\xf0\x22\x6d\xb2\xc1\x71\xc4\x4f\x71\x55\x27\xf9\xd4\x2d" "\x5a\xe8\xba\x7e\x83\xee\xa7\xe3\xb6\xd7\xa3\x0b\xcf\x4e\x74\xa3\x78" "\xc9\x58\xad\x22\x50\xea\x4d\xeb\xaf\x2a\xeb\xd8\x98\xc7\x8d\x1b\x39" "\xdc\xd5\x1b\x89\x2e\x2d\xc9\x3c\xa0\x37\x4e\x1b\x3c\x1c\x46\x91\x3f" "\xac\x26\x67\xcb\xdd\x52\x2d\x03\xda\x09\x27\xaa\xda\xe4\x49\x2e\x2e" "\x29\xec\x49\xbe\x3e\x96\x92\x96\xdd\x83\x6c\xca\xf1\x51\xa6\xfb\x70" "\x41\x76\x32\x0e\xf1\x01\x07\xea\x9c\xfa\x58\x14\x5f\x47\x29\xbb\x39" "\xc4\x19\x20\xb9\x2d\xf7\x55\x1d\x78\xa8\x7d\x2e\x47\x83\x52\x37\x96" "\x52\x7a\xb9\xf5\x98\x9b\x05\xd9\x8d\x5e\x16\x2b\x0e\xd6\xaf\x2d\x0b" "\x12\x49\x14\xc9\xb6\x81\xc7\x21\x54\xa0\x9d\x30\x57\x85\xc5\x04\xef" "\x23\x04\x85\x6b\x17\x17\x31\x19\x15\x1a\x91\xdc\x20\x86\x1e\x89\x0e" "\xb4\x0b\x18\x03\x14\x1c\x73\x5a\xe6\xf6\x25\x93\x74\xab\x09\x06\xe8" "\xa4\x9b\x34\x2b\x81\xc6\x3c\x74\xf1\xca\x81\x8d\x7a\x6f\x22\x3f\x0f" "\xab\x05\xce\x88\x0a\xde\xc4\x7c\x33\x15\xa3\x02\xe8\x6d\xc8\x60\xce" "\x9b\xc7\x56\x62\x62\xcb\xf1\x5b\xdf\xbb\xc8\xc6\x57\x47\xd1\xbc\xdf" "\x46\x5b\x33\x85\xf4\xcc\xc9\x2f\x54\x9b\x05\x6f\x3f\xd9\x2d\x99\x31" "\x52\xaa\xf4\xe7\x2a\xbb\x8e\x5e\x38\x85\x52\x02\x4e\x23\xed\x75\xc0" "\x17\xa9\xdb\xff\x79\xb9\x26\x98\x54\xf5\x9e\xc1\xc4\xbb\x4b\x69\xdb" "\x0a\x15\x8e\x97\x50\x31\x33\x4e\xff\x26\x0e\x7f\x73\x7b\x4d\x08\x49" "\x64\xf2\xb5\x33\x66\x69\x84\xc9\x75\xbd\xab\x89\xd8\x53\x55\x14\x4d" "\x21\xf7\xd1\x7a\x93\x68\xd3\x72\x72\xaa\xd6\xf3\x6b\xd7\x44\x02\xb0" "\x62\x58\x6c\xd8\x47\x8f\x40\x88\x18\xb4\xf3\x71\x75\x55\x84\x87\x2d" "\x27\x32\xeb\xc7\xc8\x92\x10\x26\xb1\x19\xe8\x3f\xad\x90\xb4\x94\xd2" "\x92\x3c\xe8\x3d\xd9\x75\x37\xcd\x0f\x89\x9f\x4c\xd0\x59\xdb\xac\x0e" "\x0e\x40\x88\x17\xe9\xdf\x74\xe4\xd7\x2d\x82\x64\x43\x5a\x63\xfe\x56" "\x26\xb7\xa3\xfb\xe9\x29\x9b\x0f\x81\x0a\x87\x83\x29\xd7\x1f\xec\xd3" "\x41\x1b\x0d\x6c\xfa\xa8\x3d\x64\xc7\x13\xe8\x74\x0d\xc8\x9f\x34\xdc" "\x1e\xc1\xe3\x08\xaf\x7b\x5e\x4e\xc3\xeb\x34\xc9\x5f\x87\x70\x77\xbf" "\x6a\xa7\xfe\x4b\xd3\x1d\xb5\x0b\x23\x3a\x8d\x8b\xf5\xb9\xb1\xba\x99" "\x4e\x6c\x3f\x51\xb3\x74\xba\xcb\x78\x14\xc1\xbf\x11\x9f\x93\x29\x99" "\x68\x63\x6b\x1b\x4e\xa6\x17\xd2\x8d\x92\x4f\x41\x52\x47\xe5\xc6\x4c" "\xa9\xd4\x0e\x48\x03\x49\x12\xfc\xc8\x12\x08\xc8\x7e\xa4\x14\xc8\x8b" "\x54\x56\xe5\x88\xbe\xc9\xb4\x43\xcd\x99\x7f\x1b\x26\x90\xfd\x39\xbe" "\xa0\xb7\x32\x54\x76\xcf\x5e\x0d\x7a\x2c\xa4\x06\x9f\x0f\x7f\xc9\xbb" "\xc4\x5d\x7c\xbe\x52\x51\x61\x3a\xa0\x82\x5a\x13\xd1\x7b\x96\xda\x97" "\x79\x55\x09\x7b\xe5\x2d\x76\xe8\x3d\xbc\xa4\x71\x18\x77\x10\x45\x37" "\xba\xd3\xb9\x43\x3f\xe2\xd9\x28\x9a\x6c\x7e\x04\x4e\x53\x91\xc3\x86" "\x9e\x09\x3b\x23\xaf\xeb\x9a\x0f\xd7\x8d\x57\x6c\x3a\xce\x03\xa7\xd8" "\x18\x74\x1d\x9a\xf2\xb4\x6a\xa8\xed\x3f\x34\x22\x1b\x82\xab\x3e\xc2" "\xff\x5c\x78\x89\x74\x27\x91\x73\xea\x56\x1a\xde\xf8\xf6\xc0\xa7\x89" "\x61\x3b\x43\x63\x20\x11\x8a\x4f\xc9\x20\x5b\xb1\x8d\x2f\xa3\x21\x3d" "\xed\xb8\x4d\x81\x7e\x56\xf4\x8c\x60\x28\x06\xf7\xc5\x9f\x09\x2e\xdd" "\xd5\x48\x05\xaa\x67\x52\xbc\x9c\xac\xf1\xce\x21\x38\x26\xe8\x58\x61" "\xd4\x73\xdf\x5c\xb0\x2c\xa9\xa5\xd1\x15\x23\xca\x1b\xda\x40\x65\x0f" "\x5a\x70\x81\x8b\xa9\xea\x49\xc3\xe2\xd2\x68\x99\x9d\x3f\xce\x7a\x70" "\x1a\x15\x8e\x93\xf2\x50\xa5\x11\x50\x3d\x18\xb1\xe2\x15\x25\xff\x41" "\xb1\x99\x7c\x80\x36\xe0\x82\x37\x58\xab\x1c\x5d\xf6\x5e\x5f\xe8\xdb" "\x68\x1d\x2f\xf4\x3f\x29\xdc\x87\xa8\xd2\x18\xf0\x6d\x19\xd9\x40\x49" "\x52\x91\xcb\xd6\x52\x3f\x56\x2f\xb2\xef\xd9\x8f\xc6\x2b\x5f\x85\x44" "\x9c\x65\x34\x65\x69\x1a\xd2\x47\x7b\x42\x8d\x72\xa2\x66\x66\xe1\x2b" "\x86\xb5\xb9\x5c\x79\x1a\x18\xb9\x82\x72\x3f\x39\x59\x2c\xaf\x1b\xce" "\x64\x42\x84\x5d\x17\xea\x9c\xb6\xc1\x6b\x56\xd5\xc4\xc3\x6c\xf8\x70" "\xf3\x49\x32\xf1\xc9\x92\xe4\x28\x4c\x87\xe2\x3f\x1b\xf7\x2f\x90\x3c" "\x3f\xc5\xa2\x90\x18\x4e\xac\x5f\xcb\x23\xf6\x32\x76\x4f\x5d\x9a\xf7" "\x09\x4b\xc3\x1d\xc1\x00\x33\xdd\x23\x3b\x48\x7d\x86\x0e\x38\xdf\xa4" "\x2b\x83\x25\xee\x47\x20\xb1\x69\xc7\x3f\x6b\x68\xff\xf0\xc8\x3b\x3a" "\xf2\x35\xae\xb6\x0d\xf7\x04\xf6\x26\x0d\x23\x0b\x14\xe6\x9c\x7b\x69" "\xcc\x2d\x41\x66\x35\x72\xc7\x69\xe2\xe5\xaf\x33\x1e\xf7\x8a\xd0\xf7" "\x6f\xe5\x6f\xb6\xc4\x4f\x91\x6a\x2c\x60\x85\xa0\xb4\x74\x0f\x26\x31" "\xd7\x0b\x40\xee\xe5\x4f\x79\x79\xff\xad\xc1\x31\xd9\x5b\x62\x58\x4f" "\xef\xce\x54\x58\xb9\x2c\x4e\x8d\x1d\x46\xd1\xbe\xbf\x55\xe3\xc9\x64" "\x99\xb5\x24\x0f\x9e\x79\xd4\xce\xe9\x70\x2a\xec\xf3\xfd\x23\x91\xf9" "\xea\xee\xfe\x44\x94\x1e\x54\x8f\x00\xf7\xe0\xf9\x7c\xb8\x41\x68\x97" "\x56\xc7\x6b\xf2\xe0\x73\xf2\x3b\x0e\x19\x4a\xd8\x5b\x14\x17\x25\x14" "\x67\x07\x9c\xee\x11\xdf\xcb\x4c\xe8\x63\xaa\x72\xde\x32\x6b\xb0\x39" "\xb8\x57\x30\xac\x7a\x2b\xd9\xe3\xe7\x0e\x6c\x26\xdb\x05\xd2\x82\x30" "\xd2\x9d\x88\x46\xef\xc9\x5c\x6b\x00\x67\x39\x8c\xe3\x2e\x3b\xf7\x1f" "\x17\x77\x3f\x4d\x6f\x20\xb3\x1a\x5b\xd6\x33\xe2\x2a\x1a\xa8\xf4\xb6" "\x3a\xa7\x8c\xff\x8a\x49\xad\x0a\xb9\x4a\xc1\xa0\xe0\xd2\x2a\x83\x07" "\x0c\x9e\xd3\x1c\xbd\xbc\x54\x4b\x6f\x4b\xec\xb1\xf7\xd3\xcc\x1b\xed" "\x48\x6b\x86\x64\xa0\x1b\x14\x04\x58\xb9\x15\xe0\xf7\xdc\x18\xb4\xc4" "\xd1\xa2\x6c\x63\xab\xeb\x92\xc9\xe1\xd8\x85\xa2\x22\xd2\xa9\x0c\x7a" "\x1c\xcc\x5d\x48\x23\x8c\xfb\x53\x49\xb7\xd0\xa9\xaa\x1e\x21\xbf\x2b" "\x54\x67\x3d\x19\xf4\x8d\xdf\x01\x38\xe6\x8c\x88\x4c\x93\x15\x25\xc2" "\xab\xd9\x8d\x5d\xf6\xf8\x72\xad\xec\xd8\x9e\x48\xa0\x10\xed\x98\x9b" "\x58\x68\x7f\x2b\x45\x00\x2d\x71\x70\xc0\x54\x4b\x93\x14\x9f\xc5\x78" "\x61\x7a\x1d\x1d\x79\x14\xde\xdb\xbd\xc1\x68\x0f\xac\x78\xa3\x64\x48" "\xba\x8d\x42\x85\x38\xa5\x71\x99\x6e\xf3\x9e\x07\xc1\x3c\x03\xce\xf8" "\x4b\xa7\x8b\xaa\x36\x62\x40\x8c\xb6\xe9\x50\x41\xce\xef\x97\x9d\x18" "\xc4\xff\x6d\x3d\x07\x04\x3e\x0d\x15\x4f\x7f\x59\x32\xcb\x96\xa3\xce" "\xfe\xb1\xcb\x7e\xc1\x79\x78\x69\x8c\xb6\xde\x1a\x8c\xf3\xc0\xff\xa2" "\x89\x5d\x69\x81\xe9\x93\xdd\xbb\xf9\x0c\x0d\xad\xd7\x74\x82\x53\xb8" "\x10\x54\xd4\xe0\xf1\x0c\x27\x53\xc9\x60\x4f\x14\xf4\x00\x5d\x30\x36" "\x48\xf4\xfe\xe7\x20\x88\x11\x20\x34\x34\x17\x7d\x34\xbb\xe6\x7f\x46" "\xf6\x91\xd6\x3f\xef\x64\xd8\x74\x36\x18\xcf\x06\x3d\x46\x06\x8f\xed" "\x21\xde\xe6\x4e\x5f\x4b\x2f\xf6\xb2\xd5\x2c\x18\x38\xac\x8d\x28\x95" "\x07\x61\x24\x09\xd7\xdf\x55\x6d\x31\x08\xd5\xe4\x44\x39\x61\x75\xcc" "\xaf\x6d\x58\x2e\xce\x01\xc1\x56\x8c\x4d\xd0\xf6\x95\x6b\x05\x9b\xd5" "\x0c\x01\xf4\xaa\xd0\x05\xcc\x16\x4a\x79\x48\x0d\xe9\x6f\xc0\xb2\xd8" "\x79\x01\xc6\x09\x3c\xeb\xbf\x55\x50\x95\x80\x83\x92\x98\x57\x32\xe7" "\xc3\xde\xb6\xb1\x99\x3e\x76\xf9\xbb\x24\xb8\x43\x73\x24\x36\xdc\xdf" "\xbc\x09\xd2\x47\x6a\xb0\x68\x2d\x62\x39\xfb\x8e\x3e\xc8\xc3\x56\xd3" "\x6f\x66\x70\x43\x2a\x9c\x20\xf2\xc1\x59\x3c\xd1\xdb\xd9\xb9\x0a\x9a" "\xbb\x81\xf7\x25\x6a\xe8\xd8\x90\x90\xf9\xc4\x95\x77\xa7\xab\xba\x92" "\x48\xdc\x11\xb8\x0b\xbc\x03\xf4\x01\xc6\x0f\x81\x19\xd9\x30\x86\x83" "\x68\x3d\x78\x6c\xea\xc9\x36\x17\x68\x78\xa7\xcf\x49\x01\x1f\xee\x5c" "\xfb\x4c\x3e\xe8\xc5\x93\x37\x38\xbe\x6f\x80\x42\xb3\x42\x18\xd0\x9e" "\x1c\x5d\x2c\x52\xf1\x13\x7f\xd0\xb9\x1d\x9d\x07\x97\xc6\x73\xc7\xe7" "\xd7\x64\xe4\xd5\xd8\xd1\x06\xa3\x0b\x0b\xc8\xe7\x6a\xbb\x6c\x50\x10" "\xaa\x3a\x30\x0d\x00\x6a\x61\x6c\x34\x4b\x59\x2b\xe5\x3c\x58\xd5\x90" "\x26\xc1\xde\xbe\xa3\x99\xd6\xb6\xa6\xa2\xc9\x08\xbe\x94\x77\xb3\x0a" "\x19\xfb\xc2\xcd\x5d\xcb\x72\x0a\xfc\x85\x57\x5c\xea\xd5\x35\xd3\x18" "\x5e\x64\xcc\x24\x70\x10\x6b\x38\x9c\x6c\x00\xf4\xfb\xbb\x78\xaf\xe5" "\xec\x62\x88\xb3\x05\x02\xe4\xeb\x71\x34\x41\x87\x30\x3c\xf8\x04\x25" "\x1e\xba\x0c\xad\xf5\x92\xa6\xad\xe9\x74\xfd\x4f\x1a\x88\x42\xdd\x70" "\x95\xcd\x4d\x36\x54\x29\x9d\xb7\x29\x1c\xb0\x6e\xcc\xfd\x1e\xbc\xd2" "\x02\xd7\xe3\x0f\x6b\xae\x1e\x6d\xd6\xd3\xd9\x7c\x14\x16\x90\x99\x87" "\xcb\x4e\xd3\xb3\x1f\xf0\x52\x8b\x00\x0c\x45\x76\xab\x0a\x26\x0c\x79" "\x5f\x6b\xb9\xba\xfb\xfb\x46\xca\x11\xe3\x19\x68\x26\x43\x17\xd3\xfe" "\x27\x9a\x83\x2f\x0b\xf7\x70\x24\x23\xa5\x1f\x87\x41\x50\x34\x09\xb0" "\x8b\xba\x89\xfd\x90\xaa\x04\xa3\x05\xef\x5f\xab\xda\x81\x59\x5b\xcb" "\x84\x96\xaf\xe9\x2c\x3f\x15\xc9\x2c\x08\x3e\x20\x30\xc3\x1f\x3c\x68" "\x71\xd9\x28\xfb\xa9\x2d\xa2\xe4\xb0\x62\xd4\xc8\xfd\x41\x85\x9e\x09" "\x43\x8d\xf7\x9a\x45\x8f\x1b\x41\x0c\xbd\xeb\x96\x52\x3f\x51\x1d\xfd" "\x4a\x18\xf1\x9b\xbe\x28\x13\xd4\x92\xa3\xa9\xe1\xab\x6a\x28\xa9\x58" "\x15\xe9\x47\x45\x5c\x80\xc4\x93\x38\xcb\xef\x28\x29\x96\x07\xd6\x96" "\x09\x9f\x2a\x6a\x75\x81\xb4\x63\xaa\x67\xa1\x6c\x92\x1c\xfd\xf8\x9d" "\x9d\xf6\xb6\xbb\xd9\x6b\x79\x4a\x7f\x7e\xd8\x10\x6d\x3f\xaa\x15\xc5" "\x24\x86\xb7\x95\x84\xc0\x25\x60\x38\xfa\x9c\x37\x3c\xf0\xba\x60\xd0" "\x6e\xfd\x82\xbc\xe8\x1c\x7f\x19\xa6\x57\xb4\x88\x7d\xc1\x12\x37\xf4" "\x8a\xf7\x2e\x43\xc6\xc4\x98\xe3\xf3\xf0\x04\xea\x71\xf8\x6e\x91\x3d" "\xbb\xc5\xc4\xff\x0c\x80\x42\xd5\x63\xb6\x45\x45\x76\x2d\x21\x27\x93" "\xb2\x57\x45\x15\x18\x41\x93\x62\xa6\x37\x49\xa5\x2b\x82\x6f\xbf\x67" "\x89\x8c\xa5\x5f\x00\xf0\xe6\xe8\xf6\x05\xa7\x1b\x82\xac\xff\xd1\xdc" "\x7f\x2c\x82\x03\x33\x43\x08\x30\x3a\xd1\x96\xf1\xe1\x27\x09\x20\x0f" "\xe9\xe7\xf0\xd4\xc4\x8c\x7a\x03\xbc\x7b\xd8\x06\x4a\x20\x07\xe6\xa2" "\xef\x01\xb3\x44\x22\x48\xed\x78\xc7\x3b\xcc\x3f\x67\xe4\x53\xa0\xc6" "\x7c\xec\xc4\x11\x22\x27\xce\x54\x91\xf0\x5e\x11\x90\x96\x34\x63\x67" "\x05\x91\xcc\xea\x54\xe6\xfe\x7e\xbd\x6a\x6d\x6f\x83\x7e\x38\xab\x09" "\xf1\x1c\x1d\x88\x93\x0a\x25\x92\xe8\xb8\x77\x7e\xde\x2e\x50\x09\x28" "\xb9\x4e\x0c\xf2\x61\xce\xaa\x2c\xae\xc2\x29\x2c\x49\xe8\xe3\x94\x94" "\x22\x4b\x01\xb0\xbd\x04\x4f\x0e\x95\x58\xba\x4b\x24\x76\xd4\xf0\x9b" "\x2a\x41\xd7\xe9\xda\xf5\xc4\x67\xa6\xc3\x38\x3f\x88\xf0\x48\x50\xe9" "\xb1\x1d\xc6\x70\xd8\x77\x72\x11\x10\xf2\x46\xbf\xe7\xd1\x23\x7f\xee" "\x97\x2a\x29\xc3\xa1\x4d\xa7\x90\x1c\xa4\x4a\xad\xe1\x77\x20\xc7\x61" "\x3b\xcf\x6a\xb7\x08\x42\x47\x65\x55\xfe\x2c\x44\xae\x3e\x9f\xd1\xda" "\x8d\x60\xae\xd5\xe5\x8f\xcd\x56\x77\x6a\xa4\x0e\x03\x6c\xba\x3b\xee" "\x08\x2d\xcf\xc0\x85\x63\xdd\x2d\xaa\x99\x8a\x5d\xa4\xda\xf9\x46\x98" "\xa4\x1e\x8f\xe2\x81\x18\x35\x8f\x1e\x1f\xe7\x2f\x91\x8e\x0b\x22\xc4" "\x6a\x6d\x77\x17\x94\x41\x77\x17\x24\xef\x0a\xcd\x39\x3d\xb9\xad\xc6" "\x6e\x25\xd9\x6b\x77\x30\x93\x22\xb8\x7d\xaf\x06\x87\xaf\x75\x40\x74" "\x39\x86\x9e\x19\xf1\x74\xfa\x47\x00\xdb\x37\xab\x08\x22\x03\x17\x51" "\x51\x0d\x6e\x8a\x18\xfc\xc5\x02\x8e\x58\xd4\x53\x0a\xb6\xb7\x06\xc0" "\xb6\xce\x77\xc4\x1e\x68\x9d\x79\x5e\xb7\xfc\xd7\x71\xfb\x4f\xee\x5e" "\x62\x4b\x5c\xdd\xcd\x6e\x4e\x25\xc1\xd5\x3d\x6c\x96\x1e\x02\x67\xb6" "\x00\x61\x40\x41\x2e\xb2\x91\x67\xe3\x1d\xc2\x28\x09\x98\xb7\x4e\x9a" "\xd3\xbe\xf1\x12\xe2\xc0\x7a\x85\xae\x07\x1e\xf5\xb0\xe0\x97\xcc\xc1" "\xd4\x38\x14\x2d\xb8\xfb\x24\x7f\xd2\xb4\x95\x22\xbd\xfd\x9e\xd0\x9a" "\xc9\xcd\x25\x88\x4c\xae\xbe\xc1\xa9\x2c\x61\x41\x83\x16\xe7\xe2\x96" "\x79\xcc\x5e\xd3\x2d\xc4\x0d\xc4\x50\x62\x10\x44\x0a\xff\xc3\xbf\x3e" "\x17\xaa\xff\xbc\x66\x4a\x2e\x52\xfa\x44\x4e\xa2\xc2\xcb\xbe\x66\x24" "\xe1\xff\x63\xa2\x82\xf7\x6b\x71\xfb\x5d\xd5\xc3\x4d\x4e\x69\x0a\x46" "\x5c\x41\xc4\x59\x3d\x87\xfb\x60\x72\x75\x63\x41\xac\xfa\x23\x76\x15" "\x59\x82\x78\x4f\x3f\x5d\x74\x4a\x6c\x54\xaf\x50\x82\x2a\x92\x8f\xcb" "\x59\xca\x7e\xc8\xdc\x1e\x4f\x72\x7f\xd8\x80\xb8\x9d\x8f\x10\xc8\x0b" "\xe0\xea\x87\x1e\x6f\x48\xc9\xf4\xd9\x37\x26\xfe\x57\x31\x6b\xfc\x73" "\x8b\x06\x08\xcd\x5c\x7c\x1a\x04\x1b\x26\x0e\xed\xc2\x4c\x73\x75\x4c" "\xf4\x7b\x5c\x02\xd0\x36\xba\x70\x74\x22\x03\xca\x5d\x60\x67\x18\x2f" "\x92\xe4\x70\x15\xc1\x61\xa1\xf1\x85\xfd\x17\x3c\xdd\x96\x5b\x16\x06" "\xb0\x9d\xb6\x6e\xca\xc5\x83\x20\x26\x5e\x89\xd8\x57\x9d\x7d\x53\x21" "\xa2\x6b\x7c\x97\xaf\x64\x5f\x30\x4d\xcb\xf5\x4d\x55\x7e\x0e\xd6\x2b" "\x43\x7b\x64\xfd\xbc\x06\xb9\xdb\x87\xeb\x03\x65\x17\x0a\x4c\xfc\x71" "\xe3\xc0\x36\xb9\x4d\xae\xff\xe1\x69\x02\xa8\xe4\x71\x9d\xa4\xa9\xef" "\xe9\xa2\x8c\xa6\x1e\x17\x0d\xb4\x16\x06\x17\xfc\x27\x4e\xca\x88\x24" "\x81\xc7\x4b\xe3\xf2\xb9\x1d\x42\x40\xe2\xd7\x6b\x33\x9f\x33\x70\x76" "\xa0\x9f\x5f\x46\x8c\xa4\x42\xec\xf2\xa0\x6b\x38\xfe\x58\x0c\xb6\x20" "\x0c\xc2\xd7\xad\x7f\x90\x77\x78\x3b\xdd\xd9\xe2\xc5\x0e\xcc\x6f\x23" "\x29\x30\x0e\xf8\xfa\x3c\x43\x8f\xe7\xcf\x4d\x71\xee\x8e\x25\x53\xe4" "\x3c\x20\xa9\x6a\x1c\x76\xc7\x83\x50\xbb\xc5\x4c\xf2\xc9\xc0\x93\x4e" "\x8d\xcb\x93\x88\x41\x85\x1d\x5b\x1c\x90\xd4\x9d\xe7\xad\x54\x56\x30" "\x19\x00\x5a\x9a\x6d\x27\xcc\x30\xe9\x9f\x9f\xe1\xf3\x6d\xf9\xc8\xd0" "\x4d\x28\x4f\xdc\x1d\x9c\x8c\x78\x33\x79\x08\x01\x8c\xb8\xdf\x40\xe1" "\x02\x58\x5d\x7f\x38\x01\x8a\x1e\x70\xd6\x62\xfc\xf6\xf0\x1c\x33\xfa" "\xb0\xd2\xa8\x06\x9b\x5b\x94\x5f\x4b\x6e\x69\x9c\x6f\x7b\xf0\x49\x9a" "\x47\xc8\x73\x8e\x34\xa9\x90\x33\x7f\x90\x20\xdc\xa6\x4b\x0e\x72\xab" "\x48\x27\xb5\xdb\x5d\xd4\x92\xbd\x5d\xdf\x0b\x4f\x47\x7c\x77\xe9\xcb" "\x51\x35\x8e\x34\x15\x5f\x6b\xe7\xdf\xc2\x0b\x69\x86\xdc\x1d\x28\xc8" "\xa0\x3e\xc2\x65\xd9\xf3\xb1\xc1\xfd\x8a\x02\x54\xb6\x24\x79\xd6\x14" "\x6d\xa9\xc3\xc4\x12\x21\x02\x09\x98\x20\x08\x69\x9b\x40\x15\x69\xc8" "\x57\x86\x1c\xeb\x5e\x1a\xef\x7e\xb0\x65\xf4\x75\x5f\x73\xab\xa7\x56" "\x93\xd0\xed\x0c\xb8\x2f\x25\xb4\x60\x42\x49\x8e\x6c\x94\xe0\x74\x9e" "\x29\x31\x06\x43\x64\x4e\xcc\x4c\x85\xaa\xee\x06\x0c\xbc\x4a\x1e\x98" "\xe0\x86\x47\x86\xb4\x9d\x85\x28\x58\xd3\xaa\x9b\xb6\xfd\x23\xfa\x28" "\x1f\x4d\xb0\xe0\xad\x8f\x5f\x00\x8d\x86\x9f\xe8\x3a\xbb\xb4\xad\xa0" "\x93\xfa\xe1\x53\x96\x7e\xb8\x4a\x99\x38\x9e\x5c\xc6\xbf\x28\x94\xc1" "\x12\x9b\x8f\xe3\xea\x52\xc9\x27\x5b\xdf\x4f\x12\xb5\x92\xac\x11\xbc" "\x7b\x47\x53\x54\xdf\xbb\xca\x8e\xfb\xa8\x05\xc4\xc2\xf3\xd0\x9c\x4b" "\xc8\xb9\x99\x4a\x39\xf3\x60\xda\xc6\x9d\x83\x4f\x5d\xce\x7c\x39\x7e" "\x69\xfd\xb9\xd0\xf5\x9b\x42\x36\x19\x93\x4c\x78\x56\x78\x68\x6b\x72" "\x57\x24\x1d\x14\x5b\x4a\xab\x17\x8a\xde\xfe\x35\xf5\x39\xfa\xb8\x26" "\xb9\x97\x3b\xf3\x67\xb4\x61\x2e\xc2\x90\x59\x2c\xbc\x90\xd2\x2d\xe2" "\xf3\x12\x1c\x8e\x12\x84\xd3\xea\xee\xc8\xdc\x7f\xda\x4e\x84\x44\x46" "\x47\x6c\x39\xaa\x5b\x23\x4c\x2d\x33\x53\x37\x57\x5e\x02\x38\x1f\xf8" "\xfe\x5b\xae\x37\x88\xdd\xbe\x0f\x22\x65\xa3\x32\xe7\x9b\x95\x8e\x98" "\x76\x0f\x9a\x48\xc2\x29\x5e\xdf\xa0\xf3\x36\x0f\x19\x38\xf6\x83\x33" "\x8d\xda\xa7\x42\x49\xe7\xf3\x46\x1b\x2d\xb9\x16\x17\xca\xef\x42\x57" "\xbb\xf2\x00\x3b\xd7\xad\x7d\x7b\x32\x6f\x19\x75\xd1\xe7\xf9\xde\x31" "\xa4\xe2\x0d\x8d\x2e\x67\xb3\xe4\x57\xd2\xa7\x60\xea\xcc\xf2\x03\x6c" "\x47\xe0\x68\xb0\x88\x5d\x82\xf6\xc6\xfd\x7d\x99\x84\x59\x89\xc9\x18" "\x3f\x2d\x02\xc6\xe6\xc4\x8c\x87\x4f\x57\x0f\xc4\x69\x02\x06\x97\xa0" "\x59\xb0\x3c\x22\x35\x6d\xe9\xeb\xe9\xcd\xa8\x14\xfc\x66\x1f\x6f\x20" "\x66\x55\x87\x82\x84\x56\x8a\xc7\x80\x67\x95\x6f\x1f\x77\x69\x59\x90" "\x4c\xf3\xbf\x8e\x32\xb9\x9e\x8f\x9c\xc8\x18\x29\xed\xf3\x01\xc9\x96" "\x88\x0c\x48\x81\x1a\x87\x65\x4e\x69\xec\xf1\x68\x8c\x7d\x78\xe7\x55" "\xf4\x30\x81\x0a\x8b\xbb\xe8\x35\x00\xda\x27\x9b\x06\x21\x0b\xf1\xad" "\xf8\x75\x80\x39\xa5\x2f\xe8\x92\xc4\xde\x34\x2f\x4e\xf5\x93\x95\x25" "\x4d\x85\xc8\x25\x93\x07\x96\x54\x9b\xbc\x58\x29\x7a\xe5\xe0\xaf\x4b" "\x7e\x80\x8a\x4f\x07\x1b\x85\x60\xa2\xce\x09\xbe\x81\x33\xac\x04\x7d" "\x47\xd2\x8b\xaa\x81\xbd\x20\x42\x1e\x50\x86\x31\x07\x31\xaa\x3f\xbb" "\x53\x93\xba\xfa\xa6\xf1\x79\x2e\x8b\x12\xaf\x3e\x7a\xaf\x0f\x24\xc3" "\x42\x07\x42\x19\xd9\xe2\x05\x05\x2b\xaf\x66\xe1\x58\x41\xed\xd2\xe1" "\x08\x20\x97\x04\x22\x55\x36\x3a\xc2\x93\x16\x84\x68\x4d\x59\x24\x58" "\xb6\x26\xda\xe0\xfd\xe3\x17\x04\x58\x50\x97\xe1\x16\x0f\xaa\x5f\xb7" "\x25\x56\xa4\x0a\x18\x31\xbc\x6a\x09\xd0\xa8\xbb\xcd\x93\x90\xb7\x15" "\x8d\x49\xea\x00\xd0\x91\xc6\x1d\x36\xdb\x66\x45\xf0\x0b\x75\x74\x28" "\x33\x2e\xab\xb3\x2c\xdb\x3a\xeb\xfa\xfb\xff\x65\x58\x39\xf0\x13\x4f" "\xd0\x7f\x65\x9d\x64\x7f\xfb\x55\x80\xc9\x42\x47\x3e\x2e\x6c\x62\xd3" "\x6f\x33\xa1\x0c\x2d\x73\x5d\x97\x84\xca\x86\x2e\x50\xa6\xbe\xf0\x0e" "\x2e\xd2\x1b\x18\x62\xdc\x54\x55\x8c\xc0\xc2\x40\x49\x3b\xa3\xe1\x76" "\x26\xe7\x0d\xd6\x07\xba\x6f\xa0\x09\x1d\x9a\x91\xfb\x86\x5f\xcb\x7d" "\xd4\xac\x7a\x1b\x42\x2a\x17\xaf\xf5\x28\x6e\xe8\xae\xa1\xb1\xef\xdc" "\xff\xc2\x9d\xdb\x19\xf4\x42\x9d\x24\x70\xf0\xf0\xaa\x95\x49\xe8\x74" "\xe1\x17\x13\xc4\xce\x98\xcb\x59\x47\x6c\x58\xa4\xf2\x33\x7f\x2a\xe9" "\x3f\xde\x5a\x51\xed\x8b\x6b\xe2\x2e\x1f\x07\x88\x27\x7f\xec\x7c\xfa" "\x19\x89\x09\xa4\x3e\xce\x36\x76\xbb\x87\xbb\xf9\x89\x2c\x4e\xbf\x9a" "\x06\xff\xaa\x44\xd8\xa4\x27\x6e\x67\x85\xca\xd5\xf7\x11\xeb\x02\x8b" "\x78\xa4\x36\x04\xaa\x32\x0f\xc2\x95\xfd\xdd\x48\xd5\x6a\x5d\x7c\xe5" "\x65\xdb\x0b\x85\xcd\xff\xd4\x11\x89\x47\xd7\x5c\xcc\xd5\x87\x03\x7f" "\x7b\x03\x54\x0e\x33\x35\x3b\x75\x06\x91\x70\x90\xe0\x71\xbe\xe1\xe7" "\x94\xe3\x65\xc6\x70\xbc\x63\xa3\x06\x9e\x5e\x41\x32\xdc\x2d\xd9\x79" "\x3f\xec\x29\x8b\xf4\x07\xa1\xe0\x56\x2d\x5f\x99\xd3\xca\xb2\xb7\xbe" "\x0f\x26\x74\xc7\xe0\xe5\xf1\x52\xb6\xea\x3d\x56\x21\x4a\x3a\x2b\xeb" "\xfd\x4d\xfb\x98\x0c\x7e\xf4\xcd\x3d\x79\xa7\x73\xeb\x21\x3b\xfa\x91" "\x3a\x23\x17\xf9\xde\xd4\xd3\x47\x63\x76\xcd\xf2\x75\x31\x0f\x6f\x78" "\x6c\xb1\xc9\xe1\x15\xdf\x75\xd8\xae\x16\x89\xda\x80\x76\x3e\x6a\xc8" "\x3b\xb2\x6e\x5c\x2d\x17\x7f\xd9\xa2\x10\xb5\x3a\xeb\xac\xc3\x81\x00" "\xeb\xbe\x97\x63\xe8\xeb\x3f\x14\x15\x14\x97\x8f\x4f\x03\x28\x34\x74" "\x33\x8a\x8a\x1d\x43\xae\x64\x62\x15\x8e\xca\x81\x3d\x9d\x55\xd8\x1a" "\x2d\x7f\xa6\xb0\x8c\xe6\xc2\xb9\x4c\x49\x35\xef\x2c\xff\x7b\x01\x45" "\x70\xa4\x2c\xc4\x3e\xde\xf4\xf7\x5f\xa6\x06\x5d\x7c\x57\x01\xf6\x08" "\xb5\x02\xbf\x09\x7f\x66\x69\x3c\x98\xc7\x78\x69\xf2\xff\xac\x87\x65" "\xca\xee\x91\x6e\x23\x0c\xd3\x75\x64\xfb\x1a\xf0\x23\x7c\xd9\x10\x95" "\x93\x0e\xf9\xd1\xc1\x03\x5c\x89\xa8\x76\xad\x29\xc7\x55\xf5\xad\x84" "\x01\xea\x3b\xad\x54\xd7\xbd\x56\x45\x35\x4c\x55\xa3\x9e\x60\x31\x85" "\x3c\x9c\x45\x73\x5e\xba\x67\x42\xa6\xb1\xd0\x2b\xe4\x73\x2c\xb8\x87" "\xd9\x0e\x11\xf0\xd9\x1f\xfa\xde\x53\x15\xc3\x22\x84\x3a\x1e\x47\xb3" "\x5c\x45\xf1\x54\x3b\x5b\xe9\xf9\x21\x43\x00\x40\xa1\xf3\x62\xb7\xda" "\x14\x46\x61\x37\x5a\xf7\x6a\x59\xa0\x0f\x0e\x95\x0d\x47\x25\x1a\x28" "\xce\x14\x51\x53\xe8\xa3\x5f\x0b\xdc\xe8\xd9\x5f\x99\x42\xc6\x45\x13" "\xc2\xf6\x8e\x20\xc9\x87\x90\xa1\xda\xf4\x2d\xe3\x80\xbe\x1b\x10\x3f" "\x0a\x32\xce\x00\xbc\x7b\x25\x65\xe3\x23\x8a\xb1\x0d\xaf\x22\xf1\x96" "\xa4\x76\x9e\x69\x57\x2d\x7c\xd7\x12\x93\x23\x05\x0a\x6a\x11\x60\xe5" "\x7f\xe7\x14\x17\x2d\x2b\x32\x7d\x42\x82\x77\x6a\xff\x82\xa5\x35\x61" "\xe7\x90\x21\x0e\xe7\xc9\xdd\xb5\x08\xd3\x7e\xd8\xaf\x10\xb9\x6d\x3a" "\xf6\x82\xd4\x33\x70\x4e\x27\x0c\xf4\xf0\x2b\xac\x15\x13\x0c\x52\x08" "\xff\xe0\x44\x36\xe1\xd8\x6f\xef\x7e\xbe\x71\x83\x31\x28\xd2\x1c\x39" "\x33\xcc\xb1\xb4\x32\xed\x4f\x17\xdd\x4a\xb6\x55\x69\xb4\x9c\x87\xa0" "\x5a\x0d\x8c\xb6\xdf\x13\xfd\x7e\x0b\xad\xe3\x8f\xd1\x3a\x90\x9d\xde" "\x2e\x5f\x67\x41\x3e\x19\xa7\x4f\xbc\x27\xa0\x96\x68\xa5\xb0\x47\x9b" "\x10\x6c\xcd\x6a\xcc\x5b\x5f\xe5\xd6\x31\xb2\x46\x6e\x2d\xa7\x05\x70" "\x53\x73\x13\x01\xfa\x1a\xb3\xf1\x6f\xf4\x71\x6b\x32\xe3\x1e\x71\x91" "\x2c\x00\x7c\x79\x76\xa4\xf5\xf2\xef\x3e\x18\x4f\x9a\x28\x70\x23\xf1" "\xe5\x6b\x07\x87\x52\x19\xa4\xbf\x64\x7f\xc0\xe5\xa6\x7d\xff\xe7\x85" "\xd9\xe8\x58\xea\x7e\x32\x53\x36\x2e\x27\x13\x8d\x11\x10\x9c\x33\x4d" "\x5e\x09\x8a\x58\xe4\x58\x33\x40\x7c\x9b\xc9\xc0\xf4\x7d\xa8\x8c\xb6" "\xcf\x26\x9a\x94\xbe\x28\xc9\xc2\x7d\x07\xcd\xa7\x23\x6c\xe7\xa7\x05" "\x47\xab\x13\x24\x2e\x1b\x15\xf8\x30\x95\xdb\x49\xc1\x34\x24\xe9\xd1" "\x7b\x95\xc9\x54\x53\x95\x84\x9e\x22\x4d\xbe\x0f\x02\x58\x66\xaa\x6c" "\x64\x74\xb4\x51\x91\xd4\x9e\x1e\x9f\x7d\x7c\x09\xa5\x22\x99\x9e\x14" "\x35\xba\xd7\x85\x84\xb4\xbb\x52\xe7\x17\x42\xf7\x44\x61\xd9\x9a\x82" "\x1a\x6b\x5a\x83\x49\xfa\x29\xa8\x82\x33\x5a\xf3\xe8\xc8\x81\x69\x80" "\x1f\x7e\xb9\xe7\x47\x96\x12\x5b\x9c\x41\x3f\x72\x6f\xef\xc0\x36\x05" "\x25\x72\xe0\xc7\xc9\xc9\x7d\x9e\x1b\x06\x7e\x2a\x88\xf3\x3e\xb9\xca" "\x4f\xbe\x6f\xa1\x45\xa9\x94\x3b\x1c\x60\x85\xfd\xbd\x50\xe1\x41\x2a" "\xc5\xf1\x18\xb4\x8a\x74\x08\xd3\x4e\x38\x28\xe6\x06\x0d\xd2\x74\x85" "\x79\x04\x64\x2d\x10\xd3\xb8\xdc\x3d\xd7\x28\xbb\xfb\x71\xed\xb0\x84" "\xd6\xbd\xaf\xab\xc8\x73\x83\xa6\xf0\x1b\x7c\xd6\x35\x20\x75\x8c\x94" "\x9e\xff\x76\xe1\x74\x91\x94\x18\x6e\xc9\x4e\xae\xe2\xa8\x21\x42\xe4" "\xf4\x42\xf4\xaf\xfd\xff\x42\x6b\x15\x5a\x2d\x44\xe7\x91\xb9\xac\x3b" "\x5d\x97\x3f\x9d\x20\xca\x87\xf7\xd4\x8f\x58\x99\xca\xae\x56\x0f\x91" "\x07\xc5\x4c\x31\x0a\xb5\x84\x17\xb3\xa9\x54\x51\x9a\x02\x8f\x98\x66" "\xd5\xca\x04\xed\xa9\x82\x4b\x4d\xfd\x9c\x4f\x80\x03\x68\x5d\x3c\xe2" "\x60\x31\xa5\x35\x68\x2e\x5c\xb7\xec\x92\x4d\xb6\x5d\x08\x95\x5b\x44" "\xc9\xe5\xef\x69\x64\x62\x2b\x92\xe5\x47\x67\xe7\xdd\x16\xa9\xb9\x93" "\x0f\xc3\x7f\x91\x39\x6a\x34\x38\x60\x65\xc3\x8f\xcb\x9c\xb0\xb9\x68" "\x9b\xc5\x5b\xb2\x79\xb2\x98\x3c\x10\x03\x28\x82\x02\x77\x2f\xd9\x57" "\xfe\x3f\xd1\x3e\xa7\xd4\xac\x37\x57\xa4\x24\xf1\x97\x5f\x67\xeb\xc1" "\xad\x9c\x56\xcc\x7a\x6b\x9c\x1d\xc6\xae\xa2\x25\xf2\x56\x03\xd7\x63" "\x30\x58\xef\x22\x49\x41\x34\x7c\x20\xc0\x3b\xe0\x12\x19\x15\x4d\xa0" "\x94\x2c\x74\x77\x75\xc4\x81\x44\x4b\xd5\xce\xc0\xf3\x3f\x25\x14\xb2" "\x78\xed\xfd\x0d\xa5\xb5\x20\x1e\xe6\x5b\x8a\x31\xe5\xe7\x52\x09\x56" "\x5d\xe9\xf3\xe3\xeb\x82\x56\xea\x04\x0f\xf4\x62\xee\xc8\x22\xa2\xe2" "\x72\x26\xd4\x8c\xf6\x7f\xc8\xec\x5a\x8c\xa3\x1d\x30\x43\xad\x2c\x6c" "\xa7\x9b\x7d\x82\x8f\x57\x20\x65\x53\xff\x67\x2d\xdd\x41\x10\x62\x81" "\xfe\x9b\x92\xb0\xd7\x9e\x96\xab\x11\xc5\xa2\xc9\x54\x54\x5e\x23\x79" "\x97\xbc\x7c\x15\xcf\xd2\x10\xf6\x25\x7b\x95\xc9\xec\x3d\xc1\x57\x09" "\xab\xbb\xb6\xbb\x25\x7b\x20\xb6\xfa\xd2\x1a\xe5\x7e\x9a\x7f\x08\x0f" "\x0a\xcb\xbd\xf3\x2b\xc2\xd1\xe5\x76\x6e\xc0\x41\x66\x6f\x70\xe5\x8f" "\xfb\x04\xf0\x0a\xb4\x28\x14\x02\x35\xeb\x7a\xd2\x90\x46\x60\x80\xda" "\x76\x1c\x1b\x1e\x90\x78\xf0\x3d\xa2\x82\x7b\xb4\x45\xe6\xa1\x02\x9e" "\xeb\x43\x04\xfc\x2d\x03\x2b\x28\xb5\x08\xf1\x79\x5f\xf1\x36\x44\x78" "\x91\x65\x88\xd9\xba\x47\x59\xbb\xa8\xf8\xaa\x2d\xca\xad\x8a\x54\x08" "\x73\x14\x37\x01\xd4\x82\x1d\x6e\x6b\x7c\x8e\xf6\x6d\x2d\x28\xbc\x3e" "\x57\x32\x3b\x78\x1a\x39\x7a\x9e\x75\x2c\x58\x0e\x89\x66\x0b\x55\x69" "\x38\xcf\x77\x8e\xa0\xc5\x4a\xda\x9e\xba\x5f\x4f\x16\xcc\xf1\x9b\xd2" "\x55\x50\x7e\x5b\x8f\xb8\xbc\xc6\xa5\x25\x70\x51\xda\x5f\x9a\xa8\x5e" "\xad\xa2\x95\x7f\x41\x00\xa9\x09\xe6\x68\xc4\x0a\x51\x64\xa1\x39\x50" "\xed\x70\x45\x8f\x25\x2b\xf4\xc6\xda\xc5\x45\xfa\x88\x60\xa8\xe9\x6b" "\xac\xef\xc4\xef\x93\x74\xa9\x51\xe0\x99\x45\x6e\x6c\xef\xb2\x4f\x71" "\x15\x3c\xd7\x99\xe2\x15\x55\xde\xb6\x34\x40\x91\xf3\xce\x5a\xc5\xed" "\xf5\x06\x6e\xe0\xe9\xff\x84\x9d\xb8\xe3\x3a\x27\x43\x58\xb8\x8b\x33" "\x4c\x50\x98\xb9\xed\xf7\x8e\x0c\x67\x12\x2c\x1a\xa0\xa9\xed\x6d\x1f" "\x7c\x2f\x61\xa6\xd7\xa2\x52\x56\xd7\x70\x5e\xae\x83\x7d\x11\x60\x7d" "\xa0\x9e\xe3\x2c\xbd\x7a\x70\xb4\x8e\x98\xb0\xa5\x35\xa9\x63\x1f\xe2" "\x8f\x3e\x70\x05\x65\xe2\x6d\xfb\x94\xee\x98\xb6\x2f\x27\x85\xfd\xa0" "\xa5\xfe\x14\xf0\xae\xe9\x11\xba\xeb\xf9\x91\x0c\xbc\x0b\x33\xd2\x0c" "\x53\x6f\x5a\xb8\xa5\x81\x55\xc5\x2a\x44\xa1\x58\x4f\x2a\xf6\x23\xee" "\xfa\xdc\xb3\x86\x75\x09\xc8\x5d\x23\x06\x35\x8d\x8d\xfb\x53\xbf\xbd" "\x36\xd0\xcc\x24\x93\x21\x39\x7b\x76\x01\xd7\xd2\xbf\x52\x1d\x92\x20" "\xa1\x83\xc4\x20\xc0\x81\x20\x57\xb5\x1f\xe6\xeb\x1e\x4d\xe5\x9d\x8f" "\xd3\x6c\x07\xd7\xf3\x63\x55\x16\x76\x4f\x73\xc7\xeb\xdc\x28\xa3\x14" "\x84\xed\x8c\x8f\x5f\xb7\x3a\xbe\x3d\xd5\xff\xc8\x4f\x19\x30\xd8\x4f" "\x32\x59\xd9\xed\x24\x65\xf1\x41\x69\x4d\x53\x86\xb8\xee\xba", 8192); *(uint64_t*)0x20000a80 = 0; *(uint64_t*)0x20000a88 = 0; *(uint64_t*)0x20000a90 = 0; *(uint64_t*)0x20000a98 = 0; *(uint64_t*)0x20000aa0 = 0; *(uint64_t*)0x20000aa8 = 0; *(uint64_t*)0x20000ab0 = 0; *(uint64_t*)0x20000ab8 = 0; *(uint64_t*)0x20000ac0 = 0; *(uint64_t*)0x20000ac8 = 0; *(uint64_t*)0x20000ad0 = 0; *(uint64_t*)0x20000ad8 = 0x20000740; *(uint32_t*)0x20000740 = 0x91; *(uint32_t*)0x20000744 = 0; *(uint64_t*)0x20000748 = 0; *(uint64_t*)0x20000750 = 0; *(uint64_t*)0x20000758 = 0; *(uint64_t*)0x20000760 = 0; *(uint64_t*)0x20000768 = 0; *(uint32_t*)0x20000770 = 0; *(uint32_t*)0x20000774 = 0; *(uint64_t*)0x20000778 = 0; *(uint64_t*)0x20000780 = 0; *(uint64_t*)0x20000788 = 0; *(uint64_t*)0x20000790 = 0; *(uint64_t*)0x20000798 = 0; *(uint64_t*)0x200007a0 = 0; *(uint32_t*)0x200007a8 = 0; *(uint32_t*)0x200007ac = 0; *(uint32_t*)0x200007b0 = 0; *(uint32_t*)0x200007b4 = 0; *(uint32_t*)0x200007b8 = 0; *(uint32_t*)0x200007bc = 0; *(uint32_t*)0x200007c0 = 0; *(uint32_t*)0x200007c4 = 0; *(uint32_t*)0x200007c8 = 0; *(uint32_t*)0x200007cc = 0; *(uint64_t*)0x20000ae0 = 0; *(uint64_t*)0x20000ae8 = 0; *(uint64_t*)0x20000af0 = 0; *(uint64_t*)0x20000af8 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200021c0, /*len=*/0x2000, /*res=*/0x20000a80); break; case 5: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x27; *(uint32_t*)0x20004218 = 0; *(uint32_t*)0x2000421c = 0; *(uint16_t*)0x20004220 = 0; *(uint16_t*)0x20004222 = 0; *(uint32_t*)0x20004224 = 0; *(uint32_t*)0x20004228 = 0; *(uint16_t*)0x2000422c = 0; *(uint16_t*)0x2000422e = 0; memset((void*)0x20004230, 0, 32); syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x20004200ul, /*len=*/0x50ul); break; case 6: memcpy((void*)0x20000100, "./file0/../file0/file0\000", 23); memcpy((void*)0x20000140, "./file0/../file0/file0\000", 23); syscall(__NR_rename, /*old=*/0x20000100ul, /*new=*/0x20000140ul); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1, /*offset=*/0ul); loop(); return 0; }