// https://syzkaller.appspot.com/bug?id=3887482187ee08305b88747978f564c0ab606fd3 // 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifndef __NR_io_uring_register #define __NR_io_uring_register 427 #endif #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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 bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } 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 int netlink_next_msg(struct nlmsg* nlmsg, unsigned int offset, unsigned int total_len) { struct nlmsghdr* hdr = (struct nlmsghdr*)(nlmsg->buf + offset); if (offset == total_len || offset + hdr->nlmsg_len > total_len) return -1; return hdr->nlmsg_len; } static unsigned int queue_count = 2; static void netlink_add_device_impl(struct nlmsg* nlmsg, const char* type, const char* name, bool up) { struct ifinfomsg hdr; memset(&hdr, 0, sizeof(hdr)); if (up) hdr.ifi_flags = hdr.ifi_change = IFF_UP; 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_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_nest(nlmsg, IFLA_LINKINFO); netlink_attr(nlmsg, IFLA_INFO_KIND, type, strlen(type)); } static void netlink_add_device(struct nlmsg* nlmsg, int sock, const char* type, const char* name) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_veth(struct nlmsg* nlmsg, int sock, const char* name, const char* peer) { netlink_add_device_impl(nlmsg, "veth", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_nest(nlmsg, VETH_INFO_PEER); nlmsg->pos += sizeof(struct ifinfomsg); netlink_attr(nlmsg, IFLA_IFNAME, peer, strlen(peer)); netlink_attr(nlmsg, IFLA_NUM_TX_QUEUES, &queue_count, sizeof(queue_count)); netlink_attr(nlmsg, IFLA_NUM_RX_QUEUES, &queue_count, sizeof(queue_count)); netlink_done(nlmsg); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_xfrm(struct nlmsg* nlmsg, int sock, const char* name) { netlink_add_device_impl(nlmsg, "xfrm", name, true); netlink_nest(nlmsg, IFLA_INFO_DATA); int if_id = 1; netlink_attr(nlmsg, 2, &if_id, sizeof(if_id)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_hsr(struct nlmsg* nlmsg, int sock, const char* name, const char* slave1, const char* slave2) { netlink_add_device_impl(nlmsg, "hsr", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); int ifindex1 = if_nametoindex(slave1); netlink_attr(nlmsg, IFLA_HSR_SLAVE1, &ifindex1, sizeof(ifindex1)); int ifindex2 = if_nametoindex(slave2); netlink_attr(nlmsg, IFLA_HSR_SLAVE2, &ifindex2, sizeof(ifindex2)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_linked(struct nlmsg* nlmsg, int sock, const char* type, const char* name, const char* link) { netlink_add_device_impl(nlmsg, type, name, false); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_vlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t id, uint16_t proto) { netlink_add_device_impl(nlmsg, "vlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_VLAN_ID, &id, sizeof(id)); netlink_attr(nlmsg, IFLA_VLAN_PROTOCOL, &proto, sizeof(proto)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_macvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link) { netlink_add_device_impl(nlmsg, "macvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); uint32_t mode = MACVLAN_MODE_BRIDGE; netlink_attr(nlmsg, IFLA_MACVLAN_MODE, &mode, sizeof(mode)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static void netlink_add_geneve(struct nlmsg* nlmsg, int sock, const char* name, uint32_t vni, struct in_addr* addr4, struct in6_addr* addr6) { netlink_add_device_impl(nlmsg, "geneve", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_GENEVE_ID, &vni, sizeof(vni)); if (addr4) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE, addr4, sizeof(*addr4)); if (addr6) netlink_attr(nlmsg, IFLA_GENEVE_REMOTE6, addr6, sizeof(*addr6)); netlink_done(nlmsg); netlink_done(nlmsg); int err = netlink_send(nlmsg, sock); if (err < 0) { } } #define IFLA_IPVLAN_FLAGS 2 #define IPVLAN_MODE_L3S 2 #undef IPVLAN_F_VEPA #define IPVLAN_F_VEPA 2 static void netlink_add_ipvlan(struct nlmsg* nlmsg, int sock, const char* name, const char* link, uint16_t mode, uint16_t flags) { netlink_add_device_impl(nlmsg, "ipvlan", name, false); netlink_nest(nlmsg, IFLA_INFO_DATA); netlink_attr(nlmsg, IFLA_IPVLAN_MODE, &mode, sizeof(mode)); netlink_attr(nlmsg, IFLA_IPVLAN_FLAGS, &flags, sizeof(flags)); netlink_done(nlmsg); netlink_done(nlmsg); int ifindex = if_nametoindex(link); netlink_attr(nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); int err = netlink_send(nlmsg, sock); if (err < 0) { } } 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 int netlink_add_addr(struct nlmsg* nlmsg, int sock, const char* dev, const void* addr, int addrsize) { struct ifaddrmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ifa_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ifa_prefixlen = addrsize == 4 ? 24 : 120; hdr.ifa_scope = RT_SCOPE_UNIVERSE; hdr.ifa_index = if_nametoindex(dev); netlink_init(nlmsg, RTM_NEWADDR, NLM_F_CREATE | NLM_F_REPLACE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, IFA_LOCAL, addr, addrsize); netlink_attr(nlmsg, IFA_ADDRESS, addr, addrsize); return netlink_send(nlmsg, sock); } static void netlink_add_addr4(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in_addr in_addr; inet_pton(AF_INET, addr, &in_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in_addr, sizeof(in_addr)); if (err < 0) { } } static void netlink_add_addr6(struct nlmsg* nlmsg, int sock, const char* dev, const char* addr) { struct in6_addr in6_addr; inet_pton(AF_INET6, addr, &in6_addr); int err = netlink_add_addr(nlmsg, sock, dev, &in6_addr, sizeof(in6_addr)); if (err < 0) { } } static void netlink_add_neigh(struct nlmsg* nlmsg, int sock, const char* name, const void* addr, int addrsize, const void* mac, int macsize) { struct ndmsg hdr; memset(&hdr, 0, sizeof(hdr)); hdr.ndm_family = addrsize == 4 ? AF_INET : AF_INET6; hdr.ndm_ifindex = if_nametoindex(name); hdr.ndm_state = NUD_PERMANENT; netlink_init(nlmsg, RTM_NEWNEIGH, NLM_F_EXCL | NLM_F_CREATE, &hdr, sizeof(hdr)); netlink_attr(nlmsg, NDA_DST, addr, addrsize); netlink_attr(nlmsg, NDA_LLADDR, mac, macsize); int err = netlink_send(nlmsg, sock); if (err < 0) { } } static struct nlmsg nlmsg; static int tunfd = -1; #define TUN_IFACE "syz_tun" #define LOCAL_MAC 0xaaaaaaaaaaaa #define REMOTE_MAC 0xaaaaaaaaaabb #define LOCAL_IPV4 "172.20.20.170" #define REMOTE_IPV4 "172.20.20.187" #define LOCAL_IPV6 "fe80::aa" #define REMOTE_IPV6 "fe80::bb" #define IFF_NAPI 0x0010 static void correct_dev_net_tun(void) { struct stat st; if (stat("/dev/net/tun", &st) == 0) { if (S_ISCHR(st.st_mode) && major(st.st_rdev) == 10 && minor(st.st_rdev) == 200) return; if (unlink("/dev/net/tun")) { } } if (mkdir("/dev/net", 0755) && errno != EEXIST) { } if (mknod("/dev/net/tun", S_IFCHR | 0666, makedev(10, 200))) { } if (chmod("/dev/net/tun", 0666)) { } } static void initialize_tun(void) { correct_dev_net_tun(); tunfd = open("/dev/net/tun", O_RDWR | O_NONBLOCK); if (tunfd == -1) { printf("tun: can't open /dev/net/tun: please enable CONFIG_TUN=y\n"); printf("otherwise fuzzing or reproducing might not work as intended\n"); return; } const int kTunFd = 200; if (dup2(tunfd, kTunFd) < 0) exit(1); close(tunfd); tunfd = kTunFd; struct ifreq ifr; memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, TUN_IFACE, IFNAMSIZ); ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if (ioctl(tunfd, TUNSETIFF, (void*)&ifr) < 0) { exit(1); } char sysctl[64]; sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/accept_dad", TUN_IFACE); write_file(sysctl, "0"); sprintf(sysctl, "/proc/sys/net/ipv6/conf/%s/router_solicitations", TUN_IFACE); write_file(sysctl, "0"); int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); netlink_add_addr4(&nlmsg, sock, TUN_IFACE, LOCAL_IPV4); netlink_add_addr6(&nlmsg, sock, TUN_IFACE, LOCAL_IPV6); uint64_t macaddr = REMOTE_MAC; struct in_addr in_addr; inet_pton(AF_INET, REMOTE_IPV4, &in_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in_addr, sizeof(in_addr), &macaddr, ETH_ALEN); struct in6_addr in6_addr; inet_pton(AF_INET6, REMOTE_IPV6, &in6_addr); netlink_add_neigh(&nlmsg, sock, TUN_IFACE, &in6_addr, sizeof(in6_addr), &macaddr, ETH_ALEN); macaddr = LOCAL_MAC; netlink_device_change(&nlmsg, sock, TUN_IFACE, true, 0, &macaddr, ETH_ALEN, NULL); close(sock); } #define DEVLINK_FAMILY_NAME "devlink" #define DEVLINK_CMD_PORT_GET 5 #define DEVLINK_ATTR_BUS_NAME 1 #define DEVLINK_ATTR_DEV_NAME 2 #define DEVLINK_ATTR_NETDEV_NAME 7 static struct nlmsg nlmsg2; static void initialize_devlink_ports(const char* bus_name, const char* dev_name, const char* netdev_prefix) { struct genlmsghdr genlhdr; int len, total_len, id, err, offset; uint16_t netdev_index; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) exit(1); int rtsock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (rtsock == -1) exit(1); id = netlink_query_family_id(&nlmsg, sock, DEVLINK_FAMILY_NAME, true); if (id == -1) goto error; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = DEVLINK_CMD_PORT_GET; netlink_init(&nlmsg, id, NLM_F_DUMP, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, DEVLINK_ATTR_BUS_NAME, bus_name, strlen(bus_name) + 1); netlink_attr(&nlmsg, DEVLINK_ATTR_DEV_NAME, dev_name, strlen(dev_name) + 1); err = netlink_send_ext(&nlmsg, sock, id, &total_len, true); if (err < 0) { goto error; } offset = 0; netdev_index = 0; while ((len = netlink_next_msg(&nlmsg, offset, total_len)) != -1) { struct nlattr* attr = (struct nlattr*)(nlmsg.buf + offset + NLMSG_HDRLEN + NLMSG_ALIGN(sizeof(genlhdr))); for (; (char*)attr < nlmsg.buf + offset + len; attr = (struct nlattr*)((char*)attr + NLMSG_ALIGN(attr->nla_len))) { if (attr->nla_type == DEVLINK_ATTR_NETDEV_NAME) { char* port_name; char netdev_name[IFNAMSIZ]; port_name = (char*)(attr + 1); snprintf(netdev_name, sizeof(netdev_name), "%s%d", netdev_prefix, netdev_index); netlink_device_change(&nlmsg2, rtsock, port_name, true, 0, 0, 0, netdev_name); break; } } offset += len; netdev_index++; } error: close(rtsock); close(sock); } #define WIFI_INITIAL_DEVICE_COUNT 2 #define WIFI_MAC_BASE {0x08, 0x02, 0x11, 0x00, 0x00, 0x00} #define WIFI_IBSS_BSSID {0x50, 0x50, 0x50, 0x50, 0x50, 0x50} #define WIFI_IBSS_SSID {0x10, 0x10, 0x10, 0x10, 0x10, 0x10} #define WIFI_DEFAULT_FREQUENCY 2412 #define WIFI_DEFAULT_SIGNAL 0 #define WIFI_DEFAULT_RX_RATE 1 #define HWSIM_CMD_REGISTER 1 #define HWSIM_CMD_FRAME 2 #define HWSIM_CMD_NEW_RADIO 4 #define HWSIM_ATTR_SUPPORT_P2P_DEVICE 14 #define HWSIM_ATTR_PERM_ADDR 22 #define IF_OPER_UP 6 struct join_ibss_props { int wiphy_freq; bool wiphy_freq_fixed; uint8_t* mac; uint8_t* ssid; int ssid_len; }; static int set_interface_state(const char* interface_name, int on) { struct ifreq ifr; int sock = socket(AF_INET, SOCK_DGRAM, 0); if (sock < 0) { return -1; } memset(&ifr, 0, sizeof(ifr)); strcpy(ifr.ifr_name, interface_name); int ret = ioctl(sock, SIOCGIFFLAGS, &ifr); if (ret < 0) { close(sock); return -1; } if (on) ifr.ifr_flags |= IFF_UP; else ifr.ifr_flags &= ~IFF_UP; ret = ioctl(sock, SIOCSIFFLAGS, &ifr); close(sock); if (ret < 0) { return -1; } return 0; } static int nl80211_set_interface(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, uint32_t iftype, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_SET_INTERFACE; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_IFTYPE, &iftype, sizeof(iftype)); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int nl80211_join_ibss(struct nlmsg* nlmsg, int sock, int nl80211_family, uint32_t ifindex, struct join_ibss_props* props, bool dofail) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = NL80211_CMD_JOIN_IBSS; netlink_init(nlmsg, nl80211_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, NL80211_ATTR_IFINDEX, &ifindex, sizeof(ifindex)); netlink_attr(nlmsg, NL80211_ATTR_SSID, props->ssid, props->ssid_len); netlink_attr(nlmsg, NL80211_ATTR_WIPHY_FREQ, &(props->wiphy_freq), sizeof(props->wiphy_freq)); if (props->mac) netlink_attr(nlmsg, NL80211_ATTR_MAC, props->mac, ETH_ALEN); if (props->wiphy_freq_fixed) netlink_attr(nlmsg, NL80211_ATTR_FREQ_FIXED, NULL, 0); int err = netlink_send_ext(nlmsg, sock, 0, NULL, dofail); if (err < 0) { } return err; } static int get_ifla_operstate(struct nlmsg* nlmsg, int ifindex, bool dofail) { struct ifinfomsg info; memset(&info, 0, sizeof(info)); info.ifi_family = AF_UNSPEC; info.ifi_index = ifindex; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) { return -1; } netlink_init(nlmsg, RTM_GETLINK, 0, &info, sizeof(info)); int n; int err = netlink_send_ext(nlmsg, sock, RTM_NEWLINK, &n, dofail); close(sock); if (err) { return -1; } struct rtattr* attr = IFLA_RTA(NLMSG_DATA(nlmsg->buf)); for (; RTA_OK(attr, n); attr = RTA_NEXT(attr, n)) { if (attr->rta_type == IFLA_OPERSTATE) return *((int32_t*)RTA_DATA(attr)); } return -1; } static int await_ifla_operstate(struct nlmsg* nlmsg, char* interface, int operstate, bool dofail) { int ifindex = if_nametoindex(interface); while (true) { usleep(1000); int ret = get_ifla_operstate(nlmsg, ifindex, dofail); if (ret < 0) return ret; if (ret == operstate) return 0; } return 0; } static int nl80211_setup_ibss_interface(struct nlmsg* nlmsg, int sock, int nl80211_family_id, char* interface, struct join_ibss_props* ibss_props, bool dofail) { int ifindex = if_nametoindex(interface); if (ifindex == 0) { return -1; } int ret = nl80211_set_interface(nlmsg, sock, nl80211_family_id, ifindex, NL80211_IFTYPE_ADHOC, dofail); if (ret < 0) { return -1; } ret = set_interface_state(interface, 1); if (ret < 0) { return -1; } ret = nl80211_join_ibss(nlmsg, sock, nl80211_family_id, ifindex, ibss_props, dofail); if (ret < 0) { return -1; } return 0; } static int hwsim80211_create_device(struct nlmsg* nlmsg, int sock, int hwsim_family, uint8_t mac_addr[ETH_ALEN]) { struct genlmsghdr genlhdr; memset(&genlhdr, 0, sizeof(genlhdr)); genlhdr.cmd = HWSIM_CMD_NEW_RADIO; netlink_init(nlmsg, hwsim_family, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(nlmsg, HWSIM_ATTR_SUPPORT_P2P_DEVICE, NULL, 0); netlink_attr(nlmsg, HWSIM_ATTR_PERM_ADDR, mac_addr, ETH_ALEN); int err = netlink_send(nlmsg, sock); if (err < 0) { } return err; } static void initialize_wifi_devices(void) { int rfkill = open("/dev/rfkill", O_RDWR); if (rfkill == -1) exit(1); struct rfkill_event event = {0}; event.type = RFKILL_TYPE_ALL; event.op = RFKILL_OP_CHANGE_ALL; if (write(rfkill, &event, sizeof(event)) != (ssize_t)(sizeof(event))) exit(1); close(rfkill); uint8_t mac_addr[6] = WIFI_MAC_BASE; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock < 0) exit(1); int hwsim_family_id = netlink_query_family_id(&nlmsg, sock, "MAC80211_HWSIM", true); int nl80211_family_id = netlink_query_family_id(&nlmsg, sock, "nl80211", true); if (hwsim_family_id < 0 || nl80211_family_id < 0) exit(1); uint8_t ssid[] = WIFI_IBSS_SSID; uint8_t bssid[] = WIFI_IBSS_BSSID; struct join_ibss_props ibss_props = {.wiphy_freq = WIFI_DEFAULT_FREQUENCY, .wiphy_freq_fixed = true, .mac = bssid, .ssid = ssid, .ssid_len = sizeof(ssid)}; for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { mac_addr[5] = device_id; int ret = hwsim80211_create_device(&nlmsg, sock, hwsim_family_id, mac_addr); if (ret < 0) exit(1); char interface[6] = "wlan0"; interface[4] += device_id; if (nl80211_setup_ibss_interface(&nlmsg, sock, nl80211_family_id, interface, &ibss_props, true) < 0) exit(1); } for (int device_id = 0; device_id < WIFI_INITIAL_DEVICE_COUNT; device_id++) { char interface[6] = "wlan0"; interface[4] += device_id; int ret = await_ifla_operstate(&nlmsg, interface, IF_OPER_UP, true); if (ret < 0) exit(1); } close(sock); } #define DEV_IPV4 "172.20.20.%d" #define DEV_IPV6 "fe80::%02x" #define DEV_MAC 0x00aaaaaaaaaa static void netdevsim_add(unsigned int addr, unsigned int port_count) { write_file("/sys/bus/netdevsim/del_device", "%u", addr); if (write_file("/sys/bus/netdevsim/new_device", "%u %u", addr, port_count)) { char buf[32]; snprintf(buf, sizeof(buf), "netdevsim%d", addr); initialize_devlink_ports("netdevsim", buf, "netdevsim"); } } #define WG_GENL_NAME "wireguard" enum wg_cmd { WG_CMD_GET_DEVICE, WG_CMD_SET_DEVICE, }; enum wgdevice_attribute { WGDEVICE_A_UNSPEC, WGDEVICE_A_IFINDEX, WGDEVICE_A_IFNAME, WGDEVICE_A_PRIVATE_KEY, WGDEVICE_A_PUBLIC_KEY, WGDEVICE_A_FLAGS, WGDEVICE_A_LISTEN_PORT, WGDEVICE_A_FWMARK, WGDEVICE_A_PEERS, }; enum wgpeer_attribute { WGPEER_A_UNSPEC, WGPEER_A_PUBLIC_KEY, WGPEER_A_PRESHARED_KEY, WGPEER_A_FLAGS, WGPEER_A_ENDPOINT, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, WGPEER_A_LAST_HANDSHAKE_TIME, WGPEER_A_RX_BYTES, WGPEER_A_TX_BYTES, WGPEER_A_ALLOWEDIPS, WGPEER_A_PROTOCOL_VERSION, }; enum wgallowedip_attribute { WGALLOWEDIP_A_UNSPEC, WGALLOWEDIP_A_FAMILY, WGALLOWEDIP_A_IPADDR, WGALLOWEDIP_A_CIDR_MASK, }; static void netlink_wireguard_setup(void) { const char ifname_a[] = "wg0"; const char ifname_b[] = "wg1"; const char ifname_c[] = "wg2"; const char private_a[] = "\xa0\x5c\xa8\x4f\x6c\x9c\x8e\x38\x53\xe2\xfd\x7a\x70\xae\x0f\xb2\x0f\xa1" "\x52\x60\x0c\xb0\x08\x45\x17\x4f\x08\x07\x6f\x8d\x78\x43"; const char private_b[] = "\xb0\x80\x73\xe8\xd4\x4e\x91\xe3\xda\x92\x2c\x22\x43\x82\x44\xbb\x88\x5c" "\x69\xe2\x69\xc8\xe9\xd8\x35\xb1\x14\x29\x3a\x4d\xdc\x6e"; const char private_c[] = "\xa0\xcb\x87\x9a\x47\xf5\xbc\x64\x4c\x0e\x69\x3f\xa6\xd0\x31\xc7\x4a\x15" "\x53\xb6\xe9\x01\xb9\xff\x2f\x51\x8c\x78\x04\x2f\xb5\x42"; const char public_a[] = "\x97\x5c\x9d\x81\xc9\x83\xc8\x20\x9e\xe7\x81\x25\x4b\x89\x9f\x8e\xd9\x25" "\xae\x9f\x09\x23\xc2\x3c\x62\xf5\x3c\x57\xcd\xbf\x69\x1c"; const char public_b[] = "\xd1\x73\x28\x99\xf6\x11\xcd\x89\x94\x03\x4d\x7f\x41\x3d\xc9\x57\x63\x0e" "\x54\x93\xc2\x85\xac\xa4\x00\x65\xcb\x63\x11\xbe\x69\x6b"; const char public_c[] = "\xf4\x4d\xa3\x67\xa8\x8e\xe6\x56\x4f\x02\x02\x11\x45\x67\x27\x08\x2f\x5c" "\xeb\xee\x8b\x1b\xf5\xeb\x73\x37\x34\x1b\x45\x9b\x39\x22"; const uint16_t listen_a = 20001; const uint16_t listen_b = 20002; const uint16_t listen_c = 20003; const uint16_t af_inet = AF_INET; const uint16_t af_inet6 = AF_INET6; const struct sockaddr_in endpoint_b_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_b), .sin_addr = {htonl(INADDR_LOOPBACK)}}; const struct sockaddr_in endpoint_c_v4 = { .sin_family = AF_INET, .sin_port = htons(listen_c), .sin_addr = {htonl(INADDR_LOOPBACK)}}; struct sockaddr_in6 endpoint_a_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_a)}; endpoint_a_v6.sin6_addr = in6addr_loopback; struct sockaddr_in6 endpoint_c_v6 = {.sin6_family = AF_INET6, .sin6_port = htons(listen_c)}; endpoint_c_v6.sin6_addr = in6addr_loopback; const struct in_addr first_half_v4 = {0}; const struct in_addr second_half_v4 = {(uint32_t)htonl(128 << 24)}; const struct in6_addr first_half_v6 = {{{0}}}; const struct in6_addr second_half_v6 = {{{0x80}}}; const uint8_t half_cidr = 1; const uint16_t persistent_keepalives[] = {1, 3, 7, 9, 14, 19}; struct genlmsghdr genlhdr = {.cmd = WG_CMD_SET_DEVICE, .version = 1}; int sock; int id, err; sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock == -1) { return; } id = netlink_query_family_id(&nlmsg, sock, WG_GENL_NAME, true); if (id == -1) goto error; netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_a, strlen(ifname_a) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_a, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_a, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[0], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v6, sizeof(endpoint_c_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[1], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_b, strlen(ifname_b) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_b, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_b, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[2], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_c, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_c_v4, sizeof(endpoint_c_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[3], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } netlink_init(&nlmsg, id, 0, &genlhdr, sizeof(genlhdr)); netlink_attr(&nlmsg, WGDEVICE_A_IFNAME, ifname_c, strlen(ifname_c) + 1); netlink_attr(&nlmsg, WGDEVICE_A_PRIVATE_KEY, private_c, 32); netlink_attr(&nlmsg, WGDEVICE_A_LISTEN_PORT, &listen_c, 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGDEVICE_A_PEERS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_a, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_a_v6, sizeof(endpoint_a_v6)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[4], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v4, sizeof(first_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &first_half_v6, sizeof(first_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGPEER_A_PUBLIC_KEY, public_b, 32); netlink_attr(&nlmsg, WGPEER_A_ENDPOINT, &endpoint_b_v4, sizeof(endpoint_b_v4)); netlink_attr(&nlmsg, WGPEER_A_PERSISTENT_KEEPALIVE_INTERVAL, &persistent_keepalives[5], 2); netlink_nest(&nlmsg, NLA_F_NESTED | WGPEER_A_ALLOWEDIPS); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v4, sizeof(second_half_v4)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_nest(&nlmsg, NLA_F_NESTED | 0); netlink_attr(&nlmsg, WGALLOWEDIP_A_FAMILY, &af_inet6, 2); netlink_attr(&nlmsg, WGALLOWEDIP_A_IPADDR, &second_half_v6, sizeof(second_half_v6)); netlink_attr(&nlmsg, WGALLOWEDIP_A_CIDR_MASK, &half_cidr, 1); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); netlink_done(&nlmsg); err = netlink_send(&nlmsg, sock); if (err < 0) { } error: close(sock); } static void initialize_netdevices(void) { char netdevsim[16]; sprintf(netdevsim, "netdevsim%d", (int)procid); struct { const char* type; const char* dev; } devtypes[] = { {"ip6gretap", "ip6gretap0"}, {"bridge", "bridge0"}, {"vcan", "vcan0"}, {"bond", "bond0"}, {"team", "team0"}, {"dummy", "dummy0"}, {"nlmon", "nlmon0"}, {"caif", "caif0"}, {"batadv", "batadv0"}, {"vxcan", "vxcan1"}, {"veth", 0}, {"wireguard", "wg0"}, {"wireguard", "wg1"}, {"wireguard", "wg2"}, }; const char* devmasters[] = {"bridge", "bond", "team", "batadv"}; struct { const char* name; int macsize; bool noipv6; } devices[] = { {"lo", ETH_ALEN}, {"sit0", 0}, {"bridge0", ETH_ALEN}, {"vcan0", 0, true}, {"tunl0", 0}, {"gre0", 0}, {"gretap0", ETH_ALEN}, {"ip_vti0", 0}, {"ip6_vti0", 0}, {"ip6tnl0", 0}, {"ip6gre0", 0}, {"ip6gretap0", ETH_ALEN}, {"erspan0", ETH_ALEN}, {"bond0", ETH_ALEN}, {"veth0", ETH_ALEN}, {"veth1", ETH_ALEN}, {"team0", ETH_ALEN}, {"veth0_to_bridge", ETH_ALEN}, {"veth1_to_bridge", ETH_ALEN}, {"veth0_to_bond", ETH_ALEN}, {"veth1_to_bond", ETH_ALEN}, {"veth0_to_team", ETH_ALEN}, {"veth1_to_team", ETH_ALEN}, {"veth0_to_hsr", ETH_ALEN}, {"veth1_to_hsr", ETH_ALEN}, {"hsr0", 0}, {"dummy0", ETH_ALEN}, {"nlmon0", 0}, {"vxcan0", 0, true}, {"vxcan1", 0, true}, {"caif0", ETH_ALEN}, {"batadv0", ETH_ALEN}, {netdevsim, ETH_ALEN}, {"xfrm0", ETH_ALEN}, {"veth0_virt_wifi", ETH_ALEN}, {"veth1_virt_wifi", ETH_ALEN}, {"virt_wifi0", ETH_ALEN}, {"veth0_vlan", ETH_ALEN}, {"veth1_vlan", ETH_ALEN}, {"vlan0", ETH_ALEN}, {"vlan1", ETH_ALEN}, {"macvlan0", ETH_ALEN}, {"macvlan1", ETH_ALEN}, {"ipvlan0", ETH_ALEN}, {"ipvlan1", ETH_ALEN}, {"veth0_macvtap", ETH_ALEN}, {"veth1_macvtap", ETH_ALEN}, {"macvtap0", ETH_ALEN}, {"macsec0", ETH_ALEN}, {"veth0_to_batadv", ETH_ALEN}, {"veth1_to_batadv", ETH_ALEN}, {"batadv_slave_0", ETH_ALEN}, {"batadv_slave_1", ETH_ALEN}, {"geneve0", ETH_ALEN}, {"geneve1", ETH_ALEN}, {"wg0", 0}, {"wg1", 0}, {"wg2", 0}, }; int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) netlink_add_device(&nlmsg, sock, devtypes[i].type, devtypes[i].dev); for (i = 0; i < sizeof(devmasters) / (sizeof(devmasters[0])); i++) { char master[32], slave0[32], veth0[32], slave1[32], veth1[32]; sprintf(slave0, "%s_slave_0", devmasters[i]); sprintf(veth0, "veth0_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave0, veth0); sprintf(slave1, "%s_slave_1", devmasters[i]); sprintf(veth1, "veth1_to_%s", devmasters[i]); netlink_add_veth(&nlmsg, sock, slave1, veth1); sprintf(master, "%s0", devmasters[i]); netlink_device_change(&nlmsg, sock, slave0, false, master, 0, 0, NULL); netlink_device_change(&nlmsg, sock, slave1, false, master, 0, 0, NULL); } netlink_add_xfrm(&nlmsg, sock, "xfrm0"); netlink_device_change(&nlmsg, sock, "bridge_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "bridge_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "hsr_slave_0", "veth0_to_hsr"); netlink_add_veth(&nlmsg, sock, "hsr_slave_1", "veth1_to_hsr"); netlink_add_hsr(&nlmsg, sock, "hsr0", "hsr_slave_0", "hsr_slave_1"); netlink_device_change(&nlmsg, sock, "hsr_slave_0", true, 0, 0, 0, NULL); netlink_device_change(&nlmsg, sock, "hsr_slave_1", true, 0, 0, 0, NULL); netlink_add_veth(&nlmsg, sock, "veth0_virt_wifi", "veth1_virt_wifi"); netlink_add_linked(&nlmsg, sock, "virt_wifi", "virt_wifi0", "veth1_virt_wifi"); netlink_add_veth(&nlmsg, sock, "veth0_vlan", "veth1_vlan"); netlink_add_vlan(&nlmsg, sock, "vlan0", "veth0_vlan", 0, htons(ETH_P_8021Q)); netlink_add_vlan(&nlmsg, sock, "vlan1", "veth0_vlan", 1, htons(ETH_P_8021AD)); netlink_add_macvlan(&nlmsg, sock, "macvlan0", "veth1_vlan"); netlink_add_macvlan(&nlmsg, sock, "macvlan1", "veth1_vlan"); netlink_add_ipvlan(&nlmsg, sock, "ipvlan0", "veth0_vlan", IPVLAN_MODE_L2, 0); netlink_add_ipvlan(&nlmsg, sock, "ipvlan1", "veth0_vlan", IPVLAN_MODE_L3S, IPVLAN_F_VEPA); netlink_add_veth(&nlmsg, sock, "veth0_macvtap", "veth1_macvtap"); netlink_add_linked(&nlmsg, sock, "macvtap", "macvtap0", "veth0_macvtap"); netlink_add_linked(&nlmsg, sock, "macsec", "macsec0", "veth1_macvtap"); char addr[32]; sprintf(addr, DEV_IPV4, 14 + 10); struct in_addr geneve_addr4; if (inet_pton(AF_INET, addr, &geneve_addr4) <= 0) exit(1); struct in6_addr geneve_addr6; if (inet_pton(AF_INET6, "fc00::01", &geneve_addr6) <= 0) exit(1); netlink_add_geneve(&nlmsg, sock, "geneve0", 0, &geneve_addr4, 0); netlink_add_geneve(&nlmsg, sock, "geneve1", 1, 0, &geneve_addr6); netdevsim_add((int)procid, 4); netlink_wireguard_setup(); for (i = 0; i < sizeof(devices) / (sizeof(devices[0])); i++) { char addr[32]; sprintf(addr, DEV_IPV4, i + 10); netlink_add_addr4(&nlmsg, sock, devices[i].name, addr); if (!devices[i].noipv6) { sprintf(addr, DEV_IPV6, i + 10); netlink_add_addr6(&nlmsg, sock, devices[i].name, addr); } uint64_t macaddr = DEV_MAC + ((i + 10ull) << 40); netlink_device_change(&nlmsg, sock, devices[i].name, true, 0, &macaddr, devices[i].macsize, NULL); } close(sock); } static void initialize_netdevices_init(void) { int sock = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock == -1) exit(1); struct { const char* type; int macsize; bool noipv6; bool noup; } devtypes[] = { {"nr", 7, true}, {"rose", 5, true, true}, }; unsigned i; for (i = 0; i < sizeof(devtypes) / sizeof(devtypes[0]); i++) { char dev[32], addr[32]; sprintf(dev, "%s%d", devtypes[i].type, (int)procid); sprintf(addr, "172.30.%d.%d", i, (int)procid + 1); netlink_add_addr4(&nlmsg, sock, dev, addr); if (!devtypes[i].noipv6) { sprintf(addr, "fe88::%02x:%02x", i, (int)procid + 1); netlink_add_addr6(&nlmsg, sock, dev, addr); } int macsize = devtypes[i].macsize; uint64_t macaddr = 0xbbbbbb + ((unsigned long long)i << (8 * (macsize - 2))) + (procid << (8 * (macsize - 1))); netlink_device_change(&nlmsg, sock, dev, !devtypes[i].noup, 0, &macaddr, macsize, NULL); } close(sock); } static int read_tun(char* data, int size) { if (tunfd < 0) return -1; int rv = read(tunfd, data, size); if (rv < 0) { if (errno == EAGAIN || errno == EBADF || errno == EBADFD) return -1; exit(1); } return rv; } static void flush_tun() { char data[1000]; while (read_tun(&data[0], sizeof(data)) != -1) { } } #define MAX_FDS 30 //% This code is derived from puff.{c,h}, found in the zlib development. The //% original files come with the following copyright notice: //% Copyright (C) 2002-2013 Mark Adler, all rights reserved //% version 2.3, 21 Jan 2013 //% This software is provided 'as-is', without any express or implied //% warranty. In no event will the author be held liable for any damages //% arising from the use of this software. //% Permission is granted to anyone to use this software for any purpose, //% including commercial applications, and to alter it and redistribute it //% freely, subject to the following restrictions: //% 1. The origin of this software must not be misrepresented; you must not //% claim that you wrote the original software. If you use this software //% in a product, an acknowledgment in the product documentation would be //% appreciated but is not required. //% 2. Altered source versions must be plainly marked as such, and must not be //% misrepresented as being the original software. //% 3. This notice may not be removed or altered from any source distribution. //% Mark Adler madler@alumni.caltech.edu //% BEGIN CODE DERIVED FROM puff.{c,h} #define MAXBITS 15 #define MAXLCODES 286 #define MAXDCODES 30 #define MAXCODES (MAXLCODES + MAXDCODES) #define FIXLCODES 288 struct puff_state { unsigned char* out; unsigned long outlen; unsigned long outcnt; const unsigned char* in; unsigned long inlen; unsigned long incnt; int bitbuf; int bitcnt; jmp_buf env; }; static int puff_bits(struct puff_state* s, int need) { long val = s->bitbuf; while (s->bitcnt < need) { if (s->incnt == s->inlen) longjmp(s->env, 1); val |= (long)(s->in[s->incnt++]) << s->bitcnt; s->bitcnt += 8; } s->bitbuf = (int)(val >> need); s->bitcnt -= need; return (int)(val & ((1L << need) - 1)); } static int puff_stored(struct puff_state* s) { s->bitbuf = 0; s->bitcnt = 0; if (s->incnt + 4 > s->inlen) return 2; unsigned len = s->in[s->incnt++]; len |= s->in[s->incnt++] << 8; if (s->in[s->incnt++] != (~len & 0xff) || s->in[s->incnt++] != ((~len >> 8) & 0xff)) return -2; if (s->incnt + len > s->inlen) return 2; if (s->outcnt + len > s->outlen) return 1; for (; len--; s->outcnt++, s->incnt++) { if (s->in[s->incnt]) s->out[s->outcnt] = s->in[s->incnt]; } return 0; } struct puff_huffman { short* count; short* symbol; }; static int puff_decode(struct puff_state* s, const struct puff_huffman* h) { int first = 0; int index = 0; int bitbuf = s->bitbuf; int left = s->bitcnt; int code = first = index = 0; int len = 1; short* next = h->count + 1; while (1) { while (left--) { code |= bitbuf & 1; bitbuf >>= 1; int count = *next++; if (code - count < first) { s->bitbuf = bitbuf; s->bitcnt = (s->bitcnt - len) & 7; return h->symbol[index + (code - first)]; } index += count; first += count; first <<= 1; code <<= 1; len++; } left = (MAXBITS + 1) - len; if (left == 0) break; if (s->incnt == s->inlen) longjmp(s->env, 1); bitbuf = s->in[s->incnt++]; if (left > 8) left = 8; } return -10; } static int puff_construct(struct puff_huffman* h, const short* length, int n) { int len; for (len = 0; len <= MAXBITS; len++) h->count[len] = 0; int symbol; for (symbol = 0; symbol < n; symbol++) (h->count[length[symbol]])++; if (h->count[0] == n) return 0; int left = 1; for (len = 1; len <= MAXBITS; len++) { left <<= 1; left -= h->count[len]; if (left < 0) return left; } short offs[MAXBITS + 1]; offs[1] = 0; for (len = 1; len < MAXBITS; len++) offs[len + 1] = offs[len] + h->count[len]; for (symbol = 0; symbol < n; symbol++) if (length[symbol] != 0) h->symbol[offs[length[symbol]]++] = symbol; return left; } static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode, const struct puff_huffman* distcode) { static const short lens[29] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258}; static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0}; static const short dists[30] = { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577}; static const short dext[30] = {0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13}; int symbol; do { symbol = puff_decode(s, lencode); if (symbol < 0) return symbol; if (symbol < 256) { if (s->outcnt == s->outlen) return 1; if (symbol) s->out[s->outcnt] = symbol; s->outcnt++; } else if (symbol > 256) { symbol -= 257; if (symbol >= 29) return -10; int len = lens[symbol] + puff_bits(s, lext[symbol]); symbol = puff_decode(s, distcode); if (symbol < 0) return symbol; unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]); if (dist > s->outcnt) return -11; if (s->outcnt + len > s->outlen) return 1; while (len--) { if (dist <= s->outcnt && s->out[s->outcnt - dist]) s->out[s->outcnt] = s->out[s->outcnt - dist]; s->outcnt++; } } } while (symbol != 256); return 0; } static int puff_fixed(struct puff_state* s) { static int virgin = 1; static short lencnt[MAXBITS + 1], lensym[FIXLCODES]; static short distcnt[MAXBITS + 1], distsym[MAXDCODES]; static struct puff_huffman lencode, distcode; if (virgin) { lencode.count = lencnt; lencode.symbol = lensym; distcode.count = distcnt; distcode.symbol = distsym; short lengths[FIXLCODES]; int symbol; for (symbol = 0; symbol < 144; symbol++) lengths[symbol] = 8; for (; symbol < 256; symbol++) lengths[symbol] = 9; for (; symbol < 280; symbol++) lengths[symbol] = 7; for (; symbol < FIXLCODES; symbol++) lengths[symbol] = 8; puff_construct(&lencode, lengths, FIXLCODES); for (symbol = 0; symbol < MAXDCODES; symbol++) lengths[symbol] = 5; puff_construct(&distcode, lengths, MAXDCODES); virgin = 0; } return puff_codes(s, &lencode, &distcode); } static int puff_dynamic(struct puff_state* s) { static const short order[19] = {16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15}; int nlen = puff_bits(s, 5) + 257; int ndist = puff_bits(s, 5) + 1; int ncode = puff_bits(s, 4) + 4; if (nlen > MAXLCODES || ndist > MAXDCODES) return -3; short lengths[MAXCODES]; int index; for (index = 0; index < ncode; index++) lengths[order[index]] = puff_bits(s, 3); for (; index < 19; index++) lengths[order[index]] = 0; short lencnt[MAXBITS + 1], lensym[MAXLCODES]; struct puff_huffman lencode = {lencnt, lensym}; int err = puff_construct(&lencode, lengths, 19); if (err != 0) return -4; index = 0; while (index < nlen + ndist) { int symbol; int len; symbol = puff_decode(s, &lencode); if (symbol < 0) return symbol; if (symbol < 16) lengths[index++] = symbol; else { len = 0; if (symbol == 16) { if (index == 0) return -5; len = lengths[index - 1]; symbol = 3 + puff_bits(s, 2); } else if (symbol == 17) symbol = 3 + puff_bits(s, 3); else symbol = 11 + puff_bits(s, 7); if (index + symbol > nlen + ndist) return -6; while (symbol--) lengths[index++] = len; } } if (lengths[256] == 0) return -9; err = puff_construct(&lencode, lengths, nlen); if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1])) return -7; short distcnt[MAXBITS + 1], distsym[MAXDCODES]; struct puff_huffman distcode = {distcnt, distsym}; err = puff_construct(&distcode, lengths + nlen, ndist); if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1])) return -8; return puff_codes(s, &lencode, &distcode); } static int puff(unsigned char* dest, unsigned long* destlen, const unsigned char* source, unsigned long sourcelen) { struct puff_state s = { .out = dest, .outlen = *destlen, .outcnt = 0, .in = source, .inlen = sourcelen, .incnt = 0, .bitbuf = 0, .bitcnt = 0, }; int err; if (setjmp(s.env) != 0) err = 2; else { int last; do { last = puff_bits(&s, 1); int type = puff_bits(&s, 2); err = type == 0 ? puff_stored(&s) : (type == 1 ? puff_fixed(&s) : (type == 2 ? puff_dynamic(&s) : -1)); if (err != 0) break; } while (!last); } *destlen = s.outcnt; return err; } //% END CODE DERIVED FROM puff.{c,h} #define ZLIB_HEADER_WIDTH 2 static int puff_zlib_to_file(const unsigned char* source, unsigned long sourcelen, int dest_fd) { if (sourcelen < ZLIB_HEADER_WIDTH) return 0; source += ZLIB_HEADER_WIDTH; sourcelen -= ZLIB_HEADER_WIDTH; const unsigned long max_destlen = 132 << 20; void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ, MAP_PRIVATE | MAP_ANON, -1, 0); if (ret == MAP_FAILED) return -1; unsigned char* dest = (unsigned char*)ret; unsigned long destlen = max_destlen; int err = puff(dest, &destlen, source, sourcelen); if (err) { munmap(dest, max_destlen); errno = -err; return -1; } if (write(dest_fd, dest, destlen) != (ssize_t)destlen) { munmap(dest, max_destlen); return -1; } return munmap(dest, max_destlen); } static int setup_loop_device(unsigned char* data, unsigned long size, const char* loopname, int* loopfd_p) { int err = 0, loopfd = -1; int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (puff_zlib_to_file(data, size, memfd)) { err = errno; goto error_close_memfd; } 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; } } close(memfd); *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static void reset_loop_device(const char* loopname) { int loopfd = open(loopname, O_RDWR); if (loopfd == -1) { return; } if (ioctl(loopfd, LOOP_CLR_FD, 0)) { } close(loopfd); } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile long flags, volatile long optsarg, volatile long change_dir, volatile unsigned long size, volatile long image) { unsigned char* data = (unsigned char*)image; int res = -1, err = 0, need_loop_device = !!size; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { int loopfd; memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(data, size, loopname, &loopfd) == -1) return -1; close(loopfd); 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) { bool has_remount_ro = false; char* remount_ro_start = strstr(opts, "errors=remount-ro"); if (remount_ro_start != NULL) { char after = *(remount_ro_start + strlen("errors=remount-ro")); char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1); has_remount_ro = ((before == '\0' || before == ',') && (after == '\0' || after == ',')); } if (strstr(opts, "errors=panic") || !has_remount_ro) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } else if (strncmp(fs, "gfs2", 4) == 0 && (strstr(opts, "errors=panic") || strstr(opts, "debug"))) { strcat(opts, ",errors=withdraw"); } 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; goto error_clear_loop; } if (change_dir) { res = chdir(target); if (res == -1) { err = errno; } } error_clear_loop: if (need_loop_device) reset_loop_device(loopname); errno = err; return res; } #define XT_TABLE_SIZE 1536 #define XT_MAX_ENTRIES 10 struct xt_counters { uint64_t pcnt, bcnt; }; struct ipt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_entries; unsigned int size; }; struct ipt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[5]; unsigned int underflow[5]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct ipt_table_desc { const char* name; struct ipt_getinfo info; struct ipt_replace replace; }; static struct ipt_table_desc ipv4_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; static struct ipt_table_desc ipv6_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "mangle"}, {.name = "raw"}, {.name = "security"}, }; #define IPT_BASE_CTL 64 #define IPT_SO_SET_REPLACE (IPT_BASE_CTL) #define IPT_SO_GET_INFO (IPT_BASE_CTL) #define IPT_SO_GET_ENTRIES (IPT_BASE_CTL + 1) struct arpt_getinfo { char name[32]; unsigned int valid_hooks; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_entries; unsigned int size; }; struct arpt_get_entries { char name[32]; unsigned int size; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_replace { char name[32]; unsigned int valid_hooks; unsigned int num_entries; unsigned int size; unsigned int hook_entry[3]; unsigned int underflow[3]; unsigned int num_counters; struct xt_counters* counters; uint64_t entrytable[XT_TABLE_SIZE / sizeof(uint64_t)]; }; struct arpt_table_desc { const char* name; struct arpt_getinfo info; struct arpt_replace replace; }; static struct arpt_table_desc arpt_tables[] = { {.name = "filter"}, }; #define ARPT_BASE_CTL 96 #define ARPT_SO_SET_REPLACE (ARPT_BASE_CTL) #define ARPT_SO_GET_INFO (ARPT_BASE_CTL) #define ARPT_SO_GET_ENTRIES (ARPT_BASE_CTL + 1) static void checkpoint_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_iptables(struct ipt_table_desc* tables, int num_tables, int family, int level) { int fd = socket(family, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (int i = 0; i < num_tables; i++) { struct ipt_table_desc* table = &tables[i]; if (table->info.valid_hooks == 0) continue; struct ipt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, level, IPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct ipt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, level, IPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, level, IPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_arptables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; strcpy(table->info.name, table->name); strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &table->info, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->info.size > sizeof(table->replace.entrytable)) exit(1); if (table->info.num_entries > XT_MAX_ENTRIES) exit(1); struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + table->info.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); table->replace.valid_hooks = table->info.valid_hooks; table->replace.num_entries = table->info.num_entries; table->replace.size = table->info.size; memcpy(table->replace.hook_entry, table->info.hook_entry, sizeof(table->replace.hook_entry)); memcpy(table->replace.underflow, table->info.underflow, sizeof(table->replace.underflow)); memcpy(table->replace.entrytable, entries.entrytable, table->info.size); } close(fd); } static void reset_arptables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(arpt_tables) / sizeof(arpt_tables[0]); i++) { struct arpt_table_desc* table = &arpt_tables[i]; if (table->info.valid_hooks == 0) continue; struct arpt_getinfo info; memset(&info, 0, sizeof(info)); strcpy(info.name, table->name); socklen_t optlen = sizeof(info); if (getsockopt(fd, SOL_IP, ARPT_SO_GET_INFO, &info, &optlen)) exit(1); if (memcmp(&table->info, &info, sizeof(table->info)) == 0) { struct arpt_get_entries entries; memset(&entries, 0, sizeof(entries)); strcpy(entries.name, table->name); entries.size = table->info.size; optlen = sizeof(entries) - sizeof(entries.entrytable) + entries.size; if (getsockopt(fd, SOL_IP, ARPT_SO_GET_ENTRIES, &entries, &optlen)) exit(1); if (memcmp(table->replace.entrytable, entries.entrytable, table->info.size) == 0) continue; } else { } struct xt_counters counters[XT_MAX_ENTRIES]; table->replace.num_counters = info.num_entries; table->replace.counters = counters; optlen = sizeof(table->replace) - sizeof(table->replace.entrytable) + table->replace.size; if (setsockopt(fd, SOL_IP, ARPT_SO_SET_REPLACE, &table->replace, optlen)) exit(1); } close(fd); } #define NF_BR_NUMHOOKS 6 #define EBT_TABLE_MAXNAMELEN 32 #define EBT_CHAIN_MAXNAMELEN 32 #define EBT_BASE_CTL 128 #define EBT_SO_SET_ENTRIES (EBT_BASE_CTL) #define EBT_SO_GET_INFO (EBT_BASE_CTL) #define EBT_SO_GET_ENTRIES (EBT_SO_GET_INFO + 1) #define EBT_SO_GET_INIT_INFO (EBT_SO_GET_ENTRIES + 1) #define EBT_SO_GET_INIT_ENTRIES (EBT_SO_GET_INIT_INFO + 1) struct ebt_replace { char name[EBT_TABLE_MAXNAMELEN]; unsigned int valid_hooks; unsigned int nentries; unsigned int entries_size; struct ebt_entries* hook_entry[NF_BR_NUMHOOKS]; unsigned int num_counters; struct ebt_counter* counters; char* entries; }; struct ebt_entries { unsigned int distinguisher; char name[EBT_CHAIN_MAXNAMELEN]; unsigned int counter_offset; int policy; unsigned int nentries; char data[0] __attribute__((aligned(__alignof__(struct ebt_replace)))); }; struct ebt_table_desc { const char* name; struct ebt_replace replace; char entrytable[XT_TABLE_SIZE]; }; static struct ebt_table_desc ebt_tables[] = { {.name = "filter"}, {.name = "nat"}, {.name = "broute"}, }; static void checkpoint_ebtables(void) { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (size_t i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; strcpy(table->replace.name, table->name); socklen_t optlen = sizeof(table->replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_INFO, &table->replace, &optlen)) { switch (errno) { case EPERM: case ENOENT: case ENOPROTOOPT: continue; } exit(1); } if (table->replace.entries_size > sizeof(table->entrytable)) exit(1); table->replace.num_counters = 0; table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_INIT_ENTRIES, &table->replace, &optlen)) exit(1); } close(fd); } static void reset_ebtables() { int fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (fd == -1) { switch (errno) { case EAFNOSUPPORT: case ENOPROTOOPT: case ENOENT: return; } exit(1); } for (unsigned i = 0; i < sizeof(ebt_tables) / sizeof(ebt_tables[0]); i++) { struct ebt_table_desc* table = &ebt_tables[i]; if (table->replace.valid_hooks == 0) continue; struct ebt_replace replace; memset(&replace, 0, sizeof(replace)); strcpy(replace.name, table->name); socklen_t optlen = sizeof(replace); if (getsockopt(fd, SOL_IP, EBT_SO_GET_INFO, &replace, &optlen)) exit(1); replace.num_counters = 0; table->replace.entries = 0; for (unsigned h = 0; h < NF_BR_NUMHOOKS; h++) table->replace.hook_entry[h] = 0; if (memcmp(&table->replace, &replace, sizeof(table->replace)) == 0) { char entrytable[XT_TABLE_SIZE]; memset(&entrytable, 0, sizeof(entrytable)); replace.entries = entrytable; optlen = sizeof(replace) + replace.entries_size; if (getsockopt(fd, SOL_IP, EBT_SO_GET_ENTRIES, &replace, &optlen)) exit(1); if (memcmp(table->entrytable, entrytable, replace.entries_size) == 0) continue; } for (unsigned j = 0, h = 0; h < NF_BR_NUMHOOKS; h++) { if (table->replace.valid_hooks & (1 << h)) { table->replace.hook_entry[h] = (struct ebt_entries*)table->entrytable + j; j++; } } table->replace.entries = table->entrytable; optlen = sizeof(table->replace) + table->replace.entries_size; if (setsockopt(fd, SOL_IP, EBT_SO_SET_ENTRIES, &table->replace, optlen)) exit(1); } close(fd); } static void checkpoint_net_namespace(void) { checkpoint_ebtables(); checkpoint_arptables(); checkpoint_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); checkpoint_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void reset_net_namespace(void) { reset_ebtables(); reset_arptables(); reset_iptables(ipv4_tables, sizeof(ipv4_tables) / sizeof(ipv4_tables[0]), AF_INET, SOL_IP); reset_iptables(ipv6_tables, sizeof(ipv6_tables) / sizeof(ipv6_tables[0]), AF_INET6, SOL_IPV6); } static void mount_cgroups(const char* dir, const char** controllers, int count) { if (mkdir(dir, 0777)) { return; } char enabled[128] = {0}; int i = 0; for (; i < count; i++) { if (mount("none", dir, "cgroup", 0, controllers[i])) { continue; } umount(dir); strcat(enabled, ","); strcat(enabled, controllers[i]); } if (enabled[0] == 0) { if (rmdir(dir) && errno != EBUSY) exit(1); return; } if (mount("none", dir, "cgroup", 0, enabled + 1)) { if (rmdir(dir) && errno != EBUSY) exit(1); } if (chmod(dir, 0777)) { } } static void mount_cgroups2(const char** controllers, int count) { if (mkdir("/syzcgroup/unified", 0777)) { return; } if (mount("none", "/syzcgroup/unified", "cgroup2", 0, NULL)) { if (rmdir("/syzcgroup/unified") && errno != EBUSY) exit(1); return; } if (chmod("/syzcgroup/unified", 0777)) { } int control = open("/syzcgroup/unified/cgroup.subtree_control", O_WRONLY); if (control == -1) return; int i; for (i = 0; i < count; i++) if (write(control, controllers[i], strlen(controllers[i])) < 0) { } close(control); } static void setup_cgroups() { const char* unified_controllers[] = {"+cpu", "+io", "+pids"}; const char* net_controllers[] = {"net", "net_prio", "devices", "blkio", "freezer"}; const char* cpu_controllers[] = {"cpuset", "cpuacct", "hugetlb", "rlimit", "memory"}; if (mkdir("/syzcgroup", 0777)) { return; } mount_cgroups2(unified_controllers, sizeof(unified_controllers) / sizeof(unified_controllers[0])); mount_cgroups("/syzcgroup/net", net_controllers, sizeof(net_controllers) / sizeof(net_controllers[0])); mount_cgroups("/syzcgroup/cpu", cpu_controllers, sizeof(cpu_controllers) / sizeof(cpu_controllers[0])); write_file("/syzcgroup/cpu/cgroup.clone_children", "1"); write_file("/syzcgroup/cpu/cpuset.memory_pressure_enabled", "1"); } static void setup_cgroups_loop() { int pid = getpid(); char file[128]; char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/pids.max", cgroupdir); write_file(file, "32"); snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); snprintf(file, sizeof(file), "%s/memory.soft_limit_in_bytes", cgroupdir); write_file(file, "%d", 299 << 20); snprintf(file, sizeof(file), "%s/memory.limit_in_bytes", cgroupdir); write_file(file, "%d", 300 << 20); snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (mkdir(cgroupdir, 0777)) { } snprintf(file, sizeof(file), "%s/cgroup.procs", cgroupdir); write_file(file, "%d", pid); } static void setup_cgroups_test() { char cgroupdir[64]; snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/unified/syz%llu", procid); if (symlink(cgroupdir, "./cgroup")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/cpu/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.cpu")) { } snprintf(cgroupdir, sizeof(cgroupdir), "/syzcgroup/net/syz%llu", procid); if (symlink(cgroupdir, "./cgroup.net")) { } } static void initialize_cgroups() { if (mkdir("./syz-tmp/newroot/syzcgroup", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/unified", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/cpu", 0700)) exit(1); if (mkdir("./syz-tmp/newroot/syzcgroup/net", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/syzcgroup/unified", "./syz-tmp/newroot/syzcgroup/unified", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/cpu", "./syz-tmp/newroot/syzcgroup/cpu", NULL, bind_mount_flags, NULL)) { } if (mount("/syzcgroup/net", "./syz-tmp/newroot/syzcgroup/net", NULL, bind_mount_flags, NULL)) { } } static void setup_gadgetfs(); static void setup_binderfs(); static void setup_fusectl(); static void sandbox_common_mount_tmpfs(void) { write_file("/proc/sys/fs/mount-max", "100000"); if (mkdir("./syz-tmp", 0777)) exit(1); if (mount("", "./syz-tmp", "tmpfs", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot", 0777)) exit(1); if (mkdir("./syz-tmp/newroot/dev", 0700)) exit(1); unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE; if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/proc", 0700)) exit(1); if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL)) exit(1); if (mkdir("./syz-tmp/newroot/selinux", 0700)) exit(1); const char* selinux_path = "./syz-tmp/newroot/selinux"; if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) { if (errno != ENOENT) exit(1); if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); } if (mkdir("./syz-tmp/newroot/sys", 0700)) exit(1); if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL)) exit(1); if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mount("/proc/sys/fs/binfmt_misc", "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags, NULL) && errno != ENOENT) exit(1); if (mkdir("./syz-tmp/newroot/syz-inputs", 0700)) exit(1); if (mount("/syz-inputs", "./syz-tmp/newroot/syz-inputs", NULL, bind_mount_flags | MS_RDONLY, NULL) && errno != ENOENT) exit(1); initialize_cgroups(); if (mkdir("./syz-tmp/pivot", 0777)) exit(1); if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) { if (chdir("./syz-tmp")) exit(1); } else { if (chdir("/")) exit(1); if (umount2("./pivot", MNT_DETACH)) exit(1); } if (chroot("./newroot")) exit(1); if (chdir("/")) exit(1); setup_gadgetfs(); setup_binderfs(); setup_fusectl(); } static void setup_gadgetfs() { if (mkdir("/dev/gadgetfs", 0777)) { } if (mount("gadgetfs", "/dev/gadgetfs", "gadgetfs", 0, NULL)) { } } static void setup_fusectl() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void setup_binderfs() { if (mkdir("/dev/binderfs", 0777)) { } if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); if (getppid() == 1) exit(1); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 128 << 20; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); sandbox_common(); drop_caps(); initialize_netdevices_init(); if (unshare(CLONE_NEWNET)) { } write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535"); initialize_tun(); initialize_netdevices(); initialize_wifi_devices(); sandbox_common_mount_tmpfs(); loop(); exit(1); } #define FS_IOC_SETFLAGS _IOW('f', 2, long) static void remove_dir(const char* dir) { int iter = 0; DIR* dp = 0; const int umount_flags = MNT_FORCE | UMOUNT_NOFOLLOW; retry: while (umount2(dir, umount_flags) == 0) { } dp = opendir(dir); if (dp == NULL) { if (errno == EMFILE) { exit(1); } 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); while (umount2(filename, umount_flags) == 0) { } struct stat st; if (lstat(filename, &st)) exit(1); if (S_ISDIR(st.st_mode)) { remove_dir(filename); continue; } int i; for (i = 0;; i++) { if (unlink(filename) == 0) break; if (errno == EPERM) { int fd = open(filename, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno != EBUSY || i > 100) exit(1); if (umount2(filename, umount_flags)) exit(1); } } closedir(dp); for (int i = 0;; i++) { if (rmdir(dir) == 0) break; if (i < 100) { if (errno == EPERM) { int fd = open(dir, O_RDONLY); if (fd != -1) { long flags = 0; if (ioctl(fd, FS_IOC_SETFLAGS, &flags) == 0) { } close(fd); continue; } } if (errno == EROFS) { break; } if (errno == EBUSY) { if (umount2(dir, umount_flags)) exit(1); continue; } if (errno == ENOTEMPTY) { if (iter < 100) { iter++; goto retry; } } } exit(1); } } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_loop() { setup_cgroups_loop(); checkpoint_net_namespace(); } static void reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } reset_net_namespace(); } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); setup_cgroups_test(); write_file("/proc/self/oom_score_adj", "1000"); flush_tun(); if (symlink("/dev/binderfs", "./binderfs")) { } } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } #define NL802154_CMD_SET_SHORT_ADDR 11 #define NL802154_ATTR_IFINDEX 3 #define NL802154_ATTR_SHORT_ADDR 10 static const char* setup_802154() { const char* error = NULL; int sock_generic = -1; int sock_route = socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE); if (sock_route == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_ROUTE) failed"; goto fail; } sock_generic = socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC); if (sock_generic == -1) { error = "socket(AF_NETLINK, SOCK_RAW, NETLINK_GENERIC) failed"; goto fail; } { int nl802154_family_id = netlink_query_family_id(&nlmsg, sock_generic, "nl802154", true); if (nl802154_family_id < 0) { error = "netlink_query_family_id failed"; goto fail; } 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)); if (netlink_send(&nlmsg, sock_generic) < 0) { error = "NL802154_CMD_SET_SHORT_ADDR failed"; goto fail; } netlink_device_change(&nlmsg, sock_route, devname, true, 0, &hwaddr, sizeof(hwaddr), 0); if (i == 0) { netlink_add_device_impl(&nlmsg, "lowpan", "lowpan0", false); netlink_done(&nlmsg); netlink_attr(&nlmsg, IFLA_LINK, &ifindex, sizeof(ifindex)); if (netlink_send(&nlmsg, sock_route) < 0) { error = "netlink: adding device lowpan0 type lowpan link wpan0"; goto fail; } } } } fail: close(sock_route); close(sock_generic); return error; } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { setup_loop(); int iter = 0; for (;; iter++) { char cwdbuf[32]; sprintf(cwdbuf, "./%d", iter); if (mkdir(cwdbuf, 0777)) exit(1); reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { if (chdir(cwdbuf)) exit(1); setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { sleep_ms(10); if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; if (current_time_ms() - start < 5000) continue; kill_and_wait(pid, &status); break; } remove_dir(cwdbuf); } } void execute_one(void) { if (write(1, "executing program\n", sizeof("executing program\n") - 1)) { } // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x1000400 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard: buffer: {64 69 73 63 61 72 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 36 33} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 36 36} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // usrquota: buffer: {75 73 72 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 31} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // integrity: buffer: {69 6e 74 65 67 72 69 74 79} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x29 (1 bytes) // size: len = 0x6239 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6239) // } // ] // returns fd_dir memcpy((void*)0x200000000100, "jfs\000", 4); memcpy((void*)0x200000000000, "./file1\000", 8); memcpy((void*)0x200000000380, "grpquota", 8); *(uint8_t*)0x200000000388 = 0x2c; memcpy((void*)0x200000000389, "discard", 7); *(uint8_t*)0x200000000390 = 0x2c; memcpy((void*)0x200000000391, "iocharset", 9); *(uint8_t*)0x20000000039a = 0x3d; memcpy((void*)0x20000000039b, "cp863", 5); *(uint8_t*)0x2000000003a0 = 0x2c; memcpy((void*)0x2000000003a1, "uid", 3); *(uint8_t*)0x2000000003a4 = 0x3d; sprintf((char*)0x2000000003a5, "0x%016llx", (long long)0); *(uint8_t*)0x2000000003b7 = 0x2c; memcpy((void*)0x2000000003b8, "iocharset", 9); *(uint8_t*)0x2000000003c1 = 0x3d; memcpy((void*)0x2000000003c2, "cp866", 5); *(uint8_t*)0x2000000003c7 = 0x2c; memcpy((void*)0x2000000003c8, "usrquota", 8); *(uint8_t*)0x2000000003d0 = 0x2c; memcpy((void*)0x2000000003d1, "errors=continue", 15); *(uint8_t*)0x2000000003e0 = 0x2c; memcpy((void*)0x2000000003e1, "iocharset", 9); *(uint8_t*)0x2000000003ea = 0x3d; memcpy((void*)0x2000000003eb, "iso8859-1", 9); *(uint8_t*)0x2000000003f4 = 0x2c; memcpy((void*)0x2000000003f5, "integrity", 9); *(uint8_t*)0x2000000003fe = 0x2c; *(uint8_t*)0x2000000003ff = 0; memcpy( (void*)0x200000004180, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x17\x13\xc7\xca" "\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82\x0d" "\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0\x44\xb3\x61" "\xc1\x43\x80\x90\x58\x22\xc4\x92\x15\x0f\x90\x05\x5b\x76\x3c\x00\x96\x6c" "\x24\x50\x16\x28\x85\x6a\xe6\x9c\x71\x4d\xa5\x7b\x7a\xc6\xf6\x74\x75\xbb" "\x7e\x3f\x69\x5c\xf5\xf5\xa9\x9a\x3e\xe5\x7f\x57\x5f\xa6\xaa\xfa\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\x10\x3f\xfc\xc1\x8f\xcf" "\x15\x11\x71\xe5\x57\xe9\x86\x13\x11\x9f\x8b\x7e\x44\x2f\x62\xa5\xaa\xd7" "\x22\x62\x65\xed\x44\x7d\x9d\x17\x62\xbb\x39\x9e\x8f\x88\xe1\x52\x44\xb5" "\xfe\xf6\x3f\xcf\x46\xbc\x1e\x11\x1f\x1f\x8f\xb8\xff\xe0\xce\x7a\x75\xf3" "\xf9\x03\xf6\xe3\xfb\x7f\xfe\xc7\x1f\x7e\x72\xec\x47\x7f\xff\xd3\xf0\xcc" "\x7f\xff\x72\xab\xff\xc6\xa4\xe5\x6e\xdf\xfe\xed\x7f\xfe\x7a\xf7\xd1\xb7" "\x17\x00\x00\x00\xba\xa8\x2c\xcb\xb2\x48\x1f\xf3\x4f\x46\xc4\x20\x7d\xb6" "\x07\x00\x9e\x7e\xf9\xf5\xbf\x4c\xf2\xed\xea\xb9\xab\x37\xe7\xac\x3f\x6a" "\xb5\x5a\xad\x5e\xc0\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa\x3a\xd5\x7b" "\x06\x87\xe3\x01\x60\xc1\x6c\xc6\x27\x6d\x77\x81\x16\xc9\xbf\xd3\x06\x11" "\x71\xac\xed\x4e\x00\x73\xad\x68\xbb\x03\x1c\x89\xfb\x0f\xee\xac\x17\x29" "\xdf\xa2\xfe\x7a\xb0\xb6\xd3\x9e\xcf\x05\xd9\x93\xff\x66\xb1\x7b\x7d\xc7" "\xa4\xe9\x34\xcd\x73\x4c\x66\xf5\xf8\xda\x8a\x7e\x3c\x37\xa1\x3f\x2b\x33" "\xea\xc3\x3c\xc9\xf9\xf7\x9a\xf9\x5f\xd9\x69\x1f\xa5\xe5\x8e\x3a\xff\x59" "\x99\x94\xff\x68\xe7\xd2\xa7\xce\xc9\xf9\xf7\x9b\xf9\x37\x3c\x3d\xf9\xf7" "\xc6\xe6\xdf\x55\x39\xff\xc1\xa1\xf2\xef\xcb\x1f\x00\x00\x00\x00\x00\xe6" "\x58\xfe\xfb\xff\x89\x96\x8f\xff\x2e\x3d\xfe\xa6\x1c\xc8\x7e\xc7\x7f\xd7" "\x66\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78\xd2\x0e\x3b\xfe\xdf\xa0\x31" "\xfe\xdf\x2e\xe3\xff\x01\x00\x00\xc0\xdc\xaa\x3e\xab\x57\x7e\x77\xfc\xe1" "\x6d\x93\xbe\x8b\xad\xba\xfd\x72\x11\xf1\x4c\x63\x79\xa0\x63\xd2\xc5\x32" "\xab\x6d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x64\xb0\x73" "\x0e\xef\xe5\x22\x62\x18\x11\xcf\xac\xae\x96\x65\x59\xfd\xd4\x35\xeb\xc3" "\x7a\xdc\xf5\x17\x5d\xd7\xb7\x1f\xba\xac\xed\x27\x79\x00\x00\xd8\xf1\xf1" "\xf1\xc6\xb5\xfc\x45\xc4\x72\x44\x5c\x4e\xdf\xf5\x37\x5c\x5d\x5d\x2d\xcb" "\xe5\x95\xd5\x72\xb5\x5c\x59\xca\xef\x67\x47\x4b\xcb\xe5\x4a\xed\x73\x6d" "\x9e\x56\xb7\x2d\x8d\x0e\xf0\x86\x78\x30\x2a\xab\x5f\xb6\x5c\x5b\xaf\x6e" "\xda\xe7\xe5\x69\xed\xcd\xdf\x57\xdd\xd7\xa8\xec\x1f\xa0\x63\xb3\xd1\x62" "\xe0\x00\x10\x11\x3b\xaf\x46\xf7\x27\xbd\x22\xfd\xcf\xeb\xd5\x62\x2a\xcb" "\x67\xa3\xe5\x37\x39\x2c\x88\x7d\xf6\x7f\x16\x94\xfd\x9f\x83\x68\xfb\x71" "\x0a\x00\x00\x00\x1c\xbd\xb2\x2c\xcb\x22\x7d\x9d\xf7\xc9\x74\xcc\xbf\xd7" "\x76\xa7\x00\x80\x99\xc8\xaf\xff\xcd\xe3\x02\x6a\xb5\x5a\xad\x56\xab\x9f" "\xbe\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa\x3a\xd5\x7b\x06\xc3\xf1\x03" "\xc0\x82\xd9\x8c\x4f\xda\xee\x02\x2d\x92\x7f\xa7\x0d\x22\xe2\x85\xb6\x3b" "\x01\xcc\xb5\xa2\xed\x0e\x70\x24\xee\x3f\xb8\xb3\x5e\xa4\x7c\x8b\xfa\xeb" "\x41\x1a\xdf\x3d\x9f\x0b\xb2\x27\xff\xcd\x62\x7b\xbd\xbc\xfe\xb8\xe9\x34" "\xcd\x73\x4c\x66\xf5\xf8\xda\x8a\x7e\x3c\x37\xa1\x3f\xcf\xcf\xa8\x0f\xf3" "\x24\xe7\xdf\x6b\xe6\x7f\x65\xa7\x7d\x94\x96\x7b\xfc\xfc\xcb\x3d\x7f\x26" "\x6c\xeb\x1c\xa3\x49\xf9\x57\xdb\x79\xa2\x85\xfe\xb4\x2d\xe7\xdf\x6f\xe6" "\xdf\x70\xd4\xfb\xff\xac\x6c\x45\x6f\x6c\xfe\x5d\x95\xf3\x1f\x1c\x2a\xff" "\xbe\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xbf\xff\x9f\x98\xab\xe3\xbf\xa3" "\x47\xdd\x9c\xa9\xf6\x3b\xfe\xbb\x36\x76\x8d\xa3\xeb\x0b\x00\x00\x00\x00" "\x00\x00\x00\x3c\x29\xf7\x1f\xdc\x59\xcf\xd7\xbd\xe6\xe3\xff\x5f\x18\xb3" "\x9c\xeb\x3f\x9f\x4e\x39\xff\x42\xfe\x9d\x94\xf3\xef\x35\xf2\xff\x6a\x63" "\xb9\x7e\x6d\xfe\xde\xdb\x0f\xf3\xff\xf7\x83\x3b\xeb\x7f\xbc\xf5\xaf\xcf" "\xe7\xe9\x41\xf3\x5f\xca\x33\x45\x7a\x64\x15\xe9\x11\x51\xa4\x7b\x2a\x06" "\x69\xfa\x38\x5b\xf7\x59\x5b\xc3\xfe\xa8\xba\xa7\x61\xd1\xeb\x0f\xd2\x39" "\x3f\xe5\xf0\xdd\xb8\x16\xd7\x63\x23\xce\xee\x59\xb6\x97\xfe\x3f\x1e\xb6" "\x9f\xdb\xd3\x5e\xf5\x74\xb8\xdd\x5e\xf6\x77\xda\xcf\xef\x69\x1f\xec\xb6" "\xe7\xf5\x2f\xec\x69\x1f\xa6\xb3\x8b\xca\x95\xdc\x7e\x3a\xd6\xe3\xe7\x71" "\x3d\xde\xd9\x6e\xaf\xda\x96\xa6\x6c\xff\xf2\x94\xf6\x72\x4a\x7b\xce\xbf" "\x6f\xff\xef\xa4\x9c\xff\xa0\xf6\x53\xe5\xbf\x9a\xda\x8b\xc6\xb4\x72\xef" "\xa3\xde\x67\xf6\xfb\xfa\x74\xdc\xfd\xbc\x75\xed\x8b\xbf\x39\x7b\xf4\x9b" "\x33\xd5\x56\xf4\x77\xb7\xad\xae\xda\xbe\x97\x5a\xe8\xcf\xf6\xff\xc9\xb1" "\x51\xfc\xf2\xe6\xc6\x8d\xd3\xb7\xaf\xde\xba\x75\xe3\x5c\xa4\xc9\x9e\x5b" "\xcf\x47\x9a\x3c\x61\x39\xff\x61\xfa\xd9\x7d\xfe\x7f\x79\xa7\x3d\x3f\xef" "\xd7\xf7\xd7\x7b\x1f\x8d\x0e\x9d\xff\xbc\xd8\x8a\xc1\xc4\xfc\x5f\xae\xcd" "\x57\xdb\xfb\xca\x8c\xfb\xd6\x86\x9c\xff\x28\xfd\xe4\xfc\xdf\x49\xed\xe3" "\xf7\xff\x45\xce\x7f\xf2\xfe\xff\x6a\x0b\xfd\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\xfd\x94\x65\xb9\x7d\x89\xe8\x5b\x11\x71\x31\x5d" "\xff\xd3\xd6\xb5\x99\x00\xc0\x6c\xe5\xd7\xff\x32\xc9\xb7\xcf\xaa\xee\xcf" "\xf8\xfe\xd4\xea\x05\xaf\x8b\x39\xeb\xcf\x4c\xeb\x4f\xcb\xf9\xea\x8f\x5a" "\xbd\x88\x75\x5d\x39\xde\x9b\xf5\x22\x22\xfe\x56\x5f\xa7\x7a\xcf\xf0\xeb" "\x71\xbf\x0c\x00\x98\x67\x9f\x46\xc4\x3f\xdb\xee\x04\xad\x91\x7f\x87\xe5" "\xef\xfb\xab\xa6\xa7\xda\xee\x0c\x30\x53\x37\x3f\xf8\xf0\xa7\x57\xaf\x5f" "\xdf\xb8\x71\xb3\xed\x9e\x00\x00\x00\x00\x00\x00\x00\x00\x8f\x2a\x8f\xff" "\xb9\x56\x1b\xff\xf9\x54\x59\x96\x77\x1b\xcb\xed\x19\xff\xf5\xed\x58\x7b" "\xdc\xf1\x3f\x07\x79\x66\x77\x80\xd1\x09\x03\x55\xf7\x0f\xbf\x4d\xfb\xd9" "\xea\x8d\xfa\xbd\xda\x70\xe3\x2f\xc6\xa4\xf1\xbf\x87\xbb\x73\xfb\x8d\xff" "\x3d\x98\x72\x7f\xc3\x29\xed\xa3\x29\xed\x4b\x53\xda\x97\xa7\xb4\x8f\xbd" "\xd0\xa3\x26\xe7\xff\x62\x6d\xbc\xf3\x53\x11\x71\xb2\x31\xfc\x7a\x17\xc6" "\x7f\x6d\x8e\x79\xdf\x05\x39\xff\x97\x6a\x8f\xe7\x2a\xff\xaf\x34\x96\xab" "\xe7\x5f\xfe\x7e\x91\xf3\xef\xed\xc9\xff\xcc\xad\xf7\x7f\x71\xe6\xe6\x07" "\x1f\xbe\x76\xed\xfd\xab\xef\x6d\xbc\xb7\xf1\xb3\x0b\xe7\xce\x9d\xbd\x70" "\xf1\xe2\xa5\x4b\x97\xce\xbc\x7b\xed\xfa\xc6\xd9\x9d\x7f\x5b\xec\xf1\xd1" "\xca\xf9\xe7\xb1\xaf\x9d\x07\xda\x2d\x39\xff\x9c\xb9\xfc\xbb\x25\xe7\xff" "\xa5\x54\xcb\xbf\x5b\x72\xfe\x5f\x4e\xb5\xfc\xbb\x25\xe7\x9f\xdf\xef\xc9" "\xbf\x5b\x72\xfe\xf9\xb3\x8f\xfc\xbb\x25\xe7\xff\x4a\xaa\xe5\xdf\x2d\x39" "\xff\xaf\xa5\x5a\xfe\xdd\x92\xf3\x7f\x35\xd5\xf2\xef\x96\x9c\xff\xd7\x53" "\x2d\xff\x6e\xc9\xf9\xbf\x96\x6a\xf9\x77\x4b\xce\xff\x74\xaa\xe5\xdf\x2d" "\x39\xff\x33\xa9\x3e\x60\xfe\x2b\x47\xdd\x2f\x66\x23\xe7\x9f\x8f\x70\xd9" "\xff\xbb\x25\xe7\x9f\xcf\x6c\x90\x7f\xb7\xe4\xfc\xcf\xa7\x5a\xfe\xdd\x92" "\xf3\xbf\x90\x6a\xf9\x77\x4b\xce\xff\xf5\x54\xcb\xbf\x5b\x72\xfe\xdf\x48" "\xb5\xfc\xbb\x25\xe7\x7f\x31\xd5\xf2\xef\x96\x9c\xff\x37\x53\x2d\xff\x6e" "\xc9\xf9\x5f\x4a\xb5\xfc\xbb\x25\xe7\xff\xad\x54\xcb\xbf\x5b\x72\xfe\xdf" "\x4e\xb5\xfc\xbb\x25\xe7\xff\x46\xaa\xe5\xdf\x2d\x39\xff\xef\xa4\x5a\xfe" "\xdd\x92\xf3\xff\x6e\xaa\xe5\xdf\x2d\x39\xff\xef\xa5\x5a\xfe\xdd\x92\xf3" "\x7f\x33\xd5\xf2\xef\x96\x87\xdf\xff\x6f\xc6\x8c\x19\x33\x79\xa6\xed\x67" "\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x69\x16\xa7\x13\xb7\xbd" "\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xff\xd9\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2" "\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x15\xf6\xee\x2e\x46\xae\xb3\xbe\x1f\xf8\x99\x7d\xf3\xda\x81" "\xc4\x40\xc8\xdf\xc9\xdf\xc0\xc6\x31\x21\x38\x9b\xec\xfa\x25\x7e\xa1\x75" "\x31\xe1\xb5\xe1\xad\x04\x42\xa1\x2f\xd8\xae\x77\x6d\x16\xfc\x86\xd7\x2e" "\x81\x46\xb2\x69\xa0\x44\xc2\xa8\xa8\xa2\x6d\xb8\x68\x0b\x08\xb5\xb9\xa9" "\xf0\x05\x17\xb4\x02\x94\x0b\xd4\x0a\xa9\x12\xb4\x17\xf4\x06\x51\xa1\x72" "\x11\x55\x01\x05\xa4\x4a\xb4\x82\x6c\x35\xe7\x3c\xcf\xb3\x33\xb3\xb3\x33" "\xbb\xf6\x7a\x7d\xe6\x9c\xcf\x47\x8a\x7f\xde\x99\x33\x73\xce\x9c\x39\x33" "\xbb\xdf\x75\xbe\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x75\xe7\xeb\x67\x3f\xdd\xc8\xb2\xac\xf9\x5f\xfe\xc7\xe6\x2c\x7b\x41" "\xf3\xef\x1b\x27\x36\xe7\x97\xbd\xe6\x46\x6f\x21\x00\x00\x00\x70\xad\x7e" "\x95\xff\xf9\xdc\x2d\xe9\x82\x43\x2b\xb8\x51\xcb\x32\xff\xfc\xf2\xef\x7e" "\x6d\x61\x61\x61\x21\x7b\xdf\xf0\x9f\x8f\x7e\x7e\x61\x21\x5d\x31\x91\x65" "\xa3\x1b\xb2\x2c\xbf\x2e\xba\xf2\xa3\xf7\x37\x5a\x97\x09\x1e\xcf\xc6\x1b" "\x43\x2d\x5f\x0f\xf5\x59\xfd\x70\x9f\xeb\x47\xfa\x5c\x3f\xda\xe7\xfa\xb1" "\x3e\xd7\x6f\xe8\x73\xfd\x78\x9f\xeb\x97\xec\x80\x25\x36\x16\xbf\x8f\xc9" "\xef\x6c\x7b\xfe\xd7\xcd\xc5\x2e\xcd\x6e\xcd\x46\xf3\xeb\xb6\x77\xb9\xd5" "\xe3\x8d\x0d\x43\x43\xf1\x77\x39\xb9\x46\x7e\x9b\x85\xd1\xe3\xd9\x5c\x76" "\x32\x9b\xcd\xa6\xdb\x96\x2f\x96\x6d\xe4\xcb\x7f\xe3\xce\xe6\xba\xde\x92" "\xc5\x75\x0d\xb5\xac\x6b\x6b\xf3\x08\xf9\xd9\x63\xc7\xe2\x36\x34\xc2\x3e" "\xde\xde\xb6\xae\xc5\xfb\x8c\x7e\xf2\xba\x6c\xe2\xe7\x3f\x7b\xec\xd8\xdf" "\x9e\x7f\xf6\xf6\x6e\xb3\xef\x6e\x68\xbb\xbf\x62\x3b\xef\xd9\xd6\xdc\xce" "\x4f\x86\x4b\x8a\x6d\x6d\x64\x1b\xd2\x3e\x89\xdb\x39\xd4\xb2\x9d\x5b\xbb" "\x3c\x27\xc3\x6d\xdb\xd9\xc8\x6f\xd7\xfc\x7b\xe7\x76\x3e\xb7\xc2\xed\x1c" "\x5e\xdc\xcc\x75\xd5\xf9\x9c\x8f\x67\x43\xf9\xdf\xbf\x97\xef\xa7\x91\xd6" "\x5f\xeb\xa5\xfd\xb4\x35\x5c\xf6\x8b\xbb\xb2\x2c\xbb\xb4\xb8\xd9\x9d\xcb" "\x2c\x59\x57\x36\x94\x6d\x6a\xbb\x64\x68\xf1\xf9\x19\x2f\x8e\xc8\xe6\x7d" "\x34\x0f\xa5\x17\x67\x23\xab\x3a\x4e\xef\x5c\xc1\x71\xda\x9c\x33\xdb\xdb" "\x8f\xd3\xce\xd7\x44\x7c\xfe\xef\x0c\xb7\x1b\x59\x66\x1b\x5a\x9f\xa6\x9f" "\x7c\x62\xac\xe5\x79\xff\xe5\xc2\xd5\x1c\xa7\x51\xf3\x51\x2f\xf7\x5a\xe9" "\x3c\x06\xd7\xfa\xb5\x52\x96\x63\x30\x1e\x17\xdf\xcb\x1f\xf4\x13\x5d\x8f" "\xc1\xed\xe1\xf1\x3f\x76\xf7\xf2\xc7\x60\xd7\x63\xa7\xcb\x31\x98\x1e\x77" "\xcb\x31\xb8\xad\xdf\x31\x38\x34\x36\x9c\x6f\x73\x7a\x12\x1a\xf9\x6d\x16" "\x8f\xc1\x9d\x6d\xcb\x0f\xe7\x6b\x6a\xe4\xf3\x99\xbb\x7b\x1f\x83\x53\xe7" "\x4f\x9d\x9d\x9a\xff\xd8\xc7\xef\x9b\x3b\x75\xf4\xc4\xec\x89\xd9\xd3\xbb" "\x77\xee\x9c\xde\xbd\x77\xef\xfe\xfd\xfb\xa7\x8e\xcf\x9d\x9c\x9d\x2e\xfe" "\xbc\xca\xbd\x5d\x7e\x9b\xb2\xa1\xf4\x1a\xd8\x16\xf6\x5d\x7c\x0d\xbc\xaa" "\x63\xd9\xd6\x43\x75\xe1\x4b\x63\x4b\xde\x7f\xaf\xf6\x75\x38\xde\xe3\x75" "\xb8\xb9\x63\xd9\xb5\x7e\x1d\x8e\x74\x3e\xb8\xc6\xfa\xbc\x20\x97\x1e\xd3" "\xc5\x6b\xe3\x3d\xcd\x9d\x3e\x7e\x79\x28\x5b\xe6\x35\x96\x3f\x3f\x3b\xae" "\xfd\x75\x98\x1e\x77\xcb\xeb\x70\xa4\xe5\x75\xd8\xf5\x7b\x4a\x97\xd7\xe1" "\xc8\x0a\x5e\x87\xcd\x65\xce\xee\x58\xd9\xcf\x2c\x23\x2d\xff\x75\xdb\x86" "\xe5\xbf\x17\x5c\xdb\x31\xb8\xb9\xe5\x18\xec\xfc\x79\xa4\xf3\x18\x5c\xeb" "\x9f\x47\xca\x72\x0c\x8e\x87\xe3\xe2\x07\x3b\x96\xff\x5e\xb0\x35\x6c\xef" "\x13\x93\xab\xfd\x79\x64\x78\xc9\x31\x98\x1e\x6e\x78\xef\x69\x5e\x92\x7e" "\xde\x1f\xdf\x9f\x8f\x6e\xc7\xe5\x1d\xcd\x2b\x6e\x1a\xcb\x2e\xcc\xcf\x9e" "\xbb\xff\xd1\xa3\xe7\xcf\x9f\xdb\x99\x85\xb1\x2e\x5e\xd2\x72\xac\x74\x1e" "\xaf\x9b\x5a\x1e\x53\xb6\xe4\x78\x1d\x5a\xf5\xf1\x7a\x68\xee\xe5\x4f\xdc" "\xd1\xe5\xf2\xcd\x61\x5f\x8d\xdf\xd7\xfc\x63\x7c\xd9\xe7\xaa\xb9\xcc\x9e" "\xfb\x7b\x3f\x57\xf9\x77\xb7\xee\xfb\xb3\xed\xd2\x5d\x59\x18\x6b\x6c\xbd" "\xf7\x67\xb7\xef\xe6\xcd\xfd\x39\x96\x65\x5f\xf8\xf6\x27\x1e\xfe\xe6\x63" "\x5f\x78\xfd\xb2\xfb\xb3\x99\x37\x3f\x39\x75\xed\x3f\x8b\xa7\x5c\xda\xf2" "\xfe\x3b\xba\xcc\xfb\x6f\xcc\xfd\xcf\x17\xeb\x4b\x77\xf5\xf8\xf0\xe8\x48" "\xf1\xfa\x1d\x4e\x7b\x67\xb4\xed\xfd\xb8\xfd\xa9\x1a\xc9\xdf\xbb\x1a\xf9" "\xba\x9f\x9b\x5a\xd9\xfb\xf1\x68\xf8\x6f\xbd\xdf\x8f\x6f\xed\xf1\x7e\xbc" "\xa5\x63\xd9\xb5\x7e\x3f\x1e\xed\x7c\x70\xf1\xfd\xb8\xd1\xef\xb7\x1d\xd7" "\xa6\xf3\xf9\x1c\x0f\xc7\xc9\xc9\xe9\xde\xef\xc7\xcd\x65\xb6\xec\x5a\xed" "\x31\x39\xd2\xf3\xfd\xf8\xae\x30\x1b\x61\xff\xbf\x3a\x24\x85\x94\x8b\x5a" "\x8e\x9d\xe5\x8e\xdb\xb4\xae\x91\x91\xd1\xf0\xb8\x46\xe2\x1a\xda\x8f\xd3" "\xdd\x6d\xcb\x8f\x86\x6c\xd6\x5c\xd7\x53\xbb\xc2\x0f\x85\x69\x2b\x57\x76" "\x9c\xde\x73\x57\xb1\xfc\x70\xcb\xed\xa2\xf5\x3a\x4e\x27\x3a\x96\x5d\xeb" "\xe3\x34\xfd\xee\x6b\xb9\xe3\xb4\xd1\xef\xb7\x6f\x57\xa7\xf3\xf9\x1c\x0f" "\xc7\xc5\xad\xbb\x7b\x1f\xa7\xcd\x65\x9e\xde\x73\xed\xef\x9d\x1b\xe3\x5f" "\x5b\xde\x3b\xc7\xfa\x1d\x83\xa3\xc3\x63\xcd\x6d\x1e\x4d\x07\x61\xfe\x7e" "\x9f\x2d\x6c\x8c\xc7\xe0\xfd\xd9\xb1\xec\x4c\x76\x32\x9b\xc9\xaf\x1d\xcb" "\x8f\xa7\x46\xbe\xae\xc9\x07\x56\xf6\x5e\x39\x16\xfe\x5b\xef\xf7\xca\x2d" "\x3d\x8e\xc1\x7b\x3a\x96\x5d\xeb\x63\x30\x7d\x1f\x5b\xee\xd8\x6b\x8c\x2c" "\x7d\xf0\x6b\xa0\xf3\xf9\x1c\x0f\xc7\xc5\x93\x0f\xf4\x3e\x06\x9b\xcb\xbc" "\x61\xdf\xda\xfe\xec\x7a\x4f\xb8\x24\x2d\xd3\xf2\xb3\x6b\xe7\xef\xd7\x96" "\xfb\x9d\xd7\x1d\x1d\xbb\xe9\x7a\x1d\x2b\x23\x61\x3b\xbf\xbd\xaf\xf7\xef" "\x66\x9b\xcb\x9c\xdc\xbf\xda\x9c\xd9\x7b\x3f\xdd\x1b\x2e\xb9\xa9\xcb\x7e" "\xea\x7c\xfd\x2e\xf7\x9a\x9a\xc9\xd6\x67\x3f\x6d\x09\xdb\xf9\xec\xfe\xe5" "\xf7\x53\x73\x7b\x9a\xcb\x7c\xfe\xc0\x0a\x8f\xa7\x43\x59\x96\x5d\xfc\xc8" "\x83\xf9\xef\x7b\xc3\xbf\xaf\x5c\xbc\xf0\xfd\xaf\xb5\xfd\xbb\x4b\xb7\x7f" "\xd3\xb9\xf8\x91\x07\x7f\xfa\xc2\xe3\xff\xb4\x9a\xed\x07\x60\xf0\x3d\x5f" "\x8c\x4d\xc5\xf7\xba\x96\x7f\x99\x5a\xc9\xbf\xff\x03\x00\x00\x00\x03\x21" "\xe6\xfe\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf8\x7f\x85\x27" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x23\x61\x26\x55\xc8\xff\x7f\xdc\x7f" "\x91\x2d\x6f\x78\x76\xee\xf9\x8b\x59\x6a\xe6\x2f\x04\xf1\xfa\xb4\x1b\x1e" "\x2a\x96\x8b\x1d\xd7\xe9\xf0\xf5\xc4\xc2\xa2\xe6\xe5\x0f\x7e\x65\xf6\xbf" "\xff\xf1\xe2\xca\x36\x6f\x28\xcb\xb2\x5f\x3e\xf4\x47\x5d\x97\xdf\xf2\x50" "\xdc\xae\xc2\x44\xd8\xce\x2b\x6f\x6c\xbf\x7c\x89\xaf\xdd\xb7\xa2\x75\x1f" "\x79\xe4\x62\x5a\x6f\x6b\x7f\xfd\x8b\xe1\xfe\xe3\xe3\x59\xe9\x61\xd0\xad" "\x82\x3b\x9d\x65\xd9\x37\x6e\xf9\x6c\xbe\x9e\x89\xf7\x5f\xce\xe7\xd3\x0f" "\x1d\xc9\xe7\xc3\x97\x9e\x78\xbc\xb9\xcc\x73\x07\x8a\xaf\xe3\xed\x9f\x79" "\x49\xb1\xfc\x5f\x85\xf2\xef\xa1\xe3\x47\xdb\x6e\xff\x4c\xd8\x0f\x3f\x0e" "\x73\xfa\xad\xdd\xf7\x47\xbc\xdd\x57\x2f\xbf\x7a\xeb\xbe\xf7\x2e\xae\x2f" "\xde\xae\xb1\xed\xe6\xfc\x61\x3f\xf9\x81\xe2\x7e\xe3\xe7\xe4\x7c\xee\xf1" "\x62\xf9\xb8\x9f\x97\xdb\xfe\x6f\x7e\xe6\xa9\xaf\x36\x97\x7f\xf4\x95\xdd" "\xb7\xff\xe2\x50\xf7\xed\x7f\x2a\xdc\xef\x57\xc2\xfc\x9f\x97\x15\xcb\xb7" "\x3e\x07\xcd\xaf\xe3\xed\x3e\x15\xb6\x3f\xae\x2f\xde\xee\xfe\x2f\x7f\xab" "\xeb\xf6\x5f\xf9\x74\xb1\xfc\xd9\x37\x15\xcb\x1d\x09\x33\xae\xff\x9e\xf0" "\xf5\xf6\x37\x3d\x3b\xd7\xba\xbf\x1e\x6d\x1c\x6d\x7b\x5c\xd9\x9b\x8b\xe5" "\xe2\xfa\xa7\xbf\xff\xa7\xf9\xf5\xf1\xfe\xe2\xfd\x77\x6e\xff\xf8\xe1\xcb" "\x6d\xfb\xa3\xf3\xf8\x78\xfa\xdf\x8a\xfb\x99\xea\x58\x3e\x5e\x1e\xd7\x13" "\xfd\x43\xc7\xfa\x9b\xf7\xd3\x7a\x7c\xc6\xf5\x3f\xf5\x27\x47\xda\xf6\x73" "\xbf\xf5\x5f\x79\xf8\x99\x97\x35\xef\xb7\x73\xfd\xf7\x76\x2c\x77\xf6\x23" "\x3b\xf2\xf5\x2f\xde\x5f\xfb\x27\x36\xfd\xf5\xa7\x3e\xdb\x75\x7d\x71\x7b" "\x0e\xfd\xfd\xd9\xb6\xc7\x73\xe8\x5d\xe1\x75\x1c\xd6\xff\xe4\x07\xc2\xf1" "\x18\xae\xff\xdf\x2b\xc5\xfd\x75\x7e\xba\xc2\x91\x77\xb5\xbf\xff\xc4\xe5" "\xbf\xb8\xf9\x62\xdb\xe3\x89\xde\xf2\xf3\x62\xfd\x57\x5e\x7b\x22\x9f\x1b" "\xc6\x37\x6e\xba\xe9\x05\x2f\xbc\xf9\xd2\x2b\x9a\xfb\x2e\xcb\xbe\xb7\xa1" "\xb8\xbf\x7e\xeb\x3f\xf1\x37\x67\xda\xb6\xff\x4b\xb7\x15\xfb\x23\x5e\x1f" "\x3b\xfa\x9d\xeb\x5f\x4e\x5c\xff\xb9\x8f\x4e\x9e\x3e\x33\x7f\x61\x6e\x26" "\xed\xd5\xc7\x6e\xc9\x3f\x3b\xe7\x6d\xc5\xf6\xc4\xed\xbd\x25\xbc\xb7\x76" "\x7e\x7d\xf8\xcc\xf9\x0f\xce\x9e\x9b\x98\x9e\x98\xce\xb2\x89\xea\x7e\x84" "\xde\x55\xfb\x72\x98\x3f\x2d\xc6\xa5\xde\x4b\x2f\x2c\x79\x07\xdd\xf1\x48" "\x78\x3e\xef\xf8\xcb\x6f\x6c\xba\xfb\x5f\x3f\x13\x2f\xff\xf7\xf7\x14\x97" "\x5f\x7e\x6b\xf1\x7d\xeb\x55\x61\xb9\xcf\x85\xcb\x37\x87\xe7\x6f\x75\xeb" "\x5f\xea\xc9\x3b\x6f\xcb\x5f\xdf\x8d\xa7\xc3\x16\x2e\x2c\xfd\xbc\xe0\x6b" "\xb1\x75\xfb\x7f\xed\x5f\xd1\x82\xe1\xf1\x77\xfe\x5c\x10\x8f\xf7\xb3\x2f" "\xfd\x60\xbe\x1f\x9a\xd7\xe5\xdf\x37\xe2\xeb\xfa\x1a\xb7\xff\x87\x33\xc5" "\xfd\x7c\x3d\xec\xd7\x85\xf0\xc9\xcc\xdb\x6e\x5b\x5c\x5f\xeb\xf2\xf1\xb3" "\x11\x2e\xbf\xbb\x78\xbd\x5f\xf3\xfe\x0b\x6f\x73\xf1\x79\xfd\xbb\xf0\x7c" "\xbf\xfd\xc7\xc5\xfd\xc7\xed\x8a\x8f\xf7\x87\xe1\xe7\x98\x6f\x6d\x69\x7f" "\xbf\x8b\xc7\xc7\xd7\x2f\x0e\x75\xde\x7f\xfe\x29\x1e\x97\xc2\xfb\x49\x76" "\xa9\xb8\x3e\x2e\x15\xf7\xf7\xe5\xe7\x6e\xeb\xba\x79\xf1\x73\x48\xb2\x4b" "\xb7\xe7\x5f\xff\x59\xba\x9f\xdb\x57\xf5\x30\x97\x33\xff\xb1\xf9\xa9\x93" "\x73\xa7\x2f\x3c\x3a\x75\x7e\x76\xfe\xfc\xd4\xfc\xc7\x3e\x7e\xf8\xd4\x99" "\x0b\xa7\xcf\x1f\xce\x3f\xcb\xf3\xf0\x87\xfa\xdd\x7e\xf1\xfd\x69\x53\xfe" "\xfe\x34\x33\xbb\x77\x4f\x96\xbf\x5b\x9d\x29\xc6\x75\x76\xa3\xb7\xff\xec" "\x23\xc7\x66\xf6\x4d\xdf\x3d\x33\x7b\xfc\xe8\x85\xe3\xe7\x1f\x39\x3b\x7b" "\xee\xc4\xb1\xf9\xf9\x63\xb3\x33\xf3\x77\x1f\x3d\x7e\x7c\xf6\xa3\xfd\x6e" "\x3f\x37\x73\x70\xe7\xae\x03\xbb\xf7\xed\x9a\x3c\x31\x37\x73\x70\xff\x81" "\x03\xbb\x0f\x4c\xce\x9d\x3e\xd3\xdc\x8c\x62\xa3\xfa\xd8\x3b\xfd\xe1\xc9" "\xd3\xe7\x0e\xe7\x37\x99\x3f\xb8\xe7\xc0\xce\x07\x1e\xd8\x33\x3d\x79\xea" "\xcc\xcc\xec\xc1\x7d\xd3\xd3\x93\x17\xfa\xdd\x3e\xff\xde\x34\xd9\xbc\xf5" "\x1f\x4e\x9e\x9b\x3d\x79\xf4\xfc\xdc\xa9\xd9\xc9\xf9\xb9\x8f\xcf\x1e\xdc" "\x79\x60\xef\xde\x5d\x7d\x3f\x0d\xf0\xd4\xd9\xe3\xf3\x13\x53\xe7\x2e\x9c" "\x9e\xba\x30\x3f\x7b\x6e\xaa\x78\x2c\x13\xe7\xf3\x8b\x9b\xdf\xfb\xfa\xdd" "\x9e\x6a\x9a\xff\x8f\xe2\xe7\xd9\x4e\x8d\xe2\x83\xf8\xb2\x77\xde\xbb\x37" "\x7d\x3e\x6b\xd3\x57\x3e\xb1\xec\x5d\x15\x8b\x74\x7c\x80\xe8\xb3\xe1\xb3" "\x68\xbe\xf3\xa2\xb3\xfb\x57\xf2\x75\xcc\xfd\xa3\x61\x26\x55\xc8\xff\x00" "\x00\x00\x40\x2e\xe6\xfe\xb1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x0d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xe3\x61\xa6\xff\x25\xa0" "\x26\xf9\xbf\x72\xfd\xff\x2d\x17\xfb\xac\x3f\x36\x4b\xf4\xff\x33\xfd\xff" "\x44\xff\xbf\x66\xfd\xff\x77\x97\xad\xff\x5f\xbc\x5f\xe8\xff\xaf\x8d\x6b" "\xed\xdf\xeb\xff\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xac\x81\xb2" "\xf5\xff\x63\xee\xdf\x98\x65\xfe\xfd\x1f\x00\x00\x00\x2a\x2a\xe6\xfe\x4d" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37\x85\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xbf\x20\xcc\xa4\x26\xf9\xbf\x7e\xfd\xff\x82\xf3\xff" "\xeb\xff\xb7\xee\x2f\xfd\x7f\xfd\xff\x6e\xeb\xd7\xff\x1f\x4c\xfa\xff\xbd" "\xe9\xff\xf7\xa1\xff\x3f\x95\xd5\xab\xff\x7f\xa9\xe5\xcf\x41\xec\xff\x6f" "\x6c\xfd\x42\xff\x9f\x32\x2a\x5b\xff\x3f\xe6\xfe\x17\x86\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x9b\xc3\x4c\x6a" "\x92\xff\xf5\xff\xaf\xa9\xff\x9f\x3a\x57\xfa\xff\xed\xdb\xaf\xff\xdf\x4e" "\xff\x3f\x1c\x0f\xfa\xff\xfa\xff\xeb\x40\xff\xbf\x37\xfd\xff\x3e\xf4\xff" "\x9d\xff\x7f\xb0\xfa\xff\x6d\xf4\xff\x29\xa3\xb2\xf5\xff\x63\xee\x7f\x51" "\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x2f\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x7c\x46\xae\xee\x66\x31\xf7\xbf\x24\xcc\x64\x49\xfe\xbf\xca" "\x15\x00\x00\x00\x00\x37\x5c\xcc\xfd\xb7\x66\x1d\x45\xf0\x9a\xfc\xfb\xbf" "\xfe\xbf\xf3\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5f\xff\xca\xfb\xff\xc3\x99" "\xfe\x7f\x79\xe8\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f" "\x6b\xaa\x6c\xfd\xff\x3c\xf7\x67\xe3\xd9\x4b\xc3\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\xff\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x09\x33\xa9\x49\xfe" "\xd7\xff\xaf\x4c\xff\xff\x17\xad\x4f\x9d\xfe\xbf\xfe\x7f\xaf\xf5\xeb\xff" "\x3b\xff\x7f\x95\xe9\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x6b\xaa\x6c\xfd\xff\x98\xfb\x6f\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80" "\x3a\x88\xb9\xff\x8e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xff\x1f" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x35\xcc\xa4\x26\xf9\x5f\xff" "\xbf\xe4\xfd\xff\xd8\x1c\x75\xfe\x7f\xfd\x7f\xfd\xff\x52\xf6\xff\xc7\xf5" "\xff\x4b\x47\xff\xbf\x37\xfd\xff\x3e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x59" "\x53\x65\xeb\xff\xc7\xdc\xff\xb2\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83" "\x98\xfb\x5f\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x8a\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x89\x30\x93\x9a\xe4\xff\xd5\xf4\xff" "\x1b\x97\xf4\xff\x97\x73\x9d\xcf\xff\x3f\xb6\x82\xf3\xff\xb7\xd1\xff\xd7" "\xff\xef\xb5\x7e\xfd\x7f\xe7\xff\xaf\x32\xfd\xff\xde\xf4\xff\xfb\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\x67\x4d\x95\xad\xff\x1f\x73\xff\x9d\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x7b\x98" "\x49\x4d\xf2\xbf\xf3\xff\x0f\x44\xff\x3f\xd3\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\x5f\x19\xfd\xff\xde\xf4\xff\xfb\xd0\xff\xd7\xff\xd7\xff\xd7\xff" "\x67\x4d\x95\xad\xff\x1f\x73\xff\x2b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x55\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xf7\x84\x99\xd4\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5f\xbf\xfe\xff\x60\xd2\xff\xef\x4d" "\xff\xbf\x0f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xd6\x54\xd9\xfa\xff\x31\xf7" "\xbf\x3a\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x1d\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x4f\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\x77\x5f\xbf\xfe\xff\x60\xd2\xff\xef\x4d\xff\xbf\x0f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xd6\x54\xd9\xfa\xff\x31\xf7\xdf\x17\x66\x52\x93\xfc\x0f\x00" "\x00\x00\x75\x10\x73\xff\xfd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\x53\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xd3\x61\x26\x35\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xab\xea\xff\xbf\x62\xf1\x7e\xf5\xff\x0b" "\xfa\xff\xe5\xa2\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xfa\xff\x37\xbc\xff\x3f" "\xaa\xff\x4f\xa5\x94\xad\xff\x1f\x73\xff\xce\x30\x93\x9a\xe4\x7f\x00\x00" "\x00\xa8\x83\x98\xfb\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef" "\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x13\x66\x52\x93\xfc\x3f" "\x00\xfd\xff\x58\xed\xd6\xff\xd7\xff\xd7\xff\x2f\x43\xff\xbf\x85\xfe\x7f" "\x41\xff\xbf\x5c\xf4\xff\x7b\x5b\xfb\xfe\x7f\x7c\x88\xfa\xff\xfa\xff\xfa" "\xff\xce\xff\xaf\xff\xcf\x52\x65\xeb\xff\xc7\xdc\xff\x40\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\xa9" "\x49\xfe\x1f\x80\xfe\x7f\xce\xf9\xff\xfb\xf6\xff\xc7\x5a\xd7\xad\xff\xaf" "\xff\xdf\x6b\xfd\xfa\xff\xfa\xff\x55\xa6\xff\xdf\x9b\xf3\xff\xf7\xa1\xff" "\xaf\xff\x3f\xc0\xfd\xff\xe6\xb1\xa5\xff\x4f\xd9\x94\xad\xff\x1f\x73\xff" "\x81\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x5f\x13\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\x6b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\xbf\x1e\x66\x52\x93\xfc\xaf\xff\x5f\x99\xfe\x7f\x1b\xfd\x7f\xfd" "\xff\x5e\xeb\x1f\xb4\xfe\xff\x98\xfe\xbf\xfe\xff\x2a\xe8\xff\xf7\xa6\xff" "\xdf\x87\xfe\xbf\xfe\xff\x00\xf7\xff\x9d\xff\x9f\x32\x2a\x5b\xff\x3f\xe6" "\xfe\x83\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xff\x46\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x0f\x85\x99\xd4\x24\xff\xeb\xff\xaf\x53\xff\x3f\x5e\xa8\xff" "\xaf\xff\xaf\xff\xef\xfc\xff\xfa\xff\xd7\x95\xfe\x7f\x6f\xfa\xff\x7d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xb3\xa6\xca\xd6\xff\x8f\xb9\xff\x75\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x3f\x18\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\xfa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x37" "\x84\x99\xd4\x24\xff\xeb\xff\x3b\xff\xff\x8d\xef\xff\x8f\xb6\x6d\xbb\xfe" "\xff\xe2\xed\xf4\xff\x0b\xfa\xff\xfa\xff\xab\xa1\xff\xdf\x9b\xfe\x7f\x1f" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xac\xa9\xb2\xf5\xff\x63\xee\x7f\x63\x98" "\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x6f\x0a\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x5b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\x6f\x7c\xff\xbf\xfb\xf9\xff\x9b" "\xc7\x9a\xfe\xbf\xfe\x7f\xa6\xff\xaf\xff\xbf\x4a\xfa\xff\xbd\xe9\xff\xf7" "\xa1\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x9a\x2a\x5b\xff\x3f\xe6\xfe\xdf\x0c" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xa1\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xb7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\xbf\x2d\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\xbf\xac\xfd\x7f\xe7\xff\xd7\xff" "\x8f\xf4\xff\xf5\xff\x57\x43\xff\xbf\xb7\x01\xeb\xff\xff\xea\xe6\x70\xb9" "\xfe\x7f\x41\xff\xbf\xdc\xdb\xbf\xda\xfe\xff\x48\xc7\xd7\xd7\xa5\xff\xff" "\xa3\xe5\xfa\xff\x0b\x1b\x3a\x6f\xaf\xff\xcf\xf5\x50\xb6\xfe\x7f\xcc\xfd" "\x6f\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x1d\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xff\xad\x30\x93\x9a\xe4\x7f\xfd\xff\xe6\x76\x2c\xb6\x97\xf5\xff" "\xf5\xff\xf3\x0b\xf4\xff\xf5\xff\xf5\xff\x07\x96\xfe\x7f\x6f\x03\xd6\xff" "\x77\xfe\xff\x0e\xfa\xff\xe5\xde\x7e\xe7\xff\xd7\xff\x67\xa9\xb2\xf5\xff" "\x63\xee\x7f\x57\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x0f\x87" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x3b\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x3d\x61\x26\x35\xc9\xff\xfa\xff\xce\xff\xaf\xff\xaf" "\xff\xaf\xff\xdf\x7d\xfd\xfa\xff\x83\x49\xff\xbf\x37\xfd\xff\x3e\xf4\xff" "\xf5\xff\xcb\xd6\xff\xff\x4f\xfd\x7f\x06\x5b\xd9\xfa\xff\x31\xf7\x3f\x12" "\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x7b\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x7f\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x7d\x61\x26\x35\xc9\xff\xfa\xff\x83\xd2\xff\x9f\xd0\xff\x5f\x65\xff" "\x7f\x2c\x5c\xa6\xff\xaf\xff\xaf\xff\x5f\x2f\xfa\xff\xbd\xe9\xff\xf7\xa1" "\xff\xaf\xff\x5f\xb6\xfe\xbf\xf3\xff\x33\xe0\xca\xd6\xff\x8f\xb9\xff\xfd" "\x61\x26\x2b\xcf\xff\xe3\x2b\x5e\x12\x00\x00\x00\xb8\x21\x62\xee\xff\x9d" "\x30\x93\x9a\xfc\xfb\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xbf\x1b\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\x7b\x61\x26\x35\xc9\xff\xfa\xff\x83\xd2" "\xff\x77\xfe\xff\xcc\xf9\xff\xf5\xff\x3b\x1e\x8f\xfe\xbf\xfe\x7f\x37\xeb" "\xd7\xff\x8f\xef\x3c\xfa\xff\xfa\xff\xfa\xff\x91\xfe\xbf\xfe\xbf\xfe\x3f" "\x9d\xca\xd6\xff\x8f\xb9\xff\xf7\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\x03\xa1\xdb\xff\x93\xdd\x29" "\xe6\xfe\xc3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x47\xc2\x4c\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\x4b\xda\xff\xff\x8b\x6d\xff\xf2\x83\xef" "\xbe\xe3\xc8\x4e\xfd\x7f\xfd\x7f\xfd\xff\x55\x59\xd7\xf3\xff\x37\x5f\xfc" "\xce\xff\xaf\xff\xaf\xff\x9f\xe8\xff\xeb\xff\xeb\xff\xd3\xa9\x6c\xfd\xff" "\x98\xfb\x8f\x86\x99\x2c\x06\xbf\xb7\x39\xc1\x3f\x00\x00\x00\x0c\xb6\x98" "\xfb\xff\x20\xcc\xa4\x26\xff\xfe\x0f\x00\x00\x00\x75\x10\x73\xff\xb1\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x99\x30\x93\x9a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x92\xf6\xff\x07\xf8\xfc\xff\x71\x7f\x0c\x52\xff\x7f\x72" "\xc3\x00\xf5\xff\xe3\x9b\xae\xfe\x7f\x57\xeb\xda\xff\x7f\xef\x62\x4f\x5c" "\xff\x7f\xb5\xfd\xff\xb1\xae\x97\x76\xf6\xff\x1b\xfa\xff\x6d\xf4\xff\x57" "\xbd\xfd\xdf\xc9\xb2\x4c\xff\x5f\xff\x9f\x1b\xa8\x6c\xfd\xff\x98\xfb\x67" "\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x42\xee\x1f\x3a\x5e\xcc\xc5\x2b" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x4f\x84\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x7f\x30\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf" "\xf9\xff\xbb\xaf\xbf\xb4\xfd\x7f\xe7\xff\xef\x49\xff\xbf\xb7\xf2\xf4\xff" "\xbb\x73\xfe\x7f\xfd\xff\x41\xde\x7e\xfd\x7f\xfd\x7f\x96\x2a\x5b\xff\x3f" "\xe6\xfe\xb9\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x14\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xe1\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x93\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xdd\xd7\xaf\xff\x3f\x98\xf4\xff\x7b\xd3\xff\xef\x43\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\x35\x55\xb6\xfe\x7f\xcc\xfd\xa7\xc2\x4c\x6a\x92\xff" "\x81\xff\x63\xef\x3e\x9a\x2c\xad\xcb\x3e\x8e\x9f\x9e\xa7\x29\x66\x1e\x36" "\xcf\xee\x59\xb8\xd0\x2a\x97\xbe\x04\x16\xb2\xd6\x17\xe0\x82\x0d\x0b\xad" "\xb2\x5c\x80\x8a\x39\xcd\x60\x8e\x98\x73\xc0\x2c\x06\x0c\xa0\x88\x09\x73" "\x02\x13\x8a\x59\x54\xcc\x09\x03\x66\xd4\x1a\x8b\x99\xeb\xba\xa6\xc3\xdd" "\xf7\xe9\x70\xba\xcf\x7d\xfe\xff\xcf\x67\xe1\x35\x34\xd3\x9c\x33\x3a\x05" "\xfe\xa6\xe7\xcb\x0d\x00\x00\xf4\x20\x77\xff\xa5\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\x7f\x59\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x34" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xcd\xf6\xff\xf7\xd5\xff\xef\xf4\xfa\xfa" "\x7f\xfd\x7f\xcb\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x0b\x35\xb5\xfe\x3f\x77\xff\xc3\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xc3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf2\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x44\xdc\xd2\xc9\xfe\xdf\xd2\xff\xaf\xcd" "\xfa\xec\xff\x33\xe3\xd5\xff\xb7\xd4\xff\x7b\xfe\xff\x8e\xaf\xaf\xff\xd7" "\xff\xb7\xec\x68\xfb\xff\x2b\xee\xfe\x3b\x9f\xfe\x5f\xff\xaf\xff\x0f\xfa" "\x7f\xfd\xbf\xfe\x9f\xad\xa6\xd6\xff\xe7\xee\x7f\x64\xdc\xd2\xc9\xfe\x07" "\x00\x00\x80\x1e\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x3f\x3a\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x13\xb7\x74\xb2\xff" "\x3d\xff\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\x57\x93\xe7" "\xff\x8f\xeb\xa9\xff\xbf\xfc\xd6\x0b\x2e\xbd\xf3\xfa\x7b\xdc\xb0\x97\xd7" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\x16\x6b\x6a\xfd\x7f\xee\xfe\xc7\xc6\x2d" "\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x56\xd0\x89\xc1\x8f\xe6" "\xee\x7f\x42\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xd1\xff\x1f\xd7\xff" "\xeb\xff\xf5\xff\x2d\xd0\xff\x8f\xeb\xa9\xff\xdf\xcf\xeb\xeb\xff\xf5\xff" "\xfa\x7f\xfd\x3f\x8b\x35\xb5\xfe\x3f\x77\xff\x13\xe3\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x93\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x6b\xe8\x37" "\x62\x8f\xc8\xdd\x7f\x32\x6e\xb1\xff\x01\x00\x00\x60\x25\xec\x26\x43\xcf" "\xdd\x7f\x2a\x6e\xe9\x64\xff\xeb\xff\x0f\xbf\xff\xff\x8f\xfe\x7f\x35\xfa" "\x7f\xcf\xff\xd7\xff\xeb\xff\x9b\xa0\xff\x1f\xa7\xff\x9f\x43\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xa8\xa9\xf5\xff\xb9\xfb\xaf\x88\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\x4f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x53\xe3\x96\x4e\xf6\xbf" "\xfe\xdf\xf3\xff\xf5\xff\xfa\xff\x05\xf6\xff\x67\xbe\xa9\xff\x1f\xa6\xff" "\x3f\x1a\xfa\xff\x71\xfa\xff\x39\xf4\xff\x07\xed\xe7\xcf\xd3\xff\xeb\xff" "\xf5\xff\x6c\xb4\xc7\xfe\xff\xae\x91\xbf\x6d\x2f\xa4\xff\xcf\xdd\xff\xb4" "\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xf4\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x46\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f" "\x33\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\xa3\xef\xff\x67\x5b\xbe\xff" "\xca\xf6\xff\xdb\x7f\xea\x9d\xa1\xff\x1f\xa6\xff\x3f\x1a\xfa\xff\x71\x93" "\xe9\xff\xd7\xd6\x07\x3f\xac\xff\x5f\xf9\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f" "\x36\x99\xda\xf3\xff\x73\xf7\x3f\x2b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\x3f\x3b\x6e\x19\xd9\xff\x7b\xfe\xc5\x7c\x00\x00\x00\x60\xa9\x72" "\xf7\x3f\x27\x6e\xf1\xf5\x7f\x00\x00\x00\x58\x79\x59\x9d\xe5\xee\x7f\x6e" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\x9e\xff\xbf\xc0\xe7\xff\x9f\xd1" "\x43\xff\x7f\xc3\x86\xf7\xa7\xff\x9f\x16\xfd\xff\xb8\xc9\xf4\xff\x3b\xd0" "\xff\xeb\xff\x57\xf9\xfd\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77\xff\xf3" "\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x95\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xfc\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x41\xdc\xd2\xc9\xfe\x1f\xee\xff\xcf\xfd\x79\xfd\xff\xee\xe8\xff\x37\xbf" "\x7f\xfd\xff\xf0\xcf\x8f\x45\xf5\xff\xf9\x57\xd4\xff\x8f\xf6\xff\x17\x79" "\xfe\x7f\x9f\x76\xea\xef\x2f\xd9\xe5\xe7\xeb\xff\x83\xfe\x5f\xff\xaf\xff" "\xd7\xff\x6f\xee\xff\x4f\xcc\xfb\x7c\xfd\x3f\x43\xa6\xd6\xff\xe7\xee\x7f" "\x61\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x51\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xbf\x38\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x5f\x12\xb7\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff\x5f\xbd\xfe\xdf\xf3\xff" "\xcf\x5a\xe6\xf3\xff\x67\x47\xde\xff\xaf\xeb\xff\x77\xa9\xcb\xe7\xff\xdf" "\xfb\x8e\x5d\xff\xf5\xf5\xff\x73\xe8\xff\xf5\xff\xfa\xff\xf1\xe7\xff\x8f" "\xfc\x5b\x00\xf4\xff\x0c\x99\x5a\xff\x9f\xbb\xff\xa5\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00\x00\xab\x61\xe3" "\xef\x1d\xd8\xfa\x1b\x4a\x43\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x2b\xe2\x96\x76\xf6\xff\xe8\xb3\x3a\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x3f\xfc\xfa\xd3\xea\xff\x3d\xff\x7f\xb7\x5a\xeb\xff\xe7\x3e" "\x70\x7b\xb3\x9b\xe7\x7d\x07\xfd\xff\x1c\xfa\xff\xc3\xe8\xe7\xd7\x1b\xeb" "\xff\xaf\xda\xe9\xf3\xa7\xd0\xff\x9f\x3c\xec\xfe\x7f\x84\xfe\x9f\x21\x9b" "\xfa\xff\x1b\xcf\x7d\x7c\x59\xfd\x7f\xee\xfe\x57\xc6\x2d\xed\xec\x7f\x00" "\x00\x00\xe8\x5e\xee\xfe\x57\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xab\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x35\x71\x4b\x27\xfb\xff" "\xd0\xfb\xff\x91\x70\x51\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x45" "\x6b\xad\xff\xdf\x73\xbf\x3e\x87\xfe\x7f\x0e\xfd\xbf\xe7\xff\x7b\xfe\xbf" "\xfe\x9f\x85\xda\xd4\xff\x6f\xb0\xac\xfe\x3f\x77\xff\x6b\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\xeb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xaa\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x7d\xdc\xd2\xc9" "\xfe\xf7\xfc\x7f\xfd\xbf\xfe\x7f\xa9\xfd\xff\xb1\x99\xfe\x5f\xff\xaf\xff" "\x5f\xa8\x03\xf5\xf7\xc7\xf4\xff\x45\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\x2c\xc0\xd4\xfa\xff\xdc\xfd\x6f\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xc5\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x9b\xe3\x96\x4e\xf6\xbf\xfe\xff\x70\xfb" "\xff\xfc\xf8\x0e\xfd\xff\xff\x6e\xfd\x7c\xfd\x7f\x77\xfd\xbf\xe7\xff\xeb" "\xff\xf5\xff\x0b\xd6\xed\xf3\xff\xd7\x86\xfe\x49\xb4\xdd\x0e\xfd\xff\xcd" "\x0f\x3e\x75\xff\xcd\x1f\xd1\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\xf4" "\x7f\x23\x7f\x6e\x12\xfd\xff\xe9\x73\xff\xef\x32\x77\xff\x5b\xe2\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x75\xdc\xb2" "\xc7\xfd\x3f\xd6\x3c\x4c\x99\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf0" "\xeb\xeb\xff\x57\x53\xb7\xfd\xff\x2e\x79\xfe\xff\x1c\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\x42\x4d\xa2\xff\xdf\xf0\xc7\xb9\xfb\xdf\x1e\xb7\xf8\xfa\x3f" "\x00\x00\x00\x34\x23\x77\xff\x3b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xae\xb8\xa5\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\xaf\x26\xfd\xff" "\x38\xfd\xff\x1c\xab\xd4\xff\x5f\x7d\x80\xfe\x7f\x7d\xf8\xc3\xcb\xee\xe7" "\x0f\x6a\xd9\xef\x5f\xff\xaf\xff\x67\xbb\xa9\xf5\xff\xb9\xfb\xaf\x89\x5b" "\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8e\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\xf7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x7b\xe3" "\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x87\x5f\x5f\xff\xbf" "\x9a\xf4\xff\xe3\xf4\xff\xb3\xd9\xec\xda\x91\x37\x30\xd4\xff\x9f\x3e\x7f" "\x9a\xfd\xbf\xe7\xff\x4f\xee\xfd\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77" "\xff\xfb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xb5\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x5d\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\xbf\x3f\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\xbd\xf6\xff\x77\xff" "\x8f\xa3\xff\x9f\xe9\xff\xf5\xff\x13\xa5\xff\x1f\xa7\xff\x9f\x63\x95\x9e" "\xff\xaf\xff\xdf\xd7\xfb\x3f\x7e\x88\xef\x5f\xff\xaf\xff\x67\xbb\xa9\xf5" "\xff\xb9\xfb\x3f\x10\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xaf\x8f" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc6\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x0d\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\x7b\xfe\xbf" "\xfe\x7f\xf8\xf5\xf5\xff\xab\xe9\xf0\xfa\xff\x99\xfe\x5f\xff\xaf\xff\x9f" "\x63\x15\xfa\xff\xc3\x7c\xff\xfa\x7f\xfd\x3f\xdb\x4d\xad\xff\xcf\xdd\xff" "\xa1\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\x48\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x7f\x34\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5" "\xf5\xff\xab\xc9\xf3\xff\xc7\xe9\xff\xe7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x16\x6a\xb8\xff\x3f\xb9\xb4\xfe\x3f\x77\xff\xc7\xe2\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\xf1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x44\xdc\xd2\xc9\xfe\xd7" "\xff\xeb\xff\x37\xf7\xff\xb3\x99\xfe\x5f\xff\xaf\xff\x3f\xeb\x08\xfa\xff" "\xe3\x33\xfd\xff\xc2\xe9\xff\xc7\xe9\xff\xe7\xd0\xff\xb7\xd9\xff\x1f\x9b" "\x35\xd4\xff\x9f\xd8\xf1\xf3\xf5\xff\x4c\xd1\xd4\x9e\xff\x9f\xbb\xff\x93" "\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x53\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x4c\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x3d\xff\x5f\xff\xaf\xff\x1f\x7e\x7d" "\xcf\xff\x5f\x4d\xfa\xff\x71\xfa\xff\x39\xf4\xff\x6d\xf6\xff\x9e\xff\xaf" "\xff\x67\x69\xa6\xd6\xff\xe7\xee\xff\x6c\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x5c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x3e\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x10\xb7\x74\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff\xd5\xa4\xff\x1f\xa7\xff\x9f" "\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa8\xa9\xf5\xff\xb9\xfb\xbf\x18\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8a\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x4b\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xaf\x66\xff\x7f\x5c\xff\xaf\xff\xd7" "\xff\x0f\x9a\x4a\xff\x7f\xe1\x85\xf7\xbb\x45\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xde\x4d\xad\xff\xcf\xdd\xff\xe5\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\x95\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x6a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2d\x6e\xe9\x64\xff\x6f" "\xef\xff\xcf\x9b\x9d\x2d\x54\xcf\x1a\xea\xff\xa3\x51\xd3\xff\x6f\xa0\xff" "\xdf\xfc\xfe\xf5\xff\xc3\x3f\x3f\x06\xfb\xff\x7c\xf3\x9e\xff\xaf\xff\xd7" "\xff\x2f\xc4\x54\xfa\x7f\xcf\xff\xdf\xdf\xfb\xd7\xff\xeb\xff\x57\xf9\xfd" "\xef\xa9\xff\xbf\xd7\xf6\xcf\xd7\xff\xd3\xa2\xa9\xf5\xff\xb9\xfb\x6f\x89" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x8f\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x6f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xad" "\x71\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\x13\xeb\xff\x4f\x76\xd7\xff\xef\xf3" "\xf9\xff\x33\xfd\xbf\xfe\x5f\xff\x3f\x48\xff\x3f\x4e\xff\x3f\x87\xfe\x5f" "\xff\xef\xf9\xff\x97\x3d\xf0\x7f\xf4\xff\x2c\xce\xd4\xfa\xff\xdc\xfd\xdf" "\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xdf\x8a\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x6f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x77\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\x3f\xb1\xfe\xbf\xbf\xe7\xff\xeb\xff" "\xf5\xff\xfa\xff\x85\xd2\xff\x8f\xd3\xff\x97\xad\x3f\xb4\xb3\xfa\xe9\xff" "\x8f\x0f\x7d\x70\xd9\xfd\xfc\x41\x2d\xfb\xfd\x37\xd3\xff\x7b\xfe\x3f\x0b" "\x34\xb5\xfe\x3f\x77\xff\x77\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\xf7\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xfb\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\x83\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xb7\xdf" "\xff\x5f\xa2\xff\xdf\xf2\xfa\xfa\x7f\xfd\x7f\xcb\xf4\xff\xf9\x4f\xf4\x61" "\xfa\xff\x39\xfa\xe9\xff\x07\x2d\xbb\x9f\x5f\xf5\xf7\xaf\xff\xd7\xff\xb3" "\xdd\xd4\xfa\xff\xdc\xfd\xb7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee" "\xfe\x1f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8f\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xc7\x71\x4b\x27\xfb\x5f\xff\xdf\x57\xff\xbf" "\x36\xeb\xb1\xff\xf7\xfc\x7f\xfd\xbf\xfe\xbf\x27\xfa\xff\x71\xfa\xff\x39" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x85\x9a\x5a\xff\x9f\xbb\xff\xf6\xb5\xf5" "\x2e\xf7\x3f\x00\x00\x00\xac\xaa\x07\xdc\xe7\x21\xb7\xed\xf6\xfb\xde\x7e" "\xe6\x3f\x8f\xcf\x7e\x12\xb7\x5c\x34\x3b\xbd\xcb\x2f\x63\x03\x00\x00\x00" "\x13\x77\xf7\xee\x5f\x5b\x9f\xcd\x7e\x7a\xe6\x8f\x7c\xfd\x1f\x00\x00\x00" "\x5a\x94\xbb\xff\x67\x71\x4b\x27\xfb\x5f\xff\xdf\x57\xff\xdf\xe7\xf3\xff" "\xf5\xff\xfa\x7f\xfd\x7f\x4f\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x0b\x35\xb5\xfe\x3f\x77\xff\xcf\xe3\x96\x0d\xc3\x6f\x7d\xcf" "\x3f\x4a\x00\x00\x00\x60\x4a\x72\xf7\xff\x22\x6e\xe9\xe4\xeb\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\xbf\x8c\x5b\xb6\xed\x7f\xff\x3a\x40\x00\x00\x00\x58" "\x55\xb9\xfb\x7f\x15\xb7\x74\xf2\xf5\x7f\xfd\xff\xc4\xfb\xff\xd9\x21\xf5" "\xff\xf1\xfd\xf4\xff\x67\xe9\xff\xf5\xff\x43\xaf\xaf\xff\x5f\x4d\xfa\xff" "\x71\x07\xec\xff\x4f\xaf\xe9\xff\xf5\xff\x23\xf4\xff\xfa\x7f\xfd\x3f\x5b" "\x4d\xad\xff\xcf\xdd\xff\xeb\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x8d\xda\xf4" "\x2b\x0a\xb9\xfb\x7f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8d" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc5\x2d\x9d\xec\x7f\xfd\xff" "\x91\xf7\xff\x99\xaa\x1f\xe2\xf3\xff\x4f\xd4\xb7\x3c\xff\xbf\xf3\xfe\xff" "\xca\xe3\x83\xaf\xaf\xff\xd7\xff\xb7\x4c\xff\x3f\xce\xf3\xff\xe7\xd0\xff" "\xb7\xd2\xff\x9f\xaf\xff\xd7\xff\x33\x0d\x53\xeb\xff\x73\xf7\xdf\x11\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x7f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\xc6" "\x2d\x9d\xec\x7f\xfd\xff\xc4\x9f\xff\xbf\xaf\xfe\x7f\x17\xcf\xff\xd7\xff" "\xf7\xd1\xff\xef\xf0\xfa\xed\xf4\xff\xff\x7f\xc1\xa9\x9b\x2e\x7e\xd0\x75" "\xd7\xe8\xff\x39\xe7\x28\xfb\xff\xfc\xb9\xa0\xff\xd7\xff\xeb\xff\xcf\x9a" "\x50\xff\xef\xf9\xff\xfa\x7f\x26\x62\xf1\xfd\xff\xfa\xa6\x0f\xee\xb5\xff" "\xcf\xdd\xff\xa7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x67\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x39\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\xff\x12\xb7\x74\xb2\xff\xf5\xff\x3b\xf4\xff\xd9\xdf\xef\xee" "\x87\xa2\xff\xdf\xf2\xfe\xf7\xd3\xff\xe7\x7f\xd7\x4b\xe8\xff\x4f\xed\xbb" "\xff\x3f\x31\x9b\xcd\x96\xd2\xff\x67\x53\xdc\x7b\xff\xef\xf9\xff\xfa\xff" "\xed\x3c\xff\x7f\x9c\xfe\x7f\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa1\x16" "\xdf\xff\x6f\xfe\xe0\x5e\xfb\xff\xdc\xfd\x7f\x8d\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x7f\x8b\x5b\x72\xff\xaf\xed\xf9\x97\xee\x01\x00\x00" "\x80\x89\xc9\xdd\xff\xf7\xb8\xc5\xd7\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff" "\x11\xb7\x74\xb2\xff\xf5\xff\x9e\xff\x3f\x95\xfe\x3f\x79\xfe\xff\xb9\xcf" "\x6b\xeb\xf9\xff\x17\x57\x9c\xda\x67\xff\x7f\xcf\xfa\x96\xfe\xff\x70\xe9" "\xff\xc7\xe9\xff\xe7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x16\x6a\x6a\xfd\x7f" "\xee\xfe\x7f\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbb\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x5f\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xef\xb8\xa5\x93\xfd\xaf\xff\x6f\xb5\xff\xcf\x22\x5e\xff\xaf" "\xff\x9f\x4a\xff\xef\xf9\xff\x9e\xff\x7f\x34\xf4\xff\xe3\xf4\xff\x73\xb4" "\xd8\xff\x1f\xdb\xfd\x0f\x7f\xd9\xfd\xfc\x41\x2d\xfb\xfd\xeb\xff\xf5\xff" "\x6c\x37\xb5\xfe\x3f\x77\xff\x7f\x03\x00\x00\xff\xff\x64\xef\x63\xd0", 25145); syz_mount_image(/*fs=*/0x200000000100, /*dir=*/0x200000000000, /*flags=MS_STRICTATIME|MS_NOATIME*/ 0x1000400, /*opts=*/0x200000000380, /*chdir=*/0x29, /*size=*/0x6239, /*img=*/0x200000004180); // syz_mount_image$jfs arguments: [ // fs: ptr[in, buffer] { // buffer: {6a 66 73 00} (length 0x4) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 66 69 6c 65 31 00} (length 0x8) // } // flags: mount_flags = 0x1000400 (8 bytes) // opts: ptr[in, fs_options[jfs_options]] { // fs_options[jfs_options] { // elems: array[fs_opt_elem[jfs_options]] { // fs_opt_elem[jfs_options] { // elem: union jfs_options { // grpquota: buffer: {67 72 70 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // discard: buffer: {64 69 73 63 61 72 64} (length 0x7) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 36 33} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // uid: fs_opt["uid", fmt[hex, uid]] { // name: buffer: {75 69 64} (length 0x3) // eq: const = 0x3d (1 bytes) // val: uid (resource) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {63 70 38 36 36} (length 0x5) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // usrquota: buffer: {75 73 72 71 75 6f 74 61} (length 0x8) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // errors_continue: buffer: {65 72 72 6f 72 73 3d 63 6f 6e 74 69 // 6e 75 65} (length 0xf) // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // iocharset: fs_opt["iocharset", stringnoz[codepages_names]] { // name: buffer: {69 6f 63 68 61 72 73 65 74} (length 0x9) // eq: const = 0x3d (1 bytes) // val: buffer: {69 73 6f 38 38 35 39 2d 31} (length 0x9) // } // } // comma: const = 0x2c (1 bytes) // } // fs_opt_elem[jfs_options] { // elem: union jfs_options { // integrity: buffer: {69 6e 74 65 67 72 69 74 79} (length 0x9) // } // comma: const = 0x2c (1 bytes) // } // } // common: array[fs_opt_elem[fs_options_common]] { // } // null: const = 0x0 (1 bytes) // } // } // chdir: int8 = 0x29 (1 bytes) // size: len = 0x6239 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x6239) // } // ] // returns fd_dir memcpy((void*)0x200000000100, "jfs\000", 4); memcpy((void*)0x200000000000, "./file1\000", 8); memcpy((void*)0x200000000380, "grpquota", 8); *(uint8_t*)0x200000000388 = 0x2c; memcpy((void*)0x200000000389, "discard", 7); *(uint8_t*)0x200000000390 = 0x2c; memcpy((void*)0x200000000391, "iocharset", 9); *(uint8_t*)0x20000000039a = 0x3d; memcpy((void*)0x20000000039b, "cp863", 5); *(uint8_t*)0x2000000003a0 = 0x2c; memcpy((void*)0x2000000003a1, "uid", 3); *(uint8_t*)0x2000000003a4 = 0x3d; sprintf((char*)0x2000000003a5, "0x%016llx", (long long)0); *(uint8_t*)0x2000000003b7 = 0x2c; memcpy((void*)0x2000000003b8, "iocharset", 9); *(uint8_t*)0x2000000003c1 = 0x3d; memcpy((void*)0x2000000003c2, "cp866", 5); *(uint8_t*)0x2000000003c7 = 0x2c; memcpy((void*)0x2000000003c8, "usrquota", 8); *(uint8_t*)0x2000000003d0 = 0x2c; memcpy((void*)0x2000000003d1, "errors=continue", 15); *(uint8_t*)0x2000000003e0 = 0x2c; memcpy((void*)0x2000000003e1, "iocharset", 9); *(uint8_t*)0x2000000003ea = 0x3d; memcpy((void*)0x2000000003eb, "iso8859-1", 9); *(uint8_t*)0x2000000003f4 = 0x2c; memcpy((void*)0x2000000003f5, "integrity", 9); *(uint8_t*)0x2000000003fe = 0x2c; *(uint8_t*)0x2000000003ff = 0; memcpy( (void*)0x200000004180, "\x78\x9c\xec\xdd\xcb\x8e\x1c\x57\x19\x07\xf0\xaf\xfa\x36\x17\x13\xc7\xca" "\x22\x0a\x16\x42\x93\xc4\x5c\x42\x88\xaf\xc1\x18\x02\x24\x59\xc0\x82\x0d" "\x0b\xe4\x2d\xb2\x35\x99\x44\x16\x0e\x20\xdb\x20\x27\xb2\xf0\x44\xb3\x61" "\xc1\x43\x80\x90\x58\x22\xc4\x92\x15\x0f\x90\x05\x5b\x76\x3c\x00\x96\x6c" "\x24\x50\x16\x28\x85\x6a\xe6\x9c\x71\x4d\xa5\x7b\x7a\xc6\xf6\x74\x75\xbb" "\x7e\x3f\x69\x5c\xf5\xf5\xa9\x9a\x3e\xe5\x7f\x57\x5f\xa6\xaa\xfa\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\x10\x3f\xfc\xc1\x8f\xcf" "\x15\x11\x71\xe5\x57\xe9\x86\x13\x11\x9f\x8b\x7e\x44\x2f\x62\xa5\xaa\xd7" "\x22\x62\x65\xed\x44\x7d\x9d\x17\x62\xbb\x39\x9e\x8f\x88\xe1\x52\x44\xb5" "\xfe\xf6\x3f\xcf\x46\xbc\x1e\x11\x1f\x1f\x8f\xb8\xff\xe0\xce\x7a\x75\xf3" "\xf9\x03\xf6\xe3\xfb\x7f\xfe\xc7\x1f\x7e\x72\xec\x47\x7f\xff\xd3\xf0\xcc" "\x7f\xff\x72\xab\xff\xc6\xa4\xe5\x6e\xdf\xfe\xed\x7f\xfe\x7a\xf7\xd1\xb7" "\x17\x00\x00\x00\xba\xa8\x2c\xcb\xb2\x48\x1f\xf3\x4f\x46\xc4\x20\x7d\xb6" "\x07\x00\x9e\x7e\xf9\xf5\xbf\x4c\xf2\xed\xea\xb9\xab\x37\xe7\xac\x3f\x6a" "\xb5\x5a\xad\x5e\xc0\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa\x3a\xd5\x7b" "\x06\x87\xe3\x01\x60\xc1\x6c\xc6\x27\x6d\x77\x81\x16\xc9\xbf\xd3\x06\x11" "\x71\xac\xed\x4e\x00\x73\xad\x68\xbb\x03\x1c\x89\xfb\x0f\xee\xac\x17\x29" "\xdf\xa2\xfe\x7a\xb0\xb6\xd3\x9e\xcf\x05\xd9\x93\xff\x66\xb1\x7b\x7d\xc7" "\xa4\xe9\x34\xcd\x73\x4c\x66\xf5\xf8\xda\x8a\x7e\x3c\x37\xa1\x3f\x2b\x33" "\xea\xc3\x3c\xc9\xf9\xf7\x9a\xf9\x5f\xd9\x69\x1f\xa5\xe5\x8e\x3a\xff\x59" "\x99\x94\xff\x68\xe7\xd2\xa7\xce\xc9\xf9\xf7\x9b\xf9\x37\x3c\x3d\xf9\xf7" "\xc6\xe6\xdf\x55\x39\xff\xc1\xa1\xf2\xef\xcb\x1f\x00\x00\x00\x00\x00\xe6" "\x58\xfe\xfb\xff\x89\x96\x8f\xff\x2e\x3d\xfe\xa6\x1c\xc8\x7e\xc7\x7f\xd7" "\x66\xd4\x07\x00\x00\x00\x00\x00\x00\x00\x78\xd2\x0e\x3b\xfe\xdf\xa0\x31" "\xfe\xdf\x2e\xe3\xff\x01\x00\x00\xc0\xdc\xaa\x3e\xab\x57\x7e\x77\xfc\xe1" "\x6d\x93\xbe\x8b\xad\xba\xfd\x72\x11\xf1\x4c\x63\x79\xa0\x63\xd2\xc5\x32" "\xab\x6d\xf7\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xba\x64\xb0\x73" "\x0e\xef\xe5\x22\x62\x18\x11\xcf\xac\xae\x96\x65\x59\xfd\xd4\x35\xeb\xc3" "\x7a\xdc\xf5\x17\x5d\xd7\xb7\x1f\xba\xac\xed\x27\x79\x00\x00\xd8\xf1\xf1" "\xf1\xc6\xb5\xfc\x45\xc4\x72\x44\x5c\x4e\xdf\xf5\x37\x5c\x5d\x5d\x2d\xcb" "\xe5\x95\xd5\x72\xb5\x5c\x59\xca\xef\x67\x47\x4b\xcb\xe5\x4a\xed\x73\x6d" "\x9e\x56\xb7\x2d\x8d\x0e\xf0\x86\x78\x30\x2a\xab\x5f\xb6\x5c\x5b\xaf\x6e" "\xda\xe7\xe5\x69\xed\xcd\xdf\x57\xdd\xd7\xa8\xec\x1f\xa0\x63\xb3\xd1\x62" "\xe0\x00\x10\x11\x3b\xaf\x46\xf7\x27\xbd\x22\xfd\xcf\xeb\xd5\x62\x2a\xcb" "\x67\xa3\xe5\x37\x39\x2c\x88\x7d\xf6\x7f\x16\x94\xfd\x9f\x83\x68\xfb\x71" "\x0a\x00\x00\x00\x1c\xbd\xb2\x2c\xcb\x22\x7d\x9d\xf7\xc9\x74\xcc\xbf\xd7" "\x76\xa7\x00\x80\x99\xc8\xaf\xff\xcd\xe3\x02\x6a\xb5\x5a\xad\x56\xab\x9f" "\xbe\xba\xae\x1c\xef\x6e\xbd\x88\x88\xcd\xfa\x3a\xd5\x7b\x06\xc3\xf1\x03" "\xc0\x82\xd9\x8c\x4f\xda\xee\x02\x2d\x92\x7f\xa7\x0d\x22\xe2\x85\xb6\x3b" "\x01\xcc\xb5\xa2\xed\x0e\x70\x24\xee\x3f\xb8\xb3\x5e\xa4\x7c\x8b\xfa\xeb" "\x41\x1a\xdf\x3d\x9f\x0b\xb2\x27\xff\xcd\x62\x7b\xbd\xbc\xfe\xb8\xe9\x34" "\xcd\x73\x4c\x66\xf5\xf8\xda\x8a\x7e\x3c\x37\xa1\x3f\xcf\xcf\xa8\x0f\xf3" "\x24\xe7\xdf\x6b\xe6\x7f\x65\xa7\x7d\x94\x96\x7b\xfc\xfc\xcb\x3d\x7f\x26" "\x6c\xeb\x1c\xa3\x49\xf9\x57\xdb\x79\xa2\x85\xfe\xb4\x2d\xe7\xdf\x6f\xe6" "\xdf\x70\xd4\xfb\xff\xac\x6c\x45\x6f\x6c\xfe\x5d\x95\xf3\x1f\x1c\x2a\xff" "\xbe\xfc\x01\x00\x00\x00\x00\x60\x8e\xe5\xbf\xff\x9f\x98\xab\xe3\xbf\xa3" "\x47\xdd\x9c\xa9\xf6\x3b\xfe\xbb\x36\x76\x8d\xa3\xeb\x0b\x00\x00\x00\x00" "\x00\x00\x00\x3c\x29\xf7\x1f\xdc\x59\xcf\xd7\xbd\xe6\xe3\xff\x5f\x18\xb3" "\x9c\xeb\x3f\x9f\x4e\x39\xff\x42\xfe\x9d\x94\xf3\xef\x35\xf2\xff\x6a\x63" "\xb9\x7e\x6d\xfe\xde\xdb\x0f\xf3\xff\xf7\x83\x3b\xeb\x7f\xbc\xf5\xaf\xcf" "\xe7\xe9\x41\xf3\x5f\xca\x33\x45\x7a\x64\x15\xe9\x11\x51\xa4\x7b\x2a\x06" "\x69\xfa\x38\x5b\xf7\x59\x5b\xc3\xfe\xa8\xba\xa7\x61\xd1\xeb\x0f\xd2\x39" "\x3f\xe5\xf0\xdd\xb8\x16\xd7\x63\x23\xce\xee\x59\xb6\x97\xfe\x3f\x1e\xb6" "\x9f\xdb\xd3\x5e\xf5\x74\xb8\xdd\x5e\xf6\x77\xda\xcf\xef\x69\x1f\xec\xb6" "\xe7\xf5\x2f\xec\x69\x1f\xa6\xb3\x8b\xca\x95\xdc\x7e\x3a\xd6\xe3\xe7\x71" "\x3d\xde\xd9\x6e\xaf\xda\x96\xa6\x6c\xff\xf2\x94\xf6\x72\x4a\x7b\xce\xbf" "\x6f\xff\xef\xa4\x9c\xff\xa0\xf6\x53\xe5\xbf\x9a\xda\x8b\xc6\xb4\x72\xef" "\xa3\xde\x67\xf6\xfb\xfa\x74\xdc\xfd\xbc\x75\xed\x8b\xbf\x39\x7b\xf4\x9b" "\x33\xd5\x56\xf4\x77\xb7\xad\xae\xda\xbe\x97\x5a\xe8\xcf\xf6\xff\xc9\xb1" "\x51\xfc\xf2\xe6\xc6\x8d\xd3\xb7\xaf\xde\xba\x75\xe3\x5c\xa4\xc9\x9e\x5b" "\xcf\x47\x9a\x3c\x61\x39\xff\x61\xfa\xd9\x7d\xfe\x7f\x79\xa7\x3d\x3f\xef" "\xd7\xf7\xd7\x7b\x1f\x8d\x0e\x9d\xff\xbc\xd8\x8a\xc1\xc4\xfc\x5f\xae\xcd" "\x57\xdb\xfb\xca\x8c\xfb\xd6\x86\x9c\xff\x28\xfd\xe4\xfc\xdf\x49\xed\xe3" "\xf7\xff\x45\xce\x7f\xf2\xfe\xff\x6a\x0b\xfd\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x80\xfd\x94\x65\xb9\x7d\x89\xe8\x5b\x11\x71\x31\x5d" "\xff\xd3\xd6\xb5\x99\x00\xc0\x6c\xe5\xd7\xff\x32\xc9\xb7\xcf\xaa\xee\xcf" "\xf8\xfe\xd4\xea\x05\xaf\x8b\x39\xeb\xcf\x4c\xeb\x4f\xcb\xf9\xea\x8f\x5a" "\xbd\x88\x75\x5d\x39\xde\x9b\xf5\x22\x22\xfe\x56\x5f\xa7\x7a\xcf\xf0\xeb" "\x71\xbf\x0c\x00\x98\x67\x9f\x46\xc4\x3f\xdb\xee\x04\xad\x91\x7f\x87\xe5" "\xef\xfb\xab\xa6\xa7\xda\xee\x0c\x30\x53\x37\x3f\xf8\xf0\xa7\x57\xaf\x5f" "\xdf\xb8\x71\xb3\xed\x9e\x00\x00\x00\x00\x00\x00\x00\x00\x8f\x2a\x8f\xff" "\xb9\x56\x1b\xff\xf9\x54\x59\x96\x77\x1b\xcb\xed\x19\xff\xf5\xed\x58\x7b" "\xdc\xf1\x3f\x07\x79\x66\x77\x80\xd1\x09\x03\x55\xf7\x0f\xbf\x4d\xfb\xd9" "\xea\x8d\xfa\xbd\xda\x70\xe3\x2f\xc6\xa4\xf1\xbf\x87\xbb\x73\xfb\x8d\xff" "\x3d\x98\x72\x7f\xc3\x29\xed\xa3\x29\xed\x4b\x53\xda\x97\xa7\xb4\x8f\xbd" "\xd0\xa3\x26\xe7\xff\x62\x6d\xbc\xf3\x53\x11\x71\xb2\x31\xfc\x7a\x17\xc6" "\x7f\x6d\x8e\x79\xdf\x05\x39\xff\x97\x6a\x8f\xe7\x2a\xff\xaf\x34\x96\xab" "\xe7\x5f\xfe\x7e\x91\xf3\xef\xed\xc9\xff\xcc\xad\xf7\x7f\x71\xe6\xe6\x07" "\x1f\xbe\x76\xed\xfd\xab\xef\x6d\xbc\xb7\xf1\xb3\x0b\xe7\xce\x9d\xbd\x70" "\xf1\xe2\xa5\x4b\x97\xce\xbc\x7b\xed\xfa\xc6\xd9\x9d\x7f\x5b\xec\xf1\xd1" "\xca\xf9\xe7\xb1\xaf\x9d\x07\xda\x2d\x39\xff\x9c\xb9\xfc\xbb\x25\xe7\xff" "\xa5\x54\xcb\xbf\x5b\x72\xfe\x5f\x4e\xb5\xfc\xbb\x25\xe7\x9f\xdf\xef\xc9" "\xbf\x5b\x72\xfe\xf9\xb3\x8f\xfc\xbb\x25\xe7\xff\x4a\xaa\xe5\xdf\x2d\x39" "\xff\xaf\xa5\x5a\xfe\xdd\x92\xf3\x7f\x35\xd5\xf2\xef\x96\x9c\xff\xd7\x53" "\x2d\xff\x6e\xc9\xf9\xbf\x96\x6a\xf9\x77\x4b\xce\xff\x74\xaa\xe5\xdf\x2d" "\x39\xff\x33\xa9\x3e\x60\xfe\x2b\x47\xdd\x2f\x66\x23\xe7\x9f\x8f\x70\xd9" "\xff\xbb\x25\xe7\x9f\xcf\x6c\x90\x7f\xb7\xe4\xfc\xcf\xa7\x5a\xfe\xdd\x92" "\xf3\xbf\x90\x6a\xf9\x77\x4b\xce\xff\xf5\x54\xcb\xbf\x5b\x72\xfe\xdf\x48" "\xb5\xfc\xbb\x25\xe7\x7f\x31\xd5\xf2\xef\x96\x9c\xff\x37\x53\x2d\xff\x6e" "\xc9\xf9\x5f\x4a\xb5\xfc\xbb\x25\xe7\xff\xad\x54\xcb\xbf\x5b\x72\xfe\xdf" "\x4e\xb5\xfc\xbb\x25\xe7\xff\x46\xaa\xe5\xdf\x2d\x39\xff\xef\xa4\x5a\xfe" "\xdd\x92\xf3\xff\x6e\xaa\xe5\xdf\x2d\x39\xff\xef\xa5\x5a\xfe\xdd\x92\xf3" "\x7f\x33\xd5\xf2\xef\x96\x87\xdf\xff\x6f\xc6\x8c\x19\x33\x79\xa6\xed\x67" "\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x69\x16\xa7\x13\xb7\xbd" "\x8d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xff\xd9\x81\x03\x01\x00" "\x00\x00\x00\x20\xff\xd7\x46\xa8\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa" "\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xaa\xc2" "\x0e\x1c\x08\x00\x00\x00\x00\x00\xf9\xbf\x36\x42\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55\x55" "\x55\x55\x55\x15\xf6\xee\x2e\x46\xae\xb3\xbe\x1f\xf8\x99\x7d\xf3\xda\x81" "\xc4\x40\xc8\xdf\xc9\xdf\xc0\xc6\x31\x21\x38\x9b\xec\xfa\x25\x7e\xa1\x75" "\x31\xe1\xb5\xe1\xad\x04\x42\xa1\x2f\xd8\xae\x77\x6d\x16\xfc\x86\xd7\x2e" "\x81\x46\xb2\x69\xa0\x44\xc2\xa8\xa8\xa2\x6d\xb8\x68\x0b\x08\xb5\xb9\xa9" "\xf0\x05\x17\xb4\x02\x94\x0b\xd4\x0a\xa9\x12\xb4\x17\xf4\x06\x51\xa1\x72" "\x11\x55\x01\x05\xa4\x4a\xb4\x82\x6c\x35\xe7\x3c\xcf\xb3\x33\xb3\xb3\x33" "\xbb\xf6\x7a\x7d\xe6\x9c\xcf\x47\x8a\x7f\xde\x99\x33\x73\xce\x9c\x39\x33" "\xbb\xdf\x75\xbe\x73\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x75\xe7\xeb\x67\x3f\xdd\xc8\xb2\xac\xf9\x5f\xfe\xc7\xe6\x2c\x7b\x41" "\xf3\xef\x1b\x27\x36\xe7\x97\xbd\xe6\x46\x6f\x21\x00\x00\x00\x70\xad\x7e" "\x95\xff\xf9\xdc\x2d\xe9\x82\x43\x2b\xb8\x51\xcb\x32\xff\xfc\xf2\xef\x7e" "\x6d\x61\x61\x61\x21\x7b\xdf\xf0\x9f\x8f\x7e\x7e\x61\x21\x5d\x31\x91\x65" "\xa3\x1b\xb2\x2c\xbf\x2e\xba\xf2\xa3\xf7\x37\x5a\x97\x09\x1e\xcf\xc6\x1b" "\x43\x2d\x5f\x0f\xf5\x59\xfd\x70\x9f\xeb\x47\xfa\x5c\x3f\xda\xe7\xfa\xb1" "\x3e\xd7\x6f\xe8\x73\xfd\x78\x9f\xeb\x97\xec\x80\x25\x36\x16\xbf\x8f\xc9" "\xef\x6c\x7b\xfe\xd7\xcd\xc5\x2e\xcd\x6e\xcd\x46\xf3\xeb\xb6\x77\xb9\xd5" "\xe3\x8d\x0d\x43\x43\xf1\x77\x39\xb9\x46\x7e\x9b\x85\xd1\xe3\xd9\x5c\x76" "\x32\x9b\xcd\xa6\xdb\x96\x2f\x96\x6d\xe4\xcb\x7f\xe3\xce\xe6\xba\xde\x92" "\xc5\x75\x0d\xb5\xac\x6b\x6b\xf3\x08\xf9\xd9\x63\xc7\xe2\x36\x34\xc2\x3e" "\xde\xde\xb6\xae\xc5\xfb\x8c\x7e\xf2\xba\x6c\xe2\xe7\x3f\x7b\xec\xd8\xdf" "\x9e\x7f\xf6\xf6\x6e\xb3\xef\x6e\x68\xbb\xbf\x62\x3b\xef\xd9\xd6\xdc\xce" "\x4f\x86\x4b\x8a\x6d\x6d\x64\x1b\xd2\x3e\x89\xdb\x39\xd4\xb2\x9d\x5b\xbb" "\x3c\x27\xc3\x6d\xdb\xd9\xc8\x6f\xd7\xfc\x7b\xe7\x76\x3e\xb7\xc2\xed\x1c" "\x5e\xdc\xcc\x75\xd5\xf9\x9c\x8f\x67\x43\xf9\xdf\xbf\x97\xef\xa7\x91\xd6" "\x5f\xeb\xa5\xfd\xb4\x35\x5c\xf6\x8b\xbb\xb2\x2c\xbb\xb4\xb8\xd9\x9d\xcb" "\x2c\x59\x57\x36\x94\x6d\x6a\xbb\x64\x68\xf1\xf9\x19\x2f\x8e\xc8\xe6\x7d" "\x34\x0f\xa5\x17\x67\x23\xab\x3a\x4e\xef\x5c\xc1\x71\xda\x9c\x33\xdb\xdb" "\x8f\xd3\xce\xd7\x44\x7c\xfe\xef\x0c\xb7\x1b\x59\x66\x1b\x5a\x9f\xa6\x9f" "\x7c\x62\xac\xe5\x79\xff\xe5\xc2\xd5\x1c\xa7\x51\xf3\x51\x2f\xf7\x5a\xe9" "\x3c\x06\xd7\xfa\xb5\x52\x96\x63\x30\x1e\x17\xdf\xcb\x1f\xf4\x13\x5d\x8f" "\xc1\xed\xe1\xf1\x3f\x76\xf7\xf2\xc7\x60\xd7\x63\xa7\xcb\x31\x98\x1e\x77" "\xcb\x31\xb8\xad\xdf\x31\x38\x34\x36\x9c\x6f\x73\x7a\x12\x1a\xf9\x6d\x16" "\x8f\xc1\x9d\x6d\xcb\x0f\xe7\x6b\x6a\xe4\xf3\x99\xbb\x7b\x1f\x83\x53\xe7" "\x4f\x9d\x9d\x9a\xff\xd8\xc7\xef\x9b\x3b\x75\xf4\xc4\xec\x89\xd9\xd3\xbb" "\x77\xee\x9c\xde\xbd\x77\xef\xfe\xfd\xfb\xa7\x8e\xcf\x9d\x9c\x9d\x2e\xfe" "\xbc\xca\xbd\x5d\x7e\x9b\xb2\xa1\xf4\x1a\xd8\x16\xf6\x5d\x7c\x0d\xbc\xaa" "\x63\xd9\xd6\x43\x75\xe1\x4b\x63\x4b\xde\x7f\xaf\xf6\x75\x38\xde\xe3\x75" "\xb8\xb9\x63\xd9\xb5\x7e\x1d\x8e\x74\x3e\xb8\xc6\xfa\xbc\x20\x97\x1e\xd3" "\xc5\x6b\xe3\x3d\xcd\x9d\x3e\x7e\x79\x28\x5b\xe6\x35\x96\x3f\x3f\x3b\xae" "\xfd\x75\x98\x1e\x77\xcb\xeb\x70\xa4\xe5\x75\xd8\xf5\x7b\x4a\x97\xd7\xe1" "\xc8\x0a\x5e\x87\xcd\x65\xce\xee\x58\xd9\xcf\x2c\x23\x2d\xff\x75\xdb\x86" "\xe5\xbf\x17\x5c\xdb\x31\xb8\xb9\xe5\x18\xec\xfc\x79\xa4\xf3\x18\x5c\xeb" "\x9f\x47\xca\x72\x0c\x8e\x87\xe3\xe2\x07\x3b\x96\xff\x5e\xb0\x35\x6c\xef" "\x13\x93\xab\xfd\x79\x64\x78\xc9\x31\x98\x1e\x6e\x78\xef\x69\x5e\x92\x7e" "\xde\x1f\xdf\x9f\x8f\x6e\xc7\xe5\x1d\xcd\x2b\x6e\x1a\xcb\x2e\xcc\xcf\x9e" "\xbb\xff\xd1\xa3\xe7\xcf\x9f\xdb\x99\x85\xb1\x2e\x5e\xd2\x72\xac\x74\x1e" "\xaf\x9b\x5a\x1e\x53\xb6\xe4\x78\x1d\x5a\xf5\xf1\x7a\x68\xee\xe5\x4f\xdc" "\xd1\xe5\xf2\xcd\x61\x5f\x8d\xdf\xd7\xfc\x63\x7c\xd9\xe7\xaa\xb9\xcc\x9e" "\xfb\x7b\x3f\x57\xf9\x77\xb7\xee\xfb\xb3\xed\xd2\x5d\x59\x18\x6b\x6c\xbd" "\xf7\x67\xb7\xef\xe6\xcd\xfd\x39\x96\x65\x5f\xf8\xf6\x27\x1e\xfe\xe6\x63" "\x5f\x78\xfd\xb2\xfb\xb3\x99\x37\x3f\x39\x75\xed\x3f\x8b\xa7\x5c\xda\xf2" "\xfe\x3b\xba\xcc\xfb\x6f\xcc\xfd\xcf\x17\xeb\x4b\x77\xf5\xf8\xf0\xe8\x48" "\xf1\xfa\x1d\x4e\x7b\x67\xb4\xed\xfd\xb8\xfd\xa9\x1a\xc9\xdf\xbb\x1a\xf9" "\xba\x9f\x9b\x5a\xd9\xfb\xf1\x68\xf8\x6f\xbd\xdf\x8f\x6f\xed\xf1\x7e\xbc" "\xa5\x63\xd9\xb5\x7e\x3f\x1e\xed\x7c\x70\xf1\xfd\xb8\xd1\xef\xb7\x1d\xd7" "\xa6\xf3\xf9\x1c\x0f\xc7\xc9\xc9\xe9\xde\xef\xc7\xcd\x65\xb6\xec\x5a\xed" "\x31\x39\xd2\xf3\xfd\xf8\xae\x30\x1b\x61\xff\xbf\x3a\x24\x85\x94\x8b\x5a" "\x8e\x9d\xe5\x8e\xdb\xb4\xae\x91\x91\xd1\xf0\xb8\x46\xe2\x1a\xda\x8f\xd3" "\xdd\x6d\xcb\x8f\x86\x6c\xd6\x5c\xd7\x53\xbb\xc2\x0f\x85\x69\x2b\x57\x76" "\x9c\xde\x73\x57\xb1\xfc\x70\xcb\xed\xa2\xf5\x3a\x4e\x27\x3a\x96\x5d\xeb" "\xe3\x34\xfd\xee\x6b\xb9\xe3\xb4\xd1\xef\xb7\x6f\x57\xa7\xf3\xf9\x1c\x0f" "\xc7\xc5\xad\xbb\x7b\x1f\xa7\xcd\x65\x9e\xde\x73\xed\xef\x9d\x1b\xe3\x5f" "\x5b\xde\x3b\xc7\xfa\x1d\x83\xa3\xc3\x63\xcd\x6d\x1e\x4d\x07\x61\xfe\x7e" "\x9f\x2d\x6c\x8c\xc7\xe0\xfd\xd9\xb1\xec\x4c\x76\x32\x9b\xc9\xaf\x1d\xcb" "\x8f\xa7\x46\xbe\xae\xc9\x07\x56\xf6\x5e\x39\x16\xfe\x5b\xef\xf7\xca\x2d" "\x3d\x8e\xc1\x7b\x3a\x96\x5d\xeb\x63\x30\x7d\x1f\x5b\xee\xd8\x6b\x8c\x2c" "\x7d\xf0\x6b\xa0\xf3\xf9\x1c\x0f\xc7\xc5\x93\x0f\xf4\x3e\x06\x9b\xcb\xbc" "\x61\xdf\xda\xfe\xec\x7a\x4f\xb8\x24\x2d\xd3\xf2\xb3\x6b\xe7\xef\xd7\x96" "\xfb\x9d\xd7\x1d\x1d\xbb\xe9\x7a\x1d\x2b\x23\x61\x3b\xbf\xbd\xaf\xf7\xef" "\x66\x9b\xcb\x9c\xdc\xbf\xda\x9c\xd9\x7b\x3f\xdd\x1b\x2e\xb9\xa9\xcb\x7e" "\xea\x7c\xfd\x2e\xf7\x9a\x9a\xc9\xd6\x67\x3f\x6d\x09\xdb\xf9\xec\xfe\xe5" "\xf7\x53\x73\x7b\x9a\xcb\x7c\xfe\xc0\x0a\x8f\xa7\x43\x59\x96\x5d\xfc\xc8" "\x83\xf9\xef\x7b\xc3\xbf\xaf\x5c\xbc\xf0\xfd\xaf\xb5\xfd\xbb\x4b\xb7\x7f" "\xd3\xb9\xf8\x91\x07\x7f\xfa\xc2\xe3\xff\xb4\x9a\xed\x07\x60\xf0\x3d\x5f" "\x8c\x4d\xc5\xf7\xba\x96\x7f\x99\x5a\xc9\xbf\xff\x03\x00\x00\x00\x03\x21" "\xe6\xfe\xa1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xf8\x7f\x85\x27" "\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x23\x61\x26\x55\xc8\xff\x7f\xdc\x7f" "\x91\x2d\x6f\x78\x76\xee\xf9\x8b\x59\x6a\xe6\x2f\x04\xf1\xfa\xb4\x1b\x1e" "\x2a\x96\x8b\x1d\xd7\xe9\xf0\xf5\xc4\xc2\xa2\xe6\xe5\x0f\x7e\x65\xf6\xbf" "\xff\xf1\xe2\xca\x36\x6f\x28\xcb\xb2\x5f\x3e\xf4\x47\x5d\x97\xdf\xf2\x50" "\xdc\xae\xc2\x44\xd8\xce\x2b\x6f\x6c\xbf\x7c\x89\xaf\xdd\xb7\xa2\x75\x1f" "\x79\xe4\x62\x5a\x6f\x6b\x7f\xfd\x8b\xe1\xfe\xe3\xe3\x59\xe9\x61\xd0\xad" "\x82\x3b\x9d\x65\xd9\x37\x6e\xf9\x6c\xbe\x9e\x89\xf7\x5f\xce\xe7\xd3\x0f" "\x1d\xc9\xe7\xc3\x97\x9e\x78\xbc\xb9\xcc\x73\x07\x8a\xaf\xe3\xed\x9f\x79" "\x49\xb1\xfc\x5f\x85\xf2\xef\xa1\xe3\x47\xdb\x6e\xff\x4c\xd8\x0f\x3f\x0e" "\x73\xfa\xad\xdd\xf7\x47\xbc\xdd\x57\x2f\xbf\x7a\xeb\xbe\xf7\x2e\xae\x2f" "\xde\xae\xb1\xed\xe6\xfc\x61\x3f\xf9\x81\xe2\x7e\xe3\xe7\xe4\x7c\xee\xf1" "\x62\xf9\xb8\x9f\x97\xdb\xfe\x6f\x7e\xe6\xa9\xaf\x36\x97\x7f\xf4\x95\xdd" "\xb7\xff\xe2\x50\xf7\xed\x7f\x2a\xdc\xef\x57\xc2\xfc\x9f\x97\x15\xcb\xb7" "\x3e\x07\xcd\xaf\xe3\xed\x3e\x15\xb6\x3f\xae\x2f\xde\xee\xfe\x2f\x7f\xab" "\xeb\xf6\x5f\xf9\x74\xb1\xfc\xd9\x37\x15\xcb\x1d\x09\x33\xae\xff\x9e\xf0" "\xf5\xf6\x37\x3d\x3b\xd7\xba\xbf\x1e\x6d\x1c\x6d\x7b\x5c\xd9\x9b\x8b\xe5" "\xe2\xfa\xa7\xbf\xff\xa7\xf9\xf5\xf1\xfe\xe2\xfd\x77\x6e\xff\xf8\xe1\xcb" "\x6d\xfb\xa3\xf3\xf8\x78\xfa\xdf\x8a\xfb\x99\xea\x58\x3e\x5e\x1e\xd7\x13" "\xfd\x43\xc7\xfa\x9b\xf7\xd3\x7a\x7c\xc6\xf5\x3f\xf5\x27\x47\xda\xf6\x73" "\xbf\xf5\x5f\x79\xf8\x99\x97\x35\xef\xb7\x73\xfd\xf7\x76\x2c\x77\xf6\x23" "\x3b\xf2\xf5\x2f\xde\x5f\xfb\x27\x36\xfd\xf5\xa7\x3e\xdb\x75\x7d\x71\x7b" "\x0e\xfd\xfd\xd9\xb6\xc7\x73\xe8\x5d\xe1\x75\x1c\xd6\xff\xe4\x07\xc2\xf1" "\x18\xae\xff\xdf\x2b\xc5\xfd\x75\x7e\xba\xc2\x91\x77\xb5\xbf\xff\xc4\xe5" "\xbf\xb8\xf9\x62\xdb\xe3\x89\xde\xf2\xf3\x62\xfd\x57\x5e\x7b\x22\x9f\x1b" "\xc6\x37\x6e\xba\xe9\x05\x2f\xbc\xf9\xd2\x2b\x9a\xfb\x2e\xcb\xbe\xb7\xa1" "\xb8\xbf\x7e\xeb\x3f\xf1\x37\x67\xda\xb6\xff\x4b\xb7\x15\xfb\x23\x5e\x1f" "\x3b\xfa\x9d\xeb\x5f\x4e\x5c\xff\xb9\x8f\x4e\x9e\x3e\x33\x7f\x61\x6e\x26" "\xed\xd5\xc7\x6e\xc9\x3f\x3b\xe7\x6d\xc5\xf6\xc4\xed\xbd\x25\xbc\xb7\x76" "\x7e\x7d\xf8\xcc\xf9\x0f\xce\x9e\x9b\x98\x9e\x98\xce\xb2\x89\xea\x7e\x84" "\xde\x55\xfb\x72\x98\x3f\x2d\xc6\xa5\xde\x4b\x2f\x2c\x79\x07\xdd\xf1\x48" "\x78\x3e\xef\xf8\xcb\x6f\x6c\xba\xfb\x5f\x3f\x13\x2f\xff\xf7\xf7\x14\x97" "\x5f\x7e\x6b\xf1\x7d\xeb\x55\x61\xb9\xcf\x85\xcb\x37\x87\xe7\x6f\x75\xeb" "\x5f\xea\xc9\x3b\x6f\xcb\x5f\xdf\x8d\xa7\xc3\x16\x2e\x2c\xfd\xbc\xe0\x6b" "\xb1\x75\xfb\x7f\xed\x5f\xd1\x82\xe1\xf1\x77\xfe\x5c\x10\x8f\xf7\xb3\x2f" "\xfd\x60\xbe\x1f\x9a\xd7\xe5\xdf\x37\xe2\xeb\xfa\x1a\xb7\xff\x87\x33\xc5" "\xfd\x7c\x3d\xec\xd7\x85\xf0\xc9\xcc\xdb\x6e\x5b\x5c\x5f\xeb\xf2\xf1\xb3" "\x11\x2e\xbf\xbb\x78\xbd\x5f\xf3\xfe\x0b\x6f\x73\xf1\x79\xfd\xbb\xf0\x7c" "\xbf\xfd\xc7\xc5\xfd\xc7\xed\x8a\x8f\xf7\x87\xe1\xe7\x98\x6f\x6d\x69\x7f" "\xbf\x8b\xc7\xc7\xd7\x2f\x0e\x75\xde\x7f\xfe\x29\x1e\x97\xc2\xfb\x49\x76" "\xa9\xb8\x3e\x2e\x15\xf7\xf7\xe5\xe7\x6e\xeb\xba\x79\xf1\x73\x48\xb2\x4b" "\xb7\xe7\x5f\xff\x59\xba\x9f\xdb\x57\xf5\x30\x97\x33\xff\xb1\xf9\xa9\x93" "\x73\xa7\x2f\x3c\x3a\x75\x7e\x76\xfe\xfc\xd4\xfc\xc7\x3e\x7e\xf8\xd4\x99" "\x0b\xa7\xcf\x1f\xce\x3f\xcb\xf3\xf0\x87\xfa\xdd\x7e\xf1\xfd\x69\x53\xfe" "\xfe\x34\x33\xbb\x77\x4f\x96\xbf\x5b\x9d\x29\xc6\x75\x76\xa3\xb7\xff\xec" "\x23\xc7\x66\xf6\x4d\xdf\x3d\x33\x7b\xfc\xe8\x85\xe3\xe7\x1f\x39\x3b\x7b" "\xee\xc4\xb1\xf9\xf9\x63\xb3\x33\xf3\x77\x1f\x3d\x7e\x7c\xf6\xa3\xfd\x6e" "\x3f\x37\x73\x70\xe7\xae\x03\xbb\xf7\xed\x9a\x3c\x31\x37\x73\x70\xff\x81" "\x03\xbb\x0f\x4c\xce\x9d\x3e\xd3\xdc\x8c\x62\xa3\xfa\xd8\x3b\xfd\xe1\xc9" "\xd3\xe7\x0e\xe7\x37\x99\x3f\xb8\xe7\xc0\xce\x07\x1e\xd8\x33\x3d\x79\xea" "\xcc\xcc\xec\xc1\x7d\xd3\xd3\x93\x17\xfa\xdd\x3e\xff\xde\x34\xd9\xbc\xf5" "\x1f\x4e\x9e\x9b\x3d\x79\xf4\xfc\xdc\xa9\xd9\xc9\xf9\xb9\x8f\xcf\x1e\xdc" "\x79\x60\xef\xde\x5d\x7d\x3f\x0d\xf0\xd4\xd9\xe3\xf3\x13\x53\xe7\x2e\x9c" "\x9e\xba\x30\x3f\x7b\x6e\xaa\x78\x2c\x13\xe7\xf3\x8b\x9b\xdf\xfb\xfa\xdd" "\x9e\x6a\x9a\xff\x8f\xe2\xe7\xd9\x4e\x8d\xe2\x83\xf8\xb2\x77\xde\xbb\x37" "\x7d\x3e\x6b\xd3\x57\x3e\xb1\xec\x5d\x15\x8b\x74\x7c\x80\xe8\xb3\xe1\xb3" "\x68\xbe\xf3\xa2\xb3\xfb\x57\xf2\x75\xcc\xfd\xa3\x61\x26\x55\xc8\xff\x00" "\x00\x00\x40\x2e\xe6\xfe\xb1\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe" "\x0d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xe3\x61\xa6\xff\x25\xa0" "\x26\xf9\xbf\x72\xfd\xff\x2d\x17\xfb\xac\x3f\x36\x4b\xf4\xff\x33\xfd\xff" "\x44\xff\xbf\x66\xfd\xff\x77\x97\xad\xff\x5f\xbc\x5f\xe8\xff\xaf\x8d\x6b" "\xed\xdf\xeb\xff\x07\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xac\x81\xb2" "\xf5\xff\x63\xee\xdf\x98\x65\xfe\xfd\x1f\x00\x00\x00\x2a\x2a\xe6\xfe\x4d" "\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x37\x85\x99\xc8\xff\x00\x00" "\x00\x50\x19\x31\xf7\xbf\x20\xcc\xa4\x26\xf9\xbf\x7e\xfd\xff\x82\xf3\xff" "\xeb\xff\xb7\xee\x2f\xfd\x7f\xfd\xff\x6e\xeb\xd7\xff\x1f\x4c\xfa\xff\xbd" "\xe9\xff\xf7\xa1\xff\x3f\x95\xd5\xab\xff\x7f\xa9\xe5\xcf\x41\xec\xff\x6f" "\x6c\xfd\x42\xff\x9f\x32\x2a\x5b\xff\x3f\xe6\xfe\x17\x86\x99\xd4\x24\xff" "\x03\x00\x00\x40\x1d\xc4\xdc\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11" "\x73\xff\x2d\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x9b\xc3\x4c\x6a" "\x92\xff\xf5\xff\xaf\xa9\xff\x9f\x3a\x57\xfa\xff\xed\xdb\xaf\xff\xdf\x4e" "\xff\x3f\x1c\x0f\xfa\xff\xfa\xff\xeb\x40\xff\xbf\x37\xfd\xff\x3e\xf4\xff" "\x9d\xff\x7f\xb0\xfa\xff\x6d\xf4\xff\x29\xa3\xb2\xf5\xff\x63\xee\x7f\x51" "\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x2f\x0e\x33\x91\xff\x01" "\x00\x00\xa0\x7c\x46\xae\xee\x66\x31\xf7\xbf\x24\xcc\x64\x49\xfe\xbf\xca" "\x15\x00\x00\x00\x00\x37\x5c\xcc\xfd\xb7\x66\x1d\x45\xf0\x9a\xfc\xfb\xbf" "\xfe\xbf\xf3\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5f\xff\xca\xfb\xff\xc3\x99" "\xfe\x7f\x79\xe8\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe\x3f" "\x6b\xaa\x6c\xfd\xff\x3c\xf7\x67\xe3\xd9\x4b\xc3\x4c\x6a\x92\xff\x01\x00" "\x00\xa0\x0e\x62\xee\xbf\x2d\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff" "\xff\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\x6f\x09\x33\xa9\x49\xfe" "\xd7\xff\xaf\x4c\xff\xff\x17\xad\x4f\x9d\xfe\xbf\xfe\x7f\xaf\xf5\xeb\xff" "\x3b\xff\x7f\x95\xe9\xff\xf7\xa6\xff\xdf\x87\xfe\xbf\xfe\xbf\xfe\xbf\xfe" "\x3f\x6b\xaa\x6c\xfd\xff\x98\xfb\x6f\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80" "\x3a\x88\xb9\xff\x8e\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\xff\x1f" "\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xbf\x35\xcc\xa4\x26\xf9\x5f\xff" "\xbf\xe4\xfd\xff\xd8\x1c\x75\xfe\x7f\xfd\x7f\xfd\xff\x52\xf6\xff\xc7\xf5" "\xff\x4b\x47\xff\xbf\x37\xfd\xff\x3e\xf4\xff\xf5\xff\xf5\xff\xf5\xff\x59" "\x53\x65\xeb\xff\xc7\xdc\xff\xb2\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83" "\x98\xfb\x5f\x1e\x66\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\x8a\x30\x13" "\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x89\x30\x93\x9a\xe4\xff\xd5\xf4\xff" "\x1b\x97\xf4\xff\x97\x73\x9d\xcf\xff\x3f\xb6\x82\xf3\xff\xb7\xd1\xff\xd7" "\xff\xef\xb5\x7e\xfd\x7f\xe7\xff\xaf\x32\xfd\xff\xde\xf4\xff\xfb\xd0\xff" "\xd7\xff\xd7\xff\xd7\xff\x67\x4d\x95\xad\xff\x1f\x73\xff\x9d\x61\x26\x35" "\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x6f\x0b\x33\x91\xff\x01\x00\x00\xa0" "\x32\x62\xee\xbf\x2b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\x7f\x7b\x98" "\x49\x4d\xf2\xbf\xf3\xff\x0f\x44\xff\x3f\xd3\xff\xd7\xff\xd7\xff\xd7\xff" "\xd7\xff\x5f\x19\xfd\xff\xde\xf4\xff\xfb\xd0\xff\xd7\xff\xd7\xff\xd7\xff" "\x67\x4d\x95\xad\xff\x1f\x73\xff\x2b\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0" "\x0e\x62\xee\xbf\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9\xff\x55\x61" "\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xf7\x84\x99\xd4\x24\xff\xeb\xff" "\xeb\xff\xeb\xff\xeb\xff\xeb\xff\x77\x5f\xbf\xfe\xff\x60\xd2\xff\xef\x4d" "\xff\xbf\x0f\xfd\x7f\xfd\x7f\xfd\x7f\xfd\x7f\xd6\x54\xd9\xfa\xff\x31\xf7" "\xbf\x3a\xcc\xa4\x26\xf9\x1f\x00\x00\x00\xea\x20\xe6\xfe\x1d\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xf7\x86\x99\xc8\xff\x00\x00\x00\x50\x19" "\x31\xf7\x4f\x86\x99\xd4\x24\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff\xeb\xff" "\x77\x5f\xbf\xfe\xff\x60\xd2\xff\xef\x4d\xff\xbf\x0f\xfd\x7f\xfd\x7f\xfd" "\x7f\xfd\x7f\xd6\x54\xd9\xfa\xff\x31\xf7\xdf\x17\x66\x52\x93\xfc\x0f\x00" "\x00\x00\x75\x10\x73\xff\xfd\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd" "\x53\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\xd3\x61\x26\x35\xc9\xff" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xab\xea\xff\xbf\x62\xf1\x7e\xf5\xff\x0b" "\xfa\xff\xe5\xa2\xff\xdf\x9b\xfe\x7f\x1f\xfa\xff\xfa\xff\x37\xbc\xff\x3f" "\xaa\xff\x4f\xa5\x94\xad\xff\x1f\x73\xff\xce\x30\x93\x9a\xe4\x7f\x00\x00" "\x00\xa8\x83\x98\xfb\x77\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef" "\x0e\x33\x91\xff\x01\x00\x00\xa0\x32\x62\xee\xdf\x13\x66\x52\x93\xfc\x3f" "\x00\xfd\xff\x58\xed\xd6\xff\xd7\xff\xd7\xff\x2f\x43\xff\xbf\x85\xfe\x7f" "\x41\xff\xbf\x5c\xf4\xff\x7b\x5b\xfb\xfe\x7f\x7c\x88\xfa\xff\xfa\xff\xfa" "\xff\xce\xff\xaf\xff\xcf\x52\x65\xeb\xff\xc7\xdc\xff\x40\x98\x49\x4d\xf2" "\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x7b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8\x8c" "\x98\xfb\xf7\x85\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xef\x0f\x33\xa9" "\x49\xfe\x1f\x80\xfe\x7f\xce\xf9\xff\xfb\xf6\xff\xc7\x5a\xd7\xad\xff\xaf" "\xff\xdf\x6b\xfd\xfa\xff\xfa\xff\x55\xa6\xff\xdf\x9b\xf3\xff\xf7\xa1\xff" "\xaf\xff\x3f\xc0\xfd\xff\xe6\xb1\xa5\xff\x4f\xd9\x94\xad\xff\x1f\x73\xff" "\x81\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x5f\x13\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\x6b\x61\x26\xf2\x3f\x00\x00\x00\x54\x46" "\xcc\xfd\xbf\x1e\x66\x52\x93\xfc\xaf\xff\x5f\x99\xfe\x7f\x1b\xfd\x7f\xfd" "\xff\x5e\xeb\x1f\xb4\xfe\xff\x98\xfe\xbf\xfe\xff\x2a\xe8\xff\xf7\xa6\xff" "\xdf\x87\xfe\xbf\xfe\xff\x00\xf7\xff\x9d\xff\x9f\x32\x2a\x5b\xff\x3f\xe6" "\xfe\x83\x61\x26\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\xff\x46\x98\x89" "\xfc\x0f\x00\x00\x00\x95\x11\x73\xff\x6b\xc3\x4c\xe4\x7f\x00\x00\x00\xa8" "\x8c\x98\xfb\x0f\x85\x99\xd4\x24\xff\xeb\xff\xaf\x53\xff\x3f\x5e\xa8\xff" "\xaf\xff\xaf\xff\xef\xfc\xff\xfa\xff\xd7\x95\xfe\x7f\x6f\xfa\xff\x7d\xe8" "\xff\xeb\xff\xeb\xff\xeb\xff\xb3\xa6\xca\xd6\xff\x8f\xb9\xff\x75\x61\x26" "\x35\xc9\xff\x00\x00\x00\x50\x07\x31\xf7\x3f\x18\x66\x22\xff\x03\x00\x00" "\x40\x65\xc4\xdc\xff\xfa\x30\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x37" "\x84\x99\xd4\x24\xff\xeb\xff\x3b\xff\xff\x8d\xef\xff\x8f\xb6\x6d\xbb\xfe" "\xff\xe2\xed\xf4\xff\x0b\xfa\xff\xfa\xff\xab\xa1\xff\xdf\x9b\xfe\x7f\x1f" "\xfa\xff\xfa\xff\xfa\xff\xfa\xff\xac\xa9\xb2\xf5\xff\x63\xee\x7f\x63\x98" "\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x6f\x0a\x33\x91\xff\x01\x00" "\x00\xa0\x32\x62\xee\x7f\x73\x98\x89\xfc\x0f\x00\x00\x00\x95\x11\x73\xff" "\x5b\xc2\x4c\x6a\x92\xff\xf5\xff\xf5\xff\x6f\x7c\xff\xbf\xfb\xf9\xff\x9b" "\xc7\x9a\xfe\xbf\xfe\x7f\xa6\xff\xaf\xff\xbf\x4a\xfa\xff\xbd\xe9\xff\xf7" "\xa1\xff\xaf\xff\xaf\xff\xaf\xff\xcf\x9a\x2a\x5b\xff\x3f\xe6\xfe\xdf\x0c" "\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\xa1\x30\x13\xf9\x1f\x00" "\x00\x00\x2a\x23\xe6\xfe\xb7\x86\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7" "\xbf\x2d\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\xbf\xac\xfd\x7f\xe7\xff\xd7\xff" "\x8f\xf4\xff\xf5\xff\x57\x43\xff\xbf\xb7\x01\xeb\xff\xff\xea\xe6\x70\xb9" "\xfe\x7f\x41\xff\xbf\xdc\xdb\xbf\xda\xfe\xff\x48\xc7\xd7\xd7\xa5\xff\xff" "\xa3\xe5\xfa\xff\x0b\x1b\x3a\x6f\xaf\xff\xcf\xf5\x50\xb6\xfe\x7f\xcc\xfd" "\x6f\x0f\x33\xa9\x49\xfe\x07\x00\x00\x80\x3a\x88\xb9\xff\x1d\x61\x26\xf2" "\x3f\x00\x00\x00\x54\x46\xcc\xfd\xef\x0c\x33\x91\xff\x01\x00\x00\xa0\x32" "\x62\xee\xff\xad\x30\x93\x9a\xe4\x7f\xfd\xff\xe6\x76\x2c\xb6\x97\xf5\xff" "\xf5\xff\xf3\x0b\xf4\xff\xf5\xff\xf5\xff\x07\x96\xfe\x7f\x6f\x03\xd6\xff" "\x77\xfe\xff\x0e\xfa\xff\xe5\xde\x7e\xe7\xff\xd7\xff\x67\xa9\xb2\xf5\xff" "\x63\xee\x7f\x57\x98\x49\x4d\xf2\x3f\x00\x00\x00\xd4\x41\xcc\xfd\x0f\x87" "\x99\xc8\xff\x00\x00\x00\x50\x19\x31\xf7\xbf\x3b\xcc\x44\xfe\x07\x00\x00" "\x80\xca\x88\xb9\xff\x3d\x61\x26\x35\xc9\xff\xfa\xff\xce\xff\xaf\xff\xaf" "\xff\xaf\xff\xdf\x7d\xfd\xfa\xff\x83\x49\xff\xbf\x37\xfd\xff\x3e\xf4\xff" "\xf5\xff\xcb\xd6\xff\xff\x4f\xfd\x7f\x06\x5b\xd9\xfa\xff\x31\xf7\x3f\x12" "\x66\x52\x93\xfc\x0f\x00\x00\x00\x75\x10\x73\xff\x7b\xc3\x4c\xe4\x7f\x00" "\x00\x00\xa8\x8c\x98\xfb\x7f\x3b\xcc\x44\xfe\x07\x00\x00\x80\xca\x88\xb9" "\xff\x7d\x61\x26\x35\xc9\xff\xfa\xff\x83\xd2\xff\x9f\xd0\xff\x5f\x65\xff" "\x7f\x2c\x5c\xa6\xff\xaf\xff\xaf\xff\x5f\x2f\xfa\xff\xbd\xe9\xff\xf7\xa1" "\xff\xaf\xff\x5f\xb6\xfe\xbf\xf3\xff\x33\xe0\xca\xd6\xff\x8f\xb9\xff\xfd" "\x61\x26\x2b\xcf\xff\xe3\x2b\x5e\x12\x00\x00\x00\xb8\x21\x62\xee\xff\x9d" "\x30\x93\x9a\xfc\xfb\x3f\x00\x00\x00\xd4\x41\xcc\xfd\xbf\x1b\x66\x22\xff" "\x03\x00\x00\x40\x65\xc4\xdc\xff\x7b\x61\x26\x35\xc9\xff\xfa\xff\x83\xd2" "\xff\x77\xfe\xff\xcc\xf9\xff\xf5\xff\x3b\x1e\x8f\xfe\xbf\xfe\x7f\x37\xeb" "\xd7\xff\x8f\xef\x3c\xfa\xff\xfa\xff\xfa\xff\x91\xfe\xbf\xfe\xbf\xfe\x3f" "\x9d\xca\xd6\xff\x8f\xb9\xff\xf7\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e" "\x62\xee\xff\x40\x98\x89\xfc\x0f\x00\x00\x00\x03\xa1\xdb\xff\x93\xdd\x29" "\xe6\xfe\xc3\x61\x26\xf2\x3f\x00\x00\x00\x54\x46\xcc\xfd\x47\xc2\x4c\x6a" "\x92\xff\xf5\xff\xf5\xff\xf5\xff\x4b\xda\xff\xff\x8b\x6d\xff\xf2\x83\xef" "\xbe\xe3\xc8\x4e\xfd\x7f\xfd\x7f\xfd\xff\x55\x59\xd7\xf3\xff\x37\x5f\xfc" "\xce\xff\xaf\xff\xaf\xff\x9f\xe8\xff\xeb\xff\xeb\xff\xd3\xa9\x6c\xfd\xff" "\x98\xfb\x8f\x86\x99\x2c\x06\xbf\xb7\x39\xc1\x3f\x00\x00\x00\x0c\xb6\x98" "\xfb\xff\x20\xcc\xa4\x26\xff\xfe\x0f\x00\x00\x00\x75\x10\x73\xff\xb1\x30" "\x13\xf9\x1f\x00\x00\x00\x2a\x23\xe6\xfe\x99\x30\x93\x9a\xe4\x7f\xfd\x7f" "\xfd\x7f\xfd\xff\x92\xf6\xff\x07\xf8\xfc\xff\x71\x7f\x0c\x52\xff\x7f\x72" "\xc3\x00\xf5\xff\xe3\x9b\xae\xfe\x7f\x57\xeb\xda\xff\x7f\xef\x62\x4f\x5c" "\xff\x7f\xb5\xfd\xff\xb1\xae\x97\x76\xf6\xff\x1b\xfa\xff\x6d\xf4\xff\x57" "\xbd\xfd\xdf\xc9\xb2\x4c\xff\x5f\xff\x9f\x1b\xa8\x6c\xfd\xff\x98\xfb\x67" "\xc3\x4c\x6a\x92\xff\x01\x00\x00\xa0\x0e\x42\xee\x1f\x3a\x5e\xcc\xc5\x2b" "\xe4\x7f\x00\x00\x00\xa8\x8c\x98\xfb\x4f\x84\x99\xc8\xff\x00\x00\x00\x50" "\x19\x31\xf7\x7f\x30\xcc\xa4\x26\xf9\x5f\xff\x5f\xff\x5f\xff\x5f\xff\xdf" "\xf9\xff\xbb\xaf\xbf\xb4\xfd\x7f\xe7\xff\xef\x49\xff\xbf\xb7\xf2\xf4\xff" "\xbb\x73\xfe\x7f\xfd\xff\x41\xde\x7e\xfd\x7f\xfd\x7f\x96\x2a\x5b\xff\x3f" "\xe6\xfe\xb9\x30\x93\x9a\xe4\x7f\x00\x00\x00\xa8\x83\x98\xfb\x3f\x14\x66" "\x22\xff\x03\x00\x00\x40\x65\xc4\xdc\xff\xe1\x30\x13\xf9\x1f\x00\x00\x00" "\x2a\x23\xe6\xfe\x93\x61\x26\x35\xc9\xff\xfa\xff\xfa\xff\xfa\xff\xfa\xff" "\xfa\xff\xdd\xd7\xaf\xff\x3f\x98\xf4\xff\x7b\xd3\xff\xef\x43\xff\x5f\xff" "\x5f\xff\x5f\xff\x9f\x35\x55\xb6\xfe\x7f\xcc\xfd\xa7\xc2\x4c\x6a\x92\xff" "\x81\xff\x63\xef\x3e\x9a\x2c\xad\xcb\x3e\x8e\x9f\x9e\xa7\x29\x66\x1e\x36" "\xcf\xee\x59\xb8\xd0\x2a\x97\xbe\x04\x16\xb2\xd6\x17\xe0\x82\x0d\x0b\xad" "\xb2\x5c\x80\x8a\x39\xcd\x60\x8e\x98\x73\xc0\x2c\x06\x0c\xa0\x88\x09\x73" "\x02\x13\x8a\x59\x54\xcc\x09\x03\x66\xd4\x1a\x8b\x99\xeb\xba\xa6\xc3\xdd" "\xf7\xe9\x70\xba\xcf\x7d\xfe\xff\xcf\x67\xe1\x35\x34\xd3\x9c\x33\x3a\x05" "\xfe\xa6\xe7\xcb\x0d\x00\x00\xf4\x20\x77\xff\xa5\x71\x8b\xfd\x0f\x00\x00" "\x00\xcd\xc8\xdd\x7f\x59\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f\x34" "\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xcd\xf6\xff\xf7\xd5\xff\xef\xf4\xfa\xfa" "\x7f\xfd\x7f\xcb\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xf5\xff\xfa\x7f\xfd\x3f" "\x0b\x35\xb5\xfe\x3f\x77\xff\xc3\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20" "\x77\xff\xc3\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xf2\xb8\xc5\xfe" "\x07\x00\x00\x80\x66\xe4\xee\x7f\x44\xdc\xd2\xc9\xfe\xdf\xd2\xff\xaf\xcd" "\xfa\xec\xff\x33\xe3\xd5\xff\xb7\xd4\xff\x7b\xfe\xff\x8e\xaf\xaf\xff\xd7" "\xff\xb7\xec\x68\xfb\xff\x2b\xee\xfe\x3b\x9f\xfe\x5f\xff\xaf\xff\x0f\xfa" "\x7f\xfd\xbf\xfe\x9f\xad\xa6\xd6\xff\xe7\xee\x7f\x64\xdc\xd2\xc9\xfe\x07" "\x00\x00\x80\x1e\xe4\xee\x7f\x54\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x3f\x3a\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\x1f\x13\xb7\x74\xb2\xff" "\x3d\xff\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf0\xeb\xeb\xff\x57\x93\xe7" "\xff\x8f\xeb\xa9\xff\xbf\xfc\xd6\x0b\x2e\xbd\xf3\xfa\x7b\xdc\xb0\x97\xd7" "\xd7\xff\xeb\xff\xf5\xff\xfa\x7f\x16\x6b\x6a\xfd\x7f\xee\xfe\xc7\xc6\x2d" "\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xc7\xc5\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\xe3\xe3\x16\xfb\x1f\x00\x00\x00\x56\xd0\x89\xc1\x8f\xe6" "\xee\x7f\x42\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\xd1\xff\x1f\xd7\xff" "\xeb\xff\xf5\xff\x2d\xd0\xff\x8f\xeb\xa9\xff\xdf\xcf\xeb\xeb\xff\xf5\xff" "\xfa\x7f\xfd\x3f\x8b\x35\xb5\xfe\x3f\x77\xff\x13\xe3\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x93\xe2\x16\xfb\x1f\x00\x00\x00\xa6\x6b\xe8\x37" "\x62\x8f\xc8\xdd\x7f\x32\x6e\xb1\xff\x01\x00\x00\x60\x25\xec\x26\x43\xcf" "\xdd\x7f\x2a\x6e\xe9\x64\xff\xeb\xff\x0f\xbf\xff\xff\x8f\xfe\x7f\x35\xfa" "\x7f\xcf\xff\xd7\xff\xeb\xff\x9b\xa0\xff\x1f\xa7\xff\x9f\x43\xff\xaf\xff" "\xd7\xff\xeb\xff\x59\xa8\xa9\xf5\xff\xb9\xfb\xaf\x88\x5b\x3a\xd9\xff\x00" "\x00\x00\xd0\x83\xdc\xfd\x4f\x8e\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe" "\xa7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x53\xe3\x96\x4e\xf6\xbf" "\xfe\xdf\xf3\xff\xf5\xff\xfa\xff\x05\xf6\xff\x67\xbe\xa9\xff\x1f\xa6\xff" "\x3f\x1a\xfa\xff\x71\xfa\xff\x39\xf4\xff\x07\xed\xe7\xcf\xd3\xff\xeb\xff" "\xf5\xff\x6c\xb4\xc7\xfe\xff\xae\x91\xbf\x6d\x2f\xa4\xff\xcf\xdd\xff\xb4" "\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xf4\xb8\xc5\xfe\x07\x00" "\x00\x80\x66\xe4\xee\x7f\x46\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x3f" "\x33\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\xa3\xef\xff\x67\x5b\xbe\xff" "\xca\xf6\xff\xdb\x7f\xea\x9d\xa1\xff\x1f\xa6\xff\x3f\x1a\xfa\xff\x71\x93" "\xe9\xff\xd7\xd6\x07\x3f\xac\xff\x5f\xf9\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f" "\x36\x99\xda\xf3\xff\x73\xf7\x3f\x2b\x6e\xe9\x64\xff\x03\x00\x00\x40\x0f" "\x72\xf7\x3f\x3b\x6e\x19\xd9\xff\x7b\xfe\xc5\x7c\x00\x00\x00\x60\xa9\x72" "\xf7\x3f\x27\x6e\xf1\xf5\x7f\x00\x00\x00\x58\x79\x59\x9d\xe5\xee\x7f\x6e" "\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\xf5\xff\x9e\xff\xbf\xc0\xe7\xff\x9f\xd1" "\x43\xff\x7f\xc3\x86\xf7\xa7\xff\x9f\x16\xfd\xff\xb8\xc9\xf4\xff\x3b\xd0" "\xff\xeb\xff\x57\xf9\xfd\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77\xff\xf3" "\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x95\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xfc\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f" "\x41\xdc\xd2\xc9\xfe\x1f\xee\xff\xcf\xfd\x79\xfd\xff\xee\xe8\xff\x37\xbf" "\x7f\xfd\xff\xf0\xcf\x8f\x45\xf5\xff\xf9\x57\xd4\xff\x8f\xf6\xff\x17\x79" "\xfe\x7f\x9f\x76\xea\xef\x2f\xd9\xe5\xe7\xeb\xff\x83\xfe\x5f\xff\xaf\xff" "\xd7\xff\x6f\xee\xff\x4f\xcc\xfb\x7c\xfd\x3f\x43\xa6\xd6\xff\xe7\xee\x7f" "\x61\xdc\xd2\xc9\xfe\x07\x00\x00\x80\x1e\xe4\xee\x7f\x51\xdc\x62\xff\x03" "\x00\x00\x40\x33\x72\xf7\xbf\x38\x6e\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb" "\x5f\x12\xb7\x74\xb2\xff\x3d\xff\x5f\xff\xaf\xff\x5f\xbd\xfe\xdf\xf3\xff" "\xcf\x5a\xe6\xf3\xff\x67\x47\xde\xff\xaf\xeb\xff\x77\xa9\xcb\xe7\xff\xdf" "\xfb\x8e\x5d\xff\xf5\xf5\xff\x73\xe8\xff\xf5\xff\xfa\xff\xf1\xe7\xff\x8f" "\xfc\x5b\x00\xf4\xff\x0c\x99\x5a\xff\x9f\xbb\xff\xa5\x71\x4b\x27\xfb\x1f" "\x00\x00\x00\x7a\x90\xbb\xff\x65\x71\x8b\xfd\x0f\x00\x00\x00\xab\x61\xe3" "\xef\x1d\xd8\xfa\x1b\x4a\x43\xee\xfe\x97\xc7\x2d\xf6\x3f\x00\x00\x00\x34" "\x23\x77\xff\x2b\xe2\x96\x76\xf6\xff\xe8\xb3\x3a\xf5\xff\xfa\x7f\xfd\xbf" "\xfe\x5f\xff\x3f\xfc\xfa\xd3\xea\xff\x3d\xff\x7f\xb7\x5a\xeb\xff\xe7\x3e" "\x70\x7b\xb3\x9b\xe7\x7d\x07\xfd\xff\x1c\xfa\xff\xc3\xe8\xe7\xd7\x1b\xeb" "\xff\xaf\xda\xe9\xf3\xa7\xd0\xff\x9f\x3c\xec\xfe\x7f\x84\xfe\x9f\x21\x9b" "\xfa\xff\x1b\xcf\x7d\x7c\x59\xfd\x7f\xee\xfe\x57\xc6\x2d\xed\xec\x7f\x00" "\x00\x00\xe8\x5e\xee\xfe\x57\xc5\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\xab\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x35\x71\x4b\x27\xfb\xff" "\xd0\xfb\xff\x91\x70\x51\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\x45" "\x6b\xad\xff\xdf\x73\xbf\x3e\x87\xfe\x7f\x0e\xfd\xbf\xe7\xff\x7b\xfe\xbf" "\xfe\x9f\x85\xda\xd4\xff\x6f\xb0\xac\xfe\x3f\x77\xff\x6b\xe3\x96\x4e\xf6" "\x3f\x00\x00\x00\xf4\x20\x77\xff\xeb\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91" "\xbb\xff\xaa\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\x7f\x7d\xdc\xd2\xc9" "\xfe\xf7\xfc\x7f\xfd\xbf\xfe\x7f\xa9\xfd\xff\xb1\x99\xfe\x5f\xff\xaf\xff" "\x5f\xa8\x03\xf5\xf7\xc7\xf4\xff\x45\xff\xaf\xff\xd7\xff\xeb\xff\xf5\xff" "\x2c\xc0\xd4\xfa\xff\xdc\xfd\x6f\x88\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83" "\xdc\xfd\x6f\x8c\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x37\xc5\x2d\xf6" "\x3f\x00\x00\x00\x34\x23\x77\xff\x9b\xe3\x96\x4e\xf6\xbf\xfe\xff\x70\xfb" "\xff\xfc\xf8\x0e\xfd\xff\xff\x6e\xfd\x7c\xfd\x7f\x77\xfd\xbf\xe7\xff\xeb" "\xff\xf5\xff\x0b\xd6\xed\xf3\xff\xd7\x86\xfe\x49\xb4\xdd\x0e\xfd\xff\xcd" "\x0f\x3e\x75\xff\xcd\x1f\xd1\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\x3f\xbb\xf4" "\x7f\x23\x7f\x6e\x12\xfd\xff\xe9\x73\xff\xef\x32\x77\xff\x5b\xe2\x96\x4e" "\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\x5b\xe3\x16\xfb\x1f\x00\x00\x00\x9a" "\x91\xbb\xff\x6d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x75\xdc\xb2" "\xc7\xfd\x3f\xd6\x3c\x4c\x99\xfe\xdf\xf3\xff\xf5\xff\xfa\x7f\xfd\xff\xf0" "\xeb\xeb\xff\x57\x53\xb7\xfd\xff\x2e\x79\xfe\xff\x1c\xfa\x7f\xfd\xbf\xfe" "\x5f\xff\xcf\x42\x4d\xa2\xff\xdf\xf0\xc7\xb9\xfb\xdf\x1e\xb7\xf8\xfa\x3f" "\x00\x00\x00\x34\x23\x77\xff\x3b\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb" "\xff\x9d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff\xae\xb8\xa5\x93\xfd" "\xaf\xff\xd7\xff\xeb\xff\xf5\xff\xfa\xff\xe1\xd7\xd7\xff\xaf\x26\xfd\xff" "\x38\xfd\xff\x1c\xab\xd4\xff\x5f\x7d\x80\xfe\x7f\x7d\xf8\xc3\xcb\xee\xe7" "\x0f\x6a\xd9\xef\x5f\xff\xaf\xff\x67\xbb\xa9\xf5\xff\xb9\xfb\xaf\x89\x5b" "\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xef\x8e\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\xf7\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x7b\xe3" "\x96\x4e\xf6\xbf\xfe\x5f\xff\xaf\xff\xd7\xff\xeb\xff\x87\x5f\x5f\xff\xbf" "\x9a\xf4\xff\xe3\xf4\xff\xb3\xd9\xec\xda\x91\x37\x30\xd4\xff\x9f\x3e\x7f" "\x9a\xfd\xbf\xe7\xff\x4f\xee\xfd\xeb\xff\xf5\xff\x6c\x37\xb5\xfe\x3f\x77" "\xff\xfb\xe2\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77\xff\xb5\x71\x8b\xfd" "\x0f\x00\x00\x00\xcd\xc8\xdd\x7f\x5d\xdc\x62\xff\x03\x00\x00\x40\x33\x72" "\xf7\xbf\x3f\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\xff\xbd\xf6\xff\x77\xff" "\x8f\xa3\xff\x9f\xe9\xff\xf5\xff\x13\xa5\xff\x1f\xa7\xff\x9f\x63\x95\x9e" "\xff\xaf\xff\xdf\xd7\xfb\x3f\x7e\x88\xef\x5f\xff\xaf\xff\x67\xbb\xa9\xf5" "\xff\xb9\xfb\x3f\x10\xb7\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\xaf\x8f" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x0f\xc6\x2d\xf6\x3f\x00\x00\x00" "\x34\x23\x77\xff\x0d\x71\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\x7b\xfe\xbf" "\xfe\x7f\xf8\xf5\xf5\xff\xab\xe9\xf0\xfa\xff\x99\xfe\x5f\xff\xaf\xff\x9f" "\x63\x15\xfa\xff\xc3\x7c\xff\xfa\x7f\xfd\x3f\xdb\x4d\xad\xff\xcf\xdd\xff" "\xa1\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\xff\xe1\xb8\xc5\xfe\x07" "\x00\x00\x80\x66\xe4\xee\xff\x48\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7" "\x7f\x34\x6e\xe9\x64\xff\xeb\xff\xf5\xff\xfa\x7f\xfd\xbf\xfe\x7f\xf8\xf5" "\xf5\xff\xab\xc9\xf3\xff\xc7\xe9\xff\xe7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f" "\x16\x6a\xb8\xff\x3f\xb9\xb4\xfe\x3f\x77\xff\xc7\xe2\x96\x4e\xf6\x3f\x00" "\x00\x00\xf4\x20\x77\xff\x8d\x71\x8b\xfd\x0f\x00\x00\x00\xcd\xc8\xdd\xff" "\xf1\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff\x44\xdc\xd2\xc9\xfe\xd7" "\xff\xeb\xff\x37\xf7\xff\xb3\x99\xfe\x5f\xff\xaf\xff\x3f\xeb\x08\xfa\xff" "\xe3\x33\xfd\xff\xc2\xe9\xff\xc7\xe9\xff\xe7\xd0\xff\xb7\xd9\xff\x1f\x9b" "\x35\xd4\xff\x9f\xd8\xf1\xf3\xf5\xff\x4c\xd1\xd4\x9e\xff\x9f\xbb\xff\x93" "\x71\x4b\x27\xfb\x1f\x00\x00\x00\x7a\x90\xbb\xff\x53\x71\x8b\xfd\x0f\x00" "\x00\x00\xcd\xc8\xdd\xff\xe9\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x4c\xdc\xd2\xc9\xfe\xd7\xff\xeb\xff\x3d\xff\x5f\xff\xaf\xff\x1f\x7e\x7d" "\xcf\xff\x5f\x4d\xfa\xff\x71\xfa\xff\x39\xf4\xff\x6d\xf6\xff\x9e\xff\xaf" "\xff\x67\x69\xa6\xd6\xff\xe7\xee\xff\x6c\xdc\xd2\xc9\xfe\x07\x00\x00\x80" "\x1e\xe4\xee\xff\x5c\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x3e\x6e" "\xb1\xff\x01\x00\x00\xa0\x19\xb9\xfb\xbf\x10\xb7\x74\xb2\xff\xf5\xff\xfa" "\x7f\xfd\xbf\xfe\x5f\xff\x3f\xfc\xfa\xfa\xff\xd5\xa4\xff\x1f\xa7\xff\x9f" "\x43\xff\xaf\xff\xd7\xff\xeb\xff\x59\xa8\xa9\xf5\xff\xb9\xfb\xbf\x18\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x6f\x8a\x5b\xec\x7f\x00\x00\x00" "\x68\x46\xee\xfe\x9b\xe3\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x4b\x71" "\x4b\x27\xfb\x5f\xff\xaf\xff\xd7\xff\xaf\x66\xff\x7f\x5c\xff\xaf\xff\xd7" "\xff\x0f\x9a\x4a\xff\x7f\xe1\x85\xf7\xbb\x45\xff\xaf\xff\xd7\xff\xeb\xff" "\xf5\xff\xfa\xff\xde\x4d\xad\xff\xcf\xdd\xff\xe5\xb8\xa5\x93\xfd\x0f\x00" "\x00\x00\x3d\xc8\xdd\xff\x95\xb8\xc5\xfe\x07\x00\x00\x80\x66\xe4\xee\xff" "\x6a\xdc\x62\xff\x03\x00\x00\x40\x33\x72\xf7\x7f\x2d\x6e\xe9\x64\xff\x6f" "\xef\xff\xcf\x9b\x9d\x2d\x54\xcf\x1a\xea\xff\xa3\x51\xd3\xff\x6f\xa0\xff" "\xdf\xfc\xfe\xf5\xff\xc3\x3f\x3f\x06\xfb\xff\x7c\xf3\x9e\xff\xaf\xff\xd7" "\xff\x2f\xc4\x54\xfa\x7f\xcf\xff\xdf\xdf\xfb\xd7\xff\xeb\xff\x57\xf9\xfd" "\xef\xa9\xff\xbf\xd7\xf6\xcf\xd7\xff\xd3\xa2\xa9\xf5\xff\xb9\xfb\x6f\x89" "\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\x5f\x8f\x5b\xec\x7f\x00\x00" "\x00\x68\x46\xee\xfe\x6f\xc4\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\xad" "\x71\x4b\x27\xfb\xdf\xf3\xff\xf5\xff\x13\xeb\xff\x4f\x76\xd7\xff\xef\xf3" "\xf9\xff\x33\xfd\xbf\xfe\x5f\xff\x3f\x48\xff\x3f\x4e\xff\x3f\x87\xfe\x5f" "\xff\xef\xf9\xff\x97\x3d\xf0\x7f\xf4\xff\x2c\xce\xd4\xfa\xff\xdc\xfd\xdf" "\x8c\x5b\x3a\xd9\xff\x00\x00\x00\xd0\x83\xdc\xfd\xdf\x8a\x5b\xec\x7f\x00" "\x00\x00\x68\x46\xee\xfe\x6f\xc7\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff" "\x77\xe2\x96\x4e\xf6\xbf\xfe\x5f\xff\x3f\xb1\xfe\xbf\xbf\xe7\xff\xeb\xff" "\xf5\xff\xfa\xff\x85\xd2\xff\x8f\xd3\xff\x97\xad\x3f\xb4\xb3\xfa\xe9\xff" "\x8f\x0f\x7d\x70\xd9\xfd\xfc\x41\x2d\xfb\xfd\x37\xd3\xff\x7b\xfe\x3f\x0b" "\x34\xb5\xfe\x3f\x77\xff\x77\xe3\x96\x4e\xf6\x3f\x00\x00\x00\xf4\x20\x77" "\xff\xf7\xe2\x16\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\xfb\x71\x8b\xfd\x0f" "\x00\x00\x00\xcd\xc8\xdd\xff\x83\xb8\xa5\x93\xfd\xaf\xff\xd7\xff\xb7\xdf" "\xff\x5f\xa2\xff\xdf\xf2\xfa\xfa\x7f\xfd\x7f\xcb\xf4\xff\xf9\x4f\xf4\x61" "\xfa\xff\x39\xfa\xe9\xff\x07\x2d\xbb\x9f\x5f\xf5\xf7\xaf\xff\xd7\xff\xb3" "\xdd\xd4\xfa\xff\xdc\xfd\xb7\xc5\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee" "\xfe\x1f\xc6\x2d\xf6\x3f\x00\x00\x00\x34\x23\x77\xff\x8f\xe2\x16\xfb\x1f" "\x00\x00\x00\x9a\x91\xbb\xff\xc7\x71\x4b\x27\xfb\x5f\xff\xdf\x57\xff\xbf" "\x36\xeb\xb1\xff\xf7\xfc\x7f\xfd\xbf\xfe\xbf\x27\xfa\xff\x71\xfa\xff\x39" "\xf4\xff\xfa\x7f\xfd\xbf\xfe\x9f\x85\x9a\x5a\xff\x9f\xbb\xff\xf6\xb5\xf5" "\x2e\xf7\x3f\x00\x00\x00\xac\xaa\x07\xdc\xe7\x21\xb7\xed\xf6\xfb\xde\x7e" "\xe6\x3f\x8f\xcf\x7e\x12\xb7\x5c\x34\x3b\xbd\xcb\x2f\x63\x03\x00\x00\x00" "\x13\x77\xf7\xee\x5f\x5b\x9f\xcd\x7e\x7a\xe6\x8f\x7c\xfd\x1f\x00\x00\x00" "\x5a\x94\xbb\xff\x67\x71\x4b\x27\xfb\x5f\xff\xdf\x57\xff\xdf\xe7\xf3\xff" "\xf5\xff\xfa\x7f\xfd\x7f\x4f\xf4\xff\xe3\xf4\xff\x73\xe8\xff\xf5\xff\xfa" "\x7f\xfd\x3f\x0b\x35\xb5\xfe\x3f\x77\xff\xcf\xe3\x96\x0d\xc3\x6f\x7d\xcf" "\x3f\x4a\x00\x00\x00\x60\x4a\x72\xf7\xff\x22\x6e\xe9\xe4\xeb\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\xbf\x8c\x5b\xb6\xed\x7f\xff\x3a\x40\x00\x00\x00\x58" "\x55\xb9\xfb\x7f\x15\xb7\x74\xf2\xf5\x7f\xfd\xff\xc4\xfb\xff\xd9\x21\xf5" "\xff\xf1\xfd\xf4\xff\x67\xe9\xff\xf5\xff\x43\xaf\xaf\xff\x5f\x4d\xfa\xff" "\x71\x07\xec\xff\x4f\xaf\xe9\xff\xf5\xff\x23\xf4\xff\xfa\x7f\xfd\x3f\x5b" "\x4d\xad\xff\xcf\xdd\xff\xeb\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x8d\xda\xf4" "\x2b\x0a\xb9\xfb\x7f\x13\xb7\xd8\xff\x00\x00\x00\xd0\x8c\xdc\xfd\xbf\x8d" "\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\xdf\xc5\x2d\x9d\xec\x7f\xfd\xff" "\x91\xf7\xff\x99\xaa\x1f\xe2\xf3\xff\x4f\xd4\xb7\x3c\xff\xbf\xf3\xfe\xff" "\xca\xe3\x83\xaf\xaf\xff\xd7\xff\xb7\x4c\xff\x3f\xce\xf3\xff\xe7\xd0\xff" "\xb7\xd2\xff\x9f\xaf\xff\xd7\xff\x33\x0d\x53\xeb\xff\x73\xf7\xdf\x11\xb7" "\x74\xb2\xff\x01\x00\x00\xa0\x07\xb9\xfb\x7f\x1f\xb7\xd8\xff\x00\x00\x00" "\xd0\x8c\xdc\xfd\x7f\x88\x5b\xec\x7f\x00\x00\x00\x68\x46\xee\xfe\x3f\xc6" "\x2d\x9d\xec\x7f\xfd\xff\xc4\x9f\xff\xbf\xaf\xfe\x7f\x17\xcf\xff\xd7\xff" "\xf7\xd1\xff\xef\xf0\xfa\xed\xf4\xff\xff\x7f\xc1\xa9\x9b\x2e\x7e\xd0\x75" "\xd7\xe8\xff\x39\xe7\x28\xfb\xff\xfc\xb9\xa0\xff\xd7\xff\xeb\xff\xcf\x9a" "\x50\xff\xef\xf9\xff\xfa\x7f\x26\x62\xf1\xfd\xff\xfa\xa6\x0f\xee\xb5\xff" "\xcf\xdd\xff\xa7\xb8\xa5\x93\xfd\x0f\x00\x00\x00\x3d\xc8\xdd\x7f\x67\xdc" "\x62\xff\x03\x00\x00\x40\x33\x72\xf7\xff\x39\x6e\xb1\xff\x01\x00\x00\xa0" "\x19\xb9\xfb\xff\x12\xb7\x74\xb2\xff\xf5\xff\x3b\xf4\xff\xd9\xdf\xef\xee" "\x87\xa2\xff\xdf\xf2\xfe\xf7\xd3\xff\xe7\x7f\xd7\x4b\xe8\xff\x4f\xed\xbb" "\xff\x3f\x31\x9b\xcd\x96\xd2\xff\x67\x53\xdc\x7b\xff\xef\xf9\xff\xfa\xff" "\xed\x3c\xff\x7f\x9c\xfe\x7f\x0e\xfd\xbf\xfe\x5f\xff\xaf\xff\x67\xa1\x16" "\xdf\xff\x6f\xfe\xe0\x5e\xfb\xff\xdc\xfd\x7f\x8d\x5b\x3a\xd9\xff\x00\x00" "\x00\xd0\x83\xdc\xfd\x7f\x8b\x5b\x72\xff\xaf\xed\xf9\x97\xee\x01\x00\x00" "\x80\x89\xc9\xdd\xff\xf7\xb8\xc5\xd7\xff\x01\x00\x00\xa0\x19\xb9\xfb\xff" "\x11\xb7\x74\xb2\xff\xf5\xff\x9e\xff\x3f\x95\xfe\x3f\x79\xfe\xff\xb9\xcf" "\x6b\xeb\xf9\xff\x17\x57\x9c\xda\x67\xff\x7f\xcf\xfa\x96\xfe\xff\x70\xe9" "\xff\xc7\xe9\xff\xe7\xd0\xff\xeb\xff\xf5\xff\xfa\x7f\x16\x6a\x6a\xfd\x7f" "\xee\xfe\x7f\xc6\x2d\x9d\xec\x7f\x00\x00\x00\xe8\x41\xee\xfe\xbb\xe2\x16" "\xfb\x1f\x00\x00\x00\x9a\x91\xbb\xff\x5f\x71\x8b\xfd\x0f\x00\x00\x00\xcd" "\xc8\xdd\xff\xef\xb8\xa5\x93\xfd\xaf\xff\x6f\xb5\xff\xcf\x22\x5e\xff\xaf" "\xff\x9f\x4a\xff\xef\xf9\xff\x9e\xff\x7f\x34\xf4\xff\xe3\xf4\xff\x73\xb4" "\xd8\xff\x1f\xdb\xfd\x0f\x7f\xd9\xfd\xfc\x41\x2d\xfb\xfd\xeb\xff\xf5\xff" "\x6c\x37\xb5\xfe\x3f\x77\xff\x7f\x03\x00\x00\xff\xff\x64\xef\x63\xd0", 25145); syz_mount_image(/*fs=*/0x200000000100, /*dir=*/0x200000000000, /*flags=MS_STRICTATIME|MS_NOATIME*/ 0x1000400, /*opts=*/0x200000000380, /*chdir=*/0x29, /*size=*/0x6239, /*img=*/0x200000004180); // syz_mount_image$exfat arguments: [ // fs: nil // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x448c (8 bytes) // opts: nil // chdir: int8 = 0x0 (1 bytes) // size: len = 0x0 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x0) // } // ] // returns fd_dir memcpy((void*)0x200000000300, "./bus\000", 6); syz_mount_image(/*fs=*/0, /*dir=*/0x200000000300, /*flags=MS_REC|MS_NOEXEC|MS_NODEV|MS_NOATIME|0x80*/ 0x448c, /*opts=*/0, /*chdir=*/0, /*size=*/0, /*img=*/0x200000000240); // io_uring_register$IORING_REGISTER_FILES_UPDATE arguments: [ // fd: fd_io_uring (resource) // opcode: const = 0x6 (8 bytes) // arg: nil // nr_args: len = 0x0 (8 bytes) // ] syscall(__NR_io_uring_register, /*fd=*/(intptr_t)-1, /*opcode=*/6ul, /*arg=*/0ul, /*nr_args=*/0ul); // syz_mount_image$hfsplus arguments: [ // fs: ptr[in, buffer] { // buffer: {68 66 73 70 6c 75 73 00} (length 0x8) // } // dir: ptr[in, buffer] { // buffer: {2e 2f 62 75 73 00} (length 0x6) // } // flags: mount_flags = 0x208000 (8 bytes) // opts: ptr[inout, array[ANYUNION]] { // array[ANYUNION] { // union ANYUNION { // ANYBLOB: buffer: {6e 6c 73 3d 63 70 39 35 30 2c 6e 6f 62 61 72 72 // 69 65 72 2c 66 6f 72 63 65 2c 75 6d 61 73 6b 3d 30 30 30 30 30 30 // 30 30 30 30 30 30 30 30 30 30 30 30 30 31 30 30 30 2c 00 d0 12 80 // f5 32 b0 f4 cf 3b 36 fd 5c 6e f6 42 69 a5 33 fc 6b 05 2f 92 ff ca // c0 8c a1 85 19 d5 b3 71 1b 97 ec 29 1e 41 35 5f a6 5d 9c 0d 15 e7 // c1 0c 63 ab 0b ba 73 6f 92 ab 9d 30 47 8a e1 45 2a 01 7b e9 8c 2a // 05 07 fe bf 29 5d b1 7e 98 d0 ff fc 0d 34 92 64 ce 2a cd ed c0 a6 // 1a e1 32 d4 02 4d 39 e1 1d e2 dc 86 79 fa c7 ef cb 61 37 aa 2e 36 // 1c 5f 6c b8 51 e3 a6 0b a0 5f 83 46 66 69 46 67 f2 7f 0d 63 2c f9 // a8 5f e2 47 e2 72 51 ac bd 73 9f f8 50 88 cb 20 10 10 90 01 32 00 // 00 00 00 00 00 00 00 00 00 25 93 d6 00 00 00 00} (length 0xe6) // } // } // } // chdir: int8 = 0xfd (1 bytes) // size: len = 0x693 (8 bytes) // img: ptr[in, buffer] { // buffer: (compressed buffer with length 0x693) // } // ] // returns fd_dir memcpy((void*)0x200000003000, "hfsplus\000", 8); memcpy((void*)0x200000000240, "./bus\000", 6); memcpy( (void*)0x200000003f80, "\x6e\x6c\x73\x3d\x63\x70\x39\x35\x30\x2c\x6e\x6f\x62\x61\x72\x72\x69\x65" "\x72\x2c\x66\x6f\x72\x63\x65\x2c\x75\x6d\x61\x73\x6b\x3d\x30\x30\x30\x30" "\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x30\x31\x30\x30" "\x30\x2c\x00\xd0\x12\x80\xf5\x32\xb0\xf4\xcf\x3b\x36\xfd\x5c\x6e\xf6\x42" "\x69\xa5\x33\xfc\x6b\x05\x2f\x92\xff\xca\xc0\x8c\xa1\x85\x19\xd5\xb3\x71" "\x1b\x97\xec\x29\x1e\x41\x35\x5f\xa6\x5d\x9c\x0d\x15\xe7\xc1\x0c\x63\xab" "\x0b\xba\x73\x6f\x92\xab\x9d\x30\x47\x8a\xe1\x45\x2a\x01\x7b\xe9\x8c\x2a" "\x05\x07\xfe\xbf\x29\x5d\xb1\x7e\x98\xd0\xff\xfc\x0d\x34\x92\x64\xce\x2a" "\xcd\xed\xc0\xa6\x1a\xe1\x32\xd4\x02\x4d\x39\xe1\x1d\xe2\xdc\x86\x79\xfa" "\xc7\xef\xcb\x61\x37\xaa\x2e\x36\x1c\x5f\x6c\xb8\x51\xe3\xa6\x0b\xa0\x5f" "\x83\x46\x66\x69\x46\x67\xf2\x7f\x0d\x63\x2c\xf9\xa8\x5f\xe2\x47\xe2\x72" "\x51\xac\xbd\x73\x9f\xf8\x50\x88\xcb\x20\x10\x10\x90\x01\x32\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x25\x93\xd6\x00\x00\x00\x00", 230); memcpy( (void*)0x200000000980, "\x78\x9c\xec\xdd\x4b\x6c\x1c\x77\x1d\x07\xf0\xef\xac\x37\x7e\x04\x94\xba" "\x6d\xd2\x16\x84\xd4\xa8\x11\x11\x34\x22\xb1\xb3\x94\x04\x01\x22\x20\x84" "\x72\xa8\x50\x24\x2e\xbd\x70\xb0\x12\xa7\xb1\xb2\x49\x2b\xc7\x45\x6e\x85" "\x88\xcb\xf3\xca\xb1\x87\x1e\x8a\x50\x38\xf4\x84\x7a\x40\x2a\xe2\x50\x51" "\xce\x48\x48\x9c\xb8\xe4\x1e\x89\xbb\x4f\x2c\x9a\xd9\xd9\xf5\x3a\x1b\x3b" "\xde\xbc\x76\x4d\x3f\x1f\x69\x76\xfe\x33\xff\xc7\xfc\xe6\xe7\xff\xcc\xbe" "\x64\x6d\x80\xcf\xac\xf3\xaf\xe5\xc0\x46\x8a\x9c\x3f\xf1\xea\x7a\xb9\x7d" "\xfb\x56\xab\x7d\xfb\x56\xeb\x5a\xaf\x9c\x64\x26\x49\x23\x69\x76\x57\x29" "\xae\x27\xc5\xa7\xc9\xb9\x74\x97\x7c\xa1\xdc\x59\x0f\x57\xec\x74\x9c\x57" "\xee\x7c\xfc\xfe\xf1\xf7\x3e\x6c\x75\xb7\x9a\xf5\x52\xb5\x6f\xec\xd6\x6f" "\xc8\x3d\x5b\x6e\xd4\x4b\x8e\x26\x99\xaa\xd7\x0f\x61\xdb\x78\x17\x1f\x7a" "\xbc\xa2\x1f\x77\x99\xb0\x63\xbd\xc4\xc1\xb8\x75\x86\x6c\x8c\xd2\x7d\xef" "\xd7\x2d\x30\xb1\x8a\xee\xf3\xe6\x90\xf9\xe4\x60\x92\xd9\xfa\x75\x40\xea" "\xbb\x43\xe3\xc9\x46\xf7\xe8\x8d\x74\x97\x03\x00\x00\x80\x7d\xea\xa9\xcd" "\x6c\x66\x3d\x87\xc6\x1d\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xec\x27" "\xf5\xef\xff\x17\xf5\xd2\xe8\x95\x8f\xa6\xe8\xfd\xfe\xff\x74\xb5\x6f\xba" "\x6a\x3e\x3d\xee\x78\x1f\xd6\x27\xe3\x0e\x00\x00\x00\x00\x00\x00\x00\x00" "\x1e\x81\x17\x37\xb3\x99\xf5\x1c\xea\x6d\x77\x8a\xea\x3b\xff\x97\xaa\x8d" "\xc3\xd5\xe3\xe7\xf2\x56\x6e\x64\x39\xab\x39\x99\xf5\x2c\x65\x2d\x6b\x59" "\xcd\x62\x92\xf9\xaa\xfe\xdd\xea\x71\x7a\x7d\x69\x6d\x6d\x75\x71\xa7\x9e" "\x9d\x4e\xe7\x66\x67\xaa\xea\x79\xba\xdf\x33\x03\x3d\x4f\x0f\x85\x56\xec" "\x1e\x79\x67\xe6\xa1\x4f\x1e\x00\x00\x00\x00\x00\x00\x00\xf6\x99\x5d\xbe" "\x2c\xff\x45\xce\x6f\x7d\xff\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x93\xa0\x48\xa6\xba\xab\x6a\x39\xdc\x2b\xcf\xa7\xd1\x4c\x32\x9b\x64" "\xba\x6c\xb7\x91\xfc\xb5\x57\xde\xcf\x3e\x19\x77\x00\x00\x00\x00\xf0\x04" "\x3c\xb5\x99\xcd\xac\xe7\x50\xf1\xdf\xee\x76\xa7\xa8\xde\xf3\x3f\x57\xbd" "\xef\x9f\xcd\x5b\xb9\x9e\xb5\xac\x64\x2d\xed\x2c\xe7\x52\xf5\x59\x40\xf7" "\x5d\x7f\xe3\x9f\x1b\xad\xf6\xed\x5b\xad\x6b\xe5\x32\x3c\xee\xf7\xfe\x33" "\x52\x18\xd5\x88\xe9\x7e\xf6\x70\xef\x23\x2f\x54\x2d\x8e\xd4\xed\x37\x92" "\xfc\x30\x3f\xce\x89\x1c\xcd\x85\xac\x66\x25\x3f\xcd\x52\xd6\xb2\x9c\xa3" "\xf9\x41\x55\x5a\x4a\x91\xf9\x6a\xac\x7f\x7f\x27\xa9\xe3\x1c\x8a\x77\xa6" "\x7c\x38\xb7\x2d\x94\x0b\xf7\x8b\xf5\x85\x2a\x92\xb9\x5c\xce\x4a\x15\xdb" "\xc9\x5c\xec\x7f\x0c\xd2\xe8\xb5\x19\x38\xda\x9f\xa7\x93\x6d\x19\x6a\xe4" "\xdd\x32\x3b\xc5\x77\x6b\x7b\xcc\xd1\xa5\x7a\x5d\xfe\x0d\x7e\x57\xaf\x27" "\xc3\x7c\x75\x52\x07\xfa\x19\x59\xa8\x73\x5f\x66\xe3\xe9\xdb\x3b\xe5\xbe" "\xd2\x9d\x27\x33\xa3\x1f\xa9\x59\xef\x69\xf4\x3f\x83\x3a\xbc\xdb\x91\x1e" "\x30\xe7\x07\xeb\x75\x99\xeb\xdf\x0c\xe6\xfc\xc5\xbd\x46\xfc\xb8\x0c\xe6" "\xbc\x8c\xea\x74\x1a\xfd\xd9\xf7\xdc\xee\x39\x4f\xbe\xfa\xaf\xbf\x5d\xb8" "\xd2\xbe\x7e\xf5\xca\xe5\x1b\x27\x26\x67\x1a\xed\xa8\xd3\xe9\xdc\xdc\xb9" "\xf6\xee\xd9\xd7\xea\x67\x62\x36\xcf\xef\x3d\x13\x1b\x3b\x64\xe2\xa3\xed" "\x9b\x53\xf7\x6a\x33\x3b\xe2\x09\x3d\x26\xd3\x75\x36\xba\x31\x6e\xdd\x2d" "\x93\xf3\x83\x77\xcb\x4e\x27\x19\xba\x5b\xbe\x54\xf5\x3d\x94\x95\xfc\x28" "\x6f\xe4\x52\x96\x73\x26\x0b\x59\xcc\xd9\x2c\xe4\x9b\x39\x9d\xd6\xb6\x19" "\x76\x64\xf7\xbc\x56\xd7\x5a\x63\xb4\x6b\xed\xd8\x57\xea\xc2\x5c\x92\xdf" "\xd6\xeb\xc9\x50\xe6\xf5\xe9\x81\xbc\x0e\xde\xe9\xe6\xab\xba\xc1\x3d\x5b" "\x59\x7a\x66\x0f\x59\x1a\xf1\x8e\xd4\xfc\x62\x5d\x28\x8f\xf1\xcb\x81\x67" "\x9c\xf1\xbb\x3b\x13\x8b\x03\x99\x78\x76\xf7\x4c\xfc\xbe\x9c\x91\xb9\xd1" "\xbe\x7e\x75\xf5\xca\xd2\x9b\x7b\x3c\xde\xf1\x7a\x5d\x5e\xb6\xbf\xde\xfe" "\x7c\xf8\x87\x47\x71\x3e\x0f\xae\x9c\x2f\xcf\x94\x7f\xac\x6a\x6b\xfb\xec" "\x28\xeb\x9e\xbd\x67\xdd\x62\x55\x77\xb8\x5f\xd7\x18\xaa\x3b\xd2\xaf\xbb" "\xdf\x95\x3a\x5d\xbf\x86\x1b\x1e\xa9\x5b\xf7\xfc\x3d\xeb\x5a\x55\xdd\x0b" "\x03\x75\xdb\x5e\xe5\xe4\x8d\xb4\xfb\xaf\x42\x00\x98\x14\x9d\xe1\x5d\x07" "\x5f\x3e\x38\x3d\x77\x67\xee\x1f\x73\x1f\xcc\xfd\x6a\xee\xca\xdc\xab\xb3" "\xdf\x9f\x39\x3b\xf3\xa5\xe9\x1c\xf8\x7b\xf3\x2f\x53\x7f\x6a\xfc\xb1\xf1" "\xed\xe2\xe5\x7c\x90\x9f\xe7\xd0\x38\x02\x06\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xff\x37" "\x37\xde\x7e\xe7\xea\x52\xbb\xbd\xbc\x3a\x81\x85\x34\x46\xeb\x55\x9e\xcf" "\xb8\x63\x9e\xd8\xc2\x4c\x92\x51\x7a\x75\x6e\x76\x3a\x45\xf3\xd1\x86\xf1" "\x51\x92\x07\xee\xde\xfb\xad\xc0\xde\x9e\x2f\xb7\x97\xf3\xf9\x5d\x7a\x35" "\x07\x66\xf8\x56\xaf\x89\xf8\x5b\x3c\x7c\xe1\x5b\x3f\xa9\x93\x71\x9f\xc6" "\xcd\xd1\x2e\xf3\xb9\x7a\xc0\xc9\xf9\x71\x31\xe0\xf1\x39\xb5\x76\xed\xcd" "\x53\x37\xde\x7e\xe7\x6b\x2b\xd7\x96\x5e\x5f\x7e\x7d\xf9\xfa\xe9\xb3\x67" "\xce\x9e\x69\x7d\x63\xf1\xeb\xa7\x2e\xaf\xb4\x97\x17\xba\x8f\xe3\x8e\x12" "\x78\x1c\xb6\x9e\xfd\xc7\x1d\x09\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb0" "\x57\x4f\xe2\x3f\x16\xc6\x7d\x8e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\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\xfe\x76\xfe\xb5\x1c\xd8" "\x48\x91\xc5\x85\x93\x0b\xe5\xf6\xed\x5b\xad\x76\xb9\xf4\xca\x5b\x2d\x9b" "\x49\x1a\x49\x8a\x9f\x25\xc5\xa7\xc9\xb9\x74\x97\xcc\x0f\x0c\x57\xec\x74" "\x9c\x57\xee\x7c\xfc\xfe\xf1\xf7\x3e\x6c\x6d\x8d\xd5\xec\xb5\x6f\xec\xd6" "\x6f\x6f\x36\xea\x25\x47\x93\x4c\xd5\xeb\xbb\x1b\x0c\x9b\xd9\xd3\x78\x17" "\x07\xc7\x6b\x3c\x48\x78\x45\xff\x0c\xcb\x84\x1d\xeb\x25\x0e\xc6\xed\x7f" "\x01\x00\x00\xff\xff\x15\xe8\x01\xd8", 1683); syz_mount_image(/*fs=*/0x200000003000, /*dir=*/0x200000000240, /*flags=MS_SILENT|MS_RELATIME*/ 0x208000, /*opts=*/0x200000003f80, /*chdir=*/0xfd, /*size=*/0x693, /*img=*/0x200000000980); } int main(void) { syscall(__NR_mmap, /*addr=*/0x1ffffffff000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200000000000ul, /*len=*/0x1000000ul, /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); syscall(__NR_mmap, /*addr=*/0x200001000000ul, /*len=*/0x1000ul, /*prot=*/0ul, /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/(intptr_t)-1, /*offset=*/0ul); setup_cgroups(); const char* reason; (void)reason; if ((reason = setup_802154())) printf("the reproducer may not work as expected: 802154 injection setup " "failed: %s\n", reason); for (procid = 0; procid < 5; procid++) { if (fork() == 0) { use_temporary_dir(); do_sandbox_none(); } } sleep(1000000); return 0; }