// https://syzkaller.appspot.com/bug?id=96d81eea9357d2270c67560290a1de5f081bf98e // 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, FUSE_SYNCFS = 50, FUSE_TMPFILE = 51, FUSE_STATX = 52, 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; struct fuse_out_header* statx; }; 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; case FUSE_STATX: out_hdr = req_out->statx; 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) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } 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[4] = {0xffffffffffffffff, 0x0, 0x0, 0x0}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: memcpy((void*)0x2000000020c0, "./file0\000", 8); syscall(__NR_mkdir, /*path=*/0x2000000020c0ul, /*mode=*/0ul); break; case 1: memcpy((void*)0x2000000005c0, "/dev/fuse\000", 10); res = syscall(__NR_openat, /*fd=*/0xffffffffffffff9cul, /*file=*/0x2000000005c0ul, /*flags=*/0x42, /*mode=*/0); if (res != -1) r[0] = res; break; case 2: memcpy((void*)0x200000000000, "./file0\000", 8); memcpy((void*)0x200000002100, "fuse\000", 5); memcpy((void*)0x200000000080, "fd=", 3); sprintf((char*)0x200000000083, "%023llo", (long long)r[0]); memcpy((void*)0x20000000009a, ",rootmode=0000000000000000040000,user_id=", 41); sprintf((char*)0x2000000000c3, "%020llu", (long long)0); memcpy((void*)0x2000000000d7, ",group_id=", 10); sprintf((char*)0x2000000000e1, "%020llu", (long long)0); syscall(__NR_mount, /*src=*/0ul, /*dst=*/0x200000000000ul, /*type=*/0x200000002100ul, /*flags=*/0ul, /*opts=*/0x200000000080ul); break; case 3: res = syscall(__NR_read, /*fd=*/r[0], /*buf=*/0x200000004140ul, /*len=*/0x2020ul); if (res != -1) { r[1] = *(uint64_t*)0x200000004148; r[2] = *(uint32_t*)0x200000004150; r[3] = *(uint32_t*)0x200000004154; } break; case 4: *(uint32_t*)0x200000000240 = 0x18; *(uint32_t*)0x200000000244 = 0; *(uint64_t*)0x200000000248 = r[1]; *(uint32_t*)0x200000000250 = 7; *(uint32_t*)0x200000000254 = 0; syscall(__NR_write, /*fd=*/r[0], /*arg=*/0x200000000240ul, /*len=*/0x18ul); break; case 5: memcpy((void*)0x200000000100, "./file0/../file0/file0\000", 23); memcpy((void*)0x2000000000c0, "./file0/../file0/file0\000", 23); syscall(__NR_rename, /*old=*/0x200000000100ul, /*new=*/0x2000000000c0ul); break; case 6: memcpy( (void*)0x200000002140, "\x73\x93\xbf\xe0\x30\x28\xd5\xb5\x52\x5b\x9e\xb8\xe9\xec\xda\x21\x19" "\xeb\x04\x8b\xbd\xd1\xa3\x4e\x1a\xa5\x06\xc5\x34\x1e\x64\x01\x8b\x1e" "\x92\x58\x21\xc6\xba\x37\x8e\xb8\x43\xc3\x17\x28\x71\x02\x30\x49\x36" "\x0a\x51\x46\x02\xfc\xe5\x4f\xee\x00\xe0\x40\x84\x91\x42\xed\xfd\x9b" "\x86\xc8\xe9\x65\x50\xf5\xd3\x4f\xed\x20\x5c\xbc\xf8\x07\xf6\xbc\x71" "\xbd\x8c\x4d\xce\x58\xc5\x3d\x2b\x77\x7f\x80\x89\xd5\x44\x43\x9b\xb7" "\xbe\xed\x38\x45\x1b\xf6\x8b\x4e\x9d\x8c\x2c\x81\x7f\xd2\x85\x44\x97" "\xb3\x18\x0b\xec\x65\x79\xaf\xc4\x67\xc5\x37\x3d\xbb\x0c\xa3\xb8\x18" "\x94\xac\x2c\x03\x54\x92\xeb\x7f\xd7\x3e\x40\x42\xeb\xfc\x00\xb9\x9a" "\x07\x8f\x61\x29\x4b\x6d\xe5\xe0\xd3\x88\x54\x8b\xed\xae\x03\x14\xf9" "\x6a\x0b\x53\x23\x53\xfb\x23\x88\xb8\x16\xaa\x41\x2d\xa2\x3e\x87\xdb" "\xb7\x51\xc8\x56\x5c\xd7\xa8\x23\xa0\xf9\x90\x83\xee\x14\xf5\x6f\xb4" "\x71\x1c\x8a\x7f\xe9\xfd\xa1\x98\x9c\x44\x0e\xbb\x21\x7c\x8a\x0f\xfd" "\xcb\xd6\x3c\xab\xf0\x83\x10\x5c\xf9\x15\xea\x4e\xe7\xde\x1d\x14\x3a" "\x56\xed\xa0\x92\x91\x99\x2e\x07\x63\x91\xfa\xe9\x78\x12\xf8\x52\xd7" "\xd8\xfe\x4d\x93\x92\x4b\xd9\x79\x08\x49\xe1\xce\x50\x28\x4c\x69\x0c" "\xe8\x4b\x38\xc1\x1f\x3f\xe3\x51\xd9\xb3\x49\x3b\x1e\xa3\x9a\x49\xad" "\x63\xd5\x16\x00\xa2\xa5\xad\x49\x1f\x7f\x36\x76\x40\xab\x10\x2c\x4e" "\x51\xac\xde\x3b\x18\x9b\x56\x7f\x4b\x1e\xb2\xd6\x99\xa8\xcd\xae\x5a" "\x01\xec\x22\x08\x32\x9c\xea\x05\x25\x1d\x19\x4e\xe9\x31\xf9\xa7\x91" "\xec\xbe\xfc\xa1\x8e\x41\x18\x27\xd4\xf4\xb8\x1b\xad\xc6\x45\xc6\xa2" "\x2a\xd0\x77\xed\x21\x19\x50\x41\x6f\x77\x32\x95\x0b\x7a\x03\xdd\x34" "\x59\x4e\xc7\xa5\xc6\x8f\xd8\x1f\x8a\x20\xcb\xf6\xfd\x71\xe4\x31\xd5" "\xee\xce\x65\xe0\x73\x2a\x5b\x03\x19\xfa\xe9\x9a\xfe\xd0\x0c\x40\x52" "\x4d\xb4\x3d\xdd\x67\x2e\x79\x57\xaf\x1f\x5a\xbc\x26\x8c\x0a\x01\xf8" "\x6b\xac\x16\xeb\x2e\xac\xce\x67\x92\x38\x47\x8f\xb9\x07\xd2\x02\xd0" "\xbc\xf0\x40\xef\xce\x81\x50\xa6\x67\x3c\x05\x34\xda\x30\xf8\x28\x65" "\x94\x15\x38\x36\x36\xea\xba\xa6\xc5\x73\x4c\x9a\x8e\x0d\x6e\x8b\x5e" "\x16\x05\x82\xbb\xe5\x0b\x49\x4c\x05\xdb\xec\x8a\x32\xf5\x5d\x17\xeb" "\x78\xfa\x76\x8b\x45\xfd\xa5\xee\x94\x2c\x46\xf3\x65\x9a\xb4\x49\x9b" "\x57\xd1\xea\x44\xd3\x38\x2f\x68\xc9\xfe\xe4\xb9\x47\xef\xfa\x62\x72" "\x1a\x5f\xa0\x83\x22\xe5\x0c\x0a\x10\x4a\x86\xd9\xb7\xdf\x19\xbc\x42" "\x55\xfe\x9b\xa3\x92\x72\xc8\x09\x19\x7c\xc8\x7c\xf3\x8f\xd7\x64\x40" "\xf3\xbd\x8c\x8f\xa9\xb9\x19\xc0\xcb\x98\xf5\x5f\xbc\xc1\x06\xc1\xbf" "\xb0\x57\xbd\x8c\x8a\x15\x32\xbe\x0d\xb6\x0c\x74\x2f\x18\x01\xb6\x0f" "\xb9\xea\x07\x2d\xea\x85\x8d\x89\x7b\x93\xc2\x76\xc2\x7d\xf1\xd9\xd7" "\xba\xc2\x73\x4f\xfc\x2c\xfa\x01\x13\xae\x16\xd1\x07\xb1\x51\x03\x98" "\x46\x79\xea\x1d\xf3\xe7\x4d\x6e\xa5\x71\x02\x50\x28\x63\x9b\xc9\x98" "\x6b\xe8\x06\x0a\x68\xdd\xb8\x49\x22\xba\x6a\x02\x00\x4e\xb7\xe7\x2d" "\xba\x3e\xbc\x66\xc1\xb4\xae\xed\x46\x07\xf8\x84\x21\xc7\xb9\x71\x91" "\x47\x20\x04\x2b\xfe\xc4\xeb\x72\x5f\xa5\xdb\xcc\x7a\xb3\xd9\xd8\x5a" "\xbe\xa9\xd8\x8d\x6a\xae\x36\xa4\xab\xd6\xd3\xfe\x4d\xa7\x3f\x18\x1e" "\xc7\x47\x3f\xde\x7c\xfa\x02\xcf\x79\xec\x81\x9c\xe7\xf3\x3c\xe4\x8e" "\xde\x43\xda\xa0\xfb\x6e\x28\x76\xb2\x68\x2b\x64\x2f\x3b\x39\x72\xe0" "\xf1\x02\x85\x5a\xf9\x26\x4e\x35\x49\x06\x95\x86\x91\xc1\x56\x87\x62" "\x58\x5d\xdb\x4a\x14\x9a\x89\x93\x9d\x97\x40\x3f\x5e\x71\xee\xd7\x9d" "\x96\x7a\x5a\xa2\x5b\x7d\x79\x5c\x0a\x08\x85\xc0\x70\x98\xb7\x50\xbe" "\x49\xc2\x83\x40\x7c\xb2\x68\xfb\x1e\x06\xb9\x3a\x4a\xd4\x69\x98\xa6" "\x40\xf7\x97\x38\xe7\xa0\x2d\xea\x86\xa4\x8c\xc6\x47\xca\xcc\x83\x55" "\xc3\x03\x19\x85\xa4\x93\x07\x00\x9e\xe8\xad\x30\xb5\xa9\x61\x99\x53" "\x58\xde\x5e\x21\x1d\x85\xff\xab\xd0\x06\x09\xe4\x4d\x2d\x65\x94\x49" "\x5b\x92\x63\x0f\x77\xcb\x53\xde\xb2\xc8\xfc\xcf\x5e\x0e\xb5\xb2\xf9" "\x17\x9d\x14\x4c\x02\x46\x67\x18\xa5\xae\xf8\xc4\x35\xdd\xc7\x52\xa5" "\x3d\xf4\xc2\x09\x9d\x2a\x5d\x8e\x1a\xb6\x9d\x51\xa2\xd5\x42\xd6\xe1" "\x34\xc2\x67\x52\x29\x1a\xb4\x52\xf2\xf0\x69\xc4\x04\xed\x71\xc0\x1a" "\xca\xa4\x43\xe2\x84\xda\x03\x98\x1e\x3f\xae\x89\x71\xdf\xc4\x5a\x00" "\xd3\x60\x48\xd9\x1f\xb6\xdf\x98\x38\xa4\x6b\x7e\xf7\x4a\x2b\xc7\xfa" "\x73\x0e\xea\x47\x05\x9c\x44\x41\x1f\xae\xb4\x08\x58\x9b\x6e\xe5\xdf" "\xae\x9f\x67\xc9\xff\x48\xf0\xff\x40\x5d\x1e\x56\x8b\xb5\x59\x1c\x58" "\xb8\x3a\x47\xf3\x9a\xe4\x09\x27\x46\xbe\xa9\x7d\xb2\xe4\x79\x17\xda" "\x0e\x6a\x59\x34\x79\x54\xe2\x75\xc1\x54\x07\x8e\xf2\x3e\xd8\x42\xb5" "\x0f\x27\xc5\x6d\x82\x5b\x29\x43\x9b\x6f\x9a\x11\xfb\x4f\xb1\xdd\xa5" "\x1f\xe7\x20\xc1\xdf\x60\xb1\x54\x8d\x03\x31\xeb\x54\x85\xd1\xed\x87" "\xa8\x03\x68\x48\xb4\xc9\x4d\xf7\x08\x8d\x91\x18\x51\x50\x57\x24\x7e" "\xb1\x8a\x44\x9c\x13\xd4\x2b\x5f\xdf\xe3\xbb\x77\x3f\x42\x41\x58\xc9" "\x52\x69\xf2\xae\xb2\xeb\x87\x6d\x9b\x52\x32\x48\x87\x87\x94\xa6\x6c" "\x8b\x88\x47\x28\x20\x01\x3e\x46\x9b\xcb\x68\x7b\xfe\xac\xcd\xe8\xb7" "\x2e\x67\x9d\x73\x59\xfd\xa4\x0b\xbd\xcb\x84\x3f\x25\x5c\xa9\x58\x44" "\x6b\xdf\xa7\x2d\xc9\xcb\xc3\x5b\xa8\x7c\x13\x38\xb7\xf2\x69\x56\xfb" "\x5e\x57\xb4\x8e\xa2\x93\x89\x1a\x4f\x20\x77\x5c\x01\xf9\x93\xce\x61" "\xf7\x67\x80\x74\x09\x35\x8f\xe3\x6a\xf3\xa6\x79\x7d\xef\xf4\x9e\xaa" "\xa0\x57\x2e\xbf\x75\x47\x51\xc5\x15\x10\x19\x85\x43\x34\x52\x13\x57" "\x2c\xcd\x61\x5c\x87\x36\x88\xe7\x4a\x8a\xa8\x03\xc5\x70\x34\x48\xba" "\xe1\xc1\x7d\x90\xb8\x08\xed\x6d\xa5\xbb\x78\x4c\x74\x40\xa2\x79\x4e" "\xbd\x66\xe9\x89\x84\x69\x4b\xf1\x4e\xf8\x45\x4b\x10\xc9\x72\xc0\xdd" "\x0c\x67\x28\x8d\xfb\x93\x68\x2a\xee\x00\x30\x3b\xc5\xd3\xe8\xa4\x16" "\x9e\xfa\xdd\xb8\xd9\x55\x20\x5c\x28\x9a\x2d\x61\x4c\x9b\x16\x65\xac" "\x64\x45\xcc\x71\x44\x56\x5a\x77\xea\xdb\x88\xb9\xd8\x43\x8e\x90\x5a" "\xa0\x21\xb7\x99\xae\x61\xfd\x99\x47\xca\xe7\xbf\xca\x97\x5f\x71\xe9" "\xf5\xd1\x7a\x1b\xb1\xdf\x2d\x7c\x33\x41\xff\x71\x09\x53\xd6\xb1\x1e" "\xa4\x00\xbf\x8e\xa2\xa9\x5b\xbc\x21\x36\x6a\x1e\xd0\x9d\x1d\x8b\x6c" "\x63\xdc\xfd\x8f\x45\xf2\x2b\xe6\xde\x89\x2a\xd0\xdf\x02\xe1\x37\x01" "\xea\x04\xe4\x51\x30\xa6\xc1\xae\xdf\x53\x1c\x26\xc4\xc0\x2f\x0e\x65" "\x69\x97\x62\xbc\x79\x13\x38\xef\xe0\x26\x64\x2a\x80\x1c\xf4\xe1\x40" "\xe5\x98\xc9\x2d\xd2\x55\x92\x0b\x26\x74\x00\x68\xfc\xbb\x0c\xee\xfb" "\x8e\x66\x58\x53\x77\x4f\xc3\x3f\xc4\xb1\xba\xca\xb5\xe0\x58\xb5\xeb" "\xe6\xf6\x12\x51\x7b\x12\x19\xdc\x10\xcf\x87\xf0\xd4\x10\x52\x04\x15" "\x75\xf3\x36\xe0\x88\x72\x17\xaf\xd3\xca\xc2\x12\x9c\xe1\x48\x9f\x15" "\x9d\x94\xe6\x07\x0a\x7f\xfa\xbe\xc4\x12\xdd\x4d\x41\xb9\x32\x3e\xe6" "\xe5\x3f\x50\x97\x46\x56\x59\x90\x42\xe7\x91\x59\x81\x36\xa8\xf4\xa2" "\x68\x71\xb9\xdb\x7a\xed\x2d\x4f\xde\xc0\xb8\x60\x16\xb5\x0d\x54\x44" "\xb8\x10\xff\x47\xcc\xa9\x1c\xda\x0a\xb2\x5b\x30\x0e\x25\x1b\xc1\xc4" "\xcd\x7e\x93\x16\x5d\x45\xd4\x17\xa7\x53\x62\x27\xd5\x5b\x86\x5e\x6a" "\x49\xa8\x86\xeb\x20\xf9\x5f\xb2\x12\x59\xc0\x67\x68\x78\xaa\x58\x8f" "\xa2\x91\x20\xf8\xf7\xcc\xb7\x88\x4f\xa0\xe7\x40\x78\x04\xde\x53\x0c" "\xcd\xff\xf8\xc1\xd9\x5b\x5d\xe0\x60\xac\x59\xd9\x80\x74\xac\x0a\x2b" "\x72\x87\x75\x80\xe2\xaa\x37\x4d\xfa\xf9\x78\x20\x2d\xf8\x62\x8b\x0d" "\xc7\x8c\x1f\x98\xff\xe0\x04\x27\x35\x90\x67\xd0\xef\xc6\x22\xa3\x16" "\x61\x9c\x58\x72\x54\x62\x91\x16\x34\xb0\x41\xa3\xcf\xc8\x29\x78\xc2" "\x2e\xb7\x8f\x6a\x49\x0b\x2c\x89\x40\x37\x4b\xe2\xdc\x0a\x61\x90\xf5" "\x15\x10\xf7\xa8\x11\x8d\xcd\xd1\x4d\x67\xcc\xc9\xbb\x66\xad\xba\xa0" "\xe7\x16\xd3\xf4\xa6\xaa\x97\x4a\xc6\x58\x57\x26\x56\x3d\x27\x80\xd5" "\xed\x24\x3d\xae\x1c\xe3\x8e\x18\x89\xde\xb8\x3e\x1e\x3b\xae\xc6\x5e" "\x13\x1a\xff\xf3\xac\x0c\xb2\x3c\x0c\x7d\x23\x07\x7d\x7c\x88\x76\x69" "\xe1\x60\xef\x8e\x83\x1e\xb8\xb1\xb1\x2e\x69\xd8\xac\x99\x6e\xc1\xe0" "\x79\x6f\x5a\x9f\xb8\xbe\xb2\x5b\x89\xd6\xb5\xf3\x51\xe8\xb7\x1c\xfd" "\xd8\xf8\x54\x23\xce\x21\x66\xab\x3e\xd3\x5f\x62\x00\x6e\xe3\xcd\xca" "\x8c\x09\xd6\x15\x57\xe5\x2f\x60\x0e\x5c\xc5\xb2\x5d\xdc\x87\x77\x49" "\xfa\x55\x65\xdd\xa1\x05\x49\x9a\x87\xdb\x9c\x1d\x09\x97\xd8\x16\x16" "\x72\x37\x15\x2c\xa6\x98\x46\xd4\xf3\xb4\xd2\x0e\x24\xce\x61\x34\xdc" "\xf8\xed\x83\x6f\xf0\x3d\x18\xc8\x51\xc1\x60\xc4\x4c\xdf\x2c\x6b\x4e" "\x9f\x36\x29\xe7\xc1\x0a\x97\x22\xb3\x49\x50\x6f\x77\x7a\x52\x65\xe4" "\x81\x92\xe4\x9e\x1b\x0f\x0c\x84\xe9\x11\x5e\x24\x84\x72\xc5\xd3\xcf" "\x64\x21\x03\x09\x73\x87\x9a\xdc\x6a\xc4\x21\xc1\x70\x11\x7d\xbc\x51" "\x78\x5e\x35\xa0\x3c\x3c\x21\x5b\xad\x93\x22\x2a\x99\xa0\x43\x44\x2a" "\xa2\x5c\x33\xc2\xac\x49\x7d\x36\xdd\x16\xe9\x69\x87\xdd\xc9\xef\x33" "\x9e\x70\xcd\x19\xde\x7c\xac\x9e\x6e\x6a\xf2\x38\x2c\x97\x63\x3c\x00" "\x93\x13\xfc\xb2\x7d\xd0\x7a\x76\x4c\xa7\x8f\x58\x11\x5b\x22\x78\xb1" "\x7b\xae\xd2\x1c\x01\x38\x09\x53\xd8\xb9\xed\x1d\xa8\xb6\x9d\x6a\x40" "\x71\x4b\x09\xdf\x1a\x10\x37\x32\x59\x00\x5e\x64\xec\x15\x45\xb5\x48" "\xbe\x73\x6b\x16\x03\x84\x86\xb5\x6c\xbe\x1c\x65\x67\x12\xf2\xc2\x38" "\x30\x3c\xae\x1e\x51\x73\x88\x68\x3b\xe2\x8b\xa1\xd9\x47\xfa\x09\x97" "\x10\xf2\xd5\x65\xf2\x56\x11\x3a\xbc\x91\xd7\x74\xd8\xf4\xa4\xc4\x55" "\x3d\xa3\xb9\xaa\xe0\x19\xf8\xcc\x41\x57\xfc\xdb\x50\xf1\xc3\x8e\x82" "\xc9\xf4\x14\x2a\xf0\x7e\x52\x8b\x54\xba\x1a\x83\x02\x49\xe7\x70\x5d" "\x6d\xcc\xc7\x58\x13\x38\xf1\xc7\x0a\x9b\xa9\x75\x77\x95\x87\x3c\xae" "\xca\x26\x3d\x61\x2f\xa8\x9d\x2e\x7e\x5f\x15\xa5\x7d\x5d\xdf\x74\x38" "\xf8\xbc\x11\x33\x9a\x1d\x3b\xa6\x48\xce\x0b\x15\x3d\xf5\x0e\x69\xc2" "\x29\x56\xaa\x8b\xf2\x7d\x37\xe2\xdf\x6f\x6f\xc9\x6d\x2d\xf9\xb0\xf3" "\xc8\xc3\xd4\x16\x62\x34\xee\x02\x54\x15\x1c\xb0\x64\x02\x32\x75\xb3" "\x1d\x2f\xe6\x84\x40\x23\x7c\x9a\x60\x8c\xe7\x2e\xf8\x98\x99\x04\x1d" "\x86\xff\x3c\x94\x6f\x05\x22\xfd\xaa\x8a\x20\x15\xdc\x0e\x53\x4a\xd1" "\xde\xd6\xbd\xc8\x12\x56\x9c\xd9\x97\xd0\xf5\x00\x00\xb9\xb6\xfc\x3b" "\xe1\x98\x3a\x32\x43\xe4\xa0\x6a\x3d\x6f\x4b\xa6\xba\xad\xb4\x94\xcd" "\x13\x0d\xc4\x06\xcd\x42\xdc\xd9\x1b\x01\x31\xb0\x4c\x5f\x45\x07\xb4" "\x4c\x9e\xd5\x49\x17\x66\xf3\x14\x3c\xba\x91\x54\x79\xfd\x0d\xee\xc7" "\xd6\x8c\x45\xb9\x7d\xcf\x4e\x42\x1b\x19\x79\xbd\x4c\x7d\xe6\xe6\x68" "\xe2\xc8\x87\x75\x77\xa9\x99\xde\xa5\x62\x62\x60\x8e\xfd\x85\xa8\x26" "\x7b\x9e\x0a\x5e\x44\xab\x95\x30\x76\x6b\x58\x35\x88\xf2\xf3\x98\x70" "\x62\xef\xdf\xc5\x27\x04\x20\x75\x48\xca\xcd\x65\xbd\xb1\xe1\x51\x12" "\xa0\x81\xa5\xc5\x58\x59\x57\xff\x25\xc3\x7b\xfa\xfd\x71\xa3\x87\x29" "\x1b\x1f\x27\x51\x2e\xc9\x2b\x42\xaf\xc2\xb7\xa7\x4d\x6f\xe9\xab\x0b" "\xd0\x30\xd2\x7c\x35\x8e\x0b\x9e\x9c\x62\x2c\xe0\x31\x87\x33\xf4\xcb" "\x1e\x27\x1d\x1f\x90\x60\xd0\x98\x82\xcf\x46\x54\x0f\x93\x5b\xeb\x0a" "\xc7\x73\xf1\x32\x66\x8e\x9a\x40\x79\xb7\x86\x86\x3c\xa5\x42\x26\x57" "\x8b\x0f\x97\xc7\xcb\x35\x42\x12\xd1\xb5\x49\xf8\xa9\x52\x85\xa1\x66" "\xf1\x35\xf8\x38\x45\xa1\xe8\xc9\x79\x8d\xf8\x36\xce\x2f\xc2\x81\xc6" "\x28\x1d\x22\xef\xde\xc0\x75\x9a\x78\xfd\xef\x04\x97\x6f\xf3\xf1\x65" "\xe1\xea\x5a\xa6\xda\x71\x7b\x20\x4c\x5c\xa4\xc5\x64\x22\xbd\xc0\x70" "\xc2\x7b\x74\xa5\xf7\x64\xa6\x11\x7b\xbb\x2b\x9c\x1e\x18\xe2\x54\xd0" "\x09\x35\x69\x72\x9a\xef\x6d\x76\x79\x5f\x46\x5c\x52\xa8\x93\x07\xb4" "\xfd\xc9\xd4\xb2\x5f\x00\xcf\x7a\xf2\x06\xa9\xc4\xf2\xea\xcb\x26\xcd" "\x43\x82\x2a\xb3\x23\x70\x08\x7a\xd9\x7f\x56\x7a\x51\x60\x7a\x98\x64" "\x39\x5d\x3e\xd4\x1d\x07\x01\xab\x3a\xc7\xdb\x14\xdc\x3d\xd0\xa1\xaa" "\x5f\x84\xf1\xe3\x17\x31\xc8\x3d\xe6\x13\xd5\x98\xa7\xd4\xfb\xd2\xb2" "\x81\x9a\x22\x38\xc6\x86\x68\x0d\x8b\x8e\x80\x16\x24\x31\x1c\xf7\x54" "\x96\x27\x36\x12\x83\x75\xbe\xbe\x12\x17\x85\xb4\x2b\x3a\x20\xc2\xd8" "\x9c\xa4\x88\x62\x33\xb9\x6a\x04\x8a\xaa\xcb\x4f\xb7\x40\x44\x4f\x9e" "\x62\xe1\x6b\x8e\x0e\x0c\x03\xe3\x92\x41\x26\x81\x1d\xd4\x40\xdd\xd4" "\xe4\x16\xf4\x5e\x76\x8d\x3c\x20\x89\x45\x5d\xc8\x1d\x03\xa7\x86\xdb" "\x89\x1a\xfe\x45\xec\x80\x12\x9d\x8a\x60\x28\xe3\xf3\x08\x6c\x9b\x39" "\x8f\x7d\xd6\xa2\x62\x74\xaa\xba\xa8\x59\xf2\xf8\xc2\xcf\x90\xe7\xd1" "\x0e\x8e\x64\x76\x97\x5b\x46\x66\x26\x59\x01\x31\x2f\x8a\x40\xf6\x1b" "\xe3\x63\xc3\x6a\xbd\xe9\xd5\xb2\x90\x86\x66\xb1\x2e\xee\x19\x7e\xe3" "\xe3\x18\xcc\x39\x16\x49\x3b\xe9\x4e\x46\x0d\x97\x8e\x28\xf6\xd3\x23" "\xa4\xb1\x7d\xc9\xba\x13\x14\x0a\x14\xae\x31\xdf\xba\x4e\xff\x67\x94" "\xf4\x85\xcf\xc9\xff\x82\x1e\x65\x0e\x13\x63\x64\xe2\x52\xe4\x28\x77" "\xb9\x1f\xc7\x7f\x3c\x80\x16\xac\x89\x45\x50\x7b\xa2\xc9\xa7\x94\x39" "\x23\xdf\x5c\xc1\x84\x18\x70\x09\x34\x90\x7c\x91\x5b\xe9\x9a\xac\xdb" "\x48\xda\xc7\x7c\x43\x68\xae\xbc\x58\xee\x5c\xa8\x27\xe9\x02\xd7\x6f" "\xed\x3b\x5d\x0d\xe5\x49\xe2\x14\x9d\x2b\x1b\x89\xe4\x45\xa9\x45\xea" "\x19\x74\xae\x5f\xf3\x57\xda\xe2\x0b\x98\x7c\x47\xed\xb0\x76\xd6\x74" "\x24\xe4\x69\x52\x2b\xfd\x32\x0b\x3c\xf8\xfd\xee\x96\xf3\xc1\x96\x3a" "\x81\x36\x83\x2d\xc5\x96\x1a\xf9\x02\x0f\x52\xf2\xcb\x56\x4a\xa3\x93" "\x49\xf7\x11\xe1\xfa\x66\x41\x8c\xd5\x85\xd9\x97\xe3\x0d\xb4\x06\x04" "\xd8\x05\x8b\x3c\x29\x44\xf2\xf9\xd1\x6a\x97\x6f\x68\x9f\xa9\x6d\xde" "\x35\xe0\x19\x23\x08\x68\x7b\x0f\x0f\x2d\xe7\x51\xfe\x13\x2f\xbe\xc9" "\x03\xbb\xc0\x85\x65\x1a\x1b\xf8\x29\x91\x04\xfe\xc8\xf3\xa1\x0c\x1c" "\x5f\x1a\x2c\x01\xd8\xc3\x3b\x77\xed\x59\x4d\xcc\x4f\x56\xa7\x60\x87" "\x7c\xb3\xfb\x46\x39\x03\x3e\xe4\x45\xec\x72\x70\x79\xa2\xdf\x4b\xe5" "\x72\x7e\x58\x45\xf1\x9c\xcf\x77\x8e\x90\x6c\x64\x23\x9d\xc0\xbd\x9e" "\x58\xe7\xc4\x4e\x7e\x04\x0c\xbd\x5c\x99\x4f\x97\xd0\xef\x47\x37\xac" "\x35\xdd\x4f\x49\x56\xf8\xb8\xec\x95\xd1\x94\x29\x8c\x00\x74\xd4\x06" "\x37\x2f\xba\x3f\x7c\x2b\x85\xad\x1b\x7c\x37\xb6\x5c\x8d\x23\x4e\x6e" "\xab\x9f\x00\xa9\x1e\x28\xde\xd5\x2b\xf1\x50\xec\x54\xd7\x5e\x40\xa3" "\x3f\xef\xeb\x43\x37\x6f\x05\xcd\xd4\x3a\x42\x2c\xb2\x5c\x53\x75\x71" "\x5e\x5a\xb1\xd7\x6c\x2b\xa5\x34\xbd\x31\x33\xcf\x87\xae\x19\x5c\xa4" "\xea\xe9\xef\xa1\x65\x9c\x1c\xcc\xcc\xd7\xbf\x49\x8a\x6f\xda\x2a\xf9" "\xe5\x2d\x5f\x42\xd1\x81\x77\x84\x6b\xb6\x90\x61\x27\xf3\x31\x96\xb3" "\x41\x83\xe1\xbd\xf5\xa0\xaa\xf7\x37\xd2\xb1\xfd\x51\x4f\x48\x2e\xba" "\xc4\x11\x35\xf7\xf5\xcf\xff\xe9\x60\xd0\x58\x8c\x18\x7d\x2f\xed\xcc" "\x8a\x41\x13\x16\xca\xa9\x5a\x16\x2a\xee\x61\xec\x06\x90\xd5\xbb\xf1" "\x53\xf3\x9f\x2b\x3b\x8e\x1c\xa6\x4a\x30\xf0\xbf\xee\xa2\x9b\x92\xf1" "\x83\x6d\xc0\x4a\x2f\x31\x6a\xd3\x38\x6e\xe1\xa2\x60\xa9\x5f\x30\x1b" "\x28\x63\xfd\xbf\x42\xff\x44\x58\x4c\x2e\x36\x22\xb1\x65\x4b\x06\xd7" "\x14\xb8\xd4\x84\x8c\x97\xcc\x5c\xe7\xed\x72\x4e\xfa\x93\xa0\x24\x38" "\x66\x85\x1c\xe3\xa5\x1a\x7f\xc3\x80\xfb\x2c\xa6\xf4\xa0\x73\x62\x1f" "\x13\x03\xa2\x6c\xa7\x71\xfc\xcf\x8d\xed\x81\x20\xa6\x5f\x53\xbe\xce" "\x07\x7c\x43\x75\xa2\x58\x29\xe7\x77\xd5\xc8\xb0\x0d\xef\xc4\xde\x92" "\xf0\x0c\xe2\x4a\xc6\xe2\xdd\xb3\x9b\x34\xfb\x1b\x9a\x74\x5a\x5d\x64" "\xb7\xe6\x88\x4e\xf0\x2b\xc0\x6c\xfd\x21\xc5\x74\x91\x05\x55\x27\xfa" "\xb7\x54\xfa\x00\xf2\x69\x4e\xbf\x1b\xd4\xa1\xd7\x21\x38\x2c\x1c\x75" "\xf3\x7d\xc0\xc0\xeb\xd0\x8f\x88\x86\xa2\x59\xaa\x89\xa6\x75\x98\x98" "\x25\x00\x95\x79\xe6\xb6\x18\xbf\x95\x74\x6b\xf9\x6d\x6a\xcc\x9c\xae" "\x12\x55\x36\x94\xd3\x4d\x13\xd3\x6e\x06\x63\x6c\xaa\x01\xbb\xae\xda" "\x1c\xef\x3f\x39\xab\x51\x49\xd2\xe0\x3a\xa9\x20\xea\x8c\xad\x56\x13" "\x04\xa7\x26\xd3\x23\x11\x59\xe4\x2e\x0a\x16\x42\xa5\x8d\x2c\x8e\xe0" "\x24\x64\x24\x1f\xaf\x47\xf0\x47\xc6\xa1\xc4\xd6\x11\xeb\xf9\x28\xe6" "\xee\x86\xff\xdb\x24\x38\x7c\xb2\x99\x0c\xc6\x2a\x41\x24\x25\xc9\x57" "\x88\x9e\x67\xc2\x5a\x82\x23\x35\x2a\x83\x11\x74\xeb\x58\xbb\x41\x2a" "\x82\x6a\xef\xd3\x44\x1c\x96\x28\x65\x00\x35\x3b\xfb\xb7\xf1\x87\x30" "\x1b\x06\xb2\xa6\xef\x24\x07\x35\xfb\x90\x5a\x50\x83\xda\xad\xc4\x2d" "\xa0\xe1\x95\x2b\x10\x8c\x6b\x7e\xd6\xaf\xb9\xf6\xa9\xaf\x60\xf9\xc8" "\x39\x2f\xfc\xcc\xfe\xac\x70\xc4\xc3\x2e\xfa\x9d\x80\xc0\x8b\x55\x97" "\x92\x43\xf3\x31\xcf\xf0\x24\x78\x3e\x1f\x35\x4f\x2c\xc0\xeb\x0a\x18" "\x95\x2f\xf0\x28\x36\x39\x53\x57\x56\x7a\x80\xe0\x8d\x18\xcd\x9f\x4e" "\x00\x87\x5d\x16\xdf\x5d\x90\xe3\x09\xbd\xde\x64\xcc\x79\xca\xa4\xa6" "\xfe\xc4\x12\x56\x99\x41\x00\x1f\xae\x63\x0b\x4e\x0d\xfe\x87\x75\x73" "\x6d\xac\x69\x55\x92\x7f\xf9\x1c\x88\xfb\x76\x60\xe1\xb9\x61\xb5\x15" "\xc4\xaa\xad\xb0\xf6\x1e\x6d\x74\x4c\xb9\xc2\xda\xa4\x0c\x6b\x76\xba" "\xd7\xf0\x2a\x61\x85\x24\x3a\x67\xaa\xcc\x46\x07\xac\x9a\xed\xff\xe6" "\x49\x21\xbc\x14\x74\xed\x7e\xfb\x2e\x33\xb0\x1b\x7f\x44\x3e\x85\xc2" "\x3f\xa9\xdb\xe4\x04\x57\xe1\xe0\x92\x48\x66\xba\x2d\x8e\x7d\xcd\xf4" "\x7d\x40\x31\xf1\xf7\x6f\x90\x7b\xb7\xa1\xcb\xbe\xbb\x3e\x4a\x3c\xf9" "\x68\x65\x0b\x6a\x91\xb5\x9a\xa3\xa6\xcb\xa2\x7a\x6b\xc4\x05\xe2\xbe" "\xf8\x32\x95\x9f\x95\x0c\x7f\x74\x85\x72\xb1\xcc\x39\xfd\x8d\xb3\x37" "\xfa\x81\x53\x4f\xa3\x9d\xa8\xaf\xa5\x94\xee\x01\xc5\x3d\xcb\x08\x52" "\xd9\x76\x1d\xdd\x95\x51\x10\x0d\xc5\xd1\x4c\x4b\xa4\x77\x79\xd9\xff" "\xbb\xbc\x88\xdf\x5b\x01\x4c\x5a\x21\x71\x42\xaa\x7a\x17\x70\xab\x28" "\xf9\xa3\x02\x35\x3a\xdf\x4e\xd0\x6e\x22\x5f\x15\xc6\xe3\xbe\x4a\x97" "\x96\xd6\x9b\x40\x5f\x05\x12\xd6\xde\x89\x25\x0c\x63\xe4\x95\x70\x97" "\xaf\x62\x8b\xd8\x15\xa9\x88\x4d\xeb\xf6\x9f\xb8\x46\x13\x35\xb0\x45" "\x68\x80\x4a\xdd\x11\x0c\x04\x84\x84\x7d\x20\xfd\x77\xd0\x1b\x36\x4c" "\x17\xfb\x93\x9f\x44\x1b\x62\xa7\x7e\x02\x21\xda\x56\x89\x42\xfd\x17" "\xcb\x96\x94\xe1\x2a\x5a\x2f\x06\x0b\x4d\xda\x08\x51\xee\x9b\xab\x7b" "\xf7\xa2\x5e\x49\xe5\xf1\x39\x07\xe9\xa6\x16\x27\x91\x8a\x95\xba\x66" "\xe6\x97\x5c\x28\x82\x4b\x98\xcb\x6d\xff\xf3\x41\xbe\x01\x94\xed\xf1" "\x4f\x98\xe0\xd8\xe8\x16\xc4\xa0\x34\x5a\x50\x25\x0f\xfc\x04\xff\x70" "\x93\xce\x32\x62\x86\x5e\x01\x6b\x87\x07\xe1\xff\xe0\x2e\x24\xf6\xb4" "\xaa\x95\xff\xc7\x65\x62\x68\xfe\xe5\x84\x3e\x79\xd0\x11\x74\xde\x0f" "\x47\x7b\x38\x79\x71\xf5\x21\x45\xa5\x62\x7a\x7c\x97\x5b\x04\x3f\x8e" "\x10\x41\x04\x76\xda\x3f\x2d\x69\x01\x33\xc8\xc5\xd0\xe0\x24\x60\xd6" "\x48\x54\x66\x82\x59\xb9\xe0\x4e\x3c\xd2\x23\xce\x26\x2a\x61\xeb\xb8" "\x99\xca\xbe\xe4\x7e\x59\x27\x21\xf8\xbe\xf9\x32\x39\x2b\x77\x55\xfe" "\x38\x38\x6f\x22\xeb\x22\x2b\x8d\x7e\x46\x3a\x99\x32\x18\x7f\x32\x05" "\xaa\x1c\xd8\x2d\xb8\x4c\x53\x3a\x28\x29\x64\x8a\x97\x31\xd3\x91\x8f" "\xb3\x2d\xff\x01\x41\x94\x41\x0e\x8d\xcf\x11\x55\x28\x6a\x96\x3b\x5f" "\xbb\xb7\x97\x86\x69\x6f\xf9\x0c\x28\x99\xbb\xcd\x59\x28\xa8\x60\xc1" "\xd2\xd4\xfe\x20\x8d\xcb\x02\xad\x34\xe4\x76\xe8\x37\xa6\xcc\xe7\x34" "\xf8\x88\xbf\x56\xcd\x3e\xb9\xe3\x67\x0a\x57\xb8\x6c\x99\x7d\x73\xcc" "\x07\xf0\x0e\xd3\x00\x60\xa9\x5b\xc7\xf7\x58\xf2\x9e\x80\xde\xc3\xe2" "\xb5\x4b\xf9\xb4\xc4\x65\xd1\xc7\x20\xb6\x46\x64\x28\x19\xe8\xab\x9a" "\xc4\x76\x7b\x66\xe6\x61\xaf\x64\x44\x37\xa4\x99\x40\x82\x13\xeb\x87" "\x33\x4f\xb7\x8f\x3b\xf4\x65\xd2\x9e\xbc\xd0\xc4\x92\xbc\x66\x5a\x92" "\xf0\x8c\xea\xbb\x5d\xfc\xbf\xe3\x24\xe8\xbc\xf6\xc4\x8a\xdb\xd4\xec" "\xd2\x17\x0a\x4c\x80\x28\x3c\x0d\x0a\x51\xfa\xf8\x51\xc0\x3c\xd6\x64" "\x34\x81\xe3\xe3\x45\xb7\xfc\xce\xdf\x92\x62\x60\xc6\xb8\x17\x19\xb4" "\x7b\x8e\x3d\x33\xaa\x8a\x5a\xac\xae\x40\xb8\x8b\x04\x7a\xbb\x08\x65" "\x2d\x2a\x34\xf8\xca\xc0\x74\x0d\xdd\xb9\x9f\x17\x4c\x66\x5c\x52\xe2" "\x27\x2a\x45\x76\x85\x49\x18\xe3\x60\x43\xfb\xf3\x9b\x9f\x36\xe2\xe7" "\xb3\xd3\xdc\x16\xee\x8d\x9d\x97\x52\x84\x29\xf9\x91\x65\xae\x1e\xc8" "\x11\x2a\x91\x5d\x9f\x6a\x19\x8c\x37\xb6\xdc\x9b\x85\x19\x84\x23\x35" "\x2d\x5c\xdc\xa4\x96\x2f\x96\x07\x4b\x59\xd8\x63\x2f\x9e\x88\x73\xd0" "\xb0\xcc\xc4\x5d\x58\xb5\xbb\x9e\x83\xa2\x72\xbb\x88\x16\xb0\x87\xbc" "\xc2\x1f\x2e\x1f\x92\xcf\x75\x7c\xc5\xa4\x90\x9e\xe1\xda\xa9\x01\x22" "\x14\x47\x59\x2d\x79\x2d\x53\x80\xc6\x26\x55\xef\x4e\x43\x35\xbd\xd2" "\xd2\x1a\xc7\xec\x5c\x26\x6d\x0d\x40\x5d\x67\xef\xa2\x00\x0b\xb6\xd9" "\x8c\x3d\x98\xe4\xab\x63\x1e\x18\xda\x55\x67\x8c\xcd\xa8\x63\xc6\xbd" "\xa6\xc8\xfa\xff\xe3\x06\x5f\x27\x35\x60\x6e\xf0\xb1\x3b\x16\xb2\x2f" "\xa2\x96\xf7\x36\x92\x5c\xcf\xbb\x5b\xe0\xb9\xe7\x90\x28\x50\x48\x85" "\xec\x1f\x93\xf6\x08\x38\x04\x10\xd1\xc0\x94\x38\xee\x66\xe9\x25\xb9" "\xdd\x0b\x1f\xf3\xf3\x97\x4f\xce\x98\xa0\x0b\x61\xdf\xe8\x1d\x64\x59" "\xb0\xcc\x4d\x51\xe3\x39\xf9\xbb\xcf\x73\x7f\x54\xaf\x5e\x99\xf0\x02" "\xcb\x40\x2e\x71\x8e\xfb\xaf\x69\xa9\xb3\x40\x29\x1e\xd3\xac\x1e\x8f" "\xc3\x2f\x95\xbc\x00\xac\xbf\x54\x3b\x01\xaf\x53\xc2\xe2\x66\x23\xb8" "\x45\x90\x29\x2b\xfa\xc3\xc3\xe8\xf4\xd5\x21\x0b\x3a\x17\xd8\xaf\x53" "\xdc\xd5\x19\x81\x79\x68\x0a\x34\xf2\x57\xc4\xb8\x09\xd3\x69\x24\xf8" "\x07\x3e\x94\x92\x91\x68\x30\xe9\x6d\x5c\x16\xb2\xe4\xd9\x80\x07\x7c" "\xef\x0e\xab\x19\x77\xb9\xfe\xbc\x31\xac\x44\x90\xfd\xf9\x5d\x6c\xf2" "\x2a\xd8\xee\xbd\x1c\x51\xe8\xf5\xc9\xfa\xf7\x70\xf4\xc1\x86\xd2\x72" "\xdf\xee\xad\xad\x66\xcd\x69\xa8\x95\x44\xd7\x95\x49\xfe\xb3\xd6\xba" "\x6e\x67\x81\x82\x57\xdd\xb8\xeb\xb1\x9a\xb7\xe5\xa3\x7c\x42\x36\xfe" "\x67\x13\x28\x55\xbc\x6e\x7c\x95\x78\xd6\x98\xc7\xab\x59\x98\x92\x20" "\x48\x86\x49\xc1\x7d\x67\x30\x77\x40\x82\xb5\x29\x5e\xa2\xa7\x84\x53" "\x88\xa8\x75\x2f\xe4\x59\xef\x96\xce\x01\x47\xa3\xe8\x39\xfa\x6d\x80" "\x6d\x5b\x79\x5e\x40\xea\x15\x3b\x55\xd8\x53\x85\xef\x81\x37\x23\x48" "\xe5\x96\x7b\x5b\xee\x60\x2b\xa2\x90\xb0\x84\x77\xee\x39\x60\x9d\xe9" "\x1f\xaf\xd2\x3f\xaa\x39\xfc\x77\xe7\x80\x4b\xa6\x25\x55\x64\x83\x4b" "\xba\x60\x31\x91\x88\x87\xd2\x39\x3d\xe3\x5e\x07\x87\xff\x16\x28\x2b" "\xf6\x30\x12\xcd\x2d\x5e\xbf\x42\x25\x10\x0d\xd2\x19\xab\xbe\x68\x7c" "\x8b\x82\x12\xba\xa4\xbd\xa2\x83\xdf\x17\xd6\x9c\x26\xda\xec\xb2\xa4" "\xe0\x82\x9e\x34\x7c\xf5\xbc\x14\xa9\x30\xab\x86\x3f\xbc\xfa\xbb\xf5" "\x0b\xd8\xa3\xf8\x14\xdb\xc8\xd0\xec\x0a\x70\x78\x33\x98\x10\x9d\xce" "\x83\x61\xeb\x42\xd3\x49\xf4\x34\x64\x28\x65\x7b\xe0\x0e\x0e\x78\xd1" "\x3d\x64\x1c\x88\xd2\x16\xd1\x4a\x23\x8d\xff\x26\xb8\x28\x3f\xd3\xf2" "\x3c\x42\xbb\x4e\x00\x17\x45\x83\x95\x00\xdd\xde\x24\xc7\x9d\x9c\xc1" "\x00\x7c\x85\xff\x31\x90\xc6\xfb\x0e\x43\x63\x9f\xa7\x73\x90\x11\x76" "\x25\x87\xf4\xb9\x38\x33\x79\x3d\x05\x36\xbd\xec\x12\xff\x58\xe7\xcc" "\x2d\xfd\x1a\x73\xae\x94\xd2\xab\x34\x00\x4a\x69\x77\x77\x1e\xf5\xeb" "\xd5\x04\x24\xcd\x63\xf0\x22\xb9\x8d\xf0\x09\x72\xec\x7d\xd0\xc7\x16" "\x23\xfe\x25\x3b\xd3\x74\xf8\xd1\x71\x78\x03\x6a\xb7\x30\x93\x28\xe6" "\xad\xc0\xdc\x40\x84\x96\xd9\x64\x7f\x8a\x96\x26\x58\x09\x48\x24\x80" "\x6f\x52\xa4\xbb\xb9\x55\x4f\xcd\xa3\x9c\x67\x5d\x03\x2b\xd2\x45\x49" "\x4d\x3d\xc7\xac\x95\x12\xc5\xc9\x20\x4b\x47\x09\x4c\xed\x50\x64\x67" "\x52\x1a\x87\x66\xf2\xf7\x77\x84\x74\x54\x95\x8d\xa9\x1e\xf6\x4d\xbb" "\x88\xc6\xec\x6e\xae\xe7\x45\x4f\x6a\x76\x58\x92\xbf\x38\x3f\xb5\x70" "\xb4\x90\x92\xe4\x7a\x39\xf6\x91\xea\xc8\x3d\x90\x79\x31\xf9\xe0\xa5" "\x3b\x30\x50\x36\xd4\x88\x57\x9b\xfd\xc7\x95\x05\x36\x0b\x09\x4b\x9e" "\x2e\x04\x93\x73\x6c\x93\x30\x78\x2f\x86\xfa\x72\x43\x74\xc7\x82\x2b" "\xc9\x33\xcb\x95\xf5\x13\x73\x12\x07\x11\x47\xf4\x3f\x0f\xa4\xca\x79" "\x7e\xfc\xb8\x58\x8a\x82\x6a\x94\x2c\x89\xb1\xb7\x6c\x48\x51\x6a\xce" "\xb6\x00\x2b\xaf\x23\x22\x22\x7f\x9a\x6d\xb0\x30\xbb\xf9\xe0\x1f\x16" "\x29\x0a\xb0\x78\x57\xf5\x48\xd0\xce\x77\x67\x5c\xa7\xe6\x07\x23\xa2" "\xdf\x55\x71\x61\x15\x4f\xe6\x5d\x16\x85\x3d\x3a\xdb\x20\xaa\x71\x5e" "\x86\x2b\xba\x4c\x20\xf3\x24\xcf\xa5\x92\x6d\x3d\x94\x4f\x65\xdb\x11" "\x3c\xbd\xf9\xee\xc8\x5a\x61\x16\x7b\x13\xc3\x7c\x51\xda\x2a\x7d\x2e" "\xe4\x8d\xa7\xba\x7f\xab\x0a\x41\xd0\x25\x4f\xbd\xd8\x1f\xb1\x15\x80" "\xc4\x66\xac\x8d\xda\x3c\x7b\x7c\xe0\xc1\xc1\x94\x8d\x6c\x31\x9d\xe0" "\xef\xeb\xe8\x1d\x92\x51\x1c\xfa\x27\x3b\x2e\x87\xa6\x89\x75\x93\xc3" "\xb0\x7e\xb4\x07\x2f\x4b\x3b\x24\x6b\xc8\xd0\x9a\x92\xf5\x63\x7f\x48" "\xc0\x41\xb1\x55\x67\x39\x9a\x60\xbe\x6f\xc1\x15\xfb\x05\x97\x55\x8e" "\xa5\x9d\x01\x41\x46\x02\x6d\x35\xd1\xa2\x9a\xa1\x78\x56\xb3\x9a\xa3" "\xd0\xdf\x33\x23\x94\xfe\xb1\xe4\xca\x4a\x66\x26\xaf\x29\x03\x39\x8b" "\xdf\x37\xa7\x38\xb7\x20\x2f\x7d\xf1\x62\x4b\xe1\xbf\x96\x3d\x9b\xd4" "\x26\x01\x3d\xd1\x56\xcb\x9b\xb8\x77\x45\xaf\x26\x69\x74\x87\x95\xb0" "\x89\x89\x75\xf1\xa6\x03\xe5\x8c\xbe\xc6\x79\xc3\x80\xc1\x22\x5e\x6f" "\x36\x21\x7f\x98\x6f\x61\x1f\x90\x6e\x19\x3c\x55\x97\xee\xe7\x85\xe7" "\xc4\x73\x14\xd5\xe0\xcf\xa8\x62\x3c\x95\x28\xa6\x3b\x93\x9d\xd9\x33" "\xf2\xf2\xda\x9d\x83\xc7\x6e\x7c\x69\xdf\x14\x36\xdf\x09\xd2\x4a\xf6" "\xec\xd3\x89\xd6\x8a\x7a\xcb\xc7\x6c\x25\xfe\x0f\x77\x3f\x3c\x33\x44" "\x75\x58\x76\xdd\xda\x1f\x1a\xdd\xf8\xe4\x65\x60\x79\xd7\x0b\xb4\xdb" "\x28\x82\x40\x8e\xef\xa5\x39\x86\xdd\x19\xb0\x84\x7c\xcd\x60\x2a\xaf" "\xbe\xab\x88\xb5\xfd\xe3\x4b\xb2\xb5\x60\x37\xc5\xe2\x60\x14\x6b\x4d" "\xb4\x3e\xa3\xb1\xc3\x97\x28\x8e\x7c\x38\xa9\x8d\xc2\x8b\x86\xa5\x4c" "\x75\xc1\x97\x1d\x1d\xdd\xbb\x94\x72\x45\x31\x19\x5c\xaa\xae\x42\xf6" "\xb4\xd2\x37\x41\xf8\x38\xbd\x27\xa1\x3c\x8f\xe6\xbe\x91\x1b\x9e\x52" "\xbd\xb8\x12\x22\xcd\x6b\xa4\x51\x91\x51\x98\xa8\xc3\xbb\xe1\xd8\xda" "\x24\x7f\x01\x81\xcc\xdc\x28\xc5\x3e\x19\xc6\x1b\x10\xcb\xfa\x6f\x53" "\xf8\x20\xad\xd7\xbf\xfb\x5c\xb4\x10\x9d\x8f\xaf\x74\xec\xf0\xb0\xce" "\x9d\xa5\x01\xc8\x84\xfe\x29\x7b\x6b\x41\xc6\xb2\x33\xda\x1d\xa3\x8d" "\xcb\x9e\x85\xb1\x25\xec\x59\x44\xd6\x6e\x93\x6a\xae\x2f\x60\xf5\x43" "\x97\xcf\xd9\xe0\x67\xfe\x96\xa4\xc5\xfd\x7b\xea\x78\x11\x54\x07\xd9" "\xa9\x2c\xb2\x69\x60\xad\xf1\x99\xc1\x68\xfa\xe2\x91\xc7\x3f\x1e\x59" "\x70\x1c\x0f\x12\x9c\x76\xd4\xde\x6e\x45\xe0\xc7\xd4\x40\x27\x11\x46" "\xc7\x22\x6a\x0a\x23\x7e\x3a\xb2\xf1\x31\x62\x40\x00\x13\xd4\x67\x40" "\x09\x5f\xe6\x91\xe8\xd2\x6f\x0a\xd7\x10\xef\x77\x8d\x73\xf8\x94\xbe" "\xc7\xdf\xec\xa3\x67\x8b\xd7\x86\x26\x49\x4e\x34\x17\x79\x03\xba\xd8" "\xfd\x4b\x02\xdb\xfc\x9f\xd6\xf4\x7f\xbe\x38\xc6\xae\x86\x7e\xd9\x82" "\xa5\x07\x7c\x57\x2d\x65\x40\xf2\x99\xbd\x83\xd9\xa5\x37\xd2\x75\x80" "\x9d\x9a\x9c\xba\x37\x01\xd1\x04\xaf\x27\xaa\x07\x14\xee\x46\xd3\xc5" "\x3f\x9a\x91\x3c\xaf\x8b\x1a\x50\xe4\xd8\x21\x42\x56\x19\xa4\x9d\x0b" "\x51\x15\xe8\xb2\x55\xbc\xb4\x0f\x02\xcc\xba\xbd\xcb\x4b\x38\xd5\x1e" "\xfe\xc8\xf9\xe2\x48\x1c\x28\x7c\x70\x42\x66\x18\x6d\x29\x68\x6f\xb2" "\x16\xa0\xfb\xe1\x42\x8d\x71\xb6\x31\x70\xb7\xa7\x0a\xfb\xb3\x17\x01" "\xa5\x15\x1b\xd4\x13\xee\x82\x02\x3e\x85\x30\x52\x5f\xf2\xa0\xf8\xdf" "\x19\xd9\xc9\x6d\x90\x54\x99\xbc\x71\xce\xc0\x0f\x72\x74\x8b\x73\x0b" "\xc7\x65\xfe\x43\x21\xe7\x01\x54\x4a\x6e\xc4\x21\x0f\x4b\x31\xa2\x3c" "\x46\x04\x04\xaa\x82\x02\xa0\x0e\xfb\x79\x98\x1e\xba\x57\x45\x77\x9b" "\xd8\x5a\x11\x7d\xb4\xc7\xd4\xa0\xc2\xc5\xa2\x86\xc1\xc9\x6f\x78\xd5" "\x79\x9f\x99\x00\x74\xe7\x57\x94\x75\xab\xe0\xb5\xed\xd6\x7d\xf9\x68" "\x11\x62\xda\xe2\x50\xd2\xa4\xa4\x27\x78\xc6\x12\xc9\x89\x88\xc6\x0e" "\x44\xef\xec\xa5\x57\x61\x95\xf0\xcc\xf9\x6f\x5e\xae\xae\xf3\x91\x04" "\x1f\xe6\x70\x5b\xbc\xa3\xe1\x6f\x74\x0d\xcf\x36\xf9\x8a\x8e\xd8\x9b" "\xa8\xa6\xae\x3e\x70\x24\x45\x11\x88\x1d\x98\x6c\xb9\xa0\x61\x1b\x5c" "\x49\x13\x84\xe5\x37\x42\x9c\x20\xfb\x6b\x07\x79\xc6\x79\xc1\xa8\x00" "\xfb\x68\x62\x08\xdf\x35\x10\x48\x44\xec\x5b\xee\x7c\x6c\x64\x24\xad" "\xe5\x59\x77\x89\x20\x15\xeb\x94\x27\xef\x8c\xfd\x6b\xd9\x5a\x32\x8c" "\xb0\x8b\x9b\xc6\xcb\x05\x40\x31\xdc\x62\xf7\x69\x7c\x76\xd3\xee\xd3" "\x02\x49\x7b\xaf\x42\x7f\xe2\x0b\xdd\x84\xad\xb4\xcc\xab\xcc\x19\x33" "\x4a\x3f\x2e\x78\x1a\xec\x1b\x34\x42\xb8\x15\x03\x1d\xcb\x93\xd1\x35" "\xde\x61\xa9\x8d\x1a\x44\x08\xdf\xac\xed\xc8\x27\x07\x31\x29\xe2\xf0" "\x18\xd7\x01\x6b\xaa\x20\x3b\x58\x4d\x8c\x6d\x13\xcd\x2b\x87\xad\x41" "\x76\x6b\xb7\x8f\x94\xb9\x8f\xc5\x10\x2c\x46\x9f\x46\x8f\x4d\xb3\x6e" "\x19\x6f\xca\x42\xc4\x49\x1d\xb0\xd9\xf5\xe8\xec\x16\xdb\x04\x1c\x36" "\x96\x34\x0f\x21\x1a\x43\x76\x48\x8c\xb3\x76\x71\x23\x66\xcb\x38\xfc" "\xd4\xa3\x1b\x04\x41\x3b\x99\x8a\x6e\x93\x4f\x6e\x80\x8b\x5c\x2f\x1f" "\x54\x6b\xa7\xb1\x51\xe3\x3d\x53\xd4\x87\x6e\x0a\xaa\x99\x63\x68\x2e" "\x0d\xda\x93\xb1\xa2\xd2\x4b\x0d\x01\x20\x00\x48\x07\xda\x61\x5d\xf1" "\xb2\x11\x7f\x31\xc3\xb7\x85\x72\x37\xb3\x2b\x28\xa6\x15\x99\xa1\x75" "\x11\x7c\x84\x1c\x83\x50\xec\x1a\x52\xb0\x2e\xde\x33\xdb\x0a\x6b\x3f" "\xda\x84\xc6\x75\x17\x99\x82\x9c\x33\xd0\xd3\x48\x82\x25\x60\x52\x90" "\xd2\x6b\x73\x39\x19\xce\xac\x9e\xbc\x3c\x81\x1a\xb5\x5c\x59\x08\x8b" "\x38\xbd\xdf\x9d\xd3\x6f\x4a\x02\x0e\x2a\xa9\x65\xfa\xb7\xdb\x35\x2e" "\x2c\x86\x80\x1b\x85\x04\xcc\xee\xb8\x5b\x3b\x79\x0f\x84\xf2\x2b\x1b" "\x39\x42\x3b\x14\x6c\xc6\x58\x88\x42\xaf\xfa\x2e\x51\x67\x47\x87\x51" "\x34\x1c\x44\xde\xa0\xc4\xf3\x2f\x22\x89\x8b\xda\x42\xb7\x5d\xcf\x80" "\xc1\xf8\xb1\x8d\x65\x3b\x86\x5e\xf9\x50\x8a\xd3\x79\x1c\x1a\xdc\x37" "\xac\xcd\xe6\x03\x38\x64\xde\x06\xa3\x86\x62\x8c\x11\x95\x25\x6a\xf6" "\x5e\x9f\xe8\x28\xd2\xfb\xd1\xfd\xee\x78\x9b\xf9\xb5\xe6\x8b\x2e\xf6" "\xfc\x8a\x26\xfb\xb3\x7b\xf0\x28\xac\x8d\x0d\xe9\x92\x2c\xf6\xd9\x2f" "\x25\x19\x36\x4d\xa7\x4b\x96\xd5\x3a\x2d\xab\x55\x8a\xfd\x30\x38\xc9" "\x51\x6e\x5f\x8d\xd3\x01\x4a\x0c\xfe\xf9\x07\x5a\x35\xe6\x8a\x9f\x51" "\x06\x56\xbf\xf1\x1f\x15\x04\x4d\x9e\x06\x2a\xaa\x51\xaf\x9d\x0d\xeb" "\x30\xad\xe8\x8f\x2b\x3a\xf1\x06\x65\x46\x98\x9c\x20\x62\xec\xde\x11" "\xb9\x86\xb1\x41\xf7\x66\x3d\x47\x3b\xa7\x2c\x01\xa2\x46\xae\x9a\x16" "\x5d\x68\x11\xfa\xc8\x64\x06\xda\xf1\xd0\xa9\x96\xf0\x96\xb6\xec\xbc" "\x12\x7f\x28\xed\xee\xde\xac\x4c\x26\xbb\x96\xe1\x8c\x71\x12\x05\xaa" "\xf2\x68\x5b\x3f\x32\x88\x2d\x5a\x4d\xaf\xce\x86\x3a\x9c\xcc\xb4\xc5" "\x2f\x19\x2c\x54\xab\xa2\xa6\x43\x8d\x9d\x03\x45\x0d\xa0\x65\x19\xa6" "\x53\x71\x98\x08\x38\x1d\x70\x85\x8f\x19\x77\x98\xc3\x23\x08\xd8\x62" "\x5e\xd5\x62\x36\x7f\x74\x3f\x1e\x02\x04\x58\xfb\x2a\xb9\xc9\x50\x66" "\x86\x45\x65\x88\xca\xfb\xb3\x70\x9c\x87\xad\x39\xc0\x9c\x2f\xe6\xf0" "\x95\xad\x8c\xd9\x7c\xf2\x38\xf1\x37\x53\x83\x16\x83\x04\xb8\xe1\xa8" "\x3c\xed\xfe\xc3\x65\x2f\xce\x5a\x7d\x77\x74\x35\x8f\x5a\x10\xd4\xad" "\x75\x41\xaa\xc5\xad\x80\xaf\x9e\xa8\xbb\x92\xce\x44\xf5\x15\x03\x48" "\xe2\x17\xbf\x68\xb3\xc8\x7f\x0e\xf3\x3f\x5e\x43\xc8\xf3\xd5\x84\xf3" "\x73\x2d\xf8\xe3\x3b\x6f\x72\x9d\x07\x64\x0f\x9b\x6e\x62\xfe\x9b\xe3" "\xe9\x8c\xc6\xad\x19\x41\x15\x17\x37\x86\xa7\x48\xd1\xa1\x9d\x1a\x34" "\x0a\x96\x1b\xcf\x1e\x66\xb4\x4b\xdc\xeb\xb9\x99\xc4\xc0\x79\xe0\xd2" "\x34\x4d\x5d\xc2\x84\x14\x27\x07\xe1\x69\x62\xcf\x33\x55\x71\x0e\xf9" "\x55\x2f\xcf\x3e\xf4\x6e\xd7\x61\xae\x06\xdf\x28\xd5\x45\x61\xb3\xdb" "\x51\xf7\xf2\x7f\x8d\x17\xd2\x86\x66\x4d\x00\xc8\xea\x5b\x3d\x67\x3e" "\x9f\x4f\xd2\xfd\x75\x5c\xe9\x57\xe5\x89\x24\xc4\xee\x66\x05\xc3\xa7" "\x7d\x3e\x76\x5d\x60\x33\xd1\x35\x35\xae\x0c\xc0\x38\x4b\x1b\xfe\x78" "\x7c\xb5\x8c\x64\x07\xd6\xca\x4c\x58\x27\x3e\x79\x56\x89\x25\x82\x9c" "\xf7\x40\x8c\xea\xb8\x66\xfc\xa4\x61\x99\x85\xb6\x73\x47\xe9\x7e\xf0" "\xfc\xe0\x71\x96\x07\x53\xbc\xc2\x44\x62\x56\xe8\xce\x95\x2c\x02\x69" "\x35\x33\xe3\x21\xc5\x4b\x15\x69\xcd\xf5\x8f\x39\x72\x7d\x7b\xcd\xb9" "\x60\xdf\xaf\x9b\x04\x26\x57\x33\xa8\x12\x89\xb2\x42\x0a\x84\xd4\x67" "\xad\x09\xdc\xb6\x1e\xa1\xa9\xde\xde\x70\xa2\x90\x6e\xd1\x95\x25\x40" "\x73\xce\xca\xec\x74\xa7\xaf\x00\x05\xf0\x43\xe3\x03\x60\x39\xf3\xa3" "\x0d\xd6\x47\xe1\xf1\x3f\xa2\xc2\xc5\x51\x0f\xdf\x04\xc0\xa5\x62\xea" "\x2f\xf9\x8b\xf1\x33\xc5\x43\xec\xba\x22\x41\x46\x48\x3b\x48\x01\xd4" "\x48\xc7\x93\x69\x33\x7c\xce\x26\xad\x5c\xf0\x9d\xa7\x70\x89\xc5\xed" "\x2f\xdc\x93\x0a\x47\xb9\x5f\x6a\x31\x67\x1a\xaf\x95\x4e\xe6\x74\x93" "\x4e\x25\x75\x0a\x50\x92\xfd\xb9\x34\xd8\x43\x92\xf4\x4c\x8b\xbf\xb5" "\x45\xeb\x05\x0a\x6b\xa0\xc4\x62\x5e\xde\x3f\xa9\x79\x44\xa5\xee\x86" "\xdd\x9c\x03\xf1\x79\x94\x72\x07\x6d\xf0\xed\x51\xcf\x41\x1a\x2f\x87" "\x53\xa4\x9d\x71\x03\x9f\x07\x3a\x06\x82\x97\x0f\xf4\x9b\x4f\x94\xef" "\xe2\x6e\x44\xdb\xa3\xf8\xd0\xf1\x97\x22\x8d\x1d\x79\xbf\xfd\x5d\xf6" "\xde\xba\xfc\xc8\x0b\x34\xd7\x6d\x93\x07\xc1\x55\xd6\xbf\x9a\x20\x4a" "\x00\xfd\x1a\x7e\xba\x62\xfd\xed\x3a\x18\x86\x41\xc9\xf2\x70\xd6\x6c" "\xce\xa8\x2d\x98\x51\x9d\x34\x49\x34\x56\x67\x01\xdb\x37\xf1\x6c\x35" "\xf2\x63\x8e\x30\xd1\x93\xd2\x4f\x05\x99\xaa\x55\x68\x8c\xaa\xcf\x78" "\x5c\x06\x23\x3d\x38\x07\x6b\x64\xd4\x0e\x2c\x30\x06\xb4\xa2\x8d\x0d" "\x85\x1d\x8f\x6b\xd0\x95\x39\x6c\x01\xe7\x49\x05\xee\x43\x34\xcc\xa4" "\xb5\xb2\xec\xcc\xf0\xcc\xa3\xd9\xba\xce\x41\xa9\x69\x48\xc5\xc1\xbe" "\x9f\xc0\x47\xe3\x69\x9f\x79\x63\x5e\xf5\x37\xff\x74\xb1\x4d\x7f\xdf" "\xdc\x68\xeb\xc3\x45\xb7\xdc\xc7\xf0\x73\x04\xea\x83\x35\x39\x0b\x67" "\x03\x16\x22\x10\xe1\xa8\xb1\x5d\x80\xbe\x31\x9d\x13\xe9\x1b\x4e\x72" "\x6e\xde\x7a\x3c\xc6\xda\x88\xa3\x60\x46\x6b\x63\x91\xad\x0d\x4e\x28" "\x5b\xcd\x33\x69\x4a\xae\xd5\xc6\xad\x09\x5d\x36\x05\x21\x45\x6e\xfa" "\x25\xb8\x89\x0d\x6e\x7a\x3b\x32\xc4\x5d\x7a\x23\x92\x06\x0a\x53\x08" "\xc8\xf3\xb3\x3b\x78\x21\xdd\x43\xa8\x0a\x0b\x21\x5b\x66\x5c\xea\x4e" "\xed\x08\xef\x79\x5d\xbc\x39\xcb\xfa\x80\x63\x6a\x43\x42\xf9\x12\x19" "\x03\x09\x76\x26\x45\x06\xc7\x03\x47\x09\x30\x87\x72\xa8\x8e\x3b\x52" "\x64\xb6\x1b\xaa\xcf\xeb\x5c\xad\xb3\xf4\xbb\x9d\xa6\xcd\xb2\x1a\xad" "\x61\xd2\x84\x80\xcb\xba\x2b\xe8\x48\x78\x7f\xc4\xe1\x19\xc5\x6e\x4b" "\xc9\xb8\xff\x12\x22\x75\x61\x23\xaf\x3a\x1a\x0f\x7e\x19\xad\x4e\xcc" "\x69\xc3\x98\xc4\xdf\xdd\x53\x0a\x9a\x20\x98\x23\xd1\x1e\x18\x0e\xd7" "\x4e\x26\x53\x7b\x64\x76\x81\xc2\xee\xfa\x90\xc8\x27\x46\x41\x8d\x46" "\x73\x81\xc1\xf1\x05\x55\x4c\xad\xb4\xea\x65\x39\x01\xcf\xb5\xcb\xd3" "\xf8\x72\x75\x31\x2f\x47\xb5\x71\x6f\xe7\xd1\xaa\xdf\x9d\x2c\xe7\x87" "\x0a\xb4\x29\x14\xd9\xf9\xd8\xeb\xe0\xd9\xc2\xf1\x5f\x54\x61\xe8\x83" "\x05\x34\x9c\x94\xd6\xcf\x69\x1e\xd1\x75\x47\x6b\x97\x8c\x12\xf0\x29" "\x08\xad\xf4\x01\x81\x84\x38\x20\x2f\x16\xe3\x72\x10\xe1\xb3\x07\xc3" "\x1a\x1d\xdf\x7f\x2d\x09\xbd\x8b\x04\x99\x3a\x0f\x70\x67\xf4\xef\x40" "\x68\xfe\x8f\xf8\xbb\x59\x8d\xda\x86\x52\x6c\x47\x66\xff\xad\x37\xa2" "\xc0\x68\xa4\x44\x2f\xb0\xc0\x84\x6d\x0c\x5e\x4e\x6b\x5a\x99\x74\x86" "\x84\x96\x19\x61\x97\x68\xbf\x85\xb4\x31\xd0\xf9\x51\x37\xfa\x67\x32" "\x07\x4d\x73\x21\xe1\x78\x6c\xcf\x1a\xe0\xf4\xf6\xb8\x68\xb8\x04\x62" "\xac\x01\xc3\xaa\xff\x88\x99\xbc\x50\xd2\xc8\xe6\xcc\x5e\xad\x98\xa7" "\xf2\x28\x18\x7a\x89\x0e\x94\xd6\xf2\x58\xe3\x42\x7b\x43\xd1\xa4\x94" "\x41\xd3\xda\xf1\x71\xb8\x0c\xfa\x29\x63\xa8\x06\x18\x85\xb6\x37\x71" "\xeb\xd1\xf2\x06\x95\xb9\x85\x56\xbf\xff\xcf\x0a\xf2\xec\x5d\x89\xf2" "\xc4\x39\xb5\x30\xe6\x6c\xfb\xcc\xca\x98\x7e\x8e\x01\x8b\x1b\xe0\x19" "\x0b\x26\x94\xe6\x83\x25\xcb\x57\x81\x89\x1a\xda\xc9\x24\x60\xbf\x48" "\xa8\x71\x6e\xfc\x09\x8b\x97\x16\xa0\x25\xc1\xd2\x08\xa9\xfc\x4e\x1c" "\x71\x2c\xbb\xa9\x88\x96\x49\x90\xa9\x61\x53\x06\x9c\x42\x2b\x5c\xb8" "\x1a\xdc\x04\x2e\xae\x84\x4e\x41\x77\x8a\xa9\x3a\x4d\x65\x77\x9e\x20" "\x8b\x71\x98\x71\xa2\x02\xff\x6f\xd3\x74\x03\x55\xf0\xb5\x1c\x7d\xc0" "\xbf\x42\x1a\xf5\xe9\xca\x89\x27\x64\x64\xe3\x88\x27\xc3\xce\x80\xf8" "\x90\xbd\xf7\x99\x4e\x6e\xb3\x27\xd4\xc9\x5b\xf8\xae\x31\xaf\xd8\x59" "\xdf\xe1\x61\xed\xee\xf2\x59\x02\x8c\xd4\xd1\x4b\x24\xcf\xea\x71\x7d" "\x5a\x9c\x30\x95\xb8\x33\x9b\x44\xba\xa7\x17\xc5\x51\x81\x7d\xaa\x56" "\x2f\x36\xf3\x9a\x1f\xc8\x05\xd2\x6e\xcf\x80\x42\x67\x30\xb1\x36\x2d" "\x0c\x90\xf0\xd3\x68\x4d\xdb\xfe\x7c\x28\x2f\x1d\x52\x85\x9b\x22\x4e" "\x11\x82\xc7\x70\xb3\x5c\xbf\x9e\xdd\x96\x41\xc3\x0b\x84\xe8\xba\x07" "\x21\x2e\x5a\xdc\xd7\x03\x32\x27\xdd\xfc\xab\xeb\x0a\x6e\xf6\x0c\x1c" "\xb6\x1f\x17\x83\xfb\x7c\xda\x67\x61\x85\x4d\xf6\xf4\x21\x75\x30\x94" "\x2e\x25\x9c\xed\x86\xf8\x23\xc8\x99\xb8\x11\xe9\x0d\xfc\x62\x84\xcf" "\xf9\x8c\x3c\xfc\x3a\x16\xf3\x6e\x74\x58\xd3\xd0\xf2\xb8\xa7", 8192); *(uint64_t*)0x200000000c40 = 0; *(uint64_t*)0x200000000c48 = 0; *(uint64_t*)0x200000000c50 = 0; *(uint64_t*)0x200000000c58 = 0; *(uint64_t*)0x200000000c60 = 0; *(uint64_t*)0x200000000c68 = 0; *(uint64_t*)0x200000000c70 = 0; *(uint64_t*)0x200000000c78 = 0; *(uint64_t*)0x200000000c80 = 0; *(uint64_t*)0x200000000c88 = 0; *(uint64_t*)0x200000000c90 = 0; *(uint64_t*)0x200000000c98 = 0x200000000780; *(uint32_t*)0x200000000780 = 0x90; *(uint32_t*)0x200000000784 = 0; *(uint64_t*)0x200000000788 = 4; *(uint64_t*)0x200000000790 = 1; *(uint64_t*)0x200000000798 = 2; *(uint64_t*)0x2000000007a0 = 5; *(uint64_t*)0x2000000007a8 = 0; *(uint32_t*)0x2000000007b0 = 0x80; *(uint32_t*)0x2000000007b4 = 0; *(uint64_t*)0x2000000007b8 = 4; *(uint64_t*)0x2000000007c0 = 0xe; *(uint64_t*)0x2000000007c8 = 0x8000000000000001; *(uint64_t*)0x2000000007d0 = 7; *(uint64_t*)0x2000000007d8 = 0x1a; *(uint64_t*)0x2000000007e0 = 0x800; *(uint32_t*)0x2000000007e8 = 0xfffffffa; *(uint32_t*)0x2000000007ec = 0xfffffe01; *(uint32_t*)0x2000000007f0 = 0x400; *(uint32_t*)0x2000000007f4 = 0x1000; *(uint32_t*)0x2000000007f8 = 4; *(uint32_t*)0x2000000007fc = r[2]; *(uint32_t*)0x200000000800 = r[3]; *(uint32_t*)0x200000000804 = 6; *(uint32_t*)0x200000000808 = 0xda5c; *(uint32_t*)0x20000000080c = 0; *(uint64_t*)0x200000000ca0 = 0; *(uint64_t*)0x200000000ca8 = 0; *(uint64_t*)0x200000000cb0 = 0; *(uint64_t*)0x200000000cb8 = 0; *(uint64_t*)0x200000000cc0 = 0; syz_fuse_handle_req(/*fd=*/r[0], /*buf=*/0x200000002140, /*len=*/0x2000, /*res=*/0x200000000c40); break; } } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); const char* reason; (void)reason; loop(); return 0; }