// https://syzkaller.appspot.com/bug?id=47ca2ff42f9c5d5d353149ecc97f29de7828bbfd // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef SYS_compat_30_fhopen #define SYS_compat_30_fhopen 298 #endif #ifndef SYS_compat_43_ommap #define SYS_compat_43_ommap 71 #endif #ifndef SYS_fsync #define SYS_fsync 95 #endif #ifndef SYS_mmap #define SYS_mmap 197 #endif #ifndef SYS_sendmmsg #define SYS_sendmmsg 476 #endif static unsigned long long procid; static __thread int clone_ongoing; static __thread int skip_segv; static __thread jmp_buf segv_env; static void segv_handler(int sig, siginfo_t* info, void* ctx) { if (__atomic_load_n(&clone_ongoing, __ATOMIC_RELAXED) != 0) { exit(sig); } uintptr_t addr = (uintptr_t)info->si_addr; const uintptr_t prog_start = 1 << 20; const uintptr_t prog_end = 100 << 20; int skip = __atomic_load_n(&skip_segv, __ATOMIC_RELAXED) != 0; int valid = addr < prog_start || addr > prog_end; if (skip && valid) { _longjmp(segv_env, 1); } exit(sig); } static void install_segv_handler(void) { struct sigaction sa; memset(&sa, 0, sizeof(sa)); sa.sa_sigaction = segv_handler; sa.sa_flags = SA_NODEFER | SA_SIGINFO; sigaction(SIGSEGV, &sa, NULL); sigaction(SIGBUS, &sa, NULL); } #define NONFAILING(...) \ ({ \ int ok = 1; \ __atomic_fetch_add(&skip_segv, 1, __ATOMIC_SEQ_CST); \ if (_setjmp(segv_env) == 0) { \ __VA_ARGS__; \ } else \ ok = 0; \ __atomic_fetch_sub(&skip_segv, 1, __ATOMIC_SEQ_CST); \ ok; \ }) static void kill_and_wait(int pid, int* status) { kill(pid, SIGKILL); while (waitpid(-1, status, 0) != pid) { } } 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 use_temporary_dir(void) { char tmpdir_template[] = "./syzkaller.XXXXXX"; char* tmpdir = mkdtemp(tmpdir_template); if (!tmpdir) exit(1); if (chmod(tmpdir, 0777)) exit(1); if (chdir(tmpdir)) exit(1); } static void __attribute__((noinline)) remove_dir(const char* dir) { DIR* dp = opendir(dir); if (dp == NULL) { if (errno == EACCES) { if (rmdir(dir)) exit(1); return; } exit(1); } struct dirent* ep = 0; while ((ep = readdir(dp))) { if (strcmp(ep->d_name, ".") == 0 || strcmp(ep->d_name, "..") == 0) continue; char filename[FILENAME_MAX]; snprintf(filename, sizeof(filename), "%s/%s", dir, ep->d_name); struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } if (unlink(filename)) exit(1); } closedir(dp); if (rmdir(dir)) exit(1); } 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 { pthread_mutex_t mu; pthread_cond_t cv; int state; } event_t; static void event_init(event_t* ev) { if (pthread_mutex_init(&ev->mu, 0)) exit(1); if (pthread_cond_init(&ev->cv, 0)) exit(1); ev->state = 0; } static void event_reset(event_t* ev) { ev->state = 0; } static void event_set(event_t* ev) { pthread_mutex_lock(&ev->mu); if (ev->state) exit(1); ev->state = 1; pthread_mutex_unlock(&ev->mu); pthread_cond_broadcast(&ev->cv); } static void event_wait(event_t* ev) { pthread_mutex_lock(&ev->mu); while (!ev->state) pthread_cond_wait(&ev->cv, &ev->mu); pthread_mutex_unlock(&ev->mu); } static int event_isset(event_t* ev) { pthread_mutex_lock(&ev->mu); int res = ev->state; pthread_mutex_unlock(&ev->mu); return res; } static int event_timedwait(event_t* ev, uint64_t timeout) { uint64_t start = current_time_ms(); uint64_t now = start; pthread_mutex_lock(&ev->mu); for (;;) { if (ev->state) break; uint64_t remain = timeout - (now - start); struct timespec ts; ts.tv_sec = remain / 1000; ts.tv_nsec = (remain % 1000) * 1000 * 1000; pthread_cond_timedwait(&ev->cv, &ev->mu, &ts); now = current_time_ms(); if (now - start > timeout) break; } int res = ev->state; pthread_mutex_unlock(&ev->mu); return res; } struct usb_endpoint_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint8_t bEndpointAddress; uint8_t bmAttributes; uint16_t wMaxPacketSize; uint8_t bInterval; uint8_t bRefresh; uint8_t bSynchAddress; } __attribute__((packed)); struct usb_device_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint16_t bcdUSB; uint8_t bDeviceClass; uint8_t bDeviceSubClass; uint8_t bDeviceProtocol; uint8_t bMaxPacketSize0; uint16_t idVendor; uint16_t idProduct; uint16_t bcdDevice; uint8_t iManufacturer; uint8_t iProduct; uint8_t iSerialNumber; uint8_t bNumConfigurations; } __attribute__((packed)); struct usb_config_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint16_t wTotalLength; uint8_t bNumInterfaces; uint8_t bConfigurationValue; uint8_t iConfiguration; uint8_t bmAttributes; uint8_t bMaxPower; } __attribute__((packed)); struct usb_interface_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bNumEndpoints; uint8_t bInterfaceClass; uint8_t bInterfaceSubClass; uint8_t bInterfaceProtocol; uint8_t iInterface; } __attribute__((packed)); struct usb_ctrlrequest { uint8_t bRequestType; uint8_t bRequest; uint16_t wValue; uint16_t wIndex; uint16_t wLength; } __attribute__((packed)); struct usb_qualifier_descriptor { uint8_t bLength; uint8_t bDescriptorType; uint16_t bcdUSB; uint8_t bDeviceClass; uint8_t bDeviceSubClass; uint8_t bDeviceProtocol; uint8_t bMaxPacketSize0; uint8_t bNumConfigurations; uint8_t bRESERVED; } __attribute__((packed)); #define USB_TYPE_MASK (0x03 << 5) #define USB_TYPE_STANDARD (0x00 << 5) #define USB_TYPE_CLASS (0x01 << 5) #define USB_TYPE_VENDOR (0x02 << 5) #define USB_TYPE_RESERVED (0x03 << 5) #define USB_DT_DEVICE 0x01 #define USB_DT_CONFIG 0x02 #define USB_DT_STRING 0x03 #define USB_DT_INTERFACE 0x04 #define USB_DT_ENDPOINT 0x05 #define USB_DT_DEVICE_QUALIFIER 0x06 #define USB_DT_OTHER_SPEED_CONFIG 0x07 #define USB_DT_INTERFACE_POWER 0x08 #define USB_DT_OTG 0x09 #define USB_DT_DEBUG 0x0a #define USB_DT_INTERFACE_ASSOCIATION 0x0b #define USB_DT_SECURITY 0x0c #define USB_DT_KEY 0x0d #define USB_DT_ENCRYPTION_TYPE 0x0e #define USB_DT_BOS 0x0f #define USB_DT_DEVICE_CAPABILITY 0x10 #define USB_DT_WIRELESS_ENDPOINT_COMP 0x11 #define USB_DT_WIRE_ADAPTER 0x21 #define USB_DT_RPIPE 0x22 #define USB_DT_CS_RADIO_CONTROL 0x23 #define USB_DT_PIPE_USAGE 0x24 #define USB_DT_SS_ENDPOINT_COMP 0x30 #define USB_DT_SSP_ISOC_ENDPOINT_COMP 0x31 #define USB_REQ_GET_STATUS 0x00 #define USB_REQ_CLEAR_FEATURE 0x01 #define USB_REQ_SET_FEATURE 0x03 #define USB_REQ_SET_ADDRESS 0x05 #define USB_REQ_GET_DESCRIPTOR 0x06 #define USB_REQ_SET_DESCRIPTOR 0x07 #define USB_REQ_GET_CONFIGURATION 0x08 #define USB_REQ_SET_CONFIGURATION 0x09 #define USB_REQ_GET_INTERFACE 0x0A #define USB_REQ_SET_INTERFACE 0x0B #define USB_REQ_SYNCH_FRAME 0x0C #define USB_REQ_SET_SEL 0x30 #define USB_REQ_SET_ISOCH_DELAY 0x31 #define USB_REQ_SET_ENCRYPTION 0x0D #define USB_REQ_GET_ENCRYPTION 0x0E #define USB_REQ_RPIPE_ABORT 0x0E #define USB_REQ_SET_HANDSHAKE 0x0F #define USB_REQ_RPIPE_RESET 0x0F #define USB_REQ_GET_HANDSHAKE 0x10 #define USB_REQ_SET_CONNECTION 0x11 #define USB_REQ_SET_SECURITY_DATA 0x12 #define USB_REQ_GET_SECURITY_DATA 0x13 #define USB_REQ_SET_WUSB_DATA 0x14 #define USB_REQ_LOOPBACK_DATA_WRITE 0x15 #define USB_REQ_LOOPBACK_DATA_READ 0x16 #define USB_REQ_SET_INTERFACE_DS 0x17 #define USB_REQ_GET_PARTNER_PDO 20 #define USB_REQ_GET_BATTERY_STATUS 21 #define USB_REQ_SET_PDO 22 #define USB_REQ_GET_VDM 23 #define USB_REQ_SEND_VDM 24 #define USB_MAX_IFACE_NUM 4 #define USB_MAX_EP_NUM 32 #define USB_MAX_FDS 6 struct usb_endpoint_index { struct usb_endpoint_descriptor desc; int handle; }; struct usb_iface_index { struct usb_interface_descriptor* iface; uint8_t bInterfaceNumber; uint8_t bAlternateSetting; uint8_t bInterfaceClass; struct usb_endpoint_index eps[USB_MAX_EP_NUM]; int eps_num; }; struct usb_device_index { struct usb_device_descriptor* dev; struct usb_config_descriptor* config; uint8_t bDeviceClass; uint8_t bMaxPower; int config_length; struct usb_iface_index ifaces[USB_MAX_IFACE_NUM]; int ifaces_num; int iface_cur; }; struct usb_info { int fd; struct usb_device_index index; }; static struct usb_info usb_devices[USB_MAX_FDS]; static int usb_devices_num; static bool parse_usb_descriptor(const char* buffer, size_t length, struct usb_device_index* index) { if (length < sizeof(*index->dev) + sizeof(*index->config)) return false; memset(index, 0, sizeof(*index)); index->dev = (struct usb_device_descriptor*)buffer; index->config = (struct usb_config_descriptor*)(buffer + sizeof(*index->dev)); index->bDeviceClass = index->dev->bDeviceClass; index->bMaxPower = index->config->bMaxPower; index->config_length = length - sizeof(*index->dev); index->iface_cur = -1; size_t offset = 0; while (true) { if (offset + 1 >= length) break; uint8_t desc_length = buffer[offset]; uint8_t desc_type = buffer[offset + 1]; if (desc_length <= 2) break; if (offset + desc_length > length) break; if (desc_type == USB_DT_INTERFACE && index->ifaces_num < USB_MAX_IFACE_NUM) { struct usb_interface_descriptor* iface = (struct usb_interface_descriptor*)(buffer + offset); index->ifaces[index->ifaces_num].iface = iface; index->ifaces[index->ifaces_num].bInterfaceNumber = iface->bInterfaceNumber; index->ifaces[index->ifaces_num].bAlternateSetting = iface->bAlternateSetting; index->ifaces[index->ifaces_num].bInterfaceClass = iface->bInterfaceClass; index->ifaces_num++; } if (desc_type == USB_DT_ENDPOINT && index->ifaces_num > 0) { struct usb_iface_index* iface = &index->ifaces[index->ifaces_num - 1]; if (iface->eps_num < USB_MAX_EP_NUM) { memcpy(&iface->eps[iface->eps_num].desc, buffer + offset, sizeof(iface->eps[iface->eps_num].desc)); iface->eps_num++; } } offset += desc_length; } return true; } static struct usb_device_index* add_usb_index(int fd, const char* dev, size_t dev_len) { int i = __atomic_fetch_add(&usb_devices_num, 1, __ATOMIC_RELAXED); if (i >= USB_MAX_FDS) return NULL; if (!parse_usb_descriptor(dev, dev_len, &usb_devices[i].index)) return NULL; __atomic_store_n(&usb_devices[i].fd, fd, __ATOMIC_RELEASE); return &usb_devices[i].index; } static struct usb_device_index* lookup_usb_index(int fd) { for (int i = 0; i < USB_MAX_FDS; i++) { if (__atomic_load_n(&usb_devices[i].fd, __ATOMIC_ACQUIRE) == fd) return &usb_devices[i].index; } return NULL; } struct vusb_connect_string_descriptor { uint32_t len; char* str; } __attribute__((packed)); struct vusb_connect_descriptors { uint32_t qual_len; char* qual; uint32_t bos_len; char* bos; uint32_t strs_len; struct vusb_connect_string_descriptor strs[0]; } __attribute__((packed)); static const char default_string[] = {8, USB_DT_STRING, 's', 0, 'y', 0, 'z', 0}; static const char default_lang_id[] = {4, USB_DT_STRING, 0x09, 0x04}; static bool lookup_connect_response_in(int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, char** response_data, uint32_t* response_length) { struct usb_device_index* index = lookup_usb_index(fd); uint8_t str_idx; if (!index) return false; switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_GET_DESCRIPTOR: switch (ctrl->wValue >> 8) { case USB_DT_DEVICE: *response_data = (char*)index->dev; *response_length = sizeof(*index->dev); return true; case USB_DT_CONFIG: *response_data = (char*)index->config; *response_length = index->config_length; return true; case USB_DT_STRING: str_idx = (uint8_t)ctrl->wValue; if (descs && str_idx < descs->strs_len) { *response_data = descs->strs[str_idx].str; *response_length = descs->strs[str_idx].len; return true; } if (str_idx == 0) { *response_data = (char*)&default_lang_id[0]; *response_length = default_lang_id[0]; return true; } *response_data = (char*)&default_string[0]; *response_length = default_string[0]; return true; case USB_DT_BOS: *response_data = descs->bos; *response_length = descs->bos_len; return true; case USB_DT_DEVICE_QUALIFIER: if (!descs->qual) { struct usb_qualifier_descriptor* qual = (struct usb_qualifier_descriptor*)response_data; qual->bLength = sizeof(*qual); qual->bDescriptorType = USB_DT_DEVICE_QUALIFIER; qual->bcdUSB = index->dev->bcdUSB; qual->bDeviceClass = index->dev->bDeviceClass; qual->bDeviceSubClass = index->dev->bDeviceSubClass; qual->bDeviceProtocol = index->dev->bDeviceProtocol; qual->bMaxPacketSize0 = index->dev->bMaxPacketSize0; qual->bNumConfigurations = index->dev->bNumConfigurations; qual->bRESERVED = 0; *response_length = sizeof(*qual); return true; } *response_data = descs->qual; *response_length = descs->qual_len; return true; default: break; } break; default: break; } break; default: break; } return false; } typedef bool (*lookup_connect_out_response_t)( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done); static bool lookup_connect_response_out_generic( int fd, const struct vusb_connect_descriptors* descs, const struct usb_ctrlrequest* ctrl, bool* done) { switch (ctrl->bRequestType & USB_TYPE_MASK) { case USB_TYPE_STANDARD: switch (ctrl->bRequest) { case USB_REQ_SET_CONFIGURATION: *done = true; return true; default: break; } break; } return false; } static int vhci_open(void) { char path[1024]; snprintf(path, sizeof(path), "/dev/vhci%llu", procid); return open(path, O_RDWR); } static int vhci_setport(int fd, u_int port) { struct vhci_ioc_set_port args; args.port = port; return ioctl(fd, VHCI_IOC_SET_PORT, &args); } static int vhci_usb_attach(int fd) { return ioctl(fd, VHCI_IOC_USB_ATTACH, NULL); } static int vhci_usb_recv(int fd, void* buf, size_t size) { uint8_t* ptr = (uint8_t*)buf; while (1) { ssize_t done = read(fd, ptr, size); if (done < 0) return -1; if ((size_t)done == size) return 0; size -= done; ptr += done; } } static int vhci_usb_send(int fd, void* buf, size_t size) { uint8_t* ptr = (uint8_t*)buf; while (1) { ssize_t done = write(fd, ptr, size); if (done <= 0) return -1; if ((size_t)done == size) return 0; size -= done; ptr += done; } } static volatile long syz_usb_connect_impl(int fd, uint64_t speed, uint64_t dev_len, const char* dev, const struct vusb_connect_descriptors* descs, lookup_connect_out_response_t lookup_connect_response_out) { struct usb_device_index* index = add_usb_index(fd, dev, dev_len); if (!index) { return -1; } if (vhci_setport(fd, 1)) exit(1); if (vhci_usb_attach(fd)) { return -1; } bool done = false; while (!done) { vhci_request_t req; if (vhci_usb_recv(fd, &req, sizeof(req))) { return -1; } if (req.type != VHCI_REQ_CTRL) { return -1; } char* response_data = NULL; uint32_t response_length = 0; char data[4096]; if (req.u.ctrl.bmRequestType & UE_DIR_IN) { if (!lookup_connect_response_in( fd, descs, (const struct usb_ctrlrequest*)&req.u.ctrl, &response_data, &response_length)) { return -1; } } else { if (!lookup_connect_response_out( fd, descs, (const struct usb_ctrlrequest*)&req.u.ctrl, &done)) { return -1; } response_data = NULL; response_length = UGETW(req.u.ctrl.wLength); } if ((req.u.ctrl.bmRequestType & USB_TYPE_MASK) == USB_TYPE_STANDARD && req.u.ctrl.bRequest == USB_REQ_SET_CONFIGURATION) { } if (response_length > sizeof(data)) response_length = 0; if ((uint32_t)UGETW(req.u.ctrl.wLength) < response_length) response_length = UGETW(req.u.ctrl.wLength); if (response_data) memcpy(data, response_data, response_length); else memset(data, 0, response_length); int rv = 0; if (req.u.ctrl.bmRequestType & UE_DIR_IN) { if (response_length > 0) { vhci_response_t res; res.size = response_length; rv = vhci_usb_send(fd, &res, sizeof(res)); if (rv == 0) rv = vhci_usb_send(fd, data, response_length); } } else { rv = vhci_usb_recv(fd, data, response_length); } if (rv < 0) { return -1; } } sleep_ms(200); return fd; } static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatile long a2, volatile long a3) { uint64_t speed = a0; uint64_t dev_len = a1; const char* dev = (const char*)a2; const struct vusb_connect_descriptors* descs = (const struct vusb_connect_descriptors*)a3; if (!dev) { return -1; } int fd = vhci_open(); if (fd < 0) exit(1); long res = syz_usb_connect_impl(fd, speed, dev_len, dev, descs, &lookup_connect_response_out_generic); close(fd); return res; } static void sandbox_common() { struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = 8 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); } static void loop(); static int do_sandbox_none(void) { sandbox_common(); loop(); return 0; } 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 execute_one(void) { int i, call, thread; for (call = 0; call < 8; call++) { for (thread = 0; thread < (int)(sizeof(threads) / sizeof(threads[0])); thread++) { struct thread_t* th = &threads[thread]; if (!th->created) { th->created = 1; event_init(&th->ready); event_init(&th->done); event_set(&th->done); thread_start(thr, th); } if (!event_isset(&th->done)) continue; event_reset(&th->done); th->call = call; __atomic_fetch_add(&running, 1, __ATOMIC_RELAXED); event_set(&th->ready); if (call == 2 || call == 4 || call == 6) break; event_timedwait(&th->done, 50 + (call == 2 ? 3000 : 0) + (call == 4 ? 3000 : 0) + (call == 5 ? 3000 : 0) + (call == 6 ? 3000 : 0)); break; } } for (i = 0; i < 100 && __atomic_load_n(&running, __ATOMIC_RELAXED); i++) sleep_ms(1); } static void execute_one(void); #define WAIT_FLAGS 0 static void loop(void) { int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); execute_one(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } uint64_t r[1] = {0xffffffffffffffff}; void execute_call(int call) { intptr_t res = 0; switch (call) { case 0: res = syscall(SYS_compat_30_fhopen, 0ul, 0x40000ul); if (res != -1) r[0] = res; break; case 1: syscall(SYS_fsync, r[0]); break; case 2: NONFAILING(*(uint8_t*)0x20000700 = 0x12); NONFAILING(*(uint8_t*)0x20000701 = 1); NONFAILING(*(uint16_t*)0x20000702 = 0x250); NONFAILING(*(uint8_t*)0x20000704 = 2); NONFAILING(*(uint8_t*)0x20000705 = 0); NONFAILING(*(uint8_t*)0x20000706 = 0); NONFAILING(*(uint8_t*)0x20000707 = 0x10); NONFAILING(*(uint16_t*)0x20000708 = 0x525); NONFAILING(*(uint16_t*)0x2000070a = 0xa4a1); NONFAILING(*(uint16_t*)0x2000070c = 0x40); NONFAILING(*(uint8_t*)0x2000070e = 1); NONFAILING(*(uint8_t*)0x2000070f = 2); NONFAILING(*(uint8_t*)0x20000710 = 3); NONFAILING(*(uint8_t*)0x20000711 = 1); NONFAILING(*(uint8_t*)0x20000712 = 9); NONFAILING(*(uint8_t*)0x20000713 = 2); NONFAILING(*(uint16_t*)0x20000714 = 0x7d); NONFAILING(*(uint8_t*)0x20000716 = 2); NONFAILING(*(uint8_t*)0x20000717 = 1); NONFAILING(*(uint8_t*)0x20000718 = 0x1f); NONFAILING(*(uint8_t*)0x20000719 = 0x40); NONFAILING(*(uint8_t*)0x2000071a = 1); NONFAILING(*(uint8_t*)0x2000071b = 9); NONFAILING(*(uint8_t*)0x2000071c = 4); NONFAILING(*(uint8_t*)0x2000071d = 0); NONFAILING(*(uint8_t*)0x2000071e = 0); NONFAILING(*(uint8_t*)0x2000071f = 1); NONFAILING(*(uint8_t*)0x20000720 = 2); NONFAILING(*(uint8_t*)0x20000721 = 0xd); NONFAILING(*(uint8_t*)0x20000722 = 0); NONFAILING(*(uint8_t*)0x20000723 = 0); NONFAILING(*(uint8_t*)0x20000724 = 5); NONFAILING(*(uint8_t*)0x20000725 = 0x24); NONFAILING(*(uint8_t*)0x20000726 = 6); NONFAILING(*(uint8_t*)0x20000727 = 0); NONFAILING(*(uint8_t*)0x20000728 = 1); NONFAILING(*(uint8_t*)0x20000729 = 5); NONFAILING(*(uint8_t*)0x2000072a = 0x24); NONFAILING(*(uint8_t*)0x2000072b = 0); NONFAILING(*(uint16_t*)0x2000072c = 1); NONFAILING(*(uint8_t*)0x2000072e = 0xd); NONFAILING(*(uint8_t*)0x2000072f = 0x24); NONFAILING(*(uint8_t*)0x20000730 = 0xf); NONFAILING(*(uint8_t*)0x20000731 = 1); NONFAILING(*(uint32_t*)0x20000732 = -1); NONFAILING(*(uint16_t*)0x20000736 = 0xa59); NONFAILING(*(uint16_t*)0x20000738 = 3); NONFAILING(*(uint8_t*)0x2000073a = 0x65); NONFAILING(*(uint8_t*)0x2000073b = 6); NONFAILING(*(uint8_t*)0x2000073c = 0x24); NONFAILING(*(uint8_t*)0x2000073d = 0x1a); NONFAILING(*(uint16_t*)0x2000073e = 0xfffb); NONFAILING(*(uint8_t*)0x20000740 = 4); NONFAILING(*(uint8_t*)0x20000741 = 5); NONFAILING(*(uint8_t*)0x20000742 = 0x24); NONFAILING(*(uint8_t*)0x20000743 = 1); NONFAILING(*(uint8_t*)0x20000744 = 2); NONFAILING(*(uint8_t*)0x20000745 = 0xbd); NONFAILING(*(uint8_t*)0x20000746 = 0xc); NONFAILING(*(uint8_t*)0x20000747 = 0x24); NONFAILING(*(uint8_t*)0x20000748 = 7); NONFAILING(*(uint8_t*)0x20000749 = 0xc0); NONFAILING(*(uint16_t*)0x2000074a = 0x200); NONFAILING(*(uint16_t*)0x2000074c = 0x400); NONFAILING(*(uint16_t*)0x2000074e = 8); NONFAILING(*(uint16_t*)0x20000750 = 0x562f); NONFAILING(*(uint8_t*)0x20000752 = 4); NONFAILING(*(uint8_t*)0x20000753 = 0x24); NONFAILING(*(uint8_t*)0x20000754 = 0x13); NONFAILING(*(uint8_t*)0x20000755 = 6); NONFAILING(*(uint8_t*)0x20000756 = 5); NONFAILING(*(uint8_t*)0x20000757 = 0x24); NONFAILING(*(uint8_t*)0x20000758 = 1); NONFAILING(*(uint8_t*)0x20000759 = 2); NONFAILING(*(uint8_t*)0x2000075a = 1); NONFAILING(*(uint8_t*)0x2000075b = 7); NONFAILING(*(uint8_t*)0x2000075c = 0x24); NONFAILING(*(uint8_t*)0x2000075d = 0x14); NONFAILING(*(uint16_t*)0x2000075e = 0xd8d8); NONFAILING(*(uint16_t*)0x20000760 = 0xfee6); NONFAILING(*(uint8_t*)0x20000762 = 9); NONFAILING(*(uint8_t*)0x20000763 = 5); NONFAILING(*(uint8_t*)0x20000764 = 0x81); NONFAILING(*(uint8_t*)0x20000765 = 3); NONFAILING(*(uint16_t*)0x20000766 = 0x20); NONFAILING(*(uint8_t*)0x20000768 = 0xfa); NONFAILING(*(uint8_t*)0x20000769 = 0xb3); NONFAILING(*(uint8_t*)0x2000076a = 5); NONFAILING(*(uint8_t*)0x2000076b = 9); NONFAILING(*(uint8_t*)0x2000076c = 4); NONFAILING(*(uint8_t*)0x2000076d = 1); NONFAILING(*(uint8_t*)0x2000076e = 0); NONFAILING(*(uint8_t*)0x2000076f = 0); NONFAILING(*(uint8_t*)0x20000770 = 2); NONFAILING(*(uint8_t*)0x20000771 = 0xd); NONFAILING(*(uint8_t*)0x20000772 = 0); NONFAILING(*(uint8_t*)0x20000773 = 0); NONFAILING(*(uint8_t*)0x20000774 = 9); NONFAILING(*(uint8_t*)0x20000775 = 4); NONFAILING(*(uint8_t*)0x20000776 = 1); NONFAILING(*(uint8_t*)0x20000777 = 1); NONFAILING(*(uint8_t*)0x20000778 = 2); NONFAILING(*(uint8_t*)0x20000779 = 2); NONFAILING(*(uint8_t*)0x2000077a = 0xd); NONFAILING(*(uint8_t*)0x2000077b = 0); NONFAILING(*(uint8_t*)0x2000077c = 0); NONFAILING(*(uint8_t*)0x2000077d = 9); NONFAILING(*(uint8_t*)0x2000077e = 5); NONFAILING(*(uint8_t*)0x2000077f = 0x82); NONFAILING(*(uint8_t*)0x20000780 = 2); NONFAILING(*(uint16_t*)0x20000781 = 0x400); NONFAILING(*(uint8_t*)0x20000783 = 0); NONFAILING(*(uint8_t*)0x20000784 = 0x3f); NONFAILING(*(uint8_t*)0x20000785 = 0x12); NONFAILING(*(uint8_t*)0x20000786 = 9); NONFAILING(*(uint8_t*)0x20000787 = 5); NONFAILING(*(uint8_t*)0x20000788 = 3); NONFAILING(*(uint8_t*)0x20000789 = 2); NONFAILING(*(uint16_t*)0x2000078a = 0x200); NONFAILING(*(uint8_t*)0x2000078c = 9); NONFAILING(*(uint8_t*)0x2000078d = 0xe1); NONFAILING(*(uint8_t*)0x2000078e = 8); NONFAILING(syz_usb_connect(3, 0x8f, 0x20000700, 0)); break; case 3: syscall(SYS_compat_43_ommap, 0x20ffc000ul, 0x1000ul, 0ul, 0x800ul, -1, 2ul); break; case 4: NONFAILING(*(uint8_t*)0x20000ac0 = 0x12); NONFAILING(*(uint8_t*)0x20000ac1 = 1); NONFAILING(*(uint16_t*)0x20000ac2 = 0x201); NONFAILING(*(uint8_t*)0x20000ac4 = 2); NONFAILING(*(uint8_t*)0x20000ac5 = 0); NONFAILING(*(uint8_t*)0x20000ac6 = 0); NONFAILING(*(uint8_t*)0x20000ac7 = 0x40); NONFAILING(*(uint16_t*)0x20000ac8 = 0x525); NONFAILING(*(uint16_t*)0x20000aca = 0xa4a1); NONFAILING(*(uint16_t*)0x20000acc = 0x40); NONFAILING(*(uint8_t*)0x20000ace = 1); NONFAILING(*(uint8_t*)0x20000acf = 2); NONFAILING(*(uint8_t*)0x20000ad0 = 3); NONFAILING(*(uint8_t*)0x20000ad1 = 1); NONFAILING(*(uint8_t*)0x20000ad2 = 9); NONFAILING(*(uint8_t*)0x20000ad3 = 2); NONFAILING(*(uint16_t*)0x20000ad4 = 0x72); NONFAILING(*(uint8_t*)0x20000ad6 = 2); NONFAILING(*(uint8_t*)0x20000ad7 = 1); NONFAILING(*(uint8_t*)0x20000ad8 = 9); NONFAILING(*(uint8_t*)0x20000ad9 = 0); NONFAILING(*(uint8_t*)0x20000ada = 0xa3); NONFAILING(*(uint8_t*)0x20000adb = 9); NONFAILING(*(uint8_t*)0x20000adc = 4); NONFAILING(*(uint8_t*)0x20000add = 0); NONFAILING(*(uint8_t*)0x20000ade = 0); NONFAILING(*(uint8_t*)0x20000adf = 1); NONFAILING(*(uint8_t*)0x20000ae0 = 2); NONFAILING(*(uint8_t*)0x20000ae1 = 0xd); NONFAILING(*(uint8_t*)0x20000ae2 = 0); NONFAILING(*(uint8_t*)0x20000ae3 = 0); NONFAILING(*(uint8_t*)0x20000ae4 = 8); NONFAILING(*(uint8_t*)0x20000ae5 = 0x24); NONFAILING(*(uint8_t*)0x20000ae6 = 6); NONFAILING(*(uint8_t*)0x20000ae7 = 0); NONFAILING(*(uint8_t*)0x20000ae8 = 1); NONFAILING(memcpy((void*)0x20000ae9, "\xef\x1e\xed", 3)); NONFAILING(*(uint8_t*)0x20000aec = 5); NONFAILING(*(uint8_t*)0x20000aed = 0x24); NONFAILING(*(uint8_t*)0x20000aee = 0); NONFAILING(*(uint16_t*)0x20000aef = 0x594a); NONFAILING(*(uint8_t*)0x20000af1 = 0xd); NONFAILING(*(uint8_t*)0x20000af2 = 0x24); NONFAILING(*(uint8_t*)0x20000af3 = 0xf); NONFAILING(*(uint8_t*)0x20000af4 = 1); NONFAILING(*(uint32_t*)0x20000af5 = 0x80000000); NONFAILING(*(uint16_t*)0x20000af9 = 0x401); NONFAILING(*(uint16_t*)0x20000afb = 4); NONFAILING(*(uint8_t*)0x20000afd = 0x7f); NONFAILING(*(uint8_t*)0x20000afe = 6); NONFAILING(*(uint8_t*)0x20000aff = 0x24); NONFAILING(*(uint8_t*)0x20000b00 = 0x1a); NONFAILING(*(uint16_t*)0x20000b01 = 4); NONFAILING(*(uint8_t*)0x20000b03 = 0); NONFAILING(*(uint8_t*)0x20000b04 = 0xc); NONFAILING(*(uint8_t*)0x20000b05 = 0x24); NONFAILING(*(uint8_t*)0x20000b06 = 0x1b); NONFAILING(*(uint16_t*)0x20000b07 = 8); NONFAILING(*(uint16_t*)0x20000b09 = 7); NONFAILING(*(uint8_t*)0x20000b0b = 9); NONFAILING(*(uint8_t*)0x20000b0c = 0x3f); NONFAILING(*(uint16_t*)0x20000b0d = 0xec5); NONFAILING(*(uint8_t*)0x20000b0f = 0xd4); NONFAILING(*(uint8_t*)0x20000b10 = 7); NONFAILING(*(uint8_t*)0x20000b11 = 0x24); NONFAILING(*(uint8_t*)0x20000b12 = 0xa); NONFAILING(*(uint8_t*)0x20000b13 = 6); NONFAILING(*(uint8_t*)0x20000b14 = 0x6f); NONFAILING(*(uint8_t*)0x20000b15 = 3); NONFAILING(*(uint8_t*)0x20000b16 = 0); NONFAILING(*(uint8_t*)0x20000b17 = 9); NONFAILING(*(uint8_t*)0x20000b18 = 5); NONFAILING(*(uint8_t*)0x20000b19 = 0x81); NONFAILING(*(uint8_t*)0x20000b1a = 3); NONFAILING(*(uint16_t*)0x20000b1b = 0x40); NONFAILING(*(uint8_t*)0x20000b1d = 1); NONFAILING(*(uint8_t*)0x20000b1e = 0x66); NONFAILING(*(uint8_t*)0x20000b1f = 0); NONFAILING(*(uint8_t*)0x20000b20 = 9); NONFAILING(*(uint8_t*)0x20000b21 = 4); NONFAILING(*(uint8_t*)0x20000b22 = 1); NONFAILING(*(uint8_t*)0x20000b23 = 0); NONFAILING(*(uint8_t*)0x20000b24 = 0); NONFAILING(*(uint8_t*)0x20000b25 = 2); NONFAILING(*(uint8_t*)0x20000b26 = 0xd); NONFAILING(*(uint8_t*)0x20000b27 = 0); NONFAILING(*(uint8_t*)0x20000b28 = 0); NONFAILING(*(uint8_t*)0x20000b29 = 9); NONFAILING(*(uint8_t*)0x20000b2a = 4); NONFAILING(*(uint8_t*)0x20000b2b = 1); NONFAILING(*(uint8_t*)0x20000b2c = 1); NONFAILING(*(uint8_t*)0x20000b2d = 2); NONFAILING(*(uint8_t*)0x20000b2e = 2); NONFAILING(*(uint8_t*)0x20000b2f = 0xd); NONFAILING(*(uint8_t*)0x20000b30 = 0); NONFAILING(*(uint8_t*)0x20000b31 = 0); NONFAILING(*(uint8_t*)0x20000b32 = 9); NONFAILING(*(uint8_t*)0x20000b33 = 5); NONFAILING(*(uint8_t*)0x20000b34 = 0x82); NONFAILING(*(uint8_t*)0x20000b35 = 2); NONFAILING(*(uint16_t*)0x20000b36 = 0x20); NONFAILING(*(uint8_t*)0x20000b38 = 2); NONFAILING(*(uint8_t*)0x20000b39 = 8); NONFAILING(*(uint8_t*)0x20000b3a = 0xcd); NONFAILING(*(uint8_t*)0x20000b3b = 9); NONFAILING(*(uint8_t*)0x20000b3c = 5); NONFAILING(*(uint8_t*)0x20000b3d = 3); NONFAILING(*(uint8_t*)0x20000b3e = 2); NONFAILING(*(uint16_t*)0x20000b3f = 0x200); NONFAILING(*(uint8_t*)0x20000b41 = 1); NONFAILING(*(uint8_t*)0x20000b42 = 0); NONFAILING(*(uint8_t*)0x20000b43 = -1); NONFAILING(*(uint32_t*)0x20000c80 = 0); NONFAILING(*(uint64_t*)0x20000c84 = 0); NONFAILING(*(uint32_t*)0x20000c8c = 0); NONFAILING(*(uint64_t*)0x20000c90 = 0); NONFAILING(*(uint32_t*)0x20000c98 = 1); NONFAILING(*(uint32_t*)0x20000c9c = 0); NONFAILING(*(uint64_t*)0x20000ca0 = 0); NONFAILING(syz_usb_connect(5, 0x84, 0x20000ac0, 0x20000c80)); { int i; for (i = 0; i < 32; i++) { NONFAILING(syz_usb_connect(5, 0x84, 0x20000ac0, 0x20000c80)); } } break; case 5: NONFAILING(*(uint8_t*)0x20000cc0 = 0x12); NONFAILING(*(uint8_t*)0x20000cc1 = 1); NONFAILING(*(uint16_t*)0x20000cc2 = 0x201); NONFAILING(*(uint8_t*)0x20000cc4 = 0); NONFAILING(*(uint8_t*)0x20000cc5 = 0); NONFAILING(*(uint8_t*)0x20000cc6 = 0); NONFAILING(*(uint8_t*)0x20000cc7 = 0x10); NONFAILING(*(uint16_t*)0x20000cc8 = 0); NONFAILING(*(uint16_t*)0x20000cca = 0); NONFAILING(*(uint16_t*)0x20000ccc = 0); NONFAILING(*(uint8_t*)0x20000cce = 1); NONFAILING(*(uint8_t*)0x20000ccf = 2); NONFAILING(*(uint8_t*)0x20000cd0 = 3); NONFAILING(*(uint8_t*)0x20000cd1 = 1); NONFAILING(*(uint8_t*)0x20000cd2 = 9); NONFAILING(*(uint8_t*)0x20000cd3 = 2); NONFAILING(*(uint16_t*)0x20000cd4 = 0x817); NONFAILING(*(uint8_t*)0x20000cd6 = 4); NONFAILING(*(uint8_t*)0x20000cd7 = 1); NONFAILING(*(uint8_t*)0x20000cd8 = 0xf7); NONFAILING(*(uint8_t*)0x20000cd9 = 0xb0); NONFAILING(*(uint8_t*)0x20000cda = 0xb9); NONFAILING(*(uint8_t*)0x20000cdb = 9); NONFAILING(*(uint8_t*)0x20000cdc = 4); NONFAILING(*(uint8_t*)0x20000cdd = 1); NONFAILING(*(uint8_t*)0x20000cde = 3); NONFAILING(*(uint8_t*)0x20000cdf = 7); NONFAILING(*(uint8_t*)0x20000ce0 = 0); NONFAILING(*(uint8_t*)0x20000ce1 = 0); NONFAILING(*(uint8_t*)0x20000ce2 = 0); NONFAILING(*(uint8_t*)0x20000ce3 = 5); NONFAILING(*(uint8_t*)0x20000ce4 = 0xdc); NONFAILING(*(uint8_t*)0x20000ce5 = 0x23); NONFAILING(memcpy( (void*)0x20000ce6, "\x79\x0b\x70\x53\x46\x50\xa8\xbb\x5f\x57\xb1\x30\xa2\x6d\x88\x95\xb3" "\x8d\x9e\xfd\x71\x9d\xa5\x2b\x96\x29\x2d\x3a\x39\x28\x58\xf7\x13\xdd" "\x52\x02\xce\x0b\xad\xb2\x0e\x32\x48\xdb\x4c\x1a\x43\xaa\x47\x71\xd2" "\x53\x5b\xcb\x05\x52\xa4\xba\x5a\xa6\x14\x99\x3e\x9a\xee\x7f\x4e\x9e" "\xb5\x12\x2c\x39\x69\x72\xe3\x5a\x36\x29\x35\x52\x6c\x64\x70\x0c\x5a" "\x3f\xed\x4f\xdf\x18\x10\x01\xb5\xad\x0c\x38\x14\x33\xb9\x31\xbd\x78" "\x21\x69\x3c\x0b\x67\x0f\x5a\xa7\x84\xb1\x54\xf1\xfa\x35\x11\x85\x58" "\xbe\x52\xa9\x1a\x0c\x0e\x7c\x36\xde\xf5\x0a\xa3\x6f\x8a\x05\x81\x73" "\xe0\xaf\xe5\x7a\xbd\xbf\x5b\xa5\x8b\x7b\xa5\xad\xe4\xc2\x3c\x63\xe4" "\xab\x52\x43\xc7\x2c\x94\xc3\xce\x1e\x5f\xc2\x9b\x55\x55\x49\xeb\xe4" "\x9c\x53\x52\x3d\x03\x64\xdb\x7f\xd3\x95\xe7\x7c\xf1\x62\x26\xb5\xa8" "\x48\x7a\x78\x5b\x4e\x36\x60\x7c\x8f\x84\x24\xcf\x62\xe4\x4a\xa5\xb4" "\xca\x92\x1b\x12\xea\x66\x10\xc7\x2c\x5b\x72\xac\x60\xb4", 218)); NONFAILING(*(uint8_t*)0x20000dc0 = 9); NONFAILING(*(uint8_t*)0x20000dc1 = 5); NONFAILING(*(uint8_t*)0x20000dc2 = 0xa); NONFAILING(*(uint8_t*)0x20000dc3 = 4); NONFAILING(*(uint16_t*)0x20000dc4 = 0x200); NONFAILING(*(uint8_t*)0x20000dc6 = 0x3f); NONFAILING(*(uint8_t*)0x20000dc7 = 0x2b); NONFAILING(*(uint8_t*)0x20000dc8 = 9); NONFAILING(*(uint8_t*)0x20000dc9 = 0x62); NONFAILING(*(uint8_t*)0x20000dca = 0x10); NONFAILING(memcpy( (void*)0x20000dcb, "\x85\xa6\x63\x7b\xe7\x29\x90\x6b\xa4\xc0\x22\xc4\x93\xf4\x3d\x54\x97" "\x59\xb7\xe4\xaf\xa9\xa2\x08\xf6\xff\x4a\x0d\xca\x90\x39\xe8\x2e\x84" "\xb0\xab\xf5\x77\xc3\x24\xbf\x53\x1d\x03\xb5\x94\x94\xe5\x57\x90\x0b" "\x0d\xe5\xa2\x3c\xea\x75\x5e\x21\xd4\xae\xcd\xe9\x9f\x40\x48\x23\xf5" "\xbb\x4e\x2e\x7a\xa3\x95\xaa\x9b\xd9\x9a\x36\x9d\x8f\x13\x1a\xf4\x9d" "\x7c\xfd\x63\x15\x1c\xe0\x61\x14\xdd\x8f\x35", 96)); NONFAILING(*(uint8_t*)0x20000e2b = 0x91); NONFAILING(*(uint8_t*)0x20000e2c = 0); NONFAILING(memcpy( (void*)0x20000e2d, "\x9c\x71\x14\x0b\xfd\xd1\x51\x2d\x7c\x84\x8c\x42\x90\x2c\xeb\x8d\xfc" "\xac\x62\x71\xa7\xbe\x52\x8b\xfa\xb4\xa4\xd1\x39\x37\xf7\x9d\x28\x11" "\x56\xfa\x02\x5c\xf1\xc1\xcd\xdf\x4a\x33\x33\x36\x76\xea\xc2\x25\x6d" "\xa8\x8f\xa0\xae\xc7\x40\xa7\x73\x8b\xed\x62\xd5\x98\xf9\xd5\x88\x95" "\x2b\xd9\x8b\xcf\xb2\xe1\x75\x21\x74\x23\xc6\x16\x3c\x04\xfa\xe8\xa1" "\x45\xbb\x62\x7d\x04\x27\x47\x5c\xe8\xbb\xcb\x90\x3e\x36\xd4\x07\x90" "\xcf\x80\xd7\x69\x57\xed\xf9\x07\x95\x4d\xa8\x84\x1c\x2d\xa1\x90\xba" "\x68\xdf\x2e\xac\xe3\x3f\xef\x60\xdf\xe5\xb5\x2d\x85\x9d\x90\x56\x7f" "\x19\x12\xd5\x7f\x15\xf2\xae", 143)); NONFAILING(*(uint8_t*)0x20000ebc = 9); NONFAILING(*(uint8_t*)0x20000ebd = 5); NONFAILING(*(uint8_t*)0x20000ebe = 0xd); NONFAILING(*(uint8_t*)0x20000ebf = 0x10); NONFAILING(*(uint16_t*)0x20000ec0 = 8); NONFAILING(*(uint8_t*)0x20000ec2 = 4); NONFAILING(*(uint8_t*)0x20000ec3 = 0x20); NONFAILING(*(uint8_t*)0x20000ec4 = 0x4f); NONFAILING(*(uint8_t*)0x20000ec5 = 7); NONFAILING(*(uint8_t*)0x20000ec6 = 0x25); NONFAILING(*(uint8_t*)0x20000ec7 = 1); NONFAILING(*(uint8_t*)0x20000ec8 = 1); NONFAILING(*(uint8_t*)0x20000ec9 = 0x7f); NONFAILING(*(uint16_t*)0x20000eca = 0x7fff); NONFAILING(*(uint8_t*)0x20000ecc = 9); NONFAILING(*(uint8_t*)0x20000ecd = 5); NONFAILING(*(uint8_t*)0x20000ece = 4); NONFAILING(*(uint8_t*)0x20000ecf = 0x10); NONFAILING(*(uint16_t*)0x20000ed0 = 0x200); NONFAILING(*(uint8_t*)0x20000ed2 = 0x9d); NONFAILING(*(uint8_t*)0x20000ed3 = 0x62); NONFAILING(*(uint8_t*)0x20000ed4 = 8); NONFAILING(*(uint8_t*)0x20000ed5 = 9); NONFAILING(*(uint8_t*)0x20000ed6 = 5); NONFAILING(*(uint8_t*)0x20000ed7 = 0xd); NONFAILING(*(uint8_t*)0x20000ed8 = 0xc); NONFAILING(*(uint16_t*)0x20000ed9 = 0x3ff); NONFAILING(*(uint8_t*)0x20000edb = 0xf9); NONFAILING(*(uint8_t*)0x20000edc = 4); NONFAILING(*(uint8_t*)0x20000edd = 1); NONFAILING(*(uint8_t*)0x20000ede = 7); NONFAILING(*(uint8_t*)0x20000edf = 0x25); NONFAILING(*(uint8_t*)0x20000ee0 = 1); NONFAILING(*(uint8_t*)0x20000ee1 = 0); NONFAILING(*(uint8_t*)0x20000ee2 = 2); NONFAILING(*(uint16_t*)0x20000ee3 = 0x7f); NONFAILING(*(uint8_t*)0x20000ee5 = 9); NONFAILING(*(uint8_t*)0x20000ee6 = 5); NONFAILING(*(uint8_t*)0x20000ee7 = 8); NONFAILING(*(uint8_t*)0x20000ee8 = 0); NONFAILING(*(uint16_t*)0x20000ee9 = 8); NONFAILING(*(uint8_t*)0x20000eeb = 0x5d); NONFAILING(*(uint8_t*)0x20000eec = 0x40); NONFAILING(*(uint8_t*)0x20000eed = 1); NONFAILING(*(uint8_t*)0x20000eee = 7); NONFAILING(*(uint8_t*)0x20000eef = 0x25); NONFAILING(*(uint8_t*)0x20000ef0 = 1); NONFAILING(*(uint8_t*)0x20000ef1 = 3); NONFAILING(*(uint8_t*)0x20000ef2 = 0xf6); NONFAILING(*(uint16_t*)0x20000ef3 = 9); NONFAILING(*(uint8_t*)0x20000ef5 = 7); NONFAILING(*(uint8_t*)0x20000ef6 = 0x25); NONFAILING(*(uint8_t*)0x20000ef7 = 1); NONFAILING(*(uint8_t*)0x20000ef8 = 0x83); NONFAILING(*(uint8_t*)0x20000ef9 = 0); NONFAILING(*(uint16_t*)0x20000efa = 9); NONFAILING(*(uint8_t*)0x20000efc = 9); NONFAILING(*(uint8_t*)0x20000efd = 5); NONFAILING(*(uint8_t*)0x20000efe = 7); NONFAILING(*(uint8_t*)0x20000eff = 0); NONFAILING(*(uint16_t*)0x20000f00 = 0x200); NONFAILING(*(uint8_t*)0x20000f02 = 5); NONFAILING(*(uint8_t*)0x20000f03 = 0x1f); NONFAILING(*(uint8_t*)0x20000f04 = 8); NONFAILING(*(uint8_t*)0x20000f05 = 9); NONFAILING(*(uint8_t*)0x20000f06 = 5); NONFAILING(*(uint8_t*)0x20000f07 = 6); NONFAILING(*(uint8_t*)0x20000f08 = 2); NONFAILING(*(uint16_t*)0x20000f09 = 0x20); NONFAILING(*(uint8_t*)0x20000f0b = 0); NONFAILING(*(uint8_t*)0x20000f0c = 3); NONFAILING(*(uint8_t*)0x20000f0d = 8); NONFAILING(*(uint8_t*)0x20000f0e = 0x7c); NONFAILING(*(uint8_t*)0x20000f0f = 5); NONFAILING(memcpy( (void*)0x20000f10, "\x06\x65\x72\x6e\xcb\x32\x74\xa0\x35\x1f\xd5\x99\xae\x6c\x30\x34\x9f" "\xe4\x54\x70\x90\x57\x35\xb3\xed\x0f\x3f\x39\x61\xc4\x4f\x45\xc5\x27" "\xb7\x9a\xa8\x0c\x23\x94\x96\x41\xdd\xf2\x3b\x0c\x76\x3a\x30\x5a\x7b" "\x6a\x69\xbb\x4b\xe1\xa5\x4d\x9d\xc4\x66\x01\x0f\x1f\x49\x3a\xe5\x6d" "\xc5\xc0\x72\x33\x96\x9c\x98\xeb\xca\x73\x0a\x6d\xd0\x63\xbe\xc2\xd8" "\x94\xc5\x40\x50\xcf\xf3\x67\xef\xcc\x99\x88\xc6\xf4\xcf\x90\x57\xe0" "\xab\x9b\xc4\xc8\x08\x13\x3f\x61\xd2\x54\x5f\x53\x88\xde\x22\x92\xbf" "\xa2\x84\x00", 122)); NONFAILING(*(uint8_t*)0x20000f8a = 9); NONFAILING(*(uint8_t*)0x20000f8b = 4); NONFAILING(*(uint8_t*)0x20000f8c = 8); NONFAILING(*(uint8_t*)0x20000f8d = 0x3f); NONFAILING(*(uint8_t*)0x20000f8e = 6); NONFAILING(*(uint8_t*)0x20000f8f = 0); NONFAILING(*(uint8_t*)0x20000f90 = 0); NONFAILING(*(uint8_t*)0x20000f91 = 0); NONFAILING(*(uint8_t*)0x20000f92 = -1); NONFAILING(*(uint8_t*)0x20000f93 = 2); NONFAILING(*(uint8_t*)0x20000f94 = 0x10); NONFAILING(memcpy( (void*)0x20000f95, "\x8f\xeb\x9c\x13\xb4\xaa\xee\xe7\x53\x6c\xc5\xe5\x78\x15\x98\xe8\x36" "\xd2\x29\x3f\x60\x48\xdd\x86\xc2\x60\x13\x69\x50\xe9\x29\xf3\x96\x65" "\x35\x8c\xb2\x8c\xc2\x7b\xbe\xec\x97\x8d\x1e\xe2\x5a\x9d\x06\x62\x48" "\x70\x28\x2c\xd3\xca\x7a\x41\xdc\xb6\xb9\x14\xc8\x95\xd3\xc4\x20\x5b" "\x3f\x38\x95\x50\x7f\x69\x8a\x74\x33\x5b\xa0\xd4\x45\x93\x8d\xc0\x14" "\x41\xfd\xee\xe9\x4a\x2d\x9b\xff\xf9\x37\x99\x28\x2c\x07\x68\xe6\xc1" "\xbc\x9e\x9a\x25\x98\x4c\x26\x33\x4a\xd8\x9a\xd7\xfb\xc3\x59\xe7\xbc" "\xe1\x81\x84\xfc\x46\x37\xb2\x4b\x20\xd4\xeb\xcf\x59\xbb\xfd\x1e\xda" "\xa1\x2a\xed\xa3\x04\x3b\x2f\xb3\xd4\x47\xfa\xae\x23\xad\xf4\xa4\x8c" "\xe1\xe6\xe0\x7c\xe7\x55\xe2\x20\x7a\xd7\xb8\x07\xd4\x86\xa1\xbc\xd7" "\xf0\x3a\xfc\xd8\xc0\xb1\xfa\x83\x7c\x90\xca\xf6\x98\xfb\xfe\x2f\xdb" "\xb4\x21\x54\xb4\xa1\x3c\x61\x93\x60\xaa\x8b\x3f\xe8\xdf\x66\x55\xca" "\x74\x49\xe5\xa5\xe0\x97\x0f\xf2\x50\x5b\xba\xce\xd3\x6c\x90\xdd\xf6" "\xad\x44\x8b\xf1\x4e\xda\xaf\xbf\x1c\x44\x56\xb5\xd6\xde\xb4\x8a\x9f" "\x08\xa6\xc6\x69\xf6\x8a\xd3\x7d\x40\x5a\x7c\xa3\x69\x41\xa1\x1a\x49" "\x6b", 256)); NONFAILING(*(uint8_t*)0x20001095 = 0xa); NONFAILING(*(uint8_t*)0x20001096 = 0x24); NONFAILING(*(uint8_t*)0x20001097 = 1); NONFAILING(*(uint16_t*)0x20001098 = 3); NONFAILING(*(uint8_t*)0x2000109a = 0x56); NONFAILING(*(uint8_t*)0x2000109b = 2); NONFAILING(*(uint8_t*)0x2000109c = 1); NONFAILING(*(uint8_t*)0x2000109d = 2); NONFAILING(*(uint8_t*)0x2000109e = 0xb); NONFAILING(*(uint8_t*)0x2000109f = 0x24); NONFAILING(*(uint8_t*)0x200010a0 = 8); NONFAILING(*(uint8_t*)0x200010a1 = 6); NONFAILING(*(uint16_t*)0x200010a2 = 7); NONFAILING(*(uint8_t*)0x200010a4 = 8); NONFAILING(memcpy((void*)0x200010a5, "\xb2\xb2\x75\x4a", 4)); NONFAILING(*(uint8_t*)0x200010a9 = 9); NONFAILING(*(uint8_t*)0x200010aa = 5); NONFAILING(*(uint8_t*)0x200010ab = 6); NONFAILING(*(uint8_t*)0x200010ac = 0x10); NONFAILING(*(uint16_t*)0x200010ad = 0x400); NONFAILING(*(uint8_t*)0x200010af = 0x4e); NONFAILING(*(uint8_t*)0x200010b0 = 0xa8); NONFAILING(*(uint8_t*)0x200010b1 = 7); NONFAILING(*(uint8_t*)0x200010b2 = 0x76); NONFAILING(*(uint8_t*)0x200010b3 = 0x24); NONFAILING(memcpy( (void*)0x200010b4, "\x68\x16\x70\xd1\xf4\x77\xd6\xca\x92\xa6\x30\xa8\x54\x6c\x3d\xd3\x9b" "\xc1\x4c\xf5\x72\x42\xf7\x3b\x5f\xf5\xe0\xbc\xa9\xfd\x87\x61\x9d\x3c" "\x7f\x37\x63\xde\xb2\x0d\x9a\x5c\xd1\x20\xe8\xcd\xee\x0b\xc3\x13\x37" "\x7d\xd5\x71\x0c\x30\x9c\x7e\xbd\x97\x6a\x37\xd4\x01\x11\xd4\xcc\x68" "\x50\x7a\xfb\x15\x8d\x8b\x5a\xce\xb7\x13\xdf\x5e\x54\xbf\x63\x45\xe7" "\xe7\xc0\xf6\x61\x4a\x28\x07\x75\x9b\xac\x7d\xad\xba\x39\x50\x78\x67" "\x48\x41\x42\x14\xd5\xab\x12\xcf\xd6\xb1\x65\x81\x67\xf8", 116)); NONFAILING(*(uint8_t*)0x20001128 = 0xe9); NONFAILING(*(uint8_t*)0x20001129 = 0x23); NONFAILING(memcpy( (void*)0x2000112a, "\x29\xe5\x61\xe0\xf4\x4a\x7e\xec\xba\x87\xc6\x22\x6c\x6e\xd5\x34\x96" "\xca\x61\xd9\x97\x4b\x96\x8a\x6a\x58\x9d\x55\x35\x37\xcd\xc3\xdf\x5f" "\x9b\xf3\x30\x97\xbb\xd5\xa2\x1e\x64\xdf\x33\xfd\x72\x6e\x46\x01\xf9" "\x36\x92\xc1\x4d\x19\xe4\xe5\x1a\x72\x10\x81\xb4\xd7\x2f\x20\x1b\x04" "\xc0\x7e\xb2\x88\x8a\xdc\x00\xb6\x30\x14\x31\xd3\xf4\x8b\x61\x56\x9f" "\xe7\x4b\x63\xd1\x42\x19\x37\x9b\x29\x95\xc5\xd9\x37\xb3\x4f\x3c\x14" "\xe1\xbc\x2e\x0a\x84\x43\x09\x56\xf5\xaf\xfb\xea\xc2\xc6\xbb\x41\x71" "\x0a\x88\x03\x97\x15\x34\x30\xe5\x24\x8e\xe2\xa6\x29\x54\x21\xce\xcb" "\xf3\x2f\x5d\xc1\x44\x14\xe0\xa9\x03\x9c\x30\x06\xc3\xf0\x27\xfd\xe7" "\x06\xe4\x66\xb5\x2e\xb9\xe5\x52\x42\x53\x90\x3f\x60\xa6\xc5\x0b\x0b" "\x2b\x2d\x0e\x88\x35\x40\x05\x87\x83\x49\xc2\xb1\xa6\xd0\x20\x8d\xd2" "\x48\x72\xd0\xe8\x84\xac\xab\x49\xad\xf8\x5b\xa0\x55\x60\x30\x0f\x12" "\x93\xe4\xef\xe6\xc3\x3e\x01\x4f\x42\xee\x8b\x86\x7c\x19\x0f\xcf\xda" "\xad\xe7\x9a\x06\x4c\x64\x5e\xc7\xdf\x34", 231)); NONFAILING(*(uint8_t*)0x20001211 = 9); NONFAILING(*(uint8_t*)0x20001212 = 5); NONFAILING(*(uint8_t*)0x20001213 = 1); NONFAILING(*(uint8_t*)0x20001214 = 0x10); NONFAILING(*(uint16_t*)0x20001215 = 0x20); NONFAILING(*(uint8_t*)0x20001217 = 0x80); NONFAILING(*(uint8_t*)0x20001218 = 0); NONFAILING(*(uint8_t*)0x20001219 = -1); NONFAILING(*(uint8_t*)0x2000121a = 8); NONFAILING(*(uint8_t*)0x2000121b = 0x29); NONFAILING(memcpy((void*)0x2000121c, "\xb4\xa5\x02\x03\x84\xef", 6)); NONFAILING(*(uint8_t*)0x20001222 = 9); NONFAILING(*(uint8_t*)0x20001223 = 5); NONFAILING(*(uint8_t*)0x20001224 = 0xe); NONFAILING(*(uint8_t*)0x20001225 = 0); NONFAILING(*(uint16_t*)0x20001226 = 0x3f1a); NONFAILING(*(uint8_t*)0x20001228 = 0x8f); NONFAILING(*(uint8_t*)0x20001229 = 0xe4); NONFAILING(*(uint8_t*)0x2000122a = 9); NONFAILING(*(uint8_t*)0x2000122b = 0x74); NONFAILING(*(uint8_t*)0x2000122c = 0x21); NONFAILING(memcpy( (void*)0x2000122d, "\xc8\x1c\x1a\x33\x9c\x32\xd4\xdd\x3e\x7d\x3c\x18\xc4\x75\xdc\x5f\x33" "\x74\x40\xbc\xf5\xb2\xbf\xac\xb6\xe8\xf9\xcf\xab\x1b\xe5\x21\x93\x05" "\x86\xbc\xcc\xf1\xd8\x69\x73\x95\x75\x91\xe4\x05\xb5\xcb\x3f\x41\x77" "\x9c\x99\xf5\xfb\xaa\x91\xa9\x5d\x7f\x2b\xba\xb9\xa2\xce\x3c\x22\xcc" "\xbd\x63\x6f\xe6\x3d\x9a\xb1\x80\xe4\x71\xcf\x72\x6e\x72\xa4\x47\xb9" "\xf1\x07\x57\x5c\xc9\x79\x36\x3b\xb7\x21\xa5\x3a\x8f\x9b\xd8\x73\xc9" "\xbc\x7a\xbe\xbd\xa0\x77\x22\xbf\x57\xfa\xb8\x02", 114)); NONFAILING(*(uint8_t*)0x2000129f = 7); NONFAILING(*(uint8_t*)0x200012a0 = 0x25); NONFAILING(*(uint8_t*)0x200012a1 = 1); NONFAILING(*(uint8_t*)0x200012a2 = 0); NONFAILING(*(uint8_t*)0x200012a3 = 0); NONFAILING(*(uint16_t*)0x200012a4 = 0x3ff); NONFAILING(*(uint8_t*)0x200012a6 = 9); NONFAILING(*(uint8_t*)0x200012a7 = 5); NONFAILING(*(uint8_t*)0x200012a8 = 0xe); NONFAILING(*(uint8_t*)0x200012a9 = 0x10); NONFAILING(*(uint16_t*)0x200012aa = 0x200); NONFAILING(*(uint8_t*)0x200012ac = 0xfe); NONFAILING(*(uint8_t*)0x200012ad = 0); NONFAILING(*(uint8_t*)0x200012ae = 1); NONFAILING(*(uint8_t*)0x200012af = 9); NONFAILING(*(uint8_t*)0x200012b0 = 5); NONFAILING(*(uint8_t*)0x200012b1 = 0xf); NONFAILING(*(uint8_t*)0x200012b2 = 0x3a); NONFAILING(*(uint16_t*)0x200012b3 = 0x10); NONFAILING(*(uint8_t*)0x200012b5 = 8); NONFAILING(*(uint8_t*)0x200012b6 = 0x20); NONFAILING(*(uint8_t*)0x200012b7 = 0); NONFAILING(*(uint8_t*)0x200012b8 = 9); NONFAILING(*(uint8_t*)0x200012b9 = 5); NONFAILING(*(uint8_t*)0x200012ba = 6); NONFAILING(*(uint8_t*)0x200012bb = 0x10); NONFAILING(*(uint16_t*)0x200012bc = 0x20); NONFAILING(*(uint8_t*)0x200012be = 2); NONFAILING(*(uint8_t*)0x200012bf = 6); NONFAILING(*(uint8_t*)0x200012c0 = 0); NONFAILING(*(uint8_t*)0x200012c1 = 9); NONFAILING(*(uint8_t*)0x200012c2 = 4); NONFAILING(*(uint8_t*)0x200012c3 = 2); NONFAILING(*(uint8_t*)0x200012c4 = 0x26); NONFAILING(*(uint8_t*)0x200012c5 = 3); NONFAILING(*(uint8_t*)0x200012c6 = 0); NONFAILING(*(uint8_t*)0x200012c7 = 0); NONFAILING(*(uint8_t*)0x200012c8 = 0); NONFAILING(*(uint8_t*)0x200012c9 = 9); NONFAILING(*(uint8_t*)0x200012ca = 0xa); NONFAILING(*(uint8_t*)0x200012cb = 0x24); NONFAILING(*(uint8_t*)0x200012cc = 1); NONFAILING(*(uint16_t*)0x200012cd = 1); NONFAILING(*(uint8_t*)0x200012cf = 8); NONFAILING(*(uint8_t*)0x200012d0 = 2); NONFAILING(*(uint8_t*)0x200012d1 = 1); NONFAILING(*(uint8_t*)0x200012d2 = 2); NONFAILING(*(uint8_t*)0x200012d3 = 0xb); NONFAILING(*(uint8_t*)0x200012d4 = 0x24); NONFAILING(*(uint8_t*)0x200012d5 = 8); NONFAILING(*(uint8_t*)0x200012d6 = 4); NONFAILING(*(uint16_t*)0x200012d7 = 5); NONFAILING(*(uint8_t*)0x200012d9 = 1); NONFAILING(memcpy((void*)0x200012da, "{;d0", 4)); NONFAILING(*(uint8_t*)0x200012de = 9); NONFAILING(*(uint8_t*)0x200012df = 0x24); NONFAILING(*(uint8_t*)0x200012e0 = 3); NONFAILING(*(uint8_t*)0x200012e1 = 4); NONFAILING(*(uint16_t*)0x200012e2 = 0x302); NONFAILING(*(uint8_t*)0x200012e4 = 5); NONFAILING(*(uint8_t*)0x200012e5 = 3); NONFAILING(*(uint8_t*)0x200012e6 = 7); NONFAILING(*(uint8_t*)0x200012e7 = 0xd); NONFAILING(*(uint8_t*)0x200012e8 = 0x24); NONFAILING(*(uint8_t*)0x200012e9 = 8); NONFAILING(*(uint8_t*)0x200012ea = 3); NONFAILING(*(uint16_t*)0x200012eb = 0x5eb); NONFAILING(*(uint8_t*)0x200012ed = 0x40); NONFAILING(memcpy((void*)0x200012ee, "\xb2\xd9\xe1\xc5\x03\xba", 6)); NONFAILING(*(uint8_t*)0x200012f4 = 9); NONFAILING(*(uint8_t*)0x200012f5 = 0x24); NONFAILING(*(uint8_t*)0x200012f6 = 3); NONFAILING(*(uint8_t*)0x200012f7 = 4); NONFAILING(*(uint16_t*)0x200012f8 = 0x301); NONFAILING(*(uint8_t*)0x200012fa = 2); NONFAILING(*(uint8_t*)0x200012fb = 4); NONFAILING(*(uint8_t*)0x200012fc = 0x58); NONFAILING(*(uint8_t*)0x200012fd = 0x61); NONFAILING(*(uint8_t*)0x200012fe = 0x24); NONFAILING(memcpy( (void*)0x200012ff, "\x59\x8a\xcc\xaf\xba\x2f\xf7\xc7\xfe\x01\xc7\xf7\x6d\xd1\xbb\x42\xbc" "\x7f\xbd\xa4\x59\x83\x62\x58\x77\x6d\xd4\xa0\x55\x1a\x68\xab\x5b\x75" "\xa9\xa7\x62\x75\x85\xac\x16\x2a\xfa\x09\x3b\xfb\x07\x8c\x50\x92\xae" "\x5a\x8d\xb0\xa8\x86\xe2\xba\x99\xd0\x2f\xf0\xa8\x7d\x5a\xd4\x5f\x60" "\xc6\xd9\xe1\xb2\x04\xc5\xd1\xa4\x30\xab\xb1\x3a\xbe\x19\x96\xd8\x78" "\x17\x32\x46\xea\x45\x30\x6b\xb5\xc4\x16", 95)); NONFAILING(*(uint8_t*)0x2000135e = 9); NONFAILING(*(uint8_t*)0x2000135f = 5); NONFAILING(*(uint8_t*)0x20001360 = 8); NONFAILING(*(uint8_t*)0x20001361 = 1); NONFAILING(*(uint16_t*)0x20001362 = 0x20); NONFAILING(*(uint8_t*)0x20001364 = -1); NONFAILING(*(uint8_t*)0x20001365 = 0x7f); NONFAILING(*(uint8_t*)0x20001366 = 0x59); NONFAILING(*(uint8_t*)0x20001367 = 7); NONFAILING(*(uint8_t*)0x20001368 = 0x25); NONFAILING(*(uint8_t*)0x20001369 = 1); NONFAILING(*(uint8_t*)0x2000136a = 2); NONFAILING(*(uint8_t*)0x2000136b = 0); NONFAILING(*(uint16_t*)0x2000136c = 3); NONFAILING(*(uint8_t*)0x2000136e = 9); NONFAILING(*(uint8_t*)0x2000136f = 5); NONFAILING(*(uint8_t*)0x20001370 = 0); NONFAILING(*(uint8_t*)0x20001371 = 0x10); NONFAILING(*(uint16_t*)0x20001372 = 0x40); NONFAILING(*(uint8_t*)0x20001374 = 8); NONFAILING(*(uint8_t*)0x20001375 = 0x3f); NONFAILING(*(uint8_t*)0x20001376 = 0x1f); NONFAILING(*(uint8_t*)0x20001377 = 7); NONFAILING(*(uint8_t*)0x20001378 = 0x25); NONFAILING(*(uint8_t*)0x20001379 = 1); NONFAILING(*(uint8_t*)0x2000137a = 0x81); NONFAILING(*(uint8_t*)0x2000137b = 0x80); NONFAILING(*(uint16_t*)0x2000137c = 0x1f); NONFAILING(*(uint8_t*)0x2000137e = 9); NONFAILING(*(uint8_t*)0x2000137f = 5); NONFAILING(*(uint8_t*)0x20001380 = 0xb); NONFAILING(*(uint8_t*)0x20001381 = 0); NONFAILING(*(uint16_t*)0x20001382 = 0x20); NONFAILING(*(uint8_t*)0x20001384 = 0xa); NONFAILING(*(uint8_t*)0x20001385 = 1); NONFAILING(*(uint8_t*)0x20001386 = 8); NONFAILING(*(uint8_t*)0x20001387 = 7); NONFAILING(*(uint8_t*)0x20001388 = 0x25); NONFAILING(*(uint8_t*)0x20001389 = 1); NONFAILING(*(uint8_t*)0x2000138a = 1); NONFAILING(*(uint8_t*)0x2000138b = 3); NONFAILING(*(uint16_t*)0x2000138c = 9); NONFAILING(*(uint8_t*)0x2000138e = 0x6f); NONFAILING(*(uint8_t*)0x2000138f = 0xb); NONFAILING(memcpy( (void*)0x20001390, "\x99\x6a\x5d\x74\x92\xab\xfc\x22\x9d\xfa\x84\x34\x1c\x57\x9a\x55\x2e" "\xf3\x02\xd5\xed\xff\x5a\x0e\xbd\x36\xe7\x7e\x42\x66\x0a\xd1\x5c\xc2" "\x47\xc8\xab\xde\x7b\x0b\x6d\x75\xfe\xf4\xd9\x67\x4b\x95\x07\x04\x4f" "\x5b\xf0\xd4\x87\x51\x96\xe3\x0d\xf6\xac\xd2\x29\x82\x53\x9f\x70\xa5" "\x3d\xf3\x63\x88\xa5\x6a\x3c\x22\x01\x0e\xb2\xce\xf6\x8b\xe6\x5a\xb4" "\x26\x45\x7f\x7a\x62\x66\x58\x9d\x7d\x1e\xa1\x1e\x44\x8b\x04\xa5\x0d" "\xa7\x99\x81\xac\x9f\xb8\x5f", 109)); NONFAILING(*(uint8_t*)0x200013fd = 9); NONFAILING(*(uint8_t*)0x200013fe = 4); NONFAILING(*(uint8_t*)0x200013ff = 0xfd); NONFAILING(*(uint8_t*)0x20001400 = 0x89); NONFAILING(*(uint8_t*)0x20001401 = 6); NONFAILING(*(uint8_t*)0x20001402 = 0); NONFAILING(*(uint8_t*)0x20001403 = 0); NONFAILING(*(uint8_t*)0x20001404 = 0); NONFAILING(*(uint8_t*)0x20001405 = 6); NONFAILING(*(uint8_t*)0x20001406 = 9); NONFAILING(*(uint8_t*)0x20001407 = 5); NONFAILING(*(uint8_t*)0x20001408 = 3); NONFAILING(*(uint8_t*)0x20001409 = 3); NONFAILING(*(uint16_t*)0x2000140a = 0x400); NONFAILING(*(uint8_t*)0x2000140c = 8); NONFAILING(*(uint8_t*)0x2000140d = 0x65); NONFAILING(*(uint8_t*)0x2000140e = 9); NONFAILING(*(uint8_t*)0x2000140f = 7); NONFAILING(*(uint8_t*)0x20001410 = 0x25); NONFAILING(*(uint8_t*)0x20001411 = 1); NONFAILING(*(uint8_t*)0x20001412 = 0x82); NONFAILING(*(uint8_t*)0x20001413 = 8); NONFAILING(*(uint16_t*)0x20001414 = 1); NONFAILING(*(uint8_t*)0x20001416 = 7); NONFAILING(*(uint8_t*)0x20001417 = 0x25); NONFAILING(*(uint8_t*)0x20001418 = 1); NONFAILING(*(uint8_t*)0x20001419 = 0x80); NONFAILING(*(uint8_t*)0x2000141a = 0x3e); NONFAILING(*(uint16_t*)0x2000141b = 0); NONFAILING(*(uint8_t*)0x2000141d = 9); NONFAILING(*(uint8_t*)0x2000141e = 5); NONFAILING(*(uint8_t*)0x2000141f = 7); NONFAILING(*(uint8_t*)0x20001420 = 0x10); NONFAILING(*(uint16_t*)0x20001421 = 0x200); NONFAILING(*(uint8_t*)0x20001423 = 0xbf); NONFAILING(*(uint8_t*)0x20001424 = 2); NONFAILING(*(uint8_t*)0x20001425 = 0xda); NONFAILING(*(uint8_t*)0x20001426 = 9); NONFAILING(*(uint8_t*)0x20001427 = 5); NONFAILING(*(uint8_t*)0x20001428 = 0); NONFAILING(*(uint8_t*)0x20001429 = 0xc); NONFAILING(*(uint16_t*)0x2000142a = 0x400); NONFAILING(*(uint8_t*)0x2000142c = 0xa8); NONFAILING(*(uint8_t*)0x2000142d = -1); NONFAILING(*(uint8_t*)0x2000142e = 0x36); NONFAILING(*(uint8_t*)0x2000142f = 7); NONFAILING(*(uint8_t*)0x20001430 = 0x25); NONFAILING(*(uint8_t*)0x20001431 = 1); NONFAILING(*(uint8_t*)0x20001432 = 0); NONFAILING(*(uint8_t*)0x20001433 = 5); NONFAILING(*(uint16_t*)0x20001434 = 0x3f); NONFAILING(*(uint8_t*)0x20001436 = 9); NONFAILING(*(uint8_t*)0x20001437 = 5); NONFAILING(*(uint8_t*)0x20001438 = 0); NONFAILING(*(uint8_t*)0x20001439 = 8); NONFAILING(*(uint16_t*)0x2000143a = 0x200); NONFAILING(*(uint8_t*)0x2000143c = 0x10); NONFAILING(*(uint8_t*)0x2000143d = 0xc8); NONFAILING(*(uint8_t*)0x2000143e = 0x40); NONFAILING(*(uint8_t*)0x2000143f = 9); NONFAILING(*(uint8_t*)0x20001440 = 5); NONFAILING(*(uint8_t*)0x20001441 = 0xa); NONFAILING(*(uint8_t*)0x20001442 = 0xc); NONFAILING(*(uint16_t*)0x20001443 = 0x400); NONFAILING(*(uint8_t*)0x20001445 = 0x40); NONFAILING(*(uint8_t*)0x20001446 = 5); NONFAILING(*(uint8_t*)0x20001447 = 0x4f); NONFAILING(*(uint8_t*)0x20001448 = 0x3b); NONFAILING(*(uint8_t*)0x20001449 = 0x2d); NONFAILING( memcpy((void*)0x2000144a, "\xcb\x61\xe9\xfa\xc7\x5b\x92\x14\x26\x6d\xf8\xba\xfa\x09\x40" "\xad\x2b\xd6\xd7\x0f\xff\xff\xf2\xa3\x4d\x35\x6e\x85\x0e\xe1" "\x08\xae\x25\xd1\x3e\x4e\x12\xed\x8c\x2f\x49\x98\xe4\x79\xb3" "\x10\xf2\xe1\xc7\x65\x29\x4b\x6a\x56\xc7\x8f\x50", 57)); NONFAILING(*(uint8_t*)0x20001483 = 0x4f); NONFAILING(*(uint8_t*)0x20001484 = 3); NONFAILING(memcpy( (void*)0x20001485, "\xfb\x69\x39\x15\xfd\x77\xd1\x38\x49\xf4\x8e\xa8\xf9\xac\x0c\x8b\x47" "\x89\x45\x74\x34\xca\x5d\x7e\x13\x29\x83\x15\x35\x24\xa7\x93\x62\xf6" "\x31\xcb\x0c\xf6\x31\xd4\xdc\x2e\x05\x1a\x73\xde\x43\xbe\x2d\xab\xad" "\x1e\x7c\x75\xc6\xb0\xae\x57\x62\xeb\x3e\x70\x04\x41\x2f\xae\x3b\x84" "\xfe\xb1\x66\x27\xf0\xda\x6d\xc5\x00", 77)); NONFAILING(*(uint8_t*)0x200014d2 = 9); NONFAILING(*(uint8_t*)0x200014d3 = 5); NONFAILING(*(uint8_t*)0x200014d4 = 0xf); NONFAILING(*(uint8_t*)0x200014d5 = 4); NONFAILING(*(uint16_t*)0x200014d6 = 0x10); NONFAILING(*(uint8_t*)0x200014d8 = 0x80); NONFAILING(*(uint8_t*)0x200014d9 = 5); NONFAILING(*(uint8_t*)0x200014da = 0x9b); NONFAILING(*(uint8_t*)0x200014db = 7); NONFAILING(*(uint8_t*)0x200014dc = 0x25); NONFAILING(*(uint8_t*)0x200014dd = 1); NONFAILING(*(uint8_t*)0x200014de = 2); NONFAILING(*(uint8_t*)0x200014df = 8); NONFAILING(*(uint16_t*)0x200014e0 = 0x5ff8); NONFAILING(*(uint8_t*)0x200014e2 = 7); NONFAILING(*(uint8_t*)0x200014e3 = 0x25); NONFAILING(*(uint8_t*)0x200014e4 = 1); NONFAILING(*(uint8_t*)0x200014e5 = 2); NONFAILING(*(uint8_t*)0x200014e6 = 1); NONFAILING(*(uint16_t*)0x200014e7 = 0x101); NONFAILING(*(uint32_t*)0x20001740 = 0xa); NONFAILING(*(uint64_t*)0x20001744 = 0x20001500); NONFAILING(*(uint8_t*)0x20001500 = 0xa); NONFAILING(*(uint8_t*)0x20001501 = 6); NONFAILING(*(uint16_t*)0x20001502 = 0x201); NONFAILING(*(uint8_t*)0x20001504 = 1); NONFAILING(*(uint8_t*)0x20001505 = 0); NONFAILING(*(uint8_t*)0x20001506 = 0xf8); NONFAILING(*(uint8_t*)0x20001507 = 8); NONFAILING(*(uint8_t*)0x20001508 = 0x81); NONFAILING(*(uint8_t*)0x20001509 = 0); NONFAILING(*(uint32_t*)0x2000174c = 0); NONFAILING(*(uint64_t*)0x20001750 = 0); NONFAILING(*(uint32_t*)0x20001758 = 4); NONFAILING(*(uint32_t*)0x2000175c = 0); NONFAILING(*(uint64_t*)0x20001760 = 0); NONFAILING(*(uint32_t*)0x20001768 = 4); NONFAILING(*(uint64_t*)0x2000176c = 0x200015c0); NONFAILING(*(uint8_t*)0x200015c0 = 4); NONFAILING(*(uint8_t*)0x200015c1 = 3); NONFAILING(*(uint16_t*)0x200015c2 = 0x380a); NONFAILING(*(uint32_t*)0x20001774 = 0xcc); NONFAILING(*(uint64_t*)0x20001778 = 0x20001600); NONFAILING(*(uint8_t*)0x20001600 = 0xcc); NONFAILING(*(uint8_t*)0x20001601 = 3); NONFAILING(memcpy( (void*)0x20001602, "\x33\x9c\x23\xf0\x11\x14\x85\x2c\x1e\x56\xbb\x7b\x3b\x2d\xfd\x64\x4a" "\x51\xe9\x60\x02\x55\x45\xef\x94\x15\x88\x7f\x89\x12\x57\x48\xde\xa6" "\x61\x0e\xbd\x11\xc1\xec\x6c\xd9\x0d\x32\x9f\xee\xdb\xc5\x21\x30\xc7" "\x6c\x35\x99\x59\x1b\x46\x9a\x22\x24\xa8\x57\xac\x37\x8b\x71\x95\x1c" "\xbd\xff\x87\xb9\xa5\x45\x84\x04\xd9\x43\xf7\x95\x8e\xee\x7f\x82\x01" "\xe6\xfb\x88\x06\x9f\xc9\xd2\xed\xd6\x52\xe3\x93\xc9\xa2\xb1\xc6\x96" "\xb3\x9c\x34\xbf\x2c\x13\x21\x86\x24\x12\xf2\x92\x9f\x19\x27\x5e\x0a" "\x62\x7d\xfe\x41\x76\x63\xd6\xe7\x9b\xce\x73\xad\x7c\x82\x03\x49\xcd" "\xae\xc9\xe0\xe2\xa6\xc4\x8a\xa8\x04\x0c\x5b\xd5\xe8\xb3\xff\xe6\xf6" "\x07\xbb\x9a\xff\x7a\xee\xf7\x73\xdc\x22\x01\xef\x92\x1d\xa8\x8c\x77" "\xfa\x6c\x53\xb5\x5f\x34\x46\x84\x39\x6b\x62\x0b\xcd\x4d\xf1\x90\x23" "\x53\x0a\x78\x33\xae\x02\x3c\x21\xb5\x22\x6e\xcf\xf7\x1e\xb1", 202)); NONFAILING(*(uint32_t*)0x20001780 = 4); NONFAILING(*(uint64_t*)0x20001784 = 0x20001700); NONFAILING(*(uint8_t*)0x20001700 = 4); NONFAILING(*(uint8_t*)0x20001701 = 3); NONFAILING(*(uint16_t*)0x20001702 = 0x843); NONFAILING(syz_usb_connect(2, 0x829, 0x20000cc0, 0x20001740)); break; case 6: NONFAILING(*(uint8_t*)0x200017c0 = 0x12); NONFAILING(*(uint8_t*)0x200017c1 = 1); NONFAILING(*(uint16_t*)0x200017c2 = 0x250); NONFAILING(*(uint8_t*)0x200017c4 = 0); NONFAILING(*(uint8_t*)0x200017c5 = 0); NONFAILING(*(uint8_t*)0x200017c6 = 0); NONFAILING(*(uint8_t*)0x200017c7 = 0x10); NONFAILING(*(uint16_t*)0x200017c8 = 0); NONFAILING(*(uint16_t*)0x200017ca = 0); NONFAILING(*(uint16_t*)0x200017cc = 0); NONFAILING(*(uint8_t*)0x200017ce = 1); NONFAILING(*(uint8_t*)0x200017cf = 2); NONFAILING(*(uint8_t*)0x200017d0 = 3); NONFAILING(*(uint8_t*)0x200017d1 = 1); NONFAILING(*(uint8_t*)0x200017d2 = 9); NONFAILING(*(uint8_t*)0x200017d3 = 2); NONFAILING(*(uint16_t*)0x200017d4 = 0x6b0); NONFAILING(*(uint8_t*)0x200017d6 = 2); NONFAILING(*(uint8_t*)0x200017d7 = 1); NONFAILING(*(uint8_t*)0x200017d8 = 7); NONFAILING(*(uint8_t*)0x200017d9 = 0x80); NONFAILING(*(uint8_t*)0x200017da = 9); NONFAILING(*(uint8_t*)0x200017db = 9); NONFAILING(*(uint8_t*)0x200017dc = 4); NONFAILING(*(uint8_t*)0x200017dd = 0x81); NONFAILING(*(uint8_t*)0x200017de = 0); NONFAILING(*(uint8_t*)0x200017df = 8); NONFAILING(*(uint8_t*)0x200017e0 = 0); NONFAILING(*(uint8_t*)0x200017e1 = 0); NONFAILING(*(uint8_t*)0x200017e2 = 0); NONFAILING(*(uint8_t*)0x200017e3 = 1); NONFAILING(*(uint8_t*)0x200017e4 = 9); NONFAILING(*(uint8_t*)0x200017e5 = 5); NONFAILING(*(uint8_t*)0x200017e6 = 9); NONFAILING(*(uint8_t*)0x200017e7 = 2); NONFAILING(*(uint16_t*)0x200017e8 = 0); NONFAILING(*(uint8_t*)0x200017ea = 1); NONFAILING(*(uint8_t*)0x200017eb = 1); NONFAILING(*(uint8_t*)0x200017ec = 0x20); NONFAILING(*(uint8_t*)0x200017ed = 0x2b); NONFAILING(*(uint8_t*)0x200017ee = 0x30); NONFAILING(memcpy((void*)0x200017ef, "\xcd\x9a\x89\xe4\x9e\xa5\x8d\x1c\xe4\xf1\xbb\x06\x85\x0a" "\x27\x65\xd8\x05\xe7\xbc\x8a\x23\xfb\x43\xad\xda\xf5\x7e" "\xa6\x0b\x32\x8f\x56\x7e\xe4\xfe\x46\xec\xf7\x00\x7e", 41)); NONFAILING(*(uint8_t*)0x20001818 = 7); NONFAILING(*(uint8_t*)0x20001819 = 0x25); NONFAILING(*(uint8_t*)0x2000181a = 1); NONFAILING(*(uint8_t*)0x2000181b = 0x83); NONFAILING(*(uint8_t*)0x2000181c = 0); NONFAILING(*(uint16_t*)0x2000181d = 8); NONFAILING(*(uint8_t*)0x2000181f = 9); NONFAILING(*(uint8_t*)0x20001820 = 5); NONFAILING(*(uint8_t*)0x20001821 = 0xa); NONFAILING(*(uint8_t*)0x20001822 = 1); NONFAILING(*(uint16_t*)0x20001823 = 0x40); NONFAILING(*(uint8_t*)0x20001825 = 9); NONFAILING(*(uint8_t*)0x20001826 = 0x7f); NONFAILING(*(uint8_t*)0x20001827 = 0x7f); NONFAILING(*(uint8_t*)0x20001828 = 0x67); NONFAILING(*(uint8_t*)0x20001829 = 0x30); NONFAILING(memcpy( (void*)0x2000182a, "\xd0\xff\x76\x66\xf2\xf2\x26\xd8\xf9\xe0\x4c\x57\x64\xa9\xe8\x89\x09" "\x1c\x4c\x05\x42\x85\xf2\x74\xee\xca\x11\xad\xfe\x1a\x90\x12\x48\xe8" "\x20\x49\x35\xbd\x41\xc9\x34\x03\xd9\xb7\x7e\x0f\x98\x5c\xce\x13\x3d" "\x46\x78\x9a\xe4\x1b\x1e\x3b\x92\xf4\xcb\xf4\x80\xb6\x51\x61\x77\xa9" "\xf8\x04\x9c\xb9\x1b\x29\xf2\xb0\x9c\x0e\x90\x18\x3d\xa9\x36\x8b\xc6" "\x2d\xb7\xb1\x38\x13\x7b\xae\x80\x84\xf9\x59\xa9\x97\x14\x34\x69", 101)); NONFAILING(*(uint8_t*)0x2000188f = 9); NONFAILING(*(uint8_t*)0x20001890 = 5); NONFAILING(*(uint8_t*)0x20001891 = 0xa); NONFAILING(*(uint8_t*)0x20001892 = 2); NONFAILING(*(uint16_t*)0x20001893 = 8); NONFAILING(*(uint8_t*)0x20001895 = 6); NONFAILING(*(uint8_t*)0x20001896 = 2); NONFAILING(*(uint8_t*)0x20001897 = 0x40); NONFAILING(*(uint8_t*)0x20001898 = 0x74); NONFAILING(*(uint8_t*)0x20001899 = 0x37); NONFAILING(memcpy( (void*)0x2000189a, "\xef\xeb\xd0\xa4\xfa\x3e\xb7\x7c\x49\x43\x38\x84\xdf\x7a\x34\x10\xc9" "\xda\xf8\x4b\x39\x21\x46\x5f\x8d\xba\xc9\x35\xe8\xa7\xee\x4d\x45\x6d" "\x83\x63\x12\x26\x9d\xf1\x78\x79\xc8\x61\x4c\xd6\xaa\x00\x25\x66\x09" "\x8c\x85\xa8\xd9\xce\xf7\x68\x43\x0d\x45\x7a\x8b\x06\x84\xce\x72\xd1" "\x23\x53\x36\xf5\xad\xd9\x26\x60\x12\x7f\x9f\x47\xc5\xbb\x62\xf8\x4c" "\xc4\xb7\xb8\x3b\x70\x2f\x6e\xd7\x2a\x48\xf1\xc3\x20\x88\x91\xb5\x6e" "\xc9\x66\xe4\xc0\x64\xc9\x18\x18\xb9\x89\xd9\x74", 114)); NONFAILING(*(uint8_t*)0x2000190c = 9); NONFAILING(*(uint8_t*)0x2000190d = 5); NONFAILING(*(uint8_t*)0x2000190e = 7); NONFAILING(*(uint8_t*)0x2000190f = 4); NONFAILING(*(uint16_t*)0x20001910 = 0x400); NONFAILING(*(uint8_t*)0x20001912 = 3); NONFAILING(*(uint8_t*)0x20001913 = 0xca); NONFAILING(*(uint8_t*)0x20001914 = 4); NONFAILING(*(uint8_t*)0x20001915 = 0xd1); NONFAILING(*(uint8_t*)0x20001916 = 0x31); NONFAILING(memcpy( (void*)0x20001917, "\x9a\x25\xd3\x23\x05\xd2\x1f\x99\x1b\x61\x4d\xe4\x02\x14\x42\x4e\x8f" "\xca\x6e\x6f\xae\xc5\x3e\x9a\xaa\xe8\x97\xb9\x62\xa7\xa1\xed\x1c\xf0" "\xc4\xf0\x4c\x84\x2d\x70\xf7\x28\x39\x84\xfe\x29\xa4\x9e\x02\x8b\xfc" "\x2c\x07\xab\xd3\x35\xe9\x8c\xed\x5b\x23\xc8\x4a\x59\xe3\xe4\x29\xdf" "\x4a\xab\xf0\x3f\x24\xee\x5d\xa5\x20\x9d\x65\xbf\x5e\x33\x25\x7f\xfa" "\xc1\x05\xbb\xa0\x79\x21\xf8\x77\x55\xfe\xf2\x2e\x8d\x57\x14\xc7\x34" "\xa3\x30\xea\xd1\x8e\x2d\xc5\xcd\x6e\xc9\x8e\x23\xed\xab\x91\xa5\x66" "\x88\x0d\x24\x1a\xea\xb4\xf0\x68\xbf\xa8\xab\x60\x3a\x66\xc4\x69\x97" "\xd3\xa3\x8f\x1a\xde\xb0\x0f\x4d\x01\x28\xc9\x17\xd0\x93\x48\x50\x2f" "\x86\x05\xcc\x0d\x73\x4d\x9d\x41\x39\x89\xfb\x01\x8e\xb3\xfe\xdf\xba" "\x44\x40\xec\x6d\xea\x43\xd7\x99\xa6\x68\x80\x4c\xe1\xb3\xd2\x97\x70" "\xf7\x40\xd5\xf7\xdb\x4b\xb9\x0e\xfa\x95\x96\xb0\x83\x0e\xc3\x4d\x21" "\xba\x3a\x08", 207)); NONFAILING(*(uint8_t*)0x200019e6 = 7); NONFAILING(*(uint8_t*)0x200019e7 = 0x25); NONFAILING(*(uint8_t*)0x200019e8 = 1); NONFAILING(*(uint8_t*)0x200019e9 = 0x83); NONFAILING(*(uint8_t*)0x200019ea = 0x3f); NONFAILING(*(uint16_t*)0x200019eb = 0x767); NONFAILING(*(uint8_t*)0x200019ed = 9); NONFAILING(*(uint8_t*)0x200019ee = 5); NONFAILING(*(uint8_t*)0x200019ef = 4); NONFAILING(*(uint8_t*)0x200019f0 = 0xc); NONFAILING(*(uint16_t*)0x200019f1 = 0x40); NONFAILING(*(uint8_t*)0x200019f3 = 0); NONFAILING(*(uint8_t*)0x200019f4 = 6); NONFAILING(*(uint8_t*)0x200019f5 = 0xa4); NONFAILING(*(uint8_t*)0x200019f6 = 7); NONFAILING(*(uint8_t*)0x200019f7 = 0x25); NONFAILING(*(uint8_t*)0x200019f8 = 1); NONFAILING(*(uint8_t*)0x200019f9 = 0x83); NONFAILING(*(uint8_t*)0x200019fa = 5); NONFAILING(*(uint16_t*)0x200019fb = 0xc6); NONFAILING(*(uint8_t*)0x200019fd = 7); NONFAILING(*(uint8_t*)0x200019fe = 0x25); NONFAILING(*(uint8_t*)0x200019ff = 1); NONFAILING(*(uint8_t*)0x20001a00 = 1); NONFAILING(*(uint8_t*)0x20001a01 = 0x20); NONFAILING(*(uint16_t*)0x20001a02 = 4); NONFAILING(*(uint8_t*)0x20001a04 = 9); NONFAILING(*(uint8_t*)0x20001a05 = 5); NONFAILING(*(uint8_t*)0x20001a06 = 0xf); NONFAILING(*(uint8_t*)0x20001a07 = 0x10); NONFAILING(*(uint16_t*)0x20001a08 = 0x10); NONFAILING(*(uint8_t*)0x20001a0a = 0); NONFAILING(*(uint8_t*)0x20001a0b = 0x1f); NONFAILING(*(uint8_t*)0x20001a0c = 9); NONFAILING(*(uint8_t*)0x20001a0d = 9); NONFAILING(*(uint8_t*)0x20001a0e = 5); NONFAILING(*(uint8_t*)0x20001a0f = 1); NONFAILING(*(uint8_t*)0x20001a10 = 3); NONFAILING(*(uint16_t*)0x20001a11 = 0x400); NONFAILING(*(uint8_t*)0x20001a13 = 0); NONFAILING(*(uint8_t*)0x20001a14 = 8); NONFAILING(*(uint8_t*)0x20001a15 = 0xea); NONFAILING(*(uint8_t*)0x20001a16 = 0x59); NONFAILING(*(uint8_t*)0x20001a17 = 3); NONFAILING( memcpy((void*)0x20001a18, "\x87\x7c\x97\x42\xa5\xda\xcf\x08\x99\x4f\xc5\x83\x61\x54\x40" "\xaf\x7a\x09\x26\x64\xcb\x0d\x66\x19\x24\xeb\x8e\xcc\xa7\x73" "\x9f\x76\x3a\x21\xeb\xf5\xd6\xfe\x9d\x53\x17\x6f\x33\x1a\x66" "\x36\xe6\x7d\xc4\x80\x90\x5b\x98\xf6\x6c\x49\xce\x51\x9e\x8f" "\xbb\xc7\x88\xe3\xc0\x35\xaa\x3d\xa5\xfd\x9a\xa5\x29\x86\x5c" "\xc7\xe5\xcf\x35\x93\xc7\x02\x52\x33\x19\x75\x2a", 87)); NONFAILING(*(uint8_t*)0x20001a6f = 7); NONFAILING(*(uint8_t*)0x20001a70 = 0x25); NONFAILING(*(uint8_t*)0x20001a71 = 1); NONFAILING(*(uint8_t*)0x20001a72 = 0); NONFAILING(*(uint8_t*)0x20001a73 = 6); NONFAILING(*(uint16_t*)0x20001a74 = 0x3ff); NONFAILING(*(uint8_t*)0x20001a76 = 9); NONFAILING(*(uint8_t*)0x20001a77 = 5); NONFAILING(*(uint8_t*)0x20001a78 = 8); NONFAILING(*(uint8_t*)0x20001a79 = 0); NONFAILING(*(uint16_t*)0x20001a7a = 0); NONFAILING(*(uint8_t*)0x20001a7c = 0x3f); NONFAILING(*(uint8_t*)0x20001a7d = 0x3f); NONFAILING(*(uint8_t*)0x20001a7e = 0x9f); NONFAILING(*(uint8_t*)0x20001a7f = 0xdc); NONFAILING(*(uint8_t*)0x20001a80 = 0x22); NONFAILING(memcpy( (void*)0x20001a81, "\xd2\xdd\xb2\xc6\x3c\xfb\xdd\x5c\xca\x76\xe0\x35\xac\x67\x61\xe7\x19" "\x6f\xa4\x11\x34\xa5\xaf\x94\xa6\x18\x58\x68\xa4\x1f\xe9\x44\x06\x68" "\xa3\x38\x3e\x43\xea\x16\xaa\x35\xbe\x3a\x27\x6a\x8b\xc5\x12\x16\xca" "\xbb\x85\xa8\xd9\xda\xe7\x75\x93\x18\x62\xfa\x04\xaa\x0b\x4b\x5d\x70" "\xf5\xbb\xc0\xb3\xb5\xed\x05\x2c\xb7\x19\xef\x3c\x9f\x46\xcb\x12\x21" "\x0c\xca\x27\xee\x0d\x90\x23\x01\x22\xfa\x22\x4f\x98\x3b\x1f\x0d\x15" "\xe6\x57\xf6\x94\xe4\xc3\x58\x23\x8b\xc6\xaf\xf3\x19\xea\x6e\xb7\x92" "\x97\x27\x80\xf0\xe5\xde\x7f\x7b\x4a\xb4\x84\x42\x16\xdb\xc4\x5c\xf6" "\xf5\x72\x8d\xce\xbb\x38\x24\xd9\x59\x53\xd1\x55\x0a\x32\x55\x77\xc9" "\x0c\x2c\x31\x66\xd1\xd3\x9c\xb9\x1c\xad\xfb\x92\x9f\x16\x75\x10\xe6" "\x89\x19\x59\x64\x74\xd4\xd8\x47\xc5\xff\xc8\xe1\x3d\xd7\xfb\x17\x6b" "\xfe\x85\x56\xab\xd1\x6c\xc6\x50\xa3\x2e\x0b\xbe\xc0\x14\x3b\x4c\x30" "\xa4\x78\xe0\xf3\x02\x69\x17\x9d\xb1\x49\xce\x47\x39\x6b", 218)); NONFAILING(*(uint8_t*)0x20001b5b = 9); NONFAILING(*(uint8_t*)0x20001b5c = 4); NONFAILING(*(uint8_t*)0x20001b5d = 8); NONFAILING(*(uint8_t*)0x20001b5e = 1); NONFAILING(*(uint8_t*)0x20001b5f = 0x10); NONFAILING(*(uint8_t*)0x20001b60 = 0); NONFAILING(*(uint8_t*)0x20001b61 = 0); NONFAILING(*(uint8_t*)0x20001b62 = 0); NONFAILING(*(uint8_t*)0x20001b63 = 0x1f); NONFAILING(*(uint8_t*)0x20001b64 = 0xa); NONFAILING(*(uint8_t*)0x20001b65 = 0x24); NONFAILING(*(uint8_t*)0x20001b66 = 1); NONFAILING(*(uint16_t*)0x20001b67 = 8); NONFAILING(*(uint8_t*)0x20001b69 = 3); NONFAILING(*(uint8_t*)0x20001b6a = 2); NONFAILING(*(uint8_t*)0x20001b6b = 1); NONFAILING(*(uint8_t*)0x20001b6c = 2); NONFAILING(*(uint8_t*)0x20001b6d = 9); NONFAILING(*(uint8_t*)0x20001b6e = 0x24); NONFAILING(*(uint8_t*)0x20001b6f = 3); NONFAILING(*(uint8_t*)0x20001b70 = 6); NONFAILING(*(uint16_t*)0x20001b71 = 0x301); NONFAILING(*(uint8_t*)0x20001b73 = 3); NONFAILING(*(uint8_t*)0x20001b74 = 6); NONFAILING(*(uint8_t*)0x20001b75 = 8); NONFAILING(*(uint8_t*)0x20001b76 = 7); NONFAILING(*(uint8_t*)0x20001b77 = 0x24); NONFAILING(*(uint8_t*)0x20001b78 = 8); NONFAILING(*(uint8_t*)0x20001b79 = 5); NONFAILING(*(uint16_t*)0x20001b7a = 0x401); NONFAILING(*(uint8_t*)0x20001b7c = 0xa6); NONFAILING(*(uint8_t*)0x20001b7d = 9); NONFAILING(*(uint8_t*)0x20001b7e = 5); NONFAILING(*(uint8_t*)0x20001b7f = 6); NONFAILING(*(uint8_t*)0x20001b80 = 0x10); NONFAILING(*(uint16_t*)0x20001b81 = 0x3e7); NONFAILING(*(uint8_t*)0x20001b83 = 1); NONFAILING(*(uint8_t*)0x20001b84 = 0); NONFAILING(*(uint8_t*)0x20001b85 = 0); NONFAILING(*(uint8_t*)0x20001b86 = 9); NONFAILING(*(uint8_t*)0x20001b87 = 5); NONFAILING(*(uint8_t*)0x20001b88 = 8); NONFAILING(*(uint8_t*)0x20001b89 = 3); NONFAILING(*(uint16_t*)0x20001b8a = 0x200); NONFAILING(*(uint8_t*)0x20001b8c = 1); NONFAILING(*(uint8_t*)0x20001b8d = 0xaa); NONFAILING(*(uint8_t*)0x20001b8e = 4); NONFAILING(*(uint8_t*)0x20001b8f = 7); NONFAILING(*(uint8_t*)0x20001b90 = 0x25); NONFAILING(*(uint8_t*)0x20001b91 = 1); NONFAILING(*(uint8_t*)0x20001b92 = 2); NONFAILING(*(uint8_t*)0x20001b93 = 0x7f); NONFAILING(*(uint16_t*)0x20001b94 = 0x3f); NONFAILING(*(uint8_t*)0x20001b96 = 7); NONFAILING(*(uint8_t*)0x20001b97 = 0x25); NONFAILING(*(uint8_t*)0x20001b98 = 1); NONFAILING(*(uint8_t*)0x20001b99 = 3); NONFAILING(*(uint8_t*)0x20001b9a = 1); NONFAILING(*(uint16_t*)0x20001b9b = 0xff); NONFAILING(*(uint8_t*)0x20001b9d = 9); NONFAILING(*(uint8_t*)0x20001b9e = 5); NONFAILING(*(uint8_t*)0x20001b9f = 0xf); NONFAILING(*(uint8_t*)0x20001ba0 = 2); NONFAILING(*(uint16_t*)0x20001ba1 = 0x40); NONFAILING(*(uint8_t*)0x20001ba3 = 9); NONFAILING(*(uint8_t*)0x20001ba4 = -1); NONFAILING(*(uint8_t*)0x20001ba5 = 6); NONFAILING(*(uint8_t*)0x20001ba6 = 2); NONFAILING(*(uint8_t*)0x20001ba7 = 0x11); NONFAILING(*(uint8_t*)0x20001ba8 = 7); NONFAILING(*(uint8_t*)0x20001ba9 = 0x25); NONFAILING(*(uint8_t*)0x20001baa = 1); NONFAILING(*(uint8_t*)0x20001bab = 0); NONFAILING(*(uint8_t*)0x20001bac = 0x6a); NONFAILING(*(uint16_t*)0x20001bad = 6); NONFAILING(*(uint8_t*)0x20001baf = 9); NONFAILING(*(uint8_t*)0x20001bb0 = 5); NONFAILING(*(uint8_t*)0x20001bb1 = 0xa); NONFAILING(*(uint8_t*)0x20001bb2 = 0); NONFAILING(*(uint16_t*)0x20001bb3 = 0x3ff); NONFAILING(*(uint8_t*)0x20001bb5 = 9); NONFAILING(*(uint8_t*)0x20001bb6 = 0x40); NONFAILING(*(uint8_t*)0x20001bb7 = 0x20); NONFAILING(*(uint8_t*)0x20001bb8 = 0x40); NONFAILING(*(uint8_t*)0x20001bb9 = 0x10); NONFAILING(memcpy( (void*)0x20001bba, "\x8d\x02\x69\x4c\x52\x97\x8a\x23\x13\x83\x09\x9e\x37\x1f\x8e\x34\x37" "\xb7\x1f\x3f\xab\xda\x2c\x80\xdc\x53\xc0\xb6\x59\xae\xa5\x0b\xd4\x4e" "\x4e\x61\xba\x6d\x4e\x96\xae\xc7\xa8\x6f\x43\xaa\xf4\x90\x57\x51\x3c" "\xc1\xe1\x6d\x23\x4a\x1c\xfc\x38\xf1\xe5\xea", 62)); NONFAILING(*(uint8_t*)0x20001bf8 = 0xc); NONFAILING(*(uint8_t*)0x20001bf9 = 8); NONFAILING(memcpy((void*)0x20001bfa, "\x28\xf9\x10\x37\xcf\x11\x5e\x55\x53\xd7", 10)); NONFAILING(*(uint8_t*)0x20001c04 = 9); NONFAILING(*(uint8_t*)0x20001c05 = 5); NONFAILING(*(uint8_t*)0x20001c06 = 0xe); NONFAILING(*(uint8_t*)0x20001c07 = 0xc); NONFAILING(*(uint16_t*)0x20001c08 = 0x3ef); NONFAILING(*(uint8_t*)0x20001c0a = 4); NONFAILING(*(uint8_t*)0x20001c0b = 8); NONFAILING(*(uint8_t*)0x20001c0c = 0x3f); NONFAILING(*(uint8_t*)0x20001c0d = 9); NONFAILING(*(uint8_t*)0x20001c0e = 5); NONFAILING(*(uint8_t*)0x20001c0f = 0xe); NONFAILING(*(uint8_t*)0x20001c10 = 0xc); NONFAILING(*(uint16_t*)0x20001c11 = 0x400); NONFAILING(*(uint8_t*)0x20001c13 = 8); NONFAILING(*(uint8_t*)0x20001c14 = 0x9c); NONFAILING(*(uint8_t*)0x20001c15 = 8); NONFAILING(*(uint8_t*)0x20001c16 = 0x96); NONFAILING(*(uint8_t*)0x20001c17 = 3); NONFAILING(memcpy( (void*)0x20001c18, "\xce\xc1\xe0\x5c\x3c\x00\x56\x4f\xbb\x9c\x2c\xe0\xa9\xd2\xdd\x96\xf6" "\xa9\xb2\x40\x20\xd3\x0d\x82\x81\xb4\x3c\xfc\xbe\xaa\x41\x8e\x22\x36" "\x66\x6a\x1e\x92\xac\xab\xc5\x47\xef\xd0\x2c\x9b\x80\x12\x66\x58\xd8" "\x95\x2d\x4b\x3e\xec\xbc\x3f\x56\x58\x42\x37\xc6\x01\x36\x7a\x1d\x9d" "\x67\x69\x91\xac\xe6\x1c\xf9\xfb\x6e\xad\xf9\x0c\x1c\x3d\x43\x0d\x64" "\x9c\x57\x24\xdc\x6a\xdb\x75\x1f\xa1\x27\xad\xd7\xcf\x26\x4e\x11\x77" "\xe1\x55\x71\xd2\xe6\xce\x10\x70\xdc\xa9\x4e\x98\x08\x91\x6a\x12\x12" "\x04\xb1\x32\x32\x5c\x49\xa2\xb8\x2a\xc1\xdd\x99\x67\x97\xff\x51\x93" "\x67\x33\xba\xdb\x06\x08\xbc\x53\x8c\x3f\x7e\x6b", 148)); NONFAILING(*(uint8_t*)0x20001cac = 7); NONFAILING(*(uint8_t*)0x20001cad = 0x25); NONFAILING(*(uint8_t*)0x20001cae = 1); NONFAILING(*(uint8_t*)0x20001caf = 3); NONFAILING(*(uint8_t*)0x20001cb0 = 9); NONFAILING(*(uint16_t*)0x20001cb1 = 4); NONFAILING(*(uint8_t*)0x20001cb3 = 9); NONFAILING(*(uint8_t*)0x20001cb4 = 5); NONFAILING(*(uint8_t*)0x20001cb5 = 9); NONFAILING(*(uint8_t*)0x20001cb6 = 1); NONFAILING(*(uint16_t*)0x20001cb7 = 0x608); NONFAILING(*(uint8_t*)0x20001cb9 = 0x1f); NONFAILING(*(uint8_t*)0x20001cba = 9); NONFAILING(*(uint8_t*)0x20001cbb = 5); NONFAILING(*(uint8_t*)0x20001cbc = 9); NONFAILING(*(uint8_t*)0x20001cbd = 5); NONFAILING(*(uint8_t*)0x20001cbe = 4); NONFAILING(*(uint8_t*)0x20001cbf = 3); NONFAILING(*(uint16_t*)0x20001cc0 = 8); NONFAILING(*(uint8_t*)0x20001cc2 = 0); NONFAILING(*(uint8_t*)0x20001cc3 = 9); NONFAILING(*(uint8_t*)0x20001cc4 = 0); NONFAILING(*(uint8_t*)0x20001cc5 = 9); NONFAILING(*(uint8_t*)0x20001cc6 = 5); NONFAILING(*(uint8_t*)0x20001cc7 = 0xd); NONFAILING(*(uint8_t*)0x20001cc8 = 0xa); NONFAILING(*(uint16_t*)0x20001cc9 = 0x40); NONFAILING(*(uint8_t*)0x20001ccb = 0x80); NONFAILING(*(uint8_t*)0x20001ccc = 9); NONFAILING(*(uint8_t*)0x20001ccd = 0); NONFAILING(*(uint8_t*)0x20001cce = 0x5d); NONFAILING(*(uint8_t*)0x20001ccf = 8); NONFAILING(memcpy( (void*)0x20001cd0, "\x83\xae\x5b\x59\xe3\xe3\x15\xdf\x83\x45\xef\xf0\x1f\xfe\x7c\x8c\xfa" "\xff\x97\x19\xaf\x7a\x23\x93\xb8\x35\xe2\x86\xc0\x98\x94\xce\x5a\x7a" "\x05\x21\xc3\xdf\x6e\xd5\x45\x20\xe0\x49\x9b\xd0\x97\x67\x27\xce\x32" "\x9c\xa9\x45\x90\x5f\x35\xbe\xde\x7e\x95\xc6\xa2\x05\x76\x7a\x26\x4d" "\x80\xe4\x09\x8c\xdc\x96\x08\x79\x49\xbe\xec\xfb\x7b\x84\x79\x47\x29" "\xb5\xfd\xa0\x16\x1f\xa8", 91)); NONFAILING(*(uint8_t*)0x20001d2b = 9); NONFAILING(*(uint8_t*)0x20001d2c = 5); NONFAILING(*(uint8_t*)0x20001d2d = 5); NONFAILING(*(uint8_t*)0x20001d2e = 0x10); NONFAILING(*(uint16_t*)0x20001d2f = 0x10); NONFAILING(*(uint8_t*)0x20001d31 = 0x45); NONFAILING(*(uint8_t*)0x20001d32 = 0x7f); NONFAILING(*(uint8_t*)0x20001d33 = 0); NONFAILING(*(uint8_t*)0x20001d34 = 7); NONFAILING(*(uint8_t*)0x20001d35 = 0x25); NONFAILING(*(uint8_t*)0x20001d36 = 1); NONFAILING(*(uint8_t*)0x20001d37 = 2); NONFAILING(*(uint8_t*)0x20001d38 = 6); NONFAILING(*(uint16_t*)0x20001d39 = 5); NONFAILING(*(uint8_t*)0x20001d3b = 9); NONFAILING(*(uint8_t*)0x20001d3c = 5); NONFAILING(*(uint8_t*)0x20001d3d = 8); NONFAILING(*(uint8_t*)0x20001d3e = 0x10); NONFAILING(*(uint16_t*)0x20001d3f = 8); NONFAILING(*(uint8_t*)0x20001d41 = 0x3b); NONFAILING(*(uint8_t*)0x20001d42 = 0xc0); NONFAILING(*(uint8_t*)0x20001d43 = 5); NONFAILING(*(uint8_t*)0x20001d44 = 9); NONFAILING(*(uint8_t*)0x20001d45 = 5); NONFAILING(*(uint8_t*)0x20001d46 = 0xc); NONFAILING(*(uint8_t*)0x20001d47 = 0); NONFAILING(*(uint16_t*)0x20001d48 = 0x40); NONFAILING(*(uint8_t*)0x20001d4a = 0x51); NONFAILING(*(uint8_t*)0x20001d4b = 5); NONFAILING(*(uint8_t*)0x20001d4c = 0x40); NONFAILING(*(uint8_t*)0x20001d4d = 2); NONFAILING(*(uint8_t*)0x20001d4e = 0xd); NONFAILING(*(uint8_t*)0x20001d4f = 9); NONFAILING(*(uint8_t*)0x20001d50 = 5); NONFAILING(*(uint8_t*)0x20001d51 = 8); NONFAILING(*(uint8_t*)0x20001d52 = 0); NONFAILING(*(uint16_t*)0x20001d53 = 0x200); NONFAILING(*(uint8_t*)0x20001d55 = 4); NONFAILING(*(uint8_t*)0x20001d56 = 0x50); NONFAILING(*(uint8_t*)0x20001d57 = 0x7f); NONFAILING(*(uint8_t*)0x20001d58 = 7); NONFAILING(*(uint8_t*)0x20001d59 = 0x25); NONFAILING(*(uint8_t*)0x20001d5a = 1); NONFAILING(*(uint8_t*)0x20001d5b = 3); NONFAILING(*(uint8_t*)0x20001d5c = 0x40); NONFAILING(*(uint16_t*)0x20001d5d = 0); NONFAILING(*(uint8_t*)0x20001d5f = 9); NONFAILING(*(uint8_t*)0x20001d60 = 5); NONFAILING(*(uint8_t*)0x20001d61 = 8); NONFAILING(*(uint8_t*)0x20001d62 = 8); NONFAILING(*(uint16_t*)0x20001d63 = 0x3ff); NONFAILING(*(uint8_t*)0x20001d65 = 0); NONFAILING(*(uint8_t*)0x20001d66 = 1); NONFAILING(*(uint8_t*)0x20001d67 = 8); NONFAILING(*(uint8_t*)0x20001d68 = 7); NONFAILING(*(uint8_t*)0x20001d69 = 0x25); NONFAILING(*(uint8_t*)0x20001d6a = 1); NONFAILING(*(uint8_t*)0x20001d6b = 7); NONFAILING(*(uint8_t*)0x20001d6c = 4); NONFAILING(*(uint16_t*)0x20001d6d = 9); NONFAILING(*(uint8_t*)0x20001d6f = 9); NONFAILING(*(uint8_t*)0x20001d70 = 5); NONFAILING(*(uint8_t*)0x20001d71 = 5); NONFAILING(*(uint8_t*)0x20001d72 = 0); NONFAILING(*(uint16_t*)0x20001d73 = 0x10); NONFAILING(*(uint8_t*)0x20001d75 = 0xf8); NONFAILING(*(uint8_t*)0x20001d76 = 4); NONFAILING(*(uint8_t*)0x20001d77 = 8); NONFAILING(*(uint8_t*)0x20001d78 = 9); NONFAILING(*(uint8_t*)0x20001d79 = 5); NONFAILING(*(uint8_t*)0x20001d7a = 0xa); NONFAILING(*(uint8_t*)0x20001d7b = 0); NONFAILING(*(uint16_t*)0x20001d7c = 8); NONFAILING(*(uint8_t*)0x20001d7e = 0xfd); NONFAILING(*(uint8_t*)0x20001d7f = 1); NONFAILING(*(uint8_t*)0x20001d80 = 1); NONFAILING(*(uint8_t*)0x20001d81 = 7); NONFAILING(*(uint8_t*)0x20001d82 = 0x25); NONFAILING(*(uint8_t*)0x20001d83 = 1); NONFAILING(*(uint8_t*)0x20001d84 = 1); NONFAILING(*(uint8_t*)0x20001d85 = 0x20); NONFAILING(*(uint16_t*)0x20001d86 = 0xa531); NONFAILING(*(uint8_t*)0x20001d88 = 0xfa); NONFAILING(*(uint8_t*)0x20001d89 = 0xc); NONFAILING(memcpy( (void*)0x20001d8a, "\xe5\x30\x31\xf8\x75\xdd\x5a\x02\x10\x6f\x4d\x42\x5c\x91\x5e\xca\x08" "\x48\x78\x0e\xaa\xbf\xef\x74\x89\xde\xfb\x5b\xf0\x6f\xd9\x95\x97\x6a" "\xa2\xbc\x49\x37\xa5\x6b\x2c\xc8\xb4\x94\x0a\x15\x4d\xed\xb0\x64\xa8" "\xca\x20\xa7\x53\x14\x19\x96\x5d\xc1\x3a\x84\x70\x08\x0e\x56\xd1\x5b" "\x89\xdf\x99\x33\xfd\xe7\x1d\x94\x24\x96\xdd\x5d\x98\xf4\x6c\x0d\xa7" "\x62\xfc\xed\xd1\x32\x67\xc5\xba\xbe\x11\x8a\x6e\x94\xe1\x19\x4e\x70" "\xce\x1a\xc3\x07\x14\x8d\xcf\xf0\x0c\x33\x76\xe9\xb1\xd4\x09\x39\x0e" "\x12\xd8\x54\x83\x80\x22\xfb\x82\xeb\x94\x1c\xe4\xd8\xf0\x81\xfb\xb7" "\xe7\xf2\x53\x20\xcf\xe3\x97\xb7\x2e\x7d\xfb\xf9\xb3\x0d\xb8\x66\x8f" "\x7a\x8a\xcf\xcb\xc7\xb0\x45\x1e\xd9\x03\xee\xac\x88\xcd\x45\xf1\xec" "\x50\xfc\xf2\xbc\xcb\x67\x13\xde\xf8\x03\x56\x04\x94\xd1\x56\x5e\x1b" "\x4c\xd0\xf3\x91\x76\x80\xcf\x9b\xa3\xfe\xb0\x35\xff\x12\x42\xd5\xe2" "\x15\xdc\xa6\xac\xe1\x3a\xd1\xfb\xa9\xd8\x3f\xb8\x80\xd4\x7c\xe8\x9f" "\xc6\x2d\x40\x9d\xdc\x0d\xbb\xe2\x96\x0a\x9c\x0b\x88\x78\xe0\x91\x42" "\xd4\x5b\xde\x88\x66\x0f\xf4\x2b\x8e\xf4", 248)); NONFAILING(*(uint32_t*)0x200021c0 = 0xa); NONFAILING(*(uint64_t*)0x200021c4 = 0x20001f80); NONFAILING(*(uint8_t*)0x20001f80 = 0xa); NONFAILING(*(uint8_t*)0x20001f81 = 6); NONFAILING(*(uint16_t*)0x20001f82 = 0x201); NONFAILING(*(uint8_t*)0x20001f84 = -1); NONFAILING(*(uint8_t*)0x20001f85 = 0); NONFAILING(*(uint8_t*)0x20001f86 = 0x7f); NONFAILING(*(uint8_t*)0x20001f87 = 0x40); NONFAILING(*(uint8_t*)0x20001f88 = 4); NONFAILING(*(uint8_t*)0x20001f89 = 0); NONFAILING(*(uint32_t*)0x200021cc = 0); NONFAILING(*(uint64_t*)0x200021d0 = 0); NONFAILING(*(uint32_t*)0x200021d8 = 2); NONFAILING(*(uint32_t*)0x200021dc = 0); NONFAILING(*(uint64_t*)0x200021e0 = 0); NONFAILING(*(uint32_t*)0x200021e8 = 0); NONFAILING(*(uint64_t*)0x200021ec = 0); NONFAILING(syz_usb_connect(3, 0x6c2, 0x200017c0, 0x200021c0)); break; case 7: NONFAILING(*(uint64_t*)0x20004d00 = 0x20004cc0); NONFAILING(*(uint64_t*)0x20004cc0 = 0x20002500); NONFAILING( memcpy((void*)0x20002500, "\xf6\x93\xa5\x80\x21\xf5\xc6\x17\xb1\xcd\x15\x8f\xe7\x3e", 14)); NONFAILING(*(uint32_t*)0x20004cc8 = 0xe); NONFAILING(*(uint64_t*)0x20004cd0 = 0); NONFAILING(*(uint64_t*)0x20004cd8 = 0); NONFAILING(*(uint64_t*)0x20004ce0 = 0x20002b40); NONFAILING(*(uint64_t*)0x20002b40 = 0x1010); NONFAILING(*(uint32_t*)0x20002b48 = 0x100); NONFAILING(*(uint32_t*)0x20002b4c = 0xff); NONFAILING(memcpy( (void*)0x20002b50, "\x7c\x8d\x7c\xb0\xe8\x77\xcd\xb8\xd8\x34\x19\x5f\x43\x45\xac\x40\xe0" "\xbd\x81\xb0\x73\xe2\x57\x18\x4d\x9e\x4b\xa9\x53\x7a\xb6\xf6\x13\xbb" "\xfe\xdb\xc1\xef\x97\x41\x43\x8a\x8d\xb5\xc4\x69\x8f\x54\x4b\xfc\xed" "\x14\xaf\x85\x6a\xa8\x57\x53\x08\x71\x6f\x1a\x80\xcc\xe7\xb7\x48\x90" "\xa1\xa5\x5f\x63\x4b\x01\x09\x38\xd3\x09\xab\x2f\x19\x76\x6c\x24\x35" "\xf3\x2f\x26\xf4\xd6\x39\x2d\xa7\xc2\x09\x99\x1c\x20\x7e\x7d\x16\x9e" "\xd9\x3a\x56\xc0\x3d\x9e\x32\x3e\xd0\xec\x1a\x00\xc7\x47\xca\xb2\x15" "\x42\xa1\x58\xea\x4b\xbe\xe9\x4c\x56\xdf\x6a\x1d\xc9\x33\xbf\x46\x26" "\xc2\x38\xe5\xc2\x15\x93\x6a\x3c\x68\xd7\xec\x9c\xc8\x6c\xf3\x8d\xf1" "\x49\x70\xd8\xa1\x24\x77\x6a\xf4\x32\xcd\xe6\x21\xa3\x77\x96\x44\x63" "\x63\x1f\x5b\x4b\x82\x31\xa6\x07\x21\x81\xee\x52\x15\xea\x38\xb9\xbf" "\x1a\x54\x09\xf0\x9b\x2c\xbb\x90\xb7\xcd\x96\x5d\x99\x7e\x40\x63\x04" "\x46\xdd\x17\x02\x6d\x42\xf0\xe5\x71\xfc\xed\x13\x0b\xb6\x53\x33\x73" "\x02\xdf\xff\xc8\xcf\xbe\x36\x05\x8c\xfc\xe0\xe0\xa9\xbf\x71\x46\x80" "\x80\x2e\x0f\xf6\xfd\xf9\x7f\xc0\x52\x58\x4c\x08\x89\x95\x92\x2a\xae" "\xa9\x4c\x35\xe9\xfd\xde\x10\xb0\x7e\xeb\x10\x63\x6d\xcc\x0f\xeb\x63" "\x2a\x49\xee\xcd\x50\x9a\x4d\x8f\x75\x0e\x58\xd5\x24\x6a\xf6\xe8\xb8" "\x70\x12\x8d\x3b\xe2\x94\xd7\xec\x07\x2a\x11\xe5\x8a\xd6\x3b\x25\x04" "\xa1\xe6\x3f\xf6\xad\x71\x9b\xa3\xd1\x40\xdc\xb0\x34\xf5\x94\xcd\x05" "\x06\x9a\xe2\xe0\x4a\xd0\xeb\x13\xf3\x43\x2d\xbc\x32\xe8\x7b\xff\x72" "\x23\x16\xd2\xc9\x91\xec\x5b\x03\x81\x7b\xd2\xdd\x7e\xd9\x4f\x37\x38" "\x48\x43\x18\xff\xeb\x95\x3c\x31\x4f\x33\xa8\x47\x6c\xea\x5d\xb9\x59" "\x79\xb5\x86\x07\x72\xb8\xae\x11\x5a\x78\xf3\xea\x8b\xbf\x5b\xb8\x8d" "\xc9\x4d\xca\x22\xb8\x22\x6e\xca\xb7\x43\xdd\xef\x2c\x20\x9f\x27\x86" "\x50\xe2\xde\xa0\x01\x57\xc4\x4b\x08\xac\xc4\x18\x23\x54\x51\xf4\x2f" "\x3f\xf9\x11\x4d\x6c\x18\x7c\x10\x65\x58\xaa\x57\x7b\x12\x20\x33\xc0" "\x90\x5a\xdb\x6c\x5f\x2c\x7a\x5e\xb2\x47\x56\x10\xd4\xbd\xa1\x94\x04" "\xfc\x94\xea\x2a\x1e\xb3\xbb\xd0\x81\x47\x0c\x7f\xd6\x93\xba\x9c\x20" "\x49\xee\x57\x0a\xf1\xf0\x63\x3f\x3a\x42\x6b\x1b\x13\x96\x6c\x86\xaa" "\x9b\xd1\x10\x69\x61\xb5\x36\x67\x83\x59\x3a\xe6\x02\xb4\x11\x87\x2f" "\x43\x1d\x21\x78\xa1\xc9\x73\x5f\xf1\x63\xb8\xcb\x64\xab\xe7\x63\xcb" "\x92\x02\xcc\xa4\x7e\xa6\x39\x71\xe1\xfc\x4c\x2e\xfe\x7c\x3a\x50\xd6" "\x6c\x79\x3e\xe8\xaf\x40\xc3\xb9\x81\x3c\xd7\x99\xd2\x51\xd1\x8c\x72" "\xc5\xea\xa8\xfa\xb2\x3d\x2e\xbd\xd4\xfe\xeb\x57\xac\x32\xcc\xf2\x52" "\xe3\xb8\x6d\x25\x2d\xbd\xc4\xd6\xe1\xcb\x80\xdd\x52\x8f\x36\x93\xcb" "\xf6\x68\x04\x50\x81\x4a\x7e\x89\x83\xb3\x70\x0d\x39\xbf\x64\x2c\xe8" "\xe9\xf0\xce\xaa\xfe\xaa\x4c\x9f\x48\x2d\xbc\xb2\x9b\x00\x89\xc2\x19" "\x90\x61\x91\xb7\x4a\x94\xe8\xb7\xe8\x46\x47\x64\x46\x48\xac\x4d\x50" "\x9b\xbd\x40\x14\xbd\x36\x22\x3d\x65\xa5\x74\xe0\xff\x3a\x45\xc5\x60" "\xe5\x1c\x56\x3b\x92\xd2\xa3\x3a\xb2\x6e\x8c\x6e\x91\xd1\x80\x02\x73" "\x88\x59\x1b\xb2\xaa\xad\x86\xde\xc2\x75\xd1\xfa\x0b\x53\x7b\x45\xcb" "\x68\x6d\xa1\xd3\x56\x06\x35\x9c\x8e\xe3\x6f\x48\x31\xb6\x69\xe1\x70" "\x5f\xc2\x98\xab\x58\x7a\x2c\x42\xa6\x7c\xfa\x6c\x52\x75\x15\x8c\xe0" "\xc3\xe5\xe1\x41\x09\x88\xd0\x84\x03\x40\x8d\x33\x41\x0f\x79\x7c\xb2" "\xb3\xb3\x2a\xc0\xe2\xdd\x8c\x2c\xac\x2e\xcf\x5d\x65\x84\x6e\x0d\xaa" "\x22\x05\xc6\x42\x36\x48\xd7\xda\xde\x1a\x9e\x9d\x4a\x22\x10\x5c\x0a" "\x61\xea\x25\x42\xf9\x90\x1b\x89\x49\x29\x1c\x78\xe5\xb8\xb4\xd7\xff" "\xf7\x4d\x92\x83\x72\x15\x04\xd3\xf0\x22\x60\x51\x75\xdb\x94\x3c\xbd" "\x18\x5c\x5f\xaf\xe5\x9c\x53\xcf\x6f\xd5\x6f\x4a\x9b\xb1\x51\x99\x5b" "\x31\xfc\xf0\x35\xf6\x92\x1d\xd8\x7d\x46\x45\x6b\xd7\xda\x41\xc2\xef" "\x4c\x63\x79\xbf\x7e\x7a\xc5\x4e\x6b\x73\xf5\x2f\x87\x9f\xc4\x1f\x91" "\xa9\x06\x19\x82\x3b\x92\xad\xeb\x55\x92\x9e\xd4\x38\x82\xae\x31\x7c" "\x83\x37\x80\x43\xb8\x57\x7f\x70\x09\x3e\x15\x75\x23\xad\x8e\xc4\xa5" "\xae\x67\x4d\x98\xe1\x5b\x7a\x72\x8d\x24\x6c\x4b\x06\x2d\x87\xa2\xfa" "\xc2\x36\x60\x11\x55\x99\xe7\x57\x33\xfa\x73\x7a\xe6\x9a\x1d\x26\x10" "\x31\xd0\x2f\x49\x7e\xbf\x8f\xd5\x22\x2e\x6e\xfe\x91\xa7\xa4\x4a\x93" "\x5f\xe3\x5c\x9c\x2d\x7c\x8b\x05\xb7\x11\xac\x0a\x43\x4f\x6b\x7a\x30" "\x60\xa4\x9f\xf0\x06\xff\x4e\xa1\x87\xec\x9c\xc9\xc2\xe7\x3d\x70\x53" "\x29\x0e\xd3\xf2\x23\x4c\x65\xb7\x02\x01\x35\x88\x35\xa0\x3f\x38\x44" "\x02\x32\xb0\x99\x85\xe7\x77\xfc\xa5\xa2\x67\x13\x83\x24\xed\x1a\x7e" "\x09\x78\xfe\x33\x6c\xa6\xf5\xb0\x81\xfd\x23\xfe\x9d\x5e\x95\xbc\x7a" "\xc2\x9e\x15\x2c\x9b\xe0\xa0\x52\xec\xff\x4e\x5f\x2d\xa4\xfd\x7c\xbc" "\x36\xdb\x48\xd7\x8a\x50\xa0\xf0\x46\xeb\xbe\x21\x74\x7a\xa3\xde\xf5" "\xb2\xb2\x1e\x13\xca\x7f\x94\xda\x67\xaa\xbf\x80\x9a\x63\x32\x9e\x2e" "\xad\x7c\x9c\x99\xf2\x50\xb8\x67\x65\xdc\x5b\x1a\xe6\x6d\xc2\xba\xfb" "\x11\x67\x63\x74\x8e\x31\x79\x20\x8c\x8e\xcd\x75\xaf\xf5\xfb\xba\x64" "\xb9\xc0\xc2\x6a\x22\x36\x45\x29\xf9\x52\xd7\xc1\xc1\x89\x6b\x69\x9e" "\x37\xe3\x78\xfb\x7f\x87\xc0\xac\x68\x8f\xe2\x75\x41\xb1\xc1\x97\xe1" "\xbc\x46\xf0\x01\x80\x8f\xf0\x51\xc2\xda\xca\x88\x3a\x0d\x56\x88\x77" "\xe2\xdc\x25\x22\x97\xcc\xb3\x26\xa4\x59\x16\xbe\x2f\xbf\x9a\xac\xd0" "\xb8\x86\x0c\x42\xdc\xd5\x77\x39\xe6\x69\x8e\x3f\x70\x4f\x9e\x6d\xa7" "\x5b\xaf\x59\xb2\xfd\xef\xcd\xc8\x94\x87\x5a\x57\xe8\x82\x75\x4e\x48" "\x3d\xab\x83\xa5\xca\xea\x2e\x27\x06\x40\xd4\xc6\x9a\xa4\xe0\x22\xc5" "\xc5\x48\x5b\x87\x36\x4d\x64\x95\xe9\x33\x39\xed\x64\x80\x27\x51\x2d" "\x8a\x4b\x4c\x39\x98\x98\x2d\x64\xf1\x47\xc7\x96\x6d\x52\xf6\x7b\xca" "\x16\xa5\x6c\x63\x08\x11\x56\x09\xce\x25\xa5\xda\x9b\xdd\x40\x9f\xc4" "\x2c\x8f\x56\xc1\xa8\x3e\xa1\x00\x03\xfc\x43\xee\x67\x0a\x00\x68\x13" "\x80\xf8\x3b\xa4\x0f\x0b\x29\xd1\x09\x56\xe0\xbe\xbe\xf0\x3d\xa9\xd5" "\x37\x62\x1d\xef\x54\x85\xbd\xf3\x65\x5c\x77\x9e\xe5\x5a\x5c\xe4\xe8" "\x7e\x82\x37\x21\x53\x58\xb2\xd6\xe9\xe0\x27\x71\x33\x4d\x8e\xf2\x80" "\x0b\x3a\xa9\x49\xc7\xc2\xae\x1d\xeb\xd4\xe9\x05\x3c\xeb\x33\x04\xf1" "\x43\xe8\x42\x42\x8e\x2c\xcf\xc3\x42\x9c\xeb\xd8\xd6\x99\x1a\x3e\xb4" "\xf4\xd5\x49\x0c\x93\x3f\xae\x2b\xe2\xae\x2a\xd6\xb9\x0f\x1b\xef\xdb" "\xb3\x3b\xb7\x68\x1e\xdf\xd9\x36\x87\xfc\xcc\xa0\x8e\x9d\x10\x71\x7c" "\x7e\x10\x16\x60\xd7\xf0\xda\x8b\x03\x13\x74\x26\xb9\x36\xfe\x8b\x7f" "\x09\xff\xb4\xa2\x68\xdd\x38\x8b\x01\xe6\x1c\x06\x0b\x92\x38\x5a\x2a" "\x4b\x7e\xd4\x78\xb5\xd2\x04\xfe\xd8\xab\x88\x1f\xe9\x77\x68\x21\xa9" "\x39\x08\x9b\xae\x45\x9c\xc4\x05\x4b\x43\xb8\xd6\xda\x1f\x03\xb9\x07" "\x9f\xbc\x1c\x8c\xe4\xe0\x5f\x51\xd5\x94\x05\x79\x74\x02\xf2\x79\x04" "\x20\x3f\xba\xe9\xab\xa2\x99\x6a\xc2\x71\xd6\x34\xb0\x9a\xe1\x38\xa6" "\xc7\x71\xa3\x7f\x33\x0b\x13\x14\xfe\x0f\x6d\xd7\xc7\x3d\x81\x40\xf9" "\x8a\xa5\x7a\x8f\x91\x77\x0f\xe8\xb0\x72\x6f\x39\x3a\x7f\x39\xdd\xcd" "\x40\xb8\x95\x0e\xd2\x54\x48\xe4\x4f\x6f\x77\x73\x4e\x0c\xa9\xf0\x6f" "\x12\xcf\x9a\xc2\x91\xac\xd4\xec\xb8\x46\xc7\x34\xe7\xcd\xc4\x30\xcc" "\x21\x9d\x19\x1f\xf0\x8a\x0d\xf2\x94\xa4\x95\xbc\xa1\x17\x0a\xf6\x69" "\xd0\xf5\x7f\xdc\xc4\xbb\x6b\x36\xfa\xd7\xfa\xa6\x7b\xac\x4c\xc2\x5f" "\x27\x01\xea\x2a\x47\xea\xc1\x4b\x7c\x80\x91\x63\xc8\xdb\x01\x5f\x9f" "\xd2\xe3\x3a\x2e\x42\xdc\x8b\xfc\x68\x40\x19\xa8\x0e\xb2\xe2\xf2\xc8" "\x04\x95\xc5\x90\xf8\x52\x60\x23\xa5\x86\x8d\x20\x88\x6b\x2d\x2f\xb9" "\x5a\x47\x15\x1e\x13\xdd\x60\x73\x9a\xba\x9b\xfa\x4e\x0b\x3a\xaa\x63" "\xcd\x36\x78\x7c\x3c\x32\x0a\xc0\xf9\xc5\xce\x6f\x37\x21\x9a\x72\x19" "\xb0\x82\x20\x41\x31\x36\x52\xe8\x80\xfc\xa0\x80\xbf\xcb\x55\xa3\x7d" "\x61\x90\xa7\xce\xcb\x8c\x93\xc6\x87\x43\x14\x26\x56\xcc\xef\x64\xa0" "\x31\xfa\xb5\x04\x3e\x28\x11\x05\xb7\x0c\xda\x9a\x93\x21\x10\x04\x39" "\x97\x8f\x0e\xde\x67\xaf\x68\x9a\x5f\x2b\x1d\x7c\x5b\x50\x27\x14\x10" "\xd1\xd4\x66\x5f\x43\xc2\x61\xc8\x29\x5c\x1d\xa7\xed\x36\xa7\x23\x15" "\x7c\x3e\xaa\x89\xe8\xc2\x4a\x84\x63\x9d\x7d\x15\x32\x77\x97\x34\x3d" "\xe9\x57\x6e\x0f\x16\xec\xce\xf8\x6a\x26\xc1\xb7\x77\xe6\x02\xdf\xa7" "\xb7\x6f\xe0\x9b\x4f\xa7\x1b\xe2\x89\x30\x91\x3c\x39\x96\x68\x30\x27" "\xbd\x76\x64\x83\xf6\xcb\x99\x38\x6c\xe0\x97\xf5\xbe\x33\x19\xfd\xc8" "\x65\x4f\x01\x0b\x67\xb7\x20\x7b\x44\x8a\x1f\x5f\xd2\x47\x84\x6d\xfe" "\x7a\x26\xfe\x4d\x01\x69\x96\x07\x13\x3b\x77\xbf\xd2\x0b\x03\x0d\x6b" "\x9e\xc9\x01\xee\x27\x8a\xd8\x28\x55\x7c\xe9\xa4\xe4\xc0\x16\xa6\x6f" "\xaa\xfb\xb5\x44\x85\x23\x9b\x4a\xed\xa5\xe9\xef\xe0\x70\xcf\xd1\x47" "\x4e\xc2\x89\x2a\xec\x70\xf0\x46\x7d\x02\x6a\x75\x9e\x0b\xa3\x4f\x83" "\x12\x0c\x1d\xff\xfe\x3b\x4f\x94\xc1\x29\xad\x1c\x06\x89\xb4\x83\x71" "\x26\x7b\x54\x63\x50\x26\x38\x47\xac\x2c\xca\xbf\xb3\x1f\x63\xdd\x00" "\x46\x80\x46\x62\xde\x1c\x0e\x29\x81\x9b\x3b\x54\x75\x94\x14\x62\x37" "\xbc\x0f\xbb\x8a\x7c\xf5\x63\x4c\xd6\xa3\x32\xf0\xda\x92\x83\x58\x82" "\x80\x0a\x31\x3c\x01\x0b\xc9\xa0\xa3\xc8\x7e\x57\x18\xa4\x37\x71\xdc" "\x29\x71\x1b\x12\xf2\xdc\xd5\x22\xd1\x5d\xb6\x9d\x86\x5b\x05\xc9\x7c" "\xee\x09\x5f\x68\x46\x5f\xc8\x6c\x5b\x62\xb7\x48\xf2\x6b\x0b\x1f\xd8" "\xe7\x81\x3d\x82\x35\x70\xe1\x33\xfb\xcc\xbf\x26\x4e\x3b\x12\x46\x7a" "\xd9\xae\x5d\xb9\x53\xcf\xc2\xa8\x18\x6d\xe0\xc9\x57\x34\x02\x8f\xc3" "\x87\x17\xc0\xb5\x30\x54\x20\x8f\xe4\x7b\xa9\x95\x5c\x79\x51\x51\xdc" "\xca\x56\xe1\x26\xf4\xcc\x00\x49\xd3\x4d\x18\x3e\xbc\x2f\xd6\x99\x31" "\xd4\x78\x63\x00\x1b\xd5\x8f\xe8\xb8\xc6\xcb\x19\xea\x78\xc2\x13\xff" "\x75\x8a\x0e\xaf\xc0\x70\xa3\xd0\x87\x4d\x18\x44\x00\x8a\xa0\x11\xe0" "\xbf\xe6\xad\x51\x5d\x9e\xfd\x27\x35\xfe\x6d\x58\xb6\xb3\x5a\xd8\x37" "\x1b\x7f\xe8\x6d\x8a\x4c\x57\x83\x18\xb1\xd5\xb6\x11\x7d\x8a\xef\xc2" "\xd1\x5b\xb5\x1d\xcf\x81\x2c\x92\x5d\x87\xf8\xd4\x46\x94\x8a\x7f\x13" "\x3e\x7d\x42\x18\xd6\xf9\xe1\xca\x40\x0e\xeb\x0d\x44\x07\x73\xdf\xca" "\x5c\xe7\xc6\xd1\xe3\xe1\x8a\x00\x23\xad\x8c\x69\x91\x96\x5a\x92\x20" "\xdd\xd1\x7d\xae\xa2\xf7\xc5\x1c\xdb\x64\x8e\x03\x59\x0b\x5a\xa4\x5b" "\x89\x1d\x33\x61\x10\x09\x16\xeb\xb8\x03\xd2\xec\x4a\x21\xa8\xa1\x6c" "\x5f\xe0\x7e\xcb\xf7\x9c\x06\x17\xac\xde\x72\xe2\x24\x4f\x1c\xb3\xae" "\x0e\x34\x32\x14\xd7\xc0\x4c\x0d\x43\x6c\xcf\xd0\x4e\x09\x7c\x46\xfa" "\xb3\x41\xf1\xe0\x64\xe6\xe0\x87\x37\xb1\x06\x34\xa9\x83\x13\xda\xea" "\x65\x7b\x47\xc4\xc6\x4a\x97\x38\x00\xeb\x30\x60\x57\x49\xf0\x16\x84" "\xa2\xeb\xb3\x14\xc6\x2d\x69\x56\xc9\x29\x72\x1a\x60\xe7\x42\xe1\xf6" "\x72\xf0\xb1\x20\xe1\x4e\xd0\x7c\xe0\x0c\x8f\xba\x67\x31\xdf\xb0\x94" "\x9e\x2c\x1f\x0b\x83\x12\x74\xed\x80\x7b\x70\x2e\xba\xfb\xda\x60\x81" "\xf3\x1e\xfd\xc6\x9e\x98\xea\xc2\x5f\x50\xfb\x08\x03\x41\xe7\xd2\x2a" "\xeb\x44\x83\x79\xd5\x81\x28\x1a\xb6\x89\x2c\xbf\xfc\x6f\x6b\x3c\x60" "\x87\xdb\xc9\x37\x81\xef\xda\x37\xbe\x9d\x2f\x94\x15\x2d\x18\xde\xcf" "\x03\xb5\xb7\x54\x4d\x22\x41\x15\xb6\x31\xaf\x9e\x1b\x60\x7f\x96\x57" "\x79\xf1\xd6\xfa\xa8\xef\xe1\xff\xda\xe1\xf5\xf6\x4f\x6c\x93\xd8\x81" "\x7d\xd4\x85\x55\x53\x4e\xb8\xb3\xd5\x43\x1c\x56\xab\x0d\x09\x62\x07" "\x55\x35\x10\x1b\x4d\xcd\x86\x6f\xc1\x39\x53\xfc\x14\x8d\x4b\x9e\x17" "\x43\x78\x1c\x6a\x53\x8c\xe7\xa5\x8d\xab\x35\xd5\x51\x1b\x94\x84\x91" "\xcb\x7a\x63\xb0\x63\x7b\x7f\xb5\xf7\x5b\x52\x55\xfe\x57\x3f\xa7\xa0" "\xa7\xaf\x74\x3f\xf4\xa4\xb9\x0c\xa1\x61\x61\xe4\x08\x9f\xa3\x7f\x04" "\xd5\x46\x7b\xde\x41\xa2\x7f\xff\x2d\xa7\x49\xd0\x16\xce\x4f\xde\x24" "\x17\xc1\x6a\x73\x7c\x9f\x3b\x55\x1c\x4c\x13\x3d\xf1\xb9\x3e\x9e\x56" "\xe0\xc8\xc8\x1d\x67\xf9\x3a\x72\xca\x84\x44\xb2\xe0\x62\x7a\x2d\x17" "\x90\x6b\x8c\x57\xdc\x45\x84\x81\xfa\x01\x9a\x4e\x43\xd2\x02\x55\xd3" "\xd2\x48\x12\x82\x7d\x97\xeb\x56\xd8\xe5\xd5\x0c\xa8\x70\x90\x47\xf6" "\xf4\x66\x99\x7a\x6d\x3a\x5b\x66\x58\x8c\x9a\x49\x16\x3c\x38\x5c\x95" "\xf2\xd5\x52\xf8\x92\x5d\xbf\x38\xfd\x71\x96\x75\xe2\xb1\x9f\xa1\x25" "\xfa\xae\xec\x9b\xe6\xb5\x4b\x80\x4e\xb9\x19\xef\x47\x13\x30\x20\x6d" "\xb4\xa8\x6a\xae\xb2\x2b\x85\x37\xb0\x0f\xef\x0c\x5f\x6c\x0e\x3e\xd3" "\x9b\x03\xff\x8b\xa2\x66\x60\xfe\x44\x8c\xcb\xe1\x72\x94\xc3\x80\xb1" "\x2c\x09\xda\x8f\xc0\x73\x09\xcb\x78\x9c\xf4\xf5\x6c\xda\x7b\x43\x98" "\xf1\x20\xa5\x0c\xa2\x6c\x93\xb8\x3e\x76\x55\xfc\x16\x91\xbb\x5a\xc0" "\xa6\x52\x5c\x45\x1a\xbb\x25\x3c\x23\x1c\x12\x8b\x18\x93\x76\xb9\x29" "\x64\x9a\xfc\x34\x1c\x29\x42\xf8\x23\x18\x9a\xf7\xa6\xad\xd1\xb2\x53" "\x13\xf8\x0c\xc1\x38\x5b\x50\xc5\x4a\x82\xdb\x66\x93\x7c\x99\x58\x7e" "\x9a\x88\x79\xb5\x4e\xe0\xb1\xfe\x13\x15\x41\x2c\x40\xef\x66\x75\x63" "\xe6\x5f\x47\x9e\x8c\xce\x0b\x11\x96\x88\x39\x69\xad\xe8\x4b\xfd\x81" "\x1c\xdc\xde\x45\xd7\x0a\xa3\x95\x61\x76\xf1\x6e\xc6\x0f\xec\xa0\xae" "\x60\xf7\xb4\x80\x21\x3a\xe5\x84\x93\x72\x26\xb1\x12\xc1\xe0\x45\x25" "\xb4\x96\x83\x38\x35\x4f\x27\xa9\xd1\x17\xb4\x48\x5d\x78\x04\x17\x2d" "\x94\x1f\x55\x55\xee\x4d\x67\x3a\x60\x54\x2b\xd0\xbf\xea\x62\x71\xac" "\xdd\xd4\xee\xd0\x2c\x73\x6f\x05\xe9\x6c\x66\x85\xae\x91\x84\xfd\x23" "\xe0\x8a\x0d\x53\xe4\xc2\xbd\x17\x82\xee\x88\x1b\x18\xce\x65\xb3\x68" "\x53\x63\x04\xb6\xc4\x59\xcf\xab\x67\x90\x9a\x10\x61\x37\xc5\x50\x01" "\xbb\x85\x25\x4a\xba\x41\xe5\xec\x69\x90\xc0\x84\xab\x8b\x8b\x19\xc2" "\xe6\x10\xf1\x80\x06\x13\x95\x1b\xf9\x1e\xed\x4c\xd4\x91\x91\x8a\x1e" "\x4a\x16\xcb\x3a\xdf\xbc\x7c\x0c\x0d\x5f\x6f\x1f\xe1\xb1\x5d\xf4\x18" "\x1a\x1a\x3b\x5b\x96\xcf\x2b\x90\x28\xa9\xb2\xb5\x84\xf1\x5b\xf2\xdc" "\xaf\x81\x8a\x1b\xe3\x4a\x50\x3b\x6a\x3b\xfa\xe1\x8e\xce\x4b\xcb\x07" "\x4b\xa5\xaf\xb2\x66\xcc\xc8\x5e\x58\xa2\xae\xf2\x71\x98\x83\xcb\x5a" "\x43\xf5\xf7\xe7\xa2\x2e\x52\x9f\x32\xdd\x5a\x5c\xe4\x68\x01\xef\xab" "\xcc\x53\x3c\x4f\xf8\x6a\x37\x5c\x0b\x1d\x77\x48\x81\x76\x00\x81\xc3" "\x30\x6c\xcf\x08\xd8\xdf\xcb\x20\x9f\xe1\x26\x51\xac\x26\x04\xb6\x51" "\x0e\x03\x82\x6b\xf0\x0d\xdf\xf5\xb0\xf5\xfb\x82\x3a\x41\x73\x9d\x03" "\x2a\xdf\xac\xac\xdc\x74\x8f\xe4\xdb\xd3\x1a\xc7\x58\xc1\x36\x20\x3a" "\xc9\x6e\xa2\x24\x99\x97\x33\x2f\x48\x74\x96\xb8\x1e\xa4\xf4\xe3\x58" "\xcf\x13\x1e\x82\xfd\x38\x1d\x7e\x08\xaf\x33\x50\xe7\x81\x54\xd6\xed" "\x4c\x19\x2a\x0b\x1d\x3f\xb1\x60\xbe\x28\x0a\xbd\x65\x77\x5a\xa2\x65" "\x1c\x1a\xfc\xd7\xd7\x29\x74\x9e\x79\xfc\x1c\xa0\xab\x83\x5a\xbc\x90" "\xad\xd8\xe5\xff\xb7\x5f\xa8\x13\x7e\x6a\xe6\x6e\xe3\xa9\x49\x47\xcd" "\x99\xa7\xdc\xfe\x30\x90\x4e\x8e\x5d\xfa\xd8\xb7\x78\x12\x24\x06\x87" "\xfc\x41\x76\x49\x0c\xa1\x5c\xab\x57\x32\x7b\x83\x3f\xa9\xe4\x8a\x1c" "\x7c\x0a\x4f\xc9\xac\x76\x32\x5e\xbe\xac\x00\x94\x19\x8f\x9e\xf8\xdb" "\xce\x65\x9a\x89\x14\xaf\xbe\x73\xa3\x58\xca\x1f\x6a\x2c\x5c\x09\xa4" "\x07\x34\xb9\x3a\x2b\xd2\x57\xaf\xa7\x78\x79\xce\x7d\x91\xcd\xd7\x6d" "\x6e\xab\xa3\xf4\x3f\x31\xad\x3b\xf2\x1c\x22\x60\x1e\x7a\x72\x13\x8c" "\xce\x4c\xc1\x6f\x83\x97\x23\xbf\x7a\xad\x20\xf3\x4e\x05\x0d\x0e\x92" "\x18\x60\x0c\x7b\xc5\x4d\x66\x4e\xee\xc7\x77\x37\xee\xd4\xd3\x45\x9c" "\x7e\x56\xa9\xf2\x24\xeb\x6a\xe3\xb4\x15\x9b\x50\xb5\x47\x22\x39\xd2" "\x7b\x50\xfb\xa5\x83\x8b\x04\x86\xa3\x82\xa8\x4e\x96\x32\x4d\x34\xd5" "\x5f\x7b\xa5\xf6\x2e\xb7\xdb\x23\x60\x75\x2b\x99\x61\xe1\x3b\xeb\x6e" "\x1b\x7b\x6c\xb6\x39\xda\xc3\x73\x1f\xaf\xe9\xfa\x9f\x7e\xeb\x93\x6f" "\x27\xdb\x25\xb4\x0a\x36\xa2\xcb\x66\x53\xad\xb5\x6c\xc4\x5f\x9a\xad" "\xf8\xf0\xae\x8b\x81\x0e\xae\x78\x70\xab\xc8\xb9\x1d\x5c\x2c\xda\xc3" "\x9f\x02\x9f\x90\x4a\xfd\xda\x86\x5f\x59\x42\x41\x55\x42\x07\x93\xf2" "\xdf\xd4\x81\xb6\x16\x6c\xa8\x05\x8c\x82\x81\x13\x02\x02\xff\x9f\x36" "\x1a\x01\xe1\x3c\x53\x5c\x60\x0e\x78\xbf\x6b\x84\x94\x4d\x00\xf5\x32" "\xfb\x6c\x46\x60\xb6\x73\x26\x0b\x3d\xdb\x30\x9f\x63\xc9\xb7\x37\x6f" "\xdf\x39\x21\xd1\xb8\x34\x92\x4a\x2d\x23\x60\x68\xe8\x7d\x94\x54\xbd" "\x34\x9e\x11\x02\x1a\xae\xc0\x20\xaa\x69\xa8\xcc\xdb\xef\x52\xa7\xc4" "\xe6\xec\x21\x22\xca\xeb\x56\x02\x3b\x32\x92\x3c\xb4\x8d\x82\x4d\xde" "\x80\x03\xc6\x9d\x12\x2c\x7e\x81\xcc\x84\xa6\x41\xab\x34\x46\xad\xf3" "\x48\x4a\x58\xce\xcf\xf3\xb6\x04\x70\xd7\xa1\x39\x0e\x68\x40\x69\xa4" "\x61\x43\xf0\x34\x25\x78\x03\xea\x40\x49\xba\x54\xe6\x70\x5e\xee\x28" "\xe7\xce\x92\x13\x2d\x1f\xcc\xf8\xb1\x00\xe0\xa3\x9b\x5a\xf6\xd5\x9f" "\x9e\x43\xae\x54\x48\x32\x7d\x76\x1e\x26\x4d\x03\x91\x8b\x29\x35\xd7" "\x03\xb2\x1b\xd7\xd4\x89\x13\xbf\x8b\x62\x65\xd7\x66\xb5\x1e\x8a\xe3" "\xd8\x52\xd8\x78\xd3\xb1\x23\x45\xea\x1f\x31\xac\x2b\x0b\x4d\xf4\x6b" "\x4f\xf2\xfb\xc5\x96\x31\x88\x4f\xf2\x6b\x09\xfe\xc3\x6f\x46\xcb\x8b" "\xbb\xd8\xe5\x5f\x81\x7c\x91\xe8\xb9\xe3\x48\xcc\xe4\xfd\x09\xd8\xb7" "\x38\x2f\xe6\x7a\x63\x65\xc4\x33\x48\x95\x7a\x7c\x0b\xc3\xe4\x2b\x2d" "\x89\x12\x03\xca\x2b\xad\x25\xc6\xa9\x80\x66\xda\xe2\x16\x20\x82\x9c" "\x6e\x38\x7f\xe9\xec\x86\xac\x47\x8f\xcd\x96\x59\xd1\xae\x78\x0b\x13" "\x71\xac\xcc\x05\x88\xc0\x30\x8c\x83\x97\x7d\x95\xbb\x7d\xc6\x8f\x0e" "\x98\x54\xd8\x9a\xcd\xd4\xd4\x3d\xcd\x88\xe0\xf0\x15\xc1\x63\x93\x0c" "\x1c\xdc\xb2\x8f\x6c\x00\x1d\xa3\xca\xf3\xb0\x76\x65\x82\xcc\x50\xd7" "\x54\x35\x7b\x7e\x1c\xa2\xa3\xcf\x14\x60\x39\x19\x38\xf6\x04\xcc\x5a" "\x7f\xdd\xaf\x1e\xcf\x8e\xaf\xbd\x2b\xb0\x0f\xc3\xbd\xb5\x83\x0f\x59" "\x69\x7a\xa9\x16\x7b\xcf\x88\xd0\x94\x0f\xd0\x7c\x08\x73\x03\xc9\x7d" "\x54\x20\xb7\x94\x8d\xef\x97\x6d\x17\x9c\x53\x5f\x5c\x1b\x29\x99\x19" "\xfb\x3e\x7e\x39\x8c\xa7\xed\x49\x8a\x7f\xd7\x4e\x11\x47\xfe\xea\x14" "\xd1\x4b\x7e\xa1\x71\x6b\x93\x9b\xf1\x91\x3a\xd9\xd1\xde\x4c\x99\xb8" "\x6e\x27\x72\x95\x84\xf5\x7c\x61\xc4\x99\x70\xf7\xef\xc6\xc1\x9a\x50" "\x31\x3f\xa1\xc7\x3f\x4b\xe8\x12\x1a\xbd\x65\xcd\x2b\x82\xb4\x3f\x18" "\x56\xb9\xd6\xb0\xda\x31\x81\x3d\x96\x15\xa4\xdc\x79\x14\x6b\xec\x4f" "\x16\xc0\x5e\x88\xe1\x29\xcb\x27\x1b\x07\x18\x1e\x2b\x5f\xa2\xff\x06" "\x6f\x13\x52\x46\xf0\x8f\xfe\x26\x15\x83\x80\xe8\x98\x87\x30\x9b\x65" "\x08\x4d\x86\x23\x79\x15\xa7\xc4\x44\x95\x13\xd6\x02\xbd\x3b\xd4\x8c" "\xd3\x10\x03\xe5\x3d\x99\x3b\x18\x0c\xef\x67\x44\x51\xc1\x5c\x04", 4096)); NONFAILING(*(uint64_t*)0x20003b50 = 0x88); NONFAILING(*(uint32_t*)0x20003b58 = 0x100); NONFAILING(*(uint32_t*)0x20003b5c = 0xfff); NONFAILING(memcpy( (void*)0x20003b60, "\x41\x35\xbe\x1c\x56\xd9\x0b\x72\xda\x37\xf4\x10\x16\x29\x80\xd4\x1b" "\xd2\xd0\xea\x42\x1a\xaa\x78\xc5\xe2\x3e\x12\xee\x13\x1f\xa5\xc9\x93" "\xe7\x91\x66\x63\x09\xa3\x34\xb4\x43\xf3\x3e\x88\x27\x37\x1d\x15\x56" "\x6b\x15\xa4\x3d\x64\x82\xcd\xa6\xe9\xec\xf9\xff\x2e\x13\x87\xe2\xe8" "\x7e\xa2\xf7\xd6\x55\xc8\x8d\xfb\xc4\xd7\x3a\xdb\x38\x70\x4d\x28\x64" "\x8e\xb0\xa6\x85\x05\xe3\x2c\x15\x40\x61\xfd\x35\xbb\x72\x5d\x69\x44" "\x17\x45\x49\x3c\x4b\x63\x05\x52\x41\xba\x6c\x1e", 114)); NONFAILING(*(uint64_t*)0x20003bd8 = 0x58); NONFAILING(*(uint32_t*)0x20003be0 = 0x100); NONFAILING(*(uint32_t*)0x20003be4 = 0x1f); NONFAILING(memcpy( (void*)0x20003be8, "\x4f\xcd\x4b\x26\x18\xac\x3e\xd0\x37\x3e\x2d\x21\x1c\x36\x1b\x68\xac" "\x25\x2c\xe3\x6d\x25\x2e\x8a\xca\x05\x02\x15\x59\x33\xb6\xf6\xbf\xc8" "\x34\x2a\xe1\x11\xfa\xa0\xcf\x82\x79\xab\x8d\xb5\xf9\x14\xc8\x6c\x38" "\x23\xb2\x87\xb0\xbb\xd4\x1d\x98\x8c\xea\x44\x7b\xbd\xc2", 65)); NONFAILING(*(uint64_t*)0x20003c30 = 0x70); NONFAILING(*(uint32_t*)0x20003c38 = 0x29); NONFAILING(*(uint32_t*)0x20003c3c = 9); NONFAILING(memcpy( (void*)0x20003c40, "\xb3\x44\x3c\xef\x22\xde\x7a\x79\xd4\x8f\x82\xd2\xde\xa8\x55\x67\x64" "\xdb\x33\x0d\x64\xc1\xeb\x5f\xa8\x6e\x16\x2b\x92\x70\x42\xab\xc2\xd3" "\xd0\x91\x89\x7f\x25\xf4\xb9\x01\x6b\xbe\x5b\x5f\xf5\x51\x47\x97\xff" "\x88\x52\xbb\xf2\xff\x2a\xa7\xbb\x85\x09\xb3\x09\xde\x20\xf9\x1d\x5d" "\x4b\xf2\x87\x29\x79\x65\xa4\x97\xba\x3f\xd0\xa5\x23\xcd\x6e\x8d\x22" "\xed\x64\x00\x49\x5b\xe3\xee\x0d", 93)); NONFAILING(*(uint64_t*)0x20003ca0 = 0x1010); NONFAILING(*(uint32_t*)0x20003ca8 = 0x11); NONFAILING(*(uint32_t*)0x20003cac = 0x80000000); NONFAILING(memcpy( (void*)0x20003cb0, "\x2f\x55\xc9\xe6\x4d\xf5\x2a\xe0\xfc\xd3\xc0\xd4\xe1\xf8\xe6\x95\x20" "\x69\xdd\xc2\x71\x43\xed\x43\xfd\x33\x6c\x83\x77\x95\xe9\x90\x4d\x71" "\xf6\x17\xf6\xcf\x71\x23\x9d\x62\x39\x92\x5f\x1a\xcc\x4e\x31\xb1\xbc" "\x70\xab\x8d\x58\x14\x72\xe4\x49\xb8\x0a\x55\xae\xab\x21\xf5\x29\xba" "\x1c\x6b\x7b\xc4\xbb\x68\x06\xa8\x21\x55\x1a\xa5\x38\x1c\x98\xdb\xda" "\x27\x35\xad\xc4\x2c\x6a\x8c\xf1\x0d\xf9\xfb\x35\xdb\x6a\xf3\x54\x47" "\x97\x96\x9c\xc6\x4d\x96\x38\x34\xf5\xc0\xf2\x3e\xa2\x36\xfe\xcd\xce" "\x80\x6a\x7a\xea\x4a\x83\xae\x60\xa2\x41\x7e\x64\x59\xfc\xeb\xac\x12" "\xc5\x89\xf4\x78\x4e\x54\x14\x26\x6d\x3d\x07\x88\x0a\xe6\x64\x97\x77" "\xff\x15\xc6\x3b\x64\x31\x9f\x15\x2f\x27\x0e\xe9\x07\xfe\x3b\xff\xde" "\xf5\x5e\x49\x50\x10\xfe\xc9\x0b\xe4\x97\x78\x19\x4d\x56\x2a\x9c\xcd" "\x5d\x96\x00\x8c\x27\xe8\xba\xfe\x3e\xad\x2d\xa8\x78\xed\x55\x84\xd1" "\xa2\xd5\xdf\xca\x69\xdc\x9c\x40\x99\xf6\x0b\xf5\x24\x11\x13\xf3\x3f" "\x0a\x09\xbf\x88\x30\x9c\xaf\xd5\xda\x24\xe6\x39\x17\x49\xbc\xed\xf2" "\x8d\x98\x8c\xb7\xea\x87\x49\x3d\xf6\xba\xa6\x4d\x57\x25\xa9\x1d\xff" "\x65\x51\xa8\x6a\x11\x87\x5b\xff\x62\xcf\x20\xd1\x4f\xca\xb3\x71\x9b" "\xd8\x03\x66\xcc\xcc\x8b\x8e\x66\xf8\x08\xc3\x28\x18\x33\xba\x42\x99" "\xad\x8b\xfd\xe7\xae\xf4\x3f\xbc\x4b\x1c\x1b\xf6\xb8\xca\xa7\xad\xa4" "\x4b\x02\x89\xd1\x07\x65\x33\xb4\x8c\xb9\x67\x7b\xed\x9c\x38\x74\xcb" "\x66\xe9\x70\x6f\x96\x27\x60\xf7\x68\x5e\xd4\xe8\x95\x3c\x87\x59\x33" "\x5d\x50\x20\xbf\xb7\xf9\xf0\x2d\xe0\x3f\x6a\x70\x11\x4e\xc1\xd6\x40" "\x5d\xf5\xdb\x96\xb1\x25\x6a\xba\x04\x95\xdb\xe4\xb4\x7e\x61\xca\xa9" "\x0f\x25\x92\x61\x9d\x87\x71\x71\xa4\x43\xe8\x56\xcc\x53\xdd\x83\xd3" "\xb2\xac\x7f\xba\x4c\x48\xb9\x6a\xd2\xff\xab\xc2\x7c\x9f\x45\x28\xf8" "\x76\xca\xdb\x35\x32\xbb\x73\xf7\xc8\x44\x4a\xd4\x3d\xd9\xfc\x72\x32" "\x75\x41\x64\x94\x86\x8a\x4a\x4c\x53\x00\x5f\x4d\x17\x29\x1b\x72\x1b" "\x47\xa1\x83\x75\x33\x7d\x23\xf8\x96\xaf\x9c\x7a\x2e\xa7\x8a\xe1\x93" "\x8d\x26\xca\x2b\x6d\x38\xe2\x5a\xce\xc1\x26\xd9\x36\x2e\xe7\x69\x4d" "\x3d\xda\xf9\x91\x52\x1a\x97\x71\x5d\x32\x83\xf5\x39\x9f\xce\xd6\xb3" "\x74\x8d\x9d\xf6\x05\xdf\xcb\xdc\x32\x8e\x69\x23\x28\x39\x28\x37\x67" "\xc7\x1d\x1b\x5f\x96\x93\xdd\xb1\xa2\xd1\xee\xb4\xb2\x18\x10\x09\xc5" "\x6e\x7b\x7d\x3b\xda\x54\x32\x1e\xd2\x32\x61\xa9\x51\x74\xbf\x6d\x72" "\x06\x97\x5f\xc6\xc2\x1d\xd3\x25\x65\x80\x5b\x7e\x1a\x18\x5d\x61\xfd" "\x1f\xb7\x3e\x06\xc6\xcf\xed\x5c\x1a\x97\x0f\xa2\x1f\x31\x2f\x4c\x44" "\x5f\x8b\xd3\x2f\xf4\xd4\xd3\xc0\xd6\x79\x1e\x68\xc4\x49\x80\x26\x82" "\x11\xbd\x88\xfc\xfb\x54\xa0\x29\xed\x9e\x24\x1f\x18\xeb\x06\x6e\xa7" "\x28\x87\x30\x1d\x92\x78\xce\xd2\x26\xc6\xd5\x8b\xd9\xee\x10\x32\x19" "\x2d\xa0\xf3\x0e\x02\x35\x9d\xff\xa4\x95\xe3\x4d\xda\xcb\x75\x31\x3b" "\xcd\xad\x87\xcc\xf4\xfd\xa2\x3e\xbf\xd6\xf4\xa5\xc7\x77\xe0\x35\x98" "\x45\x96\xf6\x37\xc5\xa1\xf6\x65\x8b\xc8\x29\x66\xde\xe8\x1a\x0a\xe3" "\x60\x7c\x72\xfd\x8a\x4c\x61\xac\x13\x61\x1f\x25\xfc\x73\x86\xc1\x9e" "\x9d\x02\x32\x72\x8d\x82\xc0\x25\xb6\x47\x54\xa6\xe5\xae\xc6\xe2\xbf" "\xb1\x80\xd5\x79\x36\x25\xbb\xc6\x2f\x94\x7d\x6b\xfa\x98\x21\x75\x2b" "\x17\x3b\x86\x6d\x6d\xeb\x9c\x3b\x57\xb9\x6d\x39\x9e\xbf\x22\x60\xb8" "\xa1\x52\x00\x66\xcf\x59\xa2\xa1\x58\xc2\xc9\xfa\xf5\x4e\x66\x09\x3a" "\xe5\x14\xa2\xcd\x1d\x14\xc9\xd2\xdb\x6e\x8e\x47\x18\x87\x83\x78\x47" "\x65\x90\x29\x00\xf6\x0e\xac\x2a\x08\xcc\x6e\xbc\x12\x48\x19\x9d\x30" "\xae\x29\x7a\xbc\xe9\x08\xfc\xab\x0c\x27\xb7\x32\x4b\x26\x53\x89\xd7" "\x4e\xa2\xd7\xf8\xbc\xcd\x12\xf8\x37\x78\x74\x9a\x89\x23\xd7\xe6\x91" "\x9a\xce\x8c\x18\x2b\xac\x08\x05\xa6\xd6\x84\x02\x30\xb8\xbd\xe7\x37" "\xcc\xa8\xc8\xc9\xea\x9b\x22\x2b\xe5\x80\x96\x1e\xcd\x16\xf1\xea\x38" "\x09\x6d\xbc\xea\xcc\x1c\x26\xef\xf4\xa1\x0f\xbf\xf8\x1c\x51\xd2\x3a" "\x33\xb6\xed\x28\x25\x56\xa0\xe6\x05\xe0\x08\x6e\x39\x64\xeb\xf8\xe1" "\x0d\x6c\x5c\x3f\x2b\x1e\x2b\x55\xca\x4c\x42\x87\x99\xdd\x54\x46\x39" "\xa0\x00\x61\x13\x85\x5b\x78\x90\xdb\xf8\x4a\xc0\x0b\xb1\xe8\x50\xcc" "\xbf\xa5\x8d\x5f\x96\x99\x8a\x8c\xa2\x13\x21\x5c\xc3\x2e\x08\xd9\xc2" "\xdd\x51\xaa\x52\x3c\xf5\xbd\x72\xfa\xd5\x37\x60\x82\xf1\x4e\x1d\x72" "\xc4\x07\xbc\x37\x07\x69\x66\x74\xa4\x18\x11\xfe\xb6\x0a\x40\x28\x80" "\x47\x23\xf1\x7a\xbc\x1e\x7c\x87\x19\x0d\x18\x50\x1d\xa7\x18\xdb\xc1" "\x73\xd0\xa6\x59\x6d\x18\xae\x19\xda\x9d\xe1\x65\xaf\x68\x9a\x57\x92" "\x73\x15\x49\xc9\xaa\x1a\x2e\xe0\x7b\x54\x34\xfb\x70\x36\xb3\xfa\x90" "\xc5\x2f\x60\xf6\xcd\x7d\x61\xe1\xfc\xf7\xe0\xa9\x8e\xba\x0a\xf8\xac" "\xc5\x89\x89\xbf\xaf\x93\x89\xdb\xd1\x92\xae\x02\x49\x38\x13\x44\x0a" "\x68\x91\x83\x48\x7d\x10\xe2\x32\xda\xf3\x91\x04\x70\x26\x1f\xe5\xdc" "\xf1\xe6\x14\x35\x2b\x3f\xc3\x4c\x97\x05\x4e\x28\x0e\x16\xc1\xcd\xec" "\x71\x65\xab\xbf\xa6\x94\xcf\x31\x3f\xce\x0e\xec\xc9\x4d\xd3\x1c\x7e" "\xca\xa9\x5a\x6b\x9b\xd9\x4f\xd4\x43\xf6\x89\x5c\x8d\x49\x94\x2d\xc5" "\x8d\x3c\x8c\x8e\x1d\x2d\xc6\x77\x63\xb3\x0e\x81\xc5\x8f\x7b\x18\x95" "\x57\x06\xdc\x53\xa9\x80\xd4\xbb\xfe\x63\x42\x06\x8e\xf0\xa3\xf2\xbe" "\xb1\xfb\xc9\x76\xd6\x3a\xc1\x4b\x86\xfa\x98\x87\xe6\x25\xb0\x84\x3b" "\x0e\x74\xc0\x37\x8d\xa4\xc3\x3d\xd9\x5b\x1f\xcc\xd1\xc8\x39\xe4\x4c" "\x21\x60\xcf\x7b\xfd\xba\xb9\xa2\x77\xa8\x81\xc9\x85\x4b\x5e\x25\x6c" "\x3a\xab\x23\xd0\x18\x11\x80\x97\x60\x0b\x07\x50\x8d\x22\xe4\x5d\x20" "\xa8\x61\x07\x61\xcc\xea\xb7\x41\x3f\x19\x4a\x4c\xcb\x64\x92\x0c\x1c" "\x7d\xea\x61\xb1\x50\xb1\xc3\x43\xff\xf9\x42\xb0\x96\xb4\x9d\x50\xa1" "\x62\x6a\x35\x32\x21\x96\x7f\x8c\x01\xf5\xa7\xc4\xc6\x2c\xdb\x97\xe2" "\xdf\xd5\xc1\x5d\x2a\xca\x3f\x2a\x53\x02\x16\xd3\x99\x72\x69\x26\x88" "\x13\x86\x55\x17\x3d\x22\x23\x46\x8f\xc3\xd9\x9f\x5a\x0f\x90\x84\x2e" "\xd1\x80\x4f\xb9\x54\x2c\xfe\x83\x73\xf2\x08\xd9\x19\x85\xbf\x80\xb1" "\xf6\x05\xcc\xda\x02\xea\x49\x81\xf2\xfc\x53\x4a\xa6\xc2\x27\x86\xb4" "\x35\x94\x87\x6d\xf8\xf4\x3a\xb9\x9a\xfe\x0f\x89\x0d\x23\xb8\x8e\xeb" "\x00\x3b\x38\x87\x2d\x34\xdb\xe8\xb8\xc3\x47\x56\x52\x5a\x77\xd4\x13" "\x8c\x77\xd4\x62\x38\x0a\x95\x62\x1d\x5d\x93\xba\x0b\xb6\xc4\x50\x16" "\xce\x89\xe8\x98\xb6\xd5\x60\x12\x9e\xb7\x3d\xe5\xcf\x68\x67\x74\xd5" "\x62\x6a\xff\x13\xcb\x1d\x1b\x5d\xdf\xd6\x4a\xd3\xa1\x5c\x7d\xbb\x1d" "\x6b\xba\x00\x70\x4d\x5b\x3c\xf1\x03\x44\xe1\xcf\x54\x8f\xee\x7a\x6f" "\xd6\x30\x9f\xa6\xb8\x24\xc2\x91\x53\xcb\x46\x57\xd6\x3f\x85\x24\xb0" "\x68\x47\x4f\xc3\x1c\x0c\x79\xb1\xbe\xc9\x7b\xbb\xfc\x3b\x39\x87\x4b" "\xc2\xdb\x92\x29\xb1\x21\x80\xb9\xfc\x4c\x03\xe9\x5d\xfa\x7f\x23\x88" "\x3e\xd3\xb6\xd1\xad\x0f\x72\x51\x1e\x94\x60\x84\xed\xcb\xc5\xa5\x92" "\x77\xf5\x7a\x3c\xaa\x9b\x71\xcf\xf4\xe7\x4a\x0e\x70\x3b\x42\xfc\xe6" "\x3a\xed\xf6\xd7\x45\x43\xf3\x42\xbb\x0a\xcf\x69\xa1\x17\xd6\x2e\xd4" "\xd7\x9c\x47\xbc\x32\x61\x2a\xc1\x1b\xa2\x1f\x88\x97\xa0\x2f\xa0\x2d" "\xf2\x79\xfa\xfa\x30\x4e\x20\xda\x51\xcf\xeb\x59\xe6\x7d\x00\x0a\x40" "\x4d\x4e\x08\x68\xc6\x6c\x7d\x1c\x2a\x8c\xce\xc9\x4d\xe9\x2c\x18\xed" "\xca\xa4\x1e\xa7\x77\xe3\x4f\xf9\xea\x8c\x54\xe6\xbd\xbb\x0c\xf0\x30" "\xcf\x63\x75\x03\xc2\x2c\xf0\xab\xef\x4e\xf9\x9f\x4f\x3d\x84\xae\x5c" "\x68\x62\x1c\x35\x7e\x0d\xde\x6a\xa2\xc3\xbc\xf3\x1b\xdb\xe3\x36\x83" "\xa7\x15\x52\xa5\xf5\xe6\x0c\xdf\x9a\x30\xa2\x9e\x23\x9c\x39\x0d\xcd" "\x26\xb0\xbc\xc2\x8c\x48\xda\xd0\x38\xbe\x9d\x19\xd6\xb5\x7d\x9d\x9f" "\x14\x26\xb6\x96\x19\x1a\x45\x2a\x74\xa0\xa3\x36\x45\x07\x08\x3d\x62" "\xb1\x3b\xec\x40\x3f\x5c\x47\x05\x3f\xd7\x61\x60\x9a\xfd\xe9\x59\x16" "\x48\x26\x05\xe3\x9c\x41\x80\x4f\xdb\xe7\xf8\x0b\xe4\x13\xcb\x13\x41" "\xdd\x2f\xbf\xb3\x76\x2a\x8d\x3f\x41\x3a\xe1\x10\x13\x03\x18\x8c\x31" "\xcc\x97\x96\x91\x8d\xf3\x28\x0e\xaa\x9f\x3e\xc2\x9a\x59\xc4\xf6\xf9" "\xc2\xff\x1e\x3d\xcb\x46\x96\x58\x76\xcf\x18\x9b\x92\x61\x8c\xfd\x33" "\x36\x3b\x33\x54\x98\xc9\x68\x43\x97\x2d\xcb\x97\x2f\xd1\x0a\xbd\xf9" "\xa0\xf4\x8f\x6d\x80\xc7\x0c\x79\x8e\x1a\x30\x3b\xa4\x4d\x3b\xa6\x47" "\xe6\x57\x33\xa8\xc7\x3a\xb2\xb8\xe4\xff\xff\x3f\x31\xf9\xa8\x91\x6d" "\x17\xaa\xbb\x3a\x13\x7b\x9b\xec\x3e\xe3\xdc\x07\xd7\xd1\xdf\xb2\x5b" "\xf2\x11\x91\x08\x62\x09\x1d\x13\xd1\xc7\xdc\x6f\x2c\xb8\x1f\x5e\x3a" "\x84\x49\x31\x20\x9d\x1f\xa8\x16\x25\xc5\x24\x36\xc5\x93\x7d\x69\x1b" "\xfb\x0e\x8d\xc9\x05\xd8\xff\x89\x1e\x59\x74\x81\xb3\xd5\x93\x9b\xec" "\x7e\x8c\xa9\xab\xf8\x57\xad\x38\x79\x32\x47\xea\xc5\x9c\x2b\x9d\x8a" "\xb0\xa6\x99\xc6\x98\xfd\xbf\x25\x64\x59\xb0\x53\x94\x28\x69\x14\x0f" "\xb7\x70\x32\xae\xbf\xe0\x92\x80\x93\x5f\x44\x52\x4f\x6b\x3d\xea\x95" "\x94\x4f\xdf\x51\x94\x28\xa4\x53\x4d\x2d\x2e\x8f\x37\x80\x40\x8f\x6a" "\x97\x8d\x24\xa5\x03\x86\xb2\x99\x5f\xb6\xab\x74\xed\x12\xd1\x4b\x91" "\x20\xdd\x88\x22\x40\x30\xfb\x8b\x05\xa0\x37\x0f\xda\x6e\xfc\x63\xca" "\x16\x3d\x41\x5e\x6b\xb3\x0f\x5d\xa7\xa9\xae\xb6\x73\x7d\x02\x2c\x58" "\x4f\xe7\xf5\x75\x67\xd7\xc7\xc9\x6b\x28\x5b\x5c\x2d\x55\x5a\x34\x44" "\x54\xff\xf1\x22\x81\xad\x16\xea\xe8\x64\x4a\x87\x72\xc2\x01\x33\xb5" "\x57\xf9\xcd\x86\x1f\xde\x21\x3f\x82\x1c\x51\x7c\xff\x77\x20\xce\xda" "\x05\x1a\xa6\x4e\x37\xfb\x83\x09\xb4\xc8\xa2\x7b\xfe\x7f\xdf\x65\x57" "\x68\x66\x11\x30\xf4\xcb\x24\x10\xb3\x63\x22\x87\x7d\x04\xaf\x79\x3f" "\x7c\x89\xfb\xda\xce\x73\xff\x89\xb8\x04\x89\x6f\x7f\xcc\x4c\x1b\x5c" "\xf6\x63\xe0\x86\xf0\xad\x18\x8e\x4f\x13\xc4\xc2\xaa\x19\xae\xf7\xa4" "\x7d\x77\x8c\xec\x2a\x6c\x88\x4a\x2d\xfb\xf3\xf9\x0d\x61\xda\x3a\x9c" "\x7d\x26\xcf\xa9\x6b\x25\x61\x97\x2a\x4e\xfa\xa2\x74\x2c\xd0\x8d\xcc" "\x3b\x9f\x66\xfa\x7b\xe4\xb1\x93\xb6\x7a\x3d\x88\x38\x13\xa5\x93\x64" "\xf7\x2e\xc2\xc3\x52\x67\xc6\x0d\x0f\x90\x72\x9d\x1e\x39\x47\x10\x8c" "\xf3\x07\x69\x1c\x3b\x13\xc6\x50\x3c\x9f\x50\x75\x21\xb3\xe1\x41\xac" "\xc2\x84\xfb\xcf\xa0\x8d\xc8\xf3\x91\xd1\xdc\x8a\xf7\x99\x9c\x75\x0d" "\x78\x75\xf8\xc6\x68\xbf\x7a\xce\x75\x43\xed\x2f\x1b\x02\x64\x77\x41" "\x77\x2c\xbd\x23\x52\xe2\xce\x1f\x28\x3f\xad\x04\x35\x8b\x2b\xbe\xef" "\x13\xf1\x0e\x7a\x1d\x08\xcd\xe6\x13\x25\x46\x4d\xcb\x99\x34\x99\x45" "\x73\x95\x12\x69\x15\x0b\x0e\x0c\xd0\x73\x65\xbd\x0e\x69\x41\x9a\x74" "\xa0\x9c\x04\x30\xf9\xe2\x0e\xb1\xe8\xd1\xbd\x60\xd0\x99\xc7\xe5\xcf" "\xf7\xd8\x49\xa8\x6d\x18\xea\x06\x52\x4e\x30\x93\x59\x2f\x37\xd4\x44" "\x04\x93\x5a\xe7\x88\x19\x0b\x97\x0c\xcd\x54\xd3\x48\x96\x16\x70\xf2" "\x4a\x90\x74\xbb\xcf\x33\x8d\xbe\x69\x77\x59\x1c\x4a\x7d\x23\xed\x45" "\x85\x12\xe2\x72\xa9\xe7\x0f\x91\xea\x45\x01\xbc\xa6\xbb\xff\xa0\xb4" "\x26\x5e\xa7\x78\xb4\xbc\x44\x48\x5f\x5a\xd1\xbd\x63\x9f\xa9\x1c\x77" "\x6c\x8a\xf0\x1b\x06\x5a\xa8\x2d\x97\x69\xa1\x3a\xdf\x64\x95\x82\x02" "\xd7\x2f\xde\xb3\xa8\x6b\x64\x92\x90\xd3\xdf\x67\xb9\x1e\xe7\x0a\xa1" "\x47\xd7\x8b\xa5\xde\x57\xeb\x88\x65\x95\x2d\x98\x7b\x4a\xa5\xad\xf6" "\x6d\x14\x41\x93\x8b\x2f\xd7\xf3\xc5\x2e\xef\xac\x21\x68\x6a\x67\xad" "\xab\x9c\x1d\x8e\xe1\x60\x49\x8b\xe3\xba\x09\x6b\x70\x2f\x41\xaa\x46" "\x85\xc2\x0e\x19\x28\x14\x0f\x7b\xc9\x25\x6d\xc8\x09\x83\x43\x47\x6e" "\x65\x25\xae\x72\xf9\xb0\xaa\x3f\x6a\xa0\xe1\x78\xe0\xc1\x9c\x2b\x0f" "\x3e\x37\x52\x21\x7d\x02\x36\x63\x47\x91\x54\xbd\xbc\xa5\xbd\xda\x7d" "\xd0\xa6\x71\xa1\xda\x62\x5a\x1d\x51\x50\x0f\xdc\xe1\x1b\x78\x85\x2d" "\x6d\x17\xe9\x60\x97\x44\x9b\x45\x8c\x10\x03\xd0\x55\x9c\x8d\xe6\x9e" "\xfb\x53\x36\x64\xe7\xa4\x57\xfb\xc3\xba\x1d\x4e\x80\xae\x22\xe9\x25" "\x00\xf3\x64\x4e\x48\xa5\x27\xc4\x74\x4e\xb1\xfb\xaa\x97\x70\x96\x3f" "\xf8\x14\xf1\x01\x91\x36\xd0\x7e\x14\x0f\xf9\xad\x23\x2f\x8b\x8b\xd8" "\xca\x12\x5a\xe0\xe4\x2a\x8f\xbb\x14\xc3\xac\x9e\x71\x49\x6e\x45\x6e" "\xf3\x9c\xfd\xca\xd6\xf4\x6f\x82\x53\xec\x78\xb7\x13\x9f\x88\x86\xbf" "\x92\x47\x9d\x2a\x95\x06\x38\x44\xbf\x7f\x28\xab\xc3\x7d\x45\xf7\x53" "\x72\xef\x93\xa5\xe3\xa8\xd6\xa6\xac\x77\xce\xf9\xa3\x45\x76\xc5\x77" "\xce\xfb\x40\x91\x17\xcb\xf2\xe2\x96\x40\x4c\x1e\xe3\x43\x19\xc1\xd8" "\x15\x46\x60\x44\xa9\x67\xc7\x6a\x55\xb1\xb1\x8a\x8e\xdf\x2b\x2b\x9e" "\xa4\x85\xa2\x91\xa7\x4f\xf1\x81\x0d\x74\x26\x93\x2a\x99\xf5\x57\x92" "\x1a\x34\xe6\x4b\x89\xd5\x5a\x56\xed\xbe\xf5\xa5\xe8\x96\xff\xea\x16" "\x6c\xe6\x59\x39\x67\x23\xb6\x83\xa8\x99\xb3\x39\x04\xa8\xea\x3e\xc2" "\x52\x16\xb9\x65\xed\x36\x39\xe3\x53\x0f\x34\x45\x6f\x0e\x84\x60\x7e" "\x76\x05\x44\x62\xb2\xf0\xa0\x55\x9c\x8f\xa1\xe0\xb1\xc4\x0f\xd9\x15" "\x91\x96\xf7\xae\x41\x2a\xd7\x7c\xd0\x32\x91\xbc\x9f\x66\x16\x47\x25" "\xbb\x36\x0b\x7a\x32\x73\xcf\x92\xde\x28\x86\x11\x49\xcb\x94\x54\x4e" "\x5e\x75\x21\xab\xa8\xd4\xd4\x73\xfe\x28\x31\x5e\xc6\xad\x6b\x46\x3c" "\x08\xce\x12\x8c\x8e\xf6\xaa\x5d\x4f\xa0\x0d\xa1\x0e\x9b\xa6\xea\xb3" "\x48\xc6\xfa\x04\x27\xd7\x84\x9b\x17\x48\xa8\x3f\x20\xb8\x42\xf5\xa1" "\xe4\xd8\x1e\x2b\x53\x49\xe8\x9d\x24\x55\x5e\x20\x3e\x0e\x4d\x9e\x3e" "\x51\x01\x4d\xe6\x9c\x94\x54\x3f\x1b\x1b\xd1\x48\xae\xec\xe8\x31\xf4" "\xd7\x7c\x4e\xf0\x78\xc5\x99\x92\x73\xf7\x54\x6c\xaf\x57\xd7\x2d\x80" "\x6c\x7e\x86\xa0\x73\x38\x7c\x1e\x3c\xc2\xe8\xc1\x44\x34\xba\x31\x94" "\xaa\x5b\xb9\xa9\x09\x71\xe8\x3d\x5f\xba\x2d\x92\xa4\xf6\x26\x8b\x6b" "\xc0\x24\xd7\x4b\x89\xab\x24\x6d\x25\x55\x51\x65\xb0\xed\x86\xa4\xdf" "\x5a\xe8\xcd\x01\xeb\x78\x0d\x54\x21\xb6\x90\x9d\xff\xb4\x8a\x10\x5e" "\xed\xc2\x61\x7e\xb4\x2b\x10\x39\xbb\x83\x41\xf7\x7c\x18\x75\xb3\x93" "\x81\xd0\x78\xea\x0c\x47\x8a\x70\xa1\x90\xa4\x54\x81\xdb\x34\x90\x1c" "\x1a\x3e\x9f\x1e\xfa\x1a\xcf\xb4\x2e\xf8\xbd\x2b\xb2\x84\x4f\x18\xeb" "\xad\x4d\xf8\x0a\x90\xa1\x9c\xc2\xbe\x07\xf6\x4f\x8b\x4d\xe2\x9d\xbb" "\x76\xda\x22\xda\x68\x4a\x96\x48\xac\x11\xdd\xd8\x41\x61\x75\x2f\x6f" "\x3a\xca\xb2\xd5\x9f\x9f\x3b\xd9\x16\x21\x6f\xf5\x76\x6e\x7a\x07\x4e" "\xff\x09\xb5\x8b\x4c\x89\x4c\xb4\x34\x9a\x54\x41\x9d\xfd\x00\x8c\xc4" "\x3f\x3f\x31\x59\x1d\xe2\xb4\x67\x03\x0c\x7a\x8b\x71\xb4\x0d\x48\xc4" "\x15\xa3\xe3\x4c\x54\x37\xb4\x66\xb7\x90\xce\xd6\xad\x38\xa1\xa2\x8c" "\xe5\x7f\x1d\xaa\x3c\x57\x1a\x3d\x3a\xb2\x3b\xfd\x1b\x91\x44\xb2\x85" "\xe3\xa8\xfc\x11\xa0\xba\xe3\xd5\xed\x3d\x05\xf7\x48\xa1\x50\x37\x7a" "\x99\xff\x40\xc3\x3f\x2a\xc1\x44\x2a\xe3\x8d\x94\x65\xc4\x48\xd9\xbe" "\xb7\x3c\xfd\x9b\xaf\x6d\xe5\x9f\x4e\xc8\x4e\xc0\x8b\x56\x8f\x9a\x15" "\xbf\x39\x16\xcd\x6d\xb5\x0f\x59\x86\xcd\xff\x9c\x86\x40\xf4\xf0\x62" "\x5f\x2f\xa7\x2b\x37\x01\x62\x38\x0c\xae\xdb\x11\xf8\xf8\x8a\xb0\x39" "\xe5\x92\x2c\x8d\x81\x13\x23\xd0\xd2\x67\xae\xe4\x10\xef\x48\x30\xf4" "\x06\xc3\x69\x0e\xf5\x83\x25\xb4\x7f\x31\x48\xb8\xc5\x78\x58\x07\xcb" "\x5f\x74\xb3\x0f\x2a\x59\x65\x6e\xb4\xbb\x52\x7d\x6a\xc7\x3b\x78\x3a" "\x84\xe1\xa9\xf4\xd0\xac\xa5\x5e\x93\x5a\x24\x5c\xcf\x38\x26\xe0\xbf" "\x3b\x9f\xcf\x06\x7f\xb7\x34\xc6\x5c\xb4\x5f\x89\x6a\xbf\x34\x2d\x27" "\x91\xd0\x31\x10\x99\x5d\xf0\x7e\xdf\xac\xfb\xf3\x44\x28\xbb\xae\x97" "\x92\xf1\x4e\x5a\x6e\x52\xd9\x40\x81\x00\x60\x32\x48\x8d\x28\xdf\xf5" "\x85\x38\xed\x08\x9b\x80\xce\xbc\xc2\xb9\xfa\xd2\xb8\xa2\x42\x62\x3e" "\xb4\xe0\x95\xce\xe9\xbf\xc3\x65\x2b\x12\xe6\x90\x1c\x08\xac\xbb\x89" "\xef\xec\x1f\xb3\x7f\xe6\xf3\x53\xcd\xcd\xd7\xf3\x91\xe3\x44\x1c\xd4" "\xff\xb5\x11\xfc\xd2\xc3\x68\x64\x09\xcf\x06\x8a\x5b\x90\xb3\xf0\x5a" "\x5a\xb7\x1b\xfa\x39\xd1\x19\xa9\x82\x58\x84\x41\x00\x16\xb3\xdc\xc6" "\x71\x44\x5c\x90\x63\x4d\xcb\xd0\xdf\xd0\xce\x40\xdc\x2b\xbe\x4c\x00" "\x96\x3c\xd8\x15\xe4\x57\xac\x06\x57\x91\xbd\xef\xa5\x64\x74\xba\xee" "\x5f\xa7\xd7\x3b\x23\xcc\xd5\x4e\x68\xd3\x6c\x3e\xed\x87\x8e\xda\x8d" "\xf7\xb4\x6f\xc2\x47\x09\x49\x11\x24\xf5\xe0\xd0\xe9\x74\x46\x7b\x28" "\xff\x7f\x25\xa0\x85\xd5\x80\xd3\x28\xaa\x94\x2f\x51\x8f\x76\xe8\xa4" "\x2c\x83\xe2\xa6\xd0\xde\x44\x69\xe9\x39\x63\xdd\x63\x21\x31\x02\x10" "\x3c\x47\xb1\x13\xc9\x58\xec\x0a\x64\xda\x47\xbe\x3d\x8f\x9f\x86\x01" "\xe5\xa8\x4e\xcf\x4a\x22\x12\x55\x4b\x1a\xfe\x03\xb6\xb8\x06\x28\xcc" "\x38\x48\xf4\xf1\xbd\x0f\x54\x34\x7b\xe7\xc4\xbd\x76\x2c\x20\xb2\xe2" "\x52\xa2\x0a\xed\x93\xda\x55\x6d\x96\x55\x60\x8f\x75\x15\xa1\xa6\xbb" "\xde\x1d\x61\xf0\xea\x13\xa7\x5a\x1b\xb6\x90\x7c\x4c\x86\x2c\x47\xd9" "\x10\x54\xed\x1b\x01\x59\xab\x81\x40\x12\xd1\xe6\x80\x06\x9b\x4d\xf3" "\xdf\x51\xa2\x53\xd6\xdf\x0e\x4e\xb2\x0d\xaf\xa1\x06\xf7\x2a\x87\x24" "\xd4\x85\x35\xcc\xc4\x5c\xbf\x35\xb5\x42\xfd\x47\x2d\x5c\x95\x19\xbb" "\x74\x3b\x8e\x28\x1e\x42\xb8\xde\xd3\x83\xd6\x54\x89\x65\x46\x3f\x3c" "\xe3\xa7\x6c\x50\x95\x8d\x13\xb6\xa7\x82\xe5\x48\x80\x40\x48\x0d\xf9" "\xa9\x25\xab\x5f\x9d\xdd\xd8\x3d\x85\xed\x19\x93\x56\x7f\x0e\x0b\xa1" "\x38\x4b\xa2\x90\xa5\xb2\x2d\x59\x3e\xf9\x33\x4a\xd5\x24\x81\x1f\xf6" "\x45\x7a\xe5\x11\xed\x5e\xc9\xf0\xe0\xac\x86\xf2\x22\x95\x84\x9f\x7a" "\x48\xda\x89\x5c\x00\x4c\x00\x91\xb2\x74\x2d\x5a\x6a\xe9\xb5\x09\xba" "\x52\xc0\xc3\x4f\x84\x13\x69\xe6\x97\x70\x84\x53\xe6\x8d\x8c\x12\x98" "\x11\x11\x22\x31\x6e\x1f\x9f\xcf\xc0\x78\xd4\x79\x9d\x9c\x38\xff\x6f" "\xc5\x4c\xa1\x37\xe1\xc9\xf4\x72\x4b\x59\xcb\xa9\x1e\x6d\x36\xca\xbe" "\x03\x48\xe0\x5b\x7d\x25\x33\x0a\x4e\xd6\xca\x38\xe9\x49\xe4\x94\xa9" "\xe0\x5b\x19\xc6\x58\x6b\xf4\x65\x23\xc3\x18\xb9\xc4\x3a\x95\x2f\xa8" "\x65\x78\x56\x89\x1f\xdc\x93\x1b\xe5\xef\x5c\x2b\xee\xe9\xc9\xb0\xd1" "\x15\x44\x8b\x16\xab\x3d\x90\x11\x22\x56\x2e\xcb\x01\x2d\x2f\x21\x17" "\x86\xb5\xb2\x81\x76\x25\xb5\x7b\xb9\x66\xf3\x91\x21\x1f\xd6\xa1\xcc" "\xaa\x14\x17\xff\x07\x36\x68\x78\x0e\xe6\x3b\xd7\x33\xd7\x28\x3a\x20" "\x81\xc5\x04\x15\x78\xc0\x50\x04\x5e\x70\xf1\x95\xda\x1e\xab\xf0\x88" "\x0e\x4d\x7b\x10\x29\x7e\x75\x01\x6c\xfb\x62\xcc\xd9\xc2\x52\x4f\xda" "\xbd\xb2\x63\x2e\x09\x8f\x60\xcb\x59\xe9\xe4\x23\xfc\x61\xd5\x17\xf6" "\xb8\x6c\x8a\xd6\x72\x83\x6d\xf5\x45\x31\xa8\xa3\x82\x43\x9f\xc1\x8a" "\x87\x2c\x9e\x6f\x5e\x7c\xa6\xbf\x3c\x82\x15\x07\x4a\x8b\x36\x7d\xf1" "\xb9\xad\xde\xef\xe0\xf4\xe8\x25\x81\x93\x9c\xe0\x4d\xda\xb1\x7f", 4096)); NONFAILING(*(uint64_t*)0x20004ce8 = 0x2170); NONFAILING(*(uint32_t*)0x20004cf0 = 0); NONFAILING(*(uint32_t*)0x20004d08 = 0xb99); NONFAILING(*(uint64_t*)0x20004d40 = 7); NONFAILING(*(uint64_t*)0x20004d48 = 3); syscall(SYS_sendmmsg, -1, 0x20004d00ul, 0x10ul, 0x402ul, 0x20004d40ul); break; } } int main(void) { syscall(SYS_mmap, 0x20000000ul, 0x1000000ul, 3ul, 0x1012ul, -1, 0ul, 0ul); install_segv_handler(); use_temporary_dir(); do_sandbox_none(); return 0; }