// https://syzkaller.appspot.com/bug?id=e929c51450d794bbae029fb6f3e754d83794fbf1
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <dirent.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <time.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_ioctl
#define __NR_ioctl 29
#endif
#ifndef __NR_memfd_create
#define __NR_memfd_create 279
#endif
#ifndef __NR_mmap
#define __NR_mmap 222
#endif
#ifndef __NR_sendmsg
#define __NR_sendmsg 211
#endif
#ifndef __NR_socket
#define __NR_socket 198
#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 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;
}

//% 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");
  }
  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;
}

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 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);
  }
}

static void setup_test()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  setpgrp();
  write_file("/proc/self/oom_score_adj", "1000");
}

static void execute_one(void);

#define WAIT_FLAGS __WALL

static void loop(void)
{
  int iter = 0;
  for (;; iter++) {
    reset_loop();
    int pid = fork();
    if (pid < 0)
      exit(1);
    if (pid == 0) {
      setup_test();
      execute_one();
      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;
    }
  }
}

uint64_t r[1] = {0xffffffffffffffff};

void execute_one(void)
{
  intptr_t res = 0;
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  *(uint64_t*)0x20000180 = 0;
  *(uint32_t*)0x20000188 = 0;
  *(uint64_t*)0x20000190 = 0x20000000;
  *(uint64_t*)0x20000000 = 0;
  *(uint64_t*)0x20000008 = 0;
  *(uint64_t*)0x20000010 = 0x20000580;
  memcpy(
      (void*)0x20000580,
      "\xd4\xfa\x0c\x51\x1a\xad\x03\xaa\x5e\xd2\x17\x67\x7b\xc4\x1c\x02\x7d\x9c"
      "\x83\x0c\x43\x9c\x7f\x82\x1d\xdd\x78\xb6\x91\x5c\xb1\x70\xe7\x60\x3a\xcf"
      "\x9e\x43\x3c\x29\x03\xbb\x67\x73\xf4\xb0\x13\x06\x68\xa1\xe5\xb5\xe0\x8d"
      "\x21\xd0\xb6\x9c\x28\xca\x34\x55\xae\xd6\x58\x55\xc8\x6f\x3d\x1e\x57\x89"
      "\xd2\x63\x75\xa0\xd8\x5e\xaf\x5e\x92\xe1\x9c\x9a\xff\xcf\x76\xe7\xa9\x4e"
      "\x76\x55\x6d\x2b\x10\x4e\xbf\x64\x57\x47\xfa\xdc\x91\x46\x0f\x4b\x3c\x94"
      "\xe1\xa8\x9b\x51\xbe\x4a\x6a\xa4\xc6\x52\x85\xf9\x88\x32\x9a\x81\x63\xb6"
      "\x9c\x51\xb8\x01\x50\x0a\x5b\xac\xd0\x46\x39\x76\xe2\x96\x0e\x26\x79\xef"
      "\x2f\xee\xe5\xe6\xce\x6b\xb7\x8a\x51\xfb\x0e\x15\x82\x0d\x13\xe4\xa5\xaa"
      "\x9e\x07\x42\xa6\xf8\xd6\x77\xad\x28\xfe\xa3\x56\x65\x7b\xb5\x50\xc8\x31"
      "\x1b\x68\x2d\x90\x03\xc8\x22\x67\xa1\x5a\xa7\x33\x4b\xc5\x3b\x65\xb9\x11"
      "\x9a\x1a\x7d\x90\x5c\x7d\xd3\x65\xb8\x5c\x23\x0b\xba\xd0\xd5\xd0\xa7\x98"
      "\x19\xe1\x12\x63\x78\x19\xd9\xa1\x87\xcf\xdf\x78\x2c\x61\x27\xd2\xd4\x28"
      "\x19\x26\xab\x0e\x22\xf7\x34\x6b\x61\x6f\xe2\x8e\xd0\xb9\xf4\xa0\xc9\xfd"
      "\xac\x6d\x3a\x90\xa9\xc3\x8b\x5e\x31\x44\x8a\x45\x54\x63\x88\xc9\x50\x45"
      "\xbc\x22\xfe\x88\xc4\x3b\x82\xa0\xa5\xd3\xeb\x61\xc2\x38\xa5\x15\x9e\xa9"
      "\x8d\xb9\xc0\x0a\xee\xf6\x44\xae\x98\xa8\xcb\x8d\xff\xff\x3b\x7b\xa1\x4d"
      "\x79\x71\x91\x0b\x55\x96\x23\xaf\x82\x95",
      316);
  *(uint64_t*)0x20000018 = 0x13c;
  *(uint64_t*)0x20000198 = 2;
  *(uint64_t*)0x200001a0 = 0;
  *(uint64_t*)0x200001a8 = 0;
  *(uint32_t*)0x200001b0 = 0;
  syscall(__NR_sendmsg, /*fd=*/-1, /*msg=*/0x20000180ul, /*f=*/0ul);
  res = syscall(__NR_socket, /*domain=*/0x10ul, /*type=*/3ul, /*proto=*/0x10);
  if (res != -1)
    r[0] = res;
  memcpy((void*)0x200001c0, "exfat\000", 6);
  memcpy((void*)0x20000000, "./file1\000", 8);
  memcpy((void*)0x20001a80, "uid=", 4);
  sprintf((char*)0x20001a84, "0x%016llx", (long long)-1);
  memcpy((void*)0x20001a96,
         ",errors=continue,namecase=1,allow_utime=00000000000000000000011,"
         "iocharset=iso8859-9,gid=",
         88);
  sprintf((char*)0x20001aee, "0x%016llx", (long long)0);
  memcpy((void*)0x20001b00, ",giu=", 5);
  sprintf((char*)0x20001b05, "0x%016llx", (long long)-1);
  memcpy((void*)0x20001b17,
         ",errors=remount-ro,errors=remount-ro,namecase=1,utf8,utf8,"
         "smackfsfloor=],silent,context=staff_u,smackfsfloor=+\\,smackfsroot="
         "cpuacct.usage_sys\000,\000",
         144);
  memcpy(
      (void*)0x20000440,
      "\x78\x9c\xec\xdc\x0b\x98\x8d\x55\xfb\x30\xf0\xfb\x5e\x6b\x3d\x63\x48\xda"
      "\x4d\x72\x18\xd6\x5a\xf7\xc3\x4e\x0e\xcb\x24\x49\x0e\x49\x72\x48\x92\x24"
      "\x49\x72\x4a\x48\x9a\x24\x49\x48\x0c\x39\x25\x0d\x49\x48\x0e\x43\x72\x18"
      "\x42\x72\x98\x98\x34\xce\xe7\x43\xce\x49\x92\x34\x49\x92\x53\x4e\xc9\xfa"
      "\xae\x29\x3e\x6f\x6f\xbd\x5f\xff\xfe\x6f\xdf\xdf\xff\x7a\xe7\xfe\x5d\xd7"
      "\x73\xed\x75\xef\xe7\xb9\xd7\xbe\x9f\x7d\xef\xc3\xda\xcf\xc5\x7c\xd7\x65"
      "\x68\xcd\xc6\xb5\xaa\x35\x24\x22\xf8\xb7\xe0\xaf\x37\x49\x00\x10\x0b\x00"
      "\x03\x01\xe0\x1a\x00\x08\x00\xa0\x5c\x5c\xb9\xb8\xac\xfd\x39\x25\x26\xfd"
      "\x7b\x0f\xc2\xfe\x5e\x0f\xa5\x5e\xe9\x0a\xd8\x95\xc4\xfd\xcf\xde\xb8\xff"
      "\xd9\x1b\xf7\x3f\x7b\xe3\xfe\x67\x6f\xdc\xff\xec\x8d\xfb\x9f\xbd\x71\xff"
      "\xb3\x37\xee\x3f\x63\xd9\xd9\xe6\xe9\x05\xaf\xe5\x2d\xfb\x6e\x7c\xfd\x3f"
      "\x3b\xe3\xef\xff\xff\x20\x99\xa5\xc7\x7e\xb5\xb6\xf4\xf5\x5d\xff\x42\x0a"
      "\xf7\x3f\x7b\xe3\xfe\xff\xc7\x0a\xfe\x2b\x07\x71\xff\xb3\x37\xee\x7f\xf6"
      "\xc6\xfd\xcf\xde\xb8\xff\xd9\x41\x8e\x7f\xb9\x87\xfb\x9f\xbd\x71\xff\x19"
      "\xcb\xce\xae\xf4\xf5\x67\xde\xae\xec\x76\xa5\x5f\x7f\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xb2\x87\x33"
      "\xfe\x32\x05\x00\x97\xc6\x57\xba\x2e\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\xfd\x7d\x7c\x8e\x2b\x5d\x01\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xfe\xff"
      "\x43\x10\x20\x41\x41\x00\x31\x90\x03\x62\x21\x27\xe4\x02\x01\x00\x57\x43"
      "\x1e\xb8\x06\x22\x70\x2d\xc4\xc1\x75\x90\x17\xae\x87\x7c\x90\x1f\x0a\x40"
      "\x41\x88\x87\x42\x50\x18\x34\x18\xb0\x40\x10\x42\x11\x28\x0a\x51\xb8\x01"
      "\x8a\xc1\x8d\x50\x1c\x4a\x40\x49\x28\x05\x0e\x4a\x43\x02\xdc\x04\x65\xe0"
      "\x66\x28\x0b\xb7\x40\x39\xb8\x15\xca\xc3\x6d\x50\x01\x2a\x42\x25\xa8\x0c"
      "\xb7\x43\x15\xb8\x03\xaa\xc2\x9d\x50\x0d\xee\x82\xea\x50\x03\x6a\x42\x2d"
      "\xb8\x1b\x6a\xc3\x3d\x50\x07\xee\x85\xba\x70\x1f\xd4\x83\xfb\xa1\x3e\x3c"
      "\x00\x0d\xe0\x41\x68\x08\x0f\x41\x23\x78\x18\x1a\xc3\x23\xd0\x04\x1e\x85"
      "\xa6\xd0\x0c\x9a\x43\x0b\x68\xf9\xdf\xca\x7f\x11\x7a\xc0\x4b\xd0\x13\x7a"
      "\x41\x12\xf4\x86\x3e\xf0\x32\xf4\x85\x7e\xd0\x1f\x06\xc0\x40\x78\x05\x06"
      "\xc1\xab\x30\x18\x5e\x83\x64\x18\x02\x43\xe1\x75\x18\x06\x6f\xc0\x70\x78"
      "\x13\x46\xc0\x48\x18\x05\x6f\xc1\x68\x78\x1b\xc6\xc0\x58\x18\x07\xe3\x21"
      "\x05\x26\xc0\x44\x78\x07\x26\xc1\xbb\x30\x19\xa6\xc0\x54\x98\x06\xa9\x30"
      "\x1d\x66\xc0\x7b\x30\x13\x66\xc1\x6c\x78\x1f\xe6\xc0\x07\x30\x17\xe6\xc1"
      "\x7c\x58\x00\x69\xf0\x21\x2c\x84\x45\x90\x0e\x1f\xc1\x62\xf8\x18\x32\x60"
      "\x09\x2c\x85\x65\xb0\x1c\x56\xc0\x4a\x58\x05\xab\x61\x0d\xac\x85\x75\xb0"
      "\x1e\x36\xc0\x46\xd8\x04\x9b\xe1\x13\xd8\x02\x5b\x61\x1b\x6c\x87\x1d\xb0"
      "\x13\x76\xc1\xa7\xb0\x1b\x3e\x83\x3d\xf0\x39\xec\x85\x2f\xfe\x62\xfe\xe9"
      "\x7f\xca\xef\x8a\x80\x80\x02\x05\x2a\x54\x18\x83\x31\x18\x8b\xb1\x98\x0b"
      "\x73\x61\x6e\xcc\x8d\x79\x30\x0f\x46\x30\x82\x71\x18\x87\x79\x31\x2f\xe6"
      "\xc3\x7c\x58\x00\x0b\x60\x3c\xc6\x63\x61\x2c\x8c\x06\x0d\x12\x12\x16\xc1"
      "\x22\x18\xc5\x28\x16\xc3\x62\x58\x1c\x8b\x63\x49\x2c\x89\x0e\x1d\x26\x60"
      "\x02\x96\xc1\x9b\xb1\x2c\x96\xc5\x72\x58\x0e\xcb\x63\x79\xac\x80\x15\xb1"
      "\x22\x56\xc6\xca\x58\x05\xab\x60\x55\xac\x8a\xd5\xb0\x1a\x56\xc7\xea\x58"
      "\x13\x6b\xe2\xdd\x78\x37\xf6\xc6\x3a\x58\x07\xeb\x62\x5d\xac\x87\xf5\x2e"
      "\x5d\x9e\xc2\x86\xd8\x10\x1b\x61\x23\x6c\x8c\x8d\xb1\x09\x36\xc1\xa6\xd8"
      "\x14\x9b\x63\x73\x6c\x89\x2d\xb1\x15\xb6\xc2\xd6\xd8\x1a\xdb\x62\x5b\x6c"
      "\x87\xed\xb0\x3d\xb6\xc7\x44\x4c\xc4\x0e\xd8\x01\x3b\x62\x47\xec\x84\x9d"
      "\xb0\x33\x76\xc6\x2e\xd8\x05\xbb\x62\x37\xec\x86\x2f\xe6\x00\x7c\x09\x5f"
      "\xc2\x5e\x58\x5d\xf4\xc6\x3e\xd8\x07\xfb\x62\x5f\xec\x8f\x03\x70\x00\xbe"
      "\x82\x83\xf0\x55\x7c\x15\x5f\xc3\x64\x1c\x82\x43\xf1\x75\x7c\x1d\xdf\xc0"
      "\xe1\x78\x0a\x47\xe0\x48\x1c\x85\xa3\xb0\x8a\x78\x1b\xc7\xe0\x58\x24\x31"
      "\x1e\x53\x30\x05\x27\xe2\x44\x9c\x84\x93\x70\x32\x4e\xc1\x29\x38\x0d\x53"
      "\x71\x3a\xce\xc0\x19\x38\x13\x67\xe1\x2c\x7c\x1f\xe7\xe0\x07\xf8\x01\xce"
      "\xc3\x79\xb8\x00\xd3\x30\x0d\x17\xe2\x22\x4c\xc7\x74\x5c\x8c\xa7\x31\x03"
      "\x97\xe0\x52\x5c\x86\xcb\x71\x05\x2e\xc7\x55\xb8\x1a\x57\xe1\x5a\x5c\x87"
      "\x6b\x71\x03\x6e\xc0\x4d\xb8\x09\x3f\xc1\x4f\x70\x2b\x6e\xc5\xed\xb8\x1d"
      "\x77\xa2\x02\xc0\x4f\xf1\x33\xfc\x0c\x93\x71\x2f\xee\xc5\x7d\xb8\x0f\xf7"
      "\xe3\x7e\x3c\x80\x07\x30\x13\x33\xf1\x20\x1e\xc4\x43\x78\x08\x0f\xe3\x61"
      "\x3c\x82\x47\xf0\x28\x1e\xc3\xe3\x78\x0c\x4f\xe2\x49\x3c\x85\xa7\xf1\x0c"
      "\x9e\xc1\x73\x78\x0e\xcf\xe3\xf3\xf1\xdf\x34\xda\x59\x62\x4d\x32\x88\x2c"
      "\x4a\x28\x11\x23\x62\x44\xac\x88\x15\xb9\x44\x2e\x91\x5b\xe4\x16\x79\x44"
      "\x1e\x11\x11\x11\x11\x27\xe2\x44\x5e\x91\x57\xe4\x13\xf9\x44\x01\x51\x40"
      "\xc4\x8b\x78\x51\x58\x14\x16\x46\x18\x41\x22\x8c\x01\x00\x11\x15\x51\x51"
      "\x4c\x14\x13\xc5\x45\x71\x51\x52\x94\x14\x4e\x38\x91\x20\x12\x44\x19\x51"
      "\x46\x94\x15\x65\x45\x39\x71\xab\x28\x2f\x6e\x13\x15\x44\x45\xd1\xc6\x55"
      "\x16\x95\x45\x15\xd1\xd6\x55\x15\x77\x8a\x6a\xa2\x9a\xa8\x2e\x6a\x88\x9a"
      "\xa2\x96\xa8\x25\x6a\x8b\xda\xa2\x8e\xa8\x23\xea\x8a\xba\xa2\x9e\xa8\x27"
      "\xea\x8b\x07\x44\x03\xd1\x1b\xfb\xe3\x43\x22\xab\x33\x8d\xc5\x10\x6c\x22"
      "\x86\x62\x53\xd1\x4c\xc8\x8b\x9f\x60\xad\xc4\x70\x6c\x2d\xda\x88\xb6\xe2"
      "\x09\x31\x12\x47\x60\x7b\xd1\xca\x25\x8a\xa7\x45\x07\x31\x06\x3b\x8a\x67"
      "\xc5\x58\x7c\x4e\x74\x16\xe3\xb1\x8b\x78\x41\x74\x15\xdd\x44\x77\xf1\xa2"
      "\xe8\x21\x5a\xbb\x9e\xa2\x97\x98\x8c\xbd\x45\x1f\x31\x0d\xfb\x8a\x7e\xa2"
      "\xbf\x18\x20\x66\x62\x0d\x91\xd5\xb1\x9a\xe2\x35\x91\x2c\x86\x88\xa1\xe2"
      "\x75\xb1\x00\xdf\x10\xc3\xc5\x9b\x62\x84\x18\x29\x46\x89\xb7\xc4\x68\xf1"
      "\xb6\x18\x23\xc6\x8a\x71\x62\xbc\x48\x11\x13\xc4\x44\xf1\x8e\x98\x24\xde"
      "\x15\x93\xc5\x14\x31\x55\x4c\x13\xa9\x62\xba\x98\x21\xde\x13\x33\xc5\x2c"
      "\x31\x5b\xbc\x2f\xe6\x88\x0f\xc4\x5c\x31\x4f\xcc\x17\x0b\x44\x9a\xf8\x50"
      "\x2c\x14\x8b\x44\xba\xf8\x48\x2c\x16\x1f\x8b\x0c\xb1\x44\x2c\x15\xcb\xc4"
      "\x72\xb1\x42\xac\x14\xab\xc4\x6a\xb1\x46\xac\x15\xeb\xc4\x7a\xb1\x41\x6c"
      "\x14\x9b\xc4\x66\xf1\x89\xd8\x22\xb6\x8a\x6d\x62\xbb\xd8\x21\x76\x8a\x5d"
      "\xe2\x53\xb1\x5b\x7c\x26\xf6\x88\xcf\xc5\x5e\xf1\x85\xd8\x27\xbe\x14\xfb"
      "\xc5\x57\xe2\x80\xf8\x5a\x64\x8a\x6f\xc4\x41\xf1\xad\x38\x24\xbe\x13\x87"
      "\xc5\xf7\xe2\x88\xf8\x41\x1c\x15\xc7\xc4\x71\x71\x42\x9c\x14\x3f\x8a\x53"
      "\xe2\xb4\x38\x23\xce\x8a\x73\xe2\x27\x71\x5e\xfc\x2c\x2e\x08\x2f\x40\xa2"
      "\x14\x52\x4a\x25\x03\x19\x23\x73\xc8\x58\x99\x53\xe6\x92\x57\xc9\xdc\x32"
      "\xb8\xf8\xec\x5e\x2b\xe3\xe4\x75\x32\xaf\xbc\x5e\xe6\x93\xf9\x65\x01\x59"
      "\x50\xc6\xcb\x42\xb2\xb0\xd4\xd2\x48\x2b\x49\x86\xb2\x88\x2c\x2a\xa3\xf2"
      "\x06\x59\x4c\xde\x28\x8b\xcb\x12\xb2\xa4\x2c\x25\x9d\x2c\x2d\x13\xe4\x4d"
      "\xb2\x8c\xbc\x59\x96\x95\xb7\xc8\x72\xf2\x56\x59\x5e\xde\x26\x2b\xc8\x8a"
      "\xb2\x92\xac\x2c\x6f\x97\x55\xe4\x1d\xb2\xaa\xbc\x53\x56\x93\x77\xc9\xea"
      "\xb2\x86\xac\x29\x6b\xc9\xbb\x65\x6d\x79\x8f\xac\x23\xef\x95\x75\xe5\x7d"
      "\xb2\x9e\xbc\x5f\xd6\x97\x0f\xc8\x06\xf2\x41\xd9\x50\x3e\x24\x1b\xc9\x87"
      "\x65\x63\xf9\x88\x6c\x22\x1f\x95\x4d\x65\x33\xd9\x5c\xb6\x90\x2d\xe5\x63"
      "\xb2\x95\x7c\x5c\xb6\x96\x6d\x64\x5b\xf9\x84\x6c\x27\x9f\x94\xed\xe5\x53"
      "\x32\x51\x3e\x2d\x3b\xc8\x67\x64\x47\xf9\xac\xec\x24\x9f\x93\x9d\xe5\xf3"
      "\xb2\x8b\x7c\x41\x76\x95\xdd\x64\x77\xf9\xb3\xbc\x20\xbd\xec\x29\x7b\xc9"
      "\x24\xd9\x5b\xf6\x91\x2f\xcb\xbe\xb2\x9f\xec\x2f\x07\xc8\x81\xf2\x15\x39"
      "\x48\xbe\x2a\x07\xcb\xd7\x64\xb2\x1c\x22\x87\xca\xd7\xe5\x30\xf9\x86\x1c"
      "\x2e\xdf\x94\x23\xe4\x48\x39\x4a\xbe\x25\x47\xcb\xb7\xe5\x18\x39\x56\x8e"
      "\x93\xe3\x65\x8a\x9c\x20\x27\xca\x77\xe4\x24\xf9\xae\x9c\x2c\xa7\xc8\xa9"
      "\x72\x9a\x4c\x95\xd3\x65\xff\x8b\x33\xcd\x96\xf2\x4f\xf3\xdf\xf9\x83\xfc"
      "\xc1\xbf\x3c\xfa\x26\xb9\x59\x7e\x22\xb7\xc8\xad\x72\x9b\xdc\x2e\x77\xc8"
      "\x9d\x72\x97\xdc\x25\x77\xcb\xdd\x72\x8f\xdc\x23\xf7\xca\xbd\x72\x9f\xdc"
      "\x27\xf7\xcb\xfd\xf2\x80\x3c\x20\x33\x65\xa6\x3c\x28\x0f\xca\x43\xf2\x90"
      "\x3c\x2c\x0f\xcb\x23\xf2\x88\x3c\x2a\x8f\xc9\xb3\xf2\x84\x3c\x29\x7f\x94"
      "\xa7\xe4\x69\x79\x5a\x9e\x95\xe7\xe4\x39\x79\xfe\xe2\x73\x00\x0a\x95\x50"
      "\x52\x29\x15\xa8\x18\x95\x43\xc5\xaa\x9c\x2a\x97\xba\x4a\xe5\x56\x57\xab"
      "\x3c\xea\x1a\x15\x51\xd7\xaa\x38\x75\x9d\xca\xab\xae\x57\xf9\x54\x7e\x55"
      "\x40\x15\x54\xf1\xaa\x90\x2a\xac\xb4\x32\xca\x2a\x52\xa1\x2a\xa2\x8a\xaa"
      "\xa8\xba\x01\x2f\xbe\x60\x54\x49\x55\x4a\x39\x55\x5a\x25\xa8\x9b\xfe\x4a"
      "\xbe\x2a\xa6\x6e\x54\xc5\x55\x89\xdf\xe4\xff\x59\x7d\x2d\x55\x4b\xd5\x4a"
      "\xb5\x52\xad\x55\x6b\xd5\x56\xb5\x55\xed\x54\x3b\xd5\x5e\xb5\x57\x89\x2a"
      "\x51\x75\x50\x1d\x54\x47\xd5\x51\x75\x52\x9d\x54\x67\xd5\x59\x75\x51\x5d"
      "\x54\x57\xd5\x55\x75\x57\xdd\x55\x0f\xd5\x43\xf5\x54\x3d\x55\x92\x4a\x52"
      "\x7d\xd4\xcb\xaa\xaf\xea\xa7\xfa\xab\x01\x6a\xa0\x7a\x45\x0d\x52\x83\xd4"
      "\x60\x35\x58\x25\xab\x64\x35\x54\x0d\x55\xc3\xd4\x30\x35\x5c\x0d\x57\x23"
      "\xd4\x08\x35\x4a\x8d\x52\xa3\xd5\x68\x35\x46\x8d\x51\xe3\xd4\x38\x95\xa2"
      "\x52\xd4\x44\x35\x51\x4d\x52\x93\xd4\x64\x35\x59\x4d\x55\x53\x55\xaa\x4a"
      "\x55\x33\xd4\x0c\x35\x53\xcd\x54\xb3\xd5\x6c\x35\x47\xcd\x51\x73\xd5\x5c"
      "\x35\x5f\xcd\x57\x69\x2a\x4d\x2d\x54\x0b\x55\xba\x4a\x57\x8b\xd5\x62\x95"
      "\xa1\x96\xa8\x25\x6a\x99\x5a\xa6\x56\xa8\x15\x6a\x95\x5a\xa5\xd6\xa8\x35"
      "\x6a\x9d\x5a\xa7\x36\xa8\x0d\x2a\x43\x6d\x56\x9b\xd5\x16\xb5\x45\x6d\x53"
      "\xdb\xd4\x0e\xb5\x43\xed\x52\xbb\xd4\x6e\xb5\x5b\xed\x51\x7b\xd4\x5e\xb5"
      "\x57\xed\x53\xfb\xd4\x7e\xb5\x5f\x1d\x50\x07\x54\xa6\xca\x54\x07\xd5\x41"
      "\x75\x48\x1d\x52\x87\xd5\x61\x75\x44\x1d\x51\x47\xd5\x51\x75\x5c\x1d\x57"
      "\x27\xd5\x49\x75\x4a\x9d\x52\x67\xd4\x19\x75\x4e\x9d\x53\xe7\xd5\x79\x75"
      "\x41\x5d\xc8\x5a\xf6\x05\x22\x10\x81\x0a\x54\x10\x13\xc4\x04\xb1\x41\x6c"
      "\x90\x2b\xc8\x15\xe4\x0e\x72\x07\x79\x82\x3c\x41\x24\x88\x04\x71\x41\x5c"
      "\x90\x37\xb8\x3e\xc8\x17\xe4\x0f\x0a\x04\x05\x83\xf8\xa0\x50\x50\x38\xd0"
      "\x81\x09\x6c\x20\x2e\x36\x3d\x1a\xdc\x10\x14\x0b\x6e\x0c\x8a\x07\x25\x82"
      "\x92\x41\xa9\xc0\x05\xa5\x83\x84\xe0\xa6\xa0\x4c\x70\x73\x50\x36\xb8\x25"
      "\x28\x17\xdc\x1a\x94\x0f\x6e\x0b\x2a\x04\x15\x83\x4a\x41\xe5\xe0\xf6\xa0"
      "\x4a\x70\x47\x50\x35\xb8\x33\xa8\x16\xdc\x15\x54\x0f\x6a\x04\x35\x83\x5a"
      "\xc1\xdd\x41\xed\xe0\x9e\xa0\x4e\x70\x6f\x50\x37\xb8\x2f\xa8\x17\xdc\x1f"
      "\xd4\x0f\x1e\x08\x1a\x04\x0f\x06\x0d\x83\x87\x82\x46\xc1\xc3\x41\xe3\xe0"
      "\x91\xa0\x49\xf0\x68\xd0\x34\x68\x16\x34\x0f\x5a\x04\x2d\xff\xd6\xf9\xbd"
      "\x3f\x95\xff\x71\xd7\x53\xf7\xd2\x49\xba\xb7\xee\xa3\x5f\xd6\x7d\x75\x3f"
      "\xdd\x5f\x0f\xd0\x03\xf5\x2b\x7a\x90\x7e\x55\x0f\xd6\xaf\xe9\x64\x3d\x44"
      "\x0f\xd5\xaf\xeb\x61\xfa\x0d\x3d\x5c\xbf\xa9\x47\xe8\x91\x7a\x94\x7e\x4b"
      "\x8f\xd6\x6f\xeb\x31\x7a\xac\x1e\xa7\xc7\xeb\x14\x3d\x41\x4f\xd4\xef\xe8"
      "\x49\xfa\x5d\x3d\x59\x4f\xd1\x53\xf5\x34\x9d\xaa\xa7\xeb\x19\xfa\x3d\x3d"
      "\x53\xcf\xd2\xb3\xf5\xfb\x7a\x8e\xfe\x40\xcf\xd5\xf3\xf4\x7c\xbd\x40\xa7"
      "\xe9\x0f\xf5\x42\xbd\x48\xa7\xeb\x8f\xf4\x62\xfd\xb1\xce\xd0\x4b\xf4\x52"
      "\xbd\x4c\x2f\xd7\x2b\xf4\x4a\xbd\x4a\xaf\xd6\x6b\xf4\x5a\xbd\x4e\xaf\xd7"
      "\x1b\xf4\x46\xbd\x49\x6f\xd6\x9f\xe8\x2d\x7a\xab\xde\xa6\xb7\xeb\x1d\x7a"
      "\xa7\xde\xa5\x3f\xd5\xbb\xf5\x67\x7a\x8f\xfe\x5c\xef\xd5\x5f\xe8\x7d\xfa"
      "\x4b\xbd\x5f\x7f\xa5\x0f\xe8\xaf\x75\xa6\xfe\x46\x1f\xd4\xdf\xea\x43\xfa"
      "\x3b\x7d\x58\x7f\xaf\x8f\xe8\x1f\xf4\x51\x7d\x4c\x1f\xd7\x27\xf4\x49\xfd"
      "\xa3\x3e\xa5\x4f\xeb\x33\xfa\xac\x3e\xa7\x7f\xd2\xe7\xf5\xcf\xfa\x82\xf6"
      "\x59\x8b\xfb\xac\xaf\x77\xa3\x8c\x32\x31\x26\xc6\xc4\x9a\x58\x93\xcb\xe4"
      "\x32\xb9\x4d\x6e\x93\xc7\xe4\x31\x11\x13\x31\x71\x26\xce\xe4\x35\x79\x4d"
      "\x3e\x93\xcf\x14\x30\x05\x4c\xbc\x89\x37\x85\x4d\x61\x93\x85\x0c\x99\x22"
      "\xa6\x88\x89\x9a\xa8\x29\x66\x8a\x99\xe2\xa6\xb8\x29\x69\x4a\x1a\x67\x9c"
      "\x49\x30\x09\xa6\x8c\x29\x63\xca\x9a\xb2\xa6\x9c\x29\x67\xca\x9b\xf2\xa6"
      "\x82\xa9\x60\x2a\x99\x4a\xe6\x76\x73\xbb\xb9\xc3\xdc\x61\xee\x34\x77\x9a"
      "\xbb\xcc\x5d\xa6\x86\xa9\x61\x6a\x99\x5a\xa6\xb6\xa9\x6d\xea\x98\x3a\xa6"
      "\xae\xa9\x6b\xea\x99\x7a\xa6\xbe\xa9\x6f\x1a\x98\x06\xa6\xa1\x69\x68\x1a"
      "\x99\x46\xa6\xb1\x69\x6c\x9a\x98\x26\xa6\xa9\x69\x6a\x9a\x9b\xe6\xa6\xa5"
      "\x69\x69\x5a\x99\x56\xa6\xb5\x69\x6d\xda\x9a\xb6\xa6\x9d\x69\x67\xda\x9b"
      "\xf6\x26\xd1\x24\x9a\x0e\xa6\x83\xe9\x68\x3a\x9a\x4e\xa6\x93\xe9\x6c\x3a"
      "\x9b\x2e\xa6\x8b\xe9\x6a\xba\x9a\xee\xa6\xbb\xe9\x61\x7a\x98\x9e\xa6\xa7"
      "\x49\x32\x49\xa6\x8f\xe9\x63\xfa\x9a\xbe\xa6\xbf\xe9\x6f\x06\x9a\x81\x66"
      "\x90\x19\x64\x06\x9b\xc1\x26\xd9\x24\x9b\xa1\x66\xa8\x19\x66\x86\x99\xe1"
      "\x66\xb8\x19\x61\x46\x9a\x51\xe6\x2d\x33\xda\xbc\x6d\xc6\x98\xb1\x66\x9c"
      "\x19\x6f\x52\x4c\x8a\x99\x68\x26\x9a\x49\x66\x92\x99\x6c\x26\x9b\xa9\x66"
      "\xaa\x49\x35\xa9\x66\x86\x99\x61\x66\x9a\x99\x66\xb6\x99\x6d\xe6\x98\x39"
      "\x66\xae\x99\x6b\xe6\x9b\xf9\x26\xcd\xa4\x99\x85\x66\xa1\x49\x37\xe9\x66"
      "\xb1\x59\x6c\x32\x4c\x86\x59\x6a\x96\x9a\xe5\x66\xb9\x59\x69\x56\x9a\xd5"
      "\x66\xb5\x59\x6b\xd6\x9a\xf5\xb0\xde\x6c\x34\x1b\xcd\x66\xb3\xd9\x6c\x31"
      "\x5b\xcc\x36\xb3\xcd\xec\x30\x3b\xcc\x2e\xb3\xcb\xec\x36\xbb\xcd\x1e\xb3"
      "\xc7\xec\x35\x7b\xcd\x3e\xb3\xcf\xec\x37\xfb\xcd\x01\x73\xc0\x64\x9a\x4c"
      "\x73\xd0\x1c\x34\x87\xcc\x21\x73\xd8\x1c\x36\x47\xcc\x11\x73\xd4\x1c\x35"
      "\xc7\xcd\x71\x73\xd2\x9c\x34\xa7\xcc\x29\x73\xc6\x9c\x31\xe7\x4c\xfe\x8b"
      "\x4b\x2a\x6f\x62\x6d\x4e\x9b\xcb\x5e\x65\x73\xdb\xab\x6d\x1e\x7b\x8d\xfd"
      "\xe7\xb8\x80\x2d\x68\xe3\x6d\x21\x5b\xd8\x6a\x9b\xcf\xe6\xff\x4d\x6c\xac"
      "\xb5\xc5\x6d\x09\x5b\xd2\x96\xb2\xce\x96\xb6\x09\xf6\xa6\xdf\xc5\x15\x6c"
      "\x45\x5b\xc9\x56\xb6\xb7\xdb\x2a\xf6\x0e\x5b\xf5\x77\x71\x6d\x7b\x8f\xad"
      "\x63\xef\xb5\x75\xed\x7d\xb6\x96\xbd\xfb\x37\x71\x3d\x7b\xbf\xad\x6f\x1f"
      "\xb1\x0d\x10\x01\x6c\x33\xdb\xc8\xb6\xb0\x8d\xed\x23\xb6\x89\x7d\xd4\x36"
      "\xb5\xcd\x6c\x73\xdb\xc2\xb6\xb3\x4f\xda\xf6\xf6\x29\x9b\x68\x9f\xb6\x1d"
      "\xec\x33\xbf\x8b\x17\xda\x45\x76\xb5\x5d\x63\xd7\xda\x75\x76\xb7\xfd\xcc"
      "\x9e\xb1\x67\xed\x21\xfb\x9d\x3d\x67\x7f\xb2\x3d\x6d\x2f\x3b\xd0\xbe\x62"
      "\x07\xd9\x57\xed\x60\xfb\x9a\x4d\xb6\x43\x7e\x17\x8f\xb2\x6f\xd9\xd1\xf6"
      "\x6d\x3b\xc6\x8e\xb5\xe3\xec\xf8\xdf\xc5\x53\xed\x34\x9b\x6a\xa7\xdb\x19"
      "\xf6\x3d\x3b\xd3\xce\xfa\x5d\x9c\x66\x3f\xb4\x73\x6c\xba\x9d\x6b\xe7\xd9"
      "\xf9\x76\xc1\x2f\x71\x56\x4d\xe9\xf6\x23\xbb\xd8\x7e\x6c\x33\xec\x12\xbb"
      "\xd4\x2e\xb3\xcb\xed\x0a\xbb\xd2\xae\xfa\xbf\xb5\x2e\xb3\x1b\xec\x46\xbb"
      "\xc9\xee\xb2\x9f\xda\x2d\x76\xab\xdd\x66\xb7\xdb\x1d\x76\xe7\x2f\x71\xd6"
      "\x79\xec\xb1\x9f\xdb\xbd\xf6\x0b\x7b\xd0\x7e\x6b\xf7\xdb\xaf\xec\x01\x7b"
      "\xd8\x66\xda\x6f\x7e\x89\xb3\xce\xef\xb0\xfd\xde\x1e\xb1\x3f\xd8\xa3\xf6"
      "\x98\x3d\x6e\x4f\xd8\x93\xf6\x47\x7b\xca\x9e\xfe\xe5\xfc\xb3\xce\xfd\x84"
      "\xfd\xd9\x5e\xb0\xde\x02\x21\x09\x92\xa4\x28\xa0\x18\xca\x41\xb1\x94\x93"
      "\x72\xd1\x55\x94\x9b\xae\xa6\x3c\x74\x0d\x45\xe8\x5a\x8a\xa3\xeb\x28\x2f"
      "\x5d\x4f\xf9\x28\x3f\x15\xa0\x82\x14\x4f\x85\xa8\x30\x69\x32\x64\x89\x28"
      "\xa4\x22\x54\x94\xa2\x74\x03\x5d\x5a\xa7\x97\xa4\x52\xe4\xa8\x34\x25\xd0"
      "\x4d\x54\x86\x6e\xa6\xb2\x74\x0b\x95\xa3\x5b\xa9\x3c\xdd\x46\x15\xa8\x22"
      "\x55\xa2\xca\x74\x3b\x55\xa1\x3b\xa8\x2a\xdd\x49\xd5\xe8\x2e\xaa\x4e\x35"
      "\xa8\x26\xd5\xa2\xbb\xa9\x36\xdd\x43\x75\xe8\x5e\xaa\x4b\xf7\x51\x3d\xba"
      "\x9f\xea\xd3\x03\xd4\x80\x1e\xa4\x86\xf4\x10\x35\xa2\x87\xa9\x31\x3d\x42"
      "\x4d\xe8\x51\x6a\x4a\xcd\xa8\x39\xb5\xa0\x96\xf4\x18\xb5\xa2\xc7\xa9\x35"
      "\xb5\xa1\xb6\xf4\x04\xb5\xa3\x27\xa9\x3d\x3d\x45\x89\xf4\x34\x75\xa0\x67"
      "\xa8\x23\x3d\x4b\x9d\xe8\x39\xea\x4c\xcf\x53\x17\x7a\x81\xba\x52\x37\xea"
      "\x4e\x2f\x52\x0f\x7a\x89\x7a\x52\x2f\x4a\xa2\xde\xd4\x87\x5e\xa6\xbe\xd4"
      "\x8f\xfa\xd3\x00\x1a\x48\xaf\xd0\x20\x7a\x95\x06\xd3\x6b\x94\x4c\x43\x68"
      "\x28\xbd\x4e\xc3\xe8\x0d\x1a\x4e\x6f\xd2\x08\x1a\x49\xa3\xe8\x2d\x1a\x4d"
      "\x6f\xd3\x18\x1a\x4b\xe3\x68\x3c\xa5\xd0\x04\x9a\x48\xef\xd0\x24\x7a\x97"
      "\x26\xd3\x14\x9a\x4a\xd3\x28\x95\xa6\xd3\x0c\x7a\x8f\x66\xd2\x2c\x9a\x4d"
      "\xef\xd3\x1c\xfa\x80\xe6\xd2\x3c\x9a\x4f\x0b\x28\x8d\x3e\xa4\x85\xb4\x88"
      "\xd2\xe9\x23\x5a\x4c\x1f\x53\x06\x2d\xa1\xa5\xb4\x8c\x96\xd3\x0a\x5a\x49"
      "\xab\x68\x35\xad\xa1\xb5\xb4\x8e\xd6\xd3\x06\xda\x48\x9b\x68\x33\x7d\x42"
      "\x5b\x68\x2b\x6d\xa3\xed\xb4\x83\x76\xd2\x2e\xfa\x94\x76\xd3\x67\xb4\x87"
      "\x3e\xa7\xbd\xf4\x05\xed\xa3\x2f\x69\x3f\x7d\x45\x07\xe8\x6b\xca\xa4\x6f"
      "\xe8\x20\x7d\x4b\x87\xe8\x3b\x3a\x4c\xdf\xfb\x5e\xf4\x03\x1d\xa5\x63\x74"
      "\x9c\x4e\xd0\x49\xfa\x91\x4e\xd1\x69\x3a\x43\x67\xe9\x1c\xfd\x44\xe7\xe9"
      "\x67\xba\x40\x9e\x20\xc4\x50\x84\x32\x54\x61\x10\xc6\x84\x39\xc2\xd8\x30"
      "\x67\x98\x2b\xbc\x2a\xcc\x1d\x5e\x1d\xe6\x09\xaf\x09\x23\xe1\xb5\x61\x5c"
      "\x78\x5d\x98\x37\xbc\x3e\xcc\x17\xe6\x0f\x0b\x84\x05\xc3\xf8\xb0\x50\x58"
      "\x38\xd4\xa1\x09\x6d\x48\x61\x18\x16\x09\x8b\x86\xd1\xf0\x86\xb0\x58\x78"
      "\x63\x58\x3c\x2c\x11\x96\x0c\x4b\x85\x2e\x2c\x1d\x26\x84\x37\x85\x65\xc2"
      "\x9b\xc3\xb2\xe1\x2d\x61\xb9\xf0\xd6\xb0\x7c\x78\x5b\x58\x21\xac\x18\x3e"
      "\x72\x5f\xe5\xf0\xf6\xb0\x4a\x78\x47\x58\x35\xbc\x33\xac\x16\xde\x15\x56"
      "\x0f\x6b\x84\x35\xc3\x5a\xe1\xdd\x61\xed\xf0\x9e\xb0\x4e\x78\x6f\x58\x37"
      "\xbc\x2f\x2c\x1b\xde\x1f\xd6\x0f\x1f\x08\x1b\x84\x0f\x86\x0d\xc3\x87\xc2"
      "\x46\xe1\xc3\x61\xe3\xf0\x91\xb0\x49\xf8\x68\xd8\x34\x6c\x16\x36\x0f\x5b"
      "\x84\x2d\xc3\xc7\xc2\x56\xe1\xe3\x61\xeb\xb0\x4d\xd8\x36\x7c\x22\x6c\x17"
      "\x3e\x19\xb6\x0f\x9f\x0a\x13\xc3\xa7\xc3\x0e\xe1\x33\x7f\xba\x3f\x29\xec"
      "\x1d\xf6\x09\x5f\x0e\x5f\x0e\xbd\xbf\x57\xce\x8f\x2e\x88\xa6\x45\x3f\x8c"
      "\x2e\x8c\x2e\x8a\xa6\x47\x3f\x8a\x2e\x8e\x7e\x1c\xcd\x88\x2e\x89\x2e\x8d"
      "\x2e\x8b\x2e\x8f\xae\x88\xae\x8c\xae\x8a\xae\x8e\xae\x89\xae\x8d\xae\x8b"
      "\xae\x8f\x6e\x88\x6e\x8c\x6e\x8a\x7a\x5f\x2b\x07\x38\x74\xc2\x49\xa7\x5c"
      "\xe0\x62\x5c\x0e\x17\xeb\x72\xba\x5c\xee\x2a\x97\xdb\x5d\xed\xf2\xb8\x6b"
      "\x5c\xc4\x5d\xeb\xe2\xdc\x75\x2e\xaf\xbb\xde\xe5\x73\xf9\x5d\x01\x57\xd0"
      "\xc5\xbb\x42\xae\xb0\xd3\xce\x38\xeb\xc8\x85\xae\x88\x2b\xea\xa2\xee\x06"
      "\x57\xcc\xdd\xe8\x8a\xbb\x12\xae\xa4\x2b\xe5\x9c\x2b\xed\x12\x5c\x0b\xd7"
      "\xd2\xb5\x74\xad\xdc\xe3\xae\xb5\x6b\xe3\xda\xba\x27\xdc\x13\xee\x49\xf7"
      "\xa4\x7b\xca\x3d\xe5\x9e\x76\x1d\xdc\x33\xae\xa3\x7b\xd6\x75\x72\xcf\xb9"
      "\xce\xee\x79\xf7\xbc\x7b\xc1\x75\x75\xdd\x5c\x77\xf7\xa2\xeb\xe1\x26\xe4"
      "\xf9\xf5\x3d\x99\xe4\xfa\xb8\x3e\xae\xaf\xeb\xeb\xfa\xbb\xfe\x6e\xa0\x1b"
      "\xe8\x06\xb9\x41\x6e\xb0\x1b\xec\x92\x5d\xb2\x1b\xea\x86\xba\x61\x6e\x98"
      "\x1b\xee\x86\xbb\x11\x6e\x84\x1b\xe5\x46\xb9\xd1\x6e\xb4\x1b\xe3\xc6\xb8"
      "\x71\x6e\x9c\x4b\x71\x29\x6e\xa2\x9b\xe8\x26\xb9\x49\x6e\xb2\x9b\xec\xa6"
      "\xba\xa9\x2e\xd5\xa5\xba\x19\x6e\x86\x9b\xe9\x66\xba\x2a\xb3\x7e\x7d\x94"
      "\xb9\x6e\xae\x9b\xef\xe6\xbb\x34\x97\xe6\x16\xba\xac\x35\x63\xba\x5b\xec"
      "\x16\xbb\x0c\x97\xe1\x96\xba\xa5\x6e\xb9\x5b\xee\x56\xba\x95\x6e\xb5\x5b"
      "\xed\xd6\xba\xb5\x6e\xbd\x5b\xef\x36\xba\x8d\x6e\xb3\xdb\xec\xb6\xb8\x2d"
      "\x6e\x9b\xdb\xe6\x76\xb8\x1d\x6e\x97\xdb\xe5\x76\xfb\x6b\x7e\x9d\xd4\xed"
      "\x75\xfb\xdc\x3e\xb7\xdf\xed\x77\x07\xdc\xd7\x2e\xd3\x7d\xe3\x0e\xba\x6f"
      "\xdd\x21\xf7\x9d\x3b\xec\xbe\x77\x47\xdc\x0f\xee\xa8\x3b\xe6\x8e\xbb\x13"
      "\xee\xa4\xfb\xd1\x9d\x72\xa7\xdd\x19\x77\xd6\x9d\x73\x3f\xb9\xf3\xee\x67"
      "\x77\xc1\x79\x97\x12\x99\x10\x99\x18\x79\x27\x32\x29\xf2\x6e\x64\x72\x64"
      "\x4a\x64\x6a\x64\x5a\x24\x35\x32\x3d\x32\x23\xf2\x5e\x64\x66\x64\x56\x64"
      "\x76\xe4\xfd\xc8\x9c\xc8\x07\x91\xb9\x91\x79\x91\xf9\x91\x05\x91\xb4\xc8"
      "\x87\x91\x85\x91\x45\x91\xf4\xc8\x47\x91\xc5\x91\x8f\x23\x19\x91\x25\x91"
      "\xa5\x91\x65\x91\xe5\x91\x15\x11\xef\x0b\x6d\x09\x7d\x11\x5f\xd4\x47\xfd"
      "\x0d\xbe\x98\xbf\xd1\x17\xf7\x25\x7c\x49\x5f\xca\x3b\x5f\xda\x27\xf8\x9b"
      "\x7c\x19\x7f\xb3\x2f\xeb\x6f\xf1\xe5\xfc\xad\xbe\xbc\xbf\xcd\x57\xf0\x15"
      "\x7d\x25\xff\xa8\x6f\xea\x9b\xf9\xe6\xbe\x85\x6f\xe9\x1f\xf3\xad\xfc\xe3"
      "\xbe\xb5\x6f\xe3\xdb\xfa\x27\x7c\x3b\xff\xa4\x6f\xef\x9f\xf2\x89\xfe\x69"
      "\xdf\xc1\x3f\xe3\x3b\xfa\x67\x7d\x27\xff\x9c\xef\xec\x9f\xf7\x5d\xfc\x0b"
      "\xbe\xab\xef\xe6\xbb\xfb\x17\x7d\x0f\xff\x92\xef\xe9\x7b\xf9\x24\xdf\xdb"
      "\xf7\xf1\x2f\xfb\xbe\xbe\x9f\xef\xef\x07\xf8\x81\xfe\x15\x3f\xc8\xbf\xea"
      "\x07\xfb\xd7\x7c\xb2\x1f\xe2\x87\xfa\xd7\xfd\x30\xff\x86\x1f\xee\xdf\xf4"
      "\x23\xfc\x48\x3f\x2a\xe6\x2d\x3f\xda\x5f\xfa\x74\x1e\xef\x53\xfc\x04\x3f"
      "\xd1\xbf\xe3\x27\xf9\x77\xfd\x64\x3f\xc5\x4f\xf5\xd3\x7c\xaa\x9f\xee\x67"
      "\xf8\xf7\xfc\x4c\x3f\xcb\xcf\xf6\xef\xfb\x39\xfe\x03\x3f\xd7\xcf\xf3\xf3"
      "\xfd\x02\x9f\xe6\x3f\xf4\x0b\xfd\x22\x9f\xee\x3f\xf2\x8b\xfd\xc7\x3e\xc3"
      "\x2f\xb9\x74\x51\xd9\xaf\xf4\xab\xfc\x6a\xbf\xc6\xaf\xf5\xeb\xfc\x7a\xbf"
      "\xc1\x6f\xf4\x9b\xfc\x66\xff\x89\xdf\xe2\xb7\xfa\x6d\x7e\xbb\xdf\xe1\x77"
      "\xfa\x5d\xfe\x53\xbf\xdb\x7f\xe6\xf7\xf8\xcf\xfd\x5e\xff\x85\xdf\xe7\xbf"
      "\xf4\xfb\xfd\x57\xfe\x80\xff\xda\x67\xfa\x6f\xfc\x41\xff\xad\x3f\xe4\xbf"
      "\xf3\x87\xfd\xf7\xfe\x88\xff\xc1\x1f\xf5\xc7\xfc\x71\x7f\xc2\x9f\xf4\x3f"
      "\xfa\x53\xfe\xb4\x3f\xe3\xcf\xfa\x73\xfe\x27\x7f\xde\xff\xec\x2f\xf0\xff"
      "\x59\x63\x8c\x31\xc6\x18\xfb\x2f\x99\x70\x79\x28\xfe\x68\x7f\xef\x3f\xb8"
      "\x4f\xfc\xc3\xc1\x7d\x00\xe0\xea\xad\x05\x33\xff\x71\x7f\xd6\x8a\x72\x7d"
      "\xbe\x5f\xc7\xfd\x44\x7c\xbb\x08\x00\x3c\xdd\xab\xcb\x43\x97\xb6\xea\xd5"
      "\x93\x92\x92\x2e\x1e\x9b\x21\x21\x28\x3a\x0f\x00\x22\x97\xf3\x63\xe0\x72"
      "\xbc\x04\xda\xc2\x93\x90\x08\x6d\xa0\xcc\x1f\xd6\xdf\x4f\x74\x3b\x47\x7f"
      "\x32\x7f\xf4\x56\x80\x5c\xff\x90\x13\x0b\x97\xe3\xcb\xf3\x7f\xf9\x2f\xe6"
      "\x7f\xec\x89\x51\x0b\xcb\x87\x67\xe2\xfe\x1f\xf3\xcf\x03\x28\x5e\xf4\x72"
      "\x4e\x4e\xb8\x1c\x2f\x81\xb6\x2a\xeb\xb6\x0d\x94\xfd\x17\xf3\xe7\x6f\xf5"
      "\x27\xf5\xe7\xfc\x2a\x05\xa0\xf5\x3f\xe4\xe4\x86\xcb\xf1\xe5\xfa\x13\xe0"
      "\x71\x78\x06\x12\x7f\x73\x24\x63\x8c\x31\xc6\x18\x63\x8c\x31\xf6\xab\x7e"
      "\xa2\x52\xa7\x4b\xbf\x3f\x2f\xfd\x8b\xcf\x3f\xfa\x7d\x1e\xaf\x2e\xe7\xe4"
      "\x80\xcb\xf1\x9f\xfd\x3e\x67\x8c\x31\xc6\x18\x63\x8c\x31\xc6\xd8\x95\xf7"
      "\x5c\xb7\xee\x4f\x3d\x96\x98\xd8\xa6\xd3\x5f\x1f\x54\xfd\x6f\x65\xfd\x7e"
      "\xa0\xfe\xbd\x32\x78\xf0\x37\x0d\xbc\x07\xb8\x74\x4f\x56\x4f\xae\x74\x3d"
      "\xff\x5b\x07\xc9\x17\xdf\x3a\xff\xbc\x6b\xf9\x59\x1f\xc0\xff\x8a\x0a\xff"
      "\x96\xc1\x15\xfe\x60\x62\x8c\x31\xc6\x18\x63\x8c\xfd\xed\x2e\x2f\xfa\x7f"
      "\x7b\xbf\xba\x52\x05\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\xd9\xd0\xff\xc4\x9f\x13\xbb\xd2\xe7\xc8"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x5d\x69\xff\x27\x00\x00"
      "\xff\xff\x4a\x22\x0f\xa2",
      5388);
  syz_mount_image(/*fs=*/0x200001c0, /*dir=*/0x20000000, /*flags=*/0,
                  /*opts=*/0x20001a80, /*chdir=*/5, /*size=*/0x150c,
                  /*img=*/0x20000440);
  memcpy((void*)0x20000000, "wlan1\000\000\000\000\000\000\000\000\000\000\000",
         16);
  syscall(__NR_ioctl, /*fd=*/r[0], /*cmd=*/0x8b18, /*arg=*/0x20000000ul);
}
int main(void)
{
  syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul,
          /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  const char* reason;
  (void)reason;
  loop();
  return 0;
}