// https://syzkaller.appspot.com/bug?id=a5df9adcade3bea1137c135c02ea9e524d1e9983 // 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 #include #include #include #include #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; struct nlmsg { char* pos; int nesting; struct nlattr* nested[8]; char buf[4096]; }; static void netlink_init(struct nlmsg* nlmsg, int typ, int flags, const void* data, int size) { memset(nlmsg, 0, sizeof(*nlmsg)); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_type = typ; hdr->nlmsg_flags = NLM_F_REQUEST | NLM_F_ACK | flags; memcpy(hdr + 1, data, size); nlmsg->pos = (char*)(hdr + 1) + NLMSG_ALIGN(size); } static void netlink_attr(struct nlmsg* nlmsg, int typ, const void* data, int size) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_len = sizeof(*attr) + size; attr->nla_type = typ; if (size > 0) memcpy(attr + 1, data, size); nlmsg->pos += NLMSG_ALIGN(attr->nla_len); } static void netlink_nest(struct nlmsg* nlmsg, int typ) { struct nlattr* attr = (struct nlattr*)nlmsg->pos; attr->nla_type = typ; nlmsg->pos += sizeof(*attr); nlmsg->nested[nlmsg->nesting++] = attr; } static void netlink_done(struct nlmsg* nlmsg) { struct nlattr* attr = nlmsg->nested[--nlmsg->nesting]; attr->nla_len = nlmsg->pos - (char*)attr; } static int netlink_send_ext(struct nlmsg* nlmsg, int sock, uint16_t reply_type, int* reply_len, bool dofail) { if (nlmsg->pos > nlmsg->buf + sizeof(nlmsg->buf) || nlmsg->nesting) exit(1); struct nlmsghdr* hdr = (struct nlmsghdr*)nlmsg->buf; hdr->nlmsg_len = nlmsg->pos - nlmsg->buf; struct sockaddr_nl addr; memset(&addr, 0, sizeof(addr)); addr.nl_family = AF_NETLINK; ssize_t n = sendto(sock, nlmsg->buf, hdr->nlmsg_len, 0, (struct sockaddr*)&addr, sizeof(addr)); if (n != (ssize_t)hdr->nlmsg_len) { if (dofail) exit(1); return -1; } n = recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); if (reply_len) *reply_len = 0; if (n < 0) { if (dofail) exit(1); return -1; } if (n < (ssize_t)sizeof(struct nlmsghdr)) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type == NLMSG_DONE) return 0; if (reply_len && hdr->nlmsg_type == reply_type) { *reply_len = n; return 0; } if (n < (ssize_t)(sizeof(struct nlmsghdr) + sizeof(struct nlmsgerr))) { errno = EINVAL; if (dofail) exit(1); return -1; } if (hdr->nlmsg_type != NLMSG_ERROR) { errno = EINVAL; if (dofail) exit(1); return -1; } errno = -((struct nlmsgerr*)(hdr + 1))->error; return -errno; } static int netlink_send(struct nlmsg* nlmsg, int sock) { return netlink_send_ext(nlmsg, sock, 0, NULL, true); } static int netlink_query_family_id(struct nlmsg* nlmsg, int sock, const char* family_name, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = CTRL_CMD_GETFAMILY; netlink_init(nlmsg, GENL_ID_CTRL, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, CTRL_ATTR_FAMILY_NAME, family_name, strnlen(family_name, GENL_NAMSIZ - 1) + 1); int n = 0; int err = netlink_send_ext(nlmsg, sock, GENL_ID_CTRL, &n, dofail); if (err < 0) { return -1; } uint16_t id = 0; struct nlattr* attr = (struct nlattr*)(nlmsg->buf + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg->buf + n; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == CTRL_ATTR_FAMILY_ID) { id = *(uint16_t*)(attr + 1); break; } } if (!id) { errno = EINVAL; return -1; } recv(sock, nlmsg->buf, sizeof(nlmsg->buf), 0); return id; } static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); netlink_init(nlmsg, RTM_NEWLINK, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); if (name) netlink_attr(nlmsg, IFLA_IFNAME, name, strlen(name)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_device_change(struct nlmsg* nlmsg, int sock, const char* name, bool up, const char* master, const void* mac, int macsize, const char* new_name) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; hdr.ifi_index = if_nametoindex(name); netlink_init(nlmsg, RTM_NEWLINK, 0, &hdr, sizeof(hdr)); if (new_name) netlink_attr(nlmsg, IFLA_IFNAME, new_name, strlen(new_name)); if (master) { int ifindex = if_nametoindex(master); netlink_attr(nlmsg, IFLA_MASTER, &ifindex, sizeof(ifindex)); } if (macsize) netlink_attr(nlmsg, IFLA_ADDRESS, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; struct fs_image_segment { void* data; uintptr_t size; uintptr_t offset; }; #define IMAGE_MAX_SEGMENTS 4096 #define IMAGE_MAX_SIZE (129 << 20) static unsigned long fs_image_segment_check(unsigned long size, unsigned long nsegs, struct fs_image_segment* segs) { if (nsegs > IMAGE_MAX_SEGMENTS) nsegs = IMAGE_MAX_SEGMENTS; for (size_t i = 0; i < nsegs; i++) { if (segs[i].size > IMAGE_MAX_SIZE) segs[i].size = IMAGE_MAX_SIZE; segs[i].offset %= IMAGE_MAX_SIZE; if (segs[i].offset > IMAGE_MAX_SIZE - segs[i].size) segs[i].offset = IMAGE_MAX_SIZE - segs[i].size; if (size < segs[i].offset + segs[i].offset) size = segs[i].offset + segs[i].offset; } if (size > IMAGE_MAX_SIZE) size = IMAGE_MAX_SIZE; return size; } static int setup_loop_device(long unsigned size, long unsigned nsegs, struct fs_image_segment* segs, const char* loopname, int* memfd_p, int* loopfd_p) { int err = 0, loopfd = -1; size = fs_image_segment_check(size, nsegs, segs); int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (ftruncate(memfd, size)) { err = errno; goto error_close_memfd; } for (size_t i = 0; i < nsegs; i++) { if (pwrite(memfd, segs[i].data, segs[i].size, segs[i].offset) < 0) { } } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } *memfd_p = memfd; *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile unsigned long size, volatile unsigned long nsegs, volatile long segments, volatile long flags, volatile long optsarg) { struct fs_image_segment* segs = (struct fs_image_segment*)segments; int res = -1, err = 0, loopfd = -1, memfd = -1, need_loop_device = !!segs; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(size, nsegs, segs, loopname, &memfd, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); close(memfd); } errno = err; return res; } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static void setup_802154() { int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) exit(1); int sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic < 0) exit(1); int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); for (int i = 0; i < 2; i++) { char devname[] = "wpan0"; devname[strlen(devname) - 1] += i; uint64_t hwaddr = 0xaaaaaaaaaaaa0002 + (i << 8); uint16_t shortaddr = 0xaaa0 + i; int ifindex = if_nametoindex(devname); struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL802154_CMD_SET_SHORT_ADDR; netlink_init(&nlmsg, nl802154_family_id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, NL802154_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(&nlmsg, NL802154_ATTR_SHORT_ADDR, &shortaddr, sizeof(shortaddr)); int err = netlink_send(&nlmsg, sock_generic); if (err < 0) { } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0"); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(&nlmsg, sock_route); if (err < 0) { } } } close(sock_route); close(sock_generic); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); setup_802154(); memcpy((void*)0x20000000, "btrfs\000", 6); memcpy((void*)0x20000100, "./file0\000", 8); *(uint64_t*)0x20000200 = 0x20010000; memcpy( (void*)0x20010000, "\x99\x23\x49\x15\x55\x42\x86\x55\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x00\x01\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x5f\x42\x48\x52\x66\x53\x5f\x4d" "\x07\x00\x00\x00\x00\x00\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\x00\x40" "\x50\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x30\x02\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x10\x00\x00\x00\x40\x00\x00\x00\x40\x00\x00\x00\x10\x00\x00\x81\x00" "\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe1\x01\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00" "\x00\x00\x00\x80\x05\x00\x00\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00" "\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x61\xc0\x78" "\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60\xee\x88\x30\x37\x9d" "\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x20000208 = 0x140; *(uint64_t*)0x20000210 = 0x10000; *(uint64_t*)0x20000218 = 0x20010200; memcpy((void*)0x20010200, "\000\000\000\000\000\000\000\000\000\000\000\a\000\000\000\000\000" "\000\000\a\000\000\000\000\000\000\000\000\000\000\000\000", 32); *(uint64_t*)0x20000220 = 0x20; *(uint64_t*)0x20000228 = 0x10220; *(uint64_t*)0x20000230 = 0x20010300; memcpy( (void*)0x20010300, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\xe4\x00\x00\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00" "\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x22\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00" "\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00" "\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\x61\xc0" "\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x50\x01\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb" "\xec\x42\x3b\x3b\x26\xa8\x60\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0" "\x01\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b" "\x26\xa8\x60\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00", 256); *(uint64_t*)0x20000238 = 0x100; *(uint64_t*)0x20000240 = 0x10320; *(uint64_t*)0x20000248 = 0x20010400; memcpy( (void*)0x20010400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xd2\x01\x00\x00\x00" "\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x40\x50\x01\x00\x00\x00\x00\x05" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xd1\x01\x00\x00\x00\x00\x05\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\xd2\x01\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xd1\x01\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x08\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc0\xd2\x01\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x40\x50" "\x01\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd2\x01\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd0\x01\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd3\x01\x00\x00\x00\x00\x06" "\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xd0\x01\x00\x00\x00\x00\x06\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x30\x02\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\x07\x00\x00\x00\x00" "\x00\x00\x00\x00\x40\x50\x01\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\xd3\x01\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00" "\x80\xd0\x01\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd3" "\x01\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\xc0\xd0\x01\x00" "\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00" "\x00\x00\x30\x02\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\xd0\x01\x00\x00\x00" "\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\x04" "\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd0\x01\x00\x00\x00\x00\x04\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\x04\x00\x00\x00\x00" "\x00\x00\x00\x00\xc0\xd0\x01\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xd1\x01\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x08\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 640); *(uint64_t*)0x20000250 = 0x280; *(uint64_t*)0x20000258 = 0x10b20; *(uint64_t*)0x20000260 = 0; *(uint64_t*)0x20000268 = 0; *(uint64_t*)0x20000270 = 0x100000; *(uint64_t*)0x20000278 = 0; *(uint64_t*)0x20000280 = 0; *(uint64_t*)0x20000288 = 0x103ea0; *(uint64_t*)0x20000290 = 0; *(uint64_t*)0x20000298 = 0; *(uint64_t*)0x200002a0 = 0x107f60; *(uint64_t*)0x200002a8 = 0; *(uint64_t*)0x200002b0 = 0; *(uint64_t*)0x200002b8 = 0x10bf40; *(uint64_t*)0x200002c0 = 0; *(uint64_t*)0x200002c8 = 0; *(uint64_t*)0x200002d0 = 0x10ffc0; *(uint64_t*)0x200002d8 = 0; *(uint64_t*)0x200002e0 = 0; *(uint64_t*)0x200002e8 = 0x114000; *(uint64_t*)0x200002f0 = 0; *(uint64_t*)0x200002f8 = 0; *(uint64_t*)0x20000300 = 0x118000; *(uint64_t*)0x20000308 = 0; *(uint64_t*)0x20000310 = 0; *(uint64_t*)0x20000318 = 0x11bf00; *(uint64_t*)0x20000320 = 0; *(uint64_t*)0x20000328 = 0; *(uint64_t*)0x20000330 = 0x11ffa0; *(uint64_t*)0x20000338 = 0; *(uint64_t*)0x20000340 = 0; *(uint64_t*)0x20000348 = 0x123f00; *(uint64_t*)0x20000350 = 0; *(uint64_t*)0x20000358 = 0; *(uint64_t*)0x20000360 = 0x500000; *(uint64_t*)0x20000368 = 0; *(uint64_t*)0x20000370 = 0; *(uint64_t*)0x20000378 = 0x503920; *(uint64_t*)0x20000380 = 0; *(uint64_t*)0x20000388 = 0; *(uint64_t*)0x20000390 = 0x5039c0; *(uint64_t*)0x20000398 = 0; *(uint64_t*)0x200003a0 = 0; *(uint64_t*)0x200003a8 = 0x503ac0; *(uint64_t*)0x200003b0 = 0; *(uint64_t*)0x200003b8 = 0; *(uint64_t*)0x200003c0 = 0x503b60; *(uint64_t*)0x200003c8 = 0; *(uint64_t*)0x200003d0 = 0; *(uint64_t*)0x200003d8 = 0x40; *(uint64_t*)0x200003e0 = 0; *(uint64_t*)0x200003e8 = 0; *(uint64_t*)0x200003f0 = 0x503c80; *(uint64_t*)0x200003f8 = 0; *(uint64_t*)0x20000400 = 0; *(uint64_t*)0x20000408 = 0x503d20; *(uint64_t*)0x20000410 = 0; *(uint64_t*)0x20000418 = 0; *(uint64_t*)0x20000420 = 0x503e40; *(uint64_t*)0x20000428 = 0; *(uint64_t*)0x20000430 = 0; *(uint64_t*)0x20000438 = 0x503ee0; *(uint64_t*)0x20000440 = 0; *(uint64_t*)0x20000448 = 0; *(uint64_t*)0x20000450 = 0x504000; *(uint64_t*)0x20000458 = 0; *(uint64_t*)0x20000460 = 0; *(uint64_t*)0x20000468 = 0x507f60; *(uint64_t*)0x20000470 = 0; *(uint64_t*)0x20000478 = 0; *(uint64_t*)0x20000480 = 0x50bee0; *(uint64_t*)0x20000488 = 0; *(uint64_t*)0x20000490 = 0; *(uint64_t*)0x20000498 = 0x50f840; *(uint64_t*)0x200004a0 = 0; *(uint64_t*)0x200004a8 = 0; *(uint64_t*)0x200004b0 = 0x50f8e2; *(uint64_t*)0x200004b8 = 0; *(uint64_t*)0x200004c0 = 0; *(uint64_t*)0x200004c8 = 0x50f9e0; *(uint64_t*)0x200004d0 = 0; *(uint64_t*)0x200004d8 = 0; *(uint64_t*)0x200004e0 = 0x50fb60; *(uint64_t*)0x200004e8 = 0; *(uint64_t*)0x200004f0 = 0; *(uint64_t*)0x200004f8 = 0x50fc00; *(uint64_t*)0x20000500 = 0; *(uint64_t*)0x20000508 = 0; *(uint64_t*)0x20000510 = 0x50fc80; *(uint64_t*)0x20000518 = 0; *(uint64_t*)0x20000520 = 0; *(uint64_t*)0x20000528 = 0x50fd20; *(uint64_t*)0x20000530 = 0; *(uint64_t*)0x20000538 = 0; *(uint64_t*)0x20000540 = 0x50fe40; *(uint64_t*)0x20000548 = 0; *(uint64_t*)0x20000550 = 0; *(uint64_t*)0x20000558 = 0x50fee0; *(uint64_t*)0x20000560 = 0; *(uint64_t*)0x20000568 = 0; *(uint64_t*)0x20000570 = 0x510000; *(uint64_t*)0x20000578 = 0; *(uint64_t*)0x20000580 = 0; *(uint64_t*)0x20000588 = 0x513f40; *(uint64_t*)0x20000590 = 0; *(uint64_t*)0x20000598 = 0; *(uint64_t*)0x200005a0 = 0x1500000; *(uint64_t*)0x200005a8 = 0x20013600; memcpy( (void*)0x20013600, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00" "\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x50\x02\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b" "\x3b\x26\xa8\x60\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x04\x00\x00" "\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60" "\x00\x00\x80\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a" "\xbb\xec\x42\x3b\x3b\x26\xa8\x60\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xd0\x01\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b" "\x3b\x26\xa8\x60\x00\x00\x80\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00\x01\x00\x01\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\x61\xc0\x78\x48" "\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60\x00\x00\x80\x00\x00\x00" "\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10" "\x00\x00\x01\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x00" "\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26" "\xa8\x60\x00\x00\x40\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63" "\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x40\x06\x00\x00\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26" "\xa8\x60\xee\x88\x30\x37\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26" "\x23\x05\x41\x23\x76\xe2\xe5\xfa\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x40\x50\x01\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6\x44\x32" "\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x05\x00\x00\x00\x00\x00\x00\x00\x03\x00" "\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\xd8\x01\x00\x00\x00\x00\x00\x00\x00\x39\x3f\x00\x00\x62\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0\x00\x00\x00\x00\x00\xe9" "\x3e\x00\x00\x50\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00" "\x50\x01\x00\x00\x00\x00\x79\x3e\x00\x00\x70\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\xe4\x00\x00\xd0\x01\x00\x00\x00\x00\x09\x3e\x00\x00\x70" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\xe4\x00\x00\xd0\x01\x00\x00" "\x00\x00\x09\x3e\x00\x00\x70\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\xe4\x00\x00\xd0\x01\x00\x00\x00\x00\xb9\x3d\x00\x00\x70\x00\x00\x00\x00" "\x00\x00\x00\x00", 832); *(uint64_t*)0x200005b0 = 0x340; *(uint64_t*)0x200005b8 = 0x1503dc0; *(uint64_t*)0x200005c0 = 0x20013a00; memcpy( (void*)0x20013a00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00" "\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x50\x02\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b" "\x3b\x26\xa8\x60\x00\x00\x00\x02\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x50\x02\x00\x00\x00\x00\x61\xc0\x78\x48" "\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60\x00\x00\x00\x02\x00\x00" "\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x10" "\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x02" "\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26" "\xa8\x60\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x50\x04\x00\x00\x00\x00" "\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60\x00\x00" "\x80\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x01\x00\x00\x10\x00\x00\x02\x00\x01\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x50\x01\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec" "\x42\x3b\x3b\x26\xa8\x60\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01" "\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26" "\xa8\x60\x00\x00\x80\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x01\x00\x00\x10\x00\x00\x01\x00\x01\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63" "\x4e\x0a\xbb\xec\x42\x3b\x3b\x26\xa8\x60\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x80\x05\x00\x00\x00\x00\x00\x10" "\x00\x00\x00\x10\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x61\xc0\x78\x48\x37\x63\x4e\x0a\xbb\xec\x42\x3b\x3b\x26" "\xa8\x60\xee\x88\x30\x37\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f" "\x26", 576); *(uint64_t*)0x200005c8 = 0x240; *(uint64_t*)0x200005d0 = 0x1507dc0; *(uint64_t*)0x200005d8 = 0; *(uint64_t*)0x200005e0 = 0; *(uint64_t*)0x200005e8 = 0x1d00000; *(uint64_t*)0x200005f0 = 0; *(uint64_t*)0x200005f8 = 0; *(uint64_t*)0x20000600 = 0x1d03dc0; *(uint64_t*)0x20000608 = 0; *(uint64_t*)0x20000610 = 0; *(uint64_t*)0x20000618 = 0x1d07dc0; *(uint64_t*)0x20000620 = 0; *(uint64_t*)0x20000628 = 0; *(uint64_t*)0x20000630 = 0x2500000; *(uint64_t*)0x20000638 = 0; *(uint64_t*)0x20000640 = 0; *(uint64_t*)0x20000648 = 0x2503f40; *(uint64_t*)0x20000650 = 0; *(uint64_t*)0x20000658 = 0; *(uint64_t*)0x20000660 = 0x25074c0; *(uint64_t*)0x20000668 = 0x20015a00; memcpy( (void*)0x20015a00, "\x06\x00\x00\x00\x00\x00\x00\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c" "\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x06\x00\x00\x00\x00" "\x00\x00\x00\x09\x00\x66\x69\x6c\x65\x2e\x63\x6f\x6c\x64\x06\x00\x00\x00" "\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x64\x00\x00\x00\x00\x00" "\x00\x00\x64\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00" "\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06" "\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\xd0" "\x00\x00\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00" "\x00\x05\x00\x66\x69\x6c\x65\x32\x05\x00\x00\x00\x00\x00\x00\x00\x05\x00" "\x66\x69\x6c\x65\x33\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x28\x23\x00\x00\x00\x00\x00\x00\x00\x30\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xed\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c" "\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64" "\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c" "\xfd\x00\x06\x06\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00" "\x00\x00\x00\x00\x00\x06\x00\x0b\x00\x08\x75\x73\x65\x72\x2e\x78\x61\x74" "\x74\x72\x31\x78\x61\x74\x74\x72\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00" "\x0b\x00\x08\x75\x73\x65\x72\x2e\x78\x61\x74\x74\x72\x32\x78\x61\x74\x74" "\x72\x32\x03\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x31\x06" "\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x0a\x00\x00" "\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64" "\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c" "\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x06\x00\x00" "\x00\x00\x00\x00\x00\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x2f\x74\x6d\x70\x2f\x73\x79\x7a\x2d\x69\x6d\x61\x67\x65\x67\x65\x6e\x36" "\x36\x37\x36\x36\x34\x33\x30\x34\x2f\x66\x69\x6c\x65\x30\x2f\x66\x69\x6c" "\x65\x30\x03\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x31\x06" "\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x26\x00\x00" "\x00\x00\x00\x00\x00\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xa1\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64" "\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c" "\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x06\x00\x00" "\x00\x00\x00\x00\x00\x1a\x04\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72\x73\x79\x7a\x6b\x61\x6c\x6c\x65\x72" "\x73\x79\x7a\x6b\x61\x6c\x02\x00\x00\x00\x00\x00\x00\x00\x05\x00\x66\x69" "\x6c\x65\x30\x06\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x1a\x04\x00\x00\x00\x00\x00\x00\x1a\x04\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xed\x81\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00" "\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00" "\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00" "\x06\x03\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x07\x66\x69\x6c\x65\x31" "\x02\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x30\x03" "\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x07\x66\x69\x6c\x65\x31\x02\x01" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x30\x02\x00\x00" "\x00\x00\x00\x00\x00\x05\x00\x66\x69\x6c\x65\x30\x06\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x57\xbc" "\x64\x5f\x00\x00\x00\x00\xf0\xf3\xc3\x05\x57\xbc\x64\x5f\x00\x00\x00\x00" "\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc" "\x64\x5f\x00\x00\x00\x00\xf0\xf3\xc3\x05\x06\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x09\x00\x01\x66\x69\x6c\x65\x2e\x63\x6f\x6c\x64\x05\x01\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x33\x05\x01\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x32\x04\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x01\x66\x69\x6c\x65\x31\x01\x01\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x05\x00\x02\x66\x69\x6c\x65\x30\x04\x01\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x05\x00\x01\x66\x69\x6c\x65\x31\x05\x01\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05" "\x00\x01\x66\x69\x6c\x65\x32\x05\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00" "\x01\x66\x69\x6c\x65\x33\x06\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x01" "\x66\x69\x6c\x65\x2e\x63\x6f\x6c\x64\x01\x01\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x05\x00\x02\x66\x69\x6c\x65\x30\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x2e\x2e\x03\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x3a\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x56\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00" "\x57\xbc\x64\x5f\x00\x00\x00\x00\x0c\xfd\x00\x06\x57\xbc\x64\x5f\x00\x00" "\x00\x00\x0c\xfd\x00\x06\x56\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00" "\x17\xc0\x4e\xb1\xcd\x30\x23\xe3\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\xc0\xd0\x01\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6\x44\x32" "\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x06\x00\x00\x00\x00\x00\x00\x00\x07\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\xf6\xff\xff\xff\xff\xff\xff" "\xff\x80\x00\x00\xd0\x00\x00\x00\x00\x00\x83\x3f\x00\x00\x18\x00\x00\x00" "\x00\x00", 3296); *(uint64_t*)0x20000670 = 0xce0; *(uint64_t*)0x20000678 = 0x250b3a0; *(uint64_t*)0x20000680 = 0x20016700; memcpy((void*)0x20016700, "\x00\x00\x00\x00\x00\x00\x00\x00\xdb\xbb\xd8\x32\x6f\x9b\x86\xac\xdb" "\xbb\xd8\x32\x6f\x9b\x86\xac\xdb\xbb\xd8\x32\x6f\x9b\x86\xac\xd6\x19" "\x35\xc3\x11\xdf\xb2\xeb\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x00\xd1\x01\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6" "\x44\x32\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x04\x00\x00\x00\x00\x00\x00" "\x00\x07\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000688 = 0x80; *(uint64_t*)0x20000690 = 0x250ffe0; *(uint64_t*)0x20000698 = 0; *(uint64_t*)0x200006a0 = 0; *(uint64_t*)0x200006a8 = 0x2514000; *(uint64_t*)0x200006b0 = 0; *(uint64_t*)0x200006b8 = 0; *(uint64_t*)0x200006c0 = 0x400; *(uint64_t*)0x200006c8 = 0; *(uint64_t*)0x200006d0 = 0; *(uint64_t*)0x200006d8 = 0x251bfe0; *(uint64_t*)0x200006e0 = 0; *(uint64_t*)0x200006e8 = 0; *(uint64_t*)0x200006f0 = 0x251fe80; *(uint64_t*)0x200006f8 = 0; *(uint64_t*)0x20000700 = 0; *(uint64_t*)0x20000708 = 0x2523ea0; *(uint64_t*)0x20000710 = 0; *(uint64_t*)0x20000718 = 0; *(uint64_t*)0x20000720 = 0x2527560; *(uint64_t*)0x20000728 = 0; *(uint64_t*)0x20000730 = 0; *(uint64_t*)0x20000738 = 0x2527720; *(uint64_t*)0x20000740 = 0; *(uint64_t*)0x20000748 = 0; *(uint64_t*)0x20000750 = 0x2527840; *(uint64_t*)0x20000758 = 0; *(uint64_t*)0x20000760 = 0; *(uint64_t*)0x20000768 = 0x25278e0; *(uint64_t*)0x20000770 = 0; *(uint64_t*)0x20000778 = 0; *(uint64_t*)0x20000780 = 0x25279e0; *(uint64_t*)0x20000788 = 0; *(uint64_t*)0x20000790 = 0; *(uint64_t*)0x20000798 = 0xfffffffffffffffc; *(uint64_t*)0x200007a0 = 0; *(uint64_t*)0x200007a8 = 0; *(uint64_t*)0x200007b0 = 0x2527c00; *(uint64_t*)0x200007b8 = 0; *(uint64_t*)0x200007c0 = 0; *(uint64_t*)0x200007c8 = 0x2527c80; *(uint64_t*)0x200007d0 = 0; *(uint64_t*)0x200007d8 = 0; *(uint64_t*)0x200007e0 = 0x2527d20; *(uint64_t*)0x200007e8 = 0; *(uint64_t*)0x200007f0 = 0; *(uint64_t*)0x200007f8 = 0x2527e40; *(uint64_t*)0x20000800 = 0; *(uint64_t*)0x20000808 = 0; *(uint64_t*)0x20000810 = 0x2527ee0; *(uint64_t*)0x20000818 = 0; *(uint64_t*)0x20000820 = 0; *(uint64_t*)0x20000828 = 0x2528000; *(uint64_t*)0x20000830 = 0; *(uint64_t*)0x20000838 = 0; *(uint64_t*)0x20000840 = 0x252be60; *(uint64_t*)0x20000848 = 0; *(uint64_t*)0x20000850 = 0; *(uint64_t*)0x20000858 = 0x252f560; *(uint64_t*)0x20000860 = 0; *(uint64_t*)0x20000868 = 0; *(uint64_t*)0x20000870 = 0x252f720; *(uint64_t*)0x20000878 = 0; *(uint64_t*)0x20000880 = 0; *(uint64_t*)0x20000888 = 0x252f840; *(uint64_t*)0x20000890 = 0; *(uint64_t*)0x20000898 = 0; *(uint64_t*)0x200008a0 = 0x252f8e0; *(uint64_t*)0x200008a8 = 0; *(uint64_t*)0x200008b0 = 0; *(uint64_t*)0x200008b8 = 0x252f9e0; *(uint64_t*)0x200008c0 = 0; *(uint64_t*)0x200008c8 = 0; *(uint64_t*)0x200008d0 = 0x652fb60; *(uint64_t*)0x200008d8 = 0; *(uint64_t*)0x200008e0 = 0; *(uint64_t*)0x200008e8 = 0x252fc80; *(uint64_t*)0x200008f0 = 0; *(uint64_t*)0x200008f8 = 0; *(uint64_t*)0x20000900 = 0x252fd20; *(uint64_t*)0x20000908 = 0; *(uint64_t*)0x20000910 = 0; *(uint64_t*)0x20000918 = 0x252fe40; *(uint64_t*)0x20000920 = 0; *(uint64_t*)0x20000928 = 0; *(uint64_t*)0x20000930 = 0x252fee0; *(uint64_t*)0x20000938 = 0x20018f00; memcpy( (void*)0x20018f00, "\x0d\x6a\x65\x5c\x81\xb8\xb1\x19\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x00\xd3\x01\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6\x44\x32" "\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x06\x00\x00\x00\x00\x00\x00\x00\x04\x00" "\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xf9\x01\x00\x00\x00\x00\x00\x00\x00\x73\x3f\x00\x00\x28\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\xd0\x00\x00\x00\x00\x00\x43" "\x3f\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00" "\x50\x01\x00\x00\x00\x00\x13\x3f\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\xcc\x00\x00\xd0\x01\x00\x00\x00\x00\xe3\x3e\x00\x00\x30" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xcc\x00\x00\x50\x02\x00\x00" "\x00\x00\xb3\x3e\x00\x00\x30\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\xcc\x00\x00\x50\x04\x00\x00\x00\x00\x83\x3e\x00\x00\x30\x00\x00\x00\x00" "\x00\x00\x00\x00", 256); *(uint64_t*)0x20000940 = 0x100; *(uint64_t*)0x20000948 = 0x2530000; *(uint64_t*)0x20000950 = 0x20019000; memcpy( (void*)0x20019000, "\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\x00\x00\x00\x02" "\x00\x00\x00\x00\xfb\xd8\x5d\x2f\x86\xc6\x44\x32\x8e\xc7\xd8\xf7\xe2\x09" "\x66\x17\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\xd0\x01\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\xfb\xd8" "\x5d\x2f\x86\xc6\x44\x32\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00" "\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\xfb\xd8\x5d\x2f\x86\xc6\x44\x32" "\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\x00\x00\x80\x00" "\x00\x00\x00\x00\xfb\xd8\x5d\x2f\x86\xc6\x44\x32\x8e\xc7\xd8\xf7\xe2\x09" "\x66\x17\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\xd0\x00\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\xfb\xd8" "\x5d\x2f\x86\xc6\x44\x32\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x2b\xb5\x8d\xb6\xac\x2a\xc9\xcd\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x40\xd3\x01\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6\x44\x32" "\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x07\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x0a\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00" "\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\xe4\x3d\x00\x00\xb7\x01\x00\x00" "\x04\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x2d" "\x3c\x00\x00\xb7\x01\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x0c\x06\x00" "\x00\x00\x00\x00\x00\x00\x1c\x3c\x00\x00\x11\x00\x00\x00\x05\x00\x00\x00" "\x00\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x65\x3a\x00\x00\xb7" "\x01\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\xc5\x39\x00\x00\xa0\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x0c\x06\x00\x00\x00\x00\x00\x00\x00\xb9\x39\x00\x00\x0c\x00\x00\x00\x06" "\x00\x00\x00\x00\x00\x00\x00\x54\xd2\xc2\xbf\x8d\x00\x00\x00\x00\x94\x39" "\x00\x00\x25\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x84\x00\x00\x00" "\x00\x00\x00\x00\x00\xdd\x37\x00\x00\xb7\x01\x00\x00\x09\x00\x00\x00\x00" "\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x26\x36\x00\x00\xb7\x01" "\x00\x00\xf7\xff\xff\xff\xff\xff\xff\xff\x84\x00\x00\x00\x00\x00\x00\x00" "\x00\x6f\x34\x00\x00\xb7\x01\x00\x00\x00", 640); *(uint64_t*)0x20000958 = 0x280; *(uint64_t*)0x20000960 = 0x2533ee0; *(uint64_t*)0x20000968 = 0x20019300; memcpy((void*)0x20019300, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x40\xd1\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000970 = 0x80; *(uint64_t*)0x20000978 = 0x2537560; *(uint64_t*)0x20000980 = 0x20019400; memcpy((void*)0x20019400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd1\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000988 = 0x60; *(uint64_t*)0x20000990 = 0x2537720; *(uint64_t*)0x20000998 = 0x20019500; memcpy((void*)0x20019500, "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200009a0 = 0x40; *(uint64_t*)0x200009a8 = 0x2537840; *(uint64_t*)0x200009b0 = 0x20019600; memcpy((void*)0x20019600, "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xc0\xd0\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x200009b8 = 0x60; *(uint64_t*)0x200009c0 = 0x25378e0; *(uint64_t*)0x200009c8 = 0x20019700; memcpy( (void*)0x20019700, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x84\xff\xff" "\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00" "\x02\x64\x65\x66\x61\x75\x6c\x74\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x2e\x2e\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x56\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00" "\x56\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x56\xbc\x64\x5f\x00\x00" "\x00\x00\x00\x00\x00\x00\x56\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\xff\xff\xff" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x200009d0 = 0x140; *(uint64_t*)0x200009d8 = 0x25379e0; *(uint64_t*)0x200009e0 = 0x20019900; memcpy( (void*)0x20019900, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x80\xd0\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06" "\x00\x00\x00\x00\x00\x00\x00\xde\x56\x15\x6c\xa6\x25\x4a\x9b\xa3\x7e\x44" "\x82\x3e\x0a\x7c\x44\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x57\xbc\x64" "\x5f\x00\x00\x00\x00\x02\xd7\x95\x06\x56\xbc\x64\x5f\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x200009e8 = 0xe0; *(uint64_t*)0x200009f0 = 0x2537b60; *(uint64_t*)0x200009f8 = 0x20019a00; memcpy((void*)0x20019a00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x64\x65\x66\x61\x75\x6c" "\x74\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000a00 = 0x60; *(uint64_t*)0x20000a08 = 0x2537c80; *(uint64_t*)0x20000a10 = 0x20019b00; memcpy((void*)0x20019b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd3\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000a18 = 0x80; *(uint64_t*)0x20000a20 = 0x2537d20; *(uint64_t*)0x20000a28 = 0x20019c00; memcpy((void*)0x20019c00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00" "\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00", 64); *(uint64_t*)0x20000a30 = 0x40; *(uint64_t*)0x20000a38 = 0x2537e40; *(uint64_t*)0x20000a40 = 0x20019d00; memcpy((void*)0x20019d00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xd3\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000a48 = 0x60; *(uint64_t*)0x20000a50 = 0x2537ee0; *(uint64_t*)0x20000a58 = 0x20019e00; memcpy( (void*)0x20019e00, "\x13\x88\x6d\x2e\x36\xe5\xf2\xa6\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x80\xd3\x01\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6\x44\x32" "\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x07\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x00\x00\x00\xd0\x00\x00\x00\x00" "\x00\xa8\x00\x30\x00\x00\x00\x00\x00\x00\x66\x3f\x00\x00\x35\x00\x00\x00" "\x00\x00\xd0\x00\x00\x00\x00\x00\xc0\x00\x00\x80\x00\x00\x00\x00\x00\x4e" "\x3f\x00\x00\x18\x00\x00\x00\x00\x00\x50\x01\x00\x00\x00\x00\xc0\x00\x00" "\x80\x00\x00\x00\x00\x00\x36\x3f\x00\x00\x18\x00\x00\x00\x00\x40\x50\x01" "\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x15\x3f\x00\x00\x21" "\x00\x00\x00\x00\x00\xd0\x01\x00\x00\x00\x00\xc0\x00\x00\x00\x02\x00\x00" "\x00\x00\xfd\x3e\x00\x00\x18\x00\x00\x00\x00\x80\xd0\x01\x00\x00\x00\x00" "\xa9\x00\x00\x00\x00\x00\x00\x00\x00\xdc\x3e\x00\x00\x21\x00\x00\x00\x00" "\xc0\xd0\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\xbb\x3e" "\x00\x00\x21\x00\x00\x00\x00\x40\xd1\x01\x00\x00\x00\x00\xa9\x00\x00\x00" "\x00\x00\x00\x00\x00\x9a\x3e\x00\x00\x21\x00\x00\x00\x00\x80\xd1\x01\x00" "\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x79\x3e\x00\x00\x21\x00" "\x00\x00\x00\x00\xd3\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00" "\x00\x58\x3e\x00\x00\x21\x00\x00\x00\x00\x40\xd3\x01\x00\x00\x00\x00\xa9" "\x00\x00\x00\x00\x00\x00\x00\x00\x37\x3e\x00\x00\x21\x00\x00\x00\x00\x80" "\xd3\x01\x00\x00\x00\x00\xa9\x00\x00\x00\x00\x00\x00\x00\x00\x16\x3e\x00" "\x00\x21\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 416); *(uint64_t*)0x20000a60 = 0x1a0; *(uint64_t*)0x20000a68 = 0x2538000; *(uint64_t*)0x20000a70 = 0x2001a000; memcpy( (void*)0x2001a000, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x07" "\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x02\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x01\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xb0\x09\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00" "\x00\x00\x00\xb0\xf7\xff\xff\xff\xff\xff\xff\xff\x01\x00\x00\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xb0\x07\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x06" "\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\xb0\x05\x00" "\x00\x00\x00\x00\x00\x00\x00\xc0\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xb0\x03\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x22\x00\x00\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb2\x05\x00\x00\x00\x00\x00\x00\x00" "\x05\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00", 416); *(uint64_t*)0x20000a78 = 0x1a0; *(uint64_t*)0x20000a80 = 0x253be60; *(uint64_t*)0x20000a88 = 0; *(uint64_t*)0x20000a90 = 0; *(uint64_t*)0x20000a98 = 0x4000000; *(uint64_t*)0x20000aa0 = 0; *(uint64_t*)0x20000aa8 = 0; *(uint64_t*)0x20000ab0 = 0x4000220; *(uint64_t*)0x20000ab8 = 0; *(uint64_t*)0x20000ac0 = 0; *(uint64_t*)0x20000ac8 = 0x4000320; *(uint64_t*)0x20000ad0 = 0; *(uint64_t*)0x20000ad8 = 0; *(uint64_t*)0x20000ae0 = 0x4000b20; *(uint64_t*)0x20000ae8 = 0; *(uint64_t*)0x20000af0 = 0; *(uint64_t*)0x20000af8 = 0x4500000; *(uint64_t*)0x20000b00 = 0; *(uint64_t*)0x20000b08 = 0; *(uint64_t*)0x20000b10 = 0x4503f40; *(uint64_t*)0x20000b18 = 0; *(uint64_t*)0x20000b20 = 0; *(uint64_t*)0x20000b28 = 0x45074c0; *(uint64_t*)0x20000b30 = 0; *(uint64_t*)0x20000b38 = 0; *(uint64_t*)0x20000b40 = 0x450b3a0; *(uint64_t*)0x20000b48 = 0; *(uint64_t*)0x20000b50 = 0; *(uint64_t*)0x20000b58 = 0x450ffe0; *(uint64_t*)0x20000b60 = 0x2001cc00; memcpy( (void*)0x2001cc00, "\xf3\xe8\xc7\xfb\x88\xe1\x97\xd7\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37" "\x9d\x30\x4c\x68\xa7\xf1\x59\x37\xe6\xa1\x8f\x26\x00\x40\xd1\x01\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6\x44\x32" "\x8e\xc7\xd8\xf7\xe2\x09\x66\x17\x04\x00\x00\x00\x00\x00\x00\x00\xf7\xff" "\xff\xff\xff\xff\xff\xff\x02\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\xfb\x3e\x00\x00\xa0\x00\x00\x00" "\x00\x01\x00\x00\x00\x00\x00\x00\x0c\x00\x01\x00\x00\x00\x00\x00\x00\xef" "\x3e\x00\x00\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x20000b68 = 0xa0; *(uint64_t*)0x20000b70 = 0x4514000; *(uint64_t*)0x20000b78 = 0x2001cd00; memcpy( (void*)0x2001cd00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x2e\x2e\x04\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x56\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x56\xbc\x64\x5f\x00\x00" "\x00\x00\x00\x00\x00\x00\x56\xbc\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc1\x12\x02\x07\x64\x6a" "\xf7\x4f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xee\x88\x30\x37\x9d\x30\x4c\x68\xa7\xf1" "\x59\x37\xe6\xa1\x8f\x26\x00\x80\xd1\x01\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x01\xfb\xd8\x5d\x2f\x86\xc6\x44\x32\x8e\xc7\xd8\xf7\xe2\x09" "\x66\x17\x04\x00\x00\x00\x00\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\xde\x56\x15\x6c\xa6\x25\x4a\x9b\xfb\xa3\x7e\x44\x82" "\x3e\x0a\x7c\x44\x93\x3f\x00\x00\x08\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x20000b80 = 0x140; *(uint64_t*)0x20000b88 = 0x4517f40; *(uint64_t*)0x20000b90 = 0; *(uint64_t*)0x20000b98 = 0; *(uint64_t*)0x20000ba0 = 0x451bfe0; *(uint64_t*)0x20000ba8 = 0; *(uint64_t*)0x20000bb0 = 0; *(uint64_t*)0x20000bb8 = 0x451fe80; *(uint64_t*)0x20000bc0 = 0; *(uint64_t*)0x20000bc8 = 0; *(uint64_t*)0x20000bd0 = 0x4523ea0; *(uint64_t*)0x20000bd8 = 0; *(uint64_t*)0x20000be0 = 0; *(uint64_t*)0x20000be8 = 0x4527560; *(uint64_t*)0x20000bf0 = 0; *(uint64_t*)0x20000bf8 = 0; *(uint64_t*)0x20000c00 = 0x4527720; *(uint64_t*)0x20000c08 = 0; *(uint64_t*)0x20000c10 = 0; *(uint64_t*)0x20000c18 = 0x4527840; *(uint64_t*)0x20000c20 = 0; *(uint64_t*)0x20000c28 = 0; *(uint64_t*)0x20000c30 = 0x45278e0; *(uint64_t*)0x20000c38 = 0; *(uint64_t*)0x20000c40 = 0; *(uint64_t*)0x20000c48 = 0x45279e0; *(uint64_t*)0x20000c50 = 0; *(uint64_t*)0x20000c58 = 0; *(uint64_t*)0x20000c60 = 0x4527b60; *(uint64_t*)0x20000c68 = 0; *(uint64_t*)0x20000c70 = 0; *(uint64_t*)0x20000c78 = 0x4527c00; *(uint64_t*)0x20000c80 = 0; *(uint64_t*)0x20000c88 = 0; *(uint64_t*)0x20000c90 = 0x4527c80; *(uint64_t*)0x20000c98 = 0; *(uint64_t*)0x20000ca0 = 0; *(uint64_t*)0x20000ca8 = 0x4527d20; *(uint64_t*)0x20000cb0 = 0; *(uint64_t*)0x20000cb8 = 0; *(uint64_t*)0x20000cc0 = 0x4527e40; *(uint64_t*)0x20000cc8 = 0; *(uint64_t*)0x20000cd0 = 0; *(uint64_t*)0x20000cd8 = 0x4527ee0; *(uint64_t*)0x20000ce0 = 0; *(uint64_t*)0x20000ce8 = 0; *(uint64_t*)0x20000cf0 = 0x4528000; *(uint64_t*)0x20000cf8 = 0; *(uint64_t*)0x20000d00 = 0; *(uint64_t*)0x20000d08 = 0x452be60; *(uint64_t*)0x20000d10 = 0; *(uint64_t*)0x20000d18 = 0; *(uint64_t*)0x20000d20 = 0x452f560; *(uint64_t*)0x20000d28 = 0; *(uint64_t*)0x20000d30 = 0; *(uint64_t*)0x20000d38 = 0x452f720; *(uint64_t*)0x20000d40 = 0; *(uint64_t*)0x20000d48 = 0; *(uint64_t*)0x20000d50 = 0x452f840; *(uint64_t*)0x20000d58 = 0; *(uint64_t*)0x20000d60 = 0; *(uint64_t*)0x20000d68 = 0x452f8e0; *(uint64_t*)0x20000d70 = 0; *(uint64_t*)0x20000d78 = 0; *(uint64_t*)0x20000d80 = 0x452f9e0; *(uint64_t*)0x20000d88 = 0; *(uint64_t*)0x20000d90 = 0; *(uint64_t*)0x20000d98 = 4; *(uint64_t*)0x20000da0 = 0; *(uint64_t*)0x20000da8 = 0; *(uint64_t*)0x20000db0 = 0x452fc80; *(uint64_t*)0x20000db8 = 0; *(uint64_t*)0x20000dc0 = 0; *(uint64_t*)0x20000dc8 = 0x452fd20; *(uint64_t*)0x20000dd0 = 0; *(uint64_t*)0x20000dd8 = 0; *(uint64_t*)0x20000de0 = 0x452fe40; *(uint64_t*)0x20000de8 = 0; *(uint64_t*)0x20000df0 = 0; *(uint64_t*)0x20000df8 = 0x452fee0; *(uint64_t*)0x20000e00 = 0; *(uint64_t*)0x20000e08 = 0; *(uint64_t*)0x20000e10 = 0x4530000; *(uint64_t*)0x20000e18 = 0; *(uint64_t*)0x20000e20 = 0; *(uint64_t*)0x20000e28 = 0x4533ee0; *(uint64_t*)0x20000e30 = 0; *(uint64_t*)0x20000e38 = 0; *(uint64_t*)0x20000e40 = 0x4537560; *(uint64_t*)0x20000e48 = 0; *(uint64_t*)0x20000e50 = 0; *(uint64_t*)0x20000e58 = 0x4537720; *(uint64_t*)0x20000e60 = 0; *(uint64_t*)0x20000e68 = 0; *(uint64_t*)0x20000e70 = 0x4537840; *(uint64_t*)0x20000e78 = 0; *(uint64_t*)0x20000e80 = 0; *(uint64_t*)0x20000e88 = 0x45378e0; *(uint64_t*)0x20000e90 = 0; *(uint64_t*)0x20000e98 = 0; *(uint64_t*)0x20000ea0 = 0x45379e0; *(uint64_t*)0x20000ea8 = 0; *(uint64_t*)0x20000eb0 = 0; *(uint64_t*)0x20000eb8 = 0x2000000004537b60; *(uint64_t*)0x20000ec0 = 0; *(uint64_t*)0x20000ec8 = 0; *(uint64_t*)0x20000ed0 = 0x4537c80; *(uint64_t*)0x20000ed8 = 0; *(uint64_t*)0x20000ee0 = 0; *(uint64_t*)0x20000ee8 = 0x4537d20; *(uint64_t*)0x20000ef0 = 0; *(uint64_t*)0x20000ef8 = 0; *(uint64_t*)0x20000f00 = 0x4537e40; *(uint64_t*)0x20000f08 = 0; *(uint64_t*)0x20000f10 = 0; *(uint64_t*)0x20000f18 = 0x4537ee0; *(uint64_t*)0x20000f20 = 0; *(uint64_t*)0x20000f28 = 0; *(uint64_t*)0x20000f30 = 0x4538000; *(uint64_t*)0x20000f38 = 0; *(uint64_t*)0x20000f40 = 0; *(uint64_t*)0x20000f48 = 0x453be60; *(uint8_t*)0x20020600 = 0; syz_mount_image(0x20000000, 0x20000100, 0x8000000, 0x8e, 0x20000200, 0, 0x20020600); return 0; }