// https://syzkaller.appspot.com/bug?id=75b9434ab41bf479db3f5a7b1624df435fe77ed9 // 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[3] = {0xffffffffffffffff, 0x0, 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*)0x200042c0, "./file0\000", 8); memcpy((void*)0x20002100, "fuse\000", 5); memcpy((void*)0x20000140, "fd", 2); *(uint8_t*)0x20000142 = 0x3d; sprintf((char*)0x20000143, "0x%016llx", (long long)r[0]); *(uint8_t*)0x20000155 = 0x2c; memcpy((void*)0x20000156, "rootmode", 8); *(uint8_t*)0x2000015e = 0x3d; sprintf((char*)0x2000015f, "%023llo", (long long)0x4000); *(uint8_t*)0x20000176 = 0x2c; memcpy((void*)0x20000177, "user_id", 7); *(uint8_t*)0x2000017e = 0x3d; sprintf((char*)0x2000017f, "%020llu", (long long)0); *(uint8_t*)0x20000193 = 0x2c; memcpy((void*)0x20000194, "group_id", 8); *(uint8_t*)0x2000019c = 0x3d; sprintf((char*)0x2000019d, "%020llu", (long long)0); *(uint8_t*)0x200001b1 = 0x2c; *(uint8_t*)0x200001b2 = 0; syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200042c0ul, /*type=*/0x20002100ul, /*flags=*/0ul, /*opts=*/0x20000140ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200021c0ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x200021c8; r[2] = *(uint32_t*)0x200021d4; } break; case 4: memcpy((void*)0x20000100, "./file0/file0\000", 14); syscall(__NR_unlink, /*path=*/0x20000100ul); break; case 5: *(uint32_t*)0x20004200 = 0x50; *(uint32_t*)0x20004204 = 0; *(uint64_t*)0x20004208 = r[1]; *(uint32_t*)0x20004210 = 7; *(uint32_t*)0x20004214 = 0x21; *(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*)0x20008a40, "\xe7\x4a\x0f\x89\xe8\x8c\x3a\xba\x2d\x1c\x77\x6a\xb2\x5b\x22\x1b\x36" "\x6a\xb0\xac\x5d\xb0\x5e\xc8\x7f\x72\x0b\x51\xbe\x2b\x46\xfe\x1a\xa4" "\xd1\xf5\x0e\x8d\x27\x8e\x8e\x96\x41\x88\x5d\xe1\x6d\xd0\xab\x77\x53" "\x0a\x7a\x8c\x79\xb8\x01\xa4\xc8\xc9\x56\x7e\x29\xf0\xfa\x27\x52\x52" "\x4c\xd1\x14\x97\x50\x6c\xf9\x7d\x82\xf7\x23\xa2\x51\xdf\x27\x7d\x63" "\x72\x59\xd2\xbb\x51\x0d\x2b\x02\xd1\x0e\x86\x0a\x1e\xdc\x04\x0e\xee" "\x39\x3f\x78\x88\xf1\xd6\x6d\x3a\x47\x3c\xb7\x67\xaf\xa6\x55\xe1\xb4" "\x4c\xcb\xec\x58\xfb\x5c\x93\xaa\xce\x8c\x0b\x87\x1a\xa4\x29\x75\xbf" "\x03\xe7\xe1\x87\x40\x06\x62\xd6\x90\x4e\x49\xde\xe4\xe2\xaf\x4c\x61" "\x02\xec\xc3\xf0\x33\x7b\xe6\x78\x4b\xc4\xa2\xa3\x13\x09\x93\x4f\x6f" "\x5d\x25\x87\x7e\xfe\x0e\xd4\x5a\x3a\xa0\x06\xd1\x01\xd9\x1f\x9b\x2a" "\xfc\x4f\x5e\x48\x1a\x84\x21\xc4\xc7\x34\x72\x2e\xf8\x9c\xa7\xf9\xb4" "\x4b\xed\x70\x00\x78\x2c\xfd\xb5\xa2\x00\xc3\xa1\xe9\xa2\x77\xa9\x65" "\x5f\x28\x76\x7a\x39\xf9\xe4\x95\xde\xc1\xe1\xbb\x61\x70\x37\xb6\x05" "\x8d\xf1\xac\x71\x27\xab\x31\x50\x23\x23\x70\xa5\xf2\xdc\x48\x2f\x00" "\x7f\xf5\x96\x65\xfc\xbc\x5e\xad\xb2\x7c\xfc\x85\xff\xaf\x1c\x6d\xa0" "\xfc\x2b\xcd\x45\xe0\x4c\x03\x8a\x09\x52\x6b\xe1\x68\x9e\x06\x77\x1f" "\x18\xa2\xcd\xc8\xe6\x67\x41\xfe\xdc\x06\x48\x17\x02\x10\xd1\x98\x0d" "\xb4\x78\x1b\x1a\xc2\x96\x8a\x88\xdf\x12\x83\xea\xc5\xf9\x41\xc5\x6f" "\xb5\xc9\xfb\x9d\xfd\x9b\x97\xab\xf1\x6d\x38\x2f\x34\x6b\x77\x7f\x92" "\xd9\xa0\x34\x20\x99\x61\x7e\x1f\x6b\xe5\x16\xd8\x56\xdc\xec\x56\x61" "\x00\xbe\x91\x8c\x31\xb3\x1b\xae\x12\x01\x40\x81\x97\xc9\x33\x52\xcf" "\xa7\xb6\x8d\x8f\xf9\x95\xbf\xae\xf9\xa1\x55\x7a\x00\xf9\xc4\x11\xe5" "\xb8\x28\x18\xf9\x6f\x53\x60\x8c\xb4\x86\xd1\x34\xbc\xd8\xac\x55\xcd" "\x0e\x99\x79\xc9\x42\x7a\xbe\x38\x5d\xfd\x50\xb4\x09\x67\x64\xa7\xd2" "\xb3\xfb\xb3\xbb\xeb\xd8\x26\xaf\x4a\xbb\x97\xbb\x0f\xa7\x52\x14\xa5" "\xc2\xa6\x84\x23\x96\x86\xc0\xbd\xa2\x8d\x38\x2d\xab\x3f\x29\x3d\x85" "\xba\x35\xed\xd9\xe2\xf2\x2e\xad\xf3\x73\x39\x44\x26\x70\x01\xe5\x96" "\xb8\xbd\x36\xe3\x08\xdc\x58\xd6\x4d\xf4\xa5\x47\x79\xfe\xbe\xda\xee" "\xce\x93\x76\x7d\xeb\xfd\x37\x1b\xb7\x6a\x2b\x99\x61\xd0\x07\xfc\xb4" "\xfa\x60\x7f\x1d\x03\xed\x4e\xc8\xa5\x0e\xd7\xab\xe6\x39\x78\x45\x69" "\xd1\x17\x87\xb4\xe1\x45\xca\xce\xec\x20\x14\x5d\x2a\xe1\x5b\x9f\xd9" "\x79\x05\x89\xdd\x2a\x36\x12\x24\x7c\x6e\xdc\xeb\x22\xc7\xa7\x90\xd1" "\x09\x44\xac\xd1\x60\x50\xad\x6e\x3d\xe7\xa4\xaa\xe0\xb1\xc4\xfd\x0d" "\xbd\xb8\xbb\x70\x94\x6a\xbf\x2c\x95\xe7\xe1\xa6\xc4\x6d\x46\xd9\x8a" "\x48\x3e\xdb\x5e\x02\xb7\xa8\x3d\xbe\x8f\x06\x08\x16\x7e\x7a\x01\x67" "\x1f\x13\x5b\x61\x3c\x11\xcb\x30\x7b\x8e\x00\x4d\x43\x06\x88\x49\x07" "\xbf\xc8\x3e\x03\x97\x82\x71\x46\xf5\x10\x1c\xe5\x52\x8d\xd7\xc0\x7a" "\x5d\x36\x4d\xcf\x18\x57\x77\x2d\x7e\xa5\x18\xa9\x84\x7a\x85\x3e\xc9" "\xe7\x5d\xf1\xe1\x4f\xee\x7c\x50\x87\xdc\xd9\x23\x80\x8d\xed\x43\xa6" "\x3a\x07\x16\xfc\xc0\x66\x1c\x10\x18\x84\x7b\xb3\x27\x63\x3a\x1f\xf9" "\xe0\xdf\xfe\x85\xc9\x71\xe2\x45\x8b\x4e\xca\x86\xf4\x4e\x20\xdb\x06" "\x7b\x30\xe1\xcc\x5f\x4e\xed\x70\x64\xf7\x6f\xec\x7a\x77\x2b\x82\x39" "\xe2\x4d\xe0\xbc\x65\xed\x7a\x48\x52\x1c\xe8\xf9\x47\x0e\x52\x89\x25" "\x9c\x1a\x93\xc6\x32\x51\xba\x3c\xb9\xfd\x40\x07\x4a\x66\xc2\xae\x0d" "\x6a\xb5\x0b\xc1\x42\x8e\xa1\x4a\x25\x4a\xba\x9b\xf6\x87\x58\x85\xfa" "\xc3\xce\xba\xba\xbe\x0a\xbe\x4f\xa2\xc4\xaa\x02\xa8\x36\x98\xc1\x5f" "\xed\xf2\xdc\x4f\xe8\x54\x74\xc2\x6a\x94\x19\xc8\xa8\x18\x51\x5c\x17" "\x05\x76\xba\x2b\xde\xed\xd7\xfc\xc6\xf3\x18\x41\x4a\x4a\x3d\x21\xc9" "\xcb\xee\xda\x8a\x93\x42\x0b\x0e\xdf\x74\x9e\xa9\x37\xd1\x5e\x36\x24" "\xb9\xee\x08\xde\x93\x05\x10\xb1\x08\xde\x17\xe1\x26\xba\x03\xac\xd6" "\x47\xa7\xec\x8d\xda\xfe\x3c\xa8\xed\xda\xfd\xa6\x04\x42\x4c\xc0\xe1" "\xb3\x22\x9e\x64\xb3\xa8\xf3\x34\xcf\x81\x06\x20\x66\xe6\xd4\x51\x30" "\x6e\x00\xc6\x1b\x0a\xe0\x9a\x74\x57\xc7\xa9\x29\x9a\xcb\xa8\xf2\x82" "\x10\xe8\xbf\x2d\xe2\x9c\x41\x3c\x27\xc0\x6a\x88\x5f\x4d\x76\x22\x3b" "\x65\x7e\x08\xe2\x4e\x88\x1d\xb1\xbc\xfe\x5b\x6b\xfd\x21\xc1\x0d\xdd" "\x08\xb8\x27\x82\xe1\xd6\x3f\x72\xec\x05\xda\xdc\xb3\xe6\xf4\xc6\x51" "\xac\xfb\x8e\x10\x86\x09\xf3\x7a\x0e\xbf\xa1\x99\x2e\xab\xdb\xb0\xd5" "\x9c\x3b\xdf\xdb\x6d\xb5\xc8\xee\x69\x28\x08\x55\xa5\xa2\x8f\x25\xf1" "\x8c\x43\xda\x95\x43\x37\x21\x36\x21\xff\x72\xb6\x07\xe1\x88\x1b\xcc" "\xa0\x5b\x53\xf1\xc4\x82\x06\xc4\xa4\x1e\xa5\x13\xbb\x45\x19\x7e\x9a" "\xe6\x90\x64\x55\x7d\xda\x4a\xb0\xf2\x78\x5f\x5f\x5e\x9d\x0c\x7b\x1c" "\x81\x83\x8c\x5d\x48\xf6\x37\x6a\x8f\xcc\x02\x30\xbd\xde\x24\x71\xa3" "\x52\x1b\xa0\xcf\xc2\x22\x98\x9b\x33\x6c\x7a\xaf\x81\x66\x4e\x34\x65" "\xf4\x5d\x4d\x08\x20\x83\x34\x51\xfa\x85\xce\x06\x10\xde\xc0\xbb\x0d" "\xc7\x02\x0a\x91\xf5\xbf\xdb\x6d\xde\xe6\x71\x52\xa4\x97\x50\x7c\x39" "\x12\x07\xb7\xae\xed\x6b\xb1\xf6\xeb\x81\x23\x80\xb3\x3e\x42\xb7\x8d" "\x1c\x11\x75\xd9\xae\xef\x5c\x67\x89\x48\x79\xd6\x20\x0a\xcb\x2a\xea" "\x17\xc5\x46\x1b\xd2\x90\x93\x15\xfb\x76\x11\xd7\x2a\xaa\x92\xa5\xb1" "\x80\x1b\x6f\x04\x02\xae\x8a\x7a\x25\x1b\xc5\xb7\xe6\x52\x86\x18\x86" "\xed\xcf\x15\x55\x15\xc3\x43\x06\xa9\x6e\x9a\xf5\xd1\x9d\x29\xd4\x25" "\xf3\x0d\xbc\xc7\x71\x54\x90\x34\x30\x36\xff\xc2\x8b\x11\x7c\x23\x4a" "\xef\xd3\xe9\xa2\x10\xe2\x24\x83\x79\x75\x4e\xe1\x9c\x7b\x24\xf7\x5e" "\xd4\x1e\x41\x83\x21\xa2\xee\x46\x07\xe6\x80\x1b\xf7\x64\xf9\xaa\xc8" "\x2c\x13\x68\x5d\x81\x86\x5e\x4c\x68\xee\x67\xd2\x3c\x02\x93\x70\x74" "\xe0\x09\x94\x61\x71\x1c\x5b\xa2\xc4\x0f\x42\x18\xf0\x0f\xf8\x84\xdb" "\x32\xbd\x6b\x6c\x75\x3f\x35\x2d\x27\xde\x3e\x9e\xf3\x9a\x44\x9f\x47" "\x0c\xc9\xd5\xf0\xa3\x47\x60\x3f\xfe\x12\x53\x65\xdb\x8f\x7e\xd8\xdb" "\x6a\x6f\xf3\xf0\x54\xb7\xe3\xb1\xe1\xba\x4e\x3b\x12\x0a\xbe\xe0\xd7" "\x91\xcd\x64\xf3\xec\xab\x1b\xe0\xa9\x85\xf5\xa0\x4c\x9b\xf9\x15\x66" "\xb6\xaf\x9a\x07\x05\x61\x8a\x7e\xb7\xbd\x34\xdc\x71\xc6\xe9\x82\xfe" "\x9c\x68\x4d\x2f\xdc\xaf\x5a\xd1\xf4\x36\x6c\x6b\x15\x73\x52\x0b\x3a" "\x43\xd1\x57\x59\x73\x97\x6e\x5a\x2d\x83\x42\x83\x6d\xa6\x1a\x91\x9f" "\xe2\x91\xd4\xe0\x6d\xc8\xb8\x04\x7f\xda\xa5\x91\xdb\x96\xc5\xf7\x08" "\xd7\xef\xc1\x0d\x0f\xeb\xd2\xde\x60\x39\x98\xda\xa2\x18\x84\x1c\x38" "\xf3\x8c\x29\x4f\x79\xa0\x58\xc1\x4b\x84\x51\xe9\x70\xd4\x5b\x64\xab" "\x8c\xfd\x81\x1e\x33\x2c\xa4\x69\xc1\xad\x1a\x70\x3c\x78\x89\xb6\xaf" "\x24\x30\xb5\xa9\xa1\x6e\xfb\x95\x76\x7c\xf6\xe1\x76\xae\xaf\xe1\xd7" "\xf3\xe2\x07\xb9\x23\x16\x03\x8a\x69\x4d\xc7\x7e\x4f\x9d\x42\x3f\x02" "\x3e\x6e\x92\x99\x4b\xca\xcc\x88\x11\xaf\xd8\x02\x2c\xdf\x24\x26\x8c" "\x64\x6e\x4f\x8f\x1e\xec\x0e\xbd\x9a\xdf\x11\xa3\x38\xbb\x0b\x76\xbf" "\xfd\xfd\xba\x50\x60\xcd\x88\x58\xc3\x86\x1c\x20\x20\xa8\x36\x7b\x65" "\xb2\x72\x30\x58\x71\x50\x1c\xe9\x13\x1b\xa5\x8f\x4b\xee\x28\x54\x26" "\x51\xff\x43\xe4\xb0\x44\xe0\x8e\xeb\xda\xc2\x29\x01\x16\x6e\x5a\x46" "\x90\x33\x5d\x5c\x19\x5d\x0d\x89\x54\x70\xdf\x40\xc7\x56\xe5\x53\x23" "\x0f\xb2\x04\x85\xf2\x5e\x61\x22\xc1\x31\xa1\xc2\x40\xa8\xee\xea\xda" "\xe8\xbd\x74\x3e\x25\xaa\x74\x45\xc4\xd1\x3b\xcf\xc2\x01\x2a\x3f\xff" "\xd8\xe7\x18\x40\xa7\x3b\x0f\xb8\x6e\x01\xb1\x89\xed\x98\xff\xaf\x53" "\x31\x7a\x3b\xe7\x25\x75\xc7\x2b\x38\x51\xf5\xe6\xd5\x89\x46\xea\x53" "\xc2\x7a\x2c\x07\x4d\xe8\x78\x39\x6b\xce\x0f\x0a\x86\x39\xe4\xcd\x18" "\x8b\x0c\x41\xbc\x93\xdd\xf2\xe2\xbc\x21\xf4\xa6\xa2\xa5\x23\x16\x12" "\xf7\xce\xfa\x07\x35\xea\xf3\xfc\x59\x9c\x01\x8b\xfb\x78\x8b\x09\x51" "\x17\x3d\xf4\x6c\x9f\x57\xac\x58\xa7\x03\x64\xa7\x8d\x4e\xed\x63\x65" "\x9e\x80\x98\x3f\xf2\x1b\x44\x1b\xa0\x41\xa6\xe0\xf8\x3c\xf5\xcb\xb4" "\x67\x87\xf8\x03\x2f\x35\xee\x2d\x35\xfb\xf2\x78\xff\x6b\x0c\x47\x42" "\xb0\xc8\xe9\xb8\xb5\x10\x81\xb3\xdb\x97\xc7\x5f\xef\xfc\xf4\x79\x3b" "\x50\xa7\x74\xf9\xfd\xb8\xe1\xdf\x5b\xc3\xb3\x37\x96\x46\x77\xd2\xe7" "\x14\x8e\x31\xea\x86\x60\x90\x13\x69\x40\xa9\x67\x0f\xf4\x92\xd8\x8b" "\x48\xd7\xf5\xa9\xce\xbf\x32\xb8\x65\x38\x13\x03\x63\x69\x30\xac\x76" "\xc9\x40\x45\x4b\xca\x30\x60\xd8\xf3\xe4\x85\x8b\x55\x14\x7e\xcc\xdb" "\xcd\xef\x80\xc6\x4b\x80\x30\x49\x8c\xe8\xe1\x54\x20\xd1\xea\x46\xc5" "\x40\x6a\x55\xc8\x94\x34\x76\x52\x32\xba\xb5\x7d\xf4\xfd\x14\x5a\x60" "\x19\x1e\xea\x9b\x1d\x63\x49\x68\xe0\x08\x70\x83\xdb\x8b\xd7\x1b\xe3" "\x47\x39\x26\x17\x53\xfb\xa1\xeb\x47\xed\xda\x8d\xf4\x5c\x8b\xef\x04" "\x0b\x15\x2b\x1d\xa1\x74\xb1\xda\x36\xf7\x31\xcd\x77\xa3\xed\x39\xd6" "\xff\xdd\x5b\xd6\x8d\x42\x88\xc4\xd4\x64\xe4\x76\xc1\x36\xd3\xeb\xd3" "\x79\x16\x8b\xf8\x7a\xc8\xba\x63\xa8\xa6\xa3\xf2\x43\x0a\xf3\x52\xf2" "\xc2\x52\xa0\xef\x3e\xa2\x56\x08\x70\xab\xa8\x3c\xce\xcd\xd0\xe5\x7c" "\xe9\x85\x98\x21\xf0\xe1\xda\x1a\xfe\xc2\x94\x04\x8a\x1e\x22\xcd\xd0" "\x2d\x56\x85\x18\x19\x98\xad\x20\xb2\x65\x39\xae\xb8\xe8\xfe\x02\xda" "\x9f\x39\x65\x58\x3c\xc8\x10\x91\x46\xba\x18\x2b\x6c\x8c\x94\x5b\xc0" "\xe3\x09\x8a\x35\x3d\x07\xf9\xf2\x87\x37\xfc\x73\xec\xec\x7d\x12\xac" "\x68\xf5\x11\x35\xa6\x17\x29\x1d\x57\xe5\x7a\x62\x5b\xc7\xfc\x21\x74" "\x56\x0f\x24\xa7\x66\x7d\x41\x06\xc1\x19\x22\x81\x5a\xf1\xfc\x4b\xfc" "\xa2\x4b\x62\x5f\xf6\x95\x3d\x82\x55\xa7\x77\x15\x42\xd2\xfc\xca\xf7" "\x41\x95\xc9\x57\xfa\xa3\x32\x8c\xb7\x18\x0b\x12\xef\xc3\x64\x0e\xea" "\xc8\xdb\xac\x1a\xa5\x5d\x23\x69\x04\x97\x5e\xa0\x52\x1d\x8b\x3a\xa7" "\x92\xc8\xc3\x19\x4e\xb1\x54\x97\xfb\x68\x35\x1b\x2f\x66\x2e\x6d\xcb" "\xb0\x36\x07\xfe\xb7\xc2\xf2\x94\x56\x08\x5d\x96\xd4\xdb\xcf\xbb\xcb" "\x28\x28\xc8\x12\xf2\x16\x24\xa3\x01\xb6\x48\x20\x1d\x27\xb9\xe8\x08" "\x62\x18\x9e\x7f\x8e\x81\xb4\x79\x30\x1b\x4a\x55\xdc\x2a\xa7\x73\x2b" "\x34\x60\x00\x1d\x07\x2f\x04\xc9\x6d\xc3\x4f\xbe\x5f\x7e\xaa\x12\x10" "\x7d\xee\x5c\x4f\xca\xb6\x97\x7d\x65\xd3\xe5\xa3\xcb\x2b\x23\x34\xfa" "\x2e\xd1\x0a\x0f\xf0\xf0\x2b\x43\xa1\x6f\x5b\xfb\x6d\x49\x09\xb7\x0a" "\xf2\xb1\xb1\xd0\x72\xe5\xc8\xb0\xa3\x44\xad\xe8\xc7\x04\x4a\x2a\x1a" "\xb9\xa5\x8f\xf0\xe6\x29\xa2\x34\x5a\x96\x33\x51\x3a\xc4\x29\xba\x96" "\xb8\x91\x1c\x22\x7a\x30\x6f\xb2\x37\x69\xd0\x2b\x23\x3b\x86\x9c\x91" "\xab\xd6\x05\xe4\xd1\x3e\x92\xf5\x6b\x13\x41\x4e\x8b\x29\xe1\xe9\xb2" "\x03\x15\x4d\xb9\x38\x0b\xbf\xb6\x6c\x45\x48\xdf\x00\xdc\x5f\x3b\x13" "\x90\x9b\x2b\xc4\xe9\x0d\x5e\x3a\x42\xb6\xe4\xd6\xe8\xe1\xea\xff\x7b" "\x31\x91\x79\x97\x5a\xe9\x0e\x3d\xed\x62\xef\xba\xc6\x0a\xbb\xb5\x7f" "\x07\xc3\x48\xa4\xee\xc2\x03\x22\x89\xac\x91\x47\x62\x97\x38\x5e\x0b" "\xa3\xa9\xbb\x08\xde\x58\x94\xba\xaf\x7c\x6a\x46\xb4\xe0\x4e\x75\xc1" "\x07\x22\xdc\x2c\x5a\xf8\x19\x63\x8b\x8d\x41\xc1\x63\x06\x5c\xd7\x3b" "\x8b\xe3\xef\x6c\x36\xcb\xc5\x56\xfe\x87\xb4\xd3\x5f\x14\x21\x1a\x86" "\xfb\x88\x00\xbc\xf6\x77\xa1\x7a\xb8\x80\x82\x24\xed\x0c\xa7\x80\x33" "\x88\x93\x61\x2a\x68\x6f\xd6\xd4\x4a\x1b\x62\x10\x96\x47\x7f\x6f\x07" "\x60\xab\xb2\x32\xd7\xbd\xac\xf9\xc7\x81\x1e\xb0\xd8\x7d\x69\x45\x2f" "\x74\xc7\x56\x3c\x58\x3a\x39\x72\x08\x3c\xef\xc8\xea\x05\x51\x3b\x87" "\xf6\xd0\xbc\x52\xfc\xca\x7d\x1f\xa0\x2d\x5f\x5f\x06\x83\x75\x26\x59" "\x7e\xa3\x8b\xe7\xc7\xa4\xb3\x3f\x53\x91\x7e\x84\xe7\xa4\x60\x21\xb8" "\x5d\x41\x6a\x64\x55\xcb\xa0\x64\x6a\x2e\x81\x06\xca\x51\x50\x22\x35" "\x5e\x72\xf5\xc5\xc8\x1d\x23\xb2\xbc\x2a\xbc\xc3\xed\x75\xdb\x75\xda" "\x33\x01\xdf\x75\x8f\x79\x7a\x61\xc3\x3b\xf8\xbd\x37\x11\xc2\x02\xda" "\x94\xde\x30\x4b\x7c\xcd\x10\x49\xd5\x8e\x13\x19\x0d\x56\x62\x77\x55" "\xab\x3e\xbc\xdd\x29\x22\xbc\x16\x22\x40\xb9\xbe\x76\x22\x47\x42\x3b" "\x43\x41\x22\xbf\x51\x73\x14\x7a\xc9\x81\xbe\xaf\x9d\xcf\x95\xf0\xf2" "\x86\x01\xb5\xd0\xdc\xea\x36\xef\x0f\x06\xbe\x3e\xaf\x57\xa8\x6e\x05" "\x23\xcd\xc7\x12\xed\x58\xbb\xf0\x81\xab\x9d\xdf\x9c\xc4\x04\xf6\xdc" "\x3e\x48\x29\x9d\x45\x7c\x79\x73\x55\x87\xd8\x3d\x64\xaf\x69\xbb\xcd" "\xd1\xc9\x65\x45\x14\xae\xe1\x07\x28\xfb\x51\xac\x14\xf5\xde\x78\x15" "\x2a\x2e\x15\xb7\xd4\x01\x89\x90\x3e\x1c\x8f\x6d\xec\xc9\xb9\xc2\x25" "\x90\xac\xfc\x66\xc2\xc6\x10\x28\xf2\xd5\x56\x09\xa2\x5e\x0a\x99\xbe" "\xb9\xb5\x42\xad\x9b\x0c\xd8\xdc\x60\xf5\xee\xea\x60\x0e\x85\x67\xfd" "\xf1\x67\x5b\xad\x45\xb6\xd1\x0d\x4e\xd8\xf8\xbb\xf0\x12\xce\x63\x2d" "\x9d\x1b\x73\xbe\x09\x44\xeb\x9b\x47\x5a\x15\x67\xc2\x1e\x22\xf5\xb5" "\xdb\x33\x1c\xbc\x03\x12\xfa\x90\x69\xfa\x04\xaa\xb9\x47\xa5\x7d\x28" "\xe7\x62\x0a\xd7\x28\xa5\x89\xff\xe2\x14\x40\x92\x84\xb9\xae\x9f\xec" "\xeb\xf5\xef\x5a\x99\xae\xc1\xef\xdd\xe0\x5e\xb7\xf2\xbf\x80\xea\x66" "\xcb\x5f\x45\x80\xe5\xeb\x75\xe8\xaa\xcc\xf2\x03\xb0\xe8\xc2\x92\x75" "\xc0\x5c\x8e\xd3\x90\x29\xb5\xd7\x4e\x20\xb9\x2d\xd2\xb2\xe6\x52\x5e" "\x7e\x4e\x72\x16\x73\x5d\x74\xf7\xdb\x4c\xfb\x4f\x76\x08\x3f\x69\xbd" "\x6c\xb2\xf4\x5a\x29\x22\x9e\x38\xb5\x4f\x1e\x4f\x5a\x73\xd5\x79\xc2" "\x31\x19\xf7\x20\xe3\x1d\x39\xc1\x19\xf0\xf0\x71\x41\xc4\xa4\x61\xa7" "\x10\xe2\x83\x33\x58\x35\x38\xbb\xcc\xe0\xe6\xb0\x6f\x38\xef\xc9\xdf" "\xe9\x9c\x82\x6c\x54\x29\x53\x62\x55\x3f\x87\x53\x6e\xf5\x28\x00\x16" "\xb7\xdf\x06\x52\xa7\x03\x68\xa7\x12\xe3\xb0\xd1\xb3\xd7\x3d\x82\x66" "\xd8\x2d\x51\x9e\x63\x65\x48\xec\x28\x76\x7b\x9b\x10\x95\x84\xc2\xa0" "\x7e\x25\x66\xab\xe3\x2d\x0c\xc5\x09\x41\x4b\x17\x11\xc5\x3a\x37\xf3" "\xb7\xd2\x18\xce\x3b\xdd\xcd\x3c\xe3\xbd\xcc\x2a\x75\x44\xfd\xf1\x9e" "\xc9\xb6\xbd\x5a\x35\xfa\x8a\x30\x22\x6f\xf3\x7f\xb6\x79\x13\x8a\x5a" "\xa5\x3f\x95\x2b\x3f\x8b\x68\xd9\xa7\xee\xda\x49\xf0\x55\x80\x4d\x5d" "\x25\xb1\x08\x67\xd8\x65\x22\x90\xd7\xe9\x6a\x0c\x0a\x64\xfa\xd8\x54" "\xe6\x93\x5c\xd1\x59\x46\x55\x61\x7d\x4c\x5a\x70\x07\x4b\x0f\xeb\xf8" "\x27\x24\x68\xf8\x96\x88\x76\xac\xf5\x2f\x1b\xe6\xad\xc2\x7b\xd3\xe7" "\x30\x48\x7f\xe5\xae\x44\x4b\x7b\x6c\x20\xf2\x4c\x82\x54\x74\xa9\x5a" "\x1a\x73\x9b\xe1\x65\x0e\xad\x9c\x7c\xae\x41\x71\x8b\x13\x1d\x4a\xa8" "\x29\x1f\xb2\xdc\x45\xf5\x63\x3f\x48\x2b\x6e\x31\xae\xe9\xfd\x04\x32" "\xda\x90\x65\xb0\x84\xe5\xe5\x8c\xad\x91\xc5\xf9\x83\x5c\x52\x4b\x09" "\x3c\xac\x7b\xba\x5c\xdc\xdb\x70\xd2\xdb\xf3\xca\x05\x20\xf5\xf0\xdd" "\x74\x21\x2c\x58\xc2\x6b\x4e\x45\x12\x2e\x58\x3b\x5c\xae\xf4\xcc\xf2" "\x02\xa6\xb3\xa5\xad\x0d\xe8\xc9\x85\x9c\x82\xc3\x97\xb0\x18\xe7\x52" "\x8a\xcb\x59\xcf\xd4\x65\xb3\x05\x77\xa8\xd4\xa3\x58\xb5\x8d\x0d\x5e" "\x51\x0e\x1c\x61\xa5\x22\xa4\xf8\x43\xd0\xe5\x80\xbe\xdd\x5d\x97\xaf" "\xf9\x39\x15\xe7\x56\x80\x0c\xa9\x89\x0e\x37\x27\x56\x59\xef\xd8\x7c" "\x6f\x31\x46\x6e\x56\x14\x1a\x32\xec\x4c\x78\x9a\xfb\x3f\xa9\x42\x06" "\x4c\xaa\xbe\xe5\x55\x87\xa6\x9f\x26\x00\xe7\x08\xa9\xe5\x8e\xca\x5f" "\x5c\x2e\xd0\xd3\x48\xce\xf9\x55\xa2\x61\xb0\xff\xda\x9c\x51\xe7\x0f" "\x23\x35\xda\xfa\x3c\x2e\x6f\xc5\xef\xe2\x82\x29\xc5\xbf\xa7\xa8\x73" "\x61\xbf\x6f\xbd\xc7\x47\x31\xb6\x70\x03\xb4\x57\x61\x6e\xa7\xbd\x30" "\xaf\xf8\x32\xb7\xd1\x8f\x43\x67\xbe\xc3\x93\x49\x83\xc9\x36\x3a\xdc" "\x2b\x1c\xe3\xc6\x3f\xc4\xac\x0d\x9a\x8e\x15\xa7\x27\xb5\x71\x31\xac" "\x6d\x14\x03\x05\xdc\x69\xb8\x66\xe4\x21\x2c\x6a\x58\xee\x1e\xf5\x73" "\x4d\xb3\x1e\x95\xf0\x86\x88\xe8\xf8\xf6\xcb\x5b\x1c\xa4\xd9\x57\x9e" "\xe0\x9b\x7f\x43\x91\xe3\x9d\xd8\x4b\x2e\x7b\x2b\xc4\xe3\xa1\xd3\x30" "\xf4\xb2\x94\x26\x86\x4e\xe0\x8b\x59\x95\x6d\x68\x8a\x61\xae\xc9\x81" "\x06\x2a\xf9\x7b\x79\x7b\x99\x21\xf8\xf8\x81\xb7\xba\xaa\x20\x0b\x40" "\x50\x76\x9d\x8f\xf1\xa9\x5d\x5f\xd1\xc4\x06\x3f\x2f\x4a\xa4\x72\x11" "\x74\x29\x04\x0f\x1f\xf2\xb5\x0e\x79\x4c\x21\x97\xd4\x72\xad\xae\xf1" "\x7c\x8a\xd0\x35\x52\x95\x93\xe6\xbd\xe8\x31\x8d\x90\xa1\x61\x90\xef" "\xe5\x31\xf4\xe1\xc8\x3d\x31\x7c\xe2\x79\xd7\x17\x11\xf3\xdc\x5b\x2c" "\xa6\xc2\x93\x9c\xae\xdd\x68\x89\x27\x14\x4c\x8f\x51\xda\x45\xfc\xea" "\x09\xb5\x51\xd1\xc9\x06\x58\x5a\x76\x63\x83\x4e\xe0\xd6\x37\x2d\x2e" "\xc5\xa4\x1a\xf8\x4a\xc3\x69\x0a\xeb\x27\x23\x51\x7d\xff\x02\xfc\xca" "\x3d\x30\xfb\xe3\x3c\x88\x45\x80\x8b\x2a\x19\x75\xe0\x98\xd8\x75\xe4" "\x51\x2f\xfc\x52\x7a\x93\x72\xa6\xfa\x6d\xf5\x52\x20\x18\x2c\x02\xf2" "\x2b\x39\x29\x55\x26\xc4\x0e\xfa\xe0\xd1\x4e\xee\xee\xc3\x5e\x61\x7a" "\x68\x94\xf5\x8b\xb5\x1a\x0d\x9c\x62\x1b\xdc\x72\xcc\xd8\xbd\xd8\x09" "\x12\x90\xa5\xdb\xef\x46\x75\xc3\xcb\xdf\xf9\x80\x50\xeb\x4b\xf0\x4e" "\xb9\xa2\x15\x9c\xe1\x4b\xf6\x8f\x34\x08\xe2\xc4\x82\x41\x0d\xd1\xee" "\x26\x57\x47\x75\x73\xac\xca\x4b\x9a\xc7\x02\x62\x5c\x0d\x62\x86\x82" "\x75\x3f\x2e\x01\x46\x79\x9a\x62\xdf\xce\x3e\xc8\x82\xfe\xfd\x90\x2e" "\x8f\xb4\xc6\x75\x29\xba\xec\x24\x34\x15\x43\x29\xe1\xd9\x5d\xfc\x51" "\x36\xb3\xb6\xe6\xba\x60\xda\x0b\x48\xcf\xc9\x39\x1a\xc0\xb0\x55\xf7" "\xf7\x5a\xb5\xb2\xa0\xe5\xeb\x39\x6a\xcb\x97\x2b\xd3\x80\xed\x67\x0a" "\xce\x57\xfb\xa3\x11\x45\x60\x98\x06\xb2\xd9\x0e\x02\xb2\xce\xba\x53" "\x5b\x34\x77\x07\x10\x21\x78\x8e\x2a\xd7\x46\xca\x1a\xb7\xa6\x82\x09" "\x3a\x8e\x8b\x18\x38\x30\xa0\xff\x3a\x40\xfc\x9f\x19\x1d\x34\x15\xd0" "\x50\xbd\xbb\xc9\x79\x9e\xa9\xb1\x10\x04\x71\xe2\x9f\xef\xf3\x98\xd2" "\x51\x69\x9d\x5e\xc8\x30\x43\x28\xe7\x48\xbf\xd3\x4a\xb7\x14\xea\x53" "\x4a\x49\xda\x85\xf1\x73\xaf\x9b\xda\x7a\x02\x96\xe5\x11\xdf\x46\xcb" "\xf8\x6b\x61\xe8\x9e\xf2\x2e\x6d\xe5\xa3\xb0\xfb\x9f\xcb\xd7\x11\x58" "\x79\xd1\xd8\x4f\x56\x0d\xcc\xb7\xe0\x6f\x9c\xad\x4a\x1c\x93\x32\xaa" "\x48\x61\xea\x97\xed\x66\x19\xe8\x39\xb3\x02\xeb\x96\x02\xb2\xb8\x15" "\x37\x81\x55\x94\xbd\x71\x70\x3b\x82\x72\x87\x6d\xe2\x0f\x5b\x08\xb7" "\x96\xeb\x59\x85\xa0\x95\xa3\x57\xfe\xdb\xc5\x13\x73\x7b\x74\xc4\xa3" "\x7d\x6a\xbf\x06\x38\x07\xf5\x4e\x14\xd0\x01\xde\x8e\x78\xf1\x29\xc6" "\x46\x21\x4d\xc8\x8f\x5c\x21\xc2\x18\x50\x00\xeb\x35\x97\x02\x03\x6d" "\x97\x48\x1b\xab\x97\x56\x24\x44\x13\x53\x0b\xb6\x77\x94\xf8\xf2\xed" "\xd7\xbe\x9c\xae\xdc\x86\xbc\xf6\xaf\x21\x27\x67\x1a\xb6\x3f\xf4\xe6" "\xdb\x94\x32\x00\xe0\x1b\x10\xb0\x1c\x0b\x9f\xc8\x1f\x85\x15\x13\xee" "\x59\xaf\xe2\x55\x38\x7f\xad\xeb\xfa\xb5\x7b\x5a\x15\x2c\xab\x49\x33" "\xce\xf4\x55\x70\x00\x91\xd8\x32\x38\x4a\xe3\x87\x1a\x91\x55\x35\x74" "\xb2\x97\xed\x5d\xdd\x3f\x70\xd0\x4a\xde\xb3\x0e\x13\x42\x21\x44\x35" "\xc3\x05\xcb\x34\x15\x9a\x35\x7d\x23\xbd\xb2\x63\x5e\x2a\xbf\x29\xea" "\x68\xe4\x4f\x5a\x47\xf9\xbd\xd4\xc9\x49\xd9\xae\xb8\x7c\xab\xf6\xb3" "\x91\x7c\xc6\xbc\xfe\xc8\x8b\xc1\x8f\xb6\xd6\x2f\x3c\xa7\xa5\x7b\xf4" "\xa9\x60\xf5\x89\xfd\xeb\x82\x7f\x48\x2b\x9f\x9b\x05\x54\x1d\xa8\xdb" "\x5e\xd2\x2b\x4f\xb3\xda\x5b\xad\x8e\x17\x9d\xcb\x72\xef\x37\x8b\x7c" "\x6d\xb2\x6b\xd5\xbf\x10\xb7\x97\xe7\x3c\xb0\xcc\x29\xc7\xfd\x96\xf4" "\x9d\x7d\x01\xe1\xbe\xd6\xe7\x50\xd3\x5a\xe8\x6b\xbe\x12\x0b\xae\x82" "\x4a\x08\x91\x53\xf3\x95\xe8\xc4\x70\x2a\xde\xb8\x3e\xad\xa5\xc9\xea" "\x67\x8c\x64\x9f\xd8\x86\xf5\xe4\x11\x73\x32\x7c\x47\x23\x6e\x7d\xde" "\xe0\x54\xbd\xaf\xe3\x6b\xcf\xee\x9a\xd6\x29\x09\xfd\xc5\x3c\xdd\xf2" "\xb4\x0d\x0b\xe6\x8a\x91\xd7\x74\x30\x5e\x43\x59\x70\x1a\xaa\x95\xd4" "\x38\xcd\x4d\xd0\xb7\xbf\x4a\x3e\x38\xbc\xf3\x15\x8e\x71\xfe\xb4\x67" "\x93\xa5\xe0\xcd\xc8\xe2\x7e\x6d\xbd\x7f\x92\x21\x3d\x5f\xb3\x16\x5a" "\x68\xf4\x11\xc2\x24\x77\x47\x30\xe9\xf7\x45\xa9\xea\xca\xf3\x21\x73" "\xee\xbb\x19\x8a\x86\x43\xbb\xb9\x0c\x95\x47\xad\xf7\x4f\xa1\x3b\xf0" "\xd4\x8c\xa3\x36\x2c\xa6\x78\x8a\x90\xfa\x34\xaa\x05\x6e\xf8\xd3\xe4" "\x1a\xae\x3f\x35\x00\xad\xc5\x09\xfe\x10\x25\xbc\x31\xb5\x26\x62\x3a" "\x30\xc9\x7d\x55\x0c\x20\x08\xbf\x87\x98\x04\x2c\x0a\xed\xf3\xb3\x06" "\xd4\x09\x0a\xf1\x94\x45\x92\xa5\x79\x35\x39\xdf\x69\xcb\x33\xbe\xb4" "\x25\x49\x60\x2f\xc9\xf9\x8a\x9b\x9d\x7d\x41\x70\xeb\xc2\x10\xe6\x21" "\x79\x08\x83\x3c\x53\x25\xbc\xfb\x9c\x82\xb0\x70\x1c\xdb\x8c\x96\x53" "\xad\xb1\xda\x53\x1e\x7e\xe4\x02\x4e\xfc\x26\x04\x17\x72\xa2\x82\x87" "\x68\x4d\x19\xdb\x5c\xc1\x6c\xcc\x62\xb2\xa1\xb4\x64\x2a\x73\xf4\x4c" "\x75\x79\x76\x77\xf6\xa4\x90\x88\x8f\x47\x3c\x36\x31\x0f\x85\xf5\x1f" "\xf8\x34\x43\x45\x0f\x75\x33\x3f\x00\xa4\xa5\xdd\xc4\xa9\x0d\x06\x6a" "\x44\xfa\x3c\xf7\x63\xe6\x57\x65\xf1\x4d\x8e\x3e\x41\x7f\x1b\xd1\x9a" "\x64\x24\x48\x8e\x59\x12\xff\xb9\x84\x8b\x66\xfa\xf0\x5b\x73\x2f\x35" "\x69\xdc\x25\x4c\xab\x7d\xd2\xbe\xba\xac\x80\x96\x93\xf8\x30\x05\xed" "\x6e\x89\xf3\xf4\x9e\xca\xc1\x0d\xe6\xae\xa8\x59\x67\x5e\xad\x7c\xa6" "\xb6\x8a\xb6\x2a\x13\x24\x62\x7d\xc7\xeb\xfa\xb2\x41\x32\xe5\x9e\xb9" "\xc9\x12\xff\x2c\xde\x91\xfa\x32\x4d\x04\x88\x35\x0b\x7b\x6a\xf6\x18" "\x76\x90\x83\x52\x58\x54\x0e\x93\x41\xd0\xee\x1a\x86\x99\xa1\xf9\xb4" "\x00\x2a\x5e\x5c\x41\x9f\x75\xe5\x8f\x13\x23\x14\x15\xe0\x98\x7c\x9b" "\xb9\xde\xb4\x78\x0a\x88\x7a\x1e\xeb\x33\xe1\x38\xfb\xfe\x43\x63\xb3" "\x97\xac\x3c\x43\x3b\x77\xcc\xac\x37\xce\x6b\xad\x91\x01\xb9\x91\x9b" "\xf3\x95\x1a\xaa\x0e\x7c\x07\x9e\xde\xbf\xc1\x76\x33\xf1\x8d\x44\xfb" "\xbb\xaf\x85\xa6\xf9\x06\x88\x1b\x26\x5b\xab\x9a\xd8\x01\x2b\xe7\xdd" "\x4d\x6a\x86\xa4\x9d\xf7\x2d\x9d\x7e\xfa\xf2\xd9\x95\x93\x39\x5e\x81" "\x50\xf4\x0e\xa8\x92\x32\xf0\xa9\x74\x07\x2e\x96\x5d\xc4\x20\xfd\xf1" "\x38\xf7\xf8\xbe\xa3\x96\x3f\x95\xdc\xac\xef\x18\x94\x03\x3b\xd5\xa9" "\xf9\x54\xe1\xd2\x5c\xad\x40\xa6\x2f\x38\x2f\x22\x4b\x77\x14\xe3\xc5" "\x7b\xfc\x91\x23\x33\x14\xb3\x80\x2d\xee\xe3\x82\xdb\xbf\x80\xfc\x90" "\x71\x4c\x74\x1c\xe9\x41\x7d\xbe\xcb\x90\x39\xe9\x45\xf8\xed\xc6\x23" "\xca\x52\xa0\x95\x76\x89\x35\x10\x6b\x60\x75\x6b\xfe\x1f\x5d\xd0\xde" "\x74\x63\x6d\x04\x67\xd1\x46\x08\x30\x54\x2b\x86\x39\xbc\x1c\x5c\x60" "\x12\x85\x79\x50\x00\x3c\x2e\x60\x42\x04\xc8\xed\x67\x4e\x3e\xcb\x28" "\x4a\xa0\x87\x30\x8b\x21\xea\x6b\x4d\xf7\x99\x5c\x6e\xd8\xc9\x3a\xad" "\xd7\xc1\xcf\xbb\x0f\x4c\x6a\x9c\x04\x3f\x85\x56\xae\x2b\x79\x6e\xc1" "\x97\x7f\x98\x1c\xdb\xd4\xc1\xb2\x45\x43\x29\x7e\x7c\x0a\xf2\x5a\xa0" "\x12\x01\x0e\x9e\x6f\x50\x32\x64\xe8\xdf\x55\x54\x26\xb6\x17\xce\xea" "\xf7\x53\x65\x48\xd9\x83\xab\x89\x7a\x7e\x0a\x5c\x82\x1e\xa4\xef\xbe" "\x42\x6c\x20\xaa\xa5\x42\x27\x0d\x0d\xd6\x92\xa5\x90\xe2\x30\xc2\x44" "\xa8\x81\xb8\x83\xb6\x1e\xc3\xba\xd1\x4d\xbe\xe6\xcb\xa1\x7f\x81\xf4" "\xfd\x56\x29\x0d\x3c\xa1\x24\x37\x8a\x72\xad\xf8\xad\x9f\x9e\x2a\xf3" "\xc6\xe2\x99\x87\xde\xcb\x12\x5a\x74\xa7\xc6\xe2\xbb\xa7\x24\x4f\xc7" "\xeb\xc3\x93\x96\x3b\xe4\x06\x2a\x57\xec\x92\x10\x91\x9d\x86\x77\x29" "\xce\xb6\x4f\x7d\x54\x0d\x1d\x5d\x82\xbc\xce\x83\xcf\xfc\x52\x68\x01" "\x43\x5f\xfe\xe0\x20\x5a\x18\xca\xf3\xcf\x71\x6a\xeb\x28\xd8\x5c\x59" "\x51\xdd\x18\xd7\xcf\x8b\xf5\xe1\xe8\x3f\x84\x86\x5e\xbf\x6e\x65\xbd" "\xc7\x5a\xda\x2f\xdd\xb2\xc0\x66\x20\xf1\x55\x95\x63\x32\x63\xa2\xe0" "\x53\xa8\xa3\x6e\xa8\x0c\xae\x0a\xb1\x3e\x5a\x96\xcb\x34\xf8\x13\xbf" "\x46\x6a\xeb\x6a\x9e\x8f\x7b\x70\xdf\x5e\xd5\x63\x51\x8b\x96\xcd\x25" "\x3a\x4a\x59\x0b\xbc\xf2\x1c\xdb\xc7\xc0\x27\xce\xc6\x4a\xfd\x15\xe5" "\x2a\xa9\x7f\x8a\x68\x90\xe2\xfd\x95\x35\x45\x72\xc4\x37\x1f\x6e\x0d" "\x8b\x58\x8c\x7e\xcb\x83\x2d\x29\x11\xf2\xbf\xd0\x34\x07\xc0\x1d\x6d" "\xc5\x75\x7e\xd6\x8a\x6a\x03\x73\x97\xcd\x7d\x0e\x1d\x39\xb6\x44\xac" "\x7b\xf2\x86\xb3\x4c\x61\xb8\xb6\x05\xe4\x75\x22\xd2\x12\xa1\xf7\x47" "\x12\x51\xff\x62\x7a\x93\x5d\xae\xa7\xae\xd0\x47\xa6\xbb\x41\x8c\x03" "\xe4\x1e\x67\x48\x97\xda\x32\xd9\x9b\x69\xc9\x59\xa0\xa9\x56\xf7\x8b" "\x7c\x78\x74\x15\x40\x1e\xda\x1f\x35\xce\xd6\x61\x90\x5a\xdb\xe1\x66" "\x6a\x92\x8f\xd1\x56\x49\x79\xa3\x5b\x2d\x39\x62\xd5\x51\xc1\xce\x5d" "\x44\xf3\x62\x71\x55\xfc\x5b\x3a\x1b\xe4\x31\x8e\xcc\x41\x22\x2c\x71" "\x2f\x56\xd2\x76\xd8\x00\xa8\xf6\x5e\xad\xa3\xac\xd0\x39\x82\xf7\x05" "\xf9\x70\xfc\x7d\xdb\x12\x33\xae\x5e\x2c\x2e\xf2\xbb\xdf\x37\x80\xee" "\x8b\x42\x87\x8d\xdf\xfd\x21\x52\xa6\x08\x3c\x75\xbf\x55\xb7\x2d\x09" "\x54\x07\xef\xb7\xdc\xcd\xca\x55\x6a\x5b\xc6\xff\x8f\xb7\x13\x35\xff" "\x8d\x94\x4e\xd3\xa7\xd8\x2f\xf9\x82\xc6\x21\x20\x11\xc7\xc6\x1c\x47" "\xd4\xfa\xeb\x18\x59\x81\x11\x57\x2f\x60\x5b\x66\xd4\x9d\x00\xb3\xb6" "\x66\xb8\x08\x25\x9b\xf6\xdb\x62\xd3\xb4\x87\x4a\x98\x19\xea\x93\x8c" "\x6f\x60\xba\xeb\xea\xde\xfc\xe1\x1d\xf2\x05\x23\xe6\x28\xa5\x24\xd6" "\xde\xd1\x61\xbd\xd2\xf6\x0a\x67\xe5\x2e\x4f\x20\xe2\xb9\x80\x11\x1d" "\xaa\xf4\xd6\xc1\xdb\x53\x57\x6a\xc1\xd5\x99\xa6\x59\xbe\xc0\xe6\xcf" "\xcd\x66\x5d\xd3\xab\xe6\xbe\x27\x8e\xcf\x1e\x22\xf9\x94\xe2\x5d\x07" "\x93\x7c\xee\x04\xa1\xff\xe9\x0b\xd9\x20\x1d\x91\xde\x25\x53\x5d\x67" "\xd7\xa5\xd1\xac\x8b\xc0\x58\xaf\xe3\x8d\xc4\x6a\x6c\xa2\xb7\xf4\x67" "\xdc\xae\xdc\x5c\xf4\x95\x72\x00\xd6\x4d\x9c\xc0\x58\xe3\xbf\x24\xba" "\xe9\x15\x1c\x0a\x4f\x60\xa5\xfb\xc2\xff\x1d\xf7\xa4\x42\x72\x6b\x73" "\xa0\x6b\x00\x70\x48\xe8\xa2\xec\x1c\x4c\xa7\x75\x37\x4e\xfa\xa6\xe3" "\x8f\xf2\x10\xa3\xc3\x97\xe6\x73\x98\xdd\x2e\x97\xaa\x26\x63\x90\x34" "\xa7\x1d\xa8\x87\xf0\x88\x0b\xe1\x4d\xfc\x57\x21\xb9\x9d\x79\xbf\x5f" "\xba\x9d\x9c\xfc\x35\xa5\xdf\xdd\xf9\xca\x58\x03\x60\x83\xe9\x4e\x68" "\xed\x5b\x31\x47\xa4\x6e\xdd\x5c\xf2\xf1\xd3\xef\xcd\x46\x07\x90\x89" "\x0c\xaa\xf1\xd0\x8f\x76\x5b\xfe\xf6\xd4\x2e\x22\x63\x70\xc6\xa6\x3c" "\xa1\xec\xc4\xde\xe7\xca\xec\xfd\x80\x08\xbc\xb4\xb7\xb2\xb6\xd7\x82" "\x41\x5c\x9a\xf1\x64\x20\x7d\x3a\x21\x42\x1a\x44\x12\xf2\xf3\x1a\x70" "\x3f\x30\xc7\xda\xdc\x40\x73\x5f\x13\x81\x95\xe6\x77\x8e\xcc\x13\xcc" "\xe3\x8c\xdc\x13\xfb\x2d\x8d\xd5\x9b\xdd\x42\x0e\x67\x4c\xa4\xea\xaf" "\xac\x25\x65\xb6\x1f\xb1\xb6\xa8\xf6\x58\xa3\xbf\xe1\xa3\x18\xcc\xa3" "\xc2\xea\x41\x24\x94\xd3\xb4\x84\x71\x8c\xe4\x04\x4d\xa3\x13\x6c\xc5" "\x97\x76\x7a\x83\x39\xe7\x72\xae\x43\xf9\x8f\x2a\x1d\x36\xb1\xd2\x28" "\xeb\x05\xcf\xe2\x9f\x4b\x90\x8c\xb7\xa3\xaa\x32\x2f\xe2\x20\x8e\x7e" "\xd1\xdf\x22\x73\x2a\x72\xa4\x90\x3a\x8c\x91\x48\x3c\x4a\x6a\x73\x71" "\x1c\xa2\xcb\x22\xee\xc4\x83\x78\x0e\x63\xf7\x65\x09\xf6\x42\xd4\xe6" "\x07\xfd\x19\xa7\x1e\x18\x2f\x49\xa7\x5d\xd8\xab\x5a\x55\xb5\x42\x3e" "\xbd\xc2\xcb\xab\x0d\x8d\xf1\x87\x1c\xee\xd5\xba\x14\x22\x9a\x79\xd1" "\x52\x81\x3d\xdd\x55\xc7\xea\x9b\x3b\x29\xde\xbd\x8b\x4b\x2d\x4a\x15" "\xa8\x34\x41\xf8\x2a\x6e\x07\xb5\x2f\xba\x99\xb6\x47\x53\xe5\x5a\xa3" "\x65\x49\x95\x4d\x2b\xd5\xfd\xaa\x9e\x15\x1e\x44\x1f\x23\x18\x7d\x69" "\x8a\xb4\xa0\x50\x7e\x32\x22\x2b\x37\x79\xcb\x34\x1c\xd4\x6d\x43\x81" "\x4f\xd5\x9b\x23\x0b\x16\xbd\xa7\xdc\xb7\x89\xab\x3f\xfa\x3a\x43\xb6" "\x80\x63\xae\x40\xf9\xa1\x95\x3c\x90\xd9\x6f\x23\x98\x19\xe2\xab\xf6" "\x3d\x0a\x85\x31\x35\xa2\x3f\x03\x17\x26\xb7\x94\x73\x0b\xdd\x9f\xba" "\xa5\x12\x86\x5f\xd9\x1d\x4d\x9e\x9c\x61\xfa\x89\xe3\x61\x37\xbc\x43" "\x31\xbe\x7c\x94\x16\x7a\x17\x8b\x46\xf6\x0c\x5a\x25\x99\xab\x3d\x68" "\x99\x9d\x4c\x14\xd9\x1b\x1d\x4d\x9d\x5c\x1f\x71\x74\xad\x5d\xfe\x57" "\xa3\x94\x58\x98\x75\x3f\x0a\x58\xd6\xe8\x1d\x65\x08\xee\x98\x6e\xa4" "\x1f\xf5\x6c\xb4\x10\xee\x6b\x73\x46\x37\xb4\xc8\xdd\x24\xb8\xe2\x69" "\xd1\x29\x4a\xe4\x49\xc4\x18\xfd\x4f\xfb\x73\x61\x15\xa2\xa8\x3d\x1e" "\x57\xda\xca\x5a\xf1\x0d\xe7\x7d\x0c\xf0\xc1\xfe\xf9\x85\xe4\x46\x76" "\xe6\xf1\x08\xf3\xc8\x3c\xaa\x0d\x6e\xfb\xbb\x40\x83\xff\x26\x62\xcd" "\xfe\x16\x72\xaf\x39\xd2\xf7\x5d\x29\xd4\xe3\x3c\x97\xc3\xfe\xf7\x6e" "\x66\xc5\x82\x14\x2a\xf1\x88\x42\x7f\xfb\x4d\x99\xa7\xa1\x68\x37\x99" "\x76\x4e\x2f\x03\xf8\x47\x65\xac\xf8\xa1\x26\x0d\x56\xb3\x53\x55\xa3" "\x8b\x08\x35\xb2\x99\xd3\x4b\x34\xf9\x98\xbc\x01\xd4\x11\x33\xbc\x41" "\x01\x71\x28\x39\x2d\xad\xca\xcc\x52\x9b\x09\xff\xdc\x39\x7c\xf4\x34" "\x0a\x5a\xb7\xe8\x1f\x62\x37\x76\x45\x55\x76\xe8\x66\xdd\x97\x36\x79" "\x5c\x5f\x40\xa8\x0b\x52\xa4\xf5\xc0\x79\x27\xd8\x11\xf3\x4b\x2a\x4f" "\x65\x1b\x66\x77\x22\x09\x92\x0c\x49\x1f\xb7\x40\xa1\x1d\xfd\xae\x2e" "\x30\x00\x10\x7c\x33\x08\x3f\xb1\x0f\x62\x08\x37\x2a\xcf\x25\x16\xa4" "\x0e\x1d\xbb\xfc\x9d\xd3\x2f\xcf\x3d\xfc\xce\x8e\x9c\x81\x34\x9c\xa2" "\x88\x17\xd8\x6e\x56\xf3\x60\x30\x40\x91\x76\x90\xb0\xa4\x74\x38\xd2" "\x98\x17\xf3\x6b\x19\x0a\x25\x81\xe7\xa3\xfc\xea\x48\x95\xcb\xab\x6a" "\xd2\xac\xca\x08\x92\x52\xfd\xd2\xbf\xea\x22\x63\x75\x02\x89\x6e\x01" "\x1a\x88\xd2\x40\x3d\xed\x83\xf9\xa0\x67\xc8\x17\x23\x00\xe3\xcd\xd1" "\xf1\x0c\x5f\x3b\xe6\xd5\x12\x35\x21\x20\x5d\x86\x96\x6f\x00\x67\x7f" "\x5d\x58\x9f\x4c\xec\x57\x66\xc7\x44\x20\xcd\xe4\x2b\x88\xce\x09\x01" "\x18\x8f\xa3\x29\x52\xe4\x04\x27\x3f\x4a\x62\x61\x0e\x77\xe5\x72\x22" "\xe0\x0a\x56\xbd\xa0\xbc\x39\xc4\x8d\xe9\x6f\xbf\xb5\x4a\x6d\x8a\x25" "\x5e\xf9\xc7\x3d\x67\xef\xac\x6f\xa2\x3a\x76\x0c\x15\x53\xcd\xfb\x74" "\xbc\xbb\x51\xdd\x0f\x72\x7e\xa5\x8a\xae\xdb\xfa\xbf\x96\xdd\xdf\xc9" "\xce\xf2\xf8\x44\x27\x02\x68\xde\xee\xed\x15\xda\x52\x5e\x77\x5a\x49" "\xfb\xf5\xf6\xf3\x12\xfe\x20\xc3\xc2\x72\xa0\x8c\x91\x9a\x1f\x8f\x60" "\xe7\x63\x15\x6f\x63\xa5\x08\xec\x49\xa5\xd4\xca\x3d\x5a\x89\x99\x55" "\x25\x62\xc6\x05\x8d\x40\x4d\xb1\x30\x61\x9d\x21\xcb\x56\xbe\x4d\x2c" "\x60\x53\x2c\x48\xf5\xff\x3d\x5c\x86\x7c\xa6\x8a\x86\x00\x6b\x49\x22" "\xba\xcb\xc5\x98\xb4\x26\x7f\x6f\xc9\x78\x40\x85\x0f\xff\x30\x74\x96" "\x44\x1e\x54\x68\x47\xc6\x17\xf9\x4a\x22\x3c\x6d\xcd\xba\x2a\xa6\x6e" "\x7d\xd7\x1a\x0b\x92\xd0\x9f\x98\x8d\xc4\x42\xb7\x8f\x5b\x1b\x2a\x84" "\x87\x1f\x4b\x66\x69\x8c\xdc\xe0\x33\xf7\xa7\x65\x95\x33\x7f\x1e\x85" "\x7c\x31\x13\x18\x37\x49\x47\xa9\x93\x4c\xa5\x31\xb1\xc1\x4d\xf7\xa6" "\xed\x0f\x59\xfc\x97\x06\x46\x86\xe3\x7e\x1f\xb4\x2a\x2a\xc8\x98\xdd" "\xbf\x68\xb1\x76\x34\x09\xbd\x6f\xb6\xdc\x8f\x72\x03\x21\xf5\x83\x1a" "\xef\x84\x02\xe9\x61\x06\xac\xe1\x4b\xf8\x2c\xcc\x33\x37\xc1\xc9\xbc" "\xe7\xf9\x08\xa5\xb8\x14\x1d\x4f\x66\x36\x27\x8d\x17\x90\x14\xc7\x7b" "\x33\x45\x77\xd4\x2d\x28\xee\xa6\xf4\x86\x80\xed\xf2\x06\x5c\xc0\xc3" "\xb0\x66\xc8\xc0\xd9\xcb\xb3\x01\xa5\xb0\x10\xa8\xf9\xd6\x09\x8c\x18" "\x9c\xc5\x4f\x22\x18\x0a\x3f\xff\xa2\xed\xe4\x83\x41\x17\xe1\x8b\x85" "\x3a\x83\x38\x76\xee\x60\x97\xc7\x64\x2a\xa9\x3a\x03\xe0\xca\x23\x87" "\xa8\x4d\x0f\x0d\x11\x89\xb3\x5e\x9f\x9d\xfb\x77\x56\x46\x90\x3b\x33" "\x29\x70\x97\xbf\x9d\x49\x42\x21\xc3\x64\x1d\xde\x22\x3c\x7e\xf7\x7b" "\xd9\x2b\x1f\x7e\xe4\xfe\xff\x19\x95\x03\x71\xda\x95\xe0\xb7\x53\x69" "\x85\xf2\x41\x0a\xee\x2b\x0e\xe6\x4c\x60\xae\xb9\xe1\x6e\x40\xd9\x80" "\xe8\xe9\x13\x14\xe1\x6f\x9e\x28\xed\x96\x4d\x8b\xd2\xe8\x21\xa1\xc9" "\x77\x0f\xe4\x63\x2a\x4a\x11\x41\xb6\x8b\x72\x70\xe7\x90\x6b\x97\x5e" "\x8d\xc7\xd1\x5a\xc9\x72\xc3\x06\xb0\x59\x0d\x4c\x73\xb2\xef\x7c\xbb" "\x58\xab\x00\x51\x15\x05\xd8\xe3\x2b\xc7\xe8\x48\xba\xc8\x99\xbb\x4e" "\x9a\x4d\x40\x99\x8e\x0e\x96\xf7\x2b\x57\xb7\xfa\x4c\x42\x1e\x33\xb2" "\xe8\xe5\xe9\x99\x19\x31\xf3\x06\x04\x82\x87\xfa\x44\xb0\xeb\xfd\x15" "\x6c\xec\x56\xc2\xd4\x83\x6a\x21\xe4\xd5\x66\x2e\xe6\xbb\x0a\x02\x06" "\xa9\x6a\xf3\xa8\x0d\x80\x2b\x41\x4f\x49\x03\xf9\x7f\x23\xef\x4f\xae" "\x51\x45\x7b\x98\xf4\x8b\xaf\x84\x15\xf5\xee\x00\x4a\x4b\xa6\xa8\xad" "\x1b\x16\x2e\x0d\xe1\xa6\xaf\xdf\x8a\x73\xba\x12\xc1\x89\x79\x33\xdf" "\xfc\xa1\xed\x8f\x6c\x7b\x6c\x4d\x76\x88\x5f\x07\x63\x4c\x6e\x9e\x2c" "\x42\x74\x47\xc5\x60\x5d\x1f\x4c\x11\xd1\xb5\xcf\x98\xfd\xa7\x07\x8b" "\x77\x55\xbc\xb2\x47\x87\x96\xc8\xb2\x6d\x98\x6f\x34\x11\x98\x6d\x4b" "\xa6\xa7\x16\x21\x6d\x79\x43\x01\xb8\xa1\x43\xe7\xad\x15\x34\xc3\x1f" "\x7e\x41\x09\x0d\x6c\xf9\xd9\x52\x78\x0d\x5e\xba\xd5\x8a\xd7\xaa\x66" "\x67\xa5\xb6\x03\x7c\x8e\xb7\xa0\x80\x6c\xef\x0f\xa1\x44\x84\xaf\x3c" "\x26\xf1\xd5\x5c\xb9\xb5\x3a\xdc\x83\x76\x2f\xa3\xb1\x35\xaf\x26\x2f" "\x09\xc4\xc1\x15\xc5\xc8\x6c\xdc\x97\x75\xd8\x9f\xd1\x3a\xbc\xb4\x8c" "\x5e\xca\x23\x57\xd7\x6f\xfc\x4a\x06\x1b\xa2\x30\x07\x3e\x78\x87\x30" "\xe1\xd8\x1a\xca\xc9\x55\x8a\xe7\xe3\x5b\x3c\x7f\x8c\xd8\x1c\x01\x02" "\x15\xb1\x46\x8a\xbc\xca\x7c\x64\xb1\x55\xfe\x25\x77\x24\x5c\x2a\xc6" "\x83\x88\x7d\x77\x5d\x5b\xe8\x83\x61\x1f\xad\x0c\x81\x64\xfc\x52\x66" "\xa2\x48\xcd\x8a\xba\x7c\xe9\xff\x55\x64\xf3\xec\xaa\x18\xce\x23\x39" "\x50\xf0\x14\x86\xf4\xb3\xb2\xdd\x02\x9c\x41\xaa\xe6\x8f\x7d\xec\xe7" "\xb5\x98\xcb\x5e\x17\x14\x3f\xda\xaf\xdd\x8d\xcb\xbf\xb3\xfc\x1c\xdc" "\xb7\xd9\x85\xe4\xea\x71\x19\xb2\x00\x7f\xf7\xd4\x01\x45\x8b\x63\x94" "\xe6\xa9\x82\x38\x87\x99\x47\x9f\x85\x38\x52\x1b\xee\x5d\x54\x13\x57" "\x40\x5f\xc3\xad\xfb\x87\xeb\x36\xdd\x25\x99\x31\x02\xde\x74\x7b\x35" "\xb4\x65\xfb\xb1\x39\xc8\x74\x89\xcf\x0e\x2d\x5c\x20\x9a\xda\x58\x46" "\x16\x59\xa9\xbb\xd2\x7e\x22\x3d\xd7\xc2\x2e\x5c\x83\x73\x64\x57\xdb" "\x2a\xbd\x41\xac\xfb\x50\x7c\x1a\x69\x59\x98\xe3\xf5\x59\xc2\x4d\x98" "\xc6\xfe\x6c\x1a\x2d\x26\xc8\xbb\x80\x4b\x90\x77\xb7\xee\x54\x92\xc0" "\xc6\xd9\x50\x75\xfa\xb5\x2d\x90\x22\x13\xb1\x62\xcc\x21\xcc\x6e\xc4" "\x78\x4c\xe6\x84\x79\xe3\xa6\x8e\x18\x16\x6d\x54\x79\xfc\x5a\x3b\x98" "\x8b\x5d\xe4\xb9\x5b\x48\x49\x92\x2a\xbe\x6f\x0b\xb5\xfa\x7f\x82\x76" "\x5b\xf0\xbe\x67\x2a\x77\x0f\x6b\x56\x23\x35\xbd\x67\x76\xec\x30\xe3" "\x72\xb3\xda\x33\x20\x09\x56\x4e\x4c\xd2\xf7\xc7\x9c\x87\x09\xc0\x54" "\x10\x94\xc9\x34\x02\xd0\xcc\xcf\x13\xcd\xb7\x0b\x99\x49\x36\x57\x1b" "\xd9\x66\x4f\x7d\xe4\xc7\xc9\x5c\xb2\x44\xe0\xaf\x44\x56\x18\x20\x38" "\x3e\x28\xd4\x3f\x4e\xdd\xfb\x6c\xa5\x9b\x58\x90\x44\x33\xcf\x17\x7a" "\xf6\x4b\x8f\xf7\xb5\xce\x0e\x8c\x1c\xcd\x11\x40\xb3\xa4\x9c\x95\x36" "\x0d\xaa\xe0\x8a\x66\x71\x6b\x5e\x63\xec\x7c\x0c\x41\xee\x9c\x4e\x37" "\x17\x51\xca\x67\x0e\xee\xc7\x2d\x5a\x8f\x3a\x59\xc4\x59\x50\xfd\x21" "\xd8\x6c\xa1\x13\xf7\xff\x80\x6b\x5a\xcc\x75\x48\x82\x47\x59\x0c\x70" "\xc0\x64\xea\x11\xa6\x27\xc8\xbf\xd4\x75\xb6\xdb\x77\x37\xc8\xe7\x3a" "\xed\xc5\x39\x33\x2f\x8c\x90\xe3\xc6\x51\xf5\x0d\x59\x25\x60\xf4\xc4" "\x57\x96\x0a\xb7\x34\x5a\x57\xe0\x66\xd8\xf8\xc4\x25\x69\xa0\x88\xad" "\xf6\xe5\x4b\x7e\xec\xe3\xf5\x61\xb8\x27\x53\x1c\xee\x0c\xab\x06\xd9" "\x48\x5d\xa1\x02\xe2\x92\x25\x61\xa1\xba\x81\xfc\x08\x73\x37\xee\xdc" "\x3d\xbc\x4d\x9f\x25\xbd\xcb\x53\xa3\x4d\xd9\x8d\xd2\xbb\x06\x68\xa7" "\x91\x64\xb0\x5c\xc6\xb9\x03\x1f\x1c\x01\x68\xd5\x73\x5a\xb0\x83\xff" "\x05\x13\x90\x3f\xd4\x1a\x87\xb1\xaf\xda\xd2\x71\xe3\x59\x4b\x49\xea" "\x98\xac\x8f\x5d\xa9\x50\xad\x07\x84\xfc\xf9\x26\xd1\x61\x48\x1e\x86" "\x1d\x7c\x71\x61\xaa\xdb\x70\x9d\x0a\xd0\x81\x43\x69\x63\x6c\x8e\x2e" "\x8b\xd5\xb0\x56\x98\x87\xf8\xd0\x9b\x2a\xcc\x11\x91\x1d\x71\xe2\xe9" "\x8e\xc9\x0f\xb7\x9b\x8b\x5c\x88\x44\xc1\x9d\x5a\xa5\xf6\x7a\x59\xd4" "\x44\x72\xaf\x41\x4c\xb4\xf3\x85\xb1\x79\xf8\xd7\xc3\x3b\x22\x14\xf3" "\x92\xf5\x2e\x41\xa9\x13\x7e\xed\xc3\x5f\x3f\xe3\xaf\x8a\xbc\x26\x08" "\xb4\x00\x51\x20\xcb\x01\xda\x72\x45\x29\xb2\x73\xa9\xb5\x6d\xd6\xf2" "\xd4\x8a\x49\xa3\xb0\x38\xa9\x67\xfa\xd7\xb8\x5d\xfd\x1b\x13\xb7\x23" "\x84\x00\x3f\x99\xef\x34\xf3\x88\x72\xd1\x92\x92\x92\x51\xbd\xad\xd2" "\xab\x07\x78\x39\xb2\x26\x60\x92\x29\x52\xb4\x8a\xf3\x03\xa7\x99\x7b" "\x5d\x9e\x35\x90\xf0\x86\x75\x46\x3d\xba\xec\x4f\x05\x85\x2d\x4e\x84" "\x34\xe2\x1c\x28\xa3\x85\x14\xf7\x3f\x2d\xa3\x89\xd0\x53\x08\x5c\x3f" "\xa2\xbd\xe6\x70\x10\x10\xee\x45\xfc\x7c\x13\xc8\x13\x62\x1c\xf3\xc0" "\x5a\x5f\xf9\x25\x61\x53\x19\x4f\xc6\x08\xa5\xb5\xb7\x90\xfc\xb2\x63" "\xf8\x0d\x7f\x19\xb6\x5f\x9d\xf8\x78\xdf\x4e\x01\x9b\x72\xc7\xcb\xb0" "\x25\xcd\xce\x11\x8a\x65\x91\x3e\xa0\x04\x6c\x93\x38\xbc\xa9\xc1\x43" "\x9f\xc6\x3c\xb2\x71\x5b\xb2\x79\x29\x51\x6a\xbe\x9e\x1d\x48\xcd\x98" "\x6a\xc3\x0b\x8a\x77\x17\x2f\xe9\x9a\x64\x0c\x19\xcf\xc7\x48\x25\xe9" "\x77\xd4\x67\xdb\x14\x07\x93\xad\xcb\x1b\xad\x42\x6d\x81\xdb\xd9\x0d" "\x61\x9e\x34\x65\xda\xd0\x48\xc4\xfe\x30\xf2\x80\xcd\x59\xd1\xad\x7a" "\xdd\x9a\xc1\xfc\x14\x43\x7b\x8f\x0d\xba\x3a\x4d\xe8\x58\x05\x57\x16" "\xc4\x5e\xc5\x41\x0f\x60\x1f\x17\x36\xf9\xb6\x5b\xbc\x15\xd9\x39\x0b" "\xd0\x7d\x5d\x03\x64\xac\xb0\x1f\xc9\x5e\x49\xeb\xb2\xd1\x89\xac\x25" "\xcf\xd0\xf6\xef\x3f\x08\xc9\xee\x9b\xc9\xee\x33\x53\x48\xab", 8192); *(uint64_t*)0x20000a40 = 0; *(uint64_t*)0x20000a48 = 0; *(uint64_t*)0x20000a50 = 0; *(uint64_t*)0x20000a58 = 0; *(uint64_t*)0x20000a60 = 0; *(uint64_t*)0x20000a68 = 0; *(uint64_t*)0x20000a70 = 0; *(uint64_t*)0x20000a78 = 0; *(uint64_t*)0x20000a80 = 0; *(uint64_t*)0x20000a88 = 0; *(uint64_t*)0x20000a90 = 0; *(uint64_t*)0x20000a98 = 0x200005c0; *(uint32_t*)0x200005c0 = 0x92; *(uint32_t*)0x200005c4 = 0; *(uint64_t*)0x200005c8 = 0; *(uint64_t*)0x200005d0 = 4; *(uint64_t*)0x200005d8 = 0; *(uint64_t*)0x200005e0 = 0x20000; *(uint64_t*)0x200005e8 = 0; *(uint32_t*)0x200005f0 = 0; *(uint32_t*)0x200005f4 = 0; *(uint64_t*)0x200005f8 = 4; *(uint64_t*)0x20000600 = 4; *(uint64_t*)0x20000608 = 3; *(uint64_t*)0x20000610 = -1; *(uint64_t*)0x20000618 = 0x800000000; *(uint64_t*)0x20000620 = 0; *(uint32_t*)0x20000628 = 0; *(uint32_t*)0x2000062c = 0; *(uint32_t*)0x20000630 = 0; *(uint32_t*)0x20000634 = 0x2000; *(uint32_t*)0x20000638 = 0x80000000; *(uint32_t*)0x2000063c = 0; *(uint32_t*)0x20000640 = r[2]; *(uint32_t*)0x20000644 = 0; *(uint32_t*)0x20000648 = 0xfffffffe; *(uint32_t*)0x2000064c = 0; *(uint64_t*)0x20000aa0 = 0; *(uint64_t*)0x20000aa8 = 0; *(uint64_t*)0x20000ab0 = 0; *(uint64_t*)0x20000ab8 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x20008a40, /*len=*/0x2000, /*res=*/0x20000a40); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul, /*prot=*/7ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=*/0x32ul, /*fd=*/-1, /*offset=*/0ul); loop(); return 0; }