diff options
author | Renato Botelho <renato@netgate.com> | 2016-05-03 08:53:59 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-05-03 08:53:59 -0300 |
commit | 501575fb1206644a3ea8c2cd64a81084745445cc (patch) | |
tree | e07e5ad3f3ff6f6cf2841dd2d2eb0dcb0e54521a | |
parent | 91f599cbc0d103dd112a2472b589573724b8d70a (diff) | |
parent | 04acf11bf47629b82fc88ce0e6d6dc642b1e641b (diff) | |
download | FreeBSD-src-501575fb1206644a3ea8c2cd64a81084745445cc.zip FreeBSD-src-501575fb1206644a3ea8c2cd64a81084745445cc.tar.gz |
Merge remote-tracking branch 'origin/stable/10' into devel
122 files changed, 21877 insertions, 16405 deletions
diff --git a/bin/ed/cbc.c b/bin/ed/cbc.c index 80ed95a..3985721 100644 --- a/bin/ed/cbc.c +++ b/bin/ed/cbc.c @@ -257,7 +257,7 @@ expand_des_key(char *obuf, char *kbuf) /* * now translate it, bombing on any illegal binary digit */ - for (i = 0; kbuf[i] && i < 16; i++) + for (i = 0; i < 16 && kbuf[i]; i++) if ((nbuf[i] = hex_to_binary((int) kbuf[i], 2)) == -1) des_error("bad binary digit in key"); while (i < 64) diff --git a/contrib/file/ChangeLog b/contrib/file/ChangeLog index 8e67ef6..9a28e5c 100644 --- a/contrib/file/ChangeLog +++ b/contrib/file/ChangeLog @@ -1,3 +1,49 @@ +2016-04-16 18:34 Christos Zoulas <christos@zoulas.com> + + * release 5.25 + +2016-03-31 13:50 Christos Zoulas <christos@zoulas.com> + + * make the number of bytes read from files configurable. + +2016-03-21 13:40 Christos Zoulas <christos@zoulas.com> + + * Add bounds checks for DER code (discovered by Thomas Jarosch) + * Change indirect recursion limit to indirect use count and + bump from 15 to 50 to prevent abuse. + +2016-03-13 20:39 Christos Zoulas <christos@zoulas.com> + + * Add -00 which prints filename\0description\0 + +2016-03-01 13:28 Christos Zoulas <christos@zoulas.com> + + * Fix ID3 indirect parsing + +2016-01-19 10:18 Christos Zoulas <christos@zoulas.com> + + * add DER parsing capability + +2015-11-13 10:35 Christos Zoulas <christos@zoulas.com> + + * provide dprintf(3) for the OS's that don't have it. + +2015-11-11 16:25 Christos Zoulas <christos@zoulas.com> + + * redo the compression code report decompression errors + +2015-11-10 23:25 Christos Zoulas <christos@zoulas.com> + + * REG_STARTEND code is not working as expected, delete it. + +2015-11-09 16:05 Christos Zoulas <christos@zoulas.com> + + * Add zlib support if we have it. + +2015-11-05 11:22 Christos Zoulas <christos@zoulas.com> + + * PR/492: compression forking was broken with magic_buffer. + 2015-09-16 9:50 Christos Zoulas <christos@zoulas.com> * release 5.25 diff --git a/contrib/file/README b/contrib/file/README index 81a5221..bb8186f 100644 --- a/contrib/file/README +++ b/contrib/file/README @@ -1,6 +1,6 @@ ## README for file(1) Command ## - @(#) $File: README,v 1.49 2015/01/02 20:23:04 christos Exp $ + @(#) $File: README,v 1.50 2016/04/16 22:40:54 christos Exp $ Mailing List: file@mx.gw.com Mailing List archives: http://mx.gw.com/pipermail/file/ @@ -67,17 +67,41 @@ in magic(5) format please, to the maintainer, Christos Zoulas. COPYING - read this first. README - read this second (you are currently reading this file). INSTALL - read on how to install +src/localtime_r.c +src/magic.c +src/magic.h +src/mygetopt.h +src/newtest2.c +src/newtest3.c +src/pread.c +src/print.c +src/readcdf.c +src/readelf.c +src/readelf.h +src/regex.c +src/regex2.c +src/softmagic.c +src/strcasestr.c +src/strlcat.c +src/strlcpy.c +src/strndup.c +src/tar.h +src/teststrchr.c +src/vasprintf.c +src/x.c src/apprentice.c - parses /etc/magic to learn magic -src/asctime_r.c - replacement for OS's that don't have it. src/apptype.c - used for OS/2 specific application type magic -src/asprintf.c - replacement for OS's that don't have it. src/ascmagic.c - third & last set of tests, based on hardwired assumptions. src/asctime_r.c - replacement for OS's that don't have it. src/asprintf.c - replacement for OS's that don't have it. +src/asctime_r.c - replacement for OS's that don't have it. +src/asprintf.c - replacement for OS's that don't have it. src/cdf.[ch] - parser for Microsoft Compound Document Files src/cdf_time.c - time converter for CDF. src/compress.c - handles decompressing files to look inside. src/ctime_r.c - replacement for OS's that don't have it. +src/der.[ch] - parser for Distinguished Encoding Rules +src/dprintf.c - replacement for OS's that don't have it. src/elfclass.h - common code for elf 32/64. src/encoding.c - handles unicode encodings src/file.c - the main program @@ -88,10 +112,13 @@ src/fsmagic.c - first set of tests the program runs, based on filesystem info src/funcs.c - utilility functions src/getline.c - replacement for OS's that don't have it. src/getopt_long.c - replacement for OS's that don't have it. -src/is_tar.c, tar.h - knows about tarchives (courtesy John Gilmore). -src/names.h - header file for ascmagic.c +src/gmtime_r.c - replacement for OS's that don't have it. +src/is_tar.c, tar.h - knows about Tape ARchive format (courtesy John Gilmore). +src/localtime_r.c - replacement for OS's that don't have it. src/magic.h.in - source file for magic.h +src/mygetopt.h - replacement for OS's that don't have it. src/magic.c - the libmagic api +src/names.h - header file for ascmagic.c src/pread.c - replacement for OS's that don't have it. src/print.c - print results, errors, warnings. src/readcdf.c - CDF wrapper. diff --git a/contrib/file/config.h.in b/contrib/file/config.h.in index 0397fe4..86efb6f 100644 --- a/contrib/file/config.h.in +++ b/contrib/file/config.h.in @@ -32,6 +32,9 @@ /* Define to 1 if you have the <dlfcn.h> header file. */ #undef HAVE_DLFCN_H +/* Define to 1 if you have the `dprintf' function. */ +#undef HAVE_DPRINTF + /* Define to 1 if you have the <err.h> header file. */ #undef HAVE_ERR_H diff --git a/contrib/file/configure b/contrib/file/configure index 7f62b63..c14c6cc 100755 --- a/contrib/file/configure +++ b/contrib/file/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for file 5.25. +# Generated by GNU Autoconf 2.69 for file 5.26. # # Report bugs to <christos@astron.com>. # @@ -590,8 +590,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='file' PACKAGE_TARNAME='file' -PACKAGE_VERSION='5.25' -PACKAGE_STRING='file 5.25' +PACKAGE_VERSION='5.26' +PACKAGE_STRING='file 5.26' PACKAGE_BUGREPORT='christos@astron.com' PACKAGE_URL='' @@ -1327,7 +1327,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures file 5.25 to adapt to many kinds of systems. +\`configure' configures file 5.26 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1397,7 +1397,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of file 5.25:";; + short | recursive ) echo "Configuration of file 5.26:";; esac cat <<\_ACEOF @@ -1507,7 +1507,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -file configure 5.25 +file configure 5.26 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -2163,7 +2163,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by file $as_me 5.25, which was +It was created by file $as_me 5.26, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -3029,7 +3029,7 @@ fi # Define the identity of the package. PACKAGE='file' - VERSION='5.25' + VERSION='5.26' cat >>confdefs.h <<_ACEOF @@ -14385,6 +14385,19 @@ esac fi +ac_fn_c_check_func "$LINENO" "dprintf" "ac_cv_func_dprintf" +if test "x$ac_cv_func_dprintf" = xyes; then : + $as_echo "#define HAVE_DPRINTF 1" >>confdefs.h + +else + case " $LIBOBJS " in + *" dprintf.$ac_objext "* ) ;; + *) LIBOBJS="$LIBOBJS dprintf.$ac_objext" + ;; +esac + +fi + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gzopen in -lz" >&5 @@ -15036,7 +15049,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by file $as_me 5.25, which was +This file was extended by file $as_me 5.26, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -15102,7 +15115,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -file config.status 5.25 +file config.status 5.26 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/contrib/file/configure.ac b/contrib/file/configure.ac index 50c3188..676c0fb 100644 --- a/contrib/file/configure.ac +++ b/contrib/file/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([file],[5.25],[christos@astron.com]) +AC_INIT([file],[5.26],[christos@astron.com]) AM_INIT_AUTOMAKE([subdir-objects foreign]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) @@ -145,7 +145,7 @@ dnl Checks for functions AC_CHECK_FUNCS(strerror strndup strtoul mkstemp mkostemp utimes utime wcwidth strtof newlocale uselocale freelocale setlocale) dnl Provide implementation of some required functions if necessary -AC_REPLACE_FUNCS(getopt_long asprintf vasprintf strlcpy strlcat getline ctime_r asctime_r localtime_r gmtime_r pread strcasestr fmtcheck) +AC_REPLACE_FUNCS(getopt_long asprintf vasprintf strlcpy strlcat getline ctime_r asctime_r localtime_r gmtime_r pread strcasestr fmtcheck dprintf) dnl Checks for libraries AC_CHECK_LIB(z,gzopen) diff --git a/contrib/file/doc/file.man b/contrib/file/doc/file.man index 2a048a2..f1a86ae 100644 --- a/contrib/file/doc/file.man +++ b/contrib/file/doc/file.man @@ -1,5 +1,5 @@ -.\" $File: file.man,v 1.118 2015/09/11 17:24:09 christos Exp $ -.Dd September 11, 2015 +.\" $File: file.man,v 1.120 2016/03/31 17:51:12 christos Exp $ +.Dd March 13, 2016 .Dt FILE __CSECTION__ .Os .Sh NAME @@ -317,6 +317,7 @@ Set various parameter limits. .It Li elf_phnum Ta 128 Ta max ELF program sections processed .It Li elf_shnum Ta 32768 Ta max ELF sections processed .It Li regex Ta 8192 Ta length limit for regex searches +.It Li bytes Ta 1048576 Ta max number of bytes to read from file .El .It Fl r , Fl Fl raw Don't translate unprintable characters to \eooo. @@ -358,6 +359,11 @@ Nice to .Xr cut 1 the output. This does not affect the separator, which is still printed. +.Pp +If this option is repeated more than once, then +.Nm +prints just the filename followed by a NUL followed by the description +(or ERROR: text) followed by a second NUL for each entry. .It Fl -help Print a help message and exit. .El diff --git a/contrib/file/doc/libmagic.man b/contrib/file/doc/libmagic.man index 8f5c032..a3de981 100644 --- a/contrib/file/doc/libmagic.man +++ b/contrib/file/doc/libmagic.man @@ -1,4 +1,4 @@ -.\" $File: libmagic.man,v 1.38 2015/09/11 17:24:09 christos Exp $ +.\" $File: libmagic.man,v 1.40 2016/03/31 17:51:12 christos Exp $ .\" .\" Copyright (c) Christos Zoulas 2003. .\" All Rights Reserved. @@ -225,7 +225,7 @@ It returns 0 on success and \-1 on failure. .Pp The .Fn magic_compile -function can be used to compile the the colon +function can be used to compile the colon separated list of database files passed in as .Ar filename , or @@ -251,7 +251,7 @@ for the default database. .Pp The .Fn magic_load -function must be used to load the the colon +function must be used to load the colon separated list of database files passed in as .Ar filename , or @@ -282,7 +282,7 @@ The .Fn magic_getparam and .Fn magic_setparam -allow getting and setting various limits related to the the magic +allow getting and setting various limits related to the magic library. .Bl -column "MAGIC_PARAM_ELF_PHNUM_MAX" "size_t" "Default" -offset indent .It Sy "Parameter" Ta Sy "Type" Ta Sy "Default" @@ -292,6 +292,7 @@ library. .It Li MAGIC_PARAM_ELF_PHNUM_MAX Ta size_t Ta 128 .It Li MAGIC_PARAM_ELF_SHNUM_MAX Ta size_t Ta 32768 .It Li MAGIC_PARAM_REGEX_MAX Ta size_t Ta 8192 +.It Li MAGIC_PARAM_BYTES_MAX Ta size_t Ta 1048576 .El .Pp The diff --git a/contrib/file/magic/Magdir/android b/contrib/file/magic/Magdir/android index 7675c1c..f1340d5 100644 --- a/contrib/file/magic/Magdir/android +++ b/contrib/file/magic/Magdir/android @@ -1,6 +1,6 @@ #------------------------------------------------------------ -# $File: android,v 1.8 2015/03/19 18:04:37 christos Exp $ +# $File: android,v 1.9 2016/01/11 21:19:18 christos Exp $ # Various android related magic entries #------------------------------------------------------------ @@ -128,7 +128,7 @@ # partition size in blocks ? #>>>>0x22 ulelong x \b*%d -# Android bootimg format +# Android sparse img format # From https://android.googlesource.com/\ # platform/system/core/+/master/libsparse/sparse_format.h 0 lelong 0xed26ff3a Android sparse image diff --git a/contrib/file/magic/Magdir/animation b/contrib/file/magic/Magdir/animation index 0445adc..51eeea2 100644 --- a/contrib/file/magic/Magdir/animation +++ b/contrib/file/magic/Magdir/animation @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: animation,v 1.56 2014/10/23 23:12:51 christos Exp $ +# $File: animation,v 1.57 2015/11/29 22:11:07 christos Exp $ # animation: file(1) magic for animation/movie formats # # animation formats @@ -76,6 +76,8 @@ >8 string da2b \b, DMB MAF, ext da2a, with 3GPP timed text, DID, TVA, REL, IPMP >8 string da3a \b, DMB MAF aud with HE-AAC aud, JPG/PNG/MNG images >8 string da3b \b, DMB MAF, ext da3a w/ BIFS, 3GPP, DID, TVA, REL, IPMP +>8 string dash \b, MPEG v4 system, Dynamic Adaptive Streaming over HTTP +!:mime video/mp4 >8 string dmb1 \b, DMB MAF supporting all the components defined in the spec >8 string dmpf \b, Digital Media Project >8 string drc1 \b, Dirac (wavelet compression), encap in ISO base media (MP4) diff --git a/contrib/file/magic/Magdir/apple b/contrib/file/magic/Magdir/apple index 1418688..5db4fee 100644 --- a/contrib/file/magic/Magdir/apple +++ b/contrib/file/magic/Magdir/apple @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: apple,v 1.31 2015/08/29 07:10:35 christos Exp $ +# $File: apple,v 1.32 2015/12/04 20:40:10 christos Exp $ # apple: file(1) magic for Apple file formats # 0 search/1/t FiLeStArTfIlEsTaRt binscii (apple ][) text @@ -65,18 +65,48 @@ # Eric Fischer <enf@pobox.com> # AppleWorks word processor: -# -# This matches the standard tab stops for an AppleWorks file, but if -# a file has a tab stop set in the first four columns this will fail. -# +# URL: https://en.wikipedia.org/wiki/AppleWorks +# Reference: http://www.gno.org/pub/apple2/doc/apple/filetypes/ftn.1a.xxxx +# Update: Joerg Jenderek +# NOTE: # The "O" is really the magic number, but that's so common that it's # necessary to check the tab stops that follow it to avoid false positives. - -4 string O==== AppleWorks word processor data ->85 byte&0x01 >0 \b, zoomed ->90 byte&0x01 >0 \b, paginated ->92 byte&0x01 >0 \b, with mail merge -#>91 byte x \b, left margin %d +# and/or look for unused bits of booleans bytes like zoom, paginated, mail merge +# the newer AppleWorks is from claris with extension CWK +4 string O +# test for unused bits of zoom- , paginated-boolean bytes +>84 ubequad ^0x00Fe00000000Fe00 +# look for tabstop definitions "=" no tab, "|" no tab +# "<" left tab,"^" center tab,">" right tab, "." decimal tab, +# unofficial "!" other , "\x8a" other +# official only if SFMinVers is nonzero +>>5 regex/s [=.<>|!^\x8a]{79} AppleWorks Word Processor +# AppleWorks Word Processor File (Apple II) +# ./apple (version 5.25) labeled the entry as "AppleWorks word processor data" +# application/x-appleworks is mime type for claris version with cwk extension +!:mime application/x-appleworks3 +# http://home.earthlink.net/~hughhood/appleiiworksenvoy/ +# ('p' + 1-byte ProDOS File Type + 2-byte ProDOS Aux Type') +# $70 $1A $F8 $FF is this the apple type ? +#:apple pdospøÿ +!:ext awp +# minimum version needed to read this files. SFMinVers (0 , 30~3.0 ) +>>>183 ubyte 30 3.0 +>>>183 ubyte !30 +>>>>183 ubyte !0 0x%x +# usual tabstop start sequence "=====<" +>>>5 string x \b, tabstop ruler "%6.6s" +# tabstop ruler +#>>>5 string >\0 \b, tabstops "%-79s" +# zoom switch +>>>85 byte&0x01 >0 \b, zoomed +# whether paginated +>>>90 byte&0x01 >0 \b, paginated +# contains any mail-merge commands +>>>92 byte&0x01 >0 \b, with mail merge +# left margin in 1/10 inches ( normally 0 or 10 ) +>>>91 ubyte >0 +>>>>91 ubyte x \b, %d/10 inch left margin # AppleWorks database: # diff --git a/contrib/file/magic/Magdir/archive b/contrib/file/magic/Magdir/archive index f115e95..db17ae1 100644 --- a/contrib/file/magic/Magdir/archive +++ b/contrib/file/magic/Magdir/archive @@ -1,5 +1,5 @@ #------------------------------------------------------------------------------ -# $File: archive,v 1.91 2015/09/16 13:49:33 christos Exp $ +# $File: archive,v 1.102 2016/01/11 20:59:24 christos Exp $ # archive: file(1) magic for archive formats (see also "msdos" for self- # extracting compressed archives) # @@ -246,7 +246,15 @@ # BA # TODO: idarc says "bytes 0-2 == bytes 3-5" # TTComp -0 string \0\6 TTComp archive data +# URL: http://fileformats.archiveteam.org/wiki/TTComp_archive +# Update: Joerg Jenderek +# GRR: line below is too general as it matches also Panorama database "TCDB 2003-10 demo.pan", others +0 string \0\6 +# look for first keyword of Panorama database *.pan +>12 search/261 DESIGN +# skip keyword with low entropy +>12 default x TTComp archive, binary, 4K dictionary +# (version 5.25) labeled the above entry as "TTComp archive data" # ESP, could this conflict with Easy Software Products' (e.g.ESP ghostscript) documentation? 0 string ESP ESP archive data # ZPack @@ -544,55 +552,212 @@ >>0x36 string >\0 fstype %.8s # LHARC/LHA archiver (Greg Roelofs, newt@uchicago.edu) -2 string -lh0- LHarc 1.x/ARX archive data [lh0] -!:mime application/x-lharc -2 string -lh1- LHarc 1.x/ARX archive data [lh1] -!:mime application/x-lharc -2 string -lz4- LHarc 1.x archive data [lz4] -!:mime application/x-lharc -2 string -lz5- LHarc 1.x archive data [lz5] -!:mime application/x-lharc +# Update: Joerg Jenderek +# URL: https://en.wikipedia.org/wiki/LHA_(file_format) +# Reference: http://web.archive.org/web/20021005080911/http://www.osirusoft.com/joejared/lzhformat.html +# +# check and display information of lharc (LHa,PMarc) file +0 name lharc-file +# check 1st character of method id like -lz4- -lh5- or -pm2- +>2 string - +# check 5th character of method id +>>6 string - +# check header level 0 1 2 3 +>>>20 ubyte <4 +# check 2nd, 3th and 4th character of method id +>>>>3 regex \^(lh[0-9a-ex]|lz[s2-8]|pm[012]|pc1) \b +!:mime application/x-lzh-compressed +# creator type "LHA " +!:apple ????LHA +# display archive type name like "LHa/LZS archive data" or "LArc archive" +>>>>>2 string -lz \b +!:ext lzs +# already known -lzs- -lz4- -lz5- with old names +>>>>>>2 string -lzs LHa/LZS archive data +>>>>>>3 regex \^lz[45] LHarc 1.x archive data +# missing -lz?- with wikipedia names +>>>>>>3 regex \^lz[2378] LArc archive +# display archive type name like "LHa (2.x) archive data" +>>>>>2 string -lh \b +# already known -lh0- -lh1- -lh2- -lh3- -lh4- -lh5- -lh6- -lh7- -lhd- variants with old names +>>>>>>3 regex \^lh[01] LHarc 1.x/ARX archive data +# LHice archiver use ".ICE" as name extension instead usual one ".lzh" +# FOOBAR archiver use ".foo" as name extension instead usual one +# "Florain Orjanov's and Olga Bachetska's ARchiver" not found at the moment +>>>>>>>2 string -lh1 \b +!:ext lha/lzh/ice +>>>>>>3 regex \^lh[23d] LHa 2.x? archive data +>>>>>>3 regex \^lh[7] LHa (2.x)/LHark archive data +>>>>>>3 regex \^lh[456] LHa (2.x) archive data +>>>>>>>2 string -lh5 \b +# https://en.wikipedia.org/wiki/BIOS +# Some mainboard BIOS like Award use LHa compression. So archives with unusal extension are found like +# bios.rom , kd7_v14.bin, 1010.004, ... +!:ext lha/lzh/rom/bin +# missing -lh?- variants (Joe Jared) +>>>>>>3 regex \^lh[89a-ce] LHa (Joe Jared) archive +# UNLHA32 2.67a +>>>>>>2 string -lhx LHa (UNLHA32) archive +# lha archives with standard file name extensions ".lha" ".lzh" +>>>>>>3 regex !\^(lh1|lh5) \b +!:ext lha/lzh +# this should not happen if all -lh variants are described +>>>>>>2 default x LHa (unknown) archive +#!:ext lha +# PMarc +>>>>>3 regex \^pm[012] PMarc archive data +!:ext pma +# append method id without leading and trailing minus character +>>>>>3 string x [%3.3s] +>>>>>>0 use lharc-header +# +# check and display information of lharc header +0 name lharc-header +# header size 0x4 , 0x1b-0x61 +>0 ubyte x +# compressed data size != compressed file size +#>7 ulelong x \b, data size %d +# attribute: 0x2~?? 0x10~symlink|target 0x20~normal +#>19 ubyte x \b, 19_0x%x +# level identifier 0 1 2 3 +#>20 ubyte x \b, level %d +# time stamp +#>15 ubelong x DATE 0x%8.8x +# OS ID for level 1 +>20 ubyte 1 +# 0x20 types find for *.rom files +>>(21.b+24) ubyte <0x21 \b, 0x%x OS +# ascii type like M for MSDOS +>>(21.b+24) ubyte >0x20 \b, '%c' OS +# OS ID for level 2 +>20 ubyte 2 +#>>23 ubyte x \b, OS ID 0x%x +>>23 ubyte <0x21 \b, 0x%x OS +>>23 ubyte >0x20 \b, '%c' OS +# filename only for level 0 and 1 +>20 ubyte <2 +# length of filename +>>21 ubyte >0 \b, with +# filename +>>>21 pstring x "%s" +# +#2 string -lh0- LHarc 1.x/ARX archive data [lh0] +#!:mime application/x-lharc +2 string -lh0- +>0 use lharc-file +#2 string -lh1- LHarc 1.x/ARX archive data [lh1] +#!:mime application/x-lharc +2 string -lh1- +>0 use lharc-file +# NEW -lz2- ... -lz8- +2 string -lz2- +>0 use lharc-file +2 string -lz3- +>0 use lharc-file +2 string -lz4- +>0 use lharc-file +2 string -lz5- +>0 use lharc-file +2 string -lz7- +>0 use lharc-file +2 string -lz8- +>0 use lharc-file # [never seen any but the last; -lh4- reported in comp.compression:] -2 string -lzs- LHa/LZS archive data [lzs] -!:mime application/x-lha -2 string -lh\40- LHa 2.x? archive data [lh ] -!:mime application/x-lha -2 string -lhd- LHa 2.x? archive data [lhd] -!:mime application/x-lha -2 string -lh2- LHa 2.x? archive data [lh2] -!:mime application/x-lha -2 string -lh3- LHa 2.x? archive data [lh3] -!:mime application/x-lha -2 string -lh4- LHa (2.x) archive data [lh4] -!:mime application/x-lha -2 string -lh5- LHa (2.x) archive data [lh5] -!:mime application/x-lha -2 string -lh6- LHa (2.x) archive data [lh6] -!:mime application/x-lha -2 string -lh7- LHa (2.x)/LHark archive data [lh7] -!:mime application/x-lha ->20 byte x - header level %d +#2 string -lzs- LHa/LZS archive data [lzs] +2 string -lzs- +>0 use lharc-file +# According to wikipedia and others such a version does not exist +#2 string -lh\40- LHa 2.x? archive data [lh ] +#2 string -lhd- LHa 2.x? archive data [lhd] +2 string -lhd- +>0 use lharc-file +#2 string -lh2- LHa 2.x? archive data [lh2] +2 string -lh2- +>0 use lharc-file +#2 string -lh3- LHa 2.x? archive data [lh3] +2 string -lh3- +>0 use lharc-file +#2 string -lh4- LHa (2.x) archive data [lh4] +2 string -lh4- +>0 use lharc-file +#2 string -lh5- LHa (2.x) archive data [lh5] +2 string -lh5- +>0 use lharc-file +#2 string -lh6- LHa (2.x) archive data [lh6] +2 string -lh6- +>0 use lharc-file +#2 string -lh7- LHa (2.x)/LHark archive data [lh7] +2 string -lh7- +# !:mime application/x-lha +# >20 byte x - header level %d +>0 use lharc-file +# NEW -lh8- ... -lhe- , -lhx- +2 string -lh8- +>0 use lharc-file +2 string -lh9- +>0 use lharc-file +2 string -lha- +>0 use lharc-file +2 string -lhb- +>0 use lharc-file +2 string -lhc- +>0 use lharc-file +2 string -lhe- +>0 use lharc-file +2 string -lhx- +>0 use lharc-file # taken from idarc [JW] 2 string -lZ PUT archive data -2 string -lz LZS archive data +# already done by LHarc magics +# this should never happen if all sub types of LZS archive are identified +#2 string -lz LZS archive data 2 string -sw1- Swag archive data -# RAR archiver (Greg Roelofs, newt@uchicago.edu) -0 string Rar! RAR archive data, +0 name rar-file-header +>24 byte 15 \b, v1.5 +>24 byte 20 \b, v2.0 +>24 byte 29 \b, v4 +>15 byte 0 \b, os: MS-DOS +>15 byte 1 \b, os: OS/2 +>15 byte 2 \b, os: Win32 +>15 byte 3 \b, os: Unix +>15 byte 4 \b, os: Mac OS +>15 byte 5 \b, os: BeOS + +0 name rar-archive-header +>3 leshort&0x1ff >0 \b, flags: +>>3 leshort &0x01 ArchiveVolume +>>3 leshort &0x02 Commented +>>3 leshort &0x04 Locked +>>3 leshort &0x10 NewVolumeNaming +>>3 leshort &0x08 Solid +>>3 leshort &0x20 Authenticated +>>3 leshort &0x40 RecoveryRecordPresent +>>3 leshort &0x80 EncryptedBlockHeader +>>3 leshort &0x100 FirstVolume + +# RAR (Roshal Archive) archive +0 string Rar!\x1a\7\0 RAR archive data +!:mime application/x-rar +!:ext rar/cbr +# file header +>(0xc.l+9) byte 0x74 +>>(0xc.l+7) use rar-file-header +# subblock seems to share information with file header +>(0xc.l+9) byte 0x7a +>>(0xc.l+7) use rar-file-header +>9 byte 0x73 +>>7 use rar-archive-header + +0 string Rar!\x1a\7\1\0 RAR archive data, v5 +!:mime application/x-rar +!:ext rar + +# Very old RAR archive +# http://jasonblanks.com/wp-includes/images/papers/KnowyourarchiveRAR.pdf +0 string RE\x7e\x5e RAR archive data (<v1.5) !:mime application/x-rar ->44 byte x v%0x, ->10 byte >0 flags: ->>10 byte &0x01 Archive volume, ->>10 byte &0x02 Commented, ->>10 byte &0x04 Locked, ->>10 byte &0x08 Solid, ->>10 byte &0x20 Authenticated, ->35 byte 0 os: MS-DOS ->35 byte 1 os: OS/2 ->35 byte 2 os: Win32 ->35 byte 3 os: Unix -# some old version? idarc says: -0 string RE\x7e\x5e RAR archive data +!:ext rar/cbr # SQUISH archiver (Greg Roelofs, newt@uchicago.edu) 0 string SQSH squished archive data (Acorn RISCOS) @@ -604,9 +769,12 @@ # PKZIP multi-volume archive 0 string PK\x07\x08PK\x03\x04 Zip multi-volume archive data, at least PKZIP v2.50 to extract !:mime application/zip +!:ext zip/cbz # Zip archives (Greg Roelofs, c/o zip-bugs@wkuvx1.wku.edu) 0 string PK\005\006 Zip archive data (empty) +!:mime application/zip +!:ext zip/cbz 0 string PK\003\004 # Specialised zip formats which start with a member named 'mimetype' @@ -764,12 +932,24 @@ 0 string \0\ \ \ \ \ \ \ \ \ \ \ \0\0 LBR archive data # # PMA (CP/M derivative of LHA) +# Update: Joerg Jenderek +# URL: https://en.wikipedia.org/wiki/LHA_(file_format) # -2 string -pm0- PMarc archive data [pm0] -2 string -pm1- PMarc archive data [pm1] -2 string -pm2- PMarc archive data [pm2] +#2 string -pm0- PMarc archive data [pm0] +2 string -pm0- +>0 use lharc-file +#2 string -pm1- PMarc archive data [pm1] +2 string -pm1- +>0 use lharc-file +#2 string -pm2- PMarc archive data [pm2] +2 string -pm2- +>0 use lharc-file 2 string -pms- PMarc SFX archive (CP/M, DOS) +#!:mime application/x-foobar-exec +!:ext com 5 string -pc1- PopCom compressed executable (CP/M) +#!:mime application/x- +#!:ext com # From Rafael Laboissiere <rafael@laboissiere.net> # The Project Revision Control System (see @@ -802,6 +982,9 @@ # Felix von Leitner <felix-file@fefe.de> 0 string d8:announce BitTorrent file !:mime application/x-bittorrent +# Durval Menezes, <jmgthbfile at durval dot com> +0 string d13:announce-list BitTorrent file +!:mime application/x-bittorrent # Atari MSA archive - Teemu Hukkanen <tjhukkan@iki.fi> 0 beshort 0x0e0f Atari MSA archive data @@ -889,19 +1072,16 @@ # From "Nelson A. de Oliveira" <naoliv@gmail.com> 0 string MPQ\032 MoPaQ (MPQ) archive -# From: Dirk Jagdmann <doj@cubic.org> -# xar archive format: http://code.google.com/p/xar/ -0 string xar! xar archive ->6 beshort x - version %d - # From: "Nelson A. de Oliveira" <naoliv@gmail.com> # .kgb 0 string KGB_arch KGB Archiver file >10 string x with compression level %.1s # xar (eXtensible ARchiver) archive +# xar archive format: http://code.google.com/p/xar/ # From: "David Remahl" <dremahl@apple.com> 0 string xar! xar archive +!:mime application/x-xar #>4 beshort x header size %d >6 beshort x version %d, #>8 quad x compressed TOC: %d, @@ -975,3 +1155,9 @@ >0xE08 search/7776 \x55\xAA >>&-512 indirect x \b; contains +# Google Chrome extensions +# https://developer.chrome.com/extensions/crx +# https://developer.chrome.com/extensions/hosting +0 string Cr24 Google Chrome extension +!:mime application/x-chrome-extension +>4 ulong x \b, version %u diff --git a/contrib/file/magic/Magdir/audio b/contrib/file/magic/Magdir/audio index e1d52c2..29442a5 100644 --- a/contrib/file/magic/Magdir/audio +++ b/contrib/file/magic/Magdir/audio @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: audio,v 1.73 2015/03/15 23:21:42 christos Exp $ +# $File: audio,v 1.75 2016/02/08 17:30:11 christos Exp $ # audio: file(1) magic for sound formats (see also "iff") # # Jan Nicolai Langfeldt (janl@ifi.uio.no), Dan Quinlan (quinlan@yggdrasil.com), @@ -585,7 +585,7 @@ 0 string SC68\ Music-file\ /\ (c)\ (BeN)jami sc68 Atari ST music # musepak support From: "Jiri Pejchal" <jiri.pejchal@gmail.com> -0 string MP+ Musepack audio +0 string MP+ Musepack audio (MP+) !:mime audio/x-musepack >3 byte 255 \b, SV pre8 >3 byte&0xF 0x6 \b, SV 6 @@ -619,6 +619,9 @@ >>27 byte 114 \b, Beta 1.14 >>27 byte 115 \b, Alpha 1.15 +0 string MPCK Musepack audio (MPCK) +!:mime audio/x-musepack + # IMY # from http://filext.com/detaillist.php?extdetail=IMY # http://cellphones.about.com/od/cellularfaqs/f/rf_imelody.htm @@ -715,3 +718,41 @@ 0 string ZBOT >4 byte 0xc5 GVOX Encore music, version < 5.0 +# Summary: Garmin Voice Processing Module (WAVE audios) +# From: Joerg Jenderek +# URL: http://www.garmin.com/ +# Reference: http://turboccc.wikispaces.com/share/view/28622555 +# NOTE: there exist 2 other Garmin VPM formats +0 string AUDIMG +# skip text files starting with string "AUDIMG" +>13 ubyte <13 Garmin Voice Processing Module +!:mime audio/x-vpm-wav-garmin +!:ext vpm +# 3 bytes indicating the voice version (200,220) +>>6 string x \b, version %3.3s +# day of release (01-31) +>>12 ubyte x \b, %.2d +# month of release (01-12) +>>13 ubyte x \b.%.2d +# year of release (like 2006, 2007, 2008) +>>14 uleshort x \b.%.4d +# hour of release (0-23) +>>11 ubyte x %.2d +# minute of release (0-59) +>>10 ubyte x \b:%.2d +# second of release (0-59) +>>9 ubyte x \b:%.2d +# if you select a language like german on your garmin device +# you can only select voice modules with correponding language byte ID like 1 +>>18 ubyte x \b, language ID %d +# pointer to 1st audio WAV sample +>>16 uleshort >0 +>>>(16.s) ulelong >0 \b, at offset 0x%x +# WAV length +>>>>(16.s+4) ulelong >0 %d Bytes +# look for magic +>>>>>(&-8.l) string RIFF +# determine type by ./riff +>>>>>>&-4 indirect x \b +# 2 - ~ 131 WAV samples following same way + diff --git a/contrib/file/magic/Magdir/bioinformatics b/contrib/file/magic/Magdir/bioinformatics new file mode 100644 index 0000000..7de08a1 --- /dev/null +++ b/contrib/file/magic/Magdir/bioinformatics @@ -0,0 +1,178 @@ + +#------------------------------------------------------------------------------ +# $File: bioinformatics,v 1.2 2016/02/14 15:53:53 christos Exp $ +# bioinfomatics: file(1) magic for Bioinfomatics file formats + +############################################################################### +# BGZF (Blocked GNU Zip Format) - gzip compatible, but also indexable +# used by SAMtools bgzip/tabix (http://samtools.sourceforge.net/tabix.shtml) +############################################################################### +0 string \037\213 +>3 byte &0x04 +>>12 string BC +>>>14 leshort &0x02 Blocked GNU Zip Format (BGZF; gzip compatible) +>>>>16 leshort x \b, block length %d +!:mime application/x-gzip + + +############################################################################### +# Tabix index file +# used by SAMtools bgzip/tabix (http://samtools.sourceforge.net/tabix.shtml) +############################################################################### +0 string TBI\1 SAMtools TBI (Tabix index format) +>0x04 lelong =1 \b, with %d reference sequence +>0x04 lelong >1 \b, with %d reference sequences +>0x08 lelong &0x10000 \b, using half-closed-half-open coordinates (BED style) +>0x08 lelong ^0x10000 +>>0x08 lelong =0 \b, using closed and one based coordinates (GFF style) +>>0x08 lelong =1 \b, using SAM format +>>0x08 lelong =2 \b, using VCF format +>0x0c lelong x \b, sequence name column: %d +>0x10 lelong x \b, region start column: %d +>0x08 lelong =0 +>>0x14 lelong x \b, region end column: %d +>0x18 byte x \b, comment character: %c +>0x1c lelong x \b, skip line count: %d + + +############################################################################### +# BAM (Binary Sequence Alignment/Map format) +# used by SAMtools (http://samtools.sourceforge.net/SAM1.pdf) +# data is normally present only within compressed BGZF blocks (CDATA), so use file -z to examine it +############################################################################### +0 string BAM\1 SAMtools BAM (Binary Sequence Alignment/Map) +>0x04 lelong >0 +>>&0x00 regex =^[@]HD\t.*VN: \b, with SAM header +>>>&0 regex =[0-9.]+ \b version %s +>>&(0x04) lelong >0 \b, with %d reference sequences + + +############################################################################### +# BAI (BAM indexing format) +# used by SAMtools (http://samtools.sourceforge.net/SAM1.pdf) +############################################################################### +0 string BAI\1 SAMtools BAI (BAM indexing format) +>0x04 lelong >0 \b, with %d reference sequences + + +############################################################################### +# CRAM (Binary Sequence Alignment/Map format) +############################################################################### +0 string CRAM CRAM +>0x04 byte >-1 version %d. +>0x05 byte >-1 \b%d +>0x06 string >\0 (identified as %s) + + +############################################################################### +# BCF (Binary Call Format), version 1 +# used by SAMtools & VCFtools (http://vcftools.sourceforge.net/bcf.pdf) +# data is normally present only within compressed BGZF blocks (CDATA), so use file -z to examine it +############################################################################### +0 string BCF\4 +# length of seqnm data in bytes is positive +>&0x00 lelong >0 +# length of smpl data in bytes is positive +>>&(&-0x04) lelong >0 SAMtools BCF (Binary Call Format) +# length of meta in bytes +>>>&(&-0x04) lelong >0 +# have meta text string +>>>>&0x00 search ##samtoolsVersion= +>>>>>&0x00 string x \b, generated by SAMtools version %s + + +############################################################################### +# BCF (Binary Call Format), version 2.1 +# used by SAMtools (http://samtools.github.io/hts-specs/BCFv2_qref.pdf) +# data is normally present only within compressed BGZF blocks (CDATA), so use file -z to examine it +############################################################################### +0 string BCF\2\1 Binary Call Format (BCF) version 2.1 +# length of header text +>&0x00 lelong >0 +# have header string +>>&0x00 search ##samtoolsVersion= +>>>&0x00 string x \b, generated by SAMtools version %s + + +############################################################################### +# BCF (Binary Call Format), version 2.2 +# used by SAMtools (http://samtools.github.io/hts-specs/BCFv2_qref.pdf) +# data is normally present only within compressed BGZF blocks (CDATA), so use file -z to examine it +############################################################################### +0 string BCF\2\2 Binary Call Format (BCF) version 2.2 +# length of header text +>&0x00 lelong >0 +# have header string +>>&0x00 search ##samtoolsVersion= +>>>&0x00 string x \b, generated by SAMtools version %s + +############################################################################### +# VCF (Variant Call Format) +# used by VCFtools (http://vcftools.sourceforge.net/) +############################################################################### +0 search ##fileformat=VCFv Variant Call Format (VCF) +>&0 string x \b version %s + +############################################################################### +# FASTQ +# used by MAQ (http://maq.sourceforge.net/fastq.shtml) +############################################################################### +# XXX Broken? +# @<seqname> +#0 regex =^@[A-Za-z0-9_.:-]+\?\n +# <seq> +#>&1 regex =^[A-Za-z\n.~]++ +# +[<seqname>] +#>>&1 regex =^[A-Za-z0-9_.:-]*\?\n +# <qual> +#>>>&1 regex =^[!-~\n]+\n FASTQ + +############################################################################### +# FASTA +# used by FASTA (http://fasta.bioch.virginia.edu/fasta_www2/fasta_guide.pdf) +############################################################################### +#0 byte 0x3e +# q>0 regex =^[>][!-~\t\ ]+$ +# Amino Acid codes: [A-IK-Z*-]+ +#>>1 regex !=[!-'Jj;:=?@^`|~\\] FASTA +# IUPAC codes/gaps: [ACGTURYKMSWBDHVNX-]+ +# not in IUPAC codes/gaps: [EFIJLOPQZ] +#>>>1 regex !=[EFIJLOPQZefijlopqz] \b, with IUPAC nucleotide codes +#>>>1 regex =^[EFIJLOPQZefijlopqz]+$ \b, with Amino Acid codes + +############################################################################### +# SAM (Sequence Alignment/Map format) +# used by SAMtools (http://samtools.sourceforge.net/SAM1.pdf) +############################################################################### +# Short-cut version to recognise SAM files with (optional) header at beginning +############################################################################### +0 string @HD\t +>4 search VN: Sequence Alignment/Map (SAM), with header +>>&0 regex [0-9.]+ \b version %s +############################################################################### +# Longer version to recognise SAM alignment lines using (many) regexes +############################################################################### +# SAM Alignment QNAME +0 regex =^[!-?A-~]{1,255}(\t[^\t]+){11} +# SAM Alignment FLAG +>0 regex =^([^\t]+\t){1}[0-9]{1,5}\t +# SAM Alignment RNAME +>>0 regex =^([^\t]+\t){2}\\*|[^*=]*\t +# SAM Alignment POS +>>>0 regex =^([^\t]+\t){3}[0-9]{1,9}\t +# SAM Alignment MAPQ +>>>>0 regex =^([^\t]+\t){4}[0-9]{1,3}\t +# SAM Alignment CIGAR +>>>>>0 regex =\t\\*|([0-9]+[MIDNSHPX=])+)\t +# SAM Alignment RNEXT +>>>>>>0 regex =\t(\\*|=|[!-()+->?-~][!-~]*)\t +# SAM Alignment PNEXT +>>>>>>>0 regex =^([^\t]+\t){7}[0-9]{1,9}\t +# SAM Alignment TLEN +>>>>>>>>0 regex =\t[+-]{0,1}[0-9]{1,9}\t.*\t +# SAM Alignment SEQ +>>>>>>>>>0 regex =^([^\t]+\t){9}(\\*|[A-Za-z=.]+)\t +# SAM Alignment QUAL +>>>>>>>>>>0 regex =^([^\t]+\t){10}[!-~]+ Sequence Alignment/Map (SAM) +>>>>>>>>>>>0 regex =^[@]HD\t.*VN: \b, with header +>>>>>>>>>>>>&0 regex =[0-9.]+ \b version %s diff --git a/contrib/file/magic/Magdir/c-lang b/contrib/file/magic/Magdir/c-lang index 0b17611..69ae516 100644 --- a/contrib/file/magic/Magdir/c-lang +++ b/contrib/file/magic/Magdir/c-lang @@ -1,7 +1,8 @@ #------------------------------------------------------------------------------ -# $File: c-lang,v 1.20 2015/07/27 14:33:10 christos Exp $ +# $File: c-lang,v 1.22 2015/10/29 18:49:11 christos Exp $ # c-lang: file(1) magic for C and related languages programs # +# The strength is to beat standard HTML # BCPL 0 search/8192 "libhdr" BCPL source text @@ -11,6 +12,7 @@ # C 0 regex \^#include C source text +!:strength +25 !:mime text/x-c 0 regex \^char[\ \t\n]+ C source text !:mime text/x-c @@ -30,19 +32,19 @@ # C++ # The strength of these rules is increased so they beat the C rules above 0 regex \^template[\ \t]+<.*>[\ \t\n]+ C++ source text -!:strength + 5 +!:strength + 30 !:mime text/x-c++ 0 regex \^virtual[\ \t\n]+ C++ source text -!:strength + 5 +!:strength + 30 !:mime text/x-c++ 0 regex \^class[\ \t\n]+ C++ source text -!:strength + 5 +!:strength + 30 !:mime text/x-c++ 0 regex \^public: C++ source text -!:strength + 5 +!:strength + 30 !:mime text/x-c++ 0 regex \^private: C++ source text -!:strength + 5 +!:strength + 30 !:mime text/x-c++ # From: Mikhail Teterin <mi@aldan.algebra.com> diff --git a/contrib/file/magic/Magdir/cafebabe b/contrib/file/magic/Magdir/cafebabe index 51e97c4..6d97ceb 100644 --- a/contrib/file/magic/Magdir/cafebabe +++ b/contrib/file/magic/Magdir/cafebabe @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: cafebabe,v 1.20 2015/05/29 14:21:58 christos Exp $ +# $File: cafebabe,v 1.21 2015/10/15 20:56:51 christos Exp $ # Cafe Babes unite! # # Since Java bytecode and Mach-O universal binaries have the same magic number, @@ -58,12 +58,15 @@ >>4 belong <20 Mach-O universal binary with %d architectures: !:mime application/x-mach-binary >>>8 use mach-o \b ->>>28 use mach-o \b >>4 belong 2 ->>>48 use mach-o \b +>>>28 use mach-o \b >>4 belong 3 ->>>68 use mach-o \b +>>>48 use mach-o \b >>4 belong 4 +>>>68 use mach-o \b +>>4 belong 5 >>>88 use mach-o \b +>>4 belong 6 +>>>108 use mach-o \b ### MACH-O END ### diff --git a/contrib/file/magic/Magdir/coff b/contrib/file/magic/Magdir/coff new file mode 100644 index 0000000..02cbf9c --- /dev/null +++ b/contrib/file/magic/Magdir/coff @@ -0,0 +1,77 @@ + +#------------------------------------------------------------------------------ +# $File: coff,v 1.1 2015/09/30 20:32:35 christos Exp $ +# coff: file(1) magic for Common Object Files not specific to known cpu types or manufactures +# +# COFF +# +# by Joerg Jenderek at Oct 2015 +# https://en.wikipedia.org/wiki/COFF +# https://de.wikipedia.org/wiki/Common_Object_File_Format +# http://www.delorie.com/djgpp/doc/coff/filhdr.html + +# display name+variables+flags of Common Object Files Format (32bit) +# Maybe used also in adi,att3b,clipper,hitachi-sh,hp,ibm6000,intel, +# mips,motorola,msdos,osf1,sharc,varied.out,vax +0 name display-coff +# test for unused flag bits (0x8000,0x0800,0x0400,0x0200,x0080) in f_flags +>18 uleshort&0x8E80 0 +>>0 clear x +# f_magic - magic number +# DJGPP, 80386 COFF executable, MS Windows COFF Intel 80386 object file (./intel) +>>0 uleshort 0x014C Intel 80386 +# Hitachi SH big-endian COFF (./hitachi-sh) +>>0 uleshort 0x0500 Hitachi SH big-endian +# Hitachi SH little-endian COFF (./hitachi-sh) +>>0 uleshort 0x0550 Hitachi SH little-endian +# executable (RISC System/6000 V3.1) or obj module (./ibm6000) +#>>0 uleshort 0x01DF +# TODO for other COFFs +#>>0 uleshort 0xABCD COFF_TEMPLATE +>>0 default x +>>>0 uleshort x type 0x%04x +>>0 uleshort x COFF +# F_EXEC flag bit +>>18 leshort ^0x0002 object file +#!:mime application/x-coff +#!:ext cof/o/obj/lib +>>18 leshort &0x0002 executable +#!:mime application/x-coffexec +# F_RELFLG flag bit,static object +>>18 leshort &0x0001 \b, no relocation info +# F_LNNO flag bit +>>18 leshort &0x0004 \b, no line number info +# F_LSYMS flag bit +>>18 leshort &0x0008 \b, stripped +>>18 leshort ^0x0008 \b, not stripped +# flags in other COFF versions +#0x0010 F_FDPR_PROF +#0x0020 F_FDPR_OPTI +#0x0040 F_DSA +# F_AR32WR flag bit +#>>>18 leshort &0x0100 \b, 32 bit little endian +#0x1000 F_DYNLOAD +#0x2000 F_SHROBJ +#0x4000 F_LOADONLY +# f_nscns - number of sections +>>2 uleshort <2 \b, %d section +>>2 uleshort >1 \b, %d sections +# f_timdat - file time & date stamp only for little endian +#>>4 date x \b, %s +# f_symptr - symbol table pointer, only for not stripped +>>8 ulelong >0 \b, symbol offset=0x%x +# f_nsyms - number of symbols, only for not stripped +>>12 ulelong >0 \b, %d symbols +# f_opthdr - optional header size +>>16 uleshort >0 \b, optional header size %d +# at offset 20 can be optional header, extra bytes FILHSZ-20 because +# do not rely on sizeof(FILHDR) to give the correct size for header. +# or first section header +# additional variables for other COFF files +# >20 beshort 0407 (impure) +# >20 beshort 0410 (pure) +# >20 beshort 0413 (demand paged) +# >20 beshort 0421 (standalone) +# >22 leshort >0 - version %d +# >168 string .lowmem Apple toolbox + diff --git a/contrib/file/magic/Magdir/commands b/contrib/file/magic/Magdir/commands index 153af5e..51067aa 100644 --- a/contrib/file/magic/Magdir/commands +++ b/contrib/file/magic/Magdir/commands @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: commands,v 1.52 2015/06/04 19:16:55 christos Exp $ +# $File: commands,v 1.53 2016/02/23 12:35:20 christos Exp $ # commands: file(1) magic for various shells and interpreters # #0 string/w : shell archive or script for antique kernel text @@ -98,7 +98,9 @@ !:mime text/x-php # Smarty compiled template, http://www.smarty.net/ # Elan Ruusamae <glen@delfi.ee> -0 string =<?php\ /*\ Smarty\ version Smarty compiled template +0 string =<?php +>5 regex [\ \n] +>>6 string /*\ Smarty\ version Smarty compiled template >24 regex [0-9.]+ \b, version %s !:mime text/x-php diff --git a/contrib/file/magic/Magdir/compress b/contrib/file/magic/Magdir/compress index 8452f52..910545a 100644 --- a/contrib/file/magic/Magdir/compress +++ b/contrib/file/magic/Magdir/compress @@ -1,5 +1,5 @@ #------------------------------------------------------------------------------ -# $File: compress,v 1.64 2015/07/27 15:41:09 christos Exp $ +# $File: compress,v 1.65 2015/12/04 20:48:03 christos Exp $ # compress: file(1) magic for pure-compression formats (no archives) # # compress, gzip, pack, compact, huf, squeeze, crunch, freeze, yabba, etc. @@ -188,6 +188,7 @@ >6 byte x version %d >7 byte x \b.%d !:mime application/x-7z-compressed +!:ext 7z/cb7 # Type: LZMA 0 lelong&0xffffff =0x5d diff --git a/contrib/file/magic/Magdir/console b/contrib/file/magic/Magdir/console index 9dee3ff..db6916a 100644 --- a/contrib/file/magic/Magdir/console +++ b/contrib/file/magic/Magdir/console @@ -1,53 +1,109 @@ #------------------------------------------------------------------------------ -# $File: console,v 1.20 2015/03/15 23:21:42 christos Exp $ +# $File: console,v 1.24 2016/03/23 15:29:20 christos Exp $ # Console game magic # Toby Deshane <hac@shoelace.digivill.net> -# ines: file(1) magic for Marat's iNES Nintendo Entertainment System -# ROM dump format - -0 string NES\032 iNES ROM dump, ->4 byte x %dx16k PRG ->5 byte x \b, %dx8k CHR ->6 byte&0x01 =0x1 \b, [Vert.] ->6 byte&0x01 =0x0 \b, [Horiz.] ->6 byte&0x02 =0x2 \b, [SRAM] ->6 byte&0x04 =0x4 \b, [Trainer] ->6 byte&0x04 =0x8 \b, [4-Scr] + +# ines: file(1) magic for Marat's iNES Nintendo Entertainment System ROM dump format +# Updated by David Korth <gerbilsoft@gerbilsoft.com> +# References: +# - http://wiki.nesdev.com/w/index.php/INES +# - http://wiki.nesdev.com/w/index.php/NES_2.0 +0 string NES\x1A iNES ROM image +>7 byte&0x0C =0x8 (NES 2.0) +>4 byte x \b: %ux16k PRG +>5 byte x \b, %ux16k CHR +>6 byte&0x08 =0x8 [4-Scr] +>6 byte&0x09 =0x0 [H-mirror] +>6 byte&0x09 =0x1 [V-mirror] +>6 byte&0x02 =0x2 [SRAM] +>6 byte&0x04 =0x4 [Trainer] +>7 byte&0x03 =0x2 [PC10] +>7 byte&0x03 =0x1 [VS +>>7 byte&0x0C =0x8 +# NES 2.0: VS PPU +>>>13 byte&0x0F =0x0 \b, RP2C03B +>>>13 byte&0x0F =0x1 \b, RP2C03G +>>>13 byte&0x0F =0x2 \b, RP2C04-0001 +>>>13 byte&0x0F =0x3 \b, RP2C04-0002 +>>>13 byte&0x0F =0x4 \b, RP2C04-0003 +>>>13 byte&0x0F =0x5 \b, RP2C04-0004 +>>>13 byte&0x0F =0x6 \b, RP2C03B +>>>13 byte&0x0F =0x7 \b, RP2C03C +>>>13 byte&0x0F =0x8 \b, RP2C05-01 +>>>13 byte&0x0F =0x9 \b, RP2C05-02 +>>>13 byte&0x0F =0xA \b, RP2C05-03 +>>>13 byte&0x0F =0xB \b, RP2C05-04 +>>>13 byte&0x0F =0xC \b, RP2C05-05 +# TODO: VS protection hardware? +>>7 byte x \b] +# NES 2.0-specific flags. +>7 byte&0x0C =0x8 +>>12 byte&0x03 =0x0 [NTSC] +>>12 byte&0x03 =0x1 [PAL] +>>12 byte&0x02 =0x2 [NTSC+PAL] + +#------------------------------------------------------------------------------ +# unif: file(1) magic for UNIF-format Nintendo Entertainment System ROM images +# Reference: http://wiki.nesdev.com/w/index.php/UNIF +# From: David Korth <gerbilsoft@gerbilsoft.com> +# TODO commit on 2016/03/21 +# +# NOTE: The UNIF format uses chunks instead of a fixed header, +# so most of the data isn't easily parseable. +# +0 string UNIF +4 lelong <16 UNIF v%d format NES ROM image #------------------------------------------------------------------------------ -# gameboy: file(1) magic for the Nintendo (Color) Gameboy raw ROM format +# gameboy: file(1) magic for the Nintendo (Color) Gameboy raw ROM format +# Reference: http://gbdev.gg8.se/wiki/articles/The_Cartridge_Header # -0x104 belong 0xCEED6666 Gameboy ROM: ->0x134 string >\0 "%.16s" ->0x146 byte 0x03 \b,[SGB] ->0x147 byte 0x00 \b, [ROM ONLY] ->0x147 byte 0x01 \b, [ROM+MBC1] ->0x147 byte 0x02 \b, [ROM+MBC1+RAM] ->0x147 byte 0x03 \b, [ROM+MBC1+RAM+BATT] ->0x147 byte 0x05 \b, [ROM+MBC2] ->0x147 byte 0x06 \b, [ROM+MBC2+BATTERY] ->0x147 byte 0x08 \b, [ROM+RAM] ->0x147 byte 0x09 \b, [ROM+RAM+BATTERY] ->0x147 byte 0x0B \b, [ROM+MMM01] ->0x147 byte 0x0C \b, [ROM+MMM01+SRAM] ->0x147 byte 0x0D \b, [ROM+MMM01+SRAM+BATT] ->0x147 byte 0x0F \b, [ROM+MBC3+TIMER+BATT] ->0x147 byte 0x10 \b, [ROM+MBC3+TIMER+RAM+BATT] ->0x147 byte 0x11 \b, [ROM+MBC3] ->0x147 byte 0x12 \b, [ROM+MBC3+RAM] ->0x147 byte 0x13 \b, [ROM+MBC3+RAM+BATT] ->0x147 byte 0x19 \b, [ROM+MBC5] ->0x147 byte 0x1A \b, [ROM+MBC5+RAM] ->0x147 byte 0x1B \b, [ROM+MBC5+RAM+BATT] ->0x147 byte 0x1C \b, [ROM+MBC5+RUMBLE] ->0x147 byte 0x1D \b, [ROM+MBC5+RUMBLE+SRAM] ->0x147 byte 0x1E \b, [ROM+MBC5+RUMBLE+SRAM+BATT] ->0x147 byte 0x1F \b, [Pocket Camera] ->0x147 byte 0xFD \b, [Bandai TAMA5] ->0x147 byte 0xFE \b, [Hudson HuC-3] ->0x147 byte 0xFF \b, [Hudson HuC-1] +0x104 bequad 0xCEED6666CC0D000B Game Boy ROM image +>0x143 byte&0x80 0x80 +>>0x134 string >\0 \b: "%.15s" +>0x143 byte&0x80 !0x80 +>>0x134 string >\0 \b: "%.16s" +>0x14c byte x (Rev.%02u) +# Machine type. (SGB, CGB, SGB+CGB) +>0x14b byte 0x33 +>>0x146 byte 0x03 +>>>0x143 byte&0x80 0x80 [SGB+CGB] +>>>0x143 byte&0x80 !0x80 [SGB] +>>0x146 byte !0x03 +>>>0x143 byte&0xC0 0x80 [CGB] +>>>0x143 byte&0xC0 0xC0 [CGB ONLY] + +# Mapper. +>0x147 byte 0x00 [ROM ONLY] +>0x147 byte 0x01 [MBC1] +>0x147 byte 0x02 [MBC1+RAM] +>0x147 byte 0x03 [MBC1+RAM+BATT] +>0x147 byte 0x05 [MBC2] +>0x147 byte 0x06 [MBC2+BATTERY] +>0x147 byte 0x08 [ROM+RAM] +>0x147 byte 0x09 [ROM+RAM+BATTERY] +>0x147 byte 0x0B [MMM01] +>0x147 byte 0x0C [MMM01+SRAM] +>0x147 byte 0x0D [MMM01+SRAM+BATT] +>0x147 byte 0x0F [MBC3+TIMER+BATT] +>0x147 byte 0x10 [MBC3+TIMER+RAM+BATT] +>0x147 byte 0x11 [MBC3] +>0x147 byte 0x12 [MBC3+RAM] +>0x147 byte 0x13 [MBC3+RAM+BATT] +>0x147 byte 0x19 [MBC5] +>0x147 byte 0x1A [MBC5+RAM] +>0x147 byte 0x1B [MBC5+RAM+BATT] +>0x147 byte 0x1C [MBC5+RUMBLE] +>0x147 byte 0x1D [MBC5+RUMBLE+SRAM] +>0x147 byte 0x1E [MBC5+RUMBLE+SRAM+BATT] +>0x147 byte 0xFC [Pocket Camera] +>0x147 byte 0xFD [Bandai TAMA5] +>0x147 byte 0xFE [Hudson HuC-3] +>0x147 byte 0xFF [Hudson HuC-1] + +# ROM size. >0x148 byte 0 \b, ROM: 256Kbit >0x148 byte 1 \b, ROM: 512Kbit >0x148 byte 2 \b, ROM: 1Mbit @@ -55,58 +111,198 @@ >0x148 byte 4 \b, ROM: 4Mbit >0x148 byte 5 \b, ROM: 8Mbit >0x148 byte 6 \b, ROM: 16Mbit +>0x148 byte 7 \b, ROM: 32Mbit >0x148 byte 0x52 \b, ROM: 9Mbit >0x148 byte 0x53 \b, ROM: 10Mbit >0x148 byte 0x54 \b, ROM: 12Mbit +# RAM size. >0x149 byte 1 \b, RAM: 16Kbit >0x149 byte 2 \b, RAM: 64Kbit >0x149 byte 3 \b, RAM: 128Kbit >0x149 byte 4 \b, RAM: 1Mbit - -#>0x14e long x \b, CRC: %x +>0x149 byte 5 \b, RAM: 512Kbit #------------------------------------------------------------------------------ -# genesis: file(1) magic for the Sega MegaDrive/Genesis raw ROM format +# genesis: file(1) magic for various Sega Mega Drive / Genesis ROM image and disc formats +# Updated by David Korth <gerbilsoft@gerbilsoft.com> +# References: +# - http://www.retrodev.com/segacd.html +# - http://devster.monkeeh.com/sega/32xguide1.txt # -0x100 string SEGA Sega MegaDrive/Genesis raw ROM dump ->0x120 string >\0 Name: "%.16s" ->0x110 string >\0 %.16s ->0x1B0 string RA with SRAM + +# Common Sega Mega Drive header format. +# FIXME: Name fields are 48 bytes, but have spaces for padding instead of 00s. +0 name sega-mega-drive-header +# ROM title. (Use domestic if present; if not, use international.) +>0x120 byte >0x20 +>>0x120 string >\0 \b: "%.16s" +>0x120 byte <0x21 +>>0x150 string >\0 \b: "%.16s" +# Other information. +>0x180 string >\0 (%.14s +>>0x110 string >\0 \b, %.16s +>0x180 byte 0 +>>0x110 string >\0 (%.16s +>0 byte x \b) + +# TODO: Check for 32X CD? +# Sega Mega CD disc images: 2048-byte sectors. +0 string SEGADISCSYSTEM\ \ Sega Mega CD disc image +>0 use sega-mega-drive-header +>0 byte x \b, 2048-byte sectors +0 string SEGABOOTDISC\ \ \ \ Sega Mega CD disc image +>0 use sega-mega-drive-header +>0 byte x \b, 2048-byte sectors +# Sega Mega CD disc images: 2352-byte sectors. +0x10 string SEGADISCSYSTEM\ \ Sega Mega CD disc image +>0x10 use sega-mega-drive-header +>0 byte x \b, 2352-byte sectors +0x10 string SEGABOOTDISC\ \ \ \ Sega Mega CD disc image +>0x10 use sega-mega-drive-header +>0 byte x \b, 2352-byte sectors + +# Sega Mega Drive, 32X, Pico, and Mega CD Boot ROM images. +0x100 string SEGA +>0x3C0 bequad 0x4D41525320434845 Sega 32X ROM image +>>0 use sega-mega-drive-header +>0x3C0 bequad !0x4D41525320434845 +>>0x105 belong 0x5049434F Sega Pico ROM image +>>>0 use sega-mega-drive-header +>>0x105 belong !0x5049434F +>>>0x180 beshort 0x4252 Sega Mega CD Boot ROM image +>>>0x180 beshort !0x4252 Sega Mega Drive / Genesis ROM image +>>>0 use sega-mega-drive-header #------------------------------------------------------------------------------ -# genesis: file(1) magic for the Super MegaDrive ROM dump format +# genesis: file(1) magic for the Super MegaDrive ROM dump format # -0x280 string EAGN Super MagicDrive ROM dump ->0 byte x %dx16k blocks ->2 byte 0 \b, last in series or standalone ->2 byte >0 \b, split ROM ->8 byte 0xAA ->9 byte 0xBB + +# NOTE: Due to interleaving, we can't display anything +# other than the copier header information. +0 name sega-genesis-smd-header +>0 byte x %dx16k blocks +>2 byte 0 \b, last in series or standalone +>2 byte >0 \b, split ROM + +# "Sega Genesis" header. +0x280 string EAGN +>8 beshort 0xAABB Sega Mega Drive / Genesis ROM image (SMD format): +>>0 use sega-genesis-smd-header + +# "Sega Mega Drive" header. +0x280 string EAMG +>8 beshort 0xAABB Sega Mega Drive / Genesis ROM image (SMD format): +>>0 use sega-genesis-smd-header #------------------------------------------------------------------------------ -# genesis: file(1) alternate magic for the Super MegaDrive ROM dump format +# smsgg: file(1) magic for Sega Master System and Game Gear ROM images +# Detects all Game Gear and export Sega Master System ROM images, +# and some Japanese Sega Master System ROM images. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: http://www.smspower.org/Development/ROMHeader # -0x280 string EAMG Super MagicDrive ROM dump ->0 byte x %dx16k blocks ->2 byte x \b, last in series or standalone ->8 byte 0xAA ->9 byte 0xBB + +# General SMS header rule. +# The SMS boot ROM checks the header at three locations. +0 name sega-master-system-rom-header +# Machine type. +>0x0F byte&0xF0 0x30 Sega Master System +>0x0F byte&0xF0 0x40 Sega Master System +>0x0F byte&0xF0 0x50 Sega Game Gear +>0x0F byte&0xF0 0x60 Sega Game Gear +>0x0F byte&0xF0 0x70 Sega Game Gear +>0x0F byte&0xF0 <0x30 Sega Master System / Game Gear +>0x0F byte&0xF0 >0x70 Sega Master System / Game Gear +>0 byte x ROM image: +# Product code. +>0x0E byte&0xF0 0x10 1 +>0x0E byte&0xF0 0x20 2 +>0x0E byte&0xF0 0x30 3 +>0x0E byte&0xF0 0x40 4 +>0x0E byte&0xF0 0x50 5 +>0x0E byte&0xF0 0x60 6 +>0x0E byte&0xF0 0x70 7 +>0x0E byte&0xF0 0x80 8 +>0x0E byte&0xF0 0x90 9 +>0x0E byte&0xF0 0xA0 10 +>0x0E byte&0xF0 0xB0 11 +>0x0E byte&0xF0 0xC0 12 +>0x0E byte&0xF0 0xD0 13 +>0x0E byte&0xF0 0xE0 14 +>0x0E byte&0xF0 0xF0 15 +# If the product code is 5 digits, we'll need to backspace here. +>0x0E byte&0xF0 !0 +>>0x0C leshort x \b%04x +>0x0E byte&0xF0 0 +>>0x0C leshort x %04x +# Revision. +>0x0E byte&0x0F x (Rev.%02d) +# ROM size. (Used for the boot ROM checksum routine.) +>0x0F byte&0x0F 0x0A (8 KB) +>0x0F byte&0x0F 0x0B (16 KB) +>0x0F byte&0x0F 0x0C (32 KB) +>0x0F byte&0x0F 0x0D (48 KB) +>0x0F byte&0x0F 0x0E (64 KB) +>0x0F byte&0x0F 0x0F (128 KB) +>0x0F byte&0x0F 0x00 (256 KB) +>0x0F byte&0x0F 0x01 (512 KB) +>0x0F byte&0x0F 0x02 (1 MB) + +# SMS/GG header locations. +0x7FF0 string TMR\ SEGA +>0x7FF0 use sega-master-system-rom-header +0x3FF0 string TMR\ SEGA +>0x3FF0 use sega-master-system-rom-header +0x1FF0 string TMR\ SEGA +>0x1FF0 use sega-master-system-rom-header #------------------------------------------------------------------------------ -# smsgg: file(1) magic for Sega Master System and Game Gear ROM dumps -# -# Does not detect all images. Very preliminary guesswork. Need more data -# on format. +# saturn: file(1) magic for the Sega Saturn disc image format. +# From: David Korth <gerbilsoft@gerbilsoft.com> # -# FIXME: need a little more info...;P + +# Common Sega Saturn disc header format. +# NOTE: Title is 112 bytes, but we're only showing 32 due to space padding. +# TODO: Release date, device information, region code, others? +0 name sega-saturn-disc-header +>0x60 string >\0 \b: "%.32s" +>0x20 string >\0 (%.10s +>>0x2A string >\0 \b, %.6s) +>>0x2A byte 0 \b) + +# 2048-byte sector version. +0 string SEGA\ SEGASATURN\ Sega Saturn disc image +>0 use sega-saturn-disc-header +>0 byte x (2048-byte sectors) +# 2352-byte sector version. +0x10 string SEGA\ SEGASATURN\ Sega Saturn disc image +>0x10 use sega-saturn-disc-header +>0 byte x (2352-byte sectors) + +#------------------------------------------------------------------------------ +# dreamcast: file(1) magic for the Sega Dreamcast disc image format. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: http://mc.pp.se/dc/ip0000.bin.html # -#0 byte 0xF3 -#>1 byte 0xED Sega Master System/Game Gear ROM dump -#>1 byte 0x31 Sega Master System/Game Gear ROM dump -#>1 byte 0xDB Sega Master System/Game Gear ROM dump -#>1 byte 0xAF Sega Master System/Game Gear ROM dump -#>1 byte 0xC3 Sega Master System/Game Gear ROM dump + +# Common Sega Dreamcast disc header format. +# NOTE: Title is 128 bytes, but we're only showing 32 due to space padding. +# TODO: Release date, device information, region code, others? +0 name sega-dreamcast-disc-header +>0x80 string >\0 \b: "%.32s" +>0x40 string >\0 (%.10s +>>0x4A string >\0 \b, %.6s) +>>0x4A byte 0 \b) + +# 2048-byte sector version. +0 string SEGA\ SEGAKATANA\ Sega Dreamcast disc image +>0 use sega-dreamcast-disc-header +>0 byte x (2048-byte sectors) +# 2352-byte sector version. +0x10 string SEGA\ SEGAKATANA\ Sega Dreamcast disc image +>0x10 use sega-dreamcast-disc-header +>0 byte x (2352-byte sectors) #------------------------------------------------------------------------------ # dreamcast: file(1) uncertain magic for the Sega Dreamcast VMU image format @@ -115,15 +311,77 @@ 0 string LCDi Dream Animator file #------------------------------------------------------------------------------ -# v64: file(1) uncertain magic for the V64 format N64 ROM dumps +# z64: file(1) magic for the Z64 format N64 ROM dumps +# Reference: http://forum.pj64-emu.com/showthread.php?t=2239 +# From: David Korth <gerbilsoft@gerbilsoft.com> # -0 belong 0x37804012 V64 Nintendo 64 ROM dump +0 bequad 0x803712400000000F Nintendo 64 ROM image +>0x20 string >\0 \b: "%.20s" +>0x3B string x (%.4s +>0x3F byte x \b, Rev.%02u) -# From: "Nelson A. de Oliveira" <naoliv@gmail.com> -# Nintendo .nds -192 string \044\377\256Qi\232 Nintendo DS Game ROM Image -# Nintendo .gba -0 string \056\000\000\352$\377\256Qi Nintendo Game Boy Advance ROM Image +#------------------------------------------------------------------------------ +# v64: file(1) magic for the V64 format N64 ROM dumps +# Same as z64 format, but with 16-bit byteswapping. +# +0 bequad 0x3780401200000F00 Nintendo 64 ROM image (V64) + +#------------------------------------------------------------------------------ +# n64-swap2: file(1) magic for the swap2 format N64 ROM dumps +# Same as z64 format, but with swapped 16-bit words. +# +0 bequad 0x12408037000F0000 Nintendo 64 ROM image (wordswapped) + +#------------------------------------------------------------------------------ +# n64-le32: file(1) magic for the 32-bit byteswapped format N64 ROM dumps +# Same as z64 format, but with 32-bit byteswapping. +# +0 bequad 0x401237800F000000 Nintendo 64 ROM image (32-bit byteswapped) + +#------------------------------------------------------------------------------ +# gba: file(1) magic for the Nintendo Game Boy Advance raw ROM format +# Reference: http://problemkaputt.de/gbatek.htm#gbacartridgeheader +# +# Original version from: "Nelson A. de Oliveira" <naoliv@gmail.com> +# Updated version from: David Korth <gerbilsoft@gerbilsoft.com> +# +4 bequad 0x24FFAE51699AA221 Game Boy Advance ROM image +>0xA0 string >\0 \b: "%.12s" +>0xAC string x (%.6s +>0xBC byte x \b, Rev.%02u) + +#------------------------------------------------------------------------------ +# nds: file(1) magic for the Nintendo DS(i) raw ROM format +# Reference: http://problemkaputt.de/gbatek.htm#dscartridgeheader +# +# Original version from: "Nelson A. de Oliveira" <naoliv@gmail.com> +# Updated version from: David Korth <gerbilsoft@gerbilsoft.com> +# +0xC0 bequad 0x24FFAE51699AA221 Nintendo DS ROM image +>0x00 string >\0 \b: "%.12s" +>0x0C string x (%.6s +>0x1E byte x \b, Rev.%02u) +>0x12 byte 2 (DSi enhanced) +>0x12 byte 3 (DSi only) + +#------------------------------------------------------------------------------ +# nds_passme: file(1) magic for Nintendo DS ROM images for GBA cartridge boot. +# This is also used for loading .nds files using the MSET exploit on 3DS. +# Reference: https://github.com/devkitPro/ndstool/blob/master/source/ndscreate.cpp +0xC0 bequad 0xC8604FE201708FE2 Nintendo DS Slot-2 ROM image (PassMe) + +#------------------------------------------------------------------------------ +# ngp: file(1) magic for the Neo Geo Pocket (Color) raw ROM format. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# References: +# - https://neogpc.googlecode.com/svn-history/r10/trunk/src/core/neogpc.cpp +# - http://www.devrs.com/ngp/files/ngpctech.txt +# +0x0A string BY\ SNK\ CORPORATION Neo Geo Pocket +>0x23 byte 0x10 Color +>0 byte x ROM image +>0x24 string >\0 \b: "%.12s" +>0x1F byte 0xFF (debug mode enabled) #------------------------------------------------------------------------------ # msx: file(1) magic for MSX game cartridge dumps @@ -133,9 +391,25 @@ #------------------------------------------------------------------------------ # Sony Playstation executables (Adam Sjoegren <asjo@diku.dk>) : 0 string PS-X\ EXE Sony Playstation executable +>16 lelong x PC=0x%08x, +>20 lelong !0 GP=0x%08x, +>24 lelong !0 .text=[0x%08x, +>>28 lelong x \b0x%x], +>32 lelong !0 .data=[0x%08x, +>>36 lelong x \b0x%x], +>40 lelong !0 .bss=[0x%08x, +>>44 lelong x \b0x%x], +>48 lelong !0 Stack=0x%08x, +>48 lelong =0 No Stack!, +>52 lelong !0 StackSize=0x%x, +#>76 string >\0 (%s) # Area: >113 string x (%s) +# CPE executables +0 string CPE CPE executable +>3 byte x (version %d) + #------------------------------------------------------------------------------ # Microsoft Xbox executables .xbe (Esa Hyytia <ehyytia@cc.hut.fi>) 0 string XBEH XBE, Microsoft Xbox executable @@ -272,3 +546,117 @@ # From: Sven Hartge <debian@ds9.argh.org> 0 string SCVM ScummVM savegame >12 string >\0 "%s" + +#------------------------------------------------------------------------------ +# Nintendo GameCube / Wii file formats. +# + +# Type: Nintendo GameCube/Wii common disc header data. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: http://wiibrew.org/wiki/Wii_Disc +0 name nintendo-gcn-disc-common +>0x20 string x "%.64s" +>0x00 string x (%.6s +>0x06 byte >0 +>>0x06 byte 1 \b, Disc 2 +>>0x06 byte 2 \b, Disc 3 +>>0x06 byte 3 \b, Disc 4 +>0x07 byte x \b, Rev.%02u) + +# Type: Nintendo GameCube disc image +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: http://wiibrew.org/wiki/Wii_Disc +0x1C belong 0xC2339F3D Nintendo GameCube disc image: +>0 use nintendo-gcn-disc-common + +# Type: Nintendo Wii disc image +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: http://wiibrew.org/wiki/Wii_Disc +0x18 belong 0x5D1C9EA3 Nintendo Wii disc image: +>0 use nintendo-gcn-disc-common + +# Type: Nintendo Wii disc image (WBFS format) +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: http://wiibrew.org/wiki/Wii_Disc +0 string WBFS +>0x218 belong 0x5D1C9EA3 Nintendo Wii disc image (WBFS format): +>>0x200 use nintendo-gcn-disc-common + +#------------------------------------------------------------------------------ +# Nintendo 3DS file formats. +# + +# Type: Nintendo 3DS "NCCH" header. +# Contained within either a CXI executable or an NCSD image. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: https://www.3dbrew.org/wiki/NCCH +0 name nintendo-3ds-NCCH +>0x100 string NCCH +>>0x150 string >\0 \b: "%.16s" +>>0x112 leshort x (v%u) +>>0x18C byte 2 (New3DS only) + +# Type: Nintendo 3DS "NCSD" image. (game cards and eMMC) +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: https://www.3dbrew.org/wiki/NCSD +0x100 string NCSD +>0x118 lequad 0 Nintendo 3DS Game Card image +>>0x1000 use nintendo-3ds-NCCH +>>0x18D byte 0 (inner device) +>>0x18D byte 1 (Card1) +>>0x18D byte 2 (Card2) +>>0x18D byte 3 (extended device) +>0x118 bequad 0x0102020202000000 Nintendo 3DS eMMC dump (Old3DS) +>0x118 bequad 0x0102020203000000 Nintendo 3DS eMMC dump (New3DS) + +# Type: Nintendo 3DS "NCCH" container. +# https://www.3dbrew.org/wiki/NCCH +0x100 string NCCH Nintendo 3DS +>0x18D byte&2 0 File Archive (CFA) +>0x18D byte&2 2 Executable Image (CXI) +>0 use nintendo-3ds-NCCH + +# Type: Nintendo 3DS "SMDH" file. (application description) +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: https://3dbrew.org/wiki/SMDH +0 string SMDH Nintendo 3DS SMDH file +>0x208 leshort !0 +>>0x208 lestring16 x \b: "%.128s" +>>0x388 leshort !0 +>>>0x388 lestring16 x by %.128s +>0x208 leshort 0 +>>0x008 leshort !0 +>>>0x008 lestring16 x \b: "%.128s" +>>>0x188 leshort !0 +>>>>0x188 lestring16 x by %.128s + +# Type: Nintendo 3DS Homebrew Application. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Refernece: https://3dbrew.org/wiki/3DSX_Format +0 string 3DSX Nintendo 3DS Homebrew Application (3DSX) + +#------------------------------------------------------------------------------ +# a7800: file(1) magic for the Atari 7800 raw ROM format. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: https://sites.google.com/site/atari7800wiki/a78-header + +0 byte >0 +>0 byte <3 +>>1 string ATARI7800 Atari 7800 ROM image +>>>0x11 string >\0 \b: "%.32s" +# Display type. +>>>0x39 byte 0 (NTSC) +>>>0x39 byte 1 (PAL) +>>>0x36 byte&1 1 (POKEY) + +#------------------------------------------------------------------------------ +# vectrex: file(1) magic for the GCE Vectrex raw ROM format. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# Reference: http://www.playvectrex.com/designit/chrissalo/hello1.htm +# +# NOTE: Title is terminated with 0x80, not 0. +# The header is terminated with a 0, so that will +# terminate the title as well. +# +0 string g\ GCE Vectrex ROM image +>0x11 string >\0 \b: "%.16s" diff --git a/contrib/file/magic/Magdir/database b/contrib/file/magic/Magdir/database index f39acfda..e5cde8a 100644 --- a/contrib/file/magic/Magdir/database +++ b/contrib/file/magic/Magdir/database @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: database,v 1.45 2015/09/09 16:25:29 christos Exp $ +# $File: database,v 1.48 2016/04/14 20:34:28 christos Exp $ # database: file(1) magic for various databases # # extracted from header/code files by Graeme Wilford (eep2gw@ee.surrey.ac.uk) @@ -377,7 +377,10 @@ >>>>>>>>>>>>0 use dbase3-memo-print # dBASE IV DBT with positive block size >>>>>>>20 uleshort >0 ->>>>>>>>0 use dbase4-memo-print +# dBASE IV DBT with valid block length like 512, 1024 +# multiple of 2 in between 16 and 16 K ,implies upper and lower bits are zero +>>>>>>>>20 uleshort&0x800f 0 +>>>>>>>>>0 use dbase4-memo-print # Print the information of dBase III DBT memo file 0 name dbase3-memo-print @@ -395,6 +398,8 @@ # Print the information of dBase IV DBT memo file 0 name dbase4-memo-print >0 lelong x dBase IV DBT +!:mime application/x-dbt +!:ext dbt # 8 character shorted main name of coresponding dBASE IV DBF file >8 ubelong >0x20000000 # skip unusual like for angest.dbt @@ -455,6 +460,52 @@ 4 string Standard\ ACE\ DB Microsoft Access Database !:mime application/x-msaccess +# From: Joerg Jenderek +# URL: http://fileformats.archiveteam.org/wiki/Extensible_Storage_Engine +# Reference: https://github.com/libyal/libesedb/archive/master.zip +# libesedb-master/documentation/ +# Extensible Storage Engine (ESE) Database File (EDB) format.asciidoc +# Note: also known as "JET Blue". Used by numerous Windows components such as +# Windows Search, Mail, Exchange and Active Directory. +4 ubelong 0xefcdab89 +# unknown1 +>132 ubelong 0 Extensible storage engine +!:mime application/x-ms-ese +# file_type 0~database 1~stream +>>12 ulelong 0 DataBase +# Security DataBase (sdb) +!:ext edb/sdb +>>12 ulelong 1 STreaMing +!:ext stm +# format_version 620h +>>8 uleshort x \b, version 0x%x +>>10 uleshort >0 revision 0x%4.4x +>>0 ubelong x \b, checksum 0x%8.8x +# Page size 4096 8192 32768 +>>236 ulequad x \b, page size %lld +# database_state +>>52 ulelong 1 \b, JustCreated +>>52 ulelong 2 \b, DirtyShutdown +#>>52 ulelong 3 \b, CleanShutdown +>>52 ulelong 4 \b, BeingConverted +>>52 ulelong 5 \b, ForceDetach +# Windows NT major version when the databases indexes were updated. +>>216 ulelong x \b, Windows version %d +# Windows NT minor version +>>220 ulelong x \b.%d + +# From: Joerg Jenderek +# URL: http://forensicswiki.org/wiki/Windows_Application_Compatibility +# Note: files contain application compatibility fixes, application compatibility modes and application help messages. +8 string sdbf +>7 ubyte 0 +# TAG_TYPE_LIST+TAG_INDEXES +>>12 uleshort 0x7802 Windows application compatibility Shim DataBase +# version? 2 3 +#>>>0 ulelong x \b, version %d +!:mime application/x-ms-sdb +!:ext sdb + # TDB database from Samba et al - Martin Pool <mbp@samba.org> 0 string TDB\ file TDB database >32 lelong 0x2601196D version 6, little-endian @@ -545,3 +596,18 @@ # Hopper (reverse engineering tool) http://www.hopperapp.com/ 0 string hopperdb Hopper database +# URL: https://en.wikipedia.org/wiki/Panorama_(database_engine) +# Reference: http://www.provue.com/Panorama/ +# From: Joerg Jenderek +# NOTE: test only versions 4 and 6.0 with Windows +# length of Panorama database name +5 ubyte >0 +# look after database name for "some" null bits +>(5.B+7) ubelong&0xF3ffF000 0 +# look for first keyword +>>&1 search/2 DESIGN Panorama database +#!:mime application/x-panorama-database +!:apple KASXZEPD +!:ext pan +# database name +>>>5 pstring x \b, "%s" diff --git a/contrib/file/magic/Magdir/der b/contrib/file/magic/Magdir/der new file mode 100644 index 0000000..abfbf9b --- /dev/null +++ b/contrib/file/magic/Magdir/der @@ -0,0 +1,116 @@ +#------------------------------------------------------------------------------ +# $File: der,v 1.1 2016/01/19 15:07:45 christos Exp $ +# der: file(1) magic for DER encoded files +# + +# Certificate information piece +0 name certinfo +>0 der seq +>>&0 der set +>>>&0 der seq +>>>>&0 der obj_id3=550406 +>>>>&0 der prt_str=x \b, countryName=%s +>>&0 der set +>>>&0 der seq +>>>>&0 der obj_id3=550408 +>>>>&0 der utf8_str=x \b, stateOrProvinceName=%s +>>&0 der set +>>>&0 der seq +>>>>&0 der obj_id3=55040a +>>>>&0 der utf8_str=x \b, organizationName=%s +>>&0 der set +>>>&0 der seq +>>>>&0 der obj_id3=550403 +>>>>&0 der utf8_str=x \b, commonName=%s +>>&0 der seq + +# Certificate requests +0 der seq +>&0 der seq +>>&0 der int1=00 DER Encoded Certificate request +>>&0 use certinfo + +# Key Pairs +0 der seq +>&0 der int1=00 +>&0 der int65=x +>&0 der int3=010001 DER Encoded Key Pair, 512 bits + +0 der seq +>&0 der int1=00 +>&0 der int129=x +>&0 der int3=010001 DER Encoded Key Pair, 1024 bits + +0 der seq +>&0 der int1=00 +>&0 der int257=x +>&0 der int3=010001 DER Encoded Key Pair, 2048 bits + +0 der seq +>&0 der int1=00 +>&0 der int513=x +>&0 der int3=010001 DER Encoded Key Pair, 4096 bits + +0 der seq +>&0 der int1=00 +>&0 der int1025=x +>&0 der int3=010001 DER Encoded Key Pair, 8192 bits + +0 der seq +>&0 der int1=00 +>&0 der int2049=x +>&0 der int3=010001 DER Encoded Key Pair, 16k bits + +0 der seq +>&0 der int1=00 +>&0 der int4097=x +>&0 der int3=010001 DER Encoded Key Pair, 32k bits + +# Certificates +0 der seq +>&0 der seq +>>&0 der int2=0dfa DER Encoded Certificate, 512 bits +>>&0 der int2=0dfb DER Encoded Certificate, 1024 bits +>>&0 der int2=0dfc DER Encoded Certificate, 2048 bits +>>&0 der int2=0dfd DER Encoded Certificate, 4096 bits +>>&0 der int2=0dfe DER Encoded Certificate, 8192 bits +>>&0 der int2=0dff DER Encoded Certificate, 16k bits +>>&0 der int2=0e04 DER Encoded Certificate, 32k bits +>>&0 der int2=x DER Encoded Certificate, ? bits (%s) +>>&0 der seq +>>>&0 der obj_id9=2a864886f70d010105 \b, sha1WithRSAEncryption +>>>&0 der obj_id9=x \b, ? Encryption (%s) +>>>&0 der null +>>&0 der seq +>>>&0 der set +>>>>&0 der seq +>>>>>&0 der obj_id3=550406 +>>>>>&0 der prt_str=x \b, countryName=%s +>>>&0 der set +>>>>&0 der seq +>>>>>&0 der obj_id3=550408 +>>>>>&0 der prt_str=x \b, stateOrProvinceName=%s +>>>&0 der set +>>>>&0 der seq +>>>>>&0 der obj_id3=550407 +>>>>>&0 der prt_str=x \b, localityName=%s +>>>&0 der set +>>>>&0 der seq +>>>>>&0 der obj_id3=55040a +>>>>>&0 der prt_str=x \b, organizationName=%s +>>>&0 der set +>>>>&0 der seq +>>>>>&0 der obj_id3=55040b +>>>>>&0 der prt_str=x \b, organizationUnitName=%s +>>>&0 der set +>>>>&0 der seq +>>>>>&0 der obj_id3=550403 +>>>>>&0 der prt_str=x \b, commonName=%s +>>>&0 der set +>>>>&0 der seq +>>>>>&0 der obj_id9=2a864886f70d010901 +>>>>>&0 der ia5_str=x \b, emailAddress=%s +>>&0 der seq +>>>&0 der utc_time=x \b, utcTime=%s +>>>&0 der utc_time=x \b, utcTime=%s +>>&0 use certinfo diff --git a/contrib/file/magic/Magdir/filesystems b/contrib/file/magic/Magdir/filesystems index 87c067e..e950873 100644 --- a/contrib/file/magic/Magdir/filesystems +++ b/contrib/file/magic/Magdir/filesystems @@ -1,5 +1,5 @@ #------------------------------------------------------------------------------ -# $File: filesystems,v 1.111 2015/09/09 16:26:54 christos Exp $ +# $File: filesystems,v 1.113 2016/02/14 14:38:24 christos Exp $ # filesystems: file(1) magic for different filesystems # 0 name partid @@ -1738,28 +1738,30 @@ >0x402 beshort < 100 >0x402 beshort > -1 Minix filesystem, V1, 30 char names (big endian), %d zones >0x1e string minix \b, bootable -0x410 leshort 0x2468 ->0x402 beshort < 100 ->>0x402 beshort > -1 Minix filesystem, V2, 14 char names ->0x1e string minix \b, bootable -0x410 beshort 0x2468 ->0x402 beshort < 100 ->0x402 beshort > -1 Minix filesystem, V2 (big endian) ->0x1e string minix \b, bootable -0x410 leshort 0x2478 ->0x402 beshort < 100 ->0x402 beshort > -1 Minix filesystem, V2, 30 char names ->0x1e string minix \b, bootable -0x410 leshort 0x2478 ->0x402 beshort < 100 ->0x402 beshort > -1 Minix filesystem, V2, 30 char names ->0x1e string minix \b, bootable -0x410 beshort 0x2478 ->0x402 beshort !0 Minix filesystem, V2, 30 char names (big endian) ->0x1e string minix \b, bootable -0x418 leshort 0x4d5a ->0x402 beshort <100 ->>0x402 beshort > -1 Minix filesystem, V3, 60 char names +# Weak Magic: this is $x +#0x410 leshort 0x2468 +#>0x402 beshort < 100 +#>>0x402 beshort > -1 Minix filesystem, V2, 14 char names +#>0x1e string minix \b, bootable +#0x410 beshort 0x2468 +#>0x402 beshort < 100 +#>0x402 beshort > -1 Minix filesystem, V2 (big endian) +#>0x1e string minix \b, bootable +#0x410 leshort 0x2478 +#>0x402 beshort < 100 +#>0x402 beshort > -1 Minix filesystem, V2, 30 char names +#>0x1e string minix \b, bootable +#0x410 leshort 0x2478 +#>0x402 beshort < 100 +#>0x402 beshort > -1 Minix filesystem, V2, 30 char names +#>0x1e string minix \b, bootable +#0x410 beshort 0x2478 +#>0x402 beshort !0 Minix filesystem, V2, 30 char names (big endian) +#>0x1e string minix \b, bootable +# Weak Magic! this is MD +#0x418 leshort 0x4d5a +#>0x402 beshort <100 +#>>0x402 beshort > -1 Minix filesystem, V3, 60 char names # SGI disk labels - Nathan Scott <nathans@debian.org> 0 belong 0x0BE5A941 SGI disk label (volume header) @@ -2214,12 +2216,12 @@ >0x10090 lelong x sectorsize %d, >0x10094 lelong x nodesize %d, >0x10098 lelong x leafsize %d, ->0x10020 belong x UUID=%8x- ->0x10024 beshort x \b%4x- ->0x10026 beshort x \b%4x- ->0x10028 beshort x \b%4x- ->0x1002a beshort x \b%4x ->0x1002c belong x \b%8x, +>0x10020 belong x UUID=%08x- +>0x10024 beshort x \b%04x- +>0x10026 beshort x \b%04x- +>0x10028 beshort x \b%04x- +>0x1002a beshort x \b%04x +>0x1002c belong x \b%08x, >0x10078 lequad x %lld/ >0x10070 lequad x \b%lld bytes used, >0x10088 lequad x %lld devices diff --git a/contrib/file/magic/Magdir/finger b/contrib/file/magic/Magdir/finger new file mode 100644 index 0000000..d8611f6 --- /dev/null +++ b/contrib/file/magic/Magdir/finger @@ -0,0 +1,16 @@ + +#------------------------------------------------------------------------------ +# $File: finger,v 1.2 2015/10/07 02:37:57 christos Exp $ +# fingerprint: file(1) magic for fingerprint data +# XPM bitmaps) +# + +# http://cgit.freedesktop.org/libfprint/libfprint/tree/libfprint/data.c + +0 string FP1 libfprint fingerprint data V1 +>3 beshort x \b, driver_id %x +>5 belong x \b, devtype %x + +0 string FP2 libfprint fingerprint data V2 +>3 beshort x \b, driver_id %x +>5 belong x \b, devtype %x diff --git a/contrib/file/magic/Magdir/flif b/contrib/file/magic/Magdir/flif new file mode 100644 index 0000000..9406208 --- /dev/null +++ b/contrib/file/magic/Magdir/flif @@ -0,0 +1,36 @@ + +#------------------------------------------------------------------------------ +# $File: flif,v 1.1 2015/11/23 22:04:36 christos Exp $ +# flif: Magic data for file(1) command. +# FLIF (Free Lossless Image Format) + +0 string FLIF FLIF +>4 string <H image data +>>6 beshort x \b, %u +>>8 beshort x \bx%u +>>5 string 1 \b, 8-bit/color, +>>5 string 2 \b, 16-bit/color, +>>4 string 1 \b, grayscale, non-interlaced +>>4 string 3 \b, RGB, non-interlaced +>>4 string 4 \b, RGBA, non-interlaced +>>4 string A \b, grayscale +>>4 string C \b, RGB, interlaced +>>4 string D \b, RGBA, interlaced +>4 string >H \b, animation data +>>5 ubyte <255 \b, %i frames +>>>7 beshort x \b, %u +>>>9 beshort x \bx%u +>>>6 string =1 \b, 8-bit/color +>>>6 string =2 \b, 16-bit/color +>>5 ubyte 0xFF +>>>6 beshort x \b, %i frames, +>>>9 beshort x \b, %u +>>>11 beshort x \bx%u +>>>8 string =1 \b, 8-bit/color +>>>8 string =2 \b, 16-bit/color +>>4 string =Q \b, grayscale, non-interlaced +>>4 string =S \b, RGB, non-interlaced +>>4 string =T \b, RGBA, non-interlaced +>>4 string =a \b, grayscale +>>4 string =c \b, RGB, interlaced +>>4 string =d \b, RGBA, interlaced diff --git a/contrib/file/magic/Magdir/fonts b/contrib/file/magic/Magdir/fonts index 4b3173c..41899fb 100644 --- a/contrib/file/magic/Magdir/fonts +++ b/contrib/file/magic/Magdir/fonts @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: fonts,v 1.27 2014/04/30 21:41:02 christos Exp $ +# $File: fonts,v 1.30 2016/03/22 22:27:47 christos Exp $ # fonts: file(1) magic for font data # 0 search/1 FONT ASCII vfont text @@ -29,6 +29,25 @@ # X11 Bitmap Distribution Format, from Daniel Quinlan (quinlan@yggdrasil.com) 0 search/1 STARTFONT\ X11 BDF font text +# From: Joerg Jenderek +# URL: http://grub.gibibit.com/New_font_format +# Reference: util/grub-mkfont.c +# include/grub/fontformat.h +# FONT_FORMAT_SECTION_NAMES_FILE +0 string FILE +# FONT_FORMAT_PFF2_MAGIC +>8 string PFF2 +# leng 4 only at the moment +>>4 ubelong 4 +# FONT_FORMAT_SECTION_NAMES_FONT_NAME +>>>12 string NAME GRUB2 font +!:mime application/x-font-pf2 +!:ext pf2 +# length of font_name +>>>>16 ubelong >0 +# font_name +>>>>>20 string >\0 "%-s" + # X11 fonts, from Daniel Quinlan (quinlan@yggdrasil.com) # PCF must come before SGI additions ("MIPSEL MIPS-II COFF" collides) 0 string \001fcp X11 Portable Compiled Font data @@ -58,8 +77,11 @@ 4098 string DOSFONT DOSFONT2 encrypted font data # downloadable fonts for browser (prints type) anthon@mnt.org -0 string PFR1 PFR1 font +# https://tools.ietf.org/html/rfc3073 +0 string PFR1 Portable Font Resource font data (new) >102 string >0 \b: %s +0 string PFR0 Portable Font Resource font data (old) +>4 beshort >0 version %d # True Type fonts 0 string \000\001\000\000\000 TrueType font data @@ -92,9 +114,25 @@ !:mime application/vnd.ms-fontobject # Web Open Font Format (.woff) +0 name woff +>4 belong 0x00010000 \b, TrueType +>4 belong 0x4F54544F \b, CFF +>4 belong 0x74727565 \b, TrueType +>4 default x +>>4 belong x \b, flavor %d +>8 belong x \b, length %d +#>12 beshort x \b, numTables %d +#>14 beshort x \b, reserved %d +#>16 belong x \b, totalSfntSize %d + # http://www.w3.org/TR/WOFF/ 0 string wOFF Web Open Font Format ->4 belong x \b, flavor %d ->8 belong x \b, length %d +>0 use woff >20 beshort x \b, version %d >22 beshort x \b.%d +# http://www.w3.org/TR/WOFF2/ +0 string wOF2 Web Open Font Format (Version 2) +>0 use woff +#>20 belong x \b, totalCompressedSize %d +>24 beshort x \b, version %d +>26 beshort x \b.%d diff --git a/contrib/file/magic/Magdir/fortran b/contrib/file/magic/Magdir/fortran index 826e912..6abc2f7 100644 --- a/contrib/file/magic/Magdir/fortran +++ b/contrib/file/magic/Magdir/fortran @@ -1,7 +1,9 @@ #------------------------------------------------------------------------------ -# $File: fortran,v 1.9 2015/06/17 19:55:27 christos Exp $ +# $File: fortran,v 1.10 2015/11/05 18:47:16 christos Exp $ # FORTRAN source -0 regex/100l \^[Cc][\ \t] FORTRAN program text +# Check that the first 100 lines start with C or whitespace first. +0 regex/100l !\^[^Cc\ \t].*$ +>0 regex/100l \^[Cc][\ \t] FORTRAN program text !:mime text/x-fortran !:strength - 5 diff --git a/contrib/file/magic/Magdir/hitachi-sh b/contrib/file/magic/Magdir/hitachi-sh index 213d2d6..1b615ae 100644 --- a/contrib/file/magic/Magdir/hitachi-sh +++ b/contrib/file/magic/Magdir/hitachi-sh @@ -1,22 +1,28 @@ #------------------------------------------------------------------------------ -# $File: hitachi-sh,v 1.6 2013/01/29 19:31:33 christos Exp $ +# $File: hitachi-sh,v 1.7 2015/09/30 20:32:35 christos Exp $ # hitach-sh: file(1) magic for Hitachi Super-H # # Super-H COFF # +# updated by Joerg Jenderek at Oct 2015 +# https://en.wikipedia.org/wiki/COFF +# https://de.wikipedia.org/wiki/Common_Object_File_Format +# http://www.delorie.com/djgpp/doc/coff/filhdr.html # below test line conflicts with 2nd NTFS filesystem sector -0 beshort 0x0500 Hitachi SH big-endian COFF # 2nd NTFS filesystem sector often starts with 0x05004e00 for unicode string 5 NTLDR -#0 ubelong&0xFFFFNMPQ 0x0500NMPQ Hitachi SH big-endian COFF ->18 beshort&0x0002 =0x0000 object ->18 beshort&0x0002 =0x0002 executable ->18 beshort&0x0008 =0x0008 \b, stripped ->18 beshort&0x0008 =0x0000 \b, not stripped -# -0 leshort 0x0550 Hitachi SH little-endian COFF ->18 leshort&0x0002 =0x0000 object ->18 leshort&0x0002 =0x0002 executable ->18 leshort&0x0008 =0x0008 \b, stripped ->18 leshort&0x0008 =0x0000 \b, not stripped +# and Portable Gaming Notation Compressed format (*.WID http://pgn.freeservers.com/) +0 beshort 0x0500 +# test for unused flag bits (0x8000,0x0800,0x0400,0x0200,x0080) in f_flags +>18 ubeshort&0x8E80 0 +# use big endian variant of subroutine to display name+variables+flags +# for common object formated files +>>0 use \^display-coff + +0 leshort 0x0550 +# test for unused flag bits in f_flags +>18 uleshort&0x8E80 0 +# use little endian variant of subroutine to +# display name+variables+flags for common object formated files +>>0 use display-coff diff --git a/contrib/file/magic/Magdir/images b/contrib/file/magic/Magdir/images index a3ac70b..d084da7 100644 --- a/contrib/file/magic/Magdir/images +++ b/contrib/file/magic/Magdir/images @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: images,v 1.107 2015/07/11 14:40:10 christos Exp $ +# $File: images,v 1.116 2016/03/23 15:29:20 christos Exp $ # images: file(1) magic for image formats (see also "iff", and "c-lang" for # XPM bitmaps) # @@ -12,26 +12,155 @@ # Targa - matches `povray', `ppmtotga' and `xv' outputs # by Philippe De Muyter <phdm@macqel.be> +# URL: http://justsolve.archiveteam.org/wiki/TGA +# Reference: http://www.dca.fee.unicamp.br/~martino/disciplinas/ea978/tgaffs.pdf +# Update: Joerg Jenderek # at 2, byte ImgType must be 1, 2, 3, 9, 10 or 11 +# ,32 or 33 (both not observed) # at 1, byte CoMapType must be 1 if ImgType is 1 or 9, 0 otherwise +# or theoretically 2-128 reserved for use by Truevision or 128-255 may be used for developer applications # at 3, leshort Index is 0 for povray, ppmtotga and xv outputs # `xv' recognizes only a subset of the following (RGB with pixelsize = 24) # `tgatoppm' recognizes a superset (Index may be anything) -1 belong&0xfff7ffff 0x01010000 Targa image data - Map -!:strength + 2 ->2 byte&8 8 - RLE ->12 leshort >0 %d x ->14 leshort >0 %d -1 belong&0xfff7ffff 0x00020000 Targa image data - RGB -!:strength + 2 ->2 byte&8 8 - RLE ->12 leshort >0 %d x ->14 leshort >0 %d -1 belong&0xfff7ffff 0x00030000 Targa image data - Mono -!:strength + 2 ->2 byte&8 8 - RLE ->12 leshort >0 %d x ->14 leshort >0 %d +# +# test of Color Map Type 0~no 1~color map +# and Image Type 1 2 3 9 10 11 32 33 +# and Color Map Entry Size 0 15 16 24 32 +0 ubequad&0x00FeC400000000C0 0 +# skip more garbage by looking for positive image type +>2 ubyte >0 +# skip some compiled terminfo by looking for image type less equal 33 +>>2 ubyte <34 +# skip arches.3200 , Finder.Root , Slp.1 by looking for low pixel sizes 15 16 24 32 +>>>16 ubyte <33 +# skip more by looking for pixel size 0Fh 10h 18h 20h +>>>>16 ubyte&0xC0 0x00 +# skip 260-16.ico by looking for no color map +>>>>>1 ubyte 0 +# implies no first map entry +>>>>>>3 uleshort 0 +>>>>>>>0 use tga-image +# Color Map +>>>>>1 ubyte >0 +>>>>>>0 use tga-image +# display tga bitmap image information +0 name tga-image +>2 ubyte <34 Targa image data +!:mime image/x-tga +!:apple ????TPIC +# normal extension .tga but some Truevision products used others: +# tpic (Apple),icb (Image Capture Board),vda (Video Display Adapter),vst (NuVista),win (UNSURE about that) +!:ext tga/tpic/icb/vda/vst +# image type 1 2 3 9 10 11 32 33 +>2 ubyte&0xF7 1 - Map +>2 ubyte&0xF7 2 - RGB +# alpha channel +>>17 ubyte&0x0F >0 \bA +>2 ubyte&0xF7 3 - Mono +# type not found, but by http://www.fileformat.info/format/tga/corion.htm +# Compressed color-mapped data, using Huffman, Delta, and runlength encoding +>2 ubyte 32 - Color +# Compressed color-mapped data, using Huffman, Delta, and RLE. 4-pass quadtree- type process +>2 ubyte 33 - Color +# Color Map Type 0~no 1~color map +>1 ubyte 1 ( +# first color map entry, 0 normal +>>3 uleshort >0 \b%d- +# color map length 0 2 1dh 3bh d9h 100h +>>5 uleshort x \b%d) +# 8~run length encoding bit +>2 ubyte&0x08 8 - RLE +# gimp can create big pictures! +>12 uleshort >0 %d x +>12 uleshort =0 65536 x +# image height. 0 interpreted as 65536 +>14 uleshort >0 %d +>14 uleshort =0 65536 +# Image Pixel Size 15 16 24 32 +>16 ubyte x x %d +# X origin of image. 0 normal +>8 uleshort >0 +%d +# Y origin of image. 0 normal; positive for top +>10 uleshort >0 +%d +# Image descriptor: bits 3-0 give the alpha channel depth, bits 5-4 give direction +>17 ubyte&0x0F >0 - %d-bit alpha +# bits 5-4 give direction. normal bottom left +>17 ubyte &0x20 - top +#>17 ubyte ^0x20 - bottom +>17 ubyte &0x10 - right +#>17 ubyte ^0x10 - left +# some info say other bits 6-7 should be zero +# but data storage interleave by http://www.fileformat.info/format/tga/corion.htm +# 00 - no interleave;01 - even/odd interleave; 10 - four way interleave; 11 - reserved +#>17 ubyte&0xC0 0x00 - no interleave +>17 ubyte&0xC0 0x40 - interleave +>17 ubyte&0xC0 0x80 - four way interleave +>17 ubyte&0xC0 0xC0 - reserved +# positive length implies identification field +>0 ubyte >0 +>>18 string x "%s" +# last 18 bytes of newer tga file footer signature +>18 search/4261301/s TRUEVISION-XFILE.\0 +# extension area offset if not 0 +>>&-8 ulelong >0 +# length of the extension area. normal 495 for version 2.0 +>>>(&-4.l) uleshort 0x01EF +# AuthorName[41] +>>>>&0 string >\0 - author "%-.40s" +# Comment[324]=4 * 80 null terminated +>>>>&41 string >\0 - comment "%-.80s" +# date +>>>>&365 ubequad&0xffffFFFFffff0000 !0 +# Day +>>>>>&-6 uleshort x %d +# Month +>>>>>&-8 uleshort x \b-%d +# Year +>>>>>&-4 uleshort x \b-%d +# time +>>>>&371 ubequad&0xffffFFFFffff0000 !0 +# hour +>>>>>&-8 uleshort x %d +# minutes +>>>>>&-6 uleshort x \b:%.2d +# second +>>>>>&-4 uleshort x \b:%.2d +# JobName[41] +>>>>&377 string >\0 - job "%-.40s" +# JobHour Jobminute Jobsecond +>>>>&418 ubequad&0xffffFFFFffff0000 !0 +>>>>>&-8 uleshort x %d +>>>>>&-6 uleshort x \b:%.2d +>>>>>&-4 uleshort x \b:%.2d +# SoftwareId[41] +>>>>&424 string >\0 - %-.40s +# SoftwareVersionNumber +>>>>&424 ubyte >0 +>>>>>&40 uleshort/100 x %d +>>>>>&40 uleshort%100 x \b.%d +# VersionLetter +>>>>>&42 ubyte >0x20 \b%c +# KeyColor +>>>>&468 ulelong >0 - keycolor 0x%8.8x +# Denominator of Pixel ratio. 0~no pixel aspect +>>>>&474 uleshort >0 +# Numerator +>>>>>&-4 uleshort >0 - aspect %d +>>>>>&-2 uleshort x \b/%d +# Denominator of Gamma ratio. 0~no Gamma value +>>>>&478 uleshort >0 +# Numerator +>>>>>&-4 uleshort >0 - gamma %d +>>>>>&-2 uleshort x \b/%d +# ColorOffset +#>>>>&480 ulelong x - col offset 0x%8.8x +# StampOffset +#>>>>&484 ulelong x - stamp offset 0x%8.8x +# ScanOffset +#>>>>&488 ulelong x - scan offset 0x%8.8x +# AttributesType +#>>>>&492 ubyte x - Attributes 0x%x +## EndOfTGA # PBMPLUS images # The next byte following the magic is always whitespace. @@ -545,8 +674,12 @@ 0 beshort 0x1010 PEX Binary Archive # DICOM medical imaging data +# URL: https://en.wikipedia.org/wiki/DICOM#Data_format +# Note: "dcm" is the official file name extension +# XnView mention also "dc3" and "acr" as file name extension 128 string DICM DICOM medical imaging data !:mime application/dicom +!:ext dcm/dicom/dic # XWD - X Window Dump file. # As described in /usr/X11R6/include/X11/XWDFile.h @@ -686,6 +819,7 @@ # GEM Image: Version 1, Headerlen 8 (Wolfram Kleff) # Format variations from: Bernd Nuernberger <bernd.nuernberger@web.de> +# Update: Joerg Jenderek # See http://fileformats.archiveteam.org/wiki/GEM_Raster # For variations, also see: # http://www.seasip.info/Gem/ff_img.html (Ventura) @@ -693,23 +827,59 @@ # http://www.fileformat.info/format/gemraster/spec/index.htm (XIMG, STTT) # http://sylvana.net/1stguide/1STGUIDE.ENG (TIMG) 0 beshort 0x0001 ->2 beshort 0x0008 GEM Image data +# header_size +>2 beshort 0x0008 +>>0 use gem_info +>2 beshort 0x0009 +>>0 use gem_info +# no example for NOSIG +>2 beshort 24 >>0 use gem_info ->2 beshort 0x0009 GEM Image data (Ventura) +# no example for HYPERPAINT +>2 beshort 25 >>0 use gem_info -16 string XIMG\0 GEM XIMG Image data +16 string XIMG\0 >0 use gem_info -16 string STTT\0\x10 GEM STTT Image data +# no example +16 string STTT\0\x10 >0 use gem_info -16 string TIMG\0 GEM TIMG Image data +# no example or description +16 string TIMG\0 >0 use gem_info 0 name gem_info ->12 beshort x %d x ->14 beshort x %d, ->4 beshort x %d planes, ->8 beshort x %d x ->10 beshort x %d pixelsize +# version is 2 for some XIMG and 1 for all others +>0 beshort <0x0003 GEM +# http://www.snowstone.org.uk/riscos/mimeman/mimemap.txt +!:mime image/x-gem +# header_size 24 25 27 59 779 words for colored bitmaps +>>2 beshort >9 +>>>16 string STTT\0\x10 STTT +>>>16 string TIMG\0 TIMG +# HYPERPAINT or NOSIG variant +>>>16 string \0\x80 +>>>>2 beshort =24 NOSIG +>>>>2 beshort !24 HYPERPAINT +# NOSIG or XIMG variant +>>>16 default x +>>>>16 string !XIMG\0 NOSIG +>>16 string =XIMG\0 XIMG Image data +!:ext img/ximg +# to avoid Warning: Current entry does not yet have a description for adding a EXTENSION type +>>16 string !XIMG\0 Image data +!:ext img +# header_size is 9 for Ventura files and 8 for other GEM Paint files +>>2 beshort 9 (Ventura) +#>>2 beshort 8 (Paint) +>>12 beshort x %d x +>>14 beshort x %d, +# 1 4 8 +>>4 beshort x %d planes, +# in tenths of a millimetre +>>8 beshort x %d x +>>10 beshort x %d pixelsize +# pattern_size 1-8. 2 for GEM Paint +>>6 beshort !2 \b, pattern size %d # GEM Metafile (Wolfram Kleff) 0 lelong 0x0018FFFF GEM Metafile data @@ -998,7 +1168,22 @@ !:mime image/x-polar-monitor-bitmap # From: Rick Richardson <rickrich@gmail.com> +# updated by: Joerg Jenderek +# URL: http://techmods.net/nuvi/ 0 string GARMIN\ BITMAP\ 01 Garmin Bitmap file +# extension is also used for +# Sony SRF raw image (image/x-sony-srf) +# SRF map +# Terragen Surface Map (http://www.planetside.co.uk/terragen) +# FileLocator Pro search criteria file (http://www.mythicsoft.com/filelocatorpro) +!:ext srf +#!:mime image/x-garmin-srf +# version 1.00,2.00,2.10,2.40,2.50 +>0x2f string >0 \b, version %4.4s +# width (2880,2881,3240) +>0x55 uleshort >0 \b, %dx +# height (80,90) +>>0x53 uleshort x \b%d # Type: Ulead Photo Explorer5 (.pe5) # URL: http://www.jisyo.com/cgibin/view.cgi?EXT=pe5 (Japanese) @@ -1120,3 +1305,143 @@ # 0 string \x42\x50\x47\xFB BPG (Better Portable Graphics) !:mime image/bpg + +# From: Joerg Jenderek +# URL: https://en.wikipedia.org/wiki/Apple_Icon_Image_format +0 string icns Mac OS X icon +!:mime image/x-icns +!:apple ????icns +!:ext icns +>4 ubelong >0 +# file size +>>4 ubelong x \b, %d bytes +# icon type +>>8 string x \b, "%4.4s" type + +# TIM images +0 lelong 0x00000010 TIM image, +>4 lelong 0x8 4-Bit, +>4 lelong 0x9 8-Bit, +>4 lelong 0x2 15-Bit, +>4 lelong 0x3 24-Bit, +>4 lelong &8 +>>(8.l+12) leshort x Pixel at (%d, +>>(8.l+14) leshort x \b%d) +>>(8.l+16) leshort x Size=%dx +>>(8.l+18) leshort x \b%d, +>>4 lelong 0x8 16 CLUT Entries at +>>4 lelong 0x9 256 CLUT Entries at +>>12 leshort x (%d, +>>14 leshort x \b%d) +>4 lelong ^8 +>>12 leshort x Pixel at (%d, +>>14 leshort x \b%d) +>>16 leshort x Size=%dx +>>18 leshort x \b%d + +# MDEC streams +0 lelong 0x80010160 MDEC video stream, +>16 leshort x %dx +>18 leshort x \b%d +#>8 lelong x %d frames +#>4 leshort x secCount=%d; +#>6 leshort x nSectors=%d; +#>12 lelong x frameSize=%d; + +# BS encoded bitstreams +2 leshort 0x3800 BS image, +>6 leshort x Version %d, +>4 leshort x Quantization %d, +>0 leshort x (Decompresses to %d words) + +# Type: farbfeld image. +# Url: http://tools.suckless.org/farbfeld/ +# From: Ian D. Scott <ian@iandouglasscott.com> +# +0 string farbfeld farbfeld image data, +>8 ubelong x %dx +>12 ubelong x \b%d + +# Type: Sega PVR image. +# From: David Korth <gerbilsoft@gerbilsoft.com> +# References: +# - http://fabiensanglard.net/Mykaruga/tools/segaPVRFormat.txt +# - https://github.com/yazgoo/pvrx2png +# - https://github.com/nickworonekin/puyotools + +# Sega PVR header. +0 name sega-pvr-image-header +>0x0C leshort x %d x +>0x0E leshort x %d +# Image format. +>0x08 byte 0 \b, ARGB1555 +>0x08 byte 1 \b, RGB565 +>0x08 byte 2 \b, ARGB4444 +>0x08 byte 3 \b, YUV442 +>0x08 byte 4 \b, Bump +>0x08 byte 5 \b, 4bpp +>0x08 byte 6 \b, 8bpp +# Image data type. +>0x09 byte 0x01 \b, square twiddled +>0x09 byte 0x02 \b, square twiddled & mipmap +>0x09 byte 0x03 \b, VQ +>0x09 byte 0x04 \b, VQ & mipmap +>0x09 byte 0x05 \b, 8-bit CLUT twiddled +>0x09 byte 0x06 \b, 4-bit CLUT twiddled +>0x09 byte 0x07 \b, 8-bit direct twiddled +>0x09 byte 0x08 \b, 4-bit direct twiddled +>0x09 byte 0x09 \b, rectangle +>0x09 byte 0x0B \b, rectangular stride +>0x09 byte 0x0D \b, rectangular twiddled +>0x09 byte 0x10 \b, small VQ +>0x09 byte 0x11 \b, small VQ & mipmap +>0x09 byte 0x12 \b, square twiddled & mipmap + +# Sega PVR (Xbox) image header. +# Contains an embedded DirectDraw surface instead of PVR data. +0 name sega-pvr-xbox-dds-header +>16 lelong x %d x +>12 lelong x %d, +>84 string x %.4s + +# Sega PVR image. +0 string PVRT +>0x10 string DDS\040\174\000\000\000 Sega PVR (Xbox) image: +>>0x20 use sega-pvr-xbox-dds-header +>0x10 belong !0x44445320 Sega PVR image: +>>0 use sega-pvr-image-header + +# Sega PVR image with GBIX. +0 string GBIX +>0x10 string PVRT +>>0x10 string DDS\040\174\000\000\000 Sega PVR (Xbox) image: +>>>0x20 use sega-pvr-xbox-dds-header +>>0x10 belong !0x44445320 Sega PVR image: +>>>0x10 use sega-pvr-image-header +>>0x08 lelong x \b, global index = %u + +# Sega GVR header. +0 name sega-gvr-image-header +>0x0C beshort x %d x +>0x0E beshort x %d +# Image data format. +>0x0B byte 0 \b, I4 +>0x0B byte 1 \b, I8 +>0x0B byte 2 \b, IA4 +>0x0B byte 3 \b, IA8 +>0x0B byte 4 \b, RGB565 +>0x0B byte 5 \b, RGB5A3 +>0x0B byte 6 \b, ARGB8888 +>0x0B byte 8 \b, CI4 +>0x0B byte 9 \b, CI8 +>0x0B byte 14 \b, DXT1 + +# Sega GVR image. +0 string GVRT Sega GVR image: +>0x10 use sega-gvr-image-header + +# Sega GVR image with GBIX. +0 string GBIX +>0x10 string GVRT Sega GVR image: +>>0x10 use sega-gvr-image-header +>>0x08 belong x \b, global index = %u diff --git a/contrib/file/magic/Magdir/intel b/contrib/file/magic/Magdir/intel index 9fa90f4..3f96b75 100644 --- a/contrib/file/magic/Magdir/intel +++ b/contrib/file/magic/Magdir/intel @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: intel,v 1.12 2014/04/30 21:41:02 christos Exp $ +# $File: intel,v 1.14 2015/11/10 00:13:27 christos Exp $ # intel: file(1) magic for x86 Unix # # Various flavors of x86 UNIX executable/object (other than Xenix, which @@ -30,15 +30,27 @@ 0 leshort =0522 iAPX 286 executable large model (COFF) >12 lelong >0 not stripped #>22 leshort >0 - version %d +# updated by Joerg Jenderek at Oct 2015 +# https://de.wikipedia.org/wiki/Common_Object_File_Format +# http://www.delorie.com/djgpp/doc/coff/filhdr.html +# ./msdos (version 5.25) labeled the next entry as "MS Windows COFF Intel 80386 object file" +# ./intel (version 5.25) label labeled the next entry as "80386 COFF executable" # SGI labeled the next entry as "iAPX 386 executable" --Dan Quinlan -0 leshort =0514 80386 COFF executable ->12 lelong >0 not stripped ->22 leshort >0 - version %d +0 leshort =0514 +# use subroutine to display name+flags+variables for common object formated files +>0 use display-coff +#>12 lelong >0 not stripped +# no hint found, that at offset 22 is version +#>22 leshort >0 - version %d # rom: file(1) magic for BIOS ROM Extensions found in intel machines # mapped into memory between 0xC0000 and 0xFFFFF # From Gurkan Sengun <gurkan@linuks.mine.nu>, www.linuks.mine.nu +# updated by Joerg Jenderek +# https://en.wikipedia.org/wiki/Option_ROM 0 beshort 0x55AA BIOS (ia32) ROM Ext. +!:mime application/octet-stream +!:ext rom/bin >5 string USB USB >7 string LDR UNDI image >30 string IBM IBM comp. Video diff --git a/contrib/file/magic/Magdir/java b/contrib/file/magic/Magdir/java index b09302e..21acf29 100644 --- a/contrib/file/magic/Magdir/java +++ b/contrib/file/magic/Magdir/java @@ -1,6 +1,6 @@ #------------------------------------------------------------ -# $File: java,v 1.16 2013/09/24 20:22:03 christos Exp $ +# $File: java,v 1.18 2015/11/29 22:08:14 christos Exp $ # Java ByteCode and Mach-O binaries (e.g., Mac OS X) use the # same magic number, 0xcafebabe, so they are both handled # in the entry called "cafebabe". @@ -16,5 +16,12 @@ !:mime application/x-java-jce-keystore # Java source -0 regex ^import.*;$ Java source +0 regex \^import.*;$ Java source !:mime text/x-java + +# Java HPROF dumps +# https://java.net/downloads/heap-snapshot/hprof-binary-format.html +0 string JAVA\x20PROFILE\x201.0. +>0x12 short 0 +>>0x11 ushort-0x31 <2 Java HPROF dump, +>>0x17 beqdate/1000 x created %s diff --git a/contrib/file/magic/Magdir/lisp b/contrib/file/magic/Magdir/lisp index 1109880..db0592e 100644 --- a/contrib/file/magic/Magdir/lisp +++ b/contrib/file/magic/Magdir/lisp @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: lisp,v 1.23 2009/09/19 16:28:10 christos Exp $ +# $File: lisp,v 1.24 2015/11/30 20:54:26 christos Exp $ # lisp: file(1) magic for lisp programs # # various lisp types, from Daniel Quinlan (quinlan@yggdrasil.com) @@ -26,16 +26,39 @@ 0 search/4096 (custom-set-variables\ Lisp/Scheme program text !:mime text/x-lisp +# URL: https://en.wikipedia.org/wiki/Emacs_Lisp +# Reference: http://ftp.gnu.org/old-gnu/emacs/elisp-manual-18-1.03.tar.gz +# Update: Joerg Jenderek # Emacs 18 - this is always correct, but not very magical. -0 string \012( Emacs v18 byte-compiled Lisp data +0 string \012( +# look for emacs lisp keywords +# GRR: split regex because it is too long or get error like +# lisp, 36: Warning: cannot get string from `^(defun|defvar|defconst|defmacro|setq|fset|put|provide|require|' +>&0 regex \^(defun|defvar|defconst|defmacro|setq|fset) Emacs v18 byte-compiled Lisp data !:mime application/x-elc +# https://searchcode.com/codesearch/view/2173420/ +# not really pure text +!:apple EMAxTEXT +!:ext elc +# remaining regex +>&0 regex \^(put|provide|require|random) Emacs v18 byte-compiled Lisp data +!:mime application/x-elc +!:apple EMAxTEXT +!:ext elc +# missed cl.elc dbx.elc simple.elc look like normal lisp starting with ;;; + # Emacs 19+ - ver. recognition added by Ian Springer # Also applies to XEmacs 19+ .elc files; could tell them apart with regexs # - Chris Chittleborough <cchittleborough@yahoo.com.au> +# Update: Joerg Jenderek 0 string ;ELC ->4 byte >18 ->4 byte <32 Emacs/XEmacs v%d byte-compiled Lisp data +# version\0\0\0 +>4 byte >18 Emacs/XEmacs v%d byte-compiled Lisp data +# why less than 32 ? does not make sense to me. GNU Emacs version is 24.5 at April 2015 +#>4 byte <32 Emacs/XEmacs v%d byte-compiled Lisp data !:mime application/x-elc +!:apple EMAxTEXT +!:ext elc # Files produced by CLISP Common Lisp From: Bruno Haible <haible@ilog.fr> 0 string (SYSTEM::VERSION\040' CLISP byte-compiled Lisp program (pre 2004-03-27) diff --git a/contrib/file/magic/Magdir/mach b/contrib/file/magic/Magdir/mach index 7782e5b..c1bec07 100644 --- a/contrib/file/magic/Magdir/mach +++ b/contrib/file/magic/Magdir/mach @@ -1,6 +1,6 @@ #------------------------------------------------------------ -# $File: mach,v 1.20 2015/05/21 18:28:41 christos Exp $ +# $File: mach,v 1.23 2015/10/15 21:51:22 christos Exp $ # Mach has two magic numbers, 0xcafebabe and 0xfeedface. # Unfortunately the first, cafebabe, is shared with # Java ByteCode, so they are both handled in the file "cafebabe". @@ -106,15 +106,19 @@ >>>4 belong&0x00ffffff 2 subarchitecture=%d >>>4 belong&0x00ffffff 3 subarchitecture=%d >>>4 belong&0x00ffffff 4 subarchitecture=%d ->>>4 belong&0x00ffffff 5 \b_v4t ->>>4 belong&0x00ffffff 6 \b_v6 ->>>4 belong&0x00ffffff 7 \b_v5tej ->>>4 belong&0x00ffffff 8 \b_xscale ->>>4 belong&0x00ffffff 9 \b_v7 ->>>4 belong&0x00ffffff 10 \b_v7f ->>>4 belong&0x00ffffff 11 subarchitecture=%d ->>>4 belong&0x00ffffff 12 \b_v7k ->>>4 belong&0x00ffffff >12 subarchitecture=%d +>>>4 belong&0x00ffffff 5 \bv4t +>>>4 belong&0x00ffffff 6 \bv6 +>>>4 belong&0x00ffffff 7 \bv5tej +>>>4 belong&0x00ffffff 8 \bxscale +>>>4 belong&0x00ffffff 9 \bv7 +>>>4 belong&0x00ffffff 10 \bv7f +>>>4 belong&0x00ffffff 11 \bv7s +>>>4 belong&0x00ffffff 12 \bv7k +>>>4 belong&0x00ffffff 13 \bv8 +>>>4 belong&0x00ffffff 14 \bv6m +>>>4 belong&0x00ffffff 15 \bv7m +>>>4 belong&0x00ffffff 16 \bv7em +>>>4 belong&0x00ffffff >16 subarchitecture=%d # 13 m88k >>0 belong&0x00ffffff 13 >>>4 belong&0x00ffffff 0 mc88000 @@ -158,12 +162,15 @@ >>>4 belong&0x00ffffff 2 subarchitecture=%d >>>4 belong&0x00ffffff 3 >>>4 belong&0x00ffffff 4 \b_arch1 +>>>4 belong&0x00ffffff 8 \b_haswell >>>4 belong&0x00ffffff >4 subarchitecture=%d >>0 belong&0x00ffffff 8 64-bit architecture=%d >>0 belong&0x00ffffff 9 64-bit architecture=%d >>0 belong&0x00ffffff 10 64-bit architecture=%d >>0 belong&0x00ffffff 11 64-bit architecture=%d ->>0 belong&0x00ffffff 12 64-bit architecture=%d +>>0 belong&0x00ffffff 12 arm64 +>>>4 belong&0x00ffffff 0 +>>>4 belong&0x00ffffff 1 \bv8 >>0 belong&0x00ffffff 13 64-bit architecture=%d >>0 belong&0x00ffffff 14 64-bit architecture=%d >>0 belong&0x00ffffff 15 64-bit architecture=%d @@ -203,6 +210,34 @@ >12 belong 11 kext bundle >12 belong >11 >>12 belong x filetype=%d +>24 belong >0 \b, flags:< +>>24 belong &0x0000001 \bNOUNDEFS +>>24 belong &0x0000002 \b|INCRLINK +>>24 belong &0x0000004 \b|DYLDLINK +>>24 belong &0x0000008 \b|BINDATLOAD +>>24 belong &0x0000010 \b|PREBOUND +>>24 belong &0x0000020 \b|SPLIT_SEGS +>>24 belong &0x0000040 \b|LAZY_INIT +>>24 belong &0x0000080 \b|TWOLEVEL +>>24 belong &0x0000100 \b|FORCE_FLAT +>>24 belong &0x0000200 \b|NOMULTIDEFS +>>24 belong &0x0000400 \b|NOFIXPREBINDING +>>24 belong &0x0000800 \b|PREBINDABLE +>>24 belong &0x0001000 \b|ALLMODSBOUND +>>24 belong &0x0002000 \b|SUBSECTIONS_VIA_SYMBOLS +>>24 belong &0x0004000 \b|CANONICAL +>>24 belong &0x0008000 \b|WEAK_DEFINES +>>24 belong &0x0010000 \b|BINDS_TO_WEAK +>>24 belong &0x0020000 \b|ALLOW_STACK_EXECUTION +>>24 belong &0x0040000 \b|ROOT_SAFE +>>24 belong &0x0080000 \b|SETUID_SAFE +>>24 belong &0x0100000 \b|NO_REEXPORTED_DYLIBS +>>24 belong &0x0200000 \b|PIE +>>24 belong &0x0400000 \b|DEAD_STRIPPABLE_DYLIB +>>24 belong &0x0800000 \b|HAS_TLV_DESCRIPTORS +>>24 belong &0x1000000 \b|NO_HEAP_EXECUTION +>>24 belong &0x2000000 \b|APP_EXTENSION_SAFE +>>24 belong x \b> # 0 lelong&0xfffffffe 0xfeedface Mach-O diff --git a/contrib/file/magic/Magdir/macintosh b/contrib/file/magic/Magdir/macintosh index 3ca2cab..d7f20f2 100644 --- a/contrib/file/magic/Magdir/macintosh +++ b/contrib/file/magic/Magdir/macintosh @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: macintosh,v 1.25 2014/09/03 13:34:16 christos Exp $ +# $File: macintosh,v 1.26 2015/11/25 00:36:02 christos Exp $ # macintosh description # # BinHex is the Macintosh ASCII-encoded file format (see also "apple") @@ -297,11 +297,14 @@ >0x40e ubeshort 0x0003 # maximal length of volume name is 27 >>0x424 ubyte <28 Macintosh HFS data -#!:mime application/octet-stream -# these mime and apple types are not sure !:mime application/x-apple-diskimage #!:apple hfsdINIT #!:apple MACSdisk +# http://www.macdisk.com/macsigen.php +#!:apple ddskdevi +!:apple ????devi +# https://en.wikipedia.org/wiki/Apple_Disk_Image +!:ext hfs/dmg >>>0 beshort 0x4C4B (bootable) #>>>0 beshort 0x0000 (not bootable) >>>0x40a beshort &0x8000 (locked) diff --git a/contrib/file/magic/Magdir/microfocus b/contrib/file/magic/Magdir/microfocus new file mode 100644 index 0000000..b2d204b --- /dev/null +++ b/contrib/file/magic/Magdir/microfocus @@ -0,0 +1,21 @@ + +#------------------------------------------------------------------------------ +# $File: microfocus,v 1.1 2016/02/09 01:22:49 christos Exp $ +# Micro Focus COBOL data files. + +# http://documentation.microfocus.com/help/index.jsp?topic=\ +# %2FGUID-0E0191D8-C39A-44D1-BA4C-D67107BAF784%2FHRFLRHFILE05.html +# http://www.cobolproducts.com/datafile/data-viewer.html +# https://github.com/miracle2k/mfcobol-export + +0 string \x30\x00\x00\x7C +>36 string \x00\x3E Micro Focus File with Header (DAT) +!:mime application/octet-stream + +0 string \x30\x7E\x00\x00 +>36 string \x00\x3E Micro Focus File with Header (DAT) +!:mime application/octet-stream + +39 string \x02 +>136 string \x02\x02\x04\x04 Micro Focus Index File (IDX) +!:mime application/octet-stream diff --git a/contrib/file/magic/Magdir/misctools b/contrib/file/magic/Magdir/misctools index d09a543..eeb518d 100644 --- a/contrib/file/magic/Magdir/misctools +++ b/contrib/file/magic/Magdir/misctools @@ -1,6 +1,6 @@ #----------------------------------------------------------------------------- -# $File: misctools,v 1.15 2015/04/15 18:29:30 christos Exp $ +# $File: misctools,v 1.16 2016/02/14 15:46:52 christos Exp $ # misctools: file(1) magic for miscellaneous UNIX tools. # 0 search/1 %%!! X-Post-It-Note text @@ -29,7 +29,35 @@ 0 search/80 .lo\ -\ a\ libtool\ object\ file libtool object file # From: Daniel Novotny <dnovotny@redhat.com> -0 string MDMP\x93\xA7 MDMP crash report data +# Update: Joerg Jenderek +# URL: https://en.wikipedia.org/wiki/Core_dump#User-mode_memory_dumps +# Reference: https://msdn.microsoft.com/en-us/library/ms680378%28VS.85%29.aspx +# +# "Windows Minidump" by TrID +# ./misctools (version 5.25) labeled the entry as "MDMP crash report data" +0 string MDMP Mini DuMP crash report +# http://filext.com/file-extension/DMP +!:mime application/x-dmp +!:ext dmp/mdmp +# The high-order word is an internal value that is implementation specific. +# The low-order word is MINIDUMP_VERSION 0xA793 +>4 ulelong&0x0000FFFF !0xA793 \b, version 0x%4.4x +# NumberOfStreams 8,9,10,13 +>8 ulelong x \b, %d streams +# StreamDirectoryRva 0x20 +>12 ulelong !0x20 \b, 0x%8.8x RVA +# CheckSum 0 +>16 ulelong !0 \b, CheckSum 0x%8.8x +# Reserved or TimeDateStamp +>20 ledate x \b, %s +# https://msdn.microsoft.com/en-us/library/windows/desktop/ms680519%28v=vs.85%29.aspx +# Flags MINIDUMP_TYPE enumeration type 0 0x121 0x800 +>24 ulelong x \b, 0x%x type +# >24 ulelong >0 \b; include +# >>24 ulelong &0x00000001 \b data sections, +# >>24 ulelong &0x00000020 \b list of unloaded modules, +# >>24 ulelong &0x00000100 \b process and thread information, +# >>24 ulelong &0x00000800 \b memory information, # Summary: abook addressbook file # Submitted by: Mark Schreiber <mark7@alumni.cmu.edu> diff --git a/contrib/file/magic/Magdir/modem b/contrib/file/magic/Magdir/modem index d3bf7fa..e4decfd 100644 --- a/contrib/file/magic/Magdir/modem +++ b/contrib/file/magic/Magdir/modem @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: modem,v 1.6 2015/02/14 17:35:47 christos Exp $ +# $File: modem,v 1.7 2016/01/08 00:56:42 christos Exp $ # modem: file(1) magic for modem programs # # From: Florian La Roche <florian@knorke.saar.de> @@ -8,8 +8,48 @@ >29 byte 1 \b, fine resolution >29 byte 0 \b, normal resolution -0 short 0x0100 raw G3 data, byte-padded -0 short 0x1400 raw G3 data +# Summary: CCITT Group 3 Facsimile in "raw" form (i.e. no header). +# Modified by: Joerg Jenderek +# URL: https://de.wikipedia.org/wiki/Fax +# Reference: http://web.archive.org/web/20020628195336/http://www.netnam.vn/unescocourse/computervision/104.htm +# GRR: EOL of G3 is too general as it catches also TrueType fonts, Postscript PrinterFontMetric, others +0 short 0x0100 +# 16 0-bits near beginning like True Type fonts *.ttf, Postscript PrinterFontMetric *.pfm, FTYPE.HYPERCARD, XFER +>2 search/9 \0\0 +# maximal 7 0-bits for pixel sequences or 11 0-bits for EOL in G3 +>2 default x +# skip IRCAM file (VAX big-endian) ./audio +>>0 belong !0x0001a364 +# skip GEM Image data ./images +>>>2 beshort !0x0008 +# look for first keyword of Panorama database *.pan +>>>>11 search/262 \x06DESIGN +# skip Panorama database +>>>>11 default x +# old Apple DreamWorld DreamGrafix *.3200 with keyword at end of g3 looking files +>>>>>27118 search/1864 DreamWorld +>>>>>27118 default x +# skip MouseTrap/Mt.Defaults with file size 16 found on Golden Orchard Apple II CD Rom +>>>>>>8 ubequad !0x2e01010454010203 +# skip PICTUREH.SML found on Golden Orchard Apple II CD Rom +>>>>>>>8 ubequad !0x5dee74ad1aa56394 raw G3 (Group 3) FAX, byte-padded +# version 5.25 labeled the entry above "raw G3 data, byte-padded" +!:mime image/g3fax +#!:apple ????TIFF +!:ext g3 +# unusual image starting with black pixel +#0 short 0x1300 raw G3 (Group 3) FAX +0 short 0x1400 +# 16 0-bits near beginning like PicturePuzzler found on Golden Orchard Apple CD Rom +>2 search/9 \0\0 +# maximal 7 0-bits for pixel sequences or 11 0-bits for EOL in G3 +>2 default x raw G3 (Group 3) FAX +# version 5.25 labeled the above entry as "raw G3 data" +!:mime image/g3fax +!:ext g3 +# unusual image with black pixel near beginning +#0 short 0x1900 raw G3 (Group 3) FAX + # # Magic data for vgetty voice formats # (Martin Seine & Marc Eberhard) diff --git a/contrib/file/magic/Magdir/msdos b/contrib/file/magic/Magdir/msdos index 89c141e..7755274 100644 --- a/contrib/file/magic/Magdir/msdos +++ b/contrib/file/magic/Magdir/msdos @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: msdos,v 1.101 2015/08/24 05:08:48 christos Exp $ +# $File: msdos,v 1.105 2016/03/03 18:58:14 christos Exp $ # msdos: file(1) magic for MS-DOS files # @@ -24,7 +24,11 @@ 100 search/0xffff say >100 regex/c =^[\ \t]{0,10}say\ ['"] OS/2 REXX batch file text -0 leshort 0x14c MS Windows COFF Intel 80386 object file +# updated by Joerg Jenderek at Oct 2015 +# https://de.wikipedia.org/wiki/Common_Object_File_Format +# http://www.delorie.com/djgpp/doc/coff/filhdr.html +# ./intel already labeled COFF type 0x14c=0514 as "80386 COFF executable" +#0 leshort 0x14c MS Windows COFF Intel 80386 object file #>4 ledate x stamp %s 0 leshort 0x166 MS Windows COFF MIPS R4000 object file #>4 ledate x stamp %s @@ -405,8 +409,31 @@ #>>10 string x %-.8s #>4 uleshort&0x4000 0x4000 \b,control strings-support) -# test too generic ? -0 byte 0x8c DOS executable (COM) +# updated by Joerg Jenderek +# GRR: line below too general as it catches also +# rt.lib DYADISKS.PIC and many more +# start with assembler instruction MOV +0 ubyte 0x8c +# skip "AppleWorks word processor data" like ARTICLE.1 ./apple +>4 string !O==== +# skip some unknown basic binaries like RocketRnger.SHR +>>5 string !MAIN +# skip "GPG symmetrically encrypted data" ./gnu +# skip "PGP symmetric key encrypted data" ./pgp +# openpgpdefs.h: fourth byte < 14 indicate cipher algorithm type +>>>4 ubyte >13 DOS executable (COM, 0x8C-variant) +# the remaining files should be DOS *.COM executables +# dosshell.COM 8cc0 2ea35f07 e85211 e88a11 b80058 cd +# hmload.COM 8cc8 8ec0 bbc02b 89dc 83c30f c1eb04 b4 +# UNDELETE.COM 8cca 2e8916 6503 b430 cd21 8b 2e0200 8b +# BOOTFIX.COM 8cca 2e8916 9603 b430 cd21 8b 2e0200 8b +# RAWRITE3.COM 8cca 2e8916 d602 b430 cd21 8b 2e0200 8b +# SHARE.COM 8cca 2e8916 d602 b430 cd21 8b 2e0200 8b +# validchr.COM 8cca 2e8916 9603 b430 cd21 8b 2e028b1e +# devload.COM 8cca 8916ad01 b430 cd21 8b2e0200 892e +!:mime application/x-dosexec +!:ext com + # updated by Joerg Jenderek at Oct 2008 0 ulelong 0xffff10eb DR-DOS executable (COM) # byte 0xeb conflicts with "sequent" magic leshort 0xn2eb @@ -418,23 +445,41 @@ >>4 string \ $ARX DOS executable (COM), ARX self-extracting archive >>4 string \ $LHarc DOS executable (COM), LHarc self-extracting archive >>0x20e string SFX\ by\ LARC DOS executable (COM), LARC self-extracting archive -# updated by Joerg Jenderek at Oct 2008 -#0 byte 0xb8 COM executable -0 uleshort&0x80ff 0x00b8 +# updated by Joerg Jenderek at Oct 2008,2015 +# following line is too general +0 ubyte 0xb8 +# skip 2 linux kernels like memtest.bin with "\xb8\xc0\x07\x8e" in ./linux +>0 string !\xb8\xc0\x07\x8e # modified by Joerg Jenderek ->1 lelong !0x21cd4cff COM executable for DOS +# syslinux COM32 or COM32R executable +>>1 lelong&0xFFFFFFFe 0x21CD4CFe COM executable (32-bit COMBOOT +# http://www.syslinux.org/wiki/index.php/Comboot_API +# Since version 5.00 c32 modules switched from the COM32 object format to ELF +!:mime application/x-c32-comboot-syslinux-exec +!:ext c32 # http://syslinux.zytor.com/comboot.php +# older syslinux version ( <4 ) # (32-bit COMBOOT) programs *.C32 contain 32-bit code and run in flat-memory 32-bit protected mode # start with assembler instructions mov eax,21cd4cffh -0 uleshort&0xc0ff 0xc0b8 ->1 lelong 0x21cd4cff COM executable (32-bit COMBOOT) +>>>1 lelong 0x21CD4CFf \b) # syslinux:doc/comboot.txt # A COM32R program must start with the byte sequence B8 FE 4C CD 21 (mov # eax,21cd4cfeh) as a magic number. -0 string/b \xb8\xfe\x4c\xcd\x21 COM executable (COM32R) -# start with assembler instructions mov eax,21cd4cfeh -0 uleshort&0xc0ff 0xc0b8 ->1 lelong 0x21cd4cfe COM executable (32-bit COMBOOT, relocatable) +# syslinux version (4.x) +# "COM executable (COM32R)" or "Syslinux COM32 module" by TrID +>>>1 lelong 0x21CD4CFe \b, relocatable) +# remaining are DOS COM executables starting with assembler instruction MOV +# like FreeDOS BANNER*.COM FINDDISK.COM GIF2RAW.COM WINCHK.COM +# MS-DOS SYS.COM RESTART.COM +# SYSLINUX.COM (version 1.40 - 2.13) +# GFXBOOT.COM (version 3.75) +# COPYBS.COM POWEROFF.COM INT18.COM +>>1 default x COM executable for DOS +!:mime application/x-dosexec +#!:mime application/x-ms-dos-executable +#!:mime application/x-msdos-program +!:ext com + 0 string/b \x81\xfc >4 string \x77\x02\xcd\x20\xb9 >>36 string UPX! FREE-DOS executable (COM), UPX compressed @@ -869,6 +914,7 @@ # Windows Imaging (WIM) Image 0 string/b MSWIM\000\000\000 Windows imaging (WIM) image +0 string/b WLPWM\000\000\000 Windows imaging (WIM) image, wimlib pipable format # The second byte of these signatures is a file version; I don't know what, # if anything, produced files with version numbers 0-2. diff --git a/contrib/file/magic/Magdir/msvc b/contrib/file/magic/Magdir/msvc index 1095d05..bf4ab0c 100644 --- a/contrib/file/magic/Magdir/msvc +++ b/contrib/file/magic/Magdir/msvc @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: msvc,v 1.5 2009/09/19 16:28:11 christos Exp $ +# $File: msvc,v 1.6 2016/01/26 00:03:19 christos Exp $ # msvc: file(1) magic for msvc # "H. Nanosecond" <aldomel@ix.netcom.com> # Microsoft visual C @@ -27,11 +27,32 @@ #.pch 0 string DTJPCH0\000\022\103\006\200 Microsoft Visual C .pch -# .pdb -# too long 0 string Microsoft\ C/C++\ program\ database\ -0 string Microsoft\ C/C++\ MSVC program database ->18 string program\ database\ ->33 string >\0 ver %s +# Summary: Symbol Table / Debug info used by Microsoft compilers +# URL: https://en.wikipedia.org/wiki/Program_database +# Reference: https://code.google.com/p/pdbparser/wiki/MSF_Format +# Update: Joerg Jenderek +# Note: test only for Windows XP+SP3 x86 , 8.1 x64 arm and 10.1 x86 +# info does only applies partly for older files like msvbvm50.pdb about year 2001 +0 string Microsoft\ C/C++\ +# "Microsoft Program DataBase" by TrID +>24 search/14 \r\n\x1A MSVC program database +!:mime application/x-ms-pdb +!:ext pdb +# "MSF 7.00" "program database 2.00" for msvbvm50.pdb +>>16 regex \([0-9.]+\) ver %s +#>>>0x38 search/128123456 /LinkInfo \b with linkinfo +# "MSF 7.00" variant +>>0x1e leshort 0 +# PageSize 400h 1000h +>>>0x20 lelong x \b, %d +# Page Count +>>>0x28 lelong x \b*%d bytes +# "program database 2.00" variant +>>0x1e leshort !0 +# PageSize 400h +>>>0x2c lelong x \b, %d +# Page Count for msoo-dll.pdb 4379h +>>>0x32 leshort x \b*%d bytes #.sbr 0 string \000\002\000\007\000 MSVC .sbr diff --git a/contrib/file/magic/Magdir/msx b/contrib/file/magic/Magdir/msx index 0eacbe5..ba5607c 100644 --- a/contrib/file/magic/Magdir/msx +++ b/contrib/file/magic/Magdir/msx @@ -7,20 +7,20 @@ ############## MSX Music file formats ############## # Gigamix MGSDRV music file -0 string MGS MSX Gigamix MGSDRV3 music file, +0 string/b MGS MSX Gigamix MGSDRV3 music file, >6 ubeshort 0x0D0A >>3 byte x \bv%c >>4 byte x \b.%c >>5 byte x \b%c >>8 string >\0 \b, title: %s -1 string mgs2\ MSX Gigamix MGSDRV2 music file +1 string/b mgs2\ MSX Gigamix MGSDRV2 music file >6 uleshort 0x80 >>0x2E uleshort 0 >>>0x30 string >\0 \b, title: %s # KSS music file -0 string KSCC KSS music file v1.03 +0 string/b KSCC KSS music file v1.03 >0xE byte 0 >>0xF byte&0x02 0 \b, soundchips: AY-3-8910, SCC(+) >>0xF byte&0x02 2 \b, soundchip(s): SN76489 @@ -28,7 +28,7 @@ >>0xF byte&0x01 1 \b, YM2413 >>0xF byte&0x08 8 \b, Y8950 -0 string KSSX KSS music file v1.20 +0 string/b KSSX KSS music file v1.20 >0xE byte&0xEF 0 >>0xF byte&0x40 0x00 \b, 60Hz >>0xF byte&0x40 0x40 \b, 50Hz @@ -42,11 +42,11 @@ >>0xF byte&0x18 0x10 \b, Majyutsushi DAC # Moonblaster for Moonsound -0 string MBMS +0 string/b MBMS >4 byte 0x10 MSX Moonblaster for MoonSound music # Music Player K-kaz -0 string MPK MSX Music Player K-kaz song +0 string/b MPK MSX Music Player K-kaz song >6 ubeshort 0x0D0A >>3 byte x v%c >>4 byte x \b.%c @@ -70,7 +70,7 @@ >>>>>0 string >\32 \b, title: %s # SCMD music file -0x8B string SCMD +0x8B string/b SCMD >0xCE uleshort 0 MSX SCMD Music file #>>-2 uleshort 0x6a71 ; The file must end with this value. How to code this here? >>0x8F string >\0 \b, title: %s @@ -100,7 +100,7 @@ >>>3 uleshort >0x013D MSX Graph Saurus compressed image # Maki-chan Graphic format -0 string MAKI02\ \ Maki-chan image, +0 string/b MAKI02\ \ Maki-chan image, >8 byte x system ID: %c >9 byte x \b%c >10 byte x \b%c @@ -124,11 +124,11 @@ >>&3 ubyte&0x01 1 \b, 2:1 dot aspect ratio # Japanese PIC file -0 string PIC\x1A +0 string/b PIC\x1A >4 lelong 0 Japanese PIC image file # MSX G9B image file -0 string G9B +0 string/b G9B >1 uleshort 11 >>3 uleshort >10 >>>5 ubyte >0 MSX G9B image, depth=%d @@ -147,7 +147,7 @@ ############## Other MSX file formats ############## # MSX ROMs -0 string AB +0 string/b AB >2 uleshort 0x0010 MSX ROM >>2 uleshort x \b, init=0x%4x >>4 uleshort >0 \b, stat=0x%4x @@ -164,7 +164,7 @@ >>6 uleshort >0 \b, dev=0x%04x >>8 uleshort >0 \b, bas=0x%04x -0 string AB +0 string/b AB #>2 string 5JSuperLAYDOCK MSX Super Laydock ROM #>3 string @HYDLIDE3MSX MSX Hydlide-3 ROM #>3 string @3\x80IA862 Golvellius MSX1 ROM @@ -188,7 +188,7 @@ >>>6 uleshort 0 >>>>8 uleshort >0 MSX BASIC program in ROM, bas=0x%04x -0x4000 string AB +0x4000 string/b AB >0x4002 uleshort >0x4010 >>0x400A string \0\0\0\0\0\0 MSX MegaROM with nonstandard page order >>0x4002 uleshort x \b, init=0x%04x @@ -196,7 +196,7 @@ >>0x4006 uleshort >0 \b, dev=0x%04x >>0x4008 uleshort >0 \b, bas=0x%04x -0x8000 string AB +0x8000 string/b AB >0x8002 uleshort >0x4010 >>0x800A string \0\0\0\0\0\0 MSX MegaROM with nonstandard page order >>0x8002 uleshort x \b, init=0x%04x @@ -206,7 +206,7 @@ 0x3C000 string AB ->0x3C008 string \0\0\0\0\0\0\0\0 MSX MegaROM with nonstandard page order +>0x3C008 string/b \0\0\0\0\0\0\0\0 MSX MegaROM with nonstandard page order >>0x3C002 uleshort x \b, init=0x%04x >>0x3C004 uleshort >0 \b, stat=0x%04x >>0x3C006 uleshort >0 \b, dev=0x%04x diff --git a/contrib/file/magic/Magdir/netbsd b/contrib/file/magic/Magdir/netbsd index aa933ff..eb0847b 100644 --- a/contrib/file/magic/Magdir/netbsd +++ b/contrib/file/magic/Magdir/netbsd @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: netbsd,v 1.22 2014/12/08 20:53:52 christos Exp $ +# $File: netbsd,v 1.23 2015/11/29 01:55:14 christos Exp $ # netbsd: file(1) magic for NetBSD objects # # All new-style magic numbers are in network byte order. @@ -286,3 +286,20 @@ >4 leshort x \b, (headersize = %d >6 leshort x \b, segmentsize = %d >6 lelong x \b, segments = %d) + +# little endian only for now. +0 name ktrace +>4 leshort 7 +>>6 leshort <3 NetBSD ktrace file version %d +>>>12 string x from %s +>>>56 string x \b, emulation %s +>>>8 lelong <65536 \b, pid=%d + +56 string netbsd +>0 use ktrace +56 string linux +>0 use ktrace +56 string sunos +>0 use ktrace +56 string hpux +>0 use ktrace diff --git a/contrib/file/magic/Magdir/polyml b/contrib/file/magic/Magdir/polyml new file mode 100644 index 0000000..0af9baf --- /dev/null +++ b/contrib/file/magic/Magdir/polyml @@ -0,0 +1,23 @@ + +#------------------------------------------------------------------------------ +# $File: polyml,v 1.1 2016/02/26 15:52:45 christos Exp $ +# polyml: file(1) magic for PolyML +# +# PolyML +# MPEG, FLI, DL originally from vax@ccwf.cc.utexas.edu (VaX#n8) +# FLC, SGI, Apple originally from Daniel Quinlan (quinlan@yggdrasil.com) + +# [0]: http://www.polyml.org/ +# [1]: https://github.com/polyml/polyml/blob/master/\ +# libpolyml/savestate.cpp#L146-L147 +# [2]: https://github.com/polyml/polyml/blob/master/\ +# libpolyml/savestate.cpp#L1262-L1263 + +# Type: Poly/ML saved data +# From: Matthew Fernandez <matthew.fernandez@gmail.com> + +0 string POLYSAVE Poly/ML saved state +>8 long x version %u + +0 string POLYMODU Poly/ML saved module +>8 long x version %u diff --git a/contrib/file/magic/Magdir/psdbms b/contrib/file/magic/Magdir/psdbms index 09c733f..1d218c0 100644 --- a/contrib/file/magic/Magdir/psdbms +++ b/contrib/file/magic/Magdir/psdbms @@ -1,8 +1,14 @@ #------------------------------------------------------------------------------ -# $File: psdbms,v 1.6 2009/09/19 16:28:11 christos Exp $ +# $File: psdbms,v 1.7 2016/01/08 00:41:02 christos Exp $ # psdbms: file(1) magic for psdatabase # -0 belong&0xff00ffff 0x56000000 ps database ->1 string >\0 version %s ->4 string >\0 from kernel %s +# Update: Joerg Jenderek +# GRR: line below too general as it catches also some Panorama database *.pan , +# AppleWorks word processor +0 belong&0xff00ffff 0x56000000 +# assume version starts with digit +>1 regex/s =^[0-9] ps database +>>1 string >\0 version %s +# kernel name +>>4 string >\0 from kernel %s diff --git a/contrib/file/magic/Magdir/python b/contrib/file/magic/Magdir/python index 0668a93..06da176 100644 --- a/contrib/file/magic/Magdir/python +++ b/contrib/file/magic/Magdir/python @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: python,v 1.27 2015/09/08 13:59:44 christos Exp $ +# $File: python,v 1.28 2015/09/16 22:19:54 christos Exp $ # python: file(1) magic for python # # Outlook puts """ too for urgent messages @@ -26,16 +26,16 @@ 0 belong 0xee0c0d0a python 3.4 byte-compiled 0 search/1/w #!\ /usr/bin/python Python script text executable -!:strength + 10 +!:strength + 15 !:mime text/x-python 0 search/1/w #!\ /usr/local/bin/python Python script text executable -!:strength + 10 +!:strength + 15 !:mime text/x-python 0 search/1 #!/usr/bin/env\ python Python script text executable -!:strength + 10 +!:strength + 15 !:mime text/x-python 0 search/10 #!\ /usr/bin/env\ python Python script text executable -!:strength + 10 +!:strength + 15 !:mime text/x-python diff --git a/contrib/file/magic/Magdir/sendmail b/contrib/file/magic/Magdir/sendmail index aeb6203..2900410 100644 --- a/contrib/file/magic/Magdir/sendmail +++ b/contrib/file/magic/Magdir/sendmail @@ -1,14 +1,31 @@ #------------------------------------------------------------------------------ -# $File: sendmail,v 1.7 2009/09/19 16:28:12 christos Exp $ +# $File: sendmail,v 1.8 2015/11/11 15:27:03 christos Exp $ # sendmail: file(1) magic for sendmail config files # # XXX - byte order? # -0 byte 046 Sendmail frozen configuration ->16 string >\0 - version %s -0 short 0x271c Sendmail frozen configuration ->16 string >\0 - version %s +# Update: Joerg Jenderek +# GRR: this test is too general as it catches also +# READ.ME.FIRST.AWP Sendmail frozen configuration +# - version ====|====|====|====|====|====|====|====|====|====|====|====|=== +# Email_23_f217153422.ts Sendmail frozen configuration +# - version \330jK\354 +0 byte 046 +# http://www.sendmail.com/sm/open_source/docs/older_release_notes/ +# freezed configuration file (dbm format?) created from sendmal.cf with -bz +# by older sendmail. til version 8.6 support for frozen configuration files is removed +# valid version numbers look like "7.14.4" and should be simliar to output of commands +# "sendmail -d0 -bt < /dev/null |grep -i Version" or "egrep '^DZ' /etc/sendmail.cf" +>16 regex/s =^[0-78][0-9.]{4} Sendmail frozen configuration +# normally only /etc/sendmail.fc or /var/adm/sendmail/sendmail.fc +!:ext fc +>>16 string >\0 - version %s +0 short 0x271c +# look for valid version number +>16 regex/s =^[0-78][0-9.]{4} Sendmail frozen configuration +!:ext fc +>>16 string >\0 - version %s #------------------------------------------------------------------------------ # sendmail: file(1) magic for sendmail m4(1) files diff --git a/contrib/file/magic/Magdir/sgml b/contrib/file/magic/Magdir/sgml index 0d48255..28cbf87 100644 --- a/contrib/file/magic/Magdir/sgml +++ b/contrib/file/magic/Magdir/sgml @@ -1,4 +1,4 @@ -#------------------------------------------------------------------------------ # $File: sgml,v 1.32 2015/07/11 15:08:53 christos Exp $ +#------------------------------------------------------------------------------ # $File: sgml,v 1.33 2015/11/29 22:14:49 christos Exp $ # Type: SVG Vectorial Graphics # From: Noel Torres <tecnico@ejerciciosresueltos.com> 0 string \<?xml\ version=" @@ -88,25 +88,25 @@ # Extensible markup language (XML), a subset of SGML # from Marc Prud'hommeaux (marc@apocalypse.org) 0 search/1/cwt \<?xml XML document text -!:mime application/xml +!:mime text/xml !:strength + 5 0 string/t \<?xml\ version\ " XML -!:mime application/xml +!:mime text/xml !:strength + 5 0 string/t \<?xml\ version=" XML -!:mime application/xml +!:mime text/xml !:strength + 5 >15 string/t >\0 %.3s document text >>23 search/1 \<xsl:stylesheet (XSL stylesheet) >>24 search/1 \<xsl:stylesheet (XSL stylesheet) 0 string \<?xml\ version=' XML -!:mime application/xml +!:mime text/xml !:strength + 5 >15 string/t >\0 %.3s document text >>23 search/1 \<xsl:stylesheet (XSL stylesheet) >>24 search/1 \<xsl:stylesheet (XSL stylesheet) 0 search/1/wt \<?XML broken XML document text -!:mime application/xml +!:mime text/xml !:strength - 10 diff --git a/contrib/file/magic/Magdir/sinclair b/contrib/file/magic/Magdir/sinclair index 5882a64..6008892 100644 --- a/contrib/file/magic/Magdir/sinclair +++ b/contrib/file/magic/Magdir/sinclair @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: sinclair,v 1.5 2009/09/19 16:28:12 christos Exp $ +# $File: sinclair,v 1.6 2015/11/14 13:38:35 christos Exp $ # sinclair: file(1) sinclair QL # additions to /etc/magic by Thomas M. Ott (ThMO) @@ -13,20 +13,13 @@ >4 string >\0 label:%.10s # Sinclair QL OS dump (ThMO) -# (NOTE: if `file' would be able to use indirect references in a endian format -# differing from the natural host format, this could be written more -# reliably and faster...) -# -# we *can't* lookup QL OS code dumps, because `file' is UNABLE to read more -# than the first 8K of a file... #-( -# -#0 belong =0x30000 -#>49124 belong <47104 -#>>49128 belong <47104 -#>>>49132 belong <47104 -#>>>>49136 belong <47104 QL OS dump data, -#>>>>>49148 string >\0 type %.3s, -#>>>>>49142 string >\0 version %.4s +0 belong =0x30000 +>49124 belong <47104 +>>49128 belong <47104 +>>>49132 belong <47104 +>>>>49136 belong <47104 QL OS dump data, +>>>>>49148 string >\0 type %.3s, +>>>>>49142 string >\0 version %.4s # Sinclair QL firmware executables (ThMO) 0 string NqNqNq`\004 QL firmware executable (BCPL) diff --git a/contrib/file/magic/Magdir/sql b/contrib/file/magic/Magdir/sql index c69f44f..86f6869 100644 --- a/contrib/file/magic/Magdir/sql +++ b/contrib/file/magic/Magdir/sql @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: sql,v 1.15 2014/04/30 21:41:02 christos Exp $ +# $File: sql,v 1.18 2015/12/04 20:38:43 christos Exp $ # sql: file(1) magic for SQL files # # From: "Marty Leisner" <mleisner@eng.mc.xerox.com> @@ -54,21 +54,32 @@ # at offset 68 that is preferred over "user version" for indicating the # associated application. # -0 string SQLite\ format\ 3 ->60 belong =0x5f4d544e Monotone source repository - SQLite3 database ->68 belong =0x0f055112 Fossil checkout - SQLite3 database ->68 belong =0x0f055113 Fossil global configuration - SQLite3 database ->68 belong =0x0f055111 Fossil repository - SQLite3 database ->68 belong =0x42654462 Bentley Systems BeSQLite Database - SQLite3 database ->68 belong =0x42654c6e Bentley Systems Localization File - SQLite3 database ->68 belong =0x47504b47 OGC GeoPackage file - SQLite3 database ->68 default x SQLite 3.x database +0 string SQLite\ format\ 3 SQLite 3.x database +!:mime application/x-sqlite3 +# seldom found extension sqlite3 like in SyncData.sqlite3 +# db +# Avira Antivir use extension "dbe" like in avevtdb.dbe, avguard_tchk.dbe +# Unfortunately extension sqlite also used for other databases starting with string +# "TTCONTAINER" like in tracks.sqlite contentconsumer.sqlite contentproducerrepository.sqlite +# and with string "ZV-zlib" in like extra.sqlite +!:ext sqlite/sqlite3/db/dbe +>60 belong =0x5f4d544e (Monotone source repository) +>68 belong =0x0f055112 (Fossil checkout) +>68 belong =0x0f055113 (Fossil global configuration) +>68 belong =0x0f055111 (Fossil repository) +>68 belong =0x42654462 (Bentley Systems BeSQLite Database) +>68 belong =0x42654c6e (Bentley Systems Localization File) +>68 belong =0x47504b47 (OGC GeoPackage file) +>68 default x >>68 belong !0 \b, application id %u >>60 belong !0 \b, user version %d +>96 belong x \b, last written using SQLite version %d + # SQLite Write-Ahead Log from SQLite version >= 3.7.0 # http://www.sqlite.org/fileformat.html#walformat 0 belong&0xfffffffe 0x377f0682 SQLite Write-Ahead Log, +!:ext sqlite-wal/db-wal >4 belong x version %d # SQLite Rollback Journal @@ -76,8 +87,10 @@ 0 string \xd9\xd5\x05\xf9\x20\xa1\x63\xd7 SQLite Rollback Journal # Panasonic channel list database svl.bin or svl.db added by Joerg Jenderek -# http://www.ullrich.es/job/service-menue/panasonic/panasonic-sendersortierung-sat-am-pc/ -# pceditor_V2003.jar -0 string PSDB\0 Panasonic channel list database +# https://github.com/PredatH0r/ChanSort +0 string PSDB\0 Panasonic channel list DataBase +!:ext db/bin +#!:mime application/x-db-svl-panasonic >126 string SQLite\ format\ 3 +#!:mime application/x-panasonic-sqlite3 >>&-15 indirect x \b; contains diff --git a/contrib/file/magic/Magdir/terminfo b/contrib/file/magic/Magdir/terminfo index 97ea429..b201bca 100644 --- a/contrib/file/magic/Magdir/terminfo +++ b/contrib/file/magic/Magdir/terminfo @@ -1,10 +1,24 @@ #------------------------------------------------------------------------------ -# $File: terminfo,v 1.6 2009/09/19 16:28:12 christos Exp $ +# $File: terminfo,v 1.7 2016/03/17 21:02:29 christos Exp $ # terminfo: file(1) magic for terminfo # # XXX - byte order for screen images? # -0 string \032\001 Compiled terminfo entry +# URL: https://en.wikipedia.org/wiki/Terminfo +# Reference: ncurses-5.9/ncurses/tinfo/write_entry.c +# Update: Joerg Jenderek +# +# GRR: line below too general as it catches also +# Targa image type 1 with 26 long identification field +# and HELP.DSK +0 string \032\001 +# 5th character of terminal name list, but not Targa image pixel size (15 16 24 32) +>16 ubyte >32 +# namelist, if more than 1 separated by "|" like "st|stterm| simpleterm 0.4.1" +>>12 regex \^[a-zA-Z0-9][a-zA-Z0-9.][^|]* Compiled terminfo entry "%-s" +!:mime application/x-terminfo +# no extension +#!:ext 0 short 0433 Curses screen image 0 short 0434 Curses screen image diff --git a/contrib/file/magic/Magdir/vacuum-cleaner b/contrib/file/magic/Magdir/vacuum-cleaner new file mode 100644 index 0000000..eef78f2 --- /dev/null +++ b/contrib/file/magic/Magdir/vacuum-cleaner @@ -0,0 +1,54 @@ + +#------------------------------------------------------------------------------ +# $File: vacuum-cleaner,v 1.1 2015/11/14 13:38:35 christos Exp $ +# vacuum cleaner magic by Thomas M. Ott (ThMO) +# +# navigation map for LG robot vacuum cleaner models VR62xx, VR64xx, VR63xx +# file: MAPDATAyyyymmddhhmmss_xxxxxx_cc.blk +# -> yyyymmdd: year, month, day of cleaning +# -> hhmmss: hour, minute, second of cleaning +# -> xxxxxx: 6 digits +# -> cc: cleaning runs counter +# size: 136044 bytes +# +# struct maphdr { +# int32_t map_cnt; /* 0: single map */ +# int32_t min_ceil; /* 4: 100 mm == 10 cm == min. ceil */ +# int32_t max_ceil; /* 8: 10000 mm == 100 m == max. ceil */ +# int32_t max_climb; /* 12: 50 mm = 5 cm == max. height to climb */ +# int32_t unknown; /* 16: 50000 ??? */ +# int32_t cell_bytes; /* 20: # of bytes for cells per block */ +# int32_t block_max; /* 24: 1000 == max. # of blocks */ +# int32_t route_max; /* 28: 1000 == max. # of routes */ +# int32_t used_blocks; /* 32: 5/45/33/... == # of block entries used! */ +# int32_t cell_dim; /* 36: 10 == cell dimension */ +# int32_t clock_tick; /* 40: 100 == clock ticks */ +# #if 0 +# struct { /* 44: 1000 blocks for 10x10 cells */ +# int32_t yoffset; +# int32_t xoffset; +# int32_t posxy; +# int32_t timecode; +# } blocks[ 1000]; +# char cells[ 1000* 100]; /* 16044: 1000 10x10 cells */ +# int16_t routes[ 1000* 10]; /* 116044: 1000 10-routes */ +# #endif +# }; + +0 lelong =1 +>4 lelong =100 +>>8 lelong =10000 +>>>12 lelong =50 +>>>>16 lelong =50000 +>>>>>20 lelong =100 +>>>>>>24 lelong =1000 +>>>>>>>28 lelong =1000 +>>>>>>>>36 lelong =10 +>>>>>>>>>40 lelong =100 +>>>>>>>>>>32 lelong x LG robot VR6[234]xx %dm^2 navigation +>>>>>>>>>>136040 lelong =-1 reuse map data +>>>>>>>>>>136040 lelong =0 map data +>>>>>>>>>>136040 lelong >0 spurious map data +>>>>>>>>>>136040 lelong <-1 spurious map data + + diff --git a/contrib/file/magic/Magdir/windows b/contrib/file/magic/Magdir/windows index 7e0d4d1..faaa7e2 100644 --- a/contrib/file/magic/Magdir/windows +++ b/contrib/file/magic/Magdir/windows @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: windows,v 1.12 2015/08/29 07:10:35 christos Exp $ +# $File: windows,v 1.14 2015/12/15 01:06:17 christos Exp $ # windows: file(1) magic for Microsoft Windows # # This file is mainly reserved for files where programs @@ -64,10 +64,148 @@ # Summary: Old format help files -# Extension: .hlp +# URL: https://en.wikipedia.org/wiki/WinHelp +# Reference: http://www.oocities.org/mwinterhoff/helpfile.htm +# Update: Joerg Jenderek # Created by: Dirk Jagdmann <doj@cubic.org> -0 lelong 0x00035f3f MS Windows 3.x help file +# +# check and then display version and date inside MS Windows HeLP file fragment +0 name help-ver-date +# look for Magic of SYSTEMHEADER +>0 leshort 0x036C +# version Major 1 for right file fragment +>>4 leshort 1 Windows +# print non empty string above to avoid error message +# Warning: Current entry does not yet have a description for adding a MIME type +!:mime application/winhelp +!:ext hlp +# version Minor of help file format is hint for windows version +>>>2 leshort 0x0F 3.x +>>>2 leshort 0x15 3.0 +>>>2 leshort 0x21 3.1 +>>>2 leshort 0x27 x.y +>>>2 leshort 0x33 95 +>>>2 default x y.z +>>>>2 leshort x 0x%x +# to complete message string like "MS Windows 3.x help file" +>>>2 leshort x help +# GenDate often older than file creation date +>>>6 ldate x \b, %s +# +# Magic for HeLP files +0 lelong 0x00035f3f +# ./windows (version 5.25) labeled the entry as "MS Windows 3.x help file" +# file header magic 0x293B at DirectoryStart+9 +>(4.l+9) uleshort 0x293B MS +# look for @VERSION bmf.. like IBMAVW.ANN +>>0xD4 string =\x62\x6D\x66\x01\x00 Windows help annotation +!:mime application/x-winhelp +!:ext ann +>>0xD4 string !\x62\x6D\x66\x01\x00 +# "GID Help index" by TrID +>>>(4.l+0x65) string =|Pete Windows help Global Index +!:mime application/x-winhelp +!:ext gid +# HeLP Bookmark or +# "Windows HELP File" by TrID +>>>(4.l+0x65) string !|Pete +# maybe there exist a cleaner way to detect HeLP fragments +# brute search for Magic 0x036C with matching Major maximal 7 iterations +# discapp.hlp +>>>>16 search/0x49AF/s \x6c\x03 +>>>>>&0 use help-ver-date +>>>>>&4 leshort !1 +# putty.hlp +>>>>>>&0 search/0x69AF/s \x6c\x03 +>>>>>>>&0 use help-ver-date +>>>>>>>&4 leshort !1 +>>>>>>>>&0 search/0x49AF/s \x6c\x03 +>>>>>>>>>&0 use help-ver-date +>>>>>>>>>&4 leshort !1 +>>>>>>>>>>&0 search/0x49AF/s \x6c\x03 +>>>>>>>>>>>&0 use help-ver-date +>>>>>>>>>>>&4 leshort !1 +>>>>>>>>>>>>&0 search/0x49AF/s \x6c\x03 +>>>>>>>>>>>>>&0 use help-ver-date +>>>>>>>>>>>>>&4 leshort !1 +>>>>>>>>>>>>>>&0 search/0x49AF/s \x6c\x03 +>>>>>>>>>>>>>>>&0 use help-ver-date +>>>>>>>>>>>>>>>&4 leshort !1 +>>>>>>>>>>>>>>>>&0 search/0x49AF/s \x6c\x03 +# GCC.HLP is detected after 7 iterations +>>>>>>>>>>>>>>>>>&0 use help-ver-date +# this only happens if bigger hlp file is detected after used search iterations +>>>>>>>>>>>>>>>>>&4 leshort !1 Windows y.z help +!:mime application/winhelp +!:ext hlp +# repeat search again or following default line does not work +>>>>16 search/0x49AF/s \x6c\x03 +# remaining files should be HeLP Bookmark WinHlp32.BMK (XP 32-bit) or WinHlp32 (Windows 8.1 64-bit) +>>>>16 default x Windows help Bookmark +!:mime application/x-winhelp +!:ext /bmk +## FirstFreeBlock normally FFFFFFFFh 10h for *ANN +##>>8 lelong x \b, FirstFreeBlock 0x%8.8x +# EntireFileSize +>>12 lelong x \b, %d bytes +## ReservedSpace normally 042Fh AFh for *.ANN +#>>(4.l) lelong x \b, ReservedSpace 0x%8.8x +## UsedSpace normally 0426h A6h for *.ANN +#>>(4.l+4) lelong x \b, UsedSpace 0x%8.8x +## FileFlags normally 04... +#>>(4.l+5) lelong x \b, FileFlags 0x%8.8x +## file header magic 0x293B +#>>(4.l+9) uleshort x \b, file header magic 0x%4.4x +## file header Flags 0x0402 +#>>(4.l+11) uleshort x \b, file header Flags 0x%4.4x +## file header PageSize 0400h 80h for *.ANN +#>>(4.l+13) uleshort x \b, PageSize 0x%4.4x +## Structure[16] z4 +#>>(4.l+15) string >\0 \b, Structure_"%-.16s" +## MustBeZero 0 +#>>(4.l+31) uleshort x \b, MustBeZero 0x%4.4x +## PageSplits +#>>(4.l+33) uleshort x \b, PageSplits 0x%4.4x +## RootPage +#>>(4.l+35) uleshort x \b, RootPage 0x%4.4x +## MustBeNegOne 0xffff +#>>(4.l+37) uleshort x \b, MustBeNegOne 0x%4.4x +## TotalPages 1 +#>>(4.l+39) uleshort x \b, TotalPages 0x%4.4x +## NLevels 0x0001 +#>>(4.l+41) uleshort x \b, NLevels 0x%4.4x +## TotalBtreeEntries +#>>(4.l+43) ulelong x \b, TotalBtreeEntries 0x%8.8x +## pages of the B+ tree +#>>(4.l+47) ubequad x \b, PageStart 0x%16.16llx +# start with colon or semicolon for comment line like Back2Life.cnt +0 regex \^(:|;) +# look for first keyword Base +>0 search/45 :Base +>>&0 use cnt-name +# only solution to search again from beginning , because relative offsets changes when use is called +>0 search/45 :Base +>0 default x +# look for other keyword Title like in putty.cnt +>>0 search/45 :Title +>>>&0 use cnt-name +# +# display mime type and name of Windows help Content source +0 name cnt-name +# skip space at beginning +>0 string \ +# name without extension and greater character or name with hlp extension +>>1 regex/c \^([^\xd>]*|.*\.hlp) MS Windows help file Content, based "%s" +!:mime text/plain +!:apple ????TEXT +!:ext cnt +# +# Windows creates an full text search from hlp file, if the user clicks the "Find" tab and enables keyword indexing +0 string tfMR MS Windows help Full Text Search index +!:mime application/x-winhelp-fts +!:ext fts +>16 string >\0 for "%s" # Summary: Hyper terminal # Extension: .ht @@ -336,3 +474,102 @@ >>>>>4 ulelong&0x00000001 !0x00000001 >>>>>>(84.l) string >\0 InfName "%s" +# Summary: backup file created with utility like NTBACKUP.EXE shipped with Windows NT/2K/XP/2003 +# Extension: .bkf +# Created by: Joerg Jenderek +# URL: http://en.wikipedia.org/wiki/NTBackup +# Reference: http://laytongraphics.com/mtf/MTF_100a.PDF +# Descriptor BloCK name of Microsoft Tape Format +0 string TAPE +# Format Logical Address is zero +>20 ulequad 0 +# Reserved for MBC is zero +>>28 uleshort 0 +# Control Block ID is zero +>>>36 ulelong 0 +# BIT4-BIT15, BIT18-BIT31 of block attributes are unused +>>>>4 ulelong&0xFFfcFFe0 0 Windows NTbackup archive +#!:mime application/x-ntbackup +!:ext bkf +# OS ID +>>>>>10 ubyte 1 \b NetWare +>>>>>10 ubyte 13 \b NetWare SMS +>>>>>10 ubyte 14 \b NT +>>>>>10 ubyte 24 \b 3 +>>>>>10 ubyte 25 \b OS/2 +>>>>>10 ubyte 26 \b 95 +>>>>>10 ubyte 27 \b Macintosh +>>>>>10 ubyte 28 \b UNIX +# OS Version (2) +#>>>>>11 ubyte x OS V=%x +# MTF_CONTINUATION Media Sequence Number > 1 +#>>>>>4 ulelong&0x00000001 !0 \b, continued +# MTF_COMPRESSION +>>>>>4 ulelong&0x00000004 !0 \b, compressed +# MTF_EOS_AT_EOM End Of Medium was hit during end of set processing +>>>>>4 ulelong&0x00000008 !0 \b, End Of Medium hit +>>>>>4 ulelong&0x00020000 0 +# MTF_SET_MAP_EXISTS A Media Based Catalog Set Map may exist on tape +>>>>>>4 ulelong&0x00010000 !0 \b, with catalog +# MTF_FDD_ALLOWED However File/Directory Detail can only exist if a Set Map is also present +>>>>>4 ulelong&0x00020000 !0 \b, with file catalog +# Offset To First Event 238h,240h,28Ch +#>>>>>8 uleshort x \b, event offset %4.4x +# Displayable Size (20e0230h 20e024ch 20e0224h) +#>>>>>8 ulequad x dis. size %16.16llx +# Media Family ID (455288C4h 4570BD1Ah 45708F2Fh 4570BBF5h) +#>>>>>52 ulelong x family ID %8.8x +# TAPE Attributes (3) +#>>>>>56 ulelong x TAPE %8.8x +# Media Sequence Number +>>>>>60 uleshort >1 \b, sequence %u +# Password Encryption Algorithm (3) +>>>>>62 uleshort >0 \b, 0x%x encrypted +# Soft Filemark Block Size * 512 (2) +#>>>>>64 uleshort =2 \b, soft size %u*512 +>>>>>64 uleshort !2 \b, soft size %u*512 +# Media Based Catalog Type (1,2) +#>>>>>66 uleshort x \b, catalog type %4.4x +# size of Media Name (66,68,6Eh) +>>>>>68 uleshort >0 +# offset of Media Name (5Eh) +>>>>>>70 uleshort >0 +# 0~, 1~ANSI, 2~UNICODE +>>>>>>>48 ubyte 1 +# size terminated ansi coded string normally followed by "MTF Media Label" +>>>>>>>>(70.s) string >\0 \b, name: %s +>>>>>>>48 ubyte 2 +# Not null, but size terminated unicoded string +>>>>>>>>(70.s) lestring16 x \b, name: %s +# size of Media Label (104h) +>>>>>72 uleshort >0 +# offset of Media Label (C4h,C6h,CCh) +>>>>>74 uleshort >0 +>>>>>>48 ubyte 1 +#Tag|Version|Vendor|Vendor ID|Creation Time Stamp|Cartridge Label|Side|Media ID|Media Domain ID|Vendor Specific fields +>>>>>>>(74.s) string >\0 \b, label: %s +>>>>>>48 ubyte 2 +>>>>>>>(74.s) lestring16 x \b, label: %s +# size of password name (0,1Ch) +#>>>>>76 uleshort >0 \b, password size %4.4x +# Software Vendor ID (CBEh) +>>>>>86 uleshort x \b, software (0x%x) +# size of Software Name (6Eh) +>>>>>80 uleshort >0 +# offset of Software Name (1C8h,1CAh,1D0h) +>>>>>>82 uleshort >0 +# 1~ANSI, 2~UNICODE +>>>>>>>48 ubyte 1 +>>>>>>>>(82.s) string >\0 \b: %s +>>>>>>>48 ubyte 2 +# size terminated unicoded coded string normally followed by "SPAD" +>>>>>>>>(82.s) lestring16 x \b: %s +# Format Logical Block Size (512,1024) +#>>>>>84 uleshort =1024 \b, block size %u +>>>>>84 uleshort !1024 \b, block size %u +# Media Date of MTF_DATE_TIME type with 5 bytes +#>>>>>>88 ubequad x DATE %16.16llx +# MTF Major Version (1) +#>>>>>>93 ubyte x \b, MFT version %x +# + diff --git a/contrib/file/magic/Magdir/wordprocessors b/contrib/file/magic/Magdir/wordprocessors index 951f603..a7cfab7 100644 --- a/contrib/file/magic/Magdir/wordprocessors +++ b/contrib/file/magic/Magdir/wordprocessors @@ -1,6 +1,6 @@ #------------------------------------------------------------------------------ -# $File: wordprocessors,v 1.18 2013/06/03 19:07:29 christos Exp $ +# $File: wordprocessors,v 1.19 2015/10/16 15:11:07 christos Exp $ # wordprocessors: file(1) magic fo word processors. # ####### PWP file format used on Smith Corona Personal Word Processors: @@ -12,97 +12,187 @@ >25 byte 0x54 \b, legal >26 byte 0x46 \b, A4 -#WordPerfect type files Version 1.6 - PLEASE DO NOT REMOVE THIS LINE -0 string \377WPC\020\000\000\000\022\012\001\001\000\000\000\000 (WP) loadable file ->15 byte 0 Optimized for Intel ->15 byte 1 Optimized for Non-Intel -1 string WPC (Corel/WP) ->8 short 257 WordPerfect macro ->8 short 258 WordPerfect help file ->8 short 259 WordPerfect keyboard file ->8 short 266 WordPerfect document ->8 short 267 WordPerfect dictionary ->8 short 268 WordPerfect thesaurus ->8 short 269 WordPerfect block ->8 short 270 WordPerfect rectangular block ->8 short 271 WordPerfect column block ->8 short 272 WordPerfect printer data ->8 short 275 WordPerfect printer data ->8 short 276 WordPerfect driver resource data ->8 short 279 WordPerfect hyphenation code ->8 short 280 WordPerfect hyphenation data ->8 short 281 WordPerfect macro resource data ->8 short 283 WordPerfect hyphenation lex ->8 short 285 WordPerfect wordlist ->8 short 286 WordPerfect equation resource data ->8 short 289 WordPerfect spell rules ->8 short 290 WordPerfect dictionary rules ->8 short 295 WordPerfect spell rules (Microlytics) ->8 short 299 WordPerfect settings file ->8 short 301 WordPerfect 4.2 document ->8 short 325 WordPerfect dialog file ->8 short 332 WordPerfect button bar ->8 short 513 Shell macro ->8 short 522 Shell definition ->8 short 769 Notebook macro ->8 short 770 Notebook help file ->8 short 771 Notebook keyboard file ->8 short 778 Notebook definition ->8 short 1026 Calculator help file ->8 short 1538 Calendar help file ->8 short 1546 Calendar data file ->8 short 1793 Editor macro ->8 short 1794 Editor help file ->8 short 1795 Editor keyboard file ->8 short 1817 Editor macro resource file ->8 short 2049 Macro editor macro ->8 short 2050 Macro editor help file ->8 short 2051 Macro editor keyboard file ->8 short 2305 PlanPerfect macro ->8 short 2306 PlanPerfect help file ->8 short 2307 PlanPerfect keyboard file ->8 short 2314 PlanPerfect worksheet ->8 short 2319 PlanPerfect printer definition ->8 short 2322 PlanPerfect graphic definition ->8 short 2323 PlanPerfect data ->8 short 2324 PlanPerfect temporary printer ->8 short 2329 PlanPerfect macro resource data ->8 byte 11 Mail ->8 short 2818 help file ->8 short 2821 distribution list ->8 short 2826 out box ->8 short 2827 in box ->8 short 2836 users archived mailbox ->8 short 2837 archived message database ->8 short 2838 archived attachments ->8 short 3083 Printer temporary file ->8 short 3330 Scheduler help file ->8 short 3338 Scheduler in file ->8 short 3339 Scheduler out file ->8 short 3594 GroupWise settings file ->8 short 3601 GroupWise directory services ->8 short 3627 GroupWise settings file ->8 short 4362 Terminal resource data ->8 short 4363 Terminal resource data ->8 short 4395 Terminal resource data ->8 short 4619 GUI loadable text ->8 short 4620 graphics resource data ->8 short 4621 printer settings file ->8 short 4622 port definition file ->8 short 4623 print queue parameters ->8 short 4624 compressed file ->8 short 5130 Network service msg file ->8 short 5131 Network service msg file ->8 short 5132 Async gateway login msg ->8 short 5134 GroupWise message file ->8 short 7956 GroupWise admin domain database ->8 short 7957 GroupWise admin host database ->8 short 7959 GroupWise admin remote host database ->8 short 7960 GroupWise admin ADS deferment data file ->8 short 8458 IntelliTAG (SGML) compiled DTD ->8 long 18219264 WordPerfect graphic image (1.0) ->8 long 18219520 WordPerfect graphic image (2.0) -#end of WordPerfect type files Version 1.6 - PLEASE DO NOT REMOVE THIS LINE +# Corel/WordPerfect +0 string \xffWPC +# WordPerfect +>8 byte 1 +>>9 byte 1 WordPerfect macro +>>9 byte 2 WordPerfect help file +>>9 byte 3 WordPerfect keyboard file +>>9 byte 10 WordPerfect document +>>9 byte 11 WordPerfect dictionary +>>9 byte 12 WordPerfect thesaurus +>>9 byte 13 WordPerfect block +>>9 byte 14 WordPerfect rectangular block +>>9 byte 15 WordPerfect column block +>>9 byte 16 WordPerfect printer data +>>9 byte 19 WordPerfect printer data +>>9 byte 20 WordPerfect driver resource data +>>9 byte 22 WordPerfect graphic image +>>9 byte 23 WordPerfect hyphenation code +>>9 byte 24 WordPerfect hyphenation data +>>9 byte 25 WordPerfect macro resource data +>>9 byte 27 WordPerfect hyphenation lex +>>9 byte 29 WordPerfect wordlist +>>9 byte 30 WordPerfect equation resource data +>>9 byte 33 WordPerfect spell rules +>>9 byte 34 WordPerfect dictionary rules +>>9 byte 39 WordPerfect spell rules (Microlytics) +>>9 byte 43 WordPerfect settings file +>>9 byte 44 WordPerfect 3.5 document +>>9 byte 45 WordPerfect 4.2 document +>>9 byte 69 WordPerfect dialog file +>>9 byte 76 WordPerfect button bar +>>9 default x +>>>9 byte x Corel WordPerfect: Unknown filetype %d +# Corel Shell +>8 byte 2 +>>9 byte 1 Corel shell macro +>>9 byte 10 Corel shell definition +>>9 default x +>>>9 byte x Corel Shell: Unknown filetype %d +# Corel Notebook +>8 byte 3 +>>9 byte 1 Corel Notebook macro +>>9 byte 2 Corel Notebook help file +>>9 byte 3 Corel Notebook keyboard file +>>9 byte 10 Corel Notebook definition +>>9 default x +>>>9 byte x Corel Notebook: Unknown filetype %d +# Corel Calculator +>8 byte 4 +>>9 byte 2 Corel Calculator help file +>>9 default x +>>>9 byte x Corel Calculator: Unknown filetype %d +# Corel File Manager +>8 byte 5 +>>9 default x +>>>9 byte x Corel File Manager: Unknown filetype %d +# Corel Calendar +>8 byte 6 +>>9 byte 2 Corel Calendar help file +>>9 byte 10 Corel Calendar data file +>>9 default x +>>>9 byte x Corel Calendar: Unknown filetype %d +# Corel Program Editor/Ed Editor +>8 byte 7 +>>9 byte 1 Corel Editor macro +>>9 byte 2 Corel Editor help file +>>9 byte 3 Corel Editor keyboard file +>>9 byte 25 Corel Editor macro resource file +>>9 default x +>>>9 byte x Corel Program Editor/Ed Editor: Unknown filetype %d +# Corel Macro Editor +>8 byte 8 +>>9 byte 1 Corel Macro editor macro +>>9 byte 2 Corel Macro editor help file +>>9 byte 3 Corel Macro editor keyboard file +>>9 default x +>>>9 byte x Corel Macro Editor: Unknown filetype %d +# Corel Plan Perfect +>8 byte 9 +>>9 default x +>>>9 byte x Corel Plan Perfect: Unknown filetype %d +# Corel DataPerfect +>8 byte 10 +# CHECK: Don't these belong into product 9? +>>9 byte 1 Corel PlanPerfect macro +>>9 byte 2 Corel PlanPerfect help file +>>9 byte 3 Corel PlanPerfect keyboard file +>>9 byte 10 Corel PlanPerfect worksheet +>>9 byte 15 Corel PlanPerfect printer definition +>>9 byte 18 Corel PlanPerfect graphic definition +>>9 byte 19 Corel PlanPerfect data +>>9 byte 20 Corel PlanPerfect temporary printer +>>9 byte 25 Corel PlanPerfect macro resource data +>>9 default x +>>>9 byte x Corel DataPerfect: Unknown filetype %d +# Corel Mail +>8 byte 11 +>>9 byte 2 Corel Mail help file +>>9 byte 5 Corel Mail distribution list +>>9 byte 10 Corel Mail out box +>>9 byte 11 Corel Mail in box +>>9 byte 20 Corel Mail users archived mailbox +>>9 byte 21 Corel Mail archived message database +>>9 byte 22 Corel Mail archived attachments +>>9 default x +>>>9 byte x Corel Mail: Unknown filetype %d +# Corel Printer +>8 byte 12 +>>9 byte 11 Corel Printer temporary file +>>9 default x +>>>9 byte x Corel Printer: Unknown filetype %d +# Corel Scheduler +>8 byte 13 +>>9 byte 2 Corel Scheduler help file +>>9 byte 10 Corel Scheduler in file +>>9 byte 11 Corel Scheduler out file +>>9 default x +>>>9 byte x Corel Scheduler: Unknown filetype %d +# Corel WordPerfect Office +>8 byte 14 +>>9 byte 10 Corel GroupWise settings file +>>9 byte 17 Corel GroupWise directory services +>>9 byte 43 Corel GroupWise settings file +>>9 default x +>>>9 byte x Corel WordPerfect Office: Unknown filetype %d +# Corel DrawPerfect +>8 byte 15 +>>9 default x +>>>9 byte x Corel DrawPerfect: Unknown filetype %d +# Corel LetterPerfect +>8 byte 16 +>>9 default x +>>>9 byte x Corel LetterPerfect: Unknown filetype %d +# Corel Terminal +>8 byte 17 +>>9 byte 10 Corel Terminal resource data +>>9 byte 11 Corel Terminal resource data +>>9 byte 43 Corel Terminal resource data +>>9 default x +>>>9 byte x Corel Terminal: Unknown filetype %d +# Corel loadable file +>8 byte 18 +>>9 byte 10 Corel loadable file +>>9 byte 11 Corel GUI loadable text +>>9 byte 12 Corel graphics resource data +>>9 byte 13 Corel printer settings file +>>9 byte 14 Corel port definition file +>>9 byte 15 Corel print queue parameters +>>9 byte 16 Corel compressed file +>>9 default x +>>>9 byte x Corel loadable file: Unknown filetype %d +>>15 byte 0 \b, optimized for Intel +>>15 byte 1 \b, optimized for Non-Intel +# Network service +>8 byte 20 +>>9 byte 10 Corel Network service msg file +>>9 byte 11 Corel Network service msg file +>>9 byte 12 Corel Async gateway login msg +>>9 byte 14 Corel GroupWise message file +>>9 default x +>>>9 byte x Corel Network service: Unknown filetype %d +# GroupWise +>8 byte 31 +>>9 byte 20 GroupWise admin domain database +>>9 byte 21 GroupWise admin host database +>>9 byte 23 GroupWise admin remote host database +>>9 byte 24 GroupWise admin ADS deferment data file +>>9 default x +>>>9 byte x GroupWise: Unknown filetype %d +# IntelliTAG +>8 byte 33 +>>9 byte 10 IntelliTAG (SGML) compiled DTD +>>9 default x +>>>9 byte x IntelliTAG: Unknown filetype %d +# everything else +>8 default x +>>8 byte x Unknown Corel/Wordperfect product %d, +>>>9 byte x file type %d +>10 byte 0 \b, v5. +>10 byte !0 \b, v%d. +>11 byte x \b%d # Hangul (Korean) Word Processor File 0 string HWP\ Document\ File Hangul (Korean) Word Processor File 3.0 diff --git a/contrib/file/magic/Makefile.am b/contrib/file/magic/Makefile.am index cb62f95..a5ed8ab 100644 --- a/contrib/file/magic/Makefile.am +++ b/contrib/file/magic/Makefile.am @@ -1,5 +1,5 @@ # -# $File: Makefile.am,v 1.103 2015/03/17 15:15:12 christos Exp $ +# $File: Makefile.am,v 1.113 2016/02/26 15:52:45 christos Exp $ # MAGIC_FRAGMENT_BASE = Magdir MAGIC_DIR = $(top_srcdir)/magic @@ -30,6 +30,7 @@ $(MAGIC_FRAGMENT_DIR)/att3b \ $(MAGIC_FRAGMENT_DIR)/audio \ $(MAGIC_FRAGMENT_DIR)/basis \ $(MAGIC_FRAGMENT_DIR)/bflt \ +$(MAGIC_FRAGMENT_DIR)/bioinformatics \ $(MAGIC_FRAGMENT_DIR)/blackberry \ $(MAGIC_FRAGMENT_DIR)/blcr \ $(MAGIC_FRAGMENT_DIR)/blender \ @@ -50,6 +51,7 @@ $(MAGIC_FRAGMENT_DIR)/citrus \ $(MAGIC_FRAGMENT_DIR)/clarion \ $(MAGIC_FRAGMENT_DIR)/claris \ $(MAGIC_FRAGMENT_DIR)/clipper \ +$(MAGIC_FRAGMENT_DIR)/coff \ $(MAGIC_FRAGMENT_DIR)/commands \ $(MAGIC_FRAGMENT_DIR)/communications \ $(MAGIC_FRAGMENT_DIR)/compress \ @@ -62,6 +64,7 @@ $(MAGIC_FRAGMENT_DIR)/cubemap \ $(MAGIC_FRAGMENT_DIR)/cups \ $(MAGIC_FRAGMENT_DIR)/dact \ $(MAGIC_FRAGMENT_DIR)/database \ +$(MAGIC_FRAGMENT_DIR)/der \ $(MAGIC_FRAGMENT_DIR)/diamond \ $(MAGIC_FRAGMENT_DIR)/diff \ $(MAGIC_FRAGMENT_DIR)/digital \ @@ -78,7 +81,9 @@ $(MAGIC_FRAGMENT_DIR)/erlang \ $(MAGIC_FRAGMENT_DIR)/esri \ $(MAGIC_FRAGMENT_DIR)/fcs \ $(MAGIC_FRAGMENT_DIR)/filesystems \ +$(MAGIC_FRAGMENT_DIR)/finger \ $(MAGIC_FRAGMENT_DIR)/flash \ +$(MAGIC_FRAGMENT_DIR)/flif \ $(MAGIC_FRAGMENT_DIR)/fonts \ $(MAGIC_FRAGMENT_DIR)/fortran \ $(MAGIC_FRAGMENT_DIR)/frame \ @@ -145,6 +150,7 @@ $(MAGIC_FRAGMENT_DIR)/mcrypt \ $(MAGIC_FRAGMENT_DIR)/mercurial \ $(MAGIC_FRAGMENT_DIR)/metastore \ $(MAGIC_FRAGMENT_DIR)/meteorological \ +$(MAGIC_FRAGMENT_DIR)/microfocus \ $(MAGIC_FRAGMENT_DIR)/mime \ $(MAGIC_FRAGMENT_DIR)/mips \ $(MAGIC_FRAGMENT_DIR)/mirage \ @@ -193,6 +199,7 @@ $(MAGIC_FRAGMENT_DIR)/pgp \ $(MAGIC_FRAGMENT_DIR)/pkgadd \ $(MAGIC_FRAGMENT_DIR)/plan9 \ $(MAGIC_FRAGMENT_DIR)/plus5 \ +$(MAGIC_FRAGMENT_DIR)/polyml \ $(MAGIC_FRAGMENT_DIR)/printer \ $(MAGIC_FRAGMENT_DIR)/project \ $(MAGIC_FRAGMENT_DIR)/psdbms \ @@ -247,6 +254,7 @@ $(MAGIC_FRAGMENT_DIR)/unknown \ $(MAGIC_FRAGMENT_DIR)/uterus \ $(MAGIC_FRAGMENT_DIR)/uuencode \ $(MAGIC_FRAGMENT_DIR)/varied.out \ +$(MAGIC_FRAGMENT_DIR)/vacuum-cleaner \ $(MAGIC_FRAGMENT_DIR)/varied.script \ $(MAGIC_FRAGMENT_DIR)/vax \ $(MAGIC_FRAGMENT_DIR)/vicar \ @@ -291,7 +299,7 @@ ${MAGIC}: $(EXTRA_DIST) $(FILE_COMPILE_DEP) @(if expr "${FILE_COMPILE}" : '.*/.*' > /dev/null; then \ echo "Using ${FILE_COMPILE} to generate ${MAGIC}" > /dev/null; \ else \ - v=$$(file --version | sed -e s/file-// -e q); \ + v=$$(${FILE_COMPILE} --version | sed -e s/file-// -e q); \ if [ "$$v" != "${PACKAGE_VERSION}" ]; then \ echo "Cannot use the installed version of file ($$v) to"; \ echo "cross-compile file ${PACKAGE_VERSION}"; \ diff --git a/contrib/file/magic/Makefile.in b/contrib/file/magic/Makefile.in index f214a56..502e7df 100644 --- a/contrib/file/magic/Makefile.in +++ b/contrib/file/magic/Makefile.in @@ -273,7 +273,7 @@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # -# $File: Makefile.am,v 1.103 2015/03/17 15:15:12 christos Exp $ +# $File: Makefile.am,v 1.113 2016/02/26 15:52:45 christos Exp $ # MAGIC_FRAGMENT_BASE = Magdir MAGIC_DIR = $(top_srcdir)/magic @@ -302,6 +302,7 @@ $(MAGIC_FRAGMENT_DIR)/att3b \ $(MAGIC_FRAGMENT_DIR)/audio \ $(MAGIC_FRAGMENT_DIR)/basis \ $(MAGIC_FRAGMENT_DIR)/bflt \ +$(MAGIC_FRAGMENT_DIR)/bioinformatics \ $(MAGIC_FRAGMENT_DIR)/blackberry \ $(MAGIC_FRAGMENT_DIR)/blcr \ $(MAGIC_FRAGMENT_DIR)/blender \ @@ -322,6 +323,7 @@ $(MAGIC_FRAGMENT_DIR)/citrus \ $(MAGIC_FRAGMENT_DIR)/clarion \ $(MAGIC_FRAGMENT_DIR)/claris \ $(MAGIC_FRAGMENT_DIR)/clipper \ +$(MAGIC_FRAGMENT_DIR)/coff \ $(MAGIC_FRAGMENT_DIR)/commands \ $(MAGIC_FRAGMENT_DIR)/communications \ $(MAGIC_FRAGMENT_DIR)/compress \ @@ -334,6 +336,7 @@ $(MAGIC_FRAGMENT_DIR)/cubemap \ $(MAGIC_FRAGMENT_DIR)/cups \ $(MAGIC_FRAGMENT_DIR)/dact \ $(MAGIC_FRAGMENT_DIR)/database \ +$(MAGIC_FRAGMENT_DIR)/der \ $(MAGIC_FRAGMENT_DIR)/diamond \ $(MAGIC_FRAGMENT_DIR)/diff \ $(MAGIC_FRAGMENT_DIR)/digital \ @@ -350,7 +353,9 @@ $(MAGIC_FRAGMENT_DIR)/erlang \ $(MAGIC_FRAGMENT_DIR)/esri \ $(MAGIC_FRAGMENT_DIR)/fcs \ $(MAGIC_FRAGMENT_DIR)/filesystems \ +$(MAGIC_FRAGMENT_DIR)/finger \ $(MAGIC_FRAGMENT_DIR)/flash \ +$(MAGIC_FRAGMENT_DIR)/flif \ $(MAGIC_FRAGMENT_DIR)/fonts \ $(MAGIC_FRAGMENT_DIR)/fortran \ $(MAGIC_FRAGMENT_DIR)/frame \ @@ -417,6 +422,7 @@ $(MAGIC_FRAGMENT_DIR)/mcrypt \ $(MAGIC_FRAGMENT_DIR)/mercurial \ $(MAGIC_FRAGMENT_DIR)/metastore \ $(MAGIC_FRAGMENT_DIR)/meteorological \ +$(MAGIC_FRAGMENT_DIR)/microfocus \ $(MAGIC_FRAGMENT_DIR)/mime \ $(MAGIC_FRAGMENT_DIR)/mips \ $(MAGIC_FRAGMENT_DIR)/mirage \ @@ -465,6 +471,7 @@ $(MAGIC_FRAGMENT_DIR)/pgp \ $(MAGIC_FRAGMENT_DIR)/pkgadd \ $(MAGIC_FRAGMENT_DIR)/plan9 \ $(MAGIC_FRAGMENT_DIR)/plus5 \ +$(MAGIC_FRAGMENT_DIR)/polyml \ $(MAGIC_FRAGMENT_DIR)/printer \ $(MAGIC_FRAGMENT_DIR)/project \ $(MAGIC_FRAGMENT_DIR)/psdbms \ @@ -519,6 +526,7 @@ $(MAGIC_FRAGMENT_DIR)/unknown \ $(MAGIC_FRAGMENT_DIR)/uterus \ $(MAGIC_FRAGMENT_DIR)/uuencode \ $(MAGIC_FRAGMENT_DIR)/varied.out \ +$(MAGIC_FRAGMENT_DIR)/vacuum-cleaner \ $(MAGIC_FRAGMENT_DIR)/varied.script \ $(MAGIC_FRAGMENT_DIR)/vax \ $(MAGIC_FRAGMENT_DIR)/vicar \ @@ -776,7 +784,7 @@ ${MAGIC}: $(EXTRA_DIST) $(FILE_COMPILE_DEP) @(if expr "${FILE_COMPILE}" : '.*/.*' > /dev/null; then \ echo "Using ${FILE_COMPILE} to generate ${MAGIC}" > /dev/null; \ else \ - v=$$(file --version | sed -e s/file-// -e q); \ + v=$$(${FILE_COMPILE} --version | sed -e s/file-// -e q); \ if [ "$$v" != "${PACKAGE_VERSION}" ]; then \ echo "Cannot use the installed version of file ($$v) to"; \ echo "cross-compile file ${PACKAGE_VERSION}"; \ diff --git a/contrib/file/python/README b/contrib/file/python/README index 8b9a2a7..e69de29 100644 --- a/contrib/file/python/README +++ b/contrib/file/python/README @@ -1,13 +0,0 @@ -This directory contains Python bindings to allow you to access the -libmagic api. At the moment their status is "experimental". - -You can install the modules either with: - -$ python setup.py build -$ python setup.py install - -or, if you have easy_install: - -$ easy_install . - -magic-python should work now! diff --git a/contrib/file/python/magic.py b/contrib/file/python/magic.py index a17e8da..c48f7d5 100644 --- a/contrib/file/python/magic.py +++ b/contrib/file/python/magic.py @@ -1,10 +1,13 @@ -#!/usr/bin/env python +# coding: utf-8 + ''' Python bindings for libmagic ''' import ctypes +from collections import namedtuple + from ctypes import * from ctypes.util import find_library @@ -32,7 +35,7 @@ MAGIC_PRESERVE_ATIME = PRESERVE_ATIME = 128 MAGIC_RAW = RAW = 256 MAGIC_ERROR = ERROR = 512 MAGIC_MIME_ENCODING = MIME_ENCODING = 1024 -MAGIC_MIME = MIME = 1040 +MAGIC_MIME = MIME = 1040 # MIME_TYPE + MIME_ENCODING MAGIC_APPLE = APPLE = 2048 MAGIC_NO_CHECK_COMPRESS = NO_CHECK_COMPRESS = 4096 @@ -47,6 +50,8 @@ MAGIC_NO_CHECK_ENCODING = NO_CHECK_ENCODING = 2097152 MAGIC_NO_CHECK_BUILTIN = NO_CHECK_BUILTIN = 4173824 +FileMagic = namedtuple('FileMagic', ('mime_type', 'encoding', 'name')) + class magic_set(Structure): pass @@ -118,14 +123,18 @@ class Magic(object): as a filename or None if an error occurred and the MAGIC_ERROR flag is set. A call to errno() will return the numeric error code. """ - try: # attempt python3 approach first - if isinstance(filename, bytes): - bi = filename - else: + if isinstance(filename, bytes): + bi = filename + else: + try: # keep Python 2 compatibility bi = bytes(filename, 'utf-8') - return str(_file(self._magic_t, bi), 'utf-8') - except: - return _file(self._magic_t, filename.encode('utf-8')) + except TypeError: + bi = bytes(filename) + r = _file(self._magic_t, bi) + if isinstance(r, str): + return r + else: + return str(r).encode('utf-8') def descriptor(self, fd): """ @@ -139,20 +148,22 @@ class Magic(object): as a buffer or None if an error occurred and the MAGIC_ERROR flag is set. A call to errno() will return the numeric error code. """ - try: # attempt python3 approach first - return str(_buffer(self._magic_t, buf, len(buf)), 'utf-8') - except: - return _buffer(self._magic_t, buf, len(buf)) + r = _buffer(self._magic_t, buf, len(buf)) + if isinstance(r, str): + return r + else: + return str(r).encode('utf-8') def error(self): """ Returns a textual explanation of the last error or None if there was no error. """ - try: # attempt python3 approach first - return str(_error(self._magic_t), 'utf-8') - except: - return _error(self._magic_t) + e = _error(self._magic_t) + if isinstance(e, str): + return e + else: + return str(e).encode('utf-8') def setflags(self, flags): """ @@ -219,3 +230,48 @@ def open(flags): Flags argument as for setflags. """ return Magic(_open(flags)) + + +# Objects used by `detect_from_` functions +mime_magic = Magic(_open(MAGIC_MIME)) +mime_magic.load() +none_magic = Magic(_open(MAGIC_NONE)) +none_magic.load() + + +def _create_filemagic(mime_detected, type_detected): + mime_type, mime_encoding = mime_detected.split('; ') + + return FileMagic(name=type_detected, mime_type=mime_type, + encoding=mime_encoding.replace('charset=', '')) + + +def detect_from_filename(filename): + '''Detect mime type, encoding and file type from a filename + + Returns a `FileMagic` namedtuple. + ''' + + return _create_filemagic(mime_magic.file(filename), + none_magic.file(filename)) + + +def detect_from_fobj(fobj): + '''Detect mime type, encoding and file type from file-like object + + Returns a `FileMagic` namedtuple. + ''' + + file_descriptor = fobj.fileno() + return _create_filemagic(mime_magic.descriptor(file_descriptor), + none_magic.descriptor(file_descriptor)) + + +def detect_from_content(byte_content): + '''Detect mime type, encoding and file type from bytes + + Returns a `FileMagic` namedtuple. + ''' + + return _create_filemagic(mime_magic.buffer(byte_content), + none_magic.buffer(byte_content)) diff --git a/contrib/file/python/setup.py b/contrib/file/python/setup.py index 2c3b527..24ae182 100644 --- a/contrib/file/python/setup.py +++ b/contrib/file/python/setup.py @@ -1,10 +1,22 @@ -# Python distutils build script for magic extension -from distutils.core import setup - -setup(name = 'Magic file extensions', - version = '0.2', - author = 'Reuben Thomas', - author_email = 'rrt@sc3d.org', - license = 'BSD', - description = 'libmagic Python bindings', - py_modules = ['magic']) +# coding: utf-8 + +from __future__ import unicode_literals + +from setuptools import setup + + +setup(name='file-magic', + version='0.3.0', + author='Reuben Thomas, Ãlvaro Justen', + author_email='rrt@sc3d.org, alvarojusten@gmail.com', + url='https://github.com/file/file', + license='BSD', + description='(official) libmagic Python bindings', + py_modules=['magic'], + test_suite='tests', + classifiers = [ + 'Intended Audience :: Developers', + 'License :: OSI Approved :: BSD License', + 'Natural Language :: English', + 'Topic :: Software Development :: Libraries :: Python Modules', + ]) diff --git a/contrib/file/src/Makefile.am b/contrib/file/src/Makefile.am index e3196ce..5891feb 100644 --- a/contrib/file/src/Makefile.am +++ b/contrib/file/src/Makefile.am @@ -9,7 +9,7 @@ AM_CFLAGS = $(CFLAG_VISIBILITY) @WARNINGS@ libmagic_la_SOURCES = magic.c apprentice.c softmagic.c ascmagic.c \ encoding.c compress.c is_tar.c readelf.c print.c fsmagic.c \ - funcs.c file.h readelf.h tar.h apptype.c \ + funcs.c file.h readelf.h tar.h apptype.c der.c der.h \ file_opts.h elfclass.h mygetopt.h cdf.c cdf_time.c readcdf.c cdf.h libmagic_la_LDFLAGS = -no-undefined -version-info 1:0:0 if MINGW diff --git a/contrib/file/src/Makefile.in b/contrib/file/src/Makefile.in index 5e69c00..a44bf88 100644 --- a/contrib/file/src/Makefile.in +++ b/contrib/file/src/Makefile.in @@ -138,8 +138,8 @@ am__DEPENDENCIES_1 = libmagic_la_DEPENDENCIES = $(LTLIBOBJS) $(am__DEPENDENCIES_1) am_libmagic_la_OBJECTS = magic.lo apprentice.lo softmagic.lo \ ascmagic.lo encoding.lo compress.lo is_tar.lo readelf.lo \ - print.lo fsmagic.lo funcs.lo apptype.lo cdf.lo cdf_time.lo \ - readcdf.lo + print.lo fsmagic.lo funcs.lo apptype.lo der.lo cdf.lo \ + cdf_time.lo readcdf.lo libmagic_la_OBJECTS = $(am_libmagic_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) @@ -214,9 +214,9 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp \ - asctime_r.c asprintf.c ctime_r.c fmtcheck.c getline.c \ - getopt_long.c gmtime_r.c localtime_r.c pread.c strcasestr.c \ - strlcat.c strlcpy.c vasprintf.c + asctime_r.c asprintf.c ctime_r.c dprintf.c fmtcheck.c \ + getline.c getopt_long.c gmtime_r.c localtime_r.c pread.c \ + strcasestr.c strlcat.c strlcpy.c vasprintf.c DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) pkgdatadir = @pkgdatadir@ ACLOCAL = @ACLOCAL@ @@ -345,7 +345,7 @@ AM_CPPFLAGS = -DMAGIC='"$(MAGIC)"' AM_CFLAGS = $(CFLAG_VISIBILITY) @WARNINGS@ libmagic_la_SOURCES = magic.c apprentice.c softmagic.c ascmagic.c \ encoding.c compress.c is_tar.c readelf.c print.c fsmagic.c \ - funcs.c file.h readelf.h tar.h apptype.c \ + funcs.c file.h readelf.h tar.h apptype.c der.c der.h \ file_opts.h elfclass.h mygetopt.h cdf.c cdf_time.c readcdf.c cdf.h libmagic_la_LDFLAGS = -no-undefined -version-info 1:0:0 @@ -493,6 +493,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/asctime_r.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/asprintf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ctime_r.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/dprintf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fmtcheck.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getline.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/getopt_long.Plo@am__quote@ @@ -509,6 +510,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cdf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cdf_time.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/compress.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/der.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/encoding.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fsmagic.Plo@am__quote@ diff --git a/contrib/file/src/apprentice.c b/contrib/file/src/apprentice.c index 66f64bd..f8956de 100644 --- a/contrib/file/src/apprentice.c +++ b/contrib/file/src/apprentice.c @@ -32,7 +32,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: apprentice.c,v 1.238 2015/09/12 18:10:42 christos Exp $") +FILE_RCSID("@(#)$File: apprentice.c,v 1.248 2016/03/31 17:51:12 christos Exp $") #endif /* lint */ #include "magic.h" @@ -86,9 +86,9 @@ FILE_RCSID("@(#)$File: apprentice.c,v 1.238 2015/09/12 18:10:42 christos Exp $") #define ALLOC_CHUNK (size_t)10 #define ALLOC_INCR (size_t)200 -#define MAP_TYPE_MMAP 0 +#define MAP_TYPE_USER 0 #define MAP_TYPE_MALLOC 1 -#define MAP_TYPE_USER 2 +#define MAP_TYPE_MMAP 2 struct magic_entry { struct magic *mp; @@ -143,7 +143,7 @@ private int check_buffer(struct magic_set *, struct magic_map *, const char *); private void apprentice_unmap(struct magic_map *); private int apprentice_compile(struct magic_set *, struct magic_map *, const char *); -private int check_format_type(const char *, int); +private int check_format_type(const char *, int, const char **); private int check_format(struct magic_set *, struct magic *); private int get_op(char); private int parse_mime(struct magic_set *, struct magic_entry *, const char *); @@ -268,6 +268,7 @@ static const struct type_tbl_s type_tbl[] = { { XX("name"), FILE_NAME, FILE_FMT_NONE }, { XX("use"), FILE_USE, FILE_FMT_NONE }, { XX("clear"), FILE_CLEAR, FILE_FMT_NONE }, + { XX("der"), FILE_DER, FILE_FMT_STR }, { XX_NULL, FILE_INVALID, FILE_FMT_NONE }, }; @@ -276,6 +277,7 @@ static const struct type_tbl_s type_tbl[] = { * unsigned. */ static const struct type_tbl_s special_tbl[] = { + { XX("der"), FILE_DER, FILE_FMT_STR }, { XX("name"), FILE_NAME, FILE_FMT_STR }, { XX("use"), FILE_USE, FILE_FMT_STR }, { XX_NULL, FILE_INVALID, FILE_FMT_NONE }, @@ -532,6 +534,7 @@ file_ms_alloc(int flags) ms->elf_phnum_max = FILE_ELF_PHNUM_MAX; ms->elf_notes_max = FILE_ELF_NOTES_MAX; ms->regex_max = FILE_REGEX_MAX; + ms->bytes_max = FILE_BYTES_MAX; return ms; free: free(ms); @@ -546,19 +549,23 @@ apprentice_unmap(struct magic_map *map) return; switch (map->type) { -#ifdef QUICK - case MAP_TYPE_MMAP: - if (map->p) - (void)munmap(map->p, map->len); + case MAP_TYPE_USER: break; -#endif case MAP_TYPE_MALLOC: - free(map->p); - for (i = 0; i < MAGIC_SETS; i++) + for (i = 0; i < MAGIC_SETS; i++) { + if ((char *)map->magic[i] >= (char *)map->p && + (char *)map->magic[i] < (char *)map->p + map->len) + continue; free(map->magic[i]); + } + free(map->p); break; - case MAP_TYPE_USER: +#ifdef QUICK + case MAP_TYPE_MMAP: + if (map->p && map->p != MAP_FAILED) + (void)munmap(map->p, map->len); break; +#endif default: abort(); } @@ -862,6 +869,10 @@ apprentice_magic_strength(const struct magic *m) case FILE_USE: break; + case FILE_DER: + val += MULT; + break; + default: (void)fprintf(stderr, "Bad type %d\n", m->type); abort(); @@ -1017,6 +1028,7 @@ set_test_type(struct magic *mstart, struct magic *m) case FILE_DOUBLE: case FILE_BEDOUBLE: case FILE_LEDOUBLE: + case FILE_DER: mstart->flag |= BINTEST; break; case FILE_STRING: @@ -1448,6 +1460,7 @@ file_signextend(struct magic_set *ms, struct magic *m, uint64_t v) case FILE_NAME: case FILE_USE: case FILE_CLEAR: + case FILE_DER: break; default: if (ms->flags & MAGIC_CHECK) @@ -2103,7 +2116,7 @@ parse(struct magic_set *ms, struct magic_entry *me, const char *line, /* * TODO finish this macro and start using it! - * #define offsetcheck {if (offset > HOWMANY-1) + * #define offsetcheck {if (offset > ms->bytes_max -1) * magwarn("offset too big"); } */ @@ -2267,7 +2280,7 @@ parse_apple(struct magic_set *ms, struct magic_entry *me, const char *line) return parse_extra(ms, me, line, CAST(off_t, offsetof(struct magic, apple)), - sizeof(m->apple), "APPLE", "!+-./", 0); + sizeof(m->apple), "APPLE", "!+-./?", 0); } /* @@ -2298,11 +2311,13 @@ parse_mime(struct magic_set *ms, struct magic_entry *me, const char *line) } private int -check_format_type(const char *ptr, int type) +check_format_type(const char *ptr, int type, const char **estr) { int quad = 0, h; + size_t len, cnt; if (*ptr == '\0') { /* Missing format string; bad */ + *estr = "missing format spec"; return -1; } @@ -2339,15 +2354,22 @@ check_format_type(const char *ptr, int type) ptr++; if (*ptr == '.') ptr++; - while (isdigit((unsigned char)*ptr)) ptr++; +#define CHECKLEN() do { \ + for (len = cnt = 0; isdigit((unsigned char)*ptr); ptr++, cnt++) \ + len = len * 10 + (*ptr - '0'); \ + if (cnt > 5 || len > 1024) \ + goto toolong; \ +} while (/*CONSTCOND*/0) + + CHECKLEN(); if (*ptr == '.') ptr++; - while (isdigit((unsigned char)*ptr)) ptr++; + CHECKLEN(); if (quad) { if (*ptr++ != 'l') - return -1; + goto invalid; if (*ptr++ != 'l') - return -1; + goto invalid; } switch (*ptr++) { @@ -2361,9 +2383,11 @@ check_format_type(const char *ptr, int type) case 'o': case 'x': case 'X': - return h != 0 ? -1 : 0; + if (h == 0) + return 0; + /*FALLTHROUGH*/ default: - return -1; + goto invalid; } /* @@ -2372,11 +2396,11 @@ check_format_type(const char *ptr, int type) */ case 'h': if (h-- <= 0) - return -1; + goto invalid; switch (*ptr++) { case 'h': if (h-- <= 0) - return -1; + goto invalid; switch (*ptr++) { case 'i': case 'd': @@ -2386,7 +2410,7 @@ check_format_type(const char *ptr, int type) case 'X': return 0; default: - return -1; + goto invalid; } case 'i': case 'd': @@ -2394,13 +2418,17 @@ check_format_type(const char *ptr, int type) case 'o': case 'x': case 'X': - return h != 0 ? -1 : 0; + if (h == 0) + return 0; + /*FALLTHROUGH*/ default: - return -1; + goto invalid; } #endif case 'c': - return h != 2 ? -1 : 0; + if (h == 2) + return 0; + goto invalid; case 'i': case 'd': case 'u': @@ -2408,12 +2436,14 @@ check_format_type(const char *ptr, int type) case 'x': case 'X': #ifdef STRICT_FORMAT - return h != 0 ? -1 : 0; + if (h == 0) + return 0; + /*FALLTHROUGH*/ #else return 0; #endif default: - return -1; + goto invalid; } case FILE_FMT_FLOAT: @@ -2422,11 +2452,10 @@ check_format_type(const char *ptr, int type) ptr++; if (*ptr == '.') ptr++; - while (isdigit((unsigned char)*ptr)) ptr++; + CHECKLEN(); if (*ptr == '.') ptr++; - while (isdigit((unsigned char)*ptr)) ptr++; - + CHECKLEN(); switch (*ptr++) { case 'e': case 'E': @@ -2437,7 +2466,7 @@ check_format_type(const char *ptr, int type) return 0; default: - return -1; + goto invalid; } @@ -2456,14 +2485,17 @@ check_format_type(const char *ptr, int type) case 's': return 0; default: - return -1; + goto invalid; } default: /* internal error */ abort(); } - /*NOTREACHED*/ +invalid: + *estr = "not valid"; +toolong: + *estr = "too long"; return -1; } @@ -2475,6 +2507,7 @@ private int check_format(struct magic_set *ms, struct magic *m) { char *ptr; + const char *estr; for (ptr = m->desc; *ptr; ptr++) if (*ptr == '%') @@ -2498,13 +2531,13 @@ check_format(struct magic_set *ms, struct magic *m) } ptr++; - if (check_format_type(ptr, m->type) == -1) { + if (check_format_type(ptr, m->type, &estr) == -1) { /* * TODO: this error message is unhelpful if the format * string is not one character long */ - file_magwarn(ms, "Printf format `%c' is not valid for type " - "`%s' in description `%s'", *ptr ? *ptr : '?', + file_magwarn(ms, "Printf format is %s for type " + "`%s' in description `%s'", estr, file_names[m->type], m->desc); return -1; } @@ -2538,6 +2571,7 @@ getvalue(struct magic_set *ms, struct magic *m, const char **p, int action) case FILE_SEARCH: case FILE_NAME: case FILE_USE: + case FILE_DER: *p = getstr(ms, m, *p, action == FILE_COMPILE); if (*p == NULL) { if (ms->flags & MAGIC_CHECK) @@ -2902,6 +2936,7 @@ apprentice_map(struct magic_set *ms, const char *fn) file_oomem(ms, sizeof(*map)); goto error; } + map->type = MAP_TYPE_USER; /* unspecified */ dbname = mkdbname(ms, fn, 0); if (dbname == NULL) @@ -2922,13 +2957,14 @@ apprentice_map(struct magic_set *ms, const char *fn) map->len = (size_t)st.st_size; #ifdef QUICK + map->type = MAP_TYPE_MMAP; if ((map->p = mmap(0, (size_t)st.st_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FILE, fd, (off_t)0)) == MAP_FAILED) { file_error(ms, errno, "cannot map `%s'", dbname); goto error; } - map->type = MAP_TYPE_MMAP; #else + map->type = MAP_TYPE_MALLOC; if ((map->p = CAST(void *, malloc(map->len))) == NULL) { file_oomem(ms, map->len); goto error; @@ -2937,7 +2973,6 @@ apprentice_map(struct magic_set *ms, const char *fn) file_badread(ms); goto error; } - map->type = MAP_TYPE_MALLOC; #define RET 1 #endif (void)close(fd); @@ -2945,6 +2980,12 @@ apprentice_map(struct magic_set *ms, const char *fn) if (check_buffer(ms, map, dbname) != 0) goto error; +#ifdef QUICK + if (mprotect(map->p, (size_t)st.st_size, PROT_READ) == -1) { + file_error(ms, errno, "cannot mprotect `%s'", dbname); + goto error; + } +#endif free(dbname); return map; diff --git a/contrib/file/src/ascmagic.c b/contrib/file/src/ascmagic.c index 9e0f663..b9ab789 100644 --- a/contrib/file/src/ascmagic.c +++ b/contrib/file/src/ascmagic.c @@ -35,7 +35,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: ascmagic.c,v 1.92 2015/04/09 20:01:41 christos Exp $") +FILE_RCSID("@(#)$File: ascmagic.c,v 1.94 2016/03/31 17:51:12 christos Exp $") #endif /* lint */ #include "magic.h" @@ -147,7 +147,7 @@ file_ascmagic_with_encoding(struct magic_set *ms, const unsigned char *buf, == NULL) goto done; if ((rv = file_softmagic(ms, utf8_buf, - (size_t)(utf8_end - utf8_buf), 0, NULL, + (size_t)(utf8_end - utf8_buf), NULL, NULL, TEXTTEST, text)) == 0) rv = -1; } @@ -183,10 +183,10 @@ file_ascmagic_with_encoding(struct magic_set *ms, const unsigned char *buf, } /* Beware, if the data has been truncated, the final CR could have - been followed by a LF. If we have HOWMANY bytes, it indicates + been followed by a LF. If we have ms->bytes_max bytes, it indicates that the data might have been truncated, probably even before this function was called. */ - if (seen_cr && nbytes < HOWMANY) + if (seen_cr && nbytes < ms->bytes_max) n_cr++; if (strcmp(type, "binary") == 0) { diff --git a/contrib/file/src/compress.c b/contrib/file/src/compress.c index 539031e..ad86431 100644 --- a/contrib/file/src/compress.c +++ b/contrib/file/src/compress.c @@ -35,7 +35,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: compress.c,v 1.80 2015/06/03 18:21:24 christos Exp $") +FILE_RCSID("@(#)$File: compress.c,v 1.93 2016/03/31 17:51:12 christos Exp $") #endif #include "magic.h" @@ -45,6 +45,8 @@ FILE_RCSID("@(#)$File: compress.c,v 1.80 2015/06/03 18:21:24 christos Exp $") #endif #include <string.h> #include <errno.h> +#include <ctype.h> +#include <stdarg.h> #ifdef HAVE_SIGNAL_H #include <signal.h> # ifndef HAVE_SIG_T @@ -63,43 +65,119 @@ typedef void (*sig_t)(int); #if defined(HAVE_ZLIB_H) && defined(HAVE_LIBZ) #define BUILTIN_DECOMPRESS #include <zlib.h> +#define ZLIBSUPPORT #endif +#ifdef DEBUG +int tty = -1; +#define DPRINTF(...) do { \ + if (tty == -1) \ + tty = open("/dev/tty", O_RDWR); \ + if (tty == -1) \ + abort(); \ + dprintf(tty, __VA_ARGS__); \ +} while (/*CONSTCOND*/0) +#else +#define DPRINTF(...) +#endif + +#ifdef ZLIBSUPPORT +/* + * The following python code is not really used because ZLIBSUPPORT is only + * defined if we have a built-in zlib, and the built-in zlib handles that. + */ +static const char zlibcode[] = + "import sys, zlib; sys.stdout.write(zlib.decompress(sys.stdin.read()))"; + +static const char *zlib_args[] = { "python", "-c", zlibcode, NULL }; + +static int +zlibcmp(const unsigned char *buf) +{ + unsigned short x = 1; + unsigned char *s = (unsigned char *)&x; + + if ((buf[0] & 0xf) != 8 || (buf[0] & 0x80) != 0) + return 0; + if (s[0] != 1) /* endianness test */ + x = buf[0] | (buf[1] << 8); + else + x = buf[1] | (buf[0] << 8); + if (x % 31) + return 0; + return 1; +} +#endif + +#define gzip_flags "-cd" +#define lrzip_flags "-do" +#define lzip_flags gzip_flags + +static const char *gzip_args[] = { + "gzip", gzip_flags, NULL +}; +static const char *uncompress_args[] = { + "uncompress", "-c", NULL +}; +static const char *bzip2_args[] = { + "bzip2", "-cd", NULL +}; +static const char *lzip_args[] = { + "lzip", lzip_flags, NULL +}; +static const char *xz_args[] = { + "xz", "-cd", NULL +}; +static const char *lrzip_args[] = { + "lrzip", lrzip_flags, NULL +}; +static const char *lz4_args[] = { + "lz4", "-cd", NULL +}; private const struct { - const char magic[8]; + const void *magic; size_t maglen; - const char *argv[3]; - int silent; + const char **argv; } compr[] = { - { "\037\235", 2, { "gzip", "-cdq", NULL }, 1 }, /* compressed */ + { "\037\235", 2, gzip_args }, /* compressed */ /* Uncompress can get stuck; so use gzip first if we have it * Idea from Damien Clark, thanks! */ - { "\037\235", 2, { "uncompress", "-c", NULL }, 1 }, /* compressed */ - { "\037\213", 2, { "gzip", "-cdq", NULL }, 1 }, /* gzipped */ - { "\037\236", 2, { "gzip", "-cdq", NULL }, 1 }, /* frozen */ - { "\037\240", 2, { "gzip", "-cdq", NULL }, 1 }, /* SCO LZH */ + { "\037\235", 2, uncompress_args }, /* compressed */ + { "\037\213", 2, gzip_args }, /* gzipped */ + { "\037\236", 2, gzip_args }, /* frozen */ + { "\037\240", 2, gzip_args }, /* SCO LZH */ /* the standard pack utilities do not accept standard input */ - { "\037\036", 2, { "gzip", "-cdq", NULL }, 0 }, /* packed */ - { "PK\3\4", 4, { "gzip", "-cdq", NULL }, 1 }, /* pkzipped, */ - /* ...only first file examined */ - { "BZh", 3, { "bzip2", "-cd", NULL }, 1 }, /* bzip2-ed */ - { "LZIP", 4, { "lzip", "-cdq", NULL }, 1 }, - { "\3757zXZ\0",6,{ "xz", "-cd", NULL }, 1 }, /* XZ Utils */ - { "LRZI", 4, { "lrzip", "-dqo-", NULL }, 1 }, /* LRZIP */ - { "\004\"M\030", 4, { "lz4", "-cd", NULL }, 1 }, /* LZ4 */ + { "\037\036", 2, gzip_args }, /* packed */ + { "PK\3\4", 4, gzip_args }, /* pkzipped, */ + /* ...only first file examined */ + { "BZh", 3, bzip2_args }, /* bzip2-ed */ + { "LZIP", 4, lzip_args }, /* lzip-ed */ + { "\3757zXZ\0", 6, xz_args }, /* XZ Utils */ + { "LRZI", 4, lrzip_args }, /* LRZIP */ + { "\004\"M\030",4, lz4_args }, /* LZ4 */ +#ifdef ZLIBSUPPORT + { zlibcmp, 0, zlib_args }, /* zlib */ +#endif }; -#define NODATA ((size_t)~0) +#define OKDATA 0 +#define NODATA 1 +#define ERRDATA 2 private ssize_t swrite(int, const void *, size_t); #if HAVE_FORK private size_t ncompr = sizeof(compr) / sizeof(compr[0]); -private size_t uncompressbuf(struct magic_set *, int, size_t, - const unsigned char *, unsigned char **, size_t); +private int uncompressbuf(int, size_t, size_t, const unsigned char *, + unsigned char **, size_t *); #ifdef BUILTIN_DECOMPRESS -private size_t uncompressgzipped(struct magic_set *, const unsigned char *, - unsigned char **, size_t); +private int uncompresszlib(const unsigned char *, unsigned char **, size_t, + size_t *, int); +private int uncompressgzipped(const unsigned char *, unsigned char **, size_t, + size_t *); #endif +static int makeerror(unsigned char **, size_t *, const char *, ...) + __attribute__((__format__(__printf__, 3, 4))); +private const char *methodname(size_t); protected int file_zmagic(struct magic_set *ms, int fd, const char *name, @@ -107,6 +185,8 @@ file_zmagic(struct magic_set *ms, int fd, const char *name, { unsigned char *newbuf = NULL; size_t i, nsz; + char *rbuf; + file_pushbuf_t *pb; int rv = 0; int mime = ms->flags & MAGIC_MIME; #ifdef HAVE_SIGNAL_H @@ -120,37 +200,72 @@ file_zmagic(struct magic_set *ms, int fd, const char *name, osigpipe = signal(SIGPIPE, SIG_IGN); #endif for (i = 0; i < ncompr; i++) { + int zm; if (nbytes < compr[i].maglen) continue; - if (memcmp(buf, compr[i].magic, compr[i].maglen) == 0 && - (nsz = uncompressbuf(ms, fd, i, buf, &newbuf, - nbytes)) != NODATA) { +#ifdef ZLIBSUPPORT + if (compr[i].maglen == 0) + zm = (CAST(int (*)(const unsigned char *), + CCAST(void *, compr[i].magic)))(buf); + else +#endif + zm = memcmp(buf, compr[i].magic, compr[i].maglen) == 0; + + if (!zm) + continue; + nsz = nbytes; + rv = uncompressbuf(fd, ms->bytes_max, i, buf, &newbuf, &nsz); + DPRINTF("uncompressbuf = %d, %s, %zu\n", rv, (char *)newbuf, + nsz); + switch (rv) { + case OKDATA: + case ERRDATA: + ms->flags &= ~MAGIC_COMPRESS; - rv = -1; - if (file_buffer(ms, -1, name, newbuf, nsz) == -1) + if (rv == ERRDATA) + rv = file_printf(ms, "%s ERROR: %s", + methodname(i), newbuf); + else + rv = file_buffer(ms, -1, name, newbuf, nsz); + if (rv == -1) goto error; - - if ((ms->flags & MAGIC_COMPRESS_TRANSP) == 0 && - (mime == MAGIC_MIME || mime == 0)) { - if (file_printf(ms, mime ? - " compressed-encoding=" : " (") == -1) - goto error; - if (file_buffer(ms, -1, NULL, buf, nbytes) == -1) - goto error; - if (!mime && file_printf(ms, ")") == -1) + DPRINTF("rv = %d\n", rv); + if ((ms->flags & MAGIC_COMPRESS_TRANSP) != 0) + goto out; + if (mime != MAGIC_MIME && mime != 0) + goto out; + if ((file_printf(ms, + mime ? " compressed-encoding=" : " (")) == -1) + goto error; + if ((pb = file_push_buffer(ms)) == NULL) + goto error; + if (file_buffer(ms, -1, NULL, buf, nbytes) == -1) + goto error; + if ((rbuf = file_pop_buffer(ms, pb)) != NULL) { + if (file_printf(ms, "%s", rbuf) == -1) { + free(rbuf); goto error; + } + free(rbuf); } - - rv = 1; - break; + if (!mime && file_printf(ms, ")") == -1) + goto error; + goto out; + case NODATA: + goto out; + default: + abort(); } } +out: + rv = 1; error: #ifdef HAVE_SIGNAL_H (void)signal(SIGPIPE, osigpipe); #endif free(newbuf); ms->flags |= MAGIC_COMPRESS; + DPRINTF("Zmagic returns %d\n", rv); return rv; } #endif @@ -322,222 +437,314 @@ file_pipe2file(struct magic_set *ms, int fd, const void *startbuf, #define FNAME (1 << 3) #define FCOMMENT (1 << 4) -private size_t -uncompressgzipped(struct magic_set *ms, const unsigned char *old, - unsigned char **newch, size_t n) + +private int +uncompressgzipped(const unsigned char *old, unsigned char **newch, + size_t bytes_max, size_t *n) { unsigned char flg = old[3]; size_t data_start = 10; - z_stream z; - int rc; if (flg & FEXTRA) { - if (data_start+1 >= n) - return 0; + if (data_start + 1 >= *n) + goto err; data_start += 2 + old[data_start] + old[data_start + 1] * 256; } if (flg & FNAME) { - while(data_start < n && old[data_start]) + while(data_start < *n && old[data_start]) data_start++; data_start++; } - if(flg & FCOMMENT) { - while(data_start < n && old[data_start]) + if (flg & FCOMMENT) { + while(data_start < *n && old[data_start]) data_start++; data_start++; } - if(flg & FHCRC) + if (flg & FHCRC) data_start += 2; - if (data_start >= n) - return 0; - if ((*newch = CAST(unsigned char *, malloc(HOWMANY + 1))) == NULL) { - return 0; - } - - /* XXX: const castaway, via strchr */ - z.next_in = (Bytef *)strchr((const char *)old + data_start, - old[data_start]); - z.avail_in = CAST(uint32_t, (n - data_start)); + if (data_start >= *n) + goto err; + + *n -= data_start; + old += data_start; + return uncompresszlib(old, newch, bytes_max, n, 0); +err: + return makeerror(newch, n, "File too short"); +} + +private int +uncompresszlib(const unsigned char *old, unsigned char **newch, + size_t bytes_max, size_t *n, int zlib) +{ + int rc; + z_stream z; + + if ((*newch = CAST(unsigned char *, malloc(bytes_max + 1))) == NULL) + return makeerror(newch, n, "No buffer, %s", strerror(errno)); + + z.next_in = CCAST(Bytef *, old); + z.avail_in = CAST(uint32_t, *n); z.next_out = *newch; - z.avail_out = HOWMANY; + z.avail_out = bytes_max; z.zalloc = Z_NULL; z.zfree = Z_NULL; z.opaque = Z_NULL; /* LINTED bug in header macro */ - rc = inflateInit2(&z, -15); - if (rc != Z_OK) { - file_error(ms, 0, "zlib: %s", z.msg); - return 0; - } + rc = zlib ? inflateInit(&z) : inflateInit2(&z, -15); + if (rc != Z_OK) + goto err; rc = inflate(&z, Z_SYNC_FLUSH); - if (rc != Z_OK && rc != Z_STREAM_END) { - file_error(ms, 0, "zlib: %s", z.msg); - return 0; - } + if (rc != Z_OK && rc != Z_STREAM_END) + goto err; - n = (size_t)z.total_out; - (void)inflateEnd(&z); + *n = (size_t)z.total_out; + rc = inflateEnd(&z); + if (rc != Z_OK) + goto err; /* let's keep the nul-terminate tradition */ - (*newch)[n] = '\0'; + (*newch)[*n] = '\0'; - return n; + return OKDATA; +err: + strlcpy((char *)*newch, z.msg, bytes_max); + *n = strlen((char *)*newch); + return ERRDATA; } #endif -private size_t -uncompressbuf(struct magic_set *ms, int fd, size_t method, - const unsigned char *old, unsigned char **newch, size_t n) +static int +makeerror(unsigned char **buf, size_t *len, const char *fmt, ...) +{ + char *msg; + va_list ap; + int rv; + + va_start(ap, fmt); + rv = vasprintf(&msg, fmt, ap); + va_end(ap); + if (rv < 0) { + *buf = NULL; + *len = 0; + return NODATA; + } + *buf = (unsigned char *)msg; + *len = strlen(msg); + return ERRDATA; +} + +static void +closefd(int *fd, size_t i) +{ + if (fd[i] == -1) + return; + (void) close(fd[i]); + fd[i] = -1; +} + +static void +closep(int *fd) +{ + size_t i; + for (i = 0; i < 2; i++) + closefd(fd, i); +} + +static void +copydesc(int i, int *fd) +{ + int j = fd[i == STDIN_FILENO ? 0 : 1]; + if (j == i) + return; + if (dup2(j, i) == -1) { + DPRINTF("dup(%d, %d) failed (%s)\n", j, i, strerror(errno)); + exit(1); + } + closep(fd); +} + +static void +writechild(int fdp[3][2], const void *old, size_t n) { - int fdin[2], fdout[2]; int status; + + closefd(fdp[STDIN_FILENO], 0); + /* + * fork again, to avoid blocking because both + * pipes filled + */ + switch (fork()) { + case 0: /* child */ + closefd(fdp[STDOUT_FILENO], 0); + if (swrite(fdp[STDIN_FILENO][1], old, n) != (ssize_t)n) { + DPRINTF("Write failed (%s)\n", strerror(errno)); + exit(1); + } + exit(0); + /*NOTREACHED*/ + + case -1: + DPRINTF("Fork failed (%s)\n", strerror(errno)); + exit(1); + /*NOTREACHED*/ + + default: /* parent */ + if (wait(&status) == -1) { + DPRINTF("Wait failed (%s)\n", strerror(errno)); + exit(1); + } + DPRINTF("Grandchild wait return %#x\n", status); + } + closefd(fdp[STDIN_FILENO], 1); +} + +static ssize_t +filter_error(unsigned char *ubuf, ssize_t n) +{ + char *p; + char *buf; + + ubuf[n] = '\0'; + buf = (char *)ubuf; + while (isspace((unsigned char)*buf)) + buf++; + DPRINTF("Filter error[[[%s]]]\n", buf); + if ((p = strchr((char *)buf, '\n')) != NULL) + *p = '\0'; + if ((p = strchr((char *)buf, ';')) != NULL) + *p = '\0'; + if ((p = strrchr((char *)buf, ':')) != NULL) { + ++p; + while (isspace((unsigned char)*p)) + p++; + n = strlen(p); + memmove(ubuf, p, n + 1); + } + DPRINTF("Filter error after[[[%s]]]\n", (char *)ubuf); + if (islower(*ubuf)) + *ubuf = toupper(*ubuf); + return n; +} + +private const char * +methodname(size_t method) +{ +#ifdef BUILTIN_DECOMPRESS + /* FIXME: This doesn't cope with bzip2 */ + if (method == 2 || compr[method].maglen == 0) + return "zlib"; +#endif + return compr[method].argv[0]; +} + +private int +uncompressbuf(int fd, size_t bytes_max, size_t method, const unsigned char *old, + unsigned char **newch, size_t* n) +{ + int fdp[3][2]; + int status, rv; + size_t i; ssize_t r; #ifdef BUILTIN_DECOMPRESS /* FIXME: This doesn't cope with bzip2 */ if (method == 2) - return uncompressgzipped(ms, old, newch, n); + return uncompressgzipped(old, newch, bytes_max, n); + if (compr[method].maglen == 0) + return uncompresszlib(old, newch, bytes_max, n, 1); #endif (void)fflush(stdout); (void)fflush(stderr); - if ((fd != -1 && pipe(fdin) == -1) || pipe(fdout) == -1) { - file_error(ms, errno, "cannot create pipe"); - return NODATA; + for (i = 0; i < __arraycount(fdp); i++) + fdp[i][0] = fdp[i][1] = -1; + + if ((fd == -1 && pipe(fdp[STDIN_FILENO]) == -1) || + pipe(fdp[STDOUT_FILENO]) == -1 || pipe(fdp[STDERR_FILENO]) == -1) { + closep(fdp[STDIN_FILENO]); + closep(fdp[STDOUT_FILENO]); + return makeerror(newch, n, "Cannot create pipe, %s", + strerror(errno)); } switch (fork()) { case 0: /* child */ - (void) close(0); if (fd != -1) { - if (dup(fd) == -1) - _exit(1); - (void) lseek(0, (off_t)0, SEEK_SET); - } else { - if (dup(fdin[0]) == -1) - _exit(1); - (void) close(fdin[0]); - (void) close(fdin[1]); + fdp[STDIN_FILENO][0] = fd; + (void) lseek(fd, (off_t)0, SEEK_SET); } - - (void) close(1); - if (dup(fdout[1]) == -1) - _exit(1); - (void) close(fdout[0]); - (void) close(fdout[1]); -#ifndef DEBUG - if (compr[method].silent) - (void)close(2); -#endif + + for (i = 0; i < __arraycount(fdp); i++) + copydesc(i, fdp[i]); (void)execvp(compr[method].argv[0], (char *const *)(intptr_t)compr[method].argv); -#ifdef DEBUG - (void)fprintf(stderr, "exec `%s' failed (%s)\n", + dprintf(STDERR_FILENO, "exec `%s' failed, %s", compr[method].argv[0], strerror(errno)); -#endif exit(1); /*NOTREACHED*/ case -1: - file_error(ms, errno, "could not fork"); - return NODATA; + return makeerror(newch, n, "Cannot fork, %s", + strerror(errno)); default: /* parent */ - (void) close(fdout[1]); - if (fd == -1) { - (void) close(fdin[0]); - /* - * fork again, to avoid blocking because both - * pipes filled - */ - switch (fork()) { - case 0: /* child */ - (void)close(fdout[0]); - if (swrite(fdin[1], old, n) != (ssize_t)n) { -#ifdef DEBUG - (void)fprintf(stderr, - "Write failed (%s)\n", - strerror(errno)); -#endif - exit(1); - } - exit(0); - /*NOTREACHED*/ - - case -1: -#ifdef DEBUG - (void)fprintf(stderr, "Fork failed (%s)\n", - strerror(errno)); -#endif - exit(1); - /*NOTREACHED*/ + for (i = 1; i < __arraycount(fdp); i++) + closefd(fdp[i], 1); - default: /* parent */ - if (wait(&status) == -1) { -#ifdef DEBUG - (void)fprintf(stderr, - "Wait failed (%s)\n", - strerror(errno)); -#endif - exit(1); - } - exit(WIFEXITED(status) ? - WEXITSTATUS(status) : 1); - /*NOTREACHED*/ - } - (void) close(fdin[1]); - fdin[1] = -1; - } + /* Write the buffer data to the child, if we don't have fd */ + if (fd == -1) + writechild(fdp, old, *n); - if ((*newch = (unsigned char *) malloc(HOWMANY + 1)) == NULL) { -#ifdef DEBUG - (void)fprintf(stderr, "Malloc failed (%s)\n", + *newch = CAST(unsigned char *, malloc(bytes_max + 1)); + if (*newch == NULL) { + rv = makeerror(newch, n, "No buffer, %s", strerror(errno)); -#endif - n = NODATA; goto err; } - if ((r = sread(fdout[0], *newch, HOWMANY, 0)) <= 0) { -#ifdef DEBUG - (void)fprintf(stderr, "Read failed (%s)\n", - strerror(errno)); -#endif - free(*newch); - n = NODATA; - *newch = NULL; - goto err; - } else { - n = r; + rv = OKDATA; + if ((r = sread(fdp[STDOUT_FILENO][0], *newch, bytes_max, 0)) > 0) + break; + DPRINTF("Read stdout failed %d (%s)\n", fdp[STDOUT_FILENO][0], + r != -1 ? strerror(errno) : "no data"); + + rv = ERRDATA; + if (r == 0 && + (r = sread(fdp[STDERR_FILENO][0], *newch, bytes_max, 0)) > 0) + { + r = filter_error(*newch, r); + break; } - /* NUL terminate, as every buffer is handled here. */ - (*newch)[n] = '\0'; -err: - if (fdin[1] != -1) - (void) close(fdin[1]); - (void) close(fdout[0]); - if (wait(&status) == -1) { -#ifdef DEBUG - (void)fprintf(stderr, "Wait failed (%s)\n", + free(*newch); + if (r == 0) + rv = makeerror(newch, n, "Read failed, %s", strerror(errno)); -#endif - n = NODATA; - } else if (!WIFEXITED(status)) { -#ifdef DEBUG - (void)fprintf(stderr, "Child not exited (0x%x)\n", - status); -#endif - } else if (WEXITSTATUS(status) != 0) { -#ifdef DEBUG - (void)fprintf(stderr, "Child exited (0x%d)\n", - WEXITSTATUS(status)); -#endif - } + else + rv = makeerror(newch, n, "No data"); + goto err; + } - (void) close(fdin[0]); - - return n; + *n = r; + /* NUL terminate, as every buffer is handled here. */ + (*newch)[*n] = '\0'; +err: + closefd(fdp[STDIN_FILENO], 1); + closefd(fdp[STDOUT_FILENO], 0); + closefd(fdp[STDERR_FILENO], 0); + if (wait(&status) == -1) { + free(*newch); + rv = makeerror(newch, n, "Wait failed, %s", strerror(errno)); + DPRINTF("Child wait return %#x\n", status); + } else if (!WIFEXITED(status)) { + DPRINTF("Child not exited (0x%x)\n", status); + } else if (WEXITSTATUS(status) != 0) { + DPRINTF("Child exited (0x%d)\n", WEXITSTATUS(status)); } + + closefd(fdp[STDIN_FILENO], 0); + DPRINTF("Returning %p n=%zu rv=%d\n", *newch, *n, rv); + + return rv; } #endif diff --git a/contrib/file/src/der.c b/contrib/file/src/der.c new file mode 100644 index 0000000..e003795 --- /dev/null +++ b/contrib/file/src/der.c @@ -0,0 +1,379 @@ +/*- + * Copyright (c) 2016 Christos Zoulas + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ +/* + * DER (Distinguished Encoding Rules) Parser + * + * Sources: + * https://en.wikipedia.org/wiki/X.690 + * http://fm4dd.com/openssl/certexamples.htm + * http://blog.engelke.com/2014/10/17/parsing-ber-and-der-encoded-asn-1-objects/ + */ +#ifndef TEST_DER +#include "file.h" + +#ifndef lint +FILE_RCSID("@(#)$File: der.c,v 1.4 2016/03/21 23:04:40 christos Exp $") +#endif +#endif + +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/mman.h> + +#include <stdio.h> +#include <err.h> +#include <fcntl.h> +#include <stdlib.h> +#include <string.h> +#include <ctype.h> + +#ifndef TEST_DER +#include "magic.h" +#include "der.h" +#endif + +#define DER_BAD ((uint32_t)-1) + +#define DER_CLASS_UNIVERSAL 0 +#define DER_CLASS_APPLICATION 1 +#define DER_CLASS_CONTEXT 2 +#define DER_CLASS_PRIVATE 3 +static const char der_class[] = "UACP"; + +#define DER_TYPE_PRIMITIVE 0 +#define DER_TYPE_CONSTRUCTED 1 +static const char der_type[] = "PC"; + +#define DER_TAG_EOC 0x00 +#define DER_TAG_BOOLEAN 0x01 +#define DER_TAG_INTEGER 0x02 +#define DER_TAG_BIT STRING 0x03 +#define DER_TAG_OCTET_STRING 0x04 +#define DER_TAG_NULL 0x05 +#define DER_TAG_OBJECT_IDENTIFIER 0x06 +#define DER_TAG_OBJECT_DESCRIPTOR 0x07 +#define DER_TAG_EXTERNAL 0x08 +#define DER_TAG_REAL 0x09 +#define DER_TAG_ENUMERATED 0x0a +#define DER_TAG_EMBEDDED_PDV 0x0b +#define DER_TAG_UTF8_STRING 0x0c +#define DER_TAG_RELATIVE_OID 0x0d +#define DER_TAG_RESERVED_1 0x0e +#define DER_TAG_RESERVED_2 0x0f +#define DER_TAG_SEQUENCE 0x10 +#define DER_TAG_SET 0x11 +#define DER_TAG_NUMERIC_STRING 0x12 +#define DER_TAG_PRINTABLE_STRING 0x13 +#define DER_TAG_T61_STRING 0x14 +#define DER_TAG_VIDEOTEX_STRING 0x15 +#define DER_TAG_IA5_STRING 0x16 +#define DER_TAG_UTCTIME 0x17 +#define DER_TAG_GENERALIZED_TIME 0x18 +#define DER_TAG_GRAPHIC_STRING 0x19 +#define DER_TAG_VISIBLE_STRING 0x1a +#define DER_TAG_GENERAL_STRING 0x1b +#define DER_TAG_UNIVERSAL_STRING 0x1c +#define DER_TAG_CHARACTER_STRING 0x1d +#define DER_TAG_BMP_STRING 0x1e +#define DER_TAG_LONG 0x1f + +static const char *der__tag[] = { + "eoc", "bool", "int", "bit_str", "octet_str", + "null", "obj_id", "obj_desc", "ext", "real", + "enum", "embed", "utf8_str", "oid", "res1", + "res2", "seq", "set", "num_str", "prt_str", + "t61_str", "vid_str", "ia5_str", "utc_time", + "gen_time", "gr_str", "vis_str", "gen_str", + "char_str", "bmp_str", "long" +}; + +#ifdef DEBUG_DER +#define DPRINTF(a) printf a +#else +#define DPRINTF(a) +#endif + +#ifdef TEST_DER +static uint8_t +getclass(uint8_t c) +{ + return c >> 6; +} + +static uint8_t +gettype(uint8_t c) +{ + return (c >> 5) & 1; +} +#endif + +static uint32_t +gettag(const uint8_t *c, size_t *p, size_t l) +{ + uint32_t tag; + + if (*p >= l) + return DER_BAD; + + tag = c[(*p)++] & 0x1f; + + if (tag != 0x1f) + return tag; + + if (*p >= l) + return DER_BAD; + + while (c[*p] >= 0x80) { + tag = tag * 128 + c[(*p)++] - 0x80; + if (*p >= l) + return DER_BAD; + } + return tag; +} + +static uint32_t +getlength(const uint8_t *c, size_t *p, size_t l) +{ + uint8_t digits, i; + size_t len; + + if (*p >= l) + return DER_BAD; + + digits = c[(*p)++]; + + if ((digits & 0x80) == 0) + return digits; + + digits &= 0x7f; + len = 0; + + if (*p + digits >= l) + return DER_BAD; + + for (i = 0; i < digits; i++) + len = (len << 8) | c[(*p)++]; + return len; +} + +static const char * +der_tag(char *buf, size_t len, uint32_t tag) +{ + if (tag < DER_TAG_LONG) + strlcpy(buf, der__tag[tag], len); + else + snprintf(buf, len, "%#x", tag); + return buf; +} + +#ifndef TEST_DER +static int +der_data(char *buf, size_t blen, uint32_t tag, const void *q, uint32_t len) +{ + const uint8_t *d = q; + switch (tag) { + case DER_TAG_PRINTABLE_STRING: + case DER_TAG_UTF8_STRING: + case DER_TAG_IA5_STRING: + case DER_TAG_UTCTIME: + return snprintf(buf, blen, "%.*s", len, (const char *)q); + default: + break; + } + + for (uint32_t i = 0; i < len; i++) { + uint32_t z = i << 1; + if (z < blen - 2) + snprintf(buf + z, blen - z, "%.2x", d[i]); + } + return len * 2; +} + +int32_t +der_offs(struct magic_set *ms, struct magic *m, size_t nbytes) +{ + const uint8_t *b = CAST(const void *, ms->search.s); + size_t offs = 0, len = ms->search.rm_len ? ms->search.rm_len : nbytes; + + if (gettag(b, &offs, len) == DER_BAD) + return -1; + DPRINTF(("%s1: %d %zu %u\n", __func__, ms->offset, offs, m->offset)); + + uint32_t tlen = getlength(b, &offs, len); + if (tlen == DER_BAD) + return -1; + DPRINTF(("%s2: %d %zu %u\n", __func__, ms->offset, offs, tlen)); + + offs += ms->offset + m->offset; + DPRINTF(("cont_level = %d\n", m->cont_level)); +#ifdef DEBUG_DER + for (size_t i = 0; i < m->cont_level; i++) + printf("cont_level[%zu] = %u\n", i, ms->c.li[i].off); +#endif + if (m->cont_level != 0) { + if (offs + tlen > nbytes) + return DER_BAD; + ms->c.li[m->cont_level - 1].off = offs + tlen; + DPRINTF(("cont_level[%u] = %u\n", m->cont_level - 1, + ms->c.li[m->cont_level - 1].off)); + } + return offs; +} + +int +der_cmp(struct magic_set *ms, struct magic *m) +{ + const uint8_t *b = CAST(const void *, ms->search.s); + const char *s = m->value.s; + size_t offs = 0, len = ms->search.s_len; + uint32_t tag, tlen; + char buf[128]; + + tag = gettag(b, &offs, len); + if (tag == DER_BAD) + return -1; + + tlen = getlength(b, &offs, len); + if (tlen == DER_BAD) + return -1; + + der_tag(buf, sizeof(buf), tag); + if ((ms->flags & MAGIC_DEBUG) != 0) + fprintf(stderr, "%s: tag %p got=%s exp=%s\n", __func__, b, + buf, s); + size_t slen = strlen(buf); + + if (strncmp(buf, s, slen) != 0) + return 0; + + s += slen; + +again: + switch (*s) { + case '\0': + return 1; + case '=': + s++; + goto val; + default: + if (!isdigit((unsigned char)*s)) + return 0; + + slen = 0; + do + slen = slen * 10 + *s - '0'; + while (isdigit((unsigned char)*++s)); + if ((ms->flags & MAGIC_DEBUG) != 0) + fprintf(stderr, "%s: len %zu %u\n", __func__, + slen, tlen); + if (tlen != slen) + return 0; + goto again; + } +val: + DPRINTF(("%s: before data %zu %u\n", __func__, offs, tlen)); + der_data(buf, sizeof(buf), tag, b + offs, tlen); + if ((ms->flags & MAGIC_DEBUG) != 0) + fprintf(stderr, "%s: data %s %s\n", __func__, buf, s); + if (strcmp(buf, s) != 0 && strcmp("x", s) != 0) + return 0; + strlcpy(ms->ms_value.s, buf, sizeof(ms->ms_value.s)); + return 1; +} +#endif + +#ifdef TEST_DER +static void +printtag(uint32_t tag, const void *q, uint32_t len) +{ + const uint8_t *d = q; + switch (tag) { + case DER_TAG_PRINTABLE_STRING: + case DER_TAG_UTF8_STRING: + printf("%.*s\n", len, (const char *)q); + return; + default: + break; + } + + for (uint32_t i = 0; i < len; i++) + printf("%.2x", d[i]); + printf("\n"); +} + +static void +printdata(size_t level, const void *v, size_t x, size_t l) +{ + const uint8_t *p = v, *ep = p + l; + size_t ox; + char buf[128]; + + while (p + x < ep) { + const uint8_t *q; + uint8_t c = getclass(p[x]); + uint8_t t = gettype(p[x]); + ox = x; + if (x != 0) + printf("%.2x %.2x %.2x\n", p[x - 1], p[x], p[x + 1]); + uint32_t tag = gettag(p, &x, ep - p + x); + if (p + x >= ep) + break; + uint32_t len = getlength(p, &x, ep - p + x); + + printf("%zu %zu-%zu %c,%c,%s,%u:", level, ox, x, + der_class[c], der_type[t], + der_tag(buf, sizeof(buf), tag), len); + q = p + x; + if (p + len > ep) + errx(EXIT_FAILURE, "corrupt der"); + printtag(tag, q, len); + if (t != DER_TYPE_PRIMITIVE) + printdata(level + 1, p, x, len + x); + x += len; + } +} + +int +main(int argc, char *argv[]) +{ + int fd; + struct stat st; + size_t l; + void *p; + + if ((fd = open(argv[1], O_RDONLY)) == -1) + err(EXIT_FAILURE, "open `%s'", argv[1]); + if (fstat(fd, &st) == -1) + err(EXIT_FAILURE, "stat `%s'", argv[1]); + l = (size_t)st.st_size; + if ((p = mmap(NULL, l, PROT_READ, MAP_FILE, fd, 0)) == MAP_FAILED) + err(EXIT_FAILURE, "mmap `%s'", argv[1]); + + printdata(0, p, 0, l); + munmap(p, l); + return 0; +} +#endif diff --git a/contrib/file/src/der.h b/contrib/file/src/der.h new file mode 100644 index 0000000..3333239 --- /dev/null +++ b/contrib/file/src/der.h @@ -0,0 +1,28 @@ +/*- + * Copyright (c) 2016 Christos Zoulas + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS + * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS + * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +extern int der_offs(struct magic_set *, struct magic *, size_t); +extern int der_cmp(struct magic_set *, struct magic *); diff --git a/contrib/file/src/dprintf.c b/contrib/file/src/dprintf.c new file mode 100644 index 0000000..3ae1581 --- /dev/null +++ b/contrib/file/src/dprintf.c @@ -0,0 +1,58 @@ +/* + * Copyright (c) Ian F. Darwin 1986-1995. + * Software written by Ian F. Darwin and others; + * maintained 1995-present by Christos Zoulas and others. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice immediately at the beginning of the file, without modification, + * this list of conditions, and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ +#include "file.h" + +#ifndef lint +FILE_RCSID("@(#)$File: dprintf.c,v 1.1 2015/11/13 15:36:14 christos Exp $") +#endif /* lint */ + +#include <assert.h> +#include <unistd.h> +#include <stdio.h> +#include <stdarg.h> + +int +dprintf(int fd, const char *fmt, ...) +{ + va_list ap; + /* Simpler than using vasprintf() here, since we never need more */ + char buf[1024]; + int len; + + va_start(ap, fmt); + len = vsnprintf(buf, sizeof(buf), fmt, ap); + va_end(ap); + + if ((size_t)len >= sizeof(buf)) + return -1; + + if (write(fd, buf, (size_t)len) != len) + return -1; + + return len; +} diff --git a/contrib/file/src/file.c b/contrib/file/src/file.c index fa46b95..2226ec4 100644 --- a/contrib/file/src/file.c +++ b/contrib/file/src/file.c @@ -32,7 +32,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: file.c,v 1.167 2015/09/11 17:24:09 christos Exp $") +FILE_RCSID("@(#)$File: file.c,v 1.170 2016/03/31 17:51:12 christos Exp $") #endif /* lint */ #include "magic.h" @@ -94,9 +94,9 @@ private const struct option long_options[] = { #define OPT_EXTENSIONS 3 #define OPT_MIME_TYPE 4 #define OPT_MIME_ENCODING 5 -#define OPT(shortname, longname, opt, doc) \ +#define OPT(shortname, longname, opt, def, doc) \ {longname, opt, NULL, shortname}, -#define OPT_LONGONLY(longname, opt, doc, id) \ +#define OPT_LONGONLY(longname, opt, def, doc, id) \ {longname, opt, NULL, id}, #include "file_opts.h" #undef OPT @@ -132,15 +132,17 @@ private struct { { "elf_shnum", MAGIC_PARAM_ELF_SHNUM_MAX, 0 }, { "elf_notes", MAGIC_PARAM_ELF_NOTES_MAX, 0 }, { "regex", MAGIC_PARAM_REGEX_MAX, 0 }, + { "bytes", MAGIC_PARAM_BYTES_MAX, 0 }, }; private char *progname; /* used throughout */ +private int posixly; #ifdef __dead __dead #endif private void usage(void); -private void docprint(const char *); +private void docprint(const char *, int); #ifdef __dead __dead #endif @@ -183,7 +185,8 @@ main(int argc, char *argv[]) progname = argv[0]; #ifdef S_IFLNK - flags |= getenv("POSIXLY_CORRECT") ? MAGIC_SYMLINK : 0; + posixly = getenv("POSIXLY_CORRECT") != NULL; + flags |= posixly ? MAGIC_SYMLINK : 0; #endif while ((c = getopt_long(argc, argv, OPTSTRING, long_options, &longindex)) != -1) @@ -204,7 +207,7 @@ main(int argc, char *argv[]) flags |= MAGIC_MIME_ENCODING; break; case '0': - nulsep = 1; + nulsep++; break; case 'b': bflag++; @@ -492,24 +495,28 @@ unwrap(struct magic_set *ms, const char *fn) private int process(struct magic_set *ms, const char *inname, int wid) { - const char *type; + const char *type, c = nulsep > 1 ? '\0' : '\n'; int std_in = strcmp(inname, "-") == 0; if (wid > 0 && !bflag) { (void)printf("%s", std_in ? "/dev/stdin" : inname); if (nulsep) (void)putc('\0', stdout); - (void)printf("%s", separator); - (void)printf("%*s ", - (int) (nopad ? 0 : (wid - file_mbswidth(inname))), ""); + if (nulsep < 2) { + (void)printf("%s", separator); + (void)printf("%*s ", + (int) (nopad ? 0 : (wid - file_mbswidth(inname))), + ""); + } } type = magic_file(ms, std_in ? NULL : inname); + if (type == NULL) { - (void)printf("ERROR: %s\n", magic_error(ms)); + (void)printf("ERROR: %s%c", magic_error(ms), c); return 1; } else { - (void)printf("%s\n", type); + (void)printf("%s%c", type, c); return 0; } } @@ -559,7 +566,17 @@ usage(void) } private void -docprint(const char *opts) +defprint(int def) +{ + if (!def) + return; + if (((def & 1) && posixly) || ((def & 2) && !posixly)) + fprintf(stdout, " (default)"); + fputc('\n', stdout); +} + +private void +docprint(const char *opts, int def) { size_t i; int comma; @@ -568,6 +585,7 @@ docprint(const char *opts) p = strstr(opts, "%o"); if (p == NULL) { fprintf(stdout, "%s", opts); + defprint(def); return; } @@ -595,12 +613,12 @@ help(void) "Usage: file [OPTION...] [FILE...]\n" "Determine type of FILEs.\n" "\n", stdout); -#define OPT(shortname, longname, opt, doc) \ +#define OPT(shortname, longname, opt, def, doc) \ fprintf(stdout, " -%c, --" longname, shortname), \ - docprint(doc); -#define OPT_LONGONLY(longname, opt, doc, id) \ + docprint(doc, def); +#define OPT_LONGONLY(longname, opt, def, doc, id) \ fprintf(stdout, " --" longname), \ - docprint(doc); + docprint(doc, def); #include "file_opts.h" #undef OPT #undef OPT_LONGONLY diff --git a/contrib/file/src/file.h b/contrib/file/src/file.h index b0f0cc1..f22fcd9 100644 --- a/contrib/file/src/file.h +++ b/contrib/file/src/file.h @@ -27,7 +27,7 @@ */ /* * file.h - definitions for file(1) program - * @(#)$File: file.h,v 1.172 2015/09/11 17:24:09 christos Exp $ + * @(#)$File: file.h,v 1.178 2016/03/31 17:51:12 christos Exp $ */ #ifndef __file_h__ @@ -127,8 +127,8 @@ #define MAX(a,b) (((a) > (b)) ? (a) : (b)) #endif -#ifndef HOWMANY -# define HOWMANY (1024 * 1024) /* how much of the file to look at */ +#ifndef FILE_BYTES_MAX +# define FILE_BYTES_MAX (1024 * 1024) /* how much of the file to look at */ #endif #define MAXMAGIS 8192 /* max entries in any one magic file or directory */ @@ -227,7 +227,8 @@ struct magic { #define FILE_NAME 45 #define FILE_USE 46 #define FILE_CLEAR 47 -#define FILE_NAMES_SIZE 48 /* size of array to contain all names */ +#define FILE_DER 48 +#define FILE_NAMES_SIZE 49 /* size of array to contain all names */ #define IS_STRING(t) \ ((t) == FILE_STRING || \ @@ -365,9 +366,11 @@ struct mlist { #ifdef __cplusplus #define CAST(T, b) static_cast<T>(b) #define RCAST(T, b) reinterpret_cast<T>(b) +#define CCAST(T, b) const_cast<T>(b) #else -#define CAST(T, b) (T)(b) -#define RCAST(T, b) (T)(b) +#define CAST(T, b) ((T)(b)) +#define RCAST(T, b) ((T)(b)) +#define CCAST(T, b) ((T)(uintptr_t)(b)) #endif struct level_info { @@ -416,7 +419,8 @@ struct magic_set { uint16_t elf_phnum_max; uint16_t elf_notes_max; uint16_t regex_max; -#define FILE_INDIR_MAX 15 + size_t bytes_max; /* number of bytes to read from file */ +#define FILE_INDIR_MAX 50 #define FILE_NAME_MAX 30 #define FILE_ELF_SHNUM_MAX 32768 #define FILE_ELF_PHNUM_MAX 2048 @@ -461,7 +465,7 @@ protected int file_encoding(struct magic_set *, const unsigned char *, size_t, unichar **, size_t *, const char **, const char **, const char **); protected int file_is_tar(struct magic_set *, const unsigned char *, size_t); protected int file_softmagic(struct magic_set *, const unsigned char *, size_t, - uint16_t, uint16_t *, int, int); + uint16_t *, uint16_t *, int, int); protected int file_apprentice(struct magic_set *, const char *, int); protected int buffer_apprentice(struct magic_set *, struct magic **, size_t *, size_t); @@ -506,6 +510,8 @@ typedef struct { #define USE_C_LOCALE locale_t old_lc_ctype; locale_t c_lc_ctype; +#else + char *old_lc_ctype; #endif int rc; regex_t rx; @@ -550,6 +556,9 @@ int vasprintf(char **, const char *, va_list); #ifndef HAVE_ASPRINTF int asprintf(char **, const char *, ...); #endif +#ifndef HAVE_DPRINTF +int dprintf(int, const char *, ...); +#endif #ifndef HAVE_STRLCPY size_t strlcpy(char *, const char *, size_t); diff --git a/contrib/file/src/file_opts.h b/contrib/file/src/file_opts.h index 3d9a7ce..52ace18 100644 --- a/contrib/file/src/file_opts.h +++ b/contrib/file/src/file_opts.h @@ -12,47 +12,47 @@ * switch statement! */ -OPT_LONGONLY("help", 0, " display this help and exit\n", OPT_HELP) -OPT('v', "version", 0, " output version information and exit\n") -OPT('m', "magic-file", 1, " LIST use LIST as a colon-separated list of magic\n" +OPT_LONGONLY("help", 0, 0, " display this help and exit\n", OPT_HELP) +OPT('v', "version", 0, 0, " output version information and exit\n") +OPT('m', "magic-file", 1, 0, " LIST use LIST as a colon-separated list of magic\n" " number files\n") -OPT('z', "uncompress", 0, " try to look inside compressed files\n") -OPT('Z', "uncompress-noreport", 0, " only print the contents of compressed files\n") -OPT('b', "brief", 0, " do not prepend filenames to output lines\n") -OPT('c', "checking-printout", 0, " print the parsed form of the magic file, use in\n" +OPT('z', "uncompress", 0, 0, " try to look inside compressed files\n") +OPT('Z', "uncompress-noreport", 0, 0, " only print the contents of compressed files\n") +OPT('b', "brief", 0, 0, " do not prepend filenames to output lines\n") +OPT('c', "checking-printout", 0, 0, " print the parsed form of the magic file, use in\n" " conjunction with -m to debug a new magic file\n" " before installing it\n") -OPT('e', "exclude", 1, " TEST exclude TEST from the list of test to be\n" +OPT('e', "exclude", 1, 0, " TEST exclude TEST from the list of test to be\n" " performed for file. Valid tests are:\n" " %o\n") -OPT('f', "files-from", 1, " FILE read the filenames to be examined from FILE\n") -OPT('F', "separator", 1, " STRING use string as separator instead of `:'\n") -OPT('i', "mime", 0, " output MIME type strings (--mime-type and\n" +OPT('f', "files-from", 1, 0, " FILE read the filenames to be examined from FILE\n") +OPT('F', "separator", 1, 0, " STRING use string as separator instead of `:'\n") +OPT('i', "mime", 0, 0, " output MIME type strings (--mime-type and\n" " --mime-encoding)\n") -OPT_LONGONLY("apple", 0, " output the Apple CREATOR/TYPE\n", OPT_APPLE) -OPT_LONGONLY("extension", 0, " output a slash-separated list of extensions\n", OPT_EXTENSIONS) -OPT_LONGONLY("mime-type", 0, " output the MIME type\n", OPT_MIME_TYPE) -OPT_LONGONLY("mime-encoding", 0, " output the MIME encoding\n", OPT_MIME_ENCODING) -OPT('k', "keep-going", 0, " don't stop at the first match\n") -OPT('l', "list", 0, " list magic strength\n") +OPT_LONGONLY("apple", 0, 0, " output the Apple CREATOR/TYPE\n", OPT_APPLE) +OPT_LONGONLY("extension", 0, 0, " output a slash-separated list of extensions\n", OPT_EXTENSIONS) +OPT_LONGONLY("mime-type", 0, 0, " output the MIME type\n", OPT_MIME_TYPE) +OPT_LONGONLY("mime-encoding", 0, 0, " output the MIME encoding\n", OPT_MIME_ENCODING) +OPT('k', "keep-going", 0, 0, " don't stop at the first match\n") +OPT('l', "list", 0, 0, " list magic strength\n") #ifdef S_IFLNK -OPT('L', "dereference", 0, " follow symlinks (default)\n") -OPT('h', "no-dereference", 0, " don't follow symlinks\n") +OPT('L', "dereference", 0, 1, " follow symlinks") +OPT('h', "no-dereference", 0, 2, " don't follow symlinks") #endif -OPT('n', "no-buffer", 0, " do not buffer output\n") -OPT('N', "no-pad", 0, " do not pad output\n") -OPT('0', "print0", 0, " terminate filenames with ASCII NUL\n") +OPT('n', "no-buffer", 0, 0, " do not buffer output\n") +OPT('N', "no-pad", 0, 0, " do not pad output\n") +OPT('0', "print0", 0, 0, " terminate filenames with ASCII NUL\n") #if defined(HAVE_UTIME) || defined(HAVE_UTIMES) -OPT('p', "preserve-date", 0, " preserve access times on files\n") +OPT('p', "preserve-date", 0, 0, " preserve access times on files\n") #endif -OPT('P', "parameter", 1, " set file engine parameter limits\n" +OPT('P', "parameter", 1, 0, " set file engine parameter limits\n" " indir 15 recursion limit for indirection\n" " name 30 use limit for name/use magic\n" " elf_notes 256 max ELF notes processed\n" " elf_phnum 128 max ELF prog sections processed\n" " elf_shnum 32768 max ELF sections processed\n") -OPT('r', "raw", 0, " don't translate unprintable chars to \\ooo\n") -OPT('s', "special-files", 0, " treat special (block/char devices) files as\n" +OPT('r', "raw", 0, 0, " don't translate unprintable chars to \\ooo\n") +OPT('s', "special-files", 0, 0, " treat special (block/char devices) files as\n" " ordinary ones\n") -OPT('C', "compile", 0, " compile file specified by -m\n") -OPT('d', "debug", 0, " print debugging messages\n") +OPT('C', "compile", 0, 0, " compile file specified by -m\n") +OPT('d', "debug", 0, 0, " print debugging messages\n") diff --git a/contrib/file/src/fmtcheck.c b/contrib/file/src/fmtcheck.c index 0fc7038..486aa08 100644 --- a/contrib/file/src/fmtcheck.c +++ b/contrib/file/src/fmtcheck.c @@ -91,6 +91,23 @@ get_next_format_from_precision(const char **pf) f++; longdouble = 1; break; +#ifdef WIN32 + case 'I': + f++; + if (!*f) RETURN(pf,f,FMTCHECK_UNKNOWN); + if (*f == '3' && f[1] == '2') { + f += 2; + } else if (*f == '6' && f[1] == '4') { + f += 2; + quad = 1; + } +#ifdef _WIN64 + else { + quad = 1; + } +#endif + break; +#endif default: break; } diff --git a/contrib/file/src/funcs.c b/contrib/file/src/funcs.c index 97d4a0a..df8dbae 100644 --- a/contrib/file/src/funcs.c +++ b/contrib/file/src/funcs.c @@ -27,7 +27,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: funcs.c,v 1.84 2015/09/10 13:32:19 christos Exp $") +FILE_RCSID("@(#)$File: funcs.c,v 1.89 2016/03/21 15:56:53 christos Exp $") #endif /* lint */ #include "magic.h" @@ -178,7 +178,6 @@ file_buffer(struct magic_set *ms, int fd, const char *inname __attribute__ ((__u const void *buf, size_t nb) { int m = 0, rv = 0, looks_text = 0; - int mime = ms->flags & MAGIC_MIME; const unsigned char *ubuf = CAST(const unsigned char *, buf); unichar *u8buf = NULL; size_t ulen; @@ -252,7 +251,8 @@ file_buffer(struct magic_set *ms, int fd, const char *inname __attribute__ ((__u /* try soft magic tests */ if ((ms->flags & MAGIC_NO_CHECK_SOFT) == 0) - m = file_softmagic(ms, ubuf, nb, 0, NULL, BINTEST, looks_text); + m = file_softmagic(ms, ubuf, nb, NULL, NULL, BINTEST, + looks_text); if ((ms->flags & MAGIC_DEBUG) != 0) (void)fprintf(stderr, "[try softmagic %d]\n", m); if (m) { @@ -293,9 +293,19 @@ file_buffer(struct magic_set *ms, int fd, const char *inname __attribute__ ((__u simple: /* give up */ m = 1; - if ((!mime || (mime & MAGIC_MIME_TYPE)) && - file_printf(ms, "%s", mime ? type : def) == -1) { - rv = -1; + if (ms->flags & MAGIC_MIME) { + if ((ms->flags & MAGIC_MIME_TYPE) && + file_printf(ms, "%s", type) == -1) + rv = -1; + } else if (ms->flags & MAGIC_APPLE) { + if (file_printf(ms, "UNKNUNKN") == -1) + rv = -1; + } else if (ms->flags & MAGIC_EXTENSION) { + if (file_printf(ms, "???") == -1) + rv = -1; + } else { + if (file_printf(ms, "%s", def) == -1) + rv = -1; } done: if ((ms->flags & MAGIC_MIME_ENCODING) != 0) { @@ -485,6 +495,8 @@ file_regcomp(file_regex_t *rx, const char *pat, int flags) assert(rx->c_lc_ctype != NULL); rx->old_lc_ctype = uselocale(rx->c_lc_ctype); assert(rx->old_lc_ctype != NULL); +#else + rx->old_lc_ctype = setlocale(LC_CTYPE, "C"); #endif rx->pat = pat; @@ -507,6 +519,8 @@ file_regfree(file_regex_t *rx) #ifdef USE_C_LOCALE (void)uselocale(rx->old_lc_ctype); freelocale(rx->c_lc_ctype); +#else + (void)setlocale(LC_CTYPE, rx->old_lc_ctype); #endif } diff --git a/contrib/file/src/magic.c b/contrib/file/src/magic.c index 87ac1cb..315a944 100644 --- a/contrib/file/src/magic.c +++ b/contrib/file/src/magic.c @@ -33,7 +33,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: magic.c,v 1.95 2015/09/11 17:24:09 christos Exp $") +FILE_RCSID("@(#)$File: magic.c,v 1.97 2016/03/31 17:51:12 christos Exp $") #endif /* lint */ #include "magic.h" @@ -346,7 +346,7 @@ private void close_and_restore(const struct magic_set *ms, const char *name, int fd, const struct stat *sb) { - if (fd == STDIN_FILENO || name == NULL) + if (name == NULL) return; (void) close(fd); @@ -417,7 +417,7 @@ file_or_fd(struct magic_set *ms, const char *inname, int fd) * some overlapping space for matches near EOF */ #define SLOP (1 + sizeof(union VALUETYPE)) - if ((buf = CAST(unsigned char *, malloc(HOWMANY + SLOP))) == NULL) + if ((buf = CAST(unsigned char *, malloc(ms->bytes_max + SLOP))) == NULL) return NULL; switch (file_fsmagic(ms, inname, &sb)) { @@ -481,13 +481,13 @@ file_or_fd(struct magic_set *ms, const char *inname, int fd) } /* - * try looking at the first HOWMANY bytes + * try looking at the first ms->bytes_max bytes */ if (ispipe) { ssize_t r = 0; while ((r = sread(fd, (void *)&buf[nbytes], - (size_t)(HOWMANY - nbytes), 1)) > 0) { + (size_t)(ms->bytes_max - nbytes), 1)) > 0) { nbytes += r; if (r < PIPE_BUF) break; } @@ -503,10 +503,10 @@ file_or_fd(struct magic_set *ms, const char *inname, int fd) } else { /* Windows refuses to read from a big console buffer. */ size_t howmany = -#if defined(WIN32) && HOWMANY > 8 * 1024 +#if defined(WIN32) _isatty(fd) ? 8 * 1024 : #endif - HOWMANY; + ms->bytes_max; if ((nbytes = read(fd, (char *)buf, howmany)) == -1) { if (inname == NULL && fd != STDIN_FILENO) file_error(ms, errno, "cannot read fd %d", fd); @@ -606,6 +606,9 @@ magic_setparam(struct magic_set *ms, int param, const void *val) case MAGIC_PARAM_REGEX_MAX: ms->elf_notes_max = (uint16_t)*(const size_t *)val; return 0; + case MAGIC_PARAM_BYTES_MAX: + ms->bytes_max = *(const size_t *)val; + return 0; default: errno = EINVAL; return -1; @@ -634,6 +637,9 @@ magic_getparam(struct magic_set *ms, int param, void *val) case MAGIC_PARAM_REGEX_MAX: *(size_t *)val = ms->regex_max; return 0; + case MAGIC_PARAM_BYTES_MAX: + *(size_t *)val = ms->bytes_max; + return 0; default: errno = EINVAL; return -1; diff --git a/contrib/file/src/magic.h b/contrib/file/src/magic.h index eab3d3a..af6b5b6 100644 --- a/contrib/file/src/magic.h +++ b/contrib/file/src/magic.h @@ -80,7 +80,7 @@ #define MAGIC_NO_CHECK_FORTRAN 0x000000 /* Don't check ascii/fortran */ #define MAGIC_NO_CHECK_TROFF 0x000000 /* Don't check ascii/troff */ -#define MAGIC_VERSION 524 /* This implementation */ +#define MAGIC_VERSION 525 /* This implementation */ #ifdef __cplusplus @@ -114,6 +114,7 @@ int magic_errno(magic_t); #define MAGIC_PARAM_ELF_SHNUM_MAX 3 #define MAGIC_PARAM_ELF_NOTES_MAX 4 #define MAGIC_PARAM_REGEX_MAX 5 +#define MAGIC_PARAM_BYTES_MAX 6 int magic_setparam(magic_t, int, const void *); int magic_getparam(magic_t, int, void *); diff --git a/contrib/file/src/print.c b/contrib/file/src/print.c index 0d52290..a0221b1 100644 --- a/contrib/file/src/print.c +++ b/contrib/file/src/print.c @@ -32,7 +32,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: print.c,v 1.80 2015/07/16 14:28:57 christos Exp $") +FILE_RCSID("@(#)$File: print.c,v 1.81 2016/01/19 15:09:03 christos Exp $") #endif /* lint */ #include <string.h> @@ -198,6 +198,7 @@ file_mdump(struct magic *m) break; case FILE_USE: case FILE_NAME: + case FILE_DER: (void) fprintf(stderr, "'%s'", m->value.s); break; default: diff --git a/contrib/file/src/readcdf.c b/contrib/file/src/readcdf.c index 99d8ec0..f79ac99 100644 --- a/contrib/file/src/readcdf.c +++ b/contrib/file/src/readcdf.c @@ -26,7 +26,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: readcdf.c,v 1.53 2015/04/09 20:01:41 christos Exp $") +FILE_RCSID("@(#)$File: readcdf.c,v 1.56 2016/03/03 22:20:03 christos Exp $") #endif #include <assert.h> @@ -60,12 +60,16 @@ static const struct nv { { "Windows Installer", "vnd.ms-msi", }, { NULL, NULL, }, }, name2mime[] = { + { "Book", "vnd.ms-excel", }, + { "Workbook", "vnd.ms-excel", }, { "WordDocument", "msword", }, { "PowerPoint", "vnd.ms-powerpoint", }, { "DigitalSignature", "vnd.ms-msi", }, { NULL, NULL, }, }, name2desc[] = { - { "WordDocument", "Microsoft Office Word",}, + { "Book", "Microsoft Excel", }, + { "Workbook", "Microsoft Excel", }, + { "WordDocument", "Microsoft Word", }, { "PowerPoint", "Microsoft PowerPoint", }, { "DigitalSignature", "Microsoft Installer", }, { NULL, NULL, }, @@ -119,6 +123,8 @@ cdf_app_to_mime(const char *vbuf, const struct nv *nv) assert(c_lc_ctype != NULL); old_lc_ctype = uselocale(c_lc_ctype); assert(old_lc_ctype != NULL); +#else + char *old_lc_ctype = setlocale(LC_CTYPE, "C"); #endif for (i = 0; nv[i].pattern != NULL; i++) if (strcasestr(vbuf, nv[i].pattern) != NULL) { @@ -131,6 +137,8 @@ cdf_app_to_mime(const char *vbuf, const struct nv *nv) #ifdef USE_C_LOCALE (void)uselocale(old_lc_ctype); freelocale(c_lc_ctype); +#else + setlocale(LC_CTYPE, old_lc_ctype); #endif return rv; } diff --git a/contrib/file/src/readelf.c b/contrib/file/src/readelf.c index 2a7fc01..39598f7 100644 --- a/contrib/file/src/readelf.c +++ b/contrib/file/src/readelf.c @@ -27,7 +27,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: readelf.c,v 1.122 2015/09/10 13:59:32 christos Exp $") +FILE_RCSID("@(#)$File: readelf.c,v 1.127 2015/11/18 12:29:29 christos Exp $") #endif #ifdef BUILTIN_ELF @@ -50,7 +50,7 @@ private int dophn_exec(struct magic_set *, int, int, int, off_t, int, size_t, private int doshn(struct magic_set *, int, int, int, off_t, int, size_t, off_t, int, int, int *, uint16_t *); private size_t donote(struct magic_set *, void *, size_t, size_t, int, - int, size_t, int *, uint16_t *); + int, size_t, int *, uint16_t *, int, off_t, int, off_t); #define ELF_ALIGN(a) ((((a) + align - 1) / align) * align) @@ -177,6 +177,11 @@ getu64(int swap, uint64_t value) elf_getu32(swap, ph32.p_align) : 4) \ : (off_t) (ph64.p_align ? \ elf_getu64(swap, ph64.p_align) : 4))) +#define xph_vaddr (size_t)((clazz == ELFCLASS32 \ + ? (off_t) (ph32.p_vaddr ? \ + elf_getu32(swap, ph32.p_vaddr) : 4) \ + : (off_t) (ph64.p_vaddr ? \ + elf_getu64(swap, ph64.p_vaddr) : 4))) #define xph_filesz (size_t)((clazz == ELFCLASS32 \ ? elf_getu32(swap, ph32.p_filesz) \ : elf_getu64(swap, ph64.p_filesz))) @@ -187,8 +192,8 @@ getu64(int swap, uint64_t value) ? elf_getu32(swap, ph32.p_memsz) \ : elf_getu64(swap, ph64.p_memsz))) #define xnh_sizeof (clazz == ELFCLASS32 \ - ? sizeof nh32 \ - : sizeof nh64) + ? sizeof(nh32) \ + : sizeof(nh64)) #define xnh_type (clazz == ELFCLASS32 \ ? elf_getu32(swap, nh32.n_type) \ : elf_getu32(swap, nh64.n_type)) @@ -213,6 +218,18 @@ getu64(int swap, uint64_t value) #define xcap_val (clazz == ELFCLASS32 \ ? elf_getu32(swap, cap32.c_un.c_val) \ : elf_getu64(swap, cap64.c_un.c_val)) +#define xauxv_addr (clazz == ELFCLASS32 \ + ? (void *)&auxv32 \ + : (void *)&auxv64) +#define xauxv_sizeof (clazz == ELFCLASS32 \ + ? sizeof(auxv32) \ + : sizeof(auxv64)) +#define xauxv_type (clazz == ELFCLASS32 \ + ? elf_getu32(swap, auxv32.a_type) \ + : elf_getu64(swap, auxv64.a_type)) +#define xauxv_val (clazz == ELFCLASS32 \ + ? elf_getu32(swap, auxv32.a_v) \ + : elf_getu64(swap, auxv64.a_v)) #ifdef ELFCORE /* @@ -302,6 +319,7 @@ private const char os_style_names[][8] = { #define FLAGS_DID_NETBSD_CMODEL 0x040 #define FLAGS_DID_NETBSD_UNKNOWN 0x080 #define FLAGS_IS_CORE 0x100 +#define FLAGS_DID_AUXV 0x200 private int dophn_core(struct magic_set *ms, int clazz, int swap, int fd, off_t off, @@ -312,6 +330,8 @@ dophn_core(struct magic_set *ms, int clazz, int swap, int fd, off_t off, size_t offset, len; unsigned char nbuf[BUFSIZ]; ssize_t bufsize; + off_t ph_off = off; + int ph_num = num; if (size != xph_sizeof) { if (file_printf(ms, ", corrupted program header size") == -1) @@ -351,7 +371,8 @@ dophn_core(struct magic_set *ms, int clazz, int swap, int fd, off_t off, if (offset >= (size_t)bufsize) break; offset = donote(ms, nbuf, offset, (size_t)bufsize, - clazz, swap, 4, flags, notecount); + clazz, swap, 4, flags, notecount, fd, ph_off, + ph_num, fsize); if (offset == 0) break; @@ -813,9 +834,157 @@ do_core_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, return 0; } +private off_t +get_offset_from_virtaddr(struct magic_set *ms, int swap, int clazz, int fd, + off_t off, int num, off_t fsize, uint64_t virtaddr) +{ + Elf32_Phdr ph32; + Elf64_Phdr ph64; + + /* + * Loop through all the program headers and find the header with + * virtual address in which the "virtaddr" belongs to. + */ + for ( ; num; num--) { + if (pread(fd, xph_addr, xph_sizeof, off) < (ssize_t)xph_sizeof) { + file_badread(ms); + return -1; + } + off += xph_sizeof; + + if (fsize != SIZE_UNKNOWN && xph_offset > fsize) { + /* Perhaps warn here */ + continue; + } + + if (virtaddr >= xph_vaddr && virtaddr < xph_vaddr + xph_filesz) + return xph_offset + (virtaddr - xph_vaddr); + } + return 0; +} + +private size_t +get_string_on_virtaddr(struct magic_set *ms, + int swap, int clazz, int fd, off_t ph_off, int ph_num, + off_t fsize, uint64_t virtaddr, char *buf, ssize_t buflen) +{ + char *bptr; + off_t offset; + + if (buflen == 0) + return 0; + + offset = get_offset_from_virtaddr(ms, swap, clazz, fd, ph_off, ph_num, + fsize, virtaddr); + if ((buflen = pread(fd, buf, buflen, offset)) <= 0) { + file_badread(ms); + return 0; + } + + buf[buflen - 1] = '\0'; + + /* We expect only printable characters, so return if buffer contains + * non-printable character before the '\0' or just '\0'. */ + for (bptr = buf; *bptr && isprint((unsigned char)*bptr); bptr++) + continue; + if (*bptr != '\0') + return 0; + + return bptr - buf; +} + + +private int +do_auxv_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, + int swap, uint32_t namesz __attribute__((__unused__)), + uint32_t descsz __attribute__((__unused__)), + size_t noff __attribute__((__unused__)), size_t doff, + int *flags, size_t size __attribute__((__unused__)), int clazz, + int fd, off_t ph_off, int ph_num, off_t fsize) +{ +#ifdef ELFCORE + Aux32Info auxv32; + Aux64Info auxv64; + size_t elsize = xauxv_sizeof; + const char *tag; + int is_string; + size_t nval; + + if (type != NT_AUXV || (*flags & FLAGS_IS_CORE) == 0) + return 0; + + *flags |= FLAGS_DID_AUXV; + + nval = 0; + for (size_t off = 0; off + elsize <= descsz; off += elsize) { + (void)memcpy(xauxv_addr, &nbuf[doff + off], xauxv_sizeof); + /* Limit processing to 50 vector entries to prevent DoS */ + if (nval++ >= 50) { + file_error(ms, 0, "Too many ELF Auxv elements"); + return 1; + } + + switch(xauxv_type) { + case AT_LINUX_EXECFN: + is_string = 1; + tag = "execfn"; + break; + case AT_LINUX_PLATFORM: + is_string = 1; + tag = "platform"; + break; + case AT_LINUX_UID: + is_string = 0; + tag = "real uid"; + break; + case AT_LINUX_GID: + is_string = 0; + tag = "real gid"; + break; + case AT_LINUX_EUID: + is_string = 0; + tag = "effective uid"; + break; + case AT_LINUX_EGID: + is_string = 0; + tag = "effective gid"; + break; + default: + is_string = 0; + tag = NULL; + break; + } + + if (tag == NULL) + continue; + + if (is_string) { + char buf[256]; + ssize_t buflen; + buflen = get_string_on_virtaddr(ms, swap, clazz, fd, + ph_off, ph_num, fsize, xauxv_val, buf, sizeof(buf)); + + if (buflen == 0) + continue; + + if (file_printf(ms, ", %s: '%s'", tag, buf) == -1) + return 0; + } else { + if (file_printf(ms, ", %s: %d", tag, (int) xauxv_val) + == -1) + return 0; + } + } + return 1; +#else + return 0; +#endif +} + private size_t donote(struct magic_set *ms, void *vbuf, size_t offset, size_t size, - int clazz, int swap, size_t align, int *flags, uint16_t *notecount) + int clazz, int swap, size_t align, int *flags, uint16_t *notecount, + int fd, off_t ph_off, int ph_num, off_t fsize) { Elf32_Nhdr nh32; Elf64_Nhdr nh64; @@ -839,6 +1008,7 @@ donote(struct magic_set *ms, void *vbuf, size_t offset, size_t size, namesz = xnh_namesz; descsz = xnh_descsz; + if ((namesz == 0) && (descsz == 0)) { /* * We're out of note headers. @@ -876,28 +1046,36 @@ donote(struct magic_set *ms, void *vbuf, size_t offset, size_t size, return (offset >= size) ? offset : size; } + if ((*flags & FLAGS_DID_OS_NOTE) == 0) { if (do_os_note(ms, nbuf, xnh_type, swap, namesz, descsz, noff, doff, flags)) - return size; + return offset; } if ((*flags & FLAGS_DID_BUILD_ID) == 0) { if (do_bid_note(ms, nbuf, xnh_type, swap, namesz, descsz, noff, doff, flags)) - return size; + return offset; } if ((*flags & FLAGS_DID_NETBSD_PAX) == 0) { if (do_pax_note(ms, nbuf, xnh_type, swap, namesz, descsz, noff, doff, flags)) - return size; + return offset; } if ((*flags & FLAGS_DID_CORE) == 0) { if (do_core_note(ms, nbuf, xnh_type, swap, namesz, descsz, noff, doff, flags, size, clazz)) - return size; + return offset; + } + + if ((*flags & FLAGS_DID_AUXV) == 0) { + if (do_auxv_note(ms, nbuf, xnh_type, swap, + namesz, descsz, noff, doff, flags, size, clazz, + fd, ph_off, ph_num, fsize)) + return offset; } if (namesz == 7 && strcmp((char *)&nbuf[noff], "NetBSD") == 0) { @@ -905,32 +1083,32 @@ donote(struct magic_set *ms, void *vbuf, size_t offset, size_t size, descsz = 100; switch (xnh_type) { case NT_NETBSD_VERSION: - return size; + return offset; case NT_NETBSD_MARCH: if (*flags & FLAGS_DID_NETBSD_MARCH) - return size; + return offset; *flags |= FLAGS_DID_NETBSD_MARCH; if (file_printf(ms, ", compiled for: %.*s", (int)descsz, (const char *)&nbuf[doff]) == -1) - return size; + return offset; break; case NT_NETBSD_CMODEL: if (*flags & FLAGS_DID_NETBSD_CMODEL) - return size; + return offset; *flags |= FLAGS_DID_NETBSD_CMODEL; if (file_printf(ms, ", compiler model: %.*s", (int)descsz, (const char *)&nbuf[doff]) == -1) - return size; + return offset; break; default: if (*flags & FLAGS_DID_NETBSD_UNKNOWN) - return size; + return offset; *flags |= FLAGS_DID_NETBSD_UNKNOWN; if (file_printf(ms, ", note=%u", xnh_type) == -1) - return size; + return offset; break; } - return size; + return offset; } return offset; @@ -1080,7 +1258,8 @@ doshn(struct magic_set *ms, int clazz, int swap, int fd, off_t off, int num, if (noff >= (off_t)xsh_size) break; noff = donote(ms, nbuf, (size_t)noff, - xsh_size, clazz, swap, 4, flags, notecount); + xsh_size, clazz, swap, 4, flags, notecount, + fd, 0, 0, 0); if (noff == 0) break; } @@ -1329,7 +1508,7 @@ dophn_exec(struct magic_set *ms, int clazz, int swap, int fd, off_t off, break; offset = donote(ms, nbuf, offset, (size_t)bufsize, clazz, swap, align, - flags, notecount); + flags, notecount, fd, 0, 0, 0); if (offset == 0) break; } diff --git a/contrib/file/src/readelf.h b/contrib/file/src/readelf.h index 732b20c..f443b29 100644 --- a/contrib/file/src/readelf.h +++ b/contrib/file/src/readelf.h @@ -54,6 +54,42 @@ typedef uint8_t Elf64_Char; #define EI_NIDENT 16 typedef struct { + Elf32_Word a_type; /* 32-bit id */ + Elf32_Word a_v; /* 32-bit id */ +} Aux32Info; + +typedef struct { + Elf64_Xword a_type; /* 64-bit id */ + Elf64_Xword a_v; /* 64-bit id */ +} Aux64Info; + +#define AT_NULL 0 /* end of vector */ +#define AT_IGNORE 1 /* entry should be ignored */ +#define AT_EXECFD 2 /* file descriptor of program */ +#define AT_PHDR 3 /* program headers for program */ +#define AT_PHENT 4 /* size of program header entry */ +#define AT_PHNUM 5 /* number of program headers */ +#define AT_PAGESZ 6 /* system page size */ +#define AT_BASE 7 /* base address of interpreter */ +#define AT_FLAGS 8 /* flags */ +#define AT_ENTRY 9 /* entry point of program */ +#define AT_LINUX_NOTELF 10 /* program is not ELF */ +#define AT_LINUX_UID 11 /* real uid */ +#define AT_LINUX_EUID 12 /* effective uid */ +#define AT_LINUX_GID 13 /* real gid */ +#define AT_LINUX_EGID 14 /* effective gid */ +#define AT_LINUX_PLATFORM 15 /* string identifying CPU for optimizations */ +#define AT_LINUX_HWCAP 16 /* arch dependent hints at CPU capabilities */ +#define AT_LINUX_CLKTCK 17 /* frequency at which times() increments */ +/* AT_* values 18 through 22 are reserved */ +#define AT_LINUX_SECURE 23 /* secure mode boolean */ +#define AT_LINUX_BASE_PLATFORM 24 /* string identifying real platform, may + * differ from AT_PLATFORM. */ +#define AT_LINUX_RANDOM 25 /* address of 16 random bytes */ +#define AT_LINUX_HWCAP2 26 /* extension of AT_HWCAP */ +#define AT_LINUX_EXECFN 31 /* filename of program */ + +typedef struct { Elf32_Char e_ident[EI_NIDENT]; Elf32_Half e_type; Elf32_Half e_machine; diff --git a/contrib/file/src/softmagic.c b/contrib/file/src/softmagic.c index 84a8932..29533b5 100644 --- a/contrib/file/src/softmagic.c +++ b/contrib/file/src/softmagic.c @@ -32,7 +32,7 @@ #include "file.h" #ifndef lint -FILE_RCSID("@(#)$File: softmagic.c,v 1.218 2015/09/11 17:24:09 christos Exp $") +FILE_RCSID("@(#)$File: softmagic.c,v 1.229 2016/03/21 23:04:40 christos Exp $") #endif /* lint */ #include "magic.h" @@ -41,26 +41,27 @@ FILE_RCSID("@(#)$File: softmagic.c,v 1.218 2015/09/11 17:24:09 christos Exp $") #include <ctype.h> #include <stdlib.h> #include <time.h> +#include "der.h" private int match(struct magic_set *, struct magic *, uint32_t, - const unsigned char *, size_t, size_t, int, int, int, uint16_t, + const unsigned char *, size_t, size_t, int, int, int, uint16_t *, uint16_t *, int *, int *, int *); private int mget(struct magic_set *, const unsigned char *, - struct magic *, size_t, size_t, unsigned int, int, int, int, uint16_t, + struct magic *, size_t, size_t, unsigned int, int, int, int, uint16_t *, uint16_t *, int *, int *, int *); private int magiccheck(struct magic_set *, struct magic *); private int32_t mprint(struct magic_set *, struct magic *); -private int32_t moffset(struct magic_set *, struct magic *); +private int moffset(struct magic_set *, struct magic *, size_t, int32_t *); private void mdebug(uint32_t, const char *, size_t); private int mcopy(struct magic_set *, union VALUETYPE *, int, int, const unsigned char *, uint32_t, size_t, struct magic *); private int mconvert(struct magic_set *, struct magic *, int); private int print_sep(struct magic_set *, int); private int handle_annotation(struct magic_set *, struct magic *); -private void cvt_8(union VALUETYPE *, const struct magic *); -private void cvt_16(union VALUETYPE *, const struct magic *); -private void cvt_32(union VALUETYPE *, const struct magic *); -private void cvt_64(union VALUETYPE *, const struct magic *); +private int cvt_8(union VALUETYPE *, const struct magic *); +private int cvt_16(union VALUETYPE *, const struct magic *); +private int cvt_32(union VALUETYPE *, const struct magic *); +private int cvt_64(union VALUETYPE *, const struct magic *); #define OFFSET_OOB(n, o, i) ((n) < (o) || (i) > ((n) - (o))) #define BE64(p) (((uint64_t)(p)->hq[0]<<56)|((uint64_t)(p)->hq[1]<<48)| \ @@ -87,20 +88,24 @@ private void cvt_64(union VALUETYPE *, const struct magic *); /*ARGSUSED1*/ /* nbytes passed for regularity, maybe need later */ protected int file_softmagic(struct magic_set *ms, const unsigned char *buf, size_t nbytes, - uint16_t indir_level, uint16_t *name_count, int mode, int text) + uint16_t *indir_count, uint16_t *name_count, int mode, int text) { struct mlist *ml; int rv, printed_something = 0, need_separator = 0; - uint16_t nc; + uint16_t nc, ic; if (name_count == NULL) { nc = 0; name_count = &nc; } + if (indir_count == NULL) { + ic = 0; + indir_count = ⁣ + } for (ml = ms->mlist[0]->next; ml != ms->mlist[0]; ml = ml->next) if ((rv = match(ms, ml->magic, ml->nmagic, buf, nbytes, 0, mode, - text, 0, indir_level, name_count, + text, 0, indir_count, name_count, &printed_something, &need_separator, NULL)) != 0) return rv; @@ -156,7 +161,7 @@ file_fmtcheck(struct magic_set *ms, const struct magic *m, const char *def, private int match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, const unsigned char *s, size_t nbytes, size_t offset, int mode, int text, - int flip, uint16_t indir_level, uint16_t *name_count, + int flip, uint16_t *indir_count, uint16_t *name_count, int *printed_something, int *need_separator, int *returnval) { uint32_t magindex = 0; @@ -194,7 +199,7 @@ match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, /* if main entry matches, print it... */ switch (mget(ms, s, m, nbytes, offset, cont_level, mode, text, - flip, indir_level, name_count, + flip, indir_count, name_count, printed_something, need_separator, returnval)) { case -1: return -1; @@ -234,6 +239,7 @@ match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, *returnval = 1; return e; } + /* * If we are going to print something, we'll need to print * a blank before we print something else. @@ -249,7 +255,8 @@ match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, if (print && mprint(ms, m) == -1) return -1; - ms->c.li[cont_level].off = moffset(ms, m); + if (moffset(ms, m, nbytes, &ms->c.li[cont_level].off) == -1) + return -1; /* and any continuations that match */ if (file_check_mem(ms, ++cont_level) == -1) @@ -283,7 +290,7 @@ match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, } #endif switch (mget(ms, s, m, nbytes, offset, cont_level, mode, - text, flip, indir_level, name_count, + text, flip, indir_count, name_count, printed_something, need_separator, returnval)) { case -1: return -1; @@ -318,6 +325,7 @@ match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, break; } else ms->c.li[cont_level].got_match = 1; + if ((e = handle_annotation(ms, m)) != 0) { *need_separator = 1; *printed_something = 1; @@ -354,7 +362,9 @@ match(struct magic_set *ms, struct magic *magic, uint32_t nmagic, if (print && mprint(ms, m) == -1) return -1; - ms->c.li[cont_level].off = moffset(ms, m); + if (moffset(ms, m, nbytes, + &ms->c.li[cont_level].off) == -1) + return -1; if (*m->desc) *need_separator = 1; @@ -682,7 +692,12 @@ mprint(struct magic_set *ms, struct magic *m) case FILE_NAME: t = ms->offset; break; - + case FILE_DER: + if (file_printf(ms, F(ms, m, "%s"), + file_printable(sbuf, sizeof(sbuf), ms->ms_value.s)) == -1) + return -1; + t = ms->offset; + break; default: file_magerror(ms, "invalid m->type (%d) in mprint()", m->type); return -1; @@ -690,100 +705,144 @@ mprint(struct magic_set *ms, struct magic *m) return (int32_t)t; } -private int32_t -moffset(struct magic_set *ms, struct magic *m) +private int +moffset(struct magic_set *ms, struct magic *m, size_t nbytes, int32_t *op) { + int32_t o; + switch (m->type) { case FILE_BYTE: - return CAST(int32_t, (ms->offset + sizeof(char))); + o = CAST(int32_t, (ms->offset + sizeof(char))); + break; case FILE_SHORT: case FILE_BESHORT: case FILE_LESHORT: - return CAST(int32_t, (ms->offset + sizeof(short))); + o = CAST(int32_t, (ms->offset + sizeof(short))); + break; case FILE_LONG: case FILE_BELONG: case FILE_LELONG: case FILE_MELONG: - return CAST(int32_t, (ms->offset + sizeof(int32_t))); + o = CAST(int32_t, (ms->offset + sizeof(int32_t))); + break; case FILE_QUAD: case FILE_BEQUAD: case FILE_LEQUAD: - return CAST(int32_t, (ms->offset + sizeof(int64_t))); + o = CAST(int32_t, (ms->offset + sizeof(int64_t))); + break; case FILE_STRING: case FILE_PSTRING: case FILE_BESTRING16: case FILE_LESTRING16: - if (m->reln == '=' || m->reln == '!') - return ms->offset + m->vallen; - else { + if (m->reln == '=' || m->reln == '!') { + o = ms->offset + m->vallen; + } else { union VALUETYPE *p = &ms->ms_value; - uint32_t t; if (*m->value.s == '\0') p->s[strcspn(p->s, "\r\n")] = '\0'; - t = CAST(uint32_t, (ms->offset + strlen(p->s))); + o = CAST(uint32_t, (ms->offset + strlen(p->s))); if (m->type == FILE_PSTRING) - t += (uint32_t)file_pstring_length_size(m); - return t; + o += (uint32_t)file_pstring_length_size(m); } + break; case FILE_DATE: case FILE_BEDATE: case FILE_LEDATE: case FILE_MEDATE: - return CAST(int32_t, (ms->offset + sizeof(uint32_t))); + o = CAST(int32_t, (ms->offset + sizeof(uint32_t))); + break; case FILE_LDATE: case FILE_BELDATE: case FILE_LELDATE: case FILE_MELDATE: - return CAST(int32_t, (ms->offset + sizeof(uint32_t))); + o = CAST(int32_t, (ms->offset + sizeof(uint32_t))); + break; case FILE_QDATE: case FILE_BEQDATE: case FILE_LEQDATE: - return CAST(int32_t, (ms->offset + sizeof(uint64_t))); + o = CAST(int32_t, (ms->offset + sizeof(uint64_t))); + break; case FILE_QLDATE: case FILE_BEQLDATE: case FILE_LEQLDATE: - return CAST(int32_t, (ms->offset + sizeof(uint64_t))); + o = CAST(int32_t, (ms->offset + sizeof(uint64_t))); + break; case FILE_FLOAT: case FILE_BEFLOAT: case FILE_LEFLOAT: - return CAST(int32_t, (ms->offset + sizeof(float))); + o = CAST(int32_t, (ms->offset + sizeof(float))); + break; case FILE_DOUBLE: case FILE_BEDOUBLE: case FILE_LEDOUBLE: - return CAST(int32_t, (ms->offset + sizeof(double))); + o = CAST(int32_t, (ms->offset + sizeof(double))); + break; case FILE_REGEX: if ((m->str_flags & REGEX_OFFSET_START) != 0) - return CAST(int32_t, ms->search.offset); + o = CAST(int32_t, ms->search.offset); else - return CAST(int32_t, (ms->search.offset + - ms->search.rm_len)); + o = CAST(int32_t, + (ms->search.offset + ms->search.rm_len)); + break; case FILE_SEARCH: if ((m->str_flags & REGEX_OFFSET_START) != 0) - return CAST(int32_t, ms->search.offset); + o = CAST(int32_t, ms->search.offset); else - return CAST(int32_t, (ms->search.offset + m->vallen)); + o = CAST(int32_t, (ms->search.offset + m->vallen)); + break; case FILE_CLEAR: case FILE_DEFAULT: case FILE_INDIRECT: - return ms->offset; + o = ms->offset; + break; + + case FILE_DER: + { + o = der_offs(ms, m, nbytes); + if (o == -1) { + file_error(ms, 0, "EOF computing DER offset"); + return -1; + } + break; + } default: - return 0; + o = 0; + break; + } + + if ((size_t)o >= nbytes) { + file_error(ms, 0, "Offset out of range"); + return -1; } + *op = o; + return 0; +} + +private uint32_t +cvt_id3(struct magic_set *ms, uint32_t v) +{ + v = ((((v >> 0) & 0x7f) << 0) | + (((v >> 8) & 0x7f) << 7) | + (((v >> 16) & 0x7f) << 14) | + (((v >> 24) & 0x7f) << 21)); + if ((ms->flags & MAGIC_DEBUG) != 0) + fprintf(stderr, "id3 offs=%u\n", v); + return v; } private int @@ -858,37 +917,45 @@ cvt_flip(int type, int flip) p->fld *= cast m->num_mask; \ break; \ case FILE_OPDIVIDE: \ + if (cast m->num_mask == 0) \ + return -1; \ p->fld /= cast m->num_mask; \ break; \ case FILE_OPMODULO: \ + if (cast m->num_mask == 0) \ + return -1; \ p->fld %= cast m->num_mask; \ break; \ } \ if (m->mask_op & FILE_OPINVERSE) \ p->fld = ~p->fld \ -private void +private int cvt_8(union VALUETYPE *p, const struct magic *m) { DO_CVT(b, (uint8_t)); + return 0; } -private void +private int cvt_16(union VALUETYPE *p, const struct magic *m) { DO_CVT(h, (uint16_t)); + return 0; } -private void +private int cvt_32(union VALUETYPE *p, const struct magic *m) { DO_CVT(l, (uint32_t)); + return 0; } -private void +private int cvt_64(union VALUETYPE *p, const struct magic *m) { DO_CVT(q, (uint64_t)); + return 0; } #define DO_CVT2(fld, cast) \ @@ -904,20 +971,24 @@ cvt_64(union VALUETYPE *p, const struct magic *m) p->fld *= cast m->num_mask; \ break; \ case FILE_OPDIVIDE: \ + if (cast m->num_mask == 0) \ + return -1; \ p->fld /= cast m->num_mask; \ break; \ } \ -private void +private int cvt_float(union VALUETYPE *p, const struct magic *m) { DO_CVT2(f, (float)); + return 0; } -private void +private int cvt_double(union VALUETYPE *p, const struct magic *m) { DO_CVT2(d, (double)); + return 0; } /* @@ -933,21 +1004,25 @@ mconvert(struct magic_set *ms, struct magic *m, int flip) switch (type = cvt_flip(m->type, flip)) { case FILE_BYTE: - cvt_8(p, m); + if (cvt_8(p, m) == -1) + goto out; return 1; case FILE_SHORT: - cvt_16(p, m); + if (cvt_16(p, m) == -1) + goto out; return 1; case FILE_LONG: case FILE_DATE: case FILE_LDATE: - cvt_32(p, m); + if (cvt_32(p, m) == -1) + goto out; return 1; case FILE_QUAD: case FILE_QDATE: case FILE_QLDATE: case FILE_QWDATE: - cvt_64(p, m); + if (cvt_64(p, m) == -1) + goto out; return 1; case FILE_STRING: case FILE_BESTRING16: @@ -979,65 +1054,78 @@ mconvert(struct magic_set *ms, struct magic *m, int flip) } case FILE_BESHORT: p->h = (short)BE16(p); - cvt_16(p, m); + if (cvt_16(p, m) == -1) + goto out; return 1; case FILE_BELONG: case FILE_BEDATE: case FILE_BELDATE: p->l = (int32_t)BE32(p); - cvt_32(p, m); + if (cvt_32(p, m) == -1) + goto out; return 1; case FILE_BEQUAD: case FILE_BEQDATE: case FILE_BEQLDATE: case FILE_BEQWDATE: p->q = (uint64_t)BE64(p); - cvt_64(p, m); + if (cvt_64(p, m) == -1) + goto out; return 1; case FILE_LESHORT: p->h = (short)LE16(p); - cvt_16(p, m); + if (cvt_16(p, m) == -1) + goto out; return 1; case FILE_LELONG: case FILE_LEDATE: case FILE_LELDATE: p->l = (int32_t)LE32(p); - cvt_32(p, m); + if (cvt_32(p, m) == -1) + goto out; return 1; case FILE_LEQUAD: case FILE_LEQDATE: case FILE_LEQLDATE: case FILE_LEQWDATE: p->q = (uint64_t)LE64(p); - cvt_64(p, m); + if (cvt_64(p, m) == -1) + goto out; return 1; case FILE_MELONG: case FILE_MEDATE: case FILE_MELDATE: p->l = (int32_t)ME32(p); - cvt_32(p, m); + if (cvt_32(p, m) == -1) + goto out; return 1; case FILE_FLOAT: - cvt_float(p, m); + if (cvt_float(p, m) == -1) + goto out; return 1; case FILE_BEFLOAT: p->l = BE32(p); - cvt_float(p, m); + if (cvt_float(p, m) == -1) + goto out; return 1; case FILE_LEFLOAT: p->l = LE32(p); - cvt_float(p, m); + if (cvt_float(p, m) == -1) + goto out; return 1; case FILE_DOUBLE: - cvt_double(p, m); + if (cvt_double(p, m) == -1) + goto out; return 1; case FILE_BEDOUBLE: p->q = BE64(p); - cvt_double(p, m); + if (cvt_double(p, m) == -1) + goto out; return 1; case FILE_LEDOUBLE: p->q = LE64(p); - cvt_double(p, m); + if (cvt_double(p, m) == -1) + goto out; return 1; case FILE_REGEX: case FILE_SEARCH: @@ -1045,11 +1133,15 @@ mconvert(struct magic_set *ms, struct magic *m, int flip) case FILE_CLEAR: case FILE_NAME: case FILE_USE: + case FILE_DER: return 1; default: file_magerror(ms, "invalid type %d in mconvert()", m->type); return 0; } +out: + file_magerror(ms, "zerodivide in mconvert()"); + return 0; } @@ -1072,6 +1164,7 @@ mcopy(struct magic_set *ms, union VALUETYPE *p, int type, int indir, */ if (indir == 0) { switch (type) { + case FILE_DER: case FILE_SEARCH: ms->search.s = RCAST(const char *, s) + offset; ms->search.s_len = nbytes - offset; @@ -1186,7 +1279,7 @@ mcopy(struct magic_set *ms, union VALUETYPE *p, int type, int indir, private int mget(struct magic_set *ms, const unsigned char *s, struct magic *m, size_t nbytes, size_t o, unsigned int cont_level, int mode, int text, - int flip, uint16_t indir_level, uint16_t *name_count, + int flip, uint16_t *indir_count, uint16_t *name_count, int *printed_something, int *need_separator, int *returnval) { uint32_t offset = ms->offset; @@ -1197,9 +1290,9 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, union VALUETYPE *p = &ms->ms_value; struct mlist ml; - if (indir_level >= ms->indir_max) { - file_error(ms, 0, "indirect recursion nesting (%hu) exceeded", - indir_level); + if (*indir_count >= ms->indir_max) { + file_error(ms, 0, "indirect count (%hu) exceeded", + *indir_count); return -1; } @@ -1218,7 +1311,7 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, SIZE_T_FORMAT "u, " "nbytes=%" SIZE_T_FORMAT "u, il=%hu, nc=%hu)\n", m->type, m->flag, offset, o, nbytes, - indir_level, *name_count); + *indir_count, *name_count); mdebug(offset, (char *)(void *)p, sizeof(union VALUETYPE)); #ifndef COMPILE_ONLY file_mdump(m); @@ -1230,6 +1323,8 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, if (m->in_op & FILE_OPINDIRECT) { const union VALUETYPE *q = CAST(const union VALUETYPE *, ((const void *)(s + offset + off))); + if (OFFSET_OOB(nbytes, offset + off, sizeof(*q))) + return 0; switch (cvt_flip(m->in_type, flip)) { case FILE_BYTE: off = q->b; @@ -1410,6 +1505,8 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, if (OFFSET_OOB(nbytes, offset, 4)) return 0; lhs = BE32(p); + if (in_type == FILE_BEID3) + lhs = cvt_id3(ms, lhs); if (off) { switch (m->in_op & FILE_OPS_MASK) { case FILE_OPAND: @@ -1447,6 +1544,8 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, if (OFFSET_OOB(nbytes, offset, 4)) return 0; lhs = LE32(p); + if (in_type == FILE_LEID3) + lhs = cvt_id3(ms, lhs); if (off) { switch (m->in_op & FILE_OPS_MASK) { case FILE_OPAND: @@ -1554,20 +1653,6 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, break; } - switch (in_type) { - case FILE_LEID3: - case FILE_BEID3: - offset = ((((offset >> 0) & 0x7f) << 0) | - (((offset >> 8) & 0x7f) << 7) | - (((offset >> 16) & 0x7f) << 14) | - (((offset >> 24) & 0x7f) << 21)); - if ((ms->flags & MAGIC_DEBUG) != 0) - fprintf(stderr, "id3 offs=%u\n", offset); - break; - default: - break; - } - if (m->flag & INDIROFFADD) { offset += ms->c.li[cont_level-1].off; if (offset == 0) { @@ -1656,8 +1741,9 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, if ((pb = file_push_buffer(ms)) == NULL) return -1; + (*indir_count)++; rv = file_softmagic(ms, s + offset, nbytes - offset, - indir_level + 1, name_count, BINTEST, text); + indir_count, name_count, BINTEST, text); if ((ms->flags & MAGIC_DEBUG) != 0) fprintf(stderr, "indirect @offs=%u[%d]\n", offset, rv); @@ -1697,7 +1783,7 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, if (m->flag & NOSPACE) *need_separator = 0; rv = match(ms, ml.magic, ml.nmagic, s, nbytes, offset + o, - mode, text, flip, indir_level, name_count, + mode, text, flip, indir_count, name_count, printed_something, need_separator, returnval); if (rv != 1) *need_separator = oneed_separator; @@ -1709,6 +1795,7 @@ mget(struct magic_set *ms, const unsigned char *s, struct magic *m, if (file_printf(ms, "%s", m->desc) == -1) return -1; return 1; + case FILE_DER: case FILE_DEFAULT: /* nothing to check */ case FILE_CLEAR: default: @@ -1969,10 +2056,8 @@ magiccheck(struct magic_set *ms, struct magic *m) file_regerror(&rx, rc, ms); v = (uint64_t)-1; } else { - regmatch_t pmatch[1]; + regmatch_t pmatch; size_t slen = ms->search.s_len; -#ifndef REG_STARTEND -#define REG_STARTEND 0 char *copy; if (slen != 0) { copy = malloc(slen); @@ -1989,22 +2074,15 @@ magiccheck(struct magic_set *ms, struct magic *m) search = ms->search.s; copy = NULL; } -#else - search = ms->search.s; - pmatch[0].rm_so = 0; - pmatch[0].rm_eo = slen; -#endif rc = file_regexec(&rx, (const char *)search, - 1, pmatch, REG_STARTEND); -#if REG_STARTEND == 0 + 1, &pmatch, 0); free(copy); -#endif switch (rc) { case 0: - ms->search.s += (int)pmatch[0].rm_so; - ms->search.offset += (size_t)pmatch[0].rm_so; + ms->search.s += (int)pmatch.rm_so; + ms->search.offset += (size_t)pmatch.rm_so; ms->search.rm_len = - (size_t)(pmatch[0].rm_eo - pmatch[0].rm_so); + (size_t)(pmatch.rm_eo - pmatch.rm_so); v = 0; break; @@ -2027,6 +2105,11 @@ magiccheck(struct magic_set *ms, struct magic *m) case FILE_USE: case FILE_NAME: return 1; + case FILE_DER: + matched = der_cmp(ms, m); + if (matched == -1) + file_error(ms, 0, "EOF comparing DER entries"); + return matched; default: file_magerror(ms, "invalid type %d in magiccheck()", m->type); return -1; @@ -2126,12 +2209,12 @@ magiccheck(struct magic_set *ms, struct magic *m) private int handle_annotation(struct magic_set *ms, struct magic *m) { - if (ms->flags & MAGIC_APPLE) { + if ((ms->flags & MAGIC_APPLE) && m->apple[0]) { if (file_printf(ms, "%.8s", m->apple) == -1) return -1; return 1; } - if (ms->flags & MAGIC_EXTENSION) { + if ((ms->flags & MAGIC_EXTENSION) && m->ext[0]) { if (file_printf(ms, "%s", m->ext) == -1) return -1; return 1; diff --git a/etc/defaults/rc.conf b/etc/defaults/rc.conf index ddaf657..cafdd2e 100644 --- a/etc/defaults/rc.conf +++ b/etc/defaults/rc.conf @@ -700,6 +700,7 @@ rctl_rules="/etc/rctl.conf" # rctl(8) ruleset. See rctl.conf(5). jail_enable="NO" # Set to NO to disable starting of any jails jail_parallel_start="NO" # Start jails in the background jail_list="" # Space separated list of names of jails +jail_reverse_stop="NO" # Stop jails in reverse order ############################################################## ### Define source_rc_confs, the mechanism used by /etc/rc.* ## diff --git a/etc/rc.d/jail b/etc/rc.d/jail index b2fd452..f8fd4aa 100755 --- a/etc/rc.d/jail +++ b/etc/rc.d/jail @@ -517,7 +517,11 @@ jail_stop() command=$jail_program rc_flags=$jail_flags command_args="-f $jail_conf -r" - $jail_jls name | while read _j; do + if checkyesno jail_reverse_stop; then + $jail_jls name | tail -r + else + $jail_jls name + fi | while read _j; do echo -n " $_j" _tmp=`mktemp -t jail` || exit 3 $command $rc_flags $command_args $_j >> $_tmp 2>&1 @@ -532,6 +536,7 @@ jail_stop() return ;; esac + checkyesno jail_reverse_stop && set -- $(reverse_list $@) for _j in $@; do _j=$(echo $_j | tr /. _) _jv=$(echo -n $_j | tr -c '[:alnum:]' _) @@ -567,5 +572,6 @@ jail_warn() load_rc_config $name case $# in 1) run_rc_command $@ ${jail_list:-_ALL} ;; -*) run_rc_command $@ ;; +*) jail_reverse_stop="no" + run_rc_command $@ ;; esac diff --git a/lib/libmagic/Makefile b/lib/libmagic/Makefile index 14f1702..0ddecc8 100644 --- a/lib/libmagic/Makefile +++ b/lib/libmagic/Makefile @@ -12,7 +12,7 @@ LDADD= -lz MAN= libmagic.3 magic.5 SRCS= apprentice.c apptype.c ascmagic.c cdf.c cdf_time.c compress.c \ - encoding.c fsmagic.c funcs.c \ + der.c encoding.c fsmagic.c funcs.c \ is_tar.c magic.c print.c readcdf.c readelf.c softmagic.c INCS= magic.h diff --git a/lib/libmagic/config.h b/lib/libmagic/config.h index 752b82b..2650445 100644 --- a/lib/libmagic/config.h +++ b/lib/libmagic/config.h @@ -43,6 +43,9 @@ /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H 1 +/* Define to 1 if you have the `dprintf' function. */ +#define HAVE_DPRINTF 1 + /* Define to 1 if you have the <err.h> header file. */ #define HAVE_ERR_H 1 @@ -290,7 +293,7 @@ #define PACKAGE_NAME "file" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "file 5.25" +#define PACKAGE_STRING "file 5.26" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "file" @@ -299,7 +302,7 @@ #define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "5.25" +#define PACKAGE_VERSION "5.26" /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 @@ -330,7 +333,7 @@ /* Version number of package */ -#define VERSION "5.25" +#define VERSION "5.26" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ diff --git a/sbin/fsck_ffs/suj.c b/sbin/fsck_ffs/suj.c index 9d6a2ec..58949c9 100644 --- a/sbin/fsck_ffs/suj.c +++ b/sbin/fsck_ffs/suj.c @@ -217,7 +217,7 @@ static void closedisk(const char *devnam) { struct csum *cgsum; - int i; + uint32_t i; /* * Recompute the fs summary info from correct cs summaries. diff --git a/share/man/man4/wbwd.4 b/share/man/man4/wbwd.4 index 49290ff..095e045 100644 --- a/share/man/man4/wbwd.4 +++ b/share/man/man4/wbwd.4 @@ -25,12 +25,12 @@ .\" .\" $FreeBSD$ .\" -.Dd December 28, 2012 +.Dd March 24, 2016 .Dt WBWD 4 .Os .Sh NAME .Nm wbwd -.Nd device driver for watchdog timer found on Winbond Super I/O chips +.Nd device driver for Winbond/Nuvoton Super I/O chips watchdog timer .Sh SYNOPSIS To compile this driver into the kernel, place the following line in your kernel configuration file: @@ -50,18 +50,51 @@ The driver provides .Xr watchdog 4 support for the watchdog interrupt timer present on at least the following -Winbond Super I/O chips: -.Pp +Super I/O chips: .Bl -bullet -compact .It -83627HF/F/HG/G Rev. G +Winbond 83627HF/F/HG/G +.It +Winbond 83627S +.It +Winbond 83697HF +.It +Winbond 83697UG +.It +Winbond 83637HF +.It +Winbond 83627THF +.It +Winbond 83687THF +.It +Winbond 83627EHF +.It +Winbond 83627DHG .It -83627HF/F/HG/G Rev. J +Winbond 83627UHG .It -83627HF/F/HG/G Rev. UD-A +Winbond 83667HG .It -83627DHG IC ver. 5 +Winbond 83627DHG-P +.It +Winbond 83667HG-B +.It +Nuvoton NCT6775 +.It +Nuvoton NCT6776 +.It +Nuvoton NCT6102 +.It +Nuvoton NCT6779 +.It +Nuvoton NCT6791 +.It +Nuvoton NCT6792 .El +.Pp +Driver may be forced to attach to unknown chips by adding to +.Pa /boot/device.hints : +.Cd hint.wbwd.0.at="isa" .Sh SYSCTL VARIABLES The .Nm diff --git a/share/man/man5/rc.conf.5 b/share/man/man5/rc.conf.5 index f354c7c..62399c6 100644 --- a/share/man/man5/rc.conf.5 +++ b/share/man/man5/rc.conf.5 @@ -3938,20 +3938,22 @@ for every jail in .Va jail_list . .It Va jail_list .Pq Vt str -A space separated list of names for jails. -If this variable is empty, -all of +A space-delimited list of jail names. +When left empty, all of the .Xr jail 8 -instances in the configuration file will be configured. -This is purely a configuration aid to help identify and -configure multiple jails. -The names specified in this list will be used to -identify settings common to an instance of a jail, -and should contain alphanumeric characters only. -The literal jail name of -.Dq Li 0 -.Pq zero -is not allowed. +instances defined in the configuration file are started. +The names specified in this list control the jail startup order. +.Xr jail 8 +instances missing from +.Va jail_list +must be started manually. +.It Va jail_reverse_stop +.Pq Vt bool +When set to +.Dq Li YES , +all configured jails in +.Va jail_list +are stopped in reverse order. .It Va jail_* variables Note that older releases supported per-jail configuration via .Xr rc.conf 5 diff --git a/share/man/man9/osd.9 b/share/man/man9/osd.9 index ba9c632..8353b18 100644 --- a/share/man/man9/osd.9 +++ b/share/man/man9/osd.9 @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 5, 2011 +.Dd March 30, 2016 .Dt OSD 9 .Os .Sh NAME @@ -33,6 +33,9 @@ .Nm osd_register , .Nm osd_deregister , .Nm osd_set , +.Nm osd_reserve , +.Nm osd_set_reserved , +.Nm osd_free_reserved , .Nm osd_get , .Nm osd_del , .Nm osd_call , @@ -63,6 +66,22 @@ .Fa "void *value" .Fc .Ft void * +.Fo osd_reserve +.Fa "u_int slot" +.Fc +.Ft int +.Fo osd_set_reserved +.Fa "u_int type" +.Fa "struct osd *osd" +.Fa "u_int slot" +.Fa "void *rsv" +.Fa "void *value" +.Fc +.Ft void +.Fo osd_free_reserved +.Fa "void *rsv" +.Fc +.Ft void * .Fo osd_get .Fa "u_int type" .Fa "struct osd *osd" @@ -198,6 +217,15 @@ argument points to a data object to associate with .Fa osd . .Pp The +.Fn osd_set_reserved +function does the same as +.Fn osd_set , +but with an extra argument +.Fa rsv +that is internal-use memory previously allocated via +.Fn osd_reserve . +.Pp +The .Fn osd_get function returns the data pointer associated with a kernel data structure's .Vt struct osd @@ -324,6 +352,24 @@ will proceed without any .Xr realloc 9 calls. .Pp +It is possible for +.Fn osd_set +to fail to allocate this array. To ensure that such allocation succeeds, +.Fn osd_reserve +may be called (in a non-blocking context), and it will pre-allocate the +memory via +.Xr malloc 9 +with M_WAITOK. +Then this pre-allocated memory is passed to +.Fn osd_set_reserved , +which will use it if necessary or otherwise discard it. +The memory may also be explicitly discarded by calling +.Fn osd_free_reserved . +As this method always allocates memory whether or not it is ultimately needed, +it should be used only rarely, such as in the unlikely event that +.Fn osd_set +fails. +.Pp The .Nm API is geared towards slot identifiers storing pointers to the same underlying @@ -359,15 +405,27 @@ the kernel including most fast paths. returns the slot identifier for the newly registered data type. .Pp .Fn osd_set -returns zero on success or ENOMEM if the specified type/slot identifier pair +and +.Fn osd_set_reserved +return zero on success or ENOMEM if the specified type/slot identifier pair triggered an internal .Xr realloc 9 -which failed. +which failed +.Fn ( osd_set_reserved +will always succeed when +.Fa rsv +is non-NULL). .Pp .Fn osd_get returns the data pointer for the specified type/slot identifier pair, or NULL if the slot has not been initialised yet. .Pp +.Fn osd_reserve +returns a pointer suitable for passing to +.Fn osd_set_reserved +or +.Fn osd_free_reserved . +.Pp .Fn osd_call returns zero if no method is run or the method for each slot runs successfully. If a method for a slot returns non-zero, diff --git a/sys/amd64/conf/GENERIC.hints b/sys/amd64/conf/GENERIC.hints index 39beae1..31311d0 100644 --- a/sys/amd64/conf/GENERIC.hints +++ b/sys/amd64/conf/GENERIC.hints @@ -30,6 +30,5 @@ hint.atrtc.0.irq="8" hint.attimer.0.at="isa" hint.attimer.0.port="0x40" hint.attimer.0.irq="0" -hint.wbwd.0.at="isa" hint.acpi_throttle.0.disabled="1" hint.p4tcc.0.disabled="1" diff --git a/sys/dev/ahci/ahci_pci.c b/sys/dev/ahci/ahci_pci.c index 1f5ef7b..53e04df 100644 --- a/sys/dev/ahci/ahci_pci.c +++ b/sys/dev/ahci/ahci_pci.c @@ -395,6 +395,8 @@ ahci_pci_attach(device_t dev) pci_get_subvendor(dev) == 0x1043 && pci_get_subdevice(dev) == 0x81e4) ctlr->quirks |= AHCI_Q_SATA1_UNIT0; + resource_int_value(device_get_name(dev), device_get_unit(dev), + "quirks", &ctlr->quirks); ctlr->vendorid = pci_get_vendor(dev); ctlr->deviceid = pci_get_device(dev); ctlr->subvendorid = pci_get_subvendor(dev); diff --git a/sys/dev/isp/isp.c b/sys/dev/isp/isp.c index d5c393b..ceb54ed 100644 --- a/sys/dev/isp/isp.c +++ b/sys/dev/isp/isp.c @@ -126,6 +126,8 @@ static int isp_send_change_request(ispsoftc_t *, int); static int isp_register_fc4_type(ispsoftc_t *, int); static int isp_register_fc4_type_24xx(ispsoftc_t *, int); static int isp_register_fc4_features_24xx(ispsoftc_t *, int); +static int isp_register_port_name_24xx(ispsoftc_t *, int); +static int isp_register_node_name_24xx(ispsoftc_t *, int); static uint16_t isp_next_handle(ispsoftc_t *, uint16_t *); static int isp_fw_state(ispsoftc_t *, int); static void isp_mboxcmd_qnw(ispsoftc_t *, mbreg_t *, int); @@ -1820,22 +1822,24 @@ isp_fibre_init(ispsoftc_t *isp) * Prefer or force Point-To-Point instead Loop? */ switch (isp->isp_confopts & ISP_CFG_PORT_PREF) { - case ISP_CFG_NPORT: + case ISP_CFG_LPORT_ONLY: icbp->icb_xfwoptions &= ~ICBXOPT_TOPO_MASK; - icbp->icb_xfwoptions |= ICBXOPT_PTP_2_LOOP; + icbp->icb_xfwoptions |= ICBXOPT_LOOP_ONLY; break; case ISP_CFG_NPORT_ONLY: icbp->icb_xfwoptions &= ~ICBXOPT_TOPO_MASK; icbp->icb_xfwoptions |= ICBXOPT_PTP_ONLY; break; - case ISP_CFG_LPORT_ONLY: + case ISP_CFG_LPORT: icbp->icb_xfwoptions &= ~ICBXOPT_TOPO_MASK; - icbp->icb_xfwoptions |= ICBXOPT_LOOP_ONLY; + icbp->icb_xfwoptions |= ICBXOPT_LOOP_2_PTP; + break; + case ISP_CFG_NPORT: + icbp->icb_xfwoptions &= ~ICBXOPT_TOPO_MASK; + icbp->icb_xfwoptions |= ICBXOPT_PTP_2_LOOP; break; default: - /* - * Let NVRAM settings define it if they are sane - */ + /* Let NVRAM settings define it if they are sane */ switch (icbp->icb_xfwoptions & ICBXOPT_TOPO_MASK) { case ICBXOPT_PTP_2_LOOP: case ICBXOPT_PTP_ONLY: @@ -1970,10 +1974,12 @@ isp_fibre_init(ispsoftc_t *isp) } isp_prt(isp, ISP_LOGDEBUG0, "isp_fibre_init: fwopt 0x%x xfwopt 0x%x zfwopt 0x%x", icbp->icb_fwoptions, icbp->icb_xfwoptions, icbp->icb_zfwoptions); - if (isp->isp_dblev & ISP_LOGDEBUG1) - isp_print_bytes(isp, "isp_fibre_init", sizeof (*icbp), icbp); isp_put_icb(isp, icbp, (isp_icb_t *)fcp->isp_scratch); + if (isp->isp_dblev & ISP_LOGDEBUG1) { + isp_print_bytes(isp, "isp_fibre_init", + sizeof(*icbp), fcp->isp_scratch); + } /* * Init the firmware @@ -2105,19 +2111,32 @@ isp_fibre_init_2400(ispsoftc_t *isp) } switch (isp->isp_confopts & ISP_CFG_PORT_PREF) { - case ISP_CFG_NPORT_ONLY: - icbp->icb_fwoptions2 &= ~ICB2400_OPT2_TOPO_MASK; - icbp->icb_fwoptions2 |= ICB2400_OPT2_PTP_ONLY; - break; case ISP_CFG_LPORT_ONLY: icbp->icb_fwoptions2 &= ~ICB2400_OPT2_TOPO_MASK; icbp->icb_fwoptions2 |= ICB2400_OPT2_LOOP_ONLY; break; - default: + case ISP_CFG_NPORT_ONLY: + icbp->icb_fwoptions2 &= ~ICB2400_OPT2_TOPO_MASK; + icbp->icb_fwoptions2 |= ICB2400_OPT2_PTP_ONLY; + break; + case ISP_CFG_NPORT: /* ISP_CFG_PTP_2_LOOP not available in 24XX/25XX */ + case ISP_CFG_LPORT: icbp->icb_fwoptions2 &= ~ICB2400_OPT2_TOPO_MASK; icbp->icb_fwoptions2 |= ICB2400_OPT2_LOOP_2_PTP; break; + default: + /* Let NVRAM settings define it if they are sane */ + switch (icbp->icb_fwoptions2 & ICB2400_OPT2_TOPO_MASK) { + case ICB2400_OPT2_LOOP_ONLY: + case ICB2400_OPT2_PTP_ONLY: + case ICB2400_OPT2_LOOP_2_PTP: + break; + default: + icbp->icb_fwoptions2 &= ~ICB2400_OPT2_TOPO_MASK; + icbp->icb_fwoptions2 |= ICB2400_OPT2_LOOP_2_PTP; + } + break; } switch (icbp->icb_fwoptions2 & ICB2400_OPT2_TIMER_MASK) { @@ -2238,16 +2257,16 @@ isp_fibre_init_2400(ispsoftc_t *isp) DMA_WD1(isp->isp_rquest_dma), DMA_WD0(isp->isp_rquest_dma), DMA_WD3(isp->isp_result_dma), DMA_WD2(isp->isp_result_dma), DMA_WD1(isp->isp_result_dma), DMA_WD0(isp->isp_result_dma)); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "isp_fibre_init_2400", sizeof (*icbp), icbp); - } - if (FC_SCRATCH_ACQUIRE(isp, 0)) { isp_prt(isp, ISP_LOGERR, sacq); return; } ISP_MEMZERO(fcp->isp_scratch, ISP_FC_SCRLEN); isp_put_icb_2400(isp, icbp, fcp->isp_scratch); + if (isp->isp_dblev & ISP_LOGDEBUG1) { + isp_print_bytes(isp, "isp_fibre_init_2400", + sizeof (*icbp), fcp->isp_scratch); + } /* * Now fill in information about any additional channels @@ -2393,6 +2412,8 @@ isp_fc_enable_vp(ispsoftc_t *isp, int chan) return (EIO); } isp_put_vp_modify(isp, &vp, (vp_modify_t *)reqp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "IOCB VP_MODIFY", QENTRY_LEN, reqp); ISP_SYNC_REQUEST(isp); if (msleep(resp, &isp->isp_lock, 0, "VP_MODIFY", 5*hz) == EWOULDBLOCK) { isp_prt(isp, ISP_LOGERR, @@ -2400,6 +2421,8 @@ isp_fc_enable_vp(ispsoftc_t *isp, int chan) isp_destroy_handle(isp, vp.vp_mod_hdl); return (EIO); } + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "IOCB VP_MODIFY response", QENTRY_LEN, resp); isp_get_vp_modify(isp, (vp_modify_t *)resp, &vp); if (vp.vp_mod_hdr.rqs_flags != 0 || vp.vp_mod_status != VP_STS_OK) { @@ -2450,6 +2473,8 @@ isp_fc_disable_vp(ispsoftc_t *isp, int chan) return (EIO); } isp_put_vp_ctrl_info(isp, &vp, (vp_ctrl_info_t *)reqp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "IOCB VP_CTRL", QENTRY_LEN, reqp); ISP_SYNC_REQUEST(isp); if (msleep(resp, &isp->isp_lock, 0, "VP_CTRL", 5*hz) == EWOULDBLOCK) { isp_prt(isp, ISP_LOGERR, @@ -2457,6 +2482,8 @@ isp_fc_disable_vp(ispsoftc_t *isp, int chan) isp_destroy_handle(isp, vp.vp_ctrl_handle); return (EIO); } + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "IOCB VP_CTRL response", QENTRY_LEN, resp); isp_get_vp_ctrl_info(isp, (vp_ctrl_info_t *)resp, &vp); if (vp.vp_ctrl_hdr.rqs_flags != 0 || vp.vp_ctrl_status != 0) { @@ -2600,9 +2627,10 @@ isp_plogx(ispsoftc_t *isp, int chan, uint16_t handle, uint32_t portid, int flags isp_destroy_handle(isp, pl.plogx_handle); return (-1); } - if (isp->isp_dblev & ISP_LOGDEBUG1) - isp_print_bytes(isp, "IOCB LOGX", QENTRY_LEN, &pl); isp_put_plogx(isp, &pl, (isp_plogx_t *)reqp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "IOCB LOGX", QENTRY_LEN, reqp); + FCPARAM(isp, chan)->isp_login_hdl = handle; ISP_SYNC_REQUEST(isp); if (msleep(resp, &isp->isp_lock, 0, "PLOGX", 3 * ICB_LOGIN_TOV * hz) == EWOULDBLOCK) { @@ -2611,9 +2639,10 @@ isp_plogx(ispsoftc_t *isp, int chan, uint16_t handle, uint32_t portid, int flags isp_destroy_handle(isp, pl.plogx_handle); return (-1); } - isp_get_plogx(isp, (isp_plogx_t *)resp, &pl); + FCPARAM(isp, chan)->isp_login_hdl = NIL_HANDLE; if (isp->isp_dblev & ISP_LOGDEBUG1) - isp_print_bytes(isp, "IOCB LOGX response", QENTRY_LEN, &pl); + isp_print_bytes(isp, "IOCB LOGX response", QENTRY_LEN, resp); + isp_get_plogx(isp, (isp_plogx_t *)resp, &pl); if (pl.plogx_status == PLOGX_STATUS_OK) { return (0); @@ -2764,7 +2793,6 @@ isp_port_logout(ispsoftc_t *isp, uint16_t handle, uint32_t portid) static int isp_getpdb(ispsoftc_t *isp, int chan, uint16_t id, isp_pdb_t *pdb) { - fcparam *fcp = FCPARAM(isp, chan); mbreg_t mbs; union { isp_pdb_21xx_t fred; @@ -2782,22 +2810,19 @@ isp_getpdb(ispsoftc_t *isp, int chan, uint16_t id, isp_pdb_t *pdb) } else { mbs.param[1] = id << 8; } - mbs.param[2] = DMA_WD1(fcp->isp_scdma); - mbs.param[3] = DMA_WD0(fcp->isp_scdma); - mbs.param[6] = DMA_WD3(fcp->isp_scdma); - mbs.param[7] = DMA_WD2(fcp->isp_scdma); - if (FC_SCRATCH_ACQUIRE(isp, chan)) { - isp_prt(isp, ISP_LOGERR, sacq); - return (-1); - } - MEMORYBARRIER(isp, SYNC_SFORDEV, 0, sizeof (un), chan); + mbs.param[2] = DMA_WD1(isp->isp_iocb_dma); + mbs.param[3] = DMA_WD0(isp->isp_iocb_dma); + mbs.param[6] = DMA_WD3(isp->isp_iocb_dma); + mbs.param[7] = DMA_WD2(isp->isp_iocb_dma); + MEMORYBARRIER(isp, SYNC_IFORDEV, 0, sizeof(un), chan); + isp_mboxcmd(isp, &mbs); - if (mbs.param[0] != MBOX_COMMAND_COMPLETE) { - FC_SCRATCH_RELEASE(isp, chan); + if (mbs.param[0] != MBOX_COMMAND_COMPLETE) return (mbs.param[0] | (mbs.param[1] << 16)); - } + + MEMORYBARRIER(isp, SYNC_IFORCPU, 0, sizeof(un), chan); if (IS_24XX(isp)) { - isp_get_pdb_24xx(isp, fcp->isp_scratch, &un.bill); + isp_get_pdb_24xx(isp, isp->isp_iocb, &un.bill); pdb->handle = un.bill.pdb_handle; pdb->prli_word3 = un.bill.pdb_prli_svc3; pdb->portid = BITS2WORD_24XX(un.bill.pdb_portid_bits); @@ -2809,11 +2834,10 @@ isp_getpdb(ispsoftc_t *isp, int chan, uint16_t id, isp_pdb_t *pdb) un.bill.pdb_curstate); if (un.bill.pdb_curstate < PDB2400_STATE_PLOGI_DONE || un.bill.pdb_curstate > PDB2400_STATE_LOGGED_IN) { mbs.param[0] = MBOX_NOT_LOGGED_IN; - FC_SCRATCH_RELEASE(isp, chan); return (mbs.param[0]); } } else { - isp_get_pdb_21xx(isp, fcp->isp_scratch, &un.fred); + isp_get_pdb_21xx(isp, isp->isp_iocb, &un.fred); pdb->handle = un.fred.pdb_loopid; pdb->prli_word3 = un.fred.pdb_prli_svc3; pdb->portid = BITS2WORD(un.fred.pdb_portid_bits); @@ -2822,7 +2846,6 @@ isp_getpdb(ispsoftc_t *isp, int chan, uint16_t id, isp_pdb_t *pdb) isp_prt(isp, ISP_LOGDEBUG1, "Chan %d handle 0x%x Port 0x%06x", chan, id, pdb->portid); } - FC_SCRATCH_RELEASE(isp, chan); return (0); } @@ -2863,6 +2886,7 @@ isp_gethandles(ispsoftc_t *isp, int chan, uint16_t *handles, int *num, int loop) FC_SCRATCH_RELEASE(isp, chan); return (mbs.param[0] | (mbs.param[1] << 16)); } + MEMORYBARRIER(isp, SYNC_SFORCPU, 0, ISP_FC_SCRLEN, chan); elp1 = fcp->isp_scratch; elp3 = fcp->isp_scratch; elp4 = fcp->isp_scratch; @@ -2987,7 +3011,6 @@ isp_fclink_test(ispsoftc_t *isp, int chan, int usdelay) return (0); isp_prt(isp, ISP_LOG_SANCFG, "Chan %d FC link test", chan); - fcp->isp_loopstate = LOOP_TESTING_LINK; /* * Wait up to N microseconds for F/W to go to a ready state. @@ -2998,7 +3021,7 @@ isp_fclink_test(ispsoftc_t *isp, int chan, int usdelay) if (fcp->isp_fwstate == FW_READY) { break; } - if (fcp->isp_loopstate < LOOP_TESTING_LINK) + if (fcp->isp_loopstate < LOOP_HAVE_LINK) goto abort; GET_NANOTIME(&hrb); if ((NANOTIME_SUB(&hrb, &hra) / 1000 + 1000 >= usdelay)) @@ -3053,6 +3076,11 @@ isp_fclink_test(ispsoftc_t *isp, int chan, int usdelay) fcp->isp_loopid = i; } +#if 0 + fcp->isp_loopstate = LOOP_HAVE_ADDR; +#endif + fcp->isp_loopstate = LOOP_TESTING_LINK; + if (fcp->isp_topo == TOPO_F_PORT || fcp->isp_topo == TOPO_FL_PORT) { nphdl = IS_24XX(isp) ? NPH_FL_ID : FL_ID; r = isp_getpdb(isp, chan, nphdl, &pdb); @@ -3071,18 +3099,31 @@ isp_fclink_test(ispsoftc_t *isp, int chan, int usdelay) fcp->isp_fabric_params = mbs.param[7]; fcp->isp_sns_hdl = NPH_SNS_ID; r = isp_register_fc4_type_24xx(isp, chan); - if (r == 0) - isp_register_fc4_features_24xx(isp, chan); + if (fcp->isp_loopstate < LOOP_TESTING_LINK) + goto abort; + if (r != 0) + goto not_on_fabric; + r = isp_register_fc4_features_24xx(isp, chan); + if (fcp->isp_loopstate < LOOP_TESTING_LINK) + goto abort; + if (r != 0) + goto not_on_fabric; + r = isp_register_port_name_24xx(isp, chan); + if (fcp->isp_loopstate < LOOP_TESTING_LINK) + goto abort; + if (r != 0) + goto not_on_fabric; + isp_register_node_name_24xx(isp, chan); + if (fcp->isp_loopstate < LOOP_TESTING_LINK) + goto abort; } else { fcp->isp_sns_hdl = SNS_ID; r = isp_register_fc4_type(isp, chan); - if (r == 0 && fcp->role == ISP_ROLE_TARGET) + if (r != 0) + goto not_on_fabric; + if (fcp->role == ISP_ROLE_TARGET) isp_send_change_request(isp, chan); } - if (r) { - isp_prt(isp, ISP_LOGWARN|ISP_LOG_SANCFG, "%s: register fc4 type failed", __func__); - return (-1); - } } not_on_fabric: @@ -3424,19 +3465,14 @@ abort: * * Use the GID_FT command to get all Port IDs for FC4 SCSI devices it knows. * - * For 2100-23XX cards, we can use the SNS mailbox command to pass simple - * name server commands to the switch management server via the QLogic f/w. + * For 2100-23XX cards, we use the SNS mailbox command to pass simple name + * server commands to the switch management server via the QLogic f/w. * - * For the 24XX card, we have to use CT-Pass through run via the Execute IOCB - * mailbox command. + * For the 24XX and above card, we use CT Pass-through IOCB. */ -#define GIDLEN (ISP_FC_SCRLEN - (3 * QENTRY_LEN)) +#define GIDLEN ISP_FC_SCRLEN #define NGENT ((GIDLEN - 16) >> 2) -#define XTXOFF (ISP_FC_SCRLEN - (3 * QENTRY_LEN)) /* CT request */ -#define CTXOFF (ISP_FC_SCRLEN - (2 * QENTRY_LEN)) /* Request IOCB */ -#define ZTXOFF (ISP_FC_SCRLEN - (1 * QENTRY_LEN)) /* Response IOCB */ - static int isp_gid_ft_sns(ispsoftc_t *isp, int chan) { @@ -3466,16 +3502,16 @@ isp_gid_ft_sns(ispsoftc_t *isp, int chan) rq->snscb_mword_div_2 = NGENT; rq->snscb_fc4_type = FC4_SCSI; - isp_put_gid_ft_request(isp, rq, (sns_gid_ft_req_t *)&scp[CTXOFF]); - MEMORYBARRIER(isp, SYNC_SFORDEV, CTXOFF, SNS_GID_FT_REQ_SIZE, chan); + isp_put_gid_ft_request(isp, rq, (sns_gid_ft_req_t *)scp); + MEMORYBARRIER(isp, SYNC_SFORDEV, 0, SNS_GID_FT_REQ_SIZE, chan); MBSINIT(&mbs, MBOX_SEND_SNS, MBLOGALL, 10000000); mbs.param[0] = MBOX_SEND_SNS; mbs.param[1] = SNS_GID_FT_REQ_SIZE >> 1; - mbs.param[2] = DMA_WD1(fcp->isp_scdma + CTXOFF); - mbs.param[3] = DMA_WD0(fcp->isp_scdma + CTXOFF); - mbs.param[6] = DMA_WD3(fcp->isp_scdma + CTXOFF); - mbs.param[7] = DMA_WD2(fcp->isp_scdma + CTXOFF); + mbs.param[2] = DMA_WD1(fcp->isp_scdma); + mbs.param[3] = DMA_WD0(fcp->isp_scdma); + mbs.param[6] = DMA_WD3(fcp->isp_scdma); + mbs.param[7] = DMA_WD2(fcp->isp_scdma); isp_mboxcmd(isp, &mbs); if (mbs.param[0] != MBOX_COMMAND_COMPLETE) { if (mbs.param[0] == MBOX_INVALID_COMMAND) { @@ -3494,17 +3530,79 @@ isp_gid_ft_sns(ispsoftc_t *isp, int chan) } static int +isp_ct_passthru(ispsoftc_t *isp, int chan, uint32_t cmd_bcnt, uint32_t rsp_bcnt) +{ + fcparam *fcp = FCPARAM(isp, chan); + isp_ct_pt_t pt; + void *reqp; + uint8_t resp[QENTRY_LEN]; + + /* + * Build a Passthrough IOCB in memory. + */ + ISP_MEMZERO(&pt, sizeof(pt)); + pt.ctp_header.rqs_entry_count = 1; + pt.ctp_header.rqs_entry_type = RQSTYPE_CT_PASSTHRU; + pt.ctp_nphdl = fcp->isp_sns_hdl; + pt.ctp_cmd_cnt = 1; + pt.ctp_vpidx = ISP_GET_VPIDX(isp, chan); + pt.ctp_time = 10; + pt.ctp_rsp_cnt = 1; + pt.ctp_rsp_bcnt = rsp_bcnt; + pt.ctp_cmd_bcnt = cmd_bcnt; + pt.ctp_dataseg[0].ds_base = DMA_LO32(fcp->isp_scdma); + pt.ctp_dataseg[0].ds_basehi = DMA_HI32(fcp->isp_scdma); + pt.ctp_dataseg[0].ds_count = cmd_bcnt; + pt.ctp_dataseg[1].ds_base = DMA_LO32(fcp->isp_scdma); + pt.ctp_dataseg[1].ds_basehi = DMA_HI32(fcp->isp_scdma); + pt.ctp_dataseg[1].ds_count = rsp_bcnt; + + /* Prepare space for response in memory */ + memset(resp, 0xff, sizeof(resp)); + pt.ctp_handle = isp_allocate_handle(isp, resp, ISP_HANDLE_CTRL); + if (pt.ctp_handle == 0) { + isp_prt(isp, ISP_LOGERR, + "%s: CTP of Chan %d out of handles", __func__, chan); + return (-1); + } + + /* Send request and wait for response. */ + reqp = isp_getrqentry(isp); + if (reqp == NULL) { + isp_prt(isp, ISP_LOGERR, + "%s: CTP of Chan %d out of rqent", __func__, chan); + isp_destroy_handle(isp, pt.ctp_handle); + return (-1); + } + isp_put_ct_pt(isp, &pt, (isp_ct_pt_t *)reqp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "CT IOCB request", QENTRY_LEN, reqp); + ISP_SYNC_REQUEST(isp); + if (msleep(resp, &isp->isp_lock, 0, "CTP", pt.ctp_time*hz) == EWOULDBLOCK) { + isp_prt(isp, ISP_LOGERR, + "%s: CTP of Chan %d timed out", __func__, chan); + isp_destroy_handle(isp, pt.ctp_handle); + return (-1); + } + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "CT IOCB response", QENTRY_LEN, resp); + + isp_get_ct_pt(isp, (isp_ct_pt_t *)resp, &pt); + if (pt.ctp_status && pt.ctp_status != RQCS_DATA_UNDERRUN) { + isp_prt(isp, ISP_LOGWARN, + "Chan %d GID_FT CT Passthrough returned 0x%x", + chan, pt.ctp_status); + return (-1); + } + + return (0); +} + +static int isp_gid_ft_ct_passthru(ispsoftc_t *isp, int chan) { - mbreg_t mbs; fcparam *fcp = FCPARAM(isp, chan); - union { - isp_ct_pt_t plocal; - ct_hdr_t clocal; - uint8_t q[QENTRY_LEN]; - } un; - isp_ct_pt_t *pt; - ct_hdr_t *ct; + ct_hdr_t ct; uint32_t *rp; uint8_t *scp = fcp->isp_scratch; @@ -3515,77 +3613,27 @@ isp_gid_ft_ct_passthru(ispsoftc_t *isp, int chan) } /* - * Build a Passthrough IOCB in memory. - */ - pt = &un.plocal; - ISP_MEMZERO(un.q, QENTRY_LEN); - pt->ctp_header.rqs_entry_count = 1; - pt->ctp_header.rqs_entry_type = RQSTYPE_CT_PASSTHRU; - pt->ctp_handle = 0xffffffff; - pt->ctp_nphdl = fcp->isp_sns_hdl; - pt->ctp_cmd_cnt = 1; - pt->ctp_vpidx = ISP_GET_VPIDX(isp, chan); - pt->ctp_time = 10; - pt->ctp_rsp_cnt = 1; - pt->ctp_rsp_bcnt = GIDLEN; - pt->ctp_cmd_bcnt = sizeof (*ct) + sizeof (uint32_t); - pt->ctp_dataseg[0].ds_base = DMA_LO32(fcp->isp_scdma+XTXOFF); - pt->ctp_dataseg[0].ds_basehi = DMA_HI32(fcp->isp_scdma+XTXOFF); - pt->ctp_dataseg[0].ds_count = sizeof (*ct) + sizeof (uint32_t); - pt->ctp_dataseg[1].ds_base = DMA_LO32(fcp->isp_scdma); - pt->ctp_dataseg[1].ds_basehi = DMA_HI32(fcp->isp_scdma); - pt->ctp_dataseg[1].ds_count = GIDLEN; - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "ct IOCB", QENTRY_LEN, pt); - } - isp_put_ct_pt(isp, pt, (isp_ct_pt_t *) &scp[CTXOFF]); - - /* * Build the CT header and command in memory. - * - * Note that the CT header has to end up as Big Endian format in memory. */ - ct = &un.clocal; - ISP_MEMZERO(ct, sizeof (*ct)); - ct->ct_revision = CT_REVISION; - ct->ct_fcs_type = CT_FC_TYPE_FC; - ct->ct_fcs_subtype = CT_FC_SUBTYPE_NS; - ct->ct_cmd_resp = SNS_GID_FT; - ct->ct_bcnt_resid = (GIDLEN - 16) >> 2; - - isp_put_ct_hdr(isp, ct, (ct_hdr_t *) &scp[XTXOFF]); - rp = (uint32_t *) &scp[XTXOFF+sizeof (*ct)]; + ISP_MEMZERO(&ct, sizeof (ct)); + ct.ct_revision = CT_REVISION; + ct.ct_fcs_type = CT_FC_TYPE_FC; + ct.ct_fcs_subtype = CT_FC_SUBTYPE_NS; + ct.ct_cmd_resp = SNS_GID_FT; + ct.ct_bcnt_resid = (GIDLEN - 16) >> 2; + isp_put_ct_hdr(isp, &ct, (ct_hdr_t *)scp); + rp = (uint32_t *) &scp[sizeof(ct)]; ISP_IOZPUT_32(isp, FC4_SCSI, rp); if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "CT HDR + payload after put", - sizeof (*ct) + sizeof (uint32_t), &scp[XTXOFF]); - } - ISP_MEMZERO(&scp[ZTXOFF], QENTRY_LEN); - MBSINIT(&mbs, MBOX_EXEC_COMMAND_IOCB_A64, MBLOGALL, - MBCMD_DEFAULT_TIMEOUT + pt->ctp_time * 1000000); - mbs.param[1] = QENTRY_LEN; - mbs.param[2] = DMA_WD1(fcp->isp_scdma + CTXOFF); - mbs.param[3] = DMA_WD0(fcp->isp_scdma + CTXOFF); - mbs.param[6] = DMA_WD3(fcp->isp_scdma + CTXOFF); - mbs.param[7] = DMA_WD2(fcp->isp_scdma + CTXOFF); - MEMORYBARRIER(isp, SYNC_SFORDEV, XTXOFF, 2 * QENTRY_LEN, chan); - isp_mboxcmd(isp, &mbs); - if (mbs.param[0] != MBOX_COMMAND_COMPLETE) { - return (-1); - } - MEMORYBARRIER(isp, SYNC_SFORCPU, 0, ISP_FC_SCRLEN, chan); - pt = &un.plocal; - isp_get_ct_pt(isp, (isp_ct_pt_t *) &scp[ZTXOFF], pt); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "IOCB response", QENTRY_LEN, pt); + isp_print_bytes(isp, "CT request", + sizeof(ct) + sizeof(uint32_t), scp); } - if (pt->ctp_status && pt->ctp_status != RQCS_DATA_UNDERRUN) { - isp_prt(isp, ISP_LOGWARN, - "Chan %d GID_FT CT Passthrough returned 0x%x", - chan, pt->ctp_status); + if (isp_ct_passthru(isp, chan, sizeof(ct) + sizeof(uint32_t), GIDLEN)) { + FC_SCRATCH_RELEASE(isp, chan); return (-1); } + if (isp->isp_dblev & ISP_LOGDEBUG1) isp_print_bytes(isp, "CT response", GIDLEN, scp); isp_get_gid_ft_response(isp, (sns_gid_ft_rsp_t *)scp, @@ -3911,7 +3959,13 @@ isp_send_change_request(ispsoftc_t *isp, int chan) mbs.param[1] = 0x03; mbs.param[9] = chan; isp_mboxcmd(isp, &mbs); - return (mbs.param[0] == MBOX_COMMAND_COMPLETE ? 0 : -1); + if (mbs.param[0] == MBOX_COMMAND_COMPLETE) { + return (0); + } else { + isp_prt(isp, ISP_LOGWARN, "Chan %d Send Change Request: 0x%x", + chan, mbs.param[0]); + return (-1); + } } static int @@ -3950,6 +4004,8 @@ isp_register_fc4_type(ispsoftc_t *isp, int chan) if (mbs.param[0] == MBOX_COMMAND_COMPLETE) { return (0); } else { + isp_prt(isp, ISP_LOGWARN, "Chan %d Register FC4 Type: 0x%x", + chan, mbs.param[0]); return (-1); } } @@ -3957,16 +4013,9 @@ isp_register_fc4_type(ispsoftc_t *isp, int chan) static int isp_register_fc4_type_24xx(ispsoftc_t *isp, int chan) { - mbreg_t mbs; fcparam *fcp = FCPARAM(isp, chan); - union { - isp_ct_pt_t plocal; - rft_id_t clocal; - uint8_t q[QENTRY_LEN]; - } un; - isp_ct_pt_t *pt; ct_hdr_t *ct; - rft_id_t *rp; + rft_id_t rp; uint8_t *scp = fcp->isp_scratch; if (FC_SCRATCH_ACQUIRE(isp, chan)) { @@ -3975,110 +4024,48 @@ isp_register_fc4_type_24xx(ispsoftc_t *isp, int chan) } /* - * Build a Passthrough IOCB in memory. - */ - ISP_MEMZERO(un.q, QENTRY_LEN); - pt = &un.plocal; - pt->ctp_header.rqs_entry_count = 1; - pt->ctp_header.rqs_entry_type = RQSTYPE_CT_PASSTHRU; - pt->ctp_handle = 0xffffffff; - pt->ctp_nphdl = fcp->isp_sns_hdl; - pt->ctp_cmd_cnt = 1; - pt->ctp_vpidx = ISP_GET_VPIDX(isp, chan); - pt->ctp_time = 4; - pt->ctp_rsp_cnt = 1; - pt->ctp_rsp_bcnt = sizeof (ct_hdr_t); - pt->ctp_cmd_bcnt = sizeof (rft_id_t); - pt->ctp_dataseg[0].ds_base = DMA_LO32(fcp->isp_scdma+XTXOFF); - pt->ctp_dataseg[0].ds_basehi = DMA_HI32(fcp->isp_scdma+XTXOFF); - pt->ctp_dataseg[0].ds_count = sizeof (rft_id_t); - pt->ctp_dataseg[1].ds_base = DMA_LO32(fcp->isp_scdma); - pt->ctp_dataseg[1].ds_basehi = DMA_HI32(fcp->isp_scdma); - pt->ctp_dataseg[1].ds_count = sizeof (ct_hdr_t); - isp_put_ct_pt(isp, pt, (isp_ct_pt_t *) &scp[CTXOFF]); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "IOCB CT Request", QENTRY_LEN, pt); - } - - /* * Build the CT header and command in memory. - * - * Note that the CT header has to end up as Big Endian format in memory. */ - ISP_MEMZERO(&un.clocal, sizeof (un.clocal)); - ct = &un.clocal.rftid_hdr; + ISP_MEMZERO(&rp, sizeof(rp)); + ct = &rp.rftid_hdr; ct->ct_revision = CT_REVISION; ct->ct_fcs_type = CT_FC_TYPE_FC; ct->ct_fcs_subtype = CT_FC_SUBTYPE_NS; ct->ct_cmd_resp = SNS_RFT_ID; ct->ct_bcnt_resid = (sizeof (rft_id_t) - sizeof (ct_hdr_t)) >> 2; - rp = &un.clocal; - rp->rftid_portid[0] = fcp->isp_portid >> 16; - rp->rftid_portid[1] = fcp->isp_portid >> 8; - rp->rftid_portid[2] = fcp->isp_portid; - rp->rftid_fc4types[FC4_SCSI >> 5] = 1 << (FC4_SCSI & 0x1f); - isp_put_rft_id(isp, rp, (rft_id_t *) &scp[XTXOFF]); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "CT Header", QENTRY_LEN, &scp[XTXOFF]); - } - - ISP_MEMZERO(&scp[ZTXOFF], sizeof (ct_hdr_t)); + rp.rftid_portid[0] = fcp->isp_portid >> 16; + rp.rftid_portid[1] = fcp->isp_portid >> 8; + rp.rftid_portid[2] = fcp->isp_portid; + rp.rftid_fc4types[FC4_SCSI >> 5] = 1 << (FC4_SCSI & 0x1f); + isp_put_rft_id(isp, &rp, (rft_id_t *)scp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "CT request", sizeof(rft_id_t), scp); - MBSINIT(&mbs, MBOX_EXEC_COMMAND_IOCB_A64, MBLOGALL, - MBCMD_DEFAULT_TIMEOUT + pt->ctp_time * 1000000); - mbs.param[1] = QENTRY_LEN; - mbs.param[2] = DMA_WD1(fcp->isp_scdma + CTXOFF); - mbs.param[3] = DMA_WD0(fcp->isp_scdma + CTXOFF); - mbs.param[6] = DMA_WD3(fcp->isp_scdma + CTXOFF); - mbs.param[7] = DMA_WD2(fcp->isp_scdma + CTXOFF); - MEMORYBARRIER(isp, SYNC_SFORDEV, XTXOFF, 2 * QENTRY_LEN, chan); - isp_mboxcmd(isp, &mbs); - if (mbs.param[0] != MBOX_COMMAND_COMPLETE) { + if (isp_ct_passthru(isp, chan, sizeof(rft_id_t), sizeof(ct_hdr_t))) { FC_SCRATCH_RELEASE(isp, chan); return (-1); } - MEMORYBARRIER(isp, SYNC_SFORCPU, ZTXOFF, QENTRY_LEN, chan); - pt = &un.plocal; - isp_get_ct_pt(isp, (isp_ct_pt_t *) &scp[ZTXOFF], pt); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "IOCB response", QENTRY_LEN, pt); - } - if (pt->ctp_status) { - FC_SCRATCH_RELEASE(isp, chan); - isp_prt(isp, ISP_LOGWARN, - "Chan %d Register FC4 Type CT Passthrough returned 0x%x", - chan, pt->ctp_status); - return (1); - } isp_get_ct_hdr(isp, (ct_hdr_t *) scp, ct); FC_SCRATCH_RELEASE(isp, chan); - if (ct->ct_cmd_resp == LS_RJT) { isp_prt(isp, ISP_LOG_SANCFG|ISP_LOG_WARN1, "Chan %d Register FC4 Type rejected", chan); return (-1); } else if (ct->ct_cmd_resp == LS_ACC) { isp_prt(isp, ISP_LOG_SANCFG, "Chan %d Register FC4 Type accepted", chan); - return (0); } else { isp_prt(isp, ISP_LOGWARN, "Chan %d Register FC4 Type: 0x%x", chan, ct->ct_cmd_resp); return (-1); } + return (0); } static int isp_register_fc4_features_24xx(ispsoftc_t *isp, int chan) { - mbreg_t mbs; fcparam *fcp = FCPARAM(isp, chan); - union { - isp_ct_pt_t plocal; - rff_id_t clocal; - uint8_t q[QENTRY_LEN]; - } un; - isp_ct_pt_t *pt; ct_hdr_t *ct; - rff_id_t *rp; + rff_id_t rp; uint8_t *scp = fcp->isp_scratch; if (FC_SCRATCH_ACQUIRE(isp, chan)) { @@ -4087,103 +4074,172 @@ isp_register_fc4_features_24xx(ispsoftc_t *isp, int chan) } /* - * Build a Passthrough IOCB in memory. - */ - ISP_MEMZERO(un.q, QENTRY_LEN); - pt = &un.plocal; - pt->ctp_header.rqs_entry_count = 1; - pt->ctp_header.rqs_entry_type = RQSTYPE_CT_PASSTHRU; - pt->ctp_handle = 0xffffffff; - pt->ctp_nphdl = fcp->isp_sns_hdl; - pt->ctp_cmd_cnt = 1; - pt->ctp_vpidx = ISP_GET_VPIDX(isp, chan); - pt->ctp_time = 4; - pt->ctp_rsp_cnt = 1; - pt->ctp_rsp_bcnt = sizeof (ct_hdr_t); - pt->ctp_cmd_bcnt = sizeof (rff_id_t); - pt->ctp_dataseg[0].ds_base = DMA_LO32(fcp->isp_scdma+XTXOFF); - pt->ctp_dataseg[0].ds_basehi = DMA_HI32(fcp->isp_scdma+XTXOFF); - pt->ctp_dataseg[0].ds_count = sizeof (rff_id_t); - pt->ctp_dataseg[1].ds_base = DMA_LO32(fcp->isp_scdma); - pt->ctp_dataseg[1].ds_basehi = DMA_HI32(fcp->isp_scdma); - pt->ctp_dataseg[1].ds_count = sizeof (ct_hdr_t); - isp_put_ct_pt(isp, pt, (isp_ct_pt_t *) &scp[CTXOFF]); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "IOCB CT Request", QENTRY_LEN, pt); - } - - /* * Build the CT header and command in memory. - * - * Note that the CT header has to end up as Big Endian format in memory. */ - ISP_MEMZERO(&un.clocal, sizeof (un.clocal)); - ct = &un.clocal.rffid_hdr; + ISP_MEMZERO(&rp, sizeof(rp)); + ct = &rp.rffid_hdr; ct->ct_revision = CT_REVISION; ct->ct_fcs_type = CT_FC_TYPE_FC; ct->ct_fcs_subtype = CT_FC_SUBTYPE_NS; ct->ct_cmd_resp = SNS_RFF_ID; ct->ct_bcnt_resid = (sizeof (rff_id_t) - sizeof (ct_hdr_t)) >> 2; - rp = &un.clocal; - rp->rffid_portid[0] = fcp->isp_portid >> 16; - rp->rffid_portid[1] = fcp->isp_portid >> 8; - rp->rffid_portid[2] = fcp->isp_portid; - rp->rffid_fc4features = 0; + rp.rffid_portid[0] = fcp->isp_portid >> 16; + rp.rffid_portid[1] = fcp->isp_portid >> 8; + rp.rffid_portid[2] = fcp->isp_portid; + rp.rffid_fc4features = 0; if (fcp->role & ISP_ROLE_TARGET) - rp->rffid_fc4features |= 1; + rp.rffid_fc4features |= 1; if (fcp->role & ISP_ROLE_INITIATOR) - rp->rffid_fc4features |= 2; - rp->rffid_fc4type = FC4_SCSI; - isp_put_rff_id(isp, rp, (rff_id_t *) &scp[XTXOFF]); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "CT Header", QENTRY_LEN, &scp[XTXOFF]); + rp.rffid_fc4features |= 2; + rp.rffid_fc4type = FC4_SCSI; + isp_put_rff_id(isp, &rp, (rff_id_t *)scp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "CT request", sizeof(rft_id_t), scp); + + if (isp_ct_passthru(isp, chan, sizeof(rft_id_t), sizeof(ct_hdr_t))) { + FC_SCRATCH_RELEASE(isp, chan); + return (-1); + } + + isp_get_ct_hdr(isp, (ct_hdr_t *) scp, ct); + FC_SCRATCH_RELEASE(isp, chan); + if (ct->ct_cmd_resp == LS_RJT) { + isp_prt(isp, ISP_LOG_SANCFG|ISP_LOG_WARN1, + "Chan %d Register FC4 Features rejected", chan); + return (-1); + } else if (ct->ct_cmd_resp == LS_ACC) { + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Register FC4 Features accepted", chan); + } else { + isp_prt(isp, ISP_LOGWARN, + "Chan %d Register FC4 Features: 0x%x", chan, ct->ct_cmd_resp); + return (-1); } + return (0); +} + +static int +isp_register_port_name_24xx(ispsoftc_t *isp, int chan) +{ + fcparam *fcp = FCPARAM(isp, chan); + ct_hdr_t *ct; + rspn_id_t rp; + uint8_t *scp = fcp->isp_scratch; + int len; - ISP_MEMZERO(&scp[ZTXOFF], sizeof (ct_hdr_t)); + if (FC_SCRATCH_ACQUIRE(isp, chan)) { + isp_prt(isp, ISP_LOGERR, sacq); + return (-1); + } - MBSINIT(&mbs, MBOX_EXEC_COMMAND_IOCB_A64, MBLOGALL, - MBCMD_DEFAULT_TIMEOUT + pt->ctp_time * 1000000); - mbs.param[1] = QENTRY_LEN; - mbs.param[2] = DMA_WD1(fcp->isp_scdma + CTXOFF); - mbs.param[3] = DMA_WD0(fcp->isp_scdma + CTXOFF); - mbs.param[6] = DMA_WD3(fcp->isp_scdma + CTXOFF); - mbs.param[7] = DMA_WD2(fcp->isp_scdma + CTXOFF); - MEMORYBARRIER(isp, SYNC_SFORDEV, XTXOFF, 2 * QENTRY_LEN, chan); - isp_mboxcmd(isp, &mbs); - if (mbs.param[0] != MBOX_COMMAND_COMPLETE) { + /* + * Build the CT header and command in memory. + */ + ISP_MEMZERO(&rp, sizeof(rp)); + ct = &rp.rspnid_hdr; + ct->ct_revision = CT_REVISION; + ct->ct_fcs_type = CT_FC_TYPE_FC; + ct->ct_fcs_subtype = CT_FC_SUBTYPE_NS; + ct->ct_cmd_resp = SNS_RSPN_ID; + rp.rspnid_portid[0] = fcp->isp_portid >> 16; + rp.rspnid_portid[1] = fcp->isp_portid >> 8; + rp.rspnid_portid[2] = fcp->isp_portid; + rp.rspnid_length = 0; + len = offsetof(rspn_id_t, rspnid_name); + mtx_lock(&prison0.pr_mtx); + rp.rspnid_length += sprintf(&scp[len + rp.rspnid_length], + "%s", prison0.pr_hostname[0] ? prison0.pr_hostname : "FreeBSD"); + mtx_unlock(&prison0.pr_mtx); + rp.rspnid_length += sprintf(&scp[len + rp.rspnid_length], + ":%s", device_get_nameunit(isp->isp_dev)); + if (chan != 0) { + rp.rspnid_length += sprintf(&scp[len + rp.rspnid_length], + "/%d", chan); + } + len += rp.rspnid_length; + ct->ct_bcnt_resid = (len - sizeof(ct_hdr_t)) >> 2; + isp_put_rspn_id(isp, &rp, (rspn_id_t *)scp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "CT request", len, scp); + + if (isp_ct_passthru(isp, chan, len, sizeof(ct_hdr_t))) { FC_SCRATCH_RELEASE(isp, chan); return (-1); } - MEMORYBARRIER(isp, SYNC_SFORCPU, ZTXOFF, QENTRY_LEN, chan); - pt = &un.plocal; - isp_get_ct_pt(isp, (isp_ct_pt_t *) &scp[ZTXOFF], pt); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "IOCB response", QENTRY_LEN, pt); + + isp_get_ct_hdr(isp, (ct_hdr_t *) scp, ct); + FC_SCRATCH_RELEASE(isp, chan); + if (ct->ct_cmd_resp == LS_RJT) { + isp_prt(isp, ISP_LOG_SANCFG|ISP_LOG_WARN1, + "Chan %d Register Symbolic Port Name rejected", chan); + return (-1); + } else if (ct->ct_cmd_resp == LS_ACC) { + isp_prt(isp, ISP_LOG_SANCFG, + "Chan %d Register Symbolic Port Name accepted", chan); + } else { + isp_prt(isp, ISP_LOGWARN, + "Chan %d Register Symbolic Port Name: 0x%x", chan, ct->ct_cmd_resp); + return (-1); + } + return (0); +} + +static int +isp_register_node_name_24xx(ispsoftc_t *isp, int chan) +{ + fcparam *fcp = FCPARAM(isp, chan); + ct_hdr_t *ct; + rsnn_nn_t rp; + uint8_t *scp = fcp->isp_scratch; + int len; + + if (FC_SCRATCH_ACQUIRE(isp, chan)) { + isp_prt(isp, ISP_LOGERR, sacq); + return (-1); } - if (pt->ctp_status) { + + /* + * Build the CT header and command in memory. + */ + ISP_MEMZERO(&rp, sizeof(rp)); + ct = &rp.rsnnnn_hdr; + ct->ct_revision = CT_REVISION; + ct->ct_fcs_type = CT_FC_TYPE_FC; + ct->ct_fcs_subtype = CT_FC_SUBTYPE_NS; + ct->ct_cmd_resp = SNS_RSNN_NN; + MAKE_NODE_NAME_FROM_WWN(rp.rsnnnn_nodename, fcp->isp_wwnn); + rp.rsnnnn_length = 0; + len = offsetof(rsnn_nn_t, rsnnnn_name); + mtx_lock(&prison0.pr_mtx); + rp.rsnnnn_length += sprintf(&scp[len + rp.rsnnnn_length], + "%s", prison0.pr_hostname[0] ? prison0.pr_hostname : "FreeBSD"); + mtx_unlock(&prison0.pr_mtx); + len += rp.rsnnnn_length; + ct->ct_bcnt_resid = (len - sizeof(ct_hdr_t)) >> 2; + isp_put_rsnn_nn(isp, &rp, (rsnn_nn_t *)scp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "CT request", len, scp); + + if (isp_ct_passthru(isp, chan, len, sizeof(ct_hdr_t))) { FC_SCRATCH_RELEASE(isp, chan); - isp_prt(isp, ISP_LOGWARN, - "Chan %d Register FC4 Features CT Passthrough returned 0x%x", - chan, pt->ctp_status); - return (1); + return (-1); } isp_get_ct_hdr(isp, (ct_hdr_t *) scp, ct); FC_SCRATCH_RELEASE(isp, chan); - if (ct->ct_cmd_resp == LS_RJT) { isp_prt(isp, ISP_LOG_SANCFG|ISP_LOG_WARN1, - "Chan %d Register FC4 Features rejected", chan); + "Chan %d Register Symbolic Node Name rejected", chan); return (-1); } else if (ct->ct_cmd_resp == LS_ACC) { isp_prt(isp, ISP_LOG_SANCFG, - "Chan %d Register FC4 Features accepted", chan); - return (0); + "Chan %d Register Symbolic Node Name accepted", chan); } else { isp_prt(isp, ISP_LOGWARN, - "Chan %d Register FC4 Features: 0x%x", chan, ct->ct_cmd_resp); + "Chan %d Register Symbolic Node Name: 0x%x", chan, ct->ct_cmd_resp); return (-1); } + return (0); } static uint16_t @@ -4640,31 +4696,25 @@ isp_control(ispsoftc_t *isp, ispctl_t ctl, ...) tmf->tmf_tidlo = lp->portid; tmf->tmf_tidhi = lp->portid >> 16; tmf->tmf_vpidx = ISP_GET_VPIDX(isp, chan); + isp_put_24xx_tmf(isp, tmf, isp->isp_iocb); + MEMORYBARRIER(isp, SYNC_IFORDEV, 0, QENTRY_LEN, chan); + fcp->sendmarker = 1; + isp_prt(isp, ISP_LOGALL, "Chan %d Reset N-Port Handle 0x%04x @ Port 0x%06x", chan, lp->handle, lp->portid); MBSINIT(&mbs, MBOX_EXEC_COMMAND_IOCB_A64, MBLOGALL, MBCMD_DEFAULT_TIMEOUT + tmf->tmf_timeout * 1000000); mbs.param[1] = QENTRY_LEN; - mbs.param[2] = DMA_WD1(fcp->isp_scdma); - mbs.param[3] = DMA_WD0(fcp->isp_scdma); - mbs.param[6] = DMA_WD3(fcp->isp_scdma); - mbs.param[7] = DMA_WD2(fcp->isp_scdma); - - if (FC_SCRATCH_ACQUIRE(isp, chan)) { - isp_prt(isp, ISP_LOGERR, sacq); - break; - } - isp_put_24xx_tmf(isp, tmf, fcp->isp_scratch); - MEMORYBARRIER(isp, SYNC_SFORDEV, 0, QENTRY_LEN, chan); - fcp->sendmarker = 1; + mbs.param[2] = DMA_WD1(isp->isp_iocb_dma); + mbs.param[3] = DMA_WD0(isp->isp_iocb_dma); + mbs.param[6] = DMA_WD3(isp->isp_iocb_dma); + mbs.param[7] = DMA_WD2(isp->isp_iocb_dma); isp_mboxcmd(isp, &mbs); - if (mbs.param[0] != MBOX_COMMAND_COMPLETE) { - FC_SCRATCH_RELEASE(isp, chan); + if (mbs.param[0] != MBOX_COMMAND_COMPLETE) break; - } - MEMORYBARRIER(isp, SYNC_SFORCPU, QENTRY_LEN, QENTRY_LEN, chan); + + MEMORYBARRIER(isp, SYNC_IFORCPU, QENTRY_LEN, QENTRY_LEN, chan); sp = (isp24xx_statusreq_t *) local; - isp_get_24xx_response(isp, &((isp24xx_statusreq_t *)fcp->isp_scratch)[1], sp); - FC_SCRATCH_RELEASE(isp, chan); + isp_get_24xx_response(isp, &((isp24xx_statusreq_t *)isp->isp_iocb)[1], sp); if (sp->req_completion_status == 0) { return (0); } @@ -4704,7 +4754,7 @@ isp_control(ispsoftc_t *isp, ispctl_t ctl, ...) break; } if (IS_24XX(isp)) { - isp24xx_abrt_t local, *ab = &local, *ab2; + isp24xx_abrt_t local, *ab = &local; fcparam *fcp; fcportdb_t *lp; @@ -4728,31 +4778,23 @@ isp_control(ispsoftc_t *isp, ispctl_t ctl, ...) ab->abrt_tidlo = lp->portid; ab->abrt_tidhi = lp->portid >> 16; ab->abrt_vpidx = ISP_GET_VPIDX(isp, chan); + isp_put_24xx_abrt(isp, ab, isp->isp_iocb); + MEMORYBARRIER(isp, SYNC_IFORDEV, 0, 2 * QENTRY_LEN, chan); ISP_MEMZERO(&mbs, sizeof (mbs)); MBSINIT(&mbs, MBOX_EXEC_COMMAND_IOCB_A64, MBLOGALL, 5000000); mbs.param[1] = QENTRY_LEN; - mbs.param[2] = DMA_WD1(fcp->isp_scdma); - mbs.param[3] = DMA_WD0(fcp->isp_scdma); - mbs.param[6] = DMA_WD3(fcp->isp_scdma); - mbs.param[7] = DMA_WD2(fcp->isp_scdma); + mbs.param[2] = DMA_WD1(isp->isp_iocb_dma); + mbs.param[3] = DMA_WD0(isp->isp_iocb_dma); + mbs.param[6] = DMA_WD3(isp->isp_iocb_dma); + mbs.param[7] = DMA_WD2(isp->isp_iocb_dma); - if (FC_SCRATCH_ACQUIRE(isp, chan)) { - isp_prt(isp, ISP_LOGERR, sacq); - break; - } - isp_put_24xx_abrt(isp, ab, fcp->isp_scratch); - ab2 = (isp24xx_abrt_t *) &((uint8_t *)fcp->isp_scratch)[QENTRY_LEN]; - ab2->abrt_nphdl = 0xdeaf; - MEMORYBARRIER(isp, SYNC_SFORDEV, 0, 2 * QENTRY_LEN, chan); isp_mboxcmd(isp, &mbs); - if (mbs.param[0] != MBOX_COMMAND_COMPLETE) { - FC_SCRATCH_RELEASE(isp, chan); + if (mbs.param[0] != MBOX_COMMAND_COMPLETE) break; - } - MEMORYBARRIER(isp, SYNC_SFORCPU, QENTRY_LEN, QENTRY_LEN, chan); - isp_get_24xx_abrt(isp, ab2, ab); - FC_SCRATCH_RELEASE(isp, chan); + + MEMORYBARRIER(isp, SYNC_IFORCPU, QENTRY_LEN, QENTRY_LEN, chan); + isp_get_24xx_abrt(isp, &((isp24xx_abrt_t *)isp->isp_iocb)[1], ab); if (ab->abrt_nphdl == ISP24XX_ABRT_OKAY) { return (0); } @@ -5140,15 +5182,14 @@ again: * Synchronize our view of this response queue entry. */ MEMORYBARRIER(isp, SYNC_RESULT, oop, QENTRY_LEN, -1); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_qentry(isp, "Response Queue Entry", oop, hp); isp_get_hdr(isp, hp, &sp->req_header); etype = sp->req_header.rqs_entry_type; if (IS_24XX(isp) && etype == RQSTYPE_RESPONSE) { isp24xx_statusreq_t *sp2 = (isp24xx_statusreq_t *)qe; isp_get_24xx_response(isp, (isp24xx_statusreq_t *)hp, sp2); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "Response Queue Entry", QENTRY_LEN, sp2); - } scsi_status = sp2->req_scsi_status; completion_status = sp2->req_completion_status; if ((scsi_status & 0xff) != 0) @@ -5158,9 +5199,6 @@ again: resid = sp2->req_resid; } else if (etype == RQSTYPE_RESPONSE) { isp_get_response(isp, (ispstatusreq_t *) hp, sp); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "Response Queue Entry", QENTRY_LEN, sp); - } scsi_status = sp->req_scsi_status; completion_status = sp->req_completion_status; req_status_flags = sp->req_status_flags; @@ -5169,9 +5207,6 @@ again: } else if (etype == RQSTYPE_RIO1) { isp_rio1_t *rio = (isp_rio1_t *) qe; isp_get_rio1(isp, (isp_rio1_t *) hp, rio); - if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "Response Queue Entry", QENTRY_LEN, rio); - } for (i = 0; i < rio->req_header.rqs_seqno; i++) { isp_fastpost_complete(isp, rio->req_handles[i]); } @@ -5235,7 +5270,6 @@ again: */ if (etype != RQSTYPE_REQUEST) { isp_prt(isp, ISP_LOGERR, notresp, etype, oop, optr, nlooked); - isp_print_bytes(isp, "Request Queue Entry", QENTRY_LEN, sp); ISP_MEMZERO(hp, QENTRY_LEN); /* PERF */ last_etype = etype; continue; @@ -5250,7 +5284,8 @@ again: if (sp->req_header.rqs_flags & RQSFLAG_MASK) { if (sp->req_header.rqs_flags & RQSFLAG_CONTINUATION) { - isp_print_bytes(isp, "unexpected continuation segment", QENTRY_LEN, sp); + isp_print_qentry(isp, "unexpected continuation segment", + oop, hp); last_etype = etype; continue; } @@ -5261,19 +5296,23 @@ again: */ } if (sp->req_header.rqs_flags & RQSFLAG_BADHEADER) { - isp_print_bytes(isp, "bad header flag", QENTRY_LEN, sp); + isp_print_qentry(isp, "bad header flag", + oop, hp); buddaboom++; } if (sp->req_header.rqs_flags & RQSFLAG_BADPACKET) { - isp_print_bytes(isp, "bad request packet", QENTRY_LEN, sp); + isp_print_qentry(isp, "bad request packet", + oop, hp); buddaboom++; } if (sp->req_header.rqs_flags & RQSFLAG_BADCOUNT) { - isp_print_bytes(isp, "invalid entry count", QENTRY_LEN, sp); + isp_print_qentry(isp, "invalid entry count", + oop, hp); buddaboom++; } if (sp->req_header.rqs_flags & RQSFLAG_BADORDER) { - isp_print_bytes(isp, "invalid IOCB ordering", QENTRY_LEN, sp); + isp_print_qentry(isp, "invalid IOCB ordering", + oop, hp); last_etype = etype; continue; } @@ -5431,7 +5470,8 @@ again: XS_SAVE_SENSE(xs, snsp, totslen, slen); } else if ((req_status_flags & RQSF_GOT_STATUS) && (scsi_status & 0xff) == SCSI_CHECK && IS_FC(isp)) { isp_prt(isp, ISP_LOGWARN, "CHECK CONDITION w/o sense data for CDB=0x%x", XS_CDBP(xs)[0] & 0xff); - isp_print_bytes(isp, "CC with no Sense", QENTRY_LEN, qe); + isp_print_qentry(isp, "CC with no Sense", + oop, hp); } isp_prt(isp, ISP_LOGDEBUG2, "asked for %ld got raw resid %ld settled for %ld", (long) XS_XFRLEN(xs), resid, (long) XS_GET_RESID(xs)); break; @@ -5457,7 +5497,8 @@ again: XS_SET_RESID(xs, XS_XFRLEN(xs)); break; default: - isp_print_bytes(isp, "Unhandled Response Type", QENTRY_LEN, qe); + isp_print_qentry(isp, "Unhandled Response Type", + oop, hp); if (XS_NOERR(xs)) { XS_SETERR(xs, HBA_BOTCH); } @@ -5960,9 +6001,13 @@ isp_parse_async_fc(ispsoftc_t *isp, uint16_t mbox) fcp = FCPARAM(isp, chan); if (fcp->role == ISP_ROLE_NONE) continue; - if (fcp->isp_loopstate > LOOP_LTEST_DONE) + if (fcp->isp_loopstate > LOOP_LTEST_DONE) { + if (nphdl != NIL_HANDLE && + nphdl == fcp->isp_login_hdl && + reason == PDB24XX_AE_OPN_2) + continue; fcp->isp_loopstate = LOOP_LTEST_DONE; - else if (fcp->isp_loopstate < LOOP_HAVE_LINK) + } else if (fcp->isp_loopstate < LOOP_HAVE_LINK) fcp->isp_loopstate = LOOP_HAVE_LINK; isp_async(isp, ISPASYNC_CHANGE_NOTIFY, chan, ISPASYNC_CHANGE_PDB, nphdl, nlstate, reason); @@ -6092,7 +6137,7 @@ isp_handle_other_response(ispsoftc_t *isp, int type, isphdr_t *hp, uint32_t *opt { isp_ridacq_t rid; int chan, c; - uint32_t hdl; + uint32_t hdl, portid; void *ptr; switch (type) { @@ -6104,6 +6149,8 @@ isp_handle_other_response(ispsoftc_t *isp, int type, isphdr_t *hp, uint32_t *opt return (1); case RQSTYPE_RPT_ID_ACQ: isp_get_ridacq(isp, (isp_ridacq_t *)hp, &rid); + portid = (uint32_t)rid.ridacq_vp_port_hi << 16 | + rid.ridacq_vp_port_lo; if (rid.ridacq_format == 0) { for (chan = 0; chan < isp->isp_nchan; chan++) { fcparam *fcp = FCPARAM(isp, chan); @@ -6125,7 +6172,9 @@ isp_handle_other_response(ispsoftc_t *isp, int type, isphdr_t *hp, uint32_t *opt fcparam *fcp = FCPARAM(isp, rid.ridacq_vp_index); if (rid.ridacq_vp_status == RIDACQ_STS_COMPLETE || rid.ridacq_vp_status == RIDACQ_STS_CHANGED) { - fcp->isp_loopstate = LOOP_HAVE_LINK; + fcp->isp_topo = (rid.ridacq_map[0] >> 9) & 0x7; + fcp->isp_portid = portid; + fcp->isp_loopstate = LOOP_HAVE_ADDR; isp_async(isp, ISPASYNC_CHANGE_NOTIFY, rid.ridacq_vp_index, ISPASYNC_CHANGE_OTHER); } else { @@ -6135,6 +6184,7 @@ isp_handle_other_response(ispsoftc_t *isp, int type, isphdr_t *hp, uint32_t *opt } } return (1); + case RQSTYPE_CT_PASSTHRU: case RQSTYPE_VP_MODIFY: case RQSTYPE_VP_CTRL: case RQSTYPE_LOGIN: @@ -7777,27 +7827,28 @@ isp_setdfltfcparm(ispsoftc_t *isp, int chan) fcp->isp_xfwoptions = 0; fcp->isp_zfwoptions = 0; fcp->isp_lasthdl = NIL_HANDLE; + fcp->isp_login_hdl = NIL_HANDLE; if (IS_24XX(isp)) { fcp->isp_fwoptions |= ICB2400_OPT1_FAIRNESS; fcp->isp_fwoptions |= ICB2400_OPT1_HARD_ADDRESS; - if (isp->isp_confopts & ISP_CFG_FULL_DUPLEX) { + if (isp->isp_confopts & ISP_CFG_FULL_DUPLEX) fcp->isp_fwoptions |= ICB2400_OPT1_FULL_DUPLEX; - } fcp->isp_fwoptions |= ICB2400_OPT1_BOTH_WWNS; + fcp->isp_xfwoptions |= ICB2400_OPT2_LOOP_2_PTP; fcp->isp_zfwoptions |= ICB2400_OPT3_RATE_AUTO; } else { fcp->isp_fwoptions |= ICBOPT_FAIRNESS; fcp->isp_fwoptions |= ICBOPT_PDBCHANGE_AE; fcp->isp_fwoptions |= ICBOPT_HARD_ADDRESS; - if (isp->isp_confopts & ISP_CFG_FULL_DUPLEX) { + if (isp->isp_confopts & ISP_CFG_FULL_DUPLEX) fcp->isp_fwoptions |= ICBOPT_FULL_DUPLEX; - } /* * Make sure this is turned off now until we get * extended options from NVRAM */ fcp->isp_fwoptions &= ~ICBOPT_EXTENDED; + fcp->isp_xfwoptions |= ICBXOPT_LOOP_2_PTP; fcp->isp_zfwoptions |= ICBZOPT_RATE_AUTO; } diff --git a/sys/dev/isp/isp_freebsd.c b/sys/dev/isp/isp_freebsd.c index cbf1262..0473b1b 100644 --- a/sys/dev/isp/isp_freebsd.c +++ b/sys/dev/isp/isp_freebsd.c @@ -607,9 +607,10 @@ ispioctl(struct cdev *dev, u_long c, caddr_t addr, int flags, struct thread *td) nphdl = fct->loopid; ISP_LOCK(isp); if (IS_24XX(isp)) { - uint8_t local[QENTRY_LEN]; - isp24xx_tmf_t *tmf; - isp24xx_statusreq_t *sp; + void *reqp; + uint8_t resp[QENTRY_LEN]; + isp24xx_tmf_t tmf; + isp24xx_statusreq_t sp; fcparam *fcp = FCPARAM(isp, chan); fcportdb_t *lp; int i; @@ -625,39 +626,37 @@ ispioctl(struct cdev *dev, u_long c, caddr_t addr, int flags, struct thread *td) ISP_UNLOCK(isp); break; } - /* XXX VALIDATE LP XXX */ - tmf = (isp24xx_tmf_t *) local; - ISP_MEMZERO(tmf, QENTRY_LEN); - tmf->tmf_header.rqs_entry_type = RQSTYPE_TSK_MGMT; - tmf->tmf_header.rqs_entry_count = 1; - tmf->tmf_nphdl = lp->handle; - tmf->tmf_delay = 2; - tmf->tmf_timeout = 4; - tmf->tmf_tidlo = lp->portid; - tmf->tmf_tidhi = lp->portid >> 16; - tmf->tmf_vpidx = ISP_GET_VPIDX(isp, chan); - tmf->tmf_lun[1] = fct->lun & 0xff; + ISP_MEMZERO(&tmf, sizeof(tmf)); + tmf.tmf_header.rqs_entry_type = RQSTYPE_TSK_MGMT; + tmf.tmf_header.rqs_entry_count = 1; + tmf.tmf_nphdl = lp->handle; + tmf.tmf_delay = 2; + tmf.tmf_timeout = 4; + tmf.tmf_tidlo = lp->portid; + tmf.tmf_tidhi = lp->portid >> 16; + tmf.tmf_vpidx = ISP_GET_VPIDX(isp, chan); + tmf.tmf_lun[1] = fct->lun & 0xff; if (fct->lun >= 256) { - tmf->tmf_lun[0] = 0x40 | (fct->lun >> 8); + tmf.tmf_lun[0] = 0x40 | (fct->lun >> 8); } switch (fct->action) { case IPT_CLEAR_ACA: - tmf->tmf_flags = ISP24XX_TMF_CLEAR_ACA; + tmf.tmf_flags = ISP24XX_TMF_CLEAR_ACA; break; case IPT_TARGET_RESET: - tmf->tmf_flags = ISP24XX_TMF_TARGET_RESET; + tmf.tmf_flags = ISP24XX_TMF_TARGET_RESET; needmarker = 1; break; case IPT_LUN_RESET: - tmf->tmf_flags = ISP24XX_TMF_LUN_RESET; + tmf.tmf_flags = ISP24XX_TMF_LUN_RESET; needmarker = 1; break; case IPT_CLEAR_TASK_SET: - tmf->tmf_flags = ISP24XX_TMF_CLEAR_TASK_SET; + tmf.tmf_flags = ISP24XX_TMF_CLEAR_TASK_SET; needmarker = 1; break; case IPT_ABORT_TASK_SET: - tmf->tmf_flags = ISP24XX_TMF_ABORT_TASK_SET; + tmf.tmf_flags = ISP24XX_TMF_ABORT_TASK_SET; needmarker = 1; break; default: @@ -668,36 +667,52 @@ ispioctl(struct cdev *dev, u_long c, caddr_t addr, int flags, struct thread *td) ISP_UNLOCK(isp); break; } - MBSINIT(&mbs, MBOX_EXEC_COMMAND_IOCB_A64, MBLOGALL, - MBCMD_DEFAULT_TIMEOUT + tmf->tmf_timeout * 1000000); - mbs.param[1] = QENTRY_LEN; - mbs.param[2] = DMA_WD1(fcp->isp_scdma); - mbs.param[3] = DMA_WD0(fcp->isp_scdma); - mbs.param[6] = DMA_WD3(fcp->isp_scdma); - mbs.param[7] = DMA_WD2(fcp->isp_scdma); - - if (FC_SCRATCH_ACQUIRE(isp, chan)) { + + /* Prepare space for response in memory */ + memset(resp, 0xff, sizeof(resp)); + tmf.tmf_handle = isp_allocate_handle(isp, resp, + ISP_HANDLE_CTRL); + if (tmf.tmf_handle == 0) { + isp_prt(isp, ISP_LOGERR, + "%s: TMF of Chan %d out of handles", + __func__, chan); ISP_UNLOCK(isp); retval = ENOMEM; break; } - isp_put_24xx_tmf(isp, tmf, fcp->isp_scratch); - MEMORYBARRIER(isp, SYNC_SFORDEV, 0, QENTRY_LEN, chan); - sp = (isp24xx_statusreq_t *) local; - sp->req_completion_status = 1; - retval = isp_control(isp, ISPCTL_RUN_MBOXCMD, &mbs); - MEMORYBARRIER(isp, SYNC_SFORCPU, QENTRY_LEN, QENTRY_LEN, chan); - isp_get_24xx_response(isp, &((isp24xx_statusreq_t *)fcp->isp_scratch)[1], sp); - FC_SCRATCH_RELEASE(isp, chan); - if (retval || sp->req_completion_status != 0) { - FC_SCRATCH_RELEASE(isp, chan); + + /* Send request and wait for response. */ + reqp = isp_getrqentry(isp); + if (reqp == NULL) { + isp_prt(isp, ISP_LOGERR, + "%s: TMF of Chan %d out of rqent", + __func__, chan); + isp_destroy_handle(isp, tmf.tmf_handle); + ISP_UNLOCK(isp); retval = EIO; + break; } - if (retval == 0) { - if (needmarker) { - fcp->sendmarker = 1; - } + isp_put_24xx_tmf(isp, &tmf, (isp24xx_tmf_t *)reqp); + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "IOCB TMF", QENTRY_LEN, reqp); + ISP_SYNC_REQUEST(isp); + if (msleep(resp, &isp->isp_lock, 0, "TMF", 5*hz) == EWOULDBLOCK) { + isp_prt(isp, ISP_LOGERR, + "%s: TMF of Chan %d timed out", + __func__, chan); + isp_destroy_handle(isp, tmf.tmf_handle); + ISP_UNLOCK(isp); + retval = EIO; + break; } + if (isp->isp_dblev & ISP_LOGDEBUG1) + isp_print_bytes(isp, "IOCB TMF response", QENTRY_LEN, resp); + isp_get_24xx_response(isp, (isp24xx_statusreq_t *)resp, &sp); + + if (sp.req_completion_status != 0) + retval = EIO; + else if (needmarker) + fcp->sendmarker = 1; } else { MBSINIT(&mbs, 0, MBLOGALL, 0); if (ISP_CAP_2KLOGIN(isp) == 0) { diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h index 7702ee6..d6c62a2 100644 --- a/sys/dev/isp/isp_freebsd.h +++ b/sys/dev/isp/isp_freebsd.h @@ -32,6 +32,7 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/endian.h> +#include <sys/jail.h> #include <sys/lock.h> #include <sys/kernel.h> #include <sys/queue.h> @@ -292,10 +293,12 @@ struct isposinfo { bus_dma_tag_t reqdmat; bus_dma_tag_t respdmat; bus_dma_tag_t atiodmat; + bus_dma_tag_t iocbdmat; bus_dma_tag_t scdmat; bus_dmamap_t reqmap; bus_dmamap_t respmap; bus_dmamap_t atiomap; + bus_dmamap_t iocbmap; /* * Command and transaction related related stuff @@ -440,6 +443,14 @@ case SYNC_ATIOQ: \ bus_dmamap_sync(isp->isp_osinfo.atiodmat, \ isp->isp_osinfo.atiomap, BUS_DMASYNC_POSTREAD); \ break; \ +case SYNC_IFORDEV: \ + bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ + BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE); \ + break; \ +case SYNC_IFORCPU: \ + bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ + BUS_DMASYNC_POSTREAD | BUS_DMASYNC_POSTWRITE); \ + break; \ default: \ break; \ } @@ -468,6 +479,14 @@ case SYNC_REG: \ bus_barrier(isp->isp_osinfo.regs, offset, size, \ BUS_SPACE_BARRIER_WRITE); \ break; \ +case SYNC_IFORDEV: \ + bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ + BUS_DMASYNC_PREWRITE); \ + break; \ +case SYNC_IFORCPU: \ + bus_dmamap_sync(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, \ + BUS_DMASYNC_POSTWRITE); \ + break; \ default: \ break; \ } diff --git a/sys/dev/isp/isp_library.c b/sys/dev/isp/isp_library.c index 78c7f6f..48e0535 100644 --- a/sys/dev/isp/isp_library.c +++ b/sys/dev/isp/isp_library.c @@ -180,7 +180,8 @@ isp_send_cmd(ispsoftc_t *isp, void *fqe, void *segp, uint32_t nsegs, uint32_t to isp_put_cont_req(isp, (ispcontreq_t *)storage, qe1); } if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "additional queue entry", QENTRY_LEN, storage); + isp_print_bytes(isp, "additional queue entry", + QENTRY_LEN, qe1); } nqe++; } @@ -241,7 +242,7 @@ copy_and_sync: return (CMD_COMPLETE); } if (isp->isp_dblev & ISP_LOGDEBUG1) { - isp_print_bytes(isp, "first queue entry", QENTRY_LEN, fqe); + isp_print_bytes(isp, "first queue entry", QENTRY_LEN, qe0); } ISP_ADD_REQUEST(isp, nxt); return (CMD_QUEUED); @@ -531,6 +532,7 @@ isp_fc_loop_statename(int state) switch (state) { case LOOP_NIL: return "NIL"; case LOOP_HAVE_LINK: return "Have Link"; + case LOOP_HAVE_ADDR: return "Have Address"; case LOOP_TESTING_LINK: return "Testing Link"; case LOOP_LTEST_DONE: return "Link Test Done"; case LOOP_SCANNING_LOOP: return "Scanning Loop"; @@ -547,7 +549,7 @@ const char * isp_fc_toponame(fcparam *fcp) { - if (fcp->isp_loopstate < LOOP_LTEST_DONE) { + if (fcp->isp_loopstate < LOOP_HAVE_ADDR) { return "Unavailable"; } switch (fcp->isp_topo) { @@ -1988,6 +1990,17 @@ isp_put_rft_id(ispsoftc_t *isp, rft_id_t *src, rft_id_t *dst) } void +isp_put_rspn_id(ispsoftc_t *isp, rspn_id_t *src, rspn_id_t *dst) +{ +/* int i;*/ + isp_put_ct_hdr(isp, &src->rspnid_hdr, &dst->rspnid_hdr); + ISP_IOZPUT_8(isp, src->rspnid_reserved, &dst->rspnid_reserved); + ISP_IOZPUT_8(isp, src->rspnid_length, &dst->rspnid_length); +/* for (i = 0; i < src->rspnid_length; i++) + ISP_IOZPUT_8(isp, src->rspnid_name[i], &dst->rspnid_name[i]);*/ +} + +void isp_put_rff_id(ispsoftc_t *isp, rff_id_t *src, rff_id_t *dst) { int i; @@ -2002,6 +2015,18 @@ isp_put_rff_id(ispsoftc_t *isp, rff_id_t *src, rff_id_t *dst) } void +isp_put_rsnn_nn(ispsoftc_t *isp, rsnn_nn_t *src, rsnn_nn_t *dst) +{ + int i; + isp_put_ct_hdr(isp, &src->rsnnnn_hdr, &dst->rsnnnn_hdr); + for (i = 0; i < 8; i++) + ISP_IOZPUT_8(isp, src->rsnnnn_nodename[i], &dst->rsnnnn_nodename[i]); + ISP_IOZPUT_8(isp, src->rsnnnn_length, &dst->rsnnnn_length); +/* for (i = 0; i < src->rsnnnn_length; i++) + ISP_IOZPUT_8(isp, src->rsnnnn_name[i], &dst->rsnnnn_name[i]);*/ +} + +void isp_get_ct_hdr(ispsoftc_t *isp, ct_hdr_t *src, ct_hdr_t *dst) { ISP_IOZGET_8(isp, &src->ct_revision, dst->ct_revision); @@ -2170,7 +2195,8 @@ isp_send_tgt_cmd(ispsoftc_t *isp, void *fqe, void *segp, uint32_t nsegs, uint32_ isp_put_cont_req(isp, (ispcontreq_t *)storage, qe1); } if (isp->isp_dblev & ISP_LOGTDEBUG1) { - isp_print_bytes(isp, "additional queue entry", QENTRY_LEN, storage); + isp_print_bytes(isp, "additional queue entry", + QENTRY_LEN, qe1); } nqe++; } @@ -2207,7 +2233,7 @@ isp_send_tgt_cmd(ispsoftc_t *isp, void *fqe, void *segp, uint32_t nsegs, uint32_ return (CMD_COMPLETE); } if (isp->isp_dblev & ISP_LOGTDEBUG1) { - isp_print_bytes(isp, "first queue entry", QENTRY_LEN, fqe); + isp_print_bytes(isp, "first queue entry", QENTRY_LEN, qe0); } ISP_ADD_REQUEST(isp, nxt); return (CMD_QUEUED); @@ -2304,7 +2330,7 @@ isp_find_chan_by_did(ispsoftc_t *isp, uint32_t did, uint16_t *cp) for (chan = 0; chan < isp->isp_nchan; chan++) { fcparam *fcp = FCPARAM(isp, chan); if ((fcp->role & ISP_ROLE_TARGET) == 0 || - fcp->isp_loopstate < LOOP_LTEST_DONE) { + fcp->isp_loopstate < LOOP_HAVE_ADDR) { continue; } if (fcp->isp_portid == did) { diff --git a/sys/dev/isp/isp_library.h b/sys/dev/isp/isp_library.h index 922a98b..c70b2cc 100644 --- a/sys/dev/isp/isp_library.h +++ b/sys/dev/isp/isp_library.h @@ -144,7 +144,9 @@ void isp_get_fc_hdr(ispsoftc_t *, fc_hdr_t *, fc_hdr_t *); void isp_put_fc_hdr(ispsoftc_t *, fc_hdr_t *, fc_hdr_t *); void isp_get_fcp_cmnd_iu(ispsoftc_t *, fcp_cmnd_iu_t *, fcp_cmnd_iu_t *); void isp_put_rft_id(ispsoftc_t *, rft_id_t *, rft_id_t *); +void isp_put_rspn_id(ispsoftc_t *, rspn_id_t *, rspn_id_t *); void isp_put_rff_id(ispsoftc_t *, rff_id_t *, rff_id_t *); +void isp_put_rsnn_nn(ispsoftc_t *, rsnn_nn_t *, rsnn_nn_t *); void isp_get_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *); void isp_put_ct_hdr(ispsoftc_t *isp, ct_hdr_t *, ct_hdr_t *); void isp_put_fcp_rsp_iu(ispsoftc_t *isp, fcp_rsp_iu_t *, fcp_rsp_iu_t *); diff --git a/sys/dev/isp/isp_pci.c b/sys/dev/isp/isp_pci.c index 11386ee..0eefc16 100644 --- a/sys/dev/isp/isp_pci.c +++ b/sys/dev/isp/isp_pci.c @@ -1730,9 +1730,23 @@ isp_pci_mbxdma(ispsoftc_t *isp) if (IS_FC(isp)) { if (isp_dma_tag_create(isp->isp_osinfo.dmat, 64, slim, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, - ISP_FC_SCRLEN, 1, ISP_FC_SCRLEN, 0, &isp->isp_osinfo.scdmat)) { + 2*QENTRY_LEN, 1, 2*QENTRY_LEN, 0, &isp->isp_osinfo.iocbdmat)) { goto bad; } + if (bus_dmamem_alloc(isp->isp_osinfo.iocbdmat, + (void **)&base, BUS_DMA_COHERENT, &isp->isp_osinfo.iocbmap) != 0) + goto bad; + isp->isp_iocb = base; + im.error = 0; + if (bus_dmamap_load(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap, + base, 2*QENTRY_LEN, imc, &im, 0) || im.error) + goto bad; + isp->isp_iocb_dma = im.maddr; + + if (isp_dma_tag_create(isp->isp_osinfo.dmat, 64, slim, + BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, NULL, NULL, + ISP_FC_SCRLEN, 1, ISP_FC_SCRLEN, 0, &isp->isp_osinfo.scdmat)) + goto bad; for (cmap = 0; cmap < isp->isp_nchan; cmap++) { struct isp_fc *fc = ISP_FC_PC(isp, cmap); if (bus_dmamem_alloc(isp->isp_osinfo.scdmat, @@ -1791,7 +1805,8 @@ bad: while (--cmap >= 0) { struct isp_fc *fc = ISP_FC_PC(isp, cmap); bus_dmamap_unload(isp->isp_osinfo.scdmat, fc->scmap); - bus_dmamem_free(isp->isp_osinfo.scdmat, base, fc->scmap); + bus_dmamem_free(isp->isp_osinfo.scdmat, + FCPARAM(isp, cmap)->isp_scratch, fc->scmap); while (fc->nexus_free_list) { struct isp_nexus *n = fc->nexus_free_list; fc->nexus_free_list = n->next; @@ -1799,6 +1814,10 @@ bad: } } bus_dma_tag_destroy(isp->isp_osinfo.scdmat); + bus_dmamap_unload(isp->isp_osinfo.iocbdmat, isp->isp_osinfo.iocbmap); + bus_dmamem_free(isp->isp_osinfo.iocbdmat, isp->isp_iocb, + isp->isp_osinfo.iocbmap); + bus_dma_tag_destroy(isp->isp_osinfo.iocbdmat); } bad1: if (isp->isp_rquest_dma != 0) { diff --git a/sys/dev/isp/isp_stds.h b/sys/dev/isp/isp_stds.h index 315870e..a83f08f 100644 --- a/sys/dev/isp/isp_stds.h +++ b/sys/dev/isp/isp_stds.h @@ -139,6 +139,19 @@ typedef struct { } rft_id_t; /* + * RSPN_ID Requet CT_IU + * + * Source: INCITS 463-2010 Generic Services 6 Section 5.2.5.32 + */ +typedef struct { + ct_hdr_t rspnid_hdr; + uint8_t rspnid_reserved; + uint8_t rspnid_portid[3]; + uint8_t rspnid_length; + uint8_t rspnid_name[0]; +} rspn_id_t; + +/* * RFF_ID Requet CT_IU * * Source: INCITS 463-2010 Generic Services 6 Section 5.2.5.34 @@ -153,6 +166,18 @@ typedef struct { } rff_id_t; /* + * RSNN_NN Requet CT_IU + * + * Source: INCITS 463-2010 Generic Services 6 Section 5.2.5.35 + */ +typedef struct { + ct_hdr_t rsnnnn_hdr; + uint8_t rsnnnn_nodename[8]; + uint8_t rsnnnn_length; + uint8_t rsnnnn_name[0]; +} rsnn_nn_t; + +/* * FCP Response IU and bits of interest * Source: NCITS T10, Project 1828D, Revision 02b (aka FCP4r02b) */ diff --git a/sys/dev/isp/ispmbox.h b/sys/dev/isp/ispmbox.h index 5a1306f..8bd4d1a 100644 --- a/sys/dev/isp/ispmbox.h +++ b/sys/dev/isp/ispmbox.h @@ -1548,7 +1548,9 @@ typedef struct { #define SNS_GFF_ID 0x11F #define SNS_GID_FT 0x171 #define SNS_RFT_ID 0x217 +#define SNS_RSPN_ID 0x218 #define SNS_RFF_ID 0x21F +#define SNS_RSNN_NN 0x239 typedef struct { uint16_t snscb_rblen; /* response buffer length (words) */ uint16_t snscb_reserved0; diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h index a7184e2..a97a04f 100644 --- a/sys/dev/isp/ispvar.h +++ b/sys/dev/isp/ispvar.h @@ -130,6 +130,8 @@ struct ispmdvec { #define SYNC_SFORCPU 3 /* scratch, sync for CPU */ #define SYNC_REG 4 /* for registers */ #define SYNC_ATIOQ 5 /* atio result queue (24xx) */ +#define SYNC_IFORDEV 6 /* synchrounous IOCB, sync for ISP */ +#define SYNC_IFORCPU 7 /* synchrounous IOCB, sync for CPU */ /* * Request/Response Queue defines and macros. @@ -447,6 +449,7 @@ typedef struct { uint16_t isp_lasthdl; /* only valid for channel 0 */ uint16_t isp_maxalloc; uint16_t isp_fabric_params; + uint16_t isp_login_hdl; /* Logging in handle */ uint8_t isp_retry_delay; uint8_t isp_retry_count; @@ -487,14 +490,15 @@ typedef struct { #define LOOP_NIL 0 #define LOOP_HAVE_LINK 1 -#define LOOP_TESTING_LINK 2 -#define LOOP_LTEST_DONE 3 -#define LOOP_SCANNING_LOOP 4 -#define LOOP_LSCAN_DONE 5 -#define LOOP_SCANNING_FABRIC 6 -#define LOOP_FSCAN_DONE 7 -#define LOOP_SYNCING_PDB 8 -#define LOOP_READY 9 +#define LOOP_HAVE_ADDR 2 +#define LOOP_TESTING_LINK 3 +#define LOOP_LTEST_DONE 4 +#define LOOP_SCANNING_LOOP 5 +#define LOOP_LSCAN_DONE 6 +#define LOOP_SCANNING_FABRIC 7 +#define LOOP_FSCAN_DONE 8 +#define LOOP_SYNCING_PDB 9 +#define LOOP_READY 10 #define TOPO_NL_PORT 0 #define TOPO_FL_PORT 1 @@ -596,6 +600,12 @@ struct ispsoftc { isp_hdl_t *isp_xffree; /* + * DMA mapped in area for synchronous IOCB requests. + */ + void * isp_iocb; + XS_DMA_ADDR_T isp_iocb_dma; + + /* * request/result queue pointers and DMA handles for them. */ void * isp_rquest; @@ -637,11 +647,12 @@ struct ispsoftc { * ISP Runtime Configuration Options */ #define ISP_CFG_FULL_DUPLEX 0x01 /* Full Duplex (Fibre Channel only) */ -#define ISP_CFG_PORT_PREF 0x0c /* Mask for Port Prefs (all FC except 2100) */ -#define ISP_CFG_LPORT 0x00 /* prefer {N/F}L-Port connection */ -#define ISP_CFG_NPORT 0x04 /* prefer {N/F}-Port connection */ -#define ISP_CFG_NPORT_ONLY 0x08 /* insist on {N/F}-Port connection */ -#define ISP_CFG_LPORT_ONLY 0x0c /* insist on {N/F}L-Port connection */ +#define ISP_CFG_PORT_PREF 0x0e /* Mask for Port Prefs (all FC except 2100) */ +#define ISP_CFG_PORT_DEF 0x00 /* prefer connection type from NVRAM */ +#define ISP_CFG_LPORT_ONLY 0x02 /* insist on {N/F}L-Port connection */ +#define ISP_CFG_NPORT_ONLY 0x04 /* insist on {N/F}-Port connection */ +#define ISP_CFG_LPORT 0x06 /* prefer {N/F}L-Port connection */ +#define ISP_CFG_NPORT 0x08 /* prefer {N/F}-Port connection */ #define ISP_CFG_1GB 0x10 /* force 1GB connection (23XX only) */ #define ISP_CFG_2GB 0x20 /* force 2GB connection (23XX only) */ #define ISP_CFG_NORELOAD 0x80 /* don't download f/w */ diff --git a/sys/dev/ispfw/asm_2500.h b/sys/dev/ispfw/asm_2500.h index 1cc3c9f..92993f2 100644 --- a/sys/dev/ispfw/asm_2500.h +++ b/sys/dev/ispfw/asm_2500.h @@ -30,1158 +30,1197 @@ * * * ******************************************************************** */ /* - * Firmware Version 7.03.00 (Apr 14, 2014) + * Firmware Version 8.03.00 (2015) */ #ifdef ISP_2500 static const uint32_t isp_2500_risc_code[] = { - 0x0501f042, 0x00112000, 0x00100000, 0x0000d32a, - 0x00000007, 0x00000003, 0x00000000, 0x000090d5, + 0x0501f06b, 0x00116000, 0x00100000, 0x0000daa9, + 0x00000008, 0x00000003, 0x00000000, 0x001090d5, 0x00000004, 0x00000000, 0x20434f50, 0x59524947, - 0x48542032, 0x30303720, 0x514c4f47, 0x49432043, + 0x48542032, 0x30313520, 0x514c4f47, 0x49432043, 0x4f52504f, 0x52415449, 0x4f4e2020, 0x20495350, 0x32357878, 0x20466972, 0x6d776172, 0x65202020, - 0x56657273, 0x696f6e20, 0x2020372e, 0x30332e30, + 0x56657273, 0x696f6e20, 0x2020382e, 0x30332e30, 0x30202024, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00100000, 0x00100000, - 0x0000d32a, 0xffffffff, 0x00112004, 0x00020000, - 0x000011a6, 0xffffffff, 0x001131af, 0x0000c000, - 0x00000aa2, 0x00ffffff, 0x00113c51, 0x00008000, - 0x00000703, 0x00ffffff, 0x00114354, 0x0000a000, - 0x00000621, 0x00ffffff, 0x00114975, 0x0000400e, + 0x0000daa9, 0xffffffff, 0x00116004, 0x00020000, + 0x000011e7, 0xffffffff, 0x001171f0, 0x0000c000, + 0x00000adf, 0x00ffffff, 0x00117ccf, 0x00008000, + 0x0000070b, 0x00ffffff, 0x001183da, 0x0000a000, + 0x0000062a, 0x00ffffff, 0x00118a04, 0x0000400e, 0x00000808, 0xffffffff, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x4203f000, 0x00021fff, - 0x40000000, 0x4203e000, 0x90000100, 0x40000000, - 0x42000800, 0x000211a7, 0x6002f000, 0x608c00e0, - 0x50000000, 0x8c000500, 0x05020003, 0x42000800, - 0x00020000, 0x45780800, 0x80040800, 0x82040580, - 0x00022000, 0x05fe07fc, 0x4178a000, 0x4200a800, - 0x0010d32a, 0x42000800, 0x00111b00, 0x40540000, - 0x8004b480, 0x0569f852, 0x0501ffcd, 0x600c6020, - 0x50304800, 0x8c240500, 0x0500001c, 0x59e00016, - 0x8c000504, 0x05020019, 0x0569f8a9, 0x604808fa, - 0x50041000, 0x82081500, 0xfffffffc, 0x90081d43, - 0x90081540, 0x84244d00, 0x440c0800, 0x44080800, - 0x44246000, 0x64030000, 0x4203e000, 0x70000000, - 0x4203e000, 0xb0300000, 0x603ff84e, 0x59e00016, - 0x8c000504, 0x05020002, 0x05fe47fd, 0x84244d40, - 0x44246000, 0x0569f892, 0x64030000, 0x0501fde5, - 0x4803c856, 0x0509fbf8, 0x6413c020, 0x4203e000, - 0x6000000f, 0x640f70e8, 0x640f78e8, 0x640da8e8, - 0x59e00023, 0x8c000500, 0x0502002b, 0x42002800, - 0x00100022, 0x58140800, 0x4817c857, 0x4807c857, - 0x800409c0, 0x0500000a, 0x58142002, 0x4813c857, - 0x58141003, 0x4c140000, 0x0501ff8c, 0x5c002800, - 0x0502003d, 0x90142c04, 0x05fdf7f3, 0x42002800, - 0x00100022, 0x5814a000, 0x4817c857, 0x4853c857, - 0x8050a1c0, 0x05000014, 0x4c140000, 0x5814a801, - 0x4857c857, 0x40500000, 0x80540480, 0x0500000b, - 0x82540480, 0x0000400e, 0x05020005, 0x9050a404, - 0x0509ff8a, 0x05020028, 0x0501f004, 0x5814b002, - 0x485bc857, 0x0565fff6, 0x5c002800, 0x90142c04, - 0x05fdf7e9, 0x050dfdf3, 0x42001000, 0x7ff481fe, - 0x59e00002, 0x8c00051e, 0x05020003, 0x42001000, - 0x7ff480fe, 0x50081000, 0x480b5092, 0x42002800, - 0x00100022, 0x58140801, 0x4817c857, 0x4807c857, - 0x800409c0, 0x05000023, 0x58142002, 0x4813c857, - 0x58141003, 0x4c140000, 0x82040480, 0x0000400e, - 0x05020004, 0x0509ff94, 0x4803c856, 0x0501f003, - 0x0501ff52, 0x05020004, 0x5c002800, 0x90142c04, - 0x05fdf7ed, 0x4803c856, 0x4a03c020, 0x00004010, - 0x4a03c011, 0x40100011, 0x05006000, 0x4203e000, - 0x40000000, 0x59e00017, 0x60000800, 0x8c00050a, - 0x050a0df0, 0x8d0c0530, 0x050a0de3, 0x050a0de5, - 0x6403c017, 0x4203e000, 0x30000001, 0x0501f000, - 0x4803c856, 0x59e00024, 0x8c000500, 0x050a0f32, - 0x0501ffca, 0x4a03c014, 0x001c001c, 0x4817c857, - 0x0501fff8, 0x42002000, 0x00111b00, 0x0565ffc3, - 0x59a800a1, 0x800001c0, 0x0500000c, 0x59a800ca, - 0x8c000500, 0x05000005, 0x59a8000a, 0x82000480, - 0x0013ffff, 0x05001005, 0x59a820a1, 0x80102000, - 0x59a8280a, 0x0565ffb5, 0x0569f9db, 0x0569fa02, - 0x59a8280a, 0x60000812, 0x60001802, 0x4807503b, - 0x480f529c, 0x60c01000, 0x053dfe68, 0x82040c00, - 0x00111b00, 0x4807500b, 0x600400de, 0x50000000, - 0x8c000502, 0x05000004, 0x59a800ca, 0x84000540, - 0x480350ca, 0x4a03c810, 0x00100000, 0x4a03c811, - 0x0010d32a, 0x0501ff90, 0x6447c829, 0x59e40001, - 0x82000540, 0x0003401f, 0x4803c801, 0x4a03c802, - 0x00000933, 0x59e00003, 0x82000540, 0x00240000, - 0x4803c003, 0x64ffc019, 0x60701000, 0x0501fedf, - 0x4202c000, 0x00111b00, 0x59aab00b, 0x59aaa00b, - 0x59aaa80b, 0x59aac83b, 0x4967509b, 0x496754dd, - 0x59a8000b, 0x4803500c, 0x0501fffe, 0x0549fa90, - 0x0505f807, 0x0505f875, 0x0509ffb5, 0x59a80084, - 0x8c000508, 0x05000004, 0x050dfebf, 0x0525f87d, - 0x050dffef, 0x0505f9b8, 0x0505ffb0, 0x053dfe71, - 0x0501fc55, 0x0515f812, 0x0531fb18, 0x052dfc90, - 0x0539fd03, 0x0509ffe6, 0x0509fe0f, 0x4203e000, - 0xf0000001, 0x0569f9c9, 0x6403c018, 0x4203e000, - 0xa0000001, 0x59a800ca, 0x80000540, 0x05000004, - 0x4203e000, 0x20000551, 0x0501f003, 0x4203e000, - 0x20000511, 0x4203e000, 0x50010000, 0x6403c020, - 0x05027019, 0x59e00020, 0x90000582, 0x05020016, - 0x4a03c020, 0x00004000, 0x4a03c011, 0x40000010, - 0x05006000, 0x4203e000, 0x40000000, 0x4df00000, - 0x4203e000, 0x50000000, 0x59e00017, 0x60000800, - 0x8c00050a, 0x00020892, 0x8d0c0530, 0x050a0d5a, - 0x000209bc, 0x5c03e000, 0x6403c017, 0x4203e000, - 0x30000001, 0x6002d800, 0x4203e000, 0xb0600000, - 0x59a800d5, 0x4003f800, 0x0001f004, 0x4df00000, - 0x4203e000, 0x50000000, 0x416c0000, 0x90000c88, - 0x05021c5e, 0x0c01f803, 0x5c03e000, 0x0001f006, - 0x00100189, 0x0010019a, 0x001002bf, 0x00100188, - 0x001003fa, 0x00100188, 0x00100188, 0x00100592, - 0x0501fc52, 0x42000800, 0x0010dceb, 0x5804001e, - 0x8c000500, 0x0500000c, 0x84000500, 0x4800081e, - 0x6012d800, 0x0501fe6d, 0x49f3c857, 0x5c000800, - 0x5c000000, 0x82000540, 0x00007e20, 0x4c000000, - 0x4c040000, 0x1c01f000, 0x41780000, 0x800001c0, - 0x05020039, 0x59c4000d, 0x8c00051e, 0x0502001f, - 0x59a800a7, 0x8c000500, 0x05000012, 0x60300830, - 0x050dfc0d, 0x90040560, 0x60300830, 0x4c000000, - 0x050dfc0e, 0x6041d04e, 0x0539fe5b, 0x5c000000, - 0x8400050a, 0x60300830, 0x050dfc08, 0x6191d000, - 0x0539fe55, 0x59c4000d, 0x8c00051e, 0x0502000b, - 0x59c40005, 0x8c000500, 0x05020008, 0x050dff96, - 0x640b50b4, 0x64075075, 0x6012d800, 0x42000000, - 0x0010e4be, 0x0565f622, 0x0501fe39, 0x052dfeef, - 0x0500000f, 0x052dfeff, 0x05020032, 0x5994002d, - 0x82000580, 0x001051ae, 0x05020004, 0x5994002c, - 0x800001c0, 0x0502002b, 0x59c40006, 0x82000540, - 0x000000c0, 0x48038806, 0x0501f026, 0x052dfe62, - 0x916c0581, 0x050200c5, 0x59a8003f, 0x90000589, - 0x050200c2, 0x497b503d, 0x42000800, 0xffffd815, - 0x0511fcf2, 0x42024800, 0x0010e512, 0x497a4805, - 0x64078893, 0x4a038805, 0x000000f0, 0x052dfedb, - 0x59c41006, 0x05020006, 0x82081540, 0x000000f1, - 0x82081500, 0xbbffffff, 0x0501f003, 0x82081540, - 0x440000f1, 0x480b8806, 0x0539fe23, 0x0541fb6d, - 0x0501f8ab, 0x050000a9, 0x42000000, 0x0010e39b, - 0x0565fdec, 0x60c01100, 0x497b50b2, 0x0501f036, - 0x0525f9b0, 0x59c400a4, 0x9000050f, 0x90000487, - 0x0502109e, 0x0539fe14, 0x59c400a3, 0x82000500, - 0xffefffff, 0x480388a3, 0x59a800bd, 0x800001c0, - 0x05020003, 0x0525ff01, 0x0501f094, 0x59a80043, - 0x84000546, 0x48035043, 0x052dfeae, 0x59c41006, - 0x05020006, 0x82081540, 0x44000001, 0x82081500, - 0xffffff0f, 0x0501f003, 0x82081540, 0x440000f1, - 0x480b8806, 0x497b9005, 0x0501f885, 0x05000083, - 0x60000000, 0x052dfc3b, 0x4a038802, 0x0000ffff, - 0x4a0378e4, 0x00003000, 0x42007000, 0x0010e060, - 0x58380401, 0x8c000508, 0x05020003, 0x4a01a8e4, - 0x0000c000, 0x42000000, 0x0010e392, 0x0565fdb9, - 0x59a8103d, 0x600c0800, 0x0541fb1b, 0x60401100, - 0x59a81809, 0x0521fdb3, 0x59a804cc, 0x82000500, - 0xffffff40, 0x480354cc, 0x59a80249, 0x84000518, - 0x48035249, 0x59c40001, 0x82000500, 0x00018000, - 0x82000580, 0x00018000, 0x59c400a3, 0x05020004, - 0x82000540, 0x00001000, 0x0501f003, 0x82000500, - 0xffffefff, 0x480388a3, 0x59c80015, 0x84000548, - 0x48039015, 0x050dfacb, 0x59a81008, 0x84081500, - 0x480b5008, 0x850e1d0a, 0x0529fd8a, 0x052dfe67, - 0x05000007, 0x8d0c0506, 0x05000005, 0x640750b2, - 0x850e1d0e, 0x0525fa79, 0x0501f048, 0x0529fe89, - 0x05000005, 0x59c41002, 0x8408150c, 0x480b8802, - 0x0501f017, 0x052dfe59, 0x05020005, 0x59a80046, - 0x80000540, 0x05540e1d, 0x0501f011, 0x0555fe1b, - 0x59a80249, 0x8c000506, 0x0502000d, 0x59a80046, - 0x80000540, 0x05020007, 0x59a81c49, 0x820c0580, - 0x0000ffff, 0x05000006, 0x8c0c0508, 0x05000004, - 0x4a035449, 0x0000ffff, 0x0525ffb4, 0x497b504b, - 0x497b504a, 0x497b50b3, 0x052dfe40, 0x59a81249, - 0x05020009, 0x050df8bd, 0x80001580, 0x59a8004d, - 0x82000500, 0xffff0000, 0x80040d40, 0x4807504d, - 0x0501f005, 0x59a8004d, 0x82000500, 0xffff0000, - 0x4803504d, 0x599c0017, 0x8c00050a, 0x05000002, - 0x84081544, 0x480b5249, 0x052dfe2c, 0x05000003, - 0x050df8aa, 0x48078880, 0x60141000, 0x0541ffae, - 0x497b504b, 0x497b5044, 0x4a035045, 0x0000ffff, - 0x4a01a8e4, 0x000000c0, 0x600ad800, 0x052dfe1f, - 0x05000005, 0x59a80249, 0x9000050c, 0x90000584, - 0x05000002, 0x0511fa30, 0x1c01f000, 0x0521fe7f, - 0x05020026, 0x599c0019, 0x82000500, 0x0000e000, - 0x82000580, 0x00004000, 0x05020020, 0x59c40001, - 0x82000d00, 0x00018000, 0x82040580, 0x00010000, - 0x05000004, 0x82040580, 0x00008000, 0x05020017, - 0x59a800a6, 0x90000483, 0x05001003, 0x90000541, - 0x0501f012, 0x050dfe6f, 0x64075075, 0x4a035076, - 0xaabbccdd, 0x64135069, 0x6403506a, 0x6012d800, - 0x59a800a6, 0x80000000, 0x480350a6, 0x59a800a5, - 0x82000500, 0xfffffff8, 0x90000544, 0x480350a5, - 0x0501fd42, 0x80000580, 0x1c01f000, 0x0525f854, - 0x05000051, 0x59a80249, 0x90000523, 0x900005a3, - 0x0502004d, 0x0525f853, 0x0500004b, 0x4a038802, - 0x0000ffbf, 0x59a804cc, 0x8c00050c, 0x0502012e, - 0x8c000506, 0x0502000b, 0x8c000508, 0x0502012a, - 0x84000548, 0x480354cc, 0x0525f84b, 0x05000004, - 0x417a5800, 0x0559fcae, 0x0501f123, 0x0501f0ea, - 0x8c00050a, 0x05020038, 0x8400054a, 0x480354cc, - 0x497b504b, 0x497b504a, 0x497b5044, 0x4a035045, - 0x0000ffff, 0x59a80249, 0x82000500, 0xffffff7c, - 0x48035249, 0x42024800, 0x0010e512, 0x59240200, - 0x82000500, 0xffffff1f, 0x48024a00, 0x59a802cc, - 0x5924100b, 0x82081500, 0x00001fff, 0x80080580, - 0x05000012, 0x4d3c0000, 0x4d300000, 0x4d400000, - 0x60aa8000, 0x417a6000, 0x600a7800, 0x41780800, - 0x0511fc4a, 0x5c028000, 0x5c026000, 0x5c027800, - 0x59a802cc, 0x5924080b, 0x82040d00, 0xffffe000, - 0x80040540, 0x4802480b, 0x4d300000, 0x417a6000, - 0x0511fbeb, 0x5c026000, 0x4803c856, 0x5924000c, - 0x800001c0, 0x05020006, 0x0001f817, 0x050000ee, - 0x492e480c, 0x5924000b, 0x48025802, 0x0511f9b6, - 0x0501f0e9, 0x59a80045, 0x82000580, 0x0000ffff, - 0x05000003, 0x0511f9b0, 0x0501f0e3, 0x0565fdfe, - 0x05000017, 0x0565fe01, 0x05000008, 0x052dfd93, - 0x05000006, 0x59a80249, 0x8c000506, 0x0500004e, - 0x0529fdb8, 0x050200d8, 0x80000580, 0x0509ff61, - 0x600ed800, 0x4a035045, 0x0000ffff, 0x4a01a8e4, - 0x00000080, 0x4a038802, 0x0000ffff, 0x850e1d02, - 0x0541fd6a, 0x0501fcb8, 0x0501f0cb, 0x59a80249, - 0x8c00050a, 0x05020003, 0x8c000506, 0x05000037, - 0x8c000500, 0x05000035, 0x4a038802, 0x0000ffbf, - 0x8c000502, 0x05000031, 0x0521ffde, 0x05020004, - 0x599c0018, 0x8c000516, 0x05020029, 0x59a8004a, - 0x82000580, 0x0000ffff, 0x05000020, 0x0521ffd5, - 0x05000006, 0x59a804cc, 0x8c000500, 0x05000003, - 0x0511fc27, 0x0501f008, 0x41781800, 0x0565fddb, - 0x05000002, 0x60401800, 0x59a80249, 0x8c00050a, - 0x05120a8a, 0x42024800, 0x0010e512, 0x417a4000, - 0x59240200, 0x82000500, 0x000000e0, 0x82000580, - 0x000000e0, 0x050200a0, 0x050dff2c, 0x59a80249, - 0x8c000504, 0x0502009c, 0x600c1000, 0x417a5800, - 0x050dff4b, 0x0501f098, 0x59a80249, 0x8c00051c, - 0x05020003, 0x8c000504, 0x05fc07f8, 0x59a8004b, - 0x80000540, 0x05020090, 0x59a80249, 0x8c000508, - 0x05020017, 0x59a80044, 0x80000540, 0x0502008a, - 0x59a80249, 0x8c00050e, 0x0500000c, 0x8c000502, - 0x0502000a, 0x052dfd39, 0x05000083, 0x82000500, - 0xffffff77, 0x48035249, 0x4a035045, 0x0000ffff, - 0x0511f949, 0x0501f07c, 0x0565fda8, 0x0500000c, - 0x0511fcc7, 0x05020078, 0x0501f009, 0x599c1819, - 0x8c0c0510, 0x05000004, 0x8c000502, 0x0502001d, - 0x0501f071, 0x8c000516, 0x0500006f, 0x0529fd4d, - 0x0502006d, 0x0521ff8b, 0x05020004, 0x599c0018, - 0x8c000516, 0x05020003, 0x052df90d, 0x05020066, - 0x59a80006, 0x8c00051c, 0x05020004, 0x599c0017, - 0x8c00050a, 0x0500000b, 0x61c0b00f, 0x417a8800, - 0x0001fb00, 0x05020004, 0x59340200, 0x8c00051a, - 0x05020059, 0x81468800, 0x8058b040, 0x05fe07f9, - 0x0565fda3, 0x05000004, 0x4a038802, 0x0000ffbf, - 0x0501f003, 0x4a038802, 0x0000ffff, 0x42001800, - 0x0010dd46, 0x0501fd73, 0x42001800, 0x0010dd53, - 0x0501fd70, 0x850e1d02, 0x4a01a8e4, 0x00000080, - 0x600ed800, 0x4a035045, 0x0000ffff, 0x0501fc2e, - 0x80000580, 0x0509fecb, 0x497b50a6, 0x64075078, - 0x0521ff5c, 0x0502000b, 0x599c0018, 0x8c000516, - 0x05000008, 0x59a804cc, 0x8c00050e, 0x05020036, - 0x8400054e, 0x480354cc, 0x0521fcda, 0x0501f016, - 0x59a81a49, 0x59a82041, 0x82102580, 0x0000aaaa, - 0x05000004, 0x8c0c0506, 0x05020002, 0x480f5449, - 0x8c0c0508, 0x05000007, 0x599c1819, 0x8c0c0510, - 0x05000004, 0x61f8180f, 0x60102000, 0x0501f003, - 0x61fc19ff, 0x60182000, 0x60003000, 0x417a4000, - 0x0521fc6c, 0x052dfce3, 0x0500000a, 0x59c40006, - 0x052dfcce, 0x05000004, 0x82000500, 0xffffff0f, - 0x0501f003, 0x82000500, 0xfbffffff, 0x48038806, - 0x0521ff30, 0x0500000a, 0x59a804cc, 0x8c000500, - 0x05000007, 0x59c40801, 0x82040d40, 0x00004000, - 0x48078801, 0x64c378e4, 0x0501f006, 0x59c40801, - 0x82040d00, 0xffffbfff, 0x48078801, 0x648378e4, - 0x0541fc9e, 0x1c01f000, 0x4c040000, 0x4c080000, - 0x4c100000, 0x59a8006a, 0x90000c84, 0x050219db, - 0x0c01f805, 0x5c002000, 0x5c001000, 0x5c000800, - 0x1c01f000, 0x00100409, 0x001004a3, 0x001004c8, - 0x00100576, 0x60380938, 0x050df9a7, 0x90040550, - 0x82000500, 0xfffffff7, 0x60380938, 0x050df9a7, - 0x59c410a3, 0x84081518, 0x480b88a3, 0x0521fd03, - 0x05020021, 0x599c0019, 0x82000500, 0x0000e000, - 0x82000580, 0x00004000, 0x0502001b, 0x59a808a5, - 0x90040d07, 0x90040580, 0x0502000b, 0x59a80069, - 0x90000582, 0x05000011, 0x050df8ea, 0x497b5068, - 0x050dfce9, 0x640f5076, 0x640b5069, 0x64075075, - 0x0501f00a, 0x90040584, 0x05020008, 0x497b2804, - 0x497b2805, 0x050dfcef, 0x64075075, 0x4a035076, - 0xaabbccdd, 0x64135069, 0x59a800a5, 0x80000000, - 0x480350a5, 0x60000001, 0x0509fe4e, 0x0539fbd6, - 0x59c408a3, 0x82040d00, 0xfffffff7, 0x480788a3, - 0x052dfc78, 0x0500000d, 0x052dfc82, 0x0500000b, - 0x052dfc7a, 0x05020999, 0x59c400a3, 0x84000532, - 0x84000570, 0x480388a3, 0x052dffa3, 0x4a038808, - 0x00000208, 0x0501f012, 0x59c400a3, 0x84000530, - 0x82000500, 0xbf7fffff, 0x480388a3, 0x61e00801, - 0x0525fd72, 0x59c400a3, 0x82000540, 0x00018000, - 0x8400051c, 0x480388a3, 0x82000500, 0xfffeffff, - 0x480388a3, 0x4a038808, 0x00000200, 0x59c40006, - 0x82000500, 0xfbffff0e, 0x48038806, 0x497b282c, - 0x497b282d, 0x61d00803, 0x42001000, 0x00100590, - 0x0539fa3c, 0x59c40805, 0x64078805, 0x0509fefb, - 0x05020006, 0x60040000, 0x050df8db, 0x60040000, - 0x050df8a9, 0x0501f01e, 0x0509fefa, 0x05020006, - 0x41780000, 0x050df8d4, 0x41780000, 0x050df8a2, - 0x0501f017, 0x0509fef9, 0x05020006, 0x60080000, - 0x050df8cd, 0x60080000, 0x050df89b, 0x0501f010, - 0x0509fef8, 0x05020006, 0x600c0000, 0x050df8c6, - 0x600c0000, 0x050df894, 0x0501f009, 0x0509fef7, - 0x05020956, 0x59a80075, 0x800001c0, 0x05000004, - 0x0509fef7, 0x6407506a, 0x0501f018, 0x050df914, - 0x6407506a, 0x052dfc27, 0x05000008, 0x052dfc31, - 0x05000006, 0x052dfc29, 0x05020948, 0x64075042, - 0x052dfb9d, 0x0501f00d, 0x59c400a4, 0x9000050f, - 0x90000588, 0x05000003, 0x4a038805, 0x04000000, - 0x59c400a3, 0x82000540, 0x0001c000, 0x480388a3, - 0x84000520, 0x480388a3, 0x1c01f000, 0x0501f8e9, - 0x05020003, 0x640f506a, 0x0501f021, 0x0509fed3, - 0x0502000d, 0x59a80075, 0x800001c0, 0x0500000a, - 0x0509fed3, 0x59a80074, 0x8c00051e, 0x05000018, - 0x052dfc0a, 0x05020006, 0x64075042, 0x052dfb7e, - 0x0501f003, 0x050df8be, 0x05020011, 0x050df855, - 0x640b506a, 0x497b5075, 0x59c400a3, 0x84000520, - 0x480388a3, 0x052dfbfd, 0x05000009, 0x0521fc57, - 0x05000007, 0x497b282c, 0x497b282d, 0x60b40800, - 0x42001000, 0x00100590, 0x0539f9da, 0x1c01f000, - 0x0501f8c4, 0x05020003, 0x640f506a, 0x0501f0a9, - 0x4a038805, 0x000000f0, 0x050df8a5, 0x050200a0, - 0x050dfab0, 0x05000017, 0x050dfa95, 0x05020015, - 0x050dfa9e, 0x0502000a, 0x59a80076, 0x90000584, - 0x05fc07f2, 0x0509fe9b, 0x0502000e, 0x59a80076, - 0x82000580, 0xaabbccdd, 0x05fc07ec, 0x59a80076, - 0x90000580, 0x05fc07e9, 0x0509fe80, 0x05020005, - 0x59a80076, 0x82000580, 0xaabbccdd, 0x05fc07e3, - 0x59a800a7, 0x8c000500, 0x0502000b, 0x59a80884, - 0x8c04050c, 0x05020008, 0x60380938, 0x050df8c2, - 0x90040548, 0x82000500, 0xffffffef, 0x60380938, - 0x050df8c2, 0x050dfa8b, 0x05000032, 0x0521fe5a, - 0x0500000c, 0x4a03c014, 0x00200020, 0x59c40001, - 0x82000500, 0x00018000, 0x82000580, 0x00018000, - 0x05020026, 0x4a03c013, 0x00200020, 0x0501f025, - 0x4a03c013, 0x03800300, 0x4a03c014, 0x03800380, + 0x00000000, 0x00000000, 0x00000009, 0x0000000c, + 0x0000000f, 0x00000012, 0x00000015, 0x00000000, + 0x00000000, 0x0000000f, 0x00000000, 0x00000000, + 0x00000000, 0x00100046, 0x00100045, 0x00000000, + 0x00100046, 0x00000000, 0x00000000, 0x00100046, + 0x00100045, 0x00100042, 0x00100046, 0x00100045, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, + 0x00000000, 0x00100046, 0x00000000, 0x00000000, + 0x00000000, 0x00000000, 0x00000000, 0x00100046, + 0x00100046, 0x00100046, 0x00000000, 0x00100046, + 0x00000000, 0x00000000, 0x00000000, 0x4203f000, + 0x00021fff, 0x40000000, 0x4203e000, 0x90000100, + 0x40000000, 0x42000800, 0x000211e8, 0x6002f000, + 0x608c00e0, 0x50000000, 0x8c000500, 0x05020003, + 0x42000800, 0x00020000, 0x45780800, 0x80040800, + 0x82040580, 0x00022000, 0x05fe07fc, 0x4178a000, + 0x4200a800, 0x0010daa9, 0x42000800, 0x00115aa4, + 0x40540000, 0x8004b480, 0x0569ffa4, 0x0501ffd3, + 0x600c6020, 0x50304800, 0x8c240500, 0x0500001c, + 0x59e00016, 0x8c000504, 0x05020019, 0x0569fffb, + 0x604808fa, 0x50041000, 0x82081500, 0xfffffffc, + 0x90081d43, 0x90081540, 0x84244d00, 0x440c0800, + 0x44080800, 0x44246000, 0x64030000, 0x4203e000, + 0x70000000, 0x4203e000, 0xb0300000, 0x603ff84e, + 0x59e00016, 0x8c000504, 0x05020002, 0x05fe47fd, + 0x84244d40, 0x44246000, 0x0569ffe4, 0x64030000, + 0x0501fdf7, 0x4803c856, 0x0509fc3e, 0x6413c020, + 0x4203e000, 0x6000000f, 0x640f70e8, 0x640f78e8, + 0x640da8e8, 0x59e00023, 0x8c000500, 0x0502002b, + 0x42002800, 0x00100022, 0x58140800, 0x4817c857, + 0x4807c857, 0x800409c0, 0x0500000a, 0x58142002, + 0x4813c857, 0x58141003, 0x4c140000, 0x0501ff92, + 0x5c002800, 0x0502003d, 0x90142c04, 0x05fdf7f3, + 0x42002800, 0x00100022, 0x5814a000, 0x4817c857, + 0x4853c857, 0x8050a1c0, 0x05000014, 0x4c140000, + 0x5814a801, 0x4857c857, 0x40500000, 0x80540480, + 0x0500000b, 0x82540480, 0x0000400e, 0x05020005, + 0x9050a404, 0x0509ffd2, 0x05020028, 0x0501f004, + 0x5814b002, 0x485bc857, 0x0569ff48, 0x5c002800, + 0x90142c04, 0x05fdf7e9, 0x050dfe4a, 0x42001000, + 0x7ff481fe, 0x59e00002, 0x8c00051e, 0x05020003, + 0x42001000, 0x7ff480fe, 0x50081000, 0x480b5095, + 0x42002800, 0x00100022, 0x58140801, 0x4817c857, + 0x4807c857, 0x800409c0, 0x05000023, 0x58142002, + 0x4813c857, 0x58141003, 0x4c140000, 0x82040480, + 0x0000400e, 0x05020004, 0x0509ffdc, 0x4803c856, + 0x0501f003, 0x0501ff58, 0x05020004, 0x5c002800, + 0x90142c04, 0x05fdf7ed, 0x4803c856, 0x4a03c020, + 0x00004010, 0x4a03c011, 0x40100011, 0x05006000, + 0x4203e000, 0x40000000, 0x59e00017, 0x60000800, + 0x8c00050a, 0x050a0e38, 0x8d0c0530, 0x050a0e2b, + 0x050a0e2d, 0x6403c017, 0x4203e000, 0x30000001, + 0x0501f000, 0x4803c856, 0x59e00024, 0x8c000500, + 0x050a0f7a, 0x59e00024, 0x8c00050e, 0x05000003, + 0x4a020200, 0x00003800, 0x0501ffd3, 0x4a03c014, + 0x001c001c, 0x4817c857, 0x0505f801, 0x42002000, + 0x00115aa4, 0x0569ff10, 0x59a800a4, 0x800001c0, + 0x0500000c, 0x59a800cf, 0x8c000500, 0x05000005, + 0x59a8000a, 0x82000480, 0x0013ffff, 0x05001005, + 0x59a820a4, 0x80102000, 0x59a8280a, 0x0569ff02, + 0x056df92b, 0x056df953, 0x59a8280a, 0x60800812, + 0x60001802, 0x4807503d, 0x480f529f, 0x900d0420, + 0x800404a0, 0x4803543e, 0x60c01000, 0x0541faf0, + 0x82040c00, 0x00115aa4, 0x4807500b, 0x600400de, + 0x50000000, 0x8c000502, 0x05000004, 0x59a800cf, + 0x84000540, 0x480350cf, 0x4a03c810, 0x00100000, + 0x4a03c811, 0x0010daa9, 0x0501ff96, 0x6447c829, + 0x59e40001, 0x82000540, 0x0003401f, 0x4803c801, + 0x4a03c802, 0x00000933, 0x59e00003, 0x82000540, + 0x00240000, 0x4803c003, 0x64ffc019, 0x60701000, + 0x0501fedd, 0x4202c000, 0x00115aa4, 0x42017800, + 0x00115aa4, 0x59aab00b, 0x59aaa00b, 0x59aaa80b, + 0x59aac83d, 0x4967509e, 0x496754e2, 0x59a8000b, + 0x4803500c, 0x0505f802, 0x0549ff51, 0x0505f80b, + 0x0505f898, 0x0509fff9, 0x59a80087, 0x8c000508, + 0x05000004, 0x050dff0c, 0x0525f9f0, 0x0511f83c, + 0x0505f9e7, 0x0509f81c, 0x0541faf7, 0x0501fc59, + 0x0515f887, 0x0531fdd5, 0x052dff41, 0x053df8ea, + 0x050df82a, 0x0509fe4d, 0x4203e000, 0xf0000001, + 0x056df915, 0x6403c018, 0x4203e000, 0xa0000001, + 0x59a800cf, 0x80000540, 0x05000004, 0x4203e000, + 0x20000551, 0x0501f003, 0x4203e000, 0x20000511, + 0x4203e000, 0x50010000, 0x6403c020, 0x05027019, + 0x59e00020, 0x90000582, 0x05020016, 0x4a03c020, + 0x00004000, 0x4a03c011, 0x40000010, 0x05006000, + 0x4203e000, 0x40000000, 0x4df00000, 0x4203e000, + 0x50000000, 0x59e00017, 0x60000800, 0x8c00050a, + 0x0002089a, 0x8d0c0530, 0x050a0d98, 0x000209c4, + 0x5c03e000, 0x6403c017, 0x4203e000, 0x30000001, + 0x6002d800, 0x4203e000, 0xb0600000, 0x59a800da, + 0x4003f800, 0x0001f004, 0x4df00000, 0x4203e000, + 0x50000000, 0x416c0000, 0x90000c88, 0x05021c66, + 0x0c01f803, 0x5c03e000, 0x0001f006, 0x001001bc, + 0x001001cd, 0x001002f2, 0x001001bb, 0x00100431, + 0x001001bb, 0x001001bb, 0x001005c9, 0x0501fc5a, + 0x42000800, 0x00111c71, 0x5804001e, 0x8c000500, + 0x0500000c, 0x84000500, 0x4800081e, 0x6012d800, + 0x0501fe69, 0x49f3c857, 0x5c000800, 0x5c000000, + 0x82000540, 0x00007e20, 0x4c000000, 0x4c040000, + 0x1c01f000, 0x41780000, 0x800001c0, 0x05020039, + 0x59c4000d, 0x8c00051e, 0x0502001f, 0x59a800aa, + 0x8c000500, 0x05000012, 0x60300830, 0x050dfc5a, + 0x90040560, 0x60300830, 0x4c000000, 0x050dfc5b, + 0x6041d04e, 0x053dfa93, 0x5c000000, 0x8400050a, + 0x60300830, 0x050dfc55, 0x6191d000, 0x053dfa8d, + 0x59c4000d, 0x8c00051e, 0x0502000b, 0x59c40005, + 0x8c000500, 0x05020008, 0x050dffe3, 0x640b50b9, + 0x64075078, 0x6012d800, 0x42000000, 0x00112462, + 0x0569f56a, 0x0501fe35, 0x0531f9a6, 0x0500000f, + 0x0531f9b6, 0x05020032, 0x5994002e, 0x82000580, + 0x001053a5, 0x05020004, 0x5994002d, 0x800001c0, + 0x0502002b, 0x59c40006, 0x82000540, 0x000000c0, + 0x48038806, 0x0501f026, 0x0531f913, 0x916c0581, + 0x050200c5, 0x59a80042, 0x90000589, 0x050200c2, + 0x497b5040, 0x42000800, 0xffffd815, 0x0511fd66, + 0x42024800, 0x001124b6, 0x497a4805, 0x64078893, + 0x4a038805, 0x000000f0, 0x0531f992, 0x59c41006, + 0x05020006, 0x82081540, 0x000000f1, 0x82081500, + 0xbbffffff, 0x0501f003, 0x82081540, 0x440000f1, + 0x480b8806, 0x053dfa5b, 0x0541fff8, 0x0501f8ab, + 0x050000a9, 0x42000000, 0x0011233c, 0x0569fd34, + 0x60c01100, 0x497b50b7, 0x0501f036, 0x0525fb72, + 0x59c400a4, 0x9000050f, 0x90000487, 0x0502109e, + 0x053dfa4c, 0x59c400a3, 0x82000500, 0xffefffff, + 0x480388a3, 0x59a800c2, 0x800001c0, 0x05020003, + 0x0529f8c5, 0x0501f094, 0x59a80046, 0x84000546, + 0x48035046, 0x0531f965, 0x59c41006, 0x05020006, + 0x82081540, 0x44000001, 0x82081500, 0xffffff0f, + 0x0501f003, 0x82081540, 0x440000f1, 0x480b8806, + 0x497b9005, 0x0501f885, 0x05000083, 0x60000000, + 0x052dfeec, 0x4a038802, 0x0000ffff, 0x4a0378e4, + 0x00003000, 0x42007000, 0x00111ffa, 0x58380401, + 0x8c000508, 0x05020003, 0x4a01a8e4, 0x0000c000, + 0x42000000, 0x00112333, 0x0569fd01, 0x59a81040, + 0x600c0800, 0x0541ffa6, 0x60401100, 0x59a81809, + 0x0521ff1d, 0x59a804d1, 0x82000500, 0xffffff40, + 0x480354d1, 0x59a8024c, 0x84000518, 0x4803524c, 0x59c40001, 0x82000500, 0x00018000, 0x82000580, - 0x00018000, 0x0502000c, 0x60880801, 0x61d81000, - 0x60201800, 0x0521fe44, 0x050008c8, 0x60880801, - 0x61b81000, 0x60201800, 0x0521fe3f, 0x050008c3, - 0x0501f00b, 0x60880801, 0x61d81000, 0x60201800, - 0x0521fe47, 0x050008bd, 0x60880801, 0x61b81000, - 0x60201800, 0x0521fe42, 0x050008b8, 0x4a03c014, - 0x03800000, 0x0501f003, 0x4a03c013, 0x00200000, - 0x052dfb92, 0x0500003d, 0x59c400a4, 0x9000050f, - 0x90000588, 0x05000021, 0x59c40005, 0x8c000534, - 0x0502001e, 0x5994002e, 0x800001c0, 0x05000007, - 0x0501fae3, 0x90000402, 0x5994082c, 0x80040480, - 0x0502103c, 0x0501f004, 0x5994002c, 0x90000482, - 0x05021038, 0x052dfb83, 0x05020036, 0x4a038805, - 0x000000f0, 0x052dfbad, 0x4a035041, 0x0000aaaa, - 0x64035042, 0x59c408a3, 0x90040d48, 0x480788a3, - 0x6006d800, 0x6403506a, 0x64078805, 0x497b282c, - 0x497b282d, 0x0501f019, 0x052dfb72, 0x05020007, - 0x59a80041, 0x82000580, 0x0000aaaa, 0x05020003, - 0x4a03503d, 0x00ffffff, 0x497b5041, 0x59c40006, - 0x82000540, 0x04000001, 0x48038806, 0x8d0c0506, - 0x05020004, 0x59c408a3, 0x90040d48, 0x480788a3, - 0x6006d800, 0x6403506a, 0x64078805, 0x497b282c, - 0x497b282d, 0x0501f00f, 0x59c40005, 0x82000500, - 0x000000c0, 0x0500000b, 0x59c40006, 0x82000540, - 0x000000f1, 0x48038806, 0x05fdf7f2, 0x0509fe0b, - 0x05020004, 0x59a80075, 0x800001c0, 0x05fe0757, - 0x497b8885, 0x1c01f000, 0x4803c856, 0x0521fb9f, - 0x05020005, 0x050dfbc2, 0x42000000, 0x0010e4bf, - 0x0565fa63, 0x60000001, 0x0509fd06, 0x6403506a, - 0x0509fdfa, 0x05020009, 0x59a80068, 0x800001c0, - 0x05000004, 0x80000040, 0x48035068, 0x05020003, - 0x642b5068, 0x64075075, 0x497b8885, 0x0501f22c, - 0x5994002c, 0x5994082d, 0x80040540, 0x1c01f000, - 0x497b282d, 0x1c01f000, 0x4a038805, 0x000000f0, - 0x1c01f000, 0x641f5093, 0x640f5094, 0x64035095, - 0x4a035096, 0x000090d5, 0x052dfe64, 0x4a035449, - 0x0000ffff, 0x4a03503d, 0x00ffffff, 0x0555fad7, - 0x4a03504d, 0x20200000, 0x4a03504e, 0x88000200, - 0x4a03504f, 0x00ff001f, 0x4a035050, 0x000007d0, - 0x4a035051, 0x80000a00, 0x4a035052, 0xa0000200, - 0x4a035053, 0x00ff0004, 0x4a035054, 0x00010000, - 0x4a035055, 0x80000000, 0x4a035056, 0x00000200, - 0x4a035057, 0x00ff0000, 0x4a035058, 0x00010000, - 0x4a03505f, 0x514c4f47, 0x4a035060, 0x49432020, - 0x1c01f000, 0x4d440000, 0x417a8800, 0x4c5c0000, - 0x4178b800, 0x0001fb00, 0x05020004, 0x0529fc62, - 0x05020002, 0x805cb800, 0x81468800, 0x83440580, - 0x000007f0, 0x05fe07f8, 0x405c0800, 0x5c00b800, - 0x5c028800, 0x1c01f000, 0x4803c857, 0x5c000000, - 0x4c000000, 0x4803c857, 0x0501f808, 0x485fc857, - 0x4203e000, 0x50000000, 0x5c000000, 0x4d780000, - 0x6008b900, 0x0501f005, 0x485fc857, 0x4203e000, - 0x50000000, 0x6008b900, 0x05006000, 0x4c000000, - 0x4c040000, 0x59bc00ea, 0x4803c857, 0x90000507, - 0x90000581, 0x05020003, 0x60000800, 0x053dff51, - 0x59b800ea, 0x4803c857, 0x641370e8, 0x5c000800, - 0x4807c025, 0x80040920, 0x4807c026, 0x5c000000, - 0x4803c023, 0x80000120, 0x4803c024, 0x5c000000, - 0x4803c857, 0x4803c021, 0x80000120, 0x4803c022, - 0x41f80000, 0x4803c029, 0x80000120, 0x4803c02a, - 0x41780800, 0x4807c027, 0x59a800af, 0x8c00050a, - 0x05000005, 0x59e00027, 0x8400054a, 0x4803c857, - 0x4803c027, 0x0565fafa, 0x0500004a, 0x42000800, - 0x001105c8, 0x46000800, 0xfaceface, 0x80040800, - 0x4c080000, 0x4c0c0000, 0x600010f4, 0x58080013, - 0x44000800, 0x80040800, 0x58080022, 0x44000800, - 0x80040800, 0x58080023, 0x44000800, 0x80040800, - 0x58080024, 0x44000800, 0x80040800, 0x58080025, - 0x44000800, 0x80040800, 0x58080028, 0x44000800, - 0x80040800, 0x610010f4, 0x602c1800, 0x50080000, - 0x44000800, 0x80081000, 0x80040800, 0x800c1840, - 0x05fe07fb, 0x600c1800, 0x600010f6, 0x480c1003, - 0x58080005, 0x44000800, 0x80040800, 0x800c1840, - 0x05fe17fb, 0x600010f8, 0x58080002, 0x44000800, - 0x80040800, 0x58080003, 0x44000800, 0x80040800, - 0x58080020, 0x44000800, 0x80040800, 0x58080021, - 0x44000800, 0x80040800, 0x58080022, 0x44000800, - 0x80040800, 0x58080023, 0x44000800, 0x80040800, - 0x600010f6, 0x58080007, 0x44000800, 0x80040800, - 0x5808002b, 0x44000800, 0x80040800, 0x5808007c, - 0x44000800, 0x80040800, 0x5c001800, 0x5c001000, - 0x64030000, 0x485fc020, 0x905cb9c0, 0x905cbd52, - 0x485fc011, 0x4203e000, 0x40000000, 0x6016d800, - 0x59e00017, 0x60000800, 0x8c00050a, 0x050a0875, - 0x8d0c0530, 0x050a0868, 0x050a086a, 0x6403c017, - 0x4203e000, 0x30000001, 0x0501f956, 0x05fdf7ff, - 0x60100000, 0x0501f80c, 0x4a03c855, 0x0001eb5a, - 0x59e40001, 0x82000540, 0xff000700, 0x4803c801, - 0x42000000, 0x0010e4e5, 0x49780003, 0x49780004, - 0x1c01f000, 0x42000800, 0x0010e4e7, 0x44000800, - 0x59e40801, 0x82041500, 0x00f3c0ff, 0x480bc801, - 0x8c040524, 0x0500000b, 0x4c000000, 0x59e41052, - 0x59e40054, 0x800000d4, 0x82000400, 0x00110772, - 0x80081480, 0x480bc853, 0x6503c800, 0x5c000000, - 0x4a03c850, 0x00110772, 0x800000d4, 0x82002400, - 0x00110771, 0x4813c851, 0x4a03c853, 0x00000400, - 0x42000000, 0x00110772, 0x82001400, 0x00001000, - 0x45780000, 0x80000000, 0x80081d80, 0x05fe07fd, - 0x4807c801, 0x1c01f000, 0x42002000, 0x0010e4e5, - 0x59e41801, 0x58100c01, 0x82040500, 0x00003800, - 0x820c1d00, 0xffffc7ff, 0x800c1d40, 0x480fc801, - 0x1c01f000, 0x5c036000, 0x4db00000, 0x49b3c857, - 0x4803c857, 0x1c01f000, 0x4c5c0000, 0x4c600000, - 0x4c640000, 0x8d0c052a, 0x0500002f, 0x401c0000, - 0x80040d40, 0x4004b800, 0x400cc000, 0x4018c800, - 0x0501f8d3, 0x41784000, 0x42002800, 0x0010e4e5, - 0x58142017, 0x5814000d, 0x80100400, 0x445c0000, - 0x80102000, 0x80000000, 0x82104d00, 0x000000ff, - 0x050008a9, 0x0500001c, 0x4c000000, 0x0501f890, - 0x5c000000, 0x44080000, 0x80102000, 0x80000000, - 0x82104d00, 0x000000ff, 0x0500089f, 0x05000012, - 0x44600000, 0x80102000, 0x80000000, 0x82104d00, - 0x000000ff, 0x05000898, 0x0500000b, 0x44640000, - 0x80102000, 0x80000000, 0x82104d00, 0x000000ff, - 0x05000891, 0x05000004, 0x48102817, 0x802041c0, - 0x05060d32, 0x5c00c800, 0x5c00c000, 0x5c00b800, + 0x00018000, 0x59c400a3, 0x05020004, 0x82000540, + 0x00001000, 0x0501f003, 0x82000500, 0xffffefff, + 0x480388a3, 0x59c80015, 0x84000548, 0x48039015, + 0x050dfb18, 0x59a81008, 0x84081500, 0x480b5008, + 0x850e1d0a, 0x0529ffc1, 0x0531f91e, 0x05000007, + 0x8d0c0506, 0x05000005, 0x640750b7, 0x850e1d0e, + 0x0525fc3b, 0x0501f048, 0x052df8c8, 0x05000005, + 0x59c41002, 0x8408150c, 0x480b8802, 0x0501f017, + 0x0531f910, 0x05020005, 0x59a80049, 0x80000540, + 0x05580b82, 0x0501f011, 0x0559fb80, 0x59a8024c, + 0x8c000506, 0x0502000d, 0x59a80049, 0x80000540, + 0x05020007, 0x59a81c4c, 0x820c0580, 0x0000ffff, + 0x05000006, 0x8c0c0508, 0x05000004, 0x4a03544c, + 0x0000ffff, 0x0529f978, 0x497b504e, 0x497b504d, + 0x497b50b8, 0x0531f8f7, 0x59a8124c, 0x05020009, + 0x050df90a, 0x80001580, 0x59a80050, 0x82000500, + 0xffff0000, 0x80040d40, 0x48075050, 0x0501f005, + 0x59a80050, 0x82000500, 0xffff0000, 0x48035050, + 0x599c0017, 0x8c00050a, 0x05000002, 0x84081544, + 0x480b524c, 0x0531f8e3, 0x05000003, 0x050df8f7, + 0x48078880, 0x60141000, 0x0545fc39, 0x497b504e, + 0x497b5047, 0x4a035048, 0x0000ffff, 0x4a01a8e4, + 0x000000c0, 0x600ad800, 0x0531f8d6, 0x05000005, + 0x59a8024c, 0x9000050c, 0x90000584, 0x05000002, + 0x0511fa95, 0x1c01f000, 0x0521fff2, 0x05020026, + 0x599c0019, 0x82000500, 0x0000e000, 0x82000580, + 0x00004000, 0x05020020, 0x59c40001, 0x82000d00, + 0x00018000, 0x82040580, 0x00010000, 0x05000004, + 0x82040580, 0x00008000, 0x05020017, 0x59a800a9, + 0x90000483, 0x05001003, 0x90000541, 0x0501f012, + 0x050dfebc, 0x64075078, 0x4a035079, 0xaabbccdd, + 0x6413506c, 0x6403506d, 0x6012d800, 0x59a800a9, + 0x80000000, 0x480350a9, 0x59a800a8, 0x82000500, + 0xfffffff8, 0x90000544, 0x480350a8, 0x0501fd3e, + 0x80000580, 0x1c01f000, 0x0525f9c7, 0x05000051, + 0x59a8024c, 0x90000523, 0x900005a3, 0x0502004d, + 0x0525f9c6, 0x0500004b, 0x4a038802, 0x0000ffbf, + 0x59a804d1, 0x8c00050c, 0x05020132, 0x8c000506, + 0x0502000b, 0x8c000508, 0x0502012e, 0x84000548, + 0x480354d1, 0x0525f9be, 0x05000004, 0x417a5800, + 0x055dfa2c, 0x0501f127, 0x0501f0ee, 0x8c00050a, + 0x05020038, 0x8400054a, 0x480354d1, 0x497b504e, + 0x497b504d, 0x497b5047, 0x4a035048, 0x0000ffff, + 0x59a8024c, 0x82000500, 0xffffff7c, 0x4803524c, + 0x42024800, 0x001124b6, 0x59240200, 0x82000500, + 0xffffff1f, 0x48024a00, 0x59a802d1, 0x5924100b, + 0x82081500, 0x00001fff, 0x80080580, 0x05000012, + 0x4d3c0000, 0x4d300000, 0x4d400000, 0x60aa8000, + 0x417a6000, 0x600a7800, 0x41780800, 0x0511fcbe, + 0x5c028000, 0x5c026000, 0x5c027800, 0x59a802d1, + 0x5924080b, 0x82040d00, 0xffffe000, 0x80040540, + 0x4802480b, 0x4d300000, 0x417a6000, 0x0511fc5f, + 0x5c026000, 0x4803c856, 0x5924000c, 0x800001c0, + 0x05020006, 0x0001f81f, 0x050000f2, 0x492e480c, + 0x5924000b, 0x48025802, 0x0511fa1b, 0x0501f0ed, + 0x59a80048, 0x82000580, 0x0000ffff, 0x05000003, + 0x0511fa15, 0x0501f0e7, 0x0569fd46, 0x05000017, + 0x0569fd49, 0x05000008, 0x0531f84a, 0x05000006, + 0x59a8024c, 0x8c000506, 0x0500004e, 0x0529fff7, + 0x050200dc, 0x80000580, 0x0509ffae, 0x600ed800, + 0x4a035048, 0x0000ffff, 0x4a01a8e4, 0x00000080, + 0x4a038802, 0x0000ffff, 0x850e1d02, 0x0545f9f5, + 0x0501fcb4, 0x0501f0cf, 0x59a8024c, 0x8c00050a, + 0x05020003, 0x8c000506, 0x05000037, 0x8c000500, + 0x05000035, 0x4a038802, 0x0000ffbf, 0x8c000502, + 0x05000031, 0x0525f951, 0x05020004, 0x599c0018, + 0x8c000516, 0x05020029, 0x59a8004d, 0x82000580, + 0x0000ffff, 0x05000020, 0x0525f948, 0x05000006, + 0x59a804d1, 0x8c000500, 0x05000003, 0x0511fc9b, + 0x0501f008, 0x41781800, 0x0569fd23, 0x05000002, + 0x60401800, 0x59a8024c, 0x8c00050a, 0x05120af3, + 0x42024800, 0x001124b6, 0x417a4000, 0x59240200, + 0x82000500, 0x000000e0, 0x82000580, 0x000000e0, + 0x050200a4, 0x050dff8c, 0x59a8024c, 0x8c000504, + 0x050200a0, 0x600c1000, 0x417a5800, 0x050dffab, + 0x0501f09c, 0x59a8024c, 0x8c00051c, 0x05020003, + 0x8c000504, 0x05fc07f8, 0x59a8004e, 0x80000540, + 0x05020094, 0x59a8024c, 0x8c000508, 0x05020017, + 0x59a80047, 0x80000540, 0x0502008e, 0x59a8024c, + 0x8c00050e, 0x0500000c, 0x8c000502, 0x0502000a, + 0x052dfff0, 0x05000087, 0x82000500, 0xffffff77, + 0x4803524c, 0x4a035048, 0x0000ffff, 0x0511f9ae, + 0x0501f080, 0x0569fcf0, 0x0500000c, 0x0511fd3c, + 0x0502007c, 0x0501f009, 0x599c1819, 0x8c0c0510, + 0x05000004, 0x8c000502, 0x05020021, 0x0501f075, + 0x8c000516, 0x05000073, 0x0529ff8c, 0x05020071, + 0x0525f8fe, 0x05020004, 0x599c0018, 0x8c000516, + 0x05020003, 0x052dfbaf, 0x0502006a, 0x59a80006, + 0x8c00051c, 0x05020004, 0x599c0017, 0x8c00050a, + 0x0500000f, 0x59a8b0ac, 0x417a8800, 0x0001fb08, + 0x05020004, 0x59340200, 0x8c00051a, 0x0502005d, + 0x81468800, 0x83440580, 0x000007f0, 0x05020002, + 0x60028810, 0x8058b040, 0x05fe07f5, 0x0569fce7, + 0x05000004, 0x4a038802, 0x0000ffbf, 0x0501f003, + 0x4a038802, 0x0000ffff, 0x42001800, 0x00111ce0, + 0x0501fd73, 0x42001800, 0x00111ced, 0x0501fd70, + 0x850e1d02, 0x4a01a8e4, 0x00000080, 0x600ed800, + 0x4a035048, 0x0000ffff, 0x0501fc26, 0x80000580, + 0x0509ff14, 0x497b50a9, 0x6407507b, 0x0525f8cb, + 0x0502000b, 0x599c0018, 0x8c000516, 0x05000008, + 0x59a804d1, 0x8c00050e, 0x05020036, 0x8400054e, + 0x480354d1, 0x0521fe46, 0x0501f016, 0x59a81a4c, + 0x59a82044, 0x82102580, 0x0000aaaa, 0x05000004, + 0x8c0c0506, 0x05020002, 0x480f544c, 0x8c0c0508, + 0x05000007, 0x599c1819, 0x8c0c0510, 0x05000004, + 0x61f8180f, 0x60102000, 0x0501f003, 0x61fc19ff, + 0x60182000, 0x60003000, 0x417a4000, 0x0521fdd2, + 0x052dff96, 0x0500000a, 0x59c40006, 0x052dff81, + 0x05000004, 0x82000500, 0xffffff0f, 0x0501f003, + 0x82000500, 0xfbffffff, 0x48038806, 0x0525f89f, + 0x0500000a, 0x59a804d1, 0x8c000500, 0x05000007, + 0x59c40801, 0x82040d40, 0x00004000, 0x48078801, + 0x64c378e4, 0x0501f006, 0x59c40801, 0x82040d00, + 0xffffbfff, 0x48078801, 0x648378e4, 0x0545f925, + 0x1c01f000, 0x4c040000, 0x4c080000, 0x4c100000, + 0x59a8006d, 0x90000c84, 0x050219df, 0x0c01f805, + 0x5c002000, 0x5c001000, 0x5c000800, 0x1c01f000, + 0x00100440, 0x001004da, 0x001004ff, 0x001005ad, + 0x60380938, 0x050df9f0, 0x90040550, 0x82000500, + 0xfffffff7, 0x60380938, 0x050df9f0, 0x59c410a3, + 0x84081518, 0x480b88a3, 0x0521fe72, 0x05020021, + 0x599c0019, 0x82000500, 0x0000e000, 0x82000580, + 0x00004000, 0x0502001b, 0x59a808a8, 0x90040d07, + 0x90040580, 0x0502000b, 0x59a8006c, 0x90000582, + 0x05000011, 0x050df933, 0x497b506b, 0x050dfd32, + 0x640f5079, 0x640b506c, 0x64075078, 0x0501f00a, + 0x90040584, 0x05020008, 0x497b2804, 0x497b2805, + 0x050dfd38, 0x64075078, 0x4a035079, 0xaabbccdd, + 0x6413506c, 0x59a800a8, 0x80000000, 0x480350a8, + 0x60000001, 0x0509fe97, 0x053df80a, 0x59c408a3, + 0x82040d00, 0xfffffff7, 0x480788a3, 0x052dff2b, + 0x0500000d, 0x052dff35, 0x0500000b, 0x052dff2d, + 0x0502099d, 0x59c400a3, 0x84000532, 0x84000570, + 0x480388a3, 0x0531fa5c, 0x4a038808, 0x00000208, + 0x0501f012, 0x59c400a3, 0x84000530, 0x82000500, + 0xbf7fffff, 0x480388a3, 0x61e00801, 0x0525ff32, + 0x59c400a3, 0x82000540, 0x00018000, 0x8400051c, + 0x480388a3, 0x82000500, 0xfffeffff, 0x480388a3, + 0x4a038808, 0x00000200, 0x59c40006, 0x82000500, + 0xfbffff0e, 0x48038806, 0x497b282d, 0x497b282e, + 0x61d00803, 0x42001000, 0x001005c7, 0x0539fe1f, + 0x59c40805, 0x64078805, 0x0509ff44, 0x05020006, + 0x60040000, 0x050df924, 0x60040000, 0x050df8f2, + 0x0501f01e, 0x0509ff43, 0x05020006, 0x41780000, + 0x050df91d, 0x41780000, 0x050df8eb, 0x0501f017, + 0x0509ff42, 0x05020006, 0x60080000, 0x050df916, + 0x60080000, 0x050df8e4, 0x0501f010, 0x0509ff41, + 0x05020006, 0x600c0000, 0x050df90f, 0x600c0000, + 0x050df8dd, 0x0501f009, 0x0509ff40, 0x0502095a, + 0x59a80078, 0x800001c0, 0x05000004, 0x0509ff40, + 0x6407506d, 0x0501f018, 0x050df95d, 0x6407506d, + 0x052dfeda, 0x05000008, 0x052dfee4, 0x05000006, + 0x052dfedc, 0x0502094c, 0x64075045, 0x052dfe4a, + 0x0501f00d, 0x59c400a4, 0x9000050f, 0x90000588, + 0x05000003, 0x4a038805, 0x04000000, 0x59c400a3, + 0x82000540, 0x0001c000, 0x480388a3, 0x84000520, + 0x480388a3, 0x1c01f000, 0x0501f8e9, 0x05020003, + 0x640f506d, 0x0501f021, 0x0509ff1c, 0x0502000d, + 0x59a80078, 0x800001c0, 0x0500000a, 0x0509ff1c, + 0x59a80077, 0x8c00051e, 0x05000018, 0x052dfebd, + 0x05020006, 0x64075045, 0x052dfe2b, 0x0501f003, + 0x050df907, 0x05020011, 0x050df89e, 0x640b506d, + 0x497b5078, 0x59c400a3, 0x84000520, 0x480388a3, + 0x052dfeb0, 0x05000009, 0x0521fdc6, 0x05000007, + 0x497b282d, 0x497b282e, 0x60b40800, 0x42001000, + 0x001005c7, 0x0539fdbd, 0x1c01f000, 0x0501f8c4, + 0x05020003, 0x640f506d, 0x0501f0a9, 0x4a038805, + 0x000000f0, 0x050df8ee, 0x050200a0, 0x050dfaf9, + 0x05000017, 0x050dfade, 0x05020015, 0x050dfae7, + 0x0502000a, 0x59a80079, 0x90000584, 0x05fc07f2, + 0x0509fee4, 0x0502000e, 0x59a80079, 0x82000580, + 0xaabbccdd, 0x05fc07ec, 0x59a80079, 0x90000580, + 0x05fc07e9, 0x0509fec9, 0x05020005, 0x59a80079, + 0x82000580, 0xaabbccdd, 0x05fc07e3, 0x59a800aa, + 0x8c000500, 0x0502000b, 0x59a80887, 0x8c04050c, + 0x05020008, 0x60380938, 0x050df90b, 0x90040548, + 0x82000500, 0xffffffef, 0x60380938, 0x050df90b, + 0x050dfad4, 0x05000032, 0x0525f817, 0x0500000c, + 0x4a03c014, 0x00200020, 0x59c40001, 0x82000500, + 0x00018000, 0x82000580, 0x00018000, 0x05020026, + 0x4a03c013, 0x00200020, 0x0501f025, 0x4a03c013, + 0x03800300, 0x4a03c014, 0x03800380, 0x59c40001, + 0x82000500, 0x00018000, 0x82000580, 0x00018000, + 0x0502000c, 0x60880801, 0x61d81000, 0x60201800, + 0x0525f801, 0x050008cc, 0x60880801, 0x61b81000, + 0x60201800, 0x0521fffc, 0x050008c7, 0x0501f00b, + 0x60880801, 0x61d81000, 0x60201800, 0x0525f804, + 0x050008c1, 0x60880801, 0x61b81000, 0x60201800, + 0x0521ffff, 0x050008bc, 0x4a03c014, 0x03800000, + 0x0501f003, 0x4a03c013, 0x00200000, 0x052dfe45, + 0x0500003d, 0x59c400a4, 0x9000050f, 0x90000588, + 0x05000021, 0x59c40005, 0x8c000534, 0x0502001e, + 0x5994002f, 0x800001c0, 0x05000007, 0x0501fadb, + 0x90000402, 0x5994082d, 0x80040480, 0x0502103c, + 0x0501f004, 0x5994002d, 0x90000482, 0x05021038, + 0x052dfe36, 0x05020036, 0x4a038805, 0x000000f0, + 0x052dfe60, 0x4a035044, 0x0000aaaa, 0x64035045, + 0x59c408a3, 0x90040d48, 0x480788a3, 0x6006d800, + 0x6403506d, 0x64078805, 0x497b282d, 0x497b282e, + 0x0501f019, 0x052dfe25, 0x05020007, 0x59a80044, + 0x82000580, 0x0000aaaa, 0x05020003, 0x4a035040, + 0x00ffffff, 0x497b5044, 0x59c40006, 0x82000540, + 0x04000001, 0x48038806, 0x8d0c0506, 0x05020004, + 0x59c408a3, 0x90040d48, 0x480788a3, 0x6006d800, + 0x6403506d, 0x64078805, 0x497b282d, 0x497b282e, + 0x0501f00f, 0x59c40005, 0x82000500, 0x000000c0, + 0x0500000b, 0x59c40006, 0x82000540, 0x000000f1, + 0x48038806, 0x05fdf7f2, 0x0509fe54, 0x05020004, + 0x59a80078, 0x800001c0, 0x05fe0757, 0x497b8885, + 0x1c01f000, 0x4803c856, 0x0521fd0e, 0x05020005, + 0x050dfc0b, 0x42000000, 0x00112463, 0x0569f9a7, + 0x60000001, 0x0509fd4f, 0x6403506d, 0x0509fe43, + 0x05020009, 0x59a8006b, 0x800001c0, 0x05000004, + 0x80000040, 0x4803506b, 0x05020003, 0x642b506b, + 0x64075078, 0x497b8885, 0x0501f224, 0x5994002d, + 0x5994082e, 0x80040540, 0x1c01f000, 0x497b282e, + 0x1c01f000, 0x4a038805, 0x000000f0, 0x1c01f000, + 0x64235096, 0x640f5097, 0x64035098, 0x4a035099, + 0x001090d5, 0x0531f91d, 0x4a03544c, 0x0000ffff, + 0x4a035040, 0x00ffffff, 0x0559f838, 0x4a035050, + 0x20200000, 0x4a035051, 0x88000200, 0x4a035052, + 0x00ff001f, 0x4a035053, 0x000007d0, 0x4a035054, + 0x80000a00, 0x4a035055, 0xa0000200, 0x4a035056, + 0x00ff0004, 0x4a035057, 0x00010000, 0x4a035058, + 0x80000000, 0x4a035059, 0x00000200, 0x4a03505a, + 0x00ff0000, 0x4a03505b, 0x00010000, 0x4a035062, + 0x514c4f47, 0x4a035063, 0x49432020, 0x1c01f000, + 0x4d440000, 0x417a8800, 0x4c5c0000, 0x4178b800, + 0x0001fb08, 0x05020004, 0x0529fef4, 0x05020002, + 0x805cb800, 0x81468800, 0x83440580, 0x000007f0, + 0x05020002, 0x60028810, 0x59a800ad, 0x81440580, + 0x05fe07f4, 0x405c0800, 0x5c00b800, 0x5c028800, + 0x1c01f000, 0x4803c857, 0x5c000000, 0x4c000000, + 0x4803c857, 0x0501f808, 0x485fc857, 0x4203e000, + 0x50000000, 0x5c000000, 0x4d780000, 0x6008b900, + 0x0501f005, 0x485fc857, 0x4203e000, 0x50000000, + 0x6008b900, 0x05006000, 0x4c000000, 0x4c040000, + 0x59bc00ea, 0x4803c857, 0x90000507, 0x90000581, + 0x05020003, 0x60000800, 0x0541fbd4, 0x59b800ea, + 0x4803c857, 0x641370e8, 0x5c000800, 0x4807c025, + 0x80040920, 0x4807c026, 0x5c000000, 0x4803c023, + 0x80000120, 0x4803c024, 0x5c000000, 0x4803c857, + 0x4803c021, 0x80000120, 0x4803c022, 0x41f80000, + 0x4803c029, 0x80000120, 0x4803c02a, 0x41780800, + 0x4807c027, 0x59a800b4, 0x8c00050a, 0x05000005, + 0x59e00027, 0x8400054a, 0x4803c857, 0x4803c027, + 0x0569fa3a, 0x0500004a, 0x42000800, 0x0011456c, + 0x46000800, 0xfaceface, 0x80040800, 0x4c080000, + 0x4c0c0000, 0x600010f4, 0x58080013, 0x44000800, + 0x80040800, 0x58080022, 0x44000800, 0x80040800, + 0x58080023, 0x44000800, 0x80040800, 0x58080024, + 0x44000800, 0x80040800, 0x58080025, 0x44000800, + 0x80040800, 0x58080028, 0x44000800, 0x80040800, + 0x610010f4, 0x602c1800, 0x50080000, 0x44000800, + 0x80081000, 0x80040800, 0x800c1840, 0x05fe07fb, + 0x600c1800, 0x600010f6, 0x480c1003, 0x58080005, + 0x44000800, 0x80040800, 0x800c1840, 0x05fe17fb, + 0x600010f8, 0x58080002, 0x44000800, 0x80040800, + 0x58080003, 0x44000800, 0x80040800, 0x58080020, + 0x44000800, 0x80040800, 0x58080021, 0x44000800, + 0x80040800, 0x58080022, 0x44000800, 0x80040800, + 0x58080023, 0x44000800, 0x80040800, 0x600010f6, + 0x58080007, 0x44000800, 0x80040800, 0x5808002b, + 0x44000800, 0x80040800, 0x5808007c, 0x44000800, + 0x80040800, 0x5c001800, 0x5c001000, 0x64030000, + 0x485fc020, 0x905cb9c0, 0x905cbd52, 0x485fc011, + 0x4203e000, 0x40000000, 0x6016d800, 0x59e00017, + 0x60000800, 0x8c00050a, 0x050a08ab, 0x8d0c0530, + 0x050a089e, 0x050a08a0, 0x6403c017, 0x4203e000, + 0x30000001, 0x0501f94a, 0x05fdf7ff, 0x600c0000, + 0x0501f80c, 0x4a03c855, 0x0001eb5a, 0x59e40001, + 0x82000540, 0xff000700, 0x4803c801, 0x42000000, + 0x00112489, 0x49780003, 0x49780004, 0x1c01f000, + 0x42000800, 0x0011248b, 0x44000800, 0x59e40801, + 0x82041500, 0x00f3c0ff, 0x480bc801, 0x4a03c850, + 0x00114716, 0x800000d4, 0x82002400, 0x00114715, + 0x4813c851, 0x4a03c853, 0x00000400, 0x42000000, + 0x00114716, 0x82001400, 0x00000c00, 0x45780000, + 0x80000000, 0x80081d80, 0x05fe07fd, 0x4807c801, + 0x1c01f000, 0x42002000, 0x00112489, 0x59e41801, + 0x58100c01, 0x82040500, 0x00003800, 0x820c1d00, + 0xffffc7ff, 0x800c1d40, 0x480fc801, 0x1c01f000, + 0x5c036000, 0x4db00000, 0x49b3c857, 0x4803c857, 0x1c01f000, 0x4c5c0000, 0x4c600000, 0x4c640000, - 0x42001000, 0x04000000, 0x41ccc800, 0x42002800, - 0x0010e4e5, 0x59a800d0, 0x82000d00, 0x000003ff, - 0x4c000000, 0x58140212, 0x0501f85d, 0x5c000000, - 0x4004b800, 0x4008c000, 0x905cbc06, 0x8c000516, - 0x05000002, 0x905cbc02, 0x0501f016, 0x4c5c0000, - 0x4c600000, 0x4c640000, 0x42002800, 0x0010e4e5, - 0x42001000, 0x03000000, 0x4000c800, 0x821c0500, - 0x00003c00, 0x80000114, 0x821c0d00, 0x000003ff, - 0x4c000000, 0x58140412, 0x0501f845, 0x5c000000, - 0x4004b800, 0x4008c000, 0x805cbc00, 0x805cb840, - 0x825c0480, 0x00000240, 0x05fe1ed0, 0x0501f878, - 0x405c0000, 0x905cbc02, 0x80600d40, 0x42002800, - 0x0010e4e5, 0x41784000, 0x58142017, 0x825c0480, - 0x00000101, 0x05021028, 0x5814000d, 0x80100400, - 0x44040000, 0x80102000, 0x80000000, 0x805cb840, - 0x82104d00, 0x000000ff, 0x05000847, 0x0500001a, - 0x4c000000, 0x0501f82e, 0x5c000000, 0x44080000, + 0x8d0c052a, 0x0500002f, 0x401c0000, 0x80040d40, + 0x4004b800, 0x400cc000, 0x4018c800, 0x0501f8d3, + 0x41784000, 0x42002800, 0x00112489, 0x58142017, + 0x5814000d, 0x80100400, 0x445c0000, 0x80102000, + 0x80000000, 0x82104d00, 0x000000ff, 0x050008a9, + 0x0500001c, 0x4c000000, 0x0501f890, 0x5c000000, + 0x44080000, 0x80102000, 0x80000000, 0x82104d00, + 0x000000ff, 0x0500089f, 0x05000012, 0x44600000, + 0x80102000, 0x80000000, 0x82104d00, 0x000000ff, + 0x05000898, 0x0500000b, 0x44640000, 0x80102000, + 0x80000000, 0x82104d00, 0x000000ff, 0x05000891, + 0x05000004, 0x48102817, 0x802041c0, 0x05060d72, + 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, + 0x4c5c0000, 0x4c600000, 0x4c640000, 0x42001000, + 0x04000000, 0x41ccc800, 0x42002800, 0x00112489, + 0x59a800d5, 0x82000d00, 0x000003ff, 0x4c000000, + 0x58140212, 0x0501f85d, 0x5c000000, 0x4004b800, + 0x4008c000, 0x905cbc06, 0x8c000516, 0x05000002, + 0x905cbc02, 0x0501f016, 0x4c5c0000, 0x4c600000, + 0x4c640000, 0x42002800, 0x00112489, 0x42001000, + 0x03000000, 0x4000c800, 0x821c0500, 0x00003c00, + 0x80000114, 0x821c0d00, 0x000003ff, 0x4c000000, + 0x58140412, 0x0501f845, 0x5c000000, 0x4004b800, + 0x4008c000, 0x805cbc00, 0x805cb840, 0x825c0480, + 0x00000240, 0x05fe1edc, 0x0501f878, 0x405c0000, + 0x905cbc02, 0x80600d40, 0x42002800, 0x00112489, + 0x41784000, 0x58142017, 0x825c0480, 0x00000101, + 0x05021028, 0x5814000d, 0x80100400, 0x44040000, 0x80102000, 0x80000000, 0x805cb840, 0x82104d00, - 0x000000ff, 0x0500083c, 0x0500000f, 0x50641800, - 0x440c0000, 0x80000000, 0x80102000, 0x8064c800, - 0x805cb840, 0x05fe07f6, 0x82104d00, 0x000000ff, - 0x05000831, 0x05000004, 0x48102817, 0x802041c0, - 0x05060cd2, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x1c01f000, 0x82100500, 0x000000ff, 0x805c0400, - 0x82000480, 0x00000200, 0x05fc17d4, 0x6108b800, - 0x82600d40, 0x00008040, 0x05fdf7d0, 0x800001c0, - 0x05000006, 0x80041c80, 0x05001004, 0x05000003, - 0x40000800, 0x8408155c, 0x1c01f000, 0x59a800ba, - 0x800018c4, 0x800010ca, 0x800000cc, 0x800c0400, - 0x80081400, 0x59940024, 0x61a01807, 0x800c1c80, - 0x05021002, 0x61a01807, 0x5994002e, 0x800c0400, - 0x82001c80, 0x000007d0, 0x05001002, 0x6140000f, - 0x4c080000, 0x0501f8b6, 0x5c001000, 0x80081400, - 0x1c01f000, 0x4813c857, 0x5c036000, 0x4db00000, - 0x49b3c857, 0x40001800, 0x58140000, 0x8c000502, - 0x05000009, 0x58140821, 0x80040800, 0x48042821, - 0x4807c857, 0x8400054a, 0x48002800, 0x80000580, - 0x0501f00e, 0x82102500, 0x000003ff, 0x80204000, - 0x58140014, 0x80000000, 0x90000503, 0x48002814, - 0x05000003, 0x400c0000, 0x0501f002, 0x5814000d, - 0x80000540, 0x4803c857, 0x1c01f000, 0x42002800, - 0x0010e4e5, 0x58140000, 0x8c00050a, 0x0500002f, - 0x8c000502, 0x0502002d, 0x4c5c0000, 0x5814b821, - 0x49782821, 0x8400050a, 0x48002800, 0x58142017, - 0x4813c857, 0x5814000d, 0x80100400, 0x41784000, - 0x42000800, 0x0b000001, 0x44040000, 0x80000000, - 0x80102000, 0x82104d00, 0x000000ff, 0x05fc0fca, - 0x05fc0e3e, 0x4c000000, 0x05fdffb1, 0x5c000000, - 0x44080000, 0x80000000, 0x80102000, 0x82104d00, - 0x000000ff, 0x05fc0fc0, 0x05fc0e34, 0x445c0000, + 0x000000ff, 0x05000847, 0x0500001a, 0x4c000000, + 0x0501f82e, 0x5c000000, 0x44080000, 0x80102000, + 0x80000000, 0x805cb840, 0x82104d00, 0x000000ff, + 0x0500083c, 0x0500000f, 0x50641800, 0x440c0000, + 0x80000000, 0x80102000, 0x8064c800, 0x805cb840, + 0x05fe07f6, 0x82104d00, 0x000000ff, 0x05000831, + 0x05000004, 0x48102817, 0x802041c0, 0x05060d12, + 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, + 0x82100500, 0x000000ff, 0x805c0400, 0x82000480, + 0x00000200, 0x05fc17d4, 0x6108b800, 0x82600d40, + 0x00008040, 0x05fdf7d0, 0x800001c0, 0x05000006, + 0x80041c80, 0x05001004, 0x05000003, 0x40000800, + 0x8408155c, 0x1c01f000, 0x59a800bf, 0x800018c4, + 0x800010ca, 0x800000cc, 0x800c0400, 0x80081400, + 0x59940024, 0x61a01807, 0x800c1c80, 0x05021002, + 0x61a01807, 0x5994002f, 0x800c0400, 0x82001c80, + 0x000007d0, 0x05001002, 0x6140000f, 0x4c080000, + 0x0501f8b6, 0x5c001000, 0x80081400, 0x1c01f000, + 0x4813c857, 0x5c036000, 0x4db00000, 0x49b3c857, + 0x40001800, 0x58140000, 0x8c000502, 0x05000009, + 0x58140821, 0x80040800, 0x48042821, 0x4807c857, + 0x8400054a, 0x48002800, 0x80000580, 0x0501f00e, + 0x82102500, 0x000003ff, 0x80204000, 0x58140014, + 0x80000000, 0x90000503, 0x48002814, 0x05000003, + 0x400c0000, 0x0501f002, 0x5814000d, 0x80000540, + 0x4803c857, 0x1c01f000, 0x42002800, 0x00112489, + 0x58140000, 0x8c00050a, 0x0500002f, 0x8c000502, + 0x0502002d, 0x4c5c0000, 0x5814b821, 0x49782821, + 0x8400050a, 0x48002800, 0x58142017, 0x4813c857, + 0x5814000d, 0x80100400, 0x41784000, 0x42000800, + 0x0b000001, 0x44040000, 0x80000000, 0x80102000, + 0x82104d00, 0x000000ff, 0x05fc0fca, 0x05fc0e4a, + 0x4c000000, 0x05fdffb1, 0x5c000000, 0x44080000, 0x80000000, 0x80102000, 0x82104d00, 0x000000ff, - 0x05fc0fb9, 0x05fc0e2d, 0x48102817, 0x802041c0, - 0x05060c5a, 0x405c2000, 0x600c1800, 0x60a01100, - 0x0521f828, 0x5c00b800, 0x1c01f000, 0x1c01f000, - 0x59a800b5, 0x8c000530, 0x05fe07fe, 0x4c080000, - 0x60101000, 0x0501f849, 0x5c001000, 0x4201d000, - 0x00028b0a, 0x0539f844, 0x4c080000, 0x60201000, - 0x0501f842, 0x5c001000, 0x4201d000, 0x00028b0a, - 0x0539f83d, 0x4c080000, 0x60401000, 0x0501f83b, - 0x5c001000, 0x4201d000, 0x00028b0a, 0x0539f836, - 0x05fdf7e8, 0x8c00050c, 0x59a808b5, 0x05020003, - 0x84040d30, 0x0501f005, 0x84040d70, 0x480750b5, - 0x60001000, 0x0501f02d, 0x480750b5, 0x916c0507, - 0x0c01f001, 0x00100805, 0x001007f7, 0x001007f7, - 0x001007e5, 0x001007fe, 0x001007f7, 0x001007f7, - 0x001007fe, 0x59c40801, 0x82040d00, 0x00018000, - 0x82040580, 0x00018000, 0x0500000a, 0x82040580, - 0x00010000, 0x05000004, 0x42001000, 0x42004000, - 0x0501f006, 0x42001000, 0x22002000, 0x0501f003, - 0x42001000, 0x12001000, 0x0501f015, 0x59a800b5, - 0x8c000534, 0x05020004, 0x42001000, 0x74057005, - 0x0501f80f, 0x1c01f000, 0x59a800b5, 0x8c000534, - 0x05020004, 0x42001000, 0x74057005, 0x0501f008, - 0x1c01f000, 0x1c01f000, 0x9008151c, 0x82081540, - 0x001c0000, 0x480bc013, 0x1c01f000, 0x59a800b5, - 0x8c000530, 0x05000002, 0x84081570, 0x480b50b5, - 0x8c000530, 0x05020005, 0x82081500, 0x00007000, - 0x80081114, 0x05fdfff1, 0x1c01f000, 0x40001800, - 0x800c18c2, 0x800c0400, 0x800c18c6, 0x800c0400, - 0x800c18c2, 0x800c0400, 0x800c190e, 0x800c0400, - 0x80000112, 0x1c01f000, 0x41780000, 0x50041800, - 0x800c0400, 0x80040800, 0x80102040, 0x05fe07fc, - 0x80080500, 0x80000540, 0x1c01f000, 0x6002f000, - 0x41780000, 0x41780800, 0x41781000, 0x41781800, - 0x41782000, 0x41782800, 0x41783000, 0x41783800, - 0x41784000, 0x41784800, 0x41785000, 0x41785800, - 0x41786000, 0x41786800, 0x41787000, 0x41787800, - 0x41788000, 0x41788800, 0x41789000, 0x41789800, - 0x4178a000, 0x4178a800, 0x4178b000, 0x4178b800, - 0x4178c000, 0x4178c800, 0x4178d000, 0x4178d800, - 0x4178e000, 0x4178e800, 0x4178f000, 0x4178f800, - 0x41790000, 0x41790800, 0x41791000, 0x41791800, - 0x41792000, 0x41792800, 0x41793000, 0x41793800, - 0x41794000, 0x41794800, 0x41795000, 0x41795800, - 0x41796000, 0x41796800, 0x41797000, 0x41797800, - 0x41798000, 0x41798800, 0x41799000, 0x41799800, - 0x4179a000, 0x6001a960, 0x60c9b17e, 0x4179b800, - 0x4179c800, 0x4179c000, 0x4179d000, 0x4179d800, - 0x4179e000, 0x4179e800, 0x4179f000, 0x4179f800, - 0x417a0000, 0x417a0800, 0x417a1000, 0x417a1800, + 0x05fc0fc0, 0x05fc0e40, 0x445c0000, 0x80000000, + 0x80102000, 0x82104d00, 0x000000ff, 0x05fc0fb9, + 0x05fc0e39, 0x48102817, 0x802041c0, 0x05060c9a, + 0x405c2000, 0x600c1800, 0x60a01100, 0x0521f996, + 0x5c00b800, 0x1c01f000, 0x1c01f000, 0x59a800ba, + 0x8c000530, 0x05fe07fe, 0x4c080000, 0x60101000, + 0x0501f849, 0x5c001000, 0x4201d000, 0x00028b0a, + 0x0539fc80, 0x4c080000, 0x60201000, 0x0501f842, + 0x5c001000, 0x4201d000, 0x00028b0a, 0x0539fc79, + 0x4c080000, 0x60401000, 0x0501f83b, 0x5c001000, + 0x4201d000, 0x00028b0a, 0x0539fc72, 0x05fdf7e8, + 0x8c00050c, 0x59a808ba, 0x05020003, 0x84040d30, + 0x0501f005, 0x84040d70, 0x480750ba, 0x60001000, + 0x0501f02d, 0x480750ba, 0x916c0507, 0x0c01f001, + 0x00100834, 0x00100826, 0x00100826, 0x00100814, + 0x0010082d, 0x00100826, 0x00100826, 0x0010082d, + 0x59c40801, 0x82040d00, 0x00018000, 0x82040580, + 0x00018000, 0x0500000a, 0x82040580, 0x00010000, + 0x05000004, 0x42001000, 0x42004000, 0x0501f006, + 0x42001000, 0x22002000, 0x0501f003, 0x42001000, + 0x12001000, 0x0501f015, 0x59a800ba, 0x8c000534, + 0x05020004, 0x42001000, 0x74057005, 0x0501f80f, + 0x1c01f000, 0x59a800ba, 0x8c000534, 0x05020004, + 0x42001000, 0x74057005, 0x0501f008, 0x1c01f000, + 0x1c01f000, 0x9008151c, 0x82081540, 0x001c0000, + 0x480bc013, 0x1c01f000, 0x59a800ba, 0x8c000530, + 0x05000002, 0x84081570, 0x480b50ba, 0x8c000530, + 0x05020005, 0x82081500, 0x00007000, 0x80081114, + 0x05fdfff1, 0x1c01f000, 0x40001800, 0x800c18c2, + 0x800c0400, 0x800c18c6, 0x800c0400, 0x800c18c2, + 0x800c0400, 0x800c190e, 0x800c0400, 0x80000112, + 0x1c01f000, 0x41780000, 0x50041800, 0x800c0400, + 0x80040800, 0x80102040, 0x05fe07fc, 0x80080500, + 0x80000540, 0x1c01f000, 0x6002f000, 0x41780000, + 0x41780800, 0x41781000, 0x41781800, 0x41782000, + 0x41782800, 0x41783000, 0x41783800, 0x41784000, + 0x41784800, 0x41785000, 0x41785800, 0x41786000, + 0x41786800, 0x41787000, 0x41787800, 0x41788000, + 0x41788800, 0x41789000, 0x41789800, 0x4178a000, + 0x4178a800, 0x4178b000, 0x4178b800, 0x4178c000, + 0x4178c800, 0x4178d000, 0x4178d800, 0x4178e000, + 0x4178e800, 0x4178f000, 0x4178f800, 0x41790000, + 0x41790800, 0x41791000, 0x41791800, 0x41792000, + 0x41792800, 0x41793000, 0x41793800, 0x41794000, + 0x41794800, 0x41795000, 0x41795800, 0x41796000, + 0x41796800, 0x41797000, 0x41797800, 0x41798000, + 0x41798800, 0x41799000, 0x41799800, 0x4179a000, + 0x6001a960, 0x60c9b17e, 0x4179b800, 0x4179c800, + 0x4179c000, 0x4179d000, 0x4179d800, 0x4179e000, + 0x4179e800, 0x4179f000, 0x4179f800, 0x42020000, + 0x00111cdc, 0x417a0800, 0x417a1000, 0x417a1800, 0x417a2000, 0x600228c2, 0x417a3000, 0x417a3800, 0x417a4000, 0x417a4800, 0x417a5000, 0x417a5800, 0x417a6000, 0x417a6800, 0x417a7000, 0x417a7800, 0x417a8000, 0x417a8800, 0x417a9000, 0x417a9800, 0x417ae800, 0x417af800, 0x600300f8, 0x42031000, - 0x0010e38c, 0x607f1960, 0x60df2160, 0x42032800, - 0x0010e2f9, 0x42033000, 0x000211b0, 0x42034000, - 0x0010dceb, 0x42033800, 0x0010dd0a, 0x42034800, - 0x0010e063, 0x42035000, 0x0010dc00, 0x42035800, - 0x0010d400, 0x417b6000, 0x600368de, 0x6003c860, - 0x600371fe, 0x6003797e, 0x600380ee, 0x60038880, - 0x600390c0, 0x42039800, 0x001102fe, 0x6003a0ec, - 0x6003a8e8, 0x6003b0e4, 0x6003b8e2, 0x6003c0e0, - 0x6003d000, 0x4203e800, 0x000201e5, 0x417bd800, - 0x1c01f000, 0x6407c830, 0x640fc831, 0x6413c832, - 0x6427c833, 0x6417c834, 0x641bc835, 0x641fc836, - 0x6423c837, 0x6403c838, 0x642bc839, 0x642fc83a, - 0x640bc83b, 0x1c01f000, 0x42002800, 0x00140000, - 0x59a800ca, 0x8c000500, 0x05000003, 0x42002800, - 0x0013a000, 0x46002800, 0xaaaaaaaa, 0x60283000, - 0x80183040, 0x05fe07ff, 0x50140000, 0x82000580, - 0xaaaaaaaa, 0x05020013, 0x41782000, 0x40140800, - 0x82102400, 0x00010000, 0x80042c04, 0x46002800, - 0x55555555, 0x60283000, 0x80183040, 0x05fe07ff, - 0x50140000, 0x82000580, 0x55555555, 0x05020005, - 0x50040000, 0x82000580, 0x55555555, 0x05fe07f1, - 0x59a800ca, 0x8c000500, 0x05000005, 0x82140580, - 0x0013a000, 0x05020005, 0x0501f005, 0x82140580, - 0x00140000, 0x05000002, 0x6407c820, 0x80142840, - 0x4817c857, 0x4817c861, 0x4817500a, 0x1c01f000, - 0x4817c857, 0x4c5c0000, 0x4c600000, 0x0565f814, - 0x05000030, 0x4817c857, 0x606c08f6, 0x50040800, - 0x8c04053e, 0x0500002b, 0x4817c857, 0x850e1d70, - 0x4c040000, 0x4c140000, 0x0505fdc7, 0x5c002800, - 0x5c000800, 0x59e0b81a, 0x8204b500, 0x000007ff, - 0x8058b000, 0x485b50a4, 0x600008f4, 0x58042029, - 0x5804302a, 0x82102500, 0xfffffff8, 0x82183500, - 0xfffffff8, 0x40100000, 0x8018c480, 0x8060c104, - 0x80600417, 0x4803509f, 0x497b50a3, 0x9058b41f, - 0x8058090a, 0x8004c418, 0x8060c040, 0x805cc418, - 0x485f50a0, 0x486350a1, 0x805c2840, 0x59a800ca, - 0x8c000500, 0x05000007, 0x59a8000a, 0x82000580, - 0x00139fff, 0x05020003, 0x4817500a, 0x4817c857, - 0x64030000, 0x5c00c000, 0x5c00b800, 0x1c01f000, - 0x59a80847, 0x800409c0, 0x05020006, 0x49781c0c, - 0x64081a0c, 0x641c1804, 0x59a8003d, 0x48001805, - 0x4c0c0000, 0x05fdfc94, 0x5c001800, 0x800409c0, - 0x05020002, 0x80040800, 0x48041806, 0x1c01f000, - 0x61fcb001, 0x42024800, 0x0010e512, 0x42000000, - 0x0010f212, 0x48024809, 0x90000410, 0x91264c0d, - 0x8058b040, 0x05fe07fc, 0x1c01f000, 0x59a8080c, - 0x4006d000, 0x6006b800, 0x59a8180a, 0x480fc857, - 0x41783000, 0x90041418, 0x90082418, 0x40100000, - 0x800c0480, 0x05001020, 0x8d0c0530, 0x0500000b, - 0x59a800a1, 0x80000482, 0x05001008, 0x40100000, - 0x59a828a0, 0x80140480, 0x05021004, 0x59a810a1, - 0x80081000, 0x05fdf7f1, 0x801831c0, 0x0502000d, - 0x59a800ca, 0x8c000500, 0x05000006, 0x42000000, - 0x0013a000, 0x80000484, 0x0500100e, 0x0501f005, - 0x42000000, 0x00140000, 0x80000484, 0x05001009, - 0x44080800, 0x40080800, 0x40101000, 0x815eb800, - 0x05fdf7de, 0x45780800, 0x495f5048, 0x1c01f000, - 0x42001000, 0x00140000, 0x59a800ca, 0x8c000500, - 0x05000003, 0x42001000, 0x0013a000, 0x80183040, - 0x05fdf7d2, 0x835c0480, 0x00000104, 0x0500100a, - 0x496bc857, 0x815eb840, 0x416a5800, 0x592ed000, - 0x497a5800, 0x497a5801, 0x497a5808, 0x812e59c0, - 0x1c01f000, 0x42000000, 0x0010e441, 0x0561fe5d, - 0x417a5800, 0x05fdf7fa, 0x815eb840, 0x05001009, - 0x416a5800, 0x492fc857, 0x592ed000, 0x497a5800, + 0x0011232d, 0x607f1960, 0x60df2160, 0x42032800, + 0x00112293, 0x42033000, 0x000211f1, 0x42034000, + 0x00111c71, 0x42033800, 0x00111c90, 0x42034800, + 0x00111ffd, 0x42035000, 0x00111b80, 0x4a0350ac, + 0x000007f0, 0x4a0350ad, 0x00000800, 0x4a03500d, + 0x0010e380, 0x42035800, 0x0010db80, 0x41790000, + 0x417b6000, 0x600368de, 0x6003c860, 0x600371fe, + 0x6003797e, 0x600380ee, 0x60038880, 0x600390c0, + 0x42039800, 0x001142a2, 0x6003a0ec, 0x6003a8e8, + 0x6003b0e4, 0x6003b8e2, 0x6003c0e0, 0x6003d000, + 0x4203e800, 0x000201ed, 0x417bd800, 0x1c01f000, + 0x6407c830, 0x640fc831, 0x6413c832, 0x6427c833, + 0x6417c834, 0x641bc835, 0x641fc836, 0x6423c837, + 0x6403c838, 0x642bc839, 0x642fc83a, 0x640bc83b, + 0x1c01f000, 0x42002800, 0x00140000, 0x59a800cf, + 0x8c000500, 0x05000003, 0x42002800, 0x0013a000, + 0x46002800, 0xaaaaaaaa, 0x60283000, 0x80183040, + 0x05fe07ff, 0x50140000, 0x82000580, 0xaaaaaaaa, + 0x05020013, 0x41782000, 0x40140800, 0x82102400, + 0x00010000, 0x80042c04, 0x46002800, 0x55555555, + 0x60283000, 0x80183040, 0x05fe07ff, 0x50140000, + 0x82000580, 0x55555555, 0x05020005, 0x50040000, + 0x82000580, 0x55555555, 0x05fe07f1, 0x59a800cf, + 0x8c000500, 0x05000005, 0x82140580, 0x0013a000, + 0x05020005, 0x0501f005, 0x82140580, 0x00140000, + 0x05000002, 0x6407c820, 0x80142840, 0x4817c857, + 0x4817c861, 0x4817500a, 0x1c01f000, 0x4817c857, + 0x4c5c0000, 0x4c600000, 0x0565ff58, 0x05000030, + 0x4817c857, 0x606c08f6, 0x50040800, 0x8c04053e, + 0x0500002b, 0x4817c857, 0x850e1d70, 0x4c040000, + 0x4c140000, 0x0505fe01, 0x5c002800, 0x5c000800, + 0x59e0b81a, 0x8204b500, 0x000007ff, 0x8058b000, + 0x485b50a7, 0x600008f4, 0x58042029, 0x5804302a, + 0x82102500, 0xfffffff8, 0x82183500, 0xfffffff8, + 0x40100000, 0x8018c480, 0x8060c104, 0x80600417, + 0x480350a2, 0x497b50a6, 0x9058b41f, 0x8058090a, + 0x8004c418, 0x8060c040, 0x805cc418, 0x485f50a3, + 0x486350a4, 0x805c2840, 0x59a800cf, 0x8c000500, + 0x05000007, 0x59a8000a, 0x82000580, 0x00139fff, + 0x05020003, 0x4817500a, 0x4817c857, 0x64030000, + 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x59a8084a, + 0x800409c0, 0x05020006, 0x49781c0c, 0x64081a0c, + 0x641c1804, 0x59a80040, 0x48001805, 0x4c0c0000, + 0x05fdfc94, 0x5c001800, 0x800409c0, 0x05020002, + 0x80040800, 0x48041806, 0x1c01f000, 0x61fcb001, + 0x42024800, 0x001124b6, 0x42000000, 0x001131b6, + 0x48024809, 0x90000410, 0x91264c0d, 0x8058b040, + 0x05fe07fc, 0x1c01f000, 0x59a8080c, 0x4006d000, + 0x6006b800, 0x59a8180a, 0x480fc857, 0x41783000, + 0x90041418, 0x90082418, 0x40100000, 0x800c0480, + 0x05001020, 0x8d0c0530, 0x0500000b, 0x59a800a4, + 0x80000482, 0x05001008, 0x40100000, 0x59a828a3, + 0x80140480, 0x05021004, 0x59a810a4, 0x80081000, + 0x05fdf7f1, 0x801831c0, 0x0502000d, 0x59a800cf, + 0x8c000500, 0x05000006, 0x42000000, 0x0013a000, + 0x80000484, 0x0500100e, 0x0501f005, 0x42000000, + 0x00140000, 0x80000484, 0x05001009, 0x44080800, + 0x40080800, 0x40101000, 0x815eb800, 0x05fdf7de, + 0x45780800, 0x495f504b, 0x1c01f000, 0x42001000, + 0x00140000, 0x59a800cf, 0x8c000500, 0x05000003, + 0x42001000, 0x0013a000, 0x80183040, 0x05fdf7d2, + 0x835c0480, 0x00000104, 0x0500100a, 0x496bc857, + 0x815eb840, 0x416a5800, 0x592ed000, 0x497a5800, 0x497a5801, 0x497a5808, 0x812e59c0, 0x1c01f000, - 0x42000000, 0x0010e441, 0x0561fe4e, 0x417ab800, - 0x417a5800, 0x05fdf7f9, 0x492fc857, 0x496a5800, - 0x412ed000, 0x815eb800, 0x59c80000, 0x82000540, - 0x00001200, 0x48039000, 0x1c01f000, 0x492fc857, - 0x812e59c0, 0x05000007, 0x592c0001, 0x497a5801, - 0x4c000000, 0x05fdfff1, 0x5c025800, 0x05fdf7f9, - 0x1c01f000, 0x42000000, 0x0010e441, 0x0561fe38, - 0x80025d80, 0x1c01f000, 0x4807c856, 0x42007000, - 0x000211a7, 0x64007000, 0x59e00003, 0x82000540, - 0x00008080, 0x4803c003, 0x4a03b805, 0x90000001, - 0x59dc0006, 0x4a03b805, 0x70000000, 0x59dc0006, - 0x4a03b805, 0x30000000, 0x59dc0006, 0x4a03b805, - 0x80000000, 0x6100b000, 0x497bb807, 0x8058b040, - 0x05fe07fe, 0x4a03b805, 0x30000000, 0x59dc0006, - 0x4a03b805, 0x60000001, 0x59dc0006, 0x4a03b805, - 0x60000003, 0x59dc0006, 0x4a03b805, 0x60000005, - 0x59dc0006, 0x4a03b805, 0x60000007, 0x59dc0006, - 0x4a03b805, 0x70000001, 0x59dc0006, 0x4a03b805, - 0x30000002, 0x6100b000, 0x497bb807, 0x8058b040, - 0x05fe07fe, 0x4a03b805, 0x30000000, 0x59dc0006, - 0x4a03b805, 0x60000001, 0x4803c856, 0x05fdffa3, - 0x05fc0bfa, 0x42001000, 0x0010e387, 0x452c1000, - 0x64065801, 0x4a025802, 0x00000100, 0x4a025809, - 0x00108adc, 0x497a580a, 0x497a580b, 0x497a580c, - 0x05fdff96, 0x05fc0bed, 0x42001000, 0x0010e388, - 0x452c1000, 0x64025801, 0x4a025802, 0x00000100, - 0x4a025809, 0x001013bc, 0x497a5803, 0x497a5807, - 0x497a5808, 0x497a580a, 0x05fdff88, 0x05fc0bdf, - 0x42001000, 0x0010e389, 0x452c1000, 0x64025801, - 0x4a025802, 0x00000100, 0x4a025809, 0x001013e0, + 0x42000000, 0x001123e2, 0x0565fda1, 0x417a5800, + 0x05fdf7fa, 0x815eb840, 0x05001009, 0x416a5800, + 0x492fc857, 0x592ed000, 0x497a5800, 0x497a5801, + 0x497a5808, 0x812e59c0, 0x1c01f000, 0x42000000, + 0x001123e2, 0x0565fd92, 0x417ab800, 0x417a5800, + 0x05fdf7f9, 0x492fc857, 0x496a5800, 0x412ed000, + 0x815eb800, 0x59c80000, 0x82000540, 0x00001200, + 0x48039000, 0x1c01f000, 0x492fc857, 0x812e59c0, + 0x05000007, 0x592c0001, 0x497a5801, 0x4c000000, + 0x05fdfff1, 0x5c025800, 0x05fdf7f9, 0x1c01f000, + 0x42000000, 0x001123e2, 0x0565fd7c, 0x80025d80, + 0x1c01f000, 0x80040840, 0x41783000, 0x90081498, + 0x80040482, 0x05001003, 0x90041401, 0x0501f018, + 0x4c080000, 0x60043000, 0x90081c98, 0x80040483, + 0x05021006, 0x480c1000, 0x49781001, 0x400c1000, + 0x80183000, 0x05fdf7f9, 0xa01abc17, 0x59a8084b, + 0x80180c01, 0x4807504b, 0x4d2c0000, 0x400a5800, + 0x0555f86e, 0x5c025800, 0x05020002, 0x480b500c, + 0x49681000, 0x49781001, 0x5c02d000, 0x1c01f000, + 0x4807c856, 0x42007000, 0x000211e8, 0x64007000, + 0x59e00003, 0x82000540, 0x00008080, 0x4803c003, + 0x4a03b805, 0x90000001, 0x59dc0006, 0x4a03b805, + 0x70000000, 0x59dc0006, 0x4a03b805, 0x30000000, + 0x59dc0006, 0x4a03b805, 0x80000000, 0x6100b000, + 0x497bb807, 0x8058b040, 0x05fe07fe, 0x4a03b805, + 0x30000000, 0x59dc0006, 0x4a03b805, 0x60000001, + 0x59dc0006, 0x4a03b805, 0x60000003, 0x59dc0006, + 0x4a03b805, 0x60000005, 0x59dc0006, 0x4a03b805, + 0x60000007, 0x59dc0006, 0x4a03b805, 0x70000001, + 0x59dc0006, 0x4a03b805, 0x30000002, 0x6100b000, + 0x497bb807, 0x8058b040, 0x05fe07fe, 0x4a03b805, + 0x30000000, 0x59dc0006, 0x4a03b805, 0x60000001, + 0x4803c856, 0x05fdff84, 0x05fc0bdf, 0x42001000, + 0x00112322, 0x452c1000, 0x64065801, 0x4a025802, + 0x00000100, 0x4a025809, 0x00108f9a, 0x497a580a, + 0x497a580b, 0x497a580c, 0x05fdff77, 0x05fc0bd2, + 0x42001000, 0x00112323, 0x452c1000, 0x64025801, + 0x4a025802, 0x00000100, 0x4a025809, 0x0010142b, 0x497a5803, 0x497a5807, 0x497a5808, 0x497a580a, - 0x05fdff7a, 0x05fc0bd1, 0x497a5806, 0x42001000, - 0x0010dc1a, 0x452c1000, 0x64025801, 0x4a025802, - 0x00000100, 0x4a025809, 0x001078b4, 0x497a5803, - 0x497a5807, 0x497a5808, 0x497a580a, 0x05fdff6b, - 0x05fc0bc2, 0x497a5806, 0x492f500d, 0x64025801, - 0x4a025802, 0x00000100, 0x4a025809, 0x001078bf, + 0x05fdff69, 0x05fc0bc4, 0x42001000, 0x00112324, + 0x452c1000, 0x64025801, 0x4a025802, 0x00000100, + 0x4a025809, 0x0010144f, 0x497a5803, 0x497a5807, + 0x497a5808, 0x497a580a, 0x05fdff5b, 0x05fc0bb6, + 0x497a5806, 0x42001000, 0x00112325, 0x492c1001, + 0x64001000, 0x05fdff54, 0x05fc0baf, 0x497a5806, + 0x42001000, 0x00111b9c, 0x452c1000, 0x64025801, + 0x4a025802, 0x00000100, 0x4a025809, 0x00107d74, 0x497a5803, 0x497a5807, 0x497a5808, 0x497a580a, - 0x497a580b, 0x05fdff5d, 0x05fc0bb4, 0x497a5806, - 0x492f500e, 0x64025801, 0x4a025802, 0x00000100, - 0x4a025809, 0x001078bf, 0x497a5803, 0x497a5807, - 0x497a5808, 0x497a580a, 0x497a580b, 0x1c01f000, - 0x42001000, 0x00020030, 0x0535fc87, 0x0551ff0b, - 0x58380807, 0x60042000, 0x58040801, 0x800409c0, - 0x05000003, 0x80102000, 0x05fdf7fc, 0x0561f8fc, - 0x0502000c, 0x42000000, 0x0010e3a9, 0x0561fd99, - 0x0551ff09, 0x60040800, 0x42001000, 0x00020030, - 0x0535fc4a, 0x42007000, 0x000211a7, 0x0001f039, - 0x4a03b805, 0x30000002, 0x59dc0006, 0x4807b800, - 0x480bb801, 0x42007000, 0x000211a7, 0x65007002, - 0x480c7008, 0x58380007, 0x90000408, 0x48007003, - 0x640c7000, 0x4803b803, 0x0001f05a, 0x58380802, - 0x600011fe, 0x82040480, 0x0000ff00, 0x05021003, - 0x40041000, 0x80000580, 0x48007002, 0x480bb802, - 0x59dc0006, 0x4a03b805, 0x10000000, 0x1c01f000, - 0x4a03b805, 0x30000001, 0x58386001, 0x58301009, - 0x4807c857, 0x4803c857, 0x4833c857, 0x4a006002, - 0x00000200, 0x64007000, 0x800811c0, 0x00000036, - 0x0001f090, 0x4833c857, 0x4807c857, 0x5830080a, - 0x4c040000, 0x4d2c0000, 0x40325800, 0x05fdff18, - 0x5c025800, 0x5c000800, 0x4807c857, 0x0001f092, - 0x59e00017, 0x8c00050c, 0x05020028, 0x59a838a2, - 0xa01c459e, 0x05000025, 0x59a8209f, 0x59a808a3, - 0x59a848a4, 0x40245000, 0x9004051f, 0x81782800, - 0x801428c0, 0x8004010a, 0x80101400, 0x50083000, - 0x80140506, 0x0502000c, 0x80040800, 0x80244840, - 0x05000012, 0x80280581, 0x05000005, 0x80142942, - 0x9004051f, 0x05fe07f7, 0x05fdf7f3, 0x41780800, - 0x05fdf7ee, 0x59a818a0, 0x800400c4, 0x800c1c00, - 0x580c0003, 0x8c000500, 0x05000009, 0x80204040, - 0x05fe07ee, 0x80040800, 0x80280581, 0x05020002, - 0x41780800, 0x480750a3, 0x1c01f000, 0x80142880, - 0x80140506, 0x44001000, 0x80042800, 0x80280585, - 0x05020002, 0x41782800, 0x481750a3, 0x801c3840, - 0x481f50a2, 0x0001f0a3, 0x59a8189f, 0x8004110a, - 0x9004051f, 0x80081c03, 0x81782000, 0x801020c0, - 0x500c0000, 0x80100d00, 0x05020006, 0x80100540, - 0x59a808a2, 0x44001800, 0x80040800, 0x480750a2, - 0x1c01f000, 0x4df00000, 0x4203e000, 0x50000000, - 0x835c0480, 0x00000104, 0x05fe1fb6, 0x5c03e000, - 0x1c01f000, 0x59dc0006, 0x8c000520, 0x05000009, - 0x00044e27, 0x59dc0006, 0x82000500, 0x00006000, - 0x05000004, 0x82000580, 0x00006000, 0x05fe07f9, - 0x1c01f000, 0x41781800, 0x58382005, 0x40300000, - 0x80100580, 0x05000007, 0x40101800, 0x58102000, - 0x801021c0, 0x05fe07fa, 0x4803c856, 0x0501f011, - 0x4833c857, 0x58302000, 0x49786000, 0x800c19c0, - 0x05020008, 0x801021c0, 0x05000003, 0x48107005, - 0x0501f008, 0x49787005, 0x49787004, 0x0501f005, - 0x48101800, 0x801021c0, 0x05020002, 0x480c7004, - 0x1c01f000, 0x4803c856, 0x4dc00000, 0x42007000, - 0x0010e38a, 0x64007400, 0x49787001, 0x600380ee, - 0x60080800, 0x59c00007, 0x4a038006, 0x60000001, - 0x59c00007, 0x4a038006, 0x60000003, 0x59c00007, - 0x4a038006, 0x60000005, 0x59c00007, 0x4a038006, - 0x60000007, 0x59c00007, 0x4a038006, 0x60000009, - 0x59c00007, 0x4a038006, 0x6000000b, 0x59c00007, - 0x4c040000, 0x0501f817, 0x5c000800, 0x4a038009, - 0xf4f60000, 0x91c38420, 0x80040840, 0x05fe07e6, - 0x600380ee, 0x6443c822, 0x640370e8, 0x0501f83c, - 0x4a0370ee, 0x00100000, 0x4a0370ee, 0x00080102, - 0x4a0370e9, 0x00000400, 0x4a0370e9, 0x00003a0f, - 0x640370e8, 0x640770e8, 0x5c038000, 0x1c01f000, - 0x59c00007, 0x4a038006, 0xe0000001, 0x61000800, - 0x497b8005, 0x59c00007, 0x80040840, 0x05fe07fd, - 0x4a038006, 0x30000001, 0x59c00007, 0x8c000508, - 0x05fe07fe, 0x59c00007, 0x4a038006, 0xb0000003, - 0x59c00007, 0x4a038006, 0xb0000005, 0x59c00007, - 0x4a038006, 0xb0000001, 0x59c00007, 0x4a038006, - 0xb0000009, 0x59c00007, 0x4a038006, 0xb0000007, - 0x59c00007, 0x4a038006, 0xb000000b, 0x59c00007, + 0x05fdff45, 0x05fc0ba0, 0x497a5806, 0x492f500f, + 0x64025801, 0x4a025802, 0x00000100, 0x4a025809, + 0x00107d7f, 0x497a5803, 0x497a5807, 0x497a5808, + 0x497a580a, 0x497a580b, 0x05fdff37, 0x05fc0b92, + 0x497a5806, 0x492f5010, 0x64025801, 0x4a025802, + 0x00000100, 0x4a025809, 0x00107d7f, 0x497a5803, + 0x497a5807, 0x497a5808, 0x497a580a, 0x497a580b, + 0x1c01f000, 0x42001000, 0x00020038, 0x0539f844, + 0x59a80c9f, 0x8c040502, 0x05020005, 0x0555fc43, + 0x59a80c9f, 0x84040d42, 0x4807549f, 0x58380807, + 0x60042000, 0x58040801, 0x800409c0, 0x05000003, + 0x80102000, 0x05fdf7fc, 0x0561ffe3, 0x0502000b, + 0x42000000, 0x0011234a, 0x0565fcb1, 0x60040800, + 0x42001000, 0x00020038, 0x0539f802, 0x42007000, + 0x000211e8, 0x0001f041, 0x4a03b805, 0x30000002, + 0x59dc0006, 0x4807b800, 0x480bb801, 0x42007000, + 0x000211e8, 0x65007002, 0x480c7008, 0x58380007, + 0x90000408, 0x48007003, 0x640c7000, 0x4803b803, + 0x0001f062, 0x58380802, 0x600011fe, 0x82040480, + 0x0000ff00, 0x05021003, 0x40041000, 0x80000580, + 0x48007002, 0x480bb802, 0x59dc0006, 0x4a03b805, + 0x10000000, 0x1c01f000, 0x4a03b805, 0x30000001, + 0x58386001, 0x58301009, 0x4807c857, 0x4803c857, + 0x4833c857, 0x4a006002, 0x00000200, 0x64007000, + 0x800811c0, 0x0000003e, 0x0001f098, 0x4833c857, + 0x4807c857, 0x5830080a, 0x4c040000, 0x4d2c0000, + 0x40325800, 0x05fdfeed, 0x5c025800, 0x5c000800, + 0x4807c857, 0x0001f09a, 0x59e00017, 0x8c00050c, + 0x05020028, 0x59a838a5, 0xa01c459e, 0x05000025, + 0x59a820a2, 0x59a808a6, 0x59a848a7, 0x40245000, + 0x9004051f, 0x81782800, 0x801428c0, 0x8004010a, + 0x80101400, 0x50083000, 0x80140506, 0x0502000c, + 0x80040800, 0x80244840, 0x05000012, 0x80280581, + 0x05000005, 0x80142942, 0x9004051f, 0x05fe07f7, + 0x05fdf7f3, 0x41780800, 0x05fdf7ee, 0x59a818a3, + 0x800400c4, 0x800c1c00, 0x580c0003, 0x8c000500, + 0x05000009, 0x80204040, 0x05fe07ee, 0x80040800, + 0x80280581, 0x05020002, 0x41780800, 0x480750a6, + 0x1c01f000, 0x80142880, 0x80140506, 0x44001000, + 0x80042800, 0x80280585, 0x05020002, 0x41782800, + 0x481750a6, 0x801c3840, 0x481f50a5, 0x0001f0ab, + 0x59a818a2, 0x8004110a, 0x9004051f, 0x80081c03, + 0x81782000, 0x801020c0, 0x500c0000, 0x80100d00, + 0x05020006, 0x80100540, 0x59a808a5, 0x44001800, + 0x80040800, 0x480750a5, 0x1c01f000, 0x4df00000, + 0x4203e000, 0x50000000, 0x835c0480, 0x00000104, + 0x05fe1fb6, 0x5c03e000, 0x1c01f000, 0x59dc0006, + 0x8c000520, 0x05000009, 0x00044e5d, 0x59dc0006, + 0x82000500, 0x00006000, 0x05000004, 0x82000580, + 0x00006000, 0x05fe07f9, 0x1c01f000, 0x41781800, + 0x58382005, 0x40300000, 0x80100580, 0x05000007, + 0x40101800, 0x58102000, 0x801021c0, 0x05fe07fa, + 0x4803c856, 0x0501f011, 0x4833c857, 0x58302000, + 0x49786000, 0x800c19c0, 0x05020008, 0x801021c0, + 0x05000003, 0x48107005, 0x0501f008, 0x49787005, + 0x49787004, 0x0501f005, 0x48101800, 0x801021c0, + 0x05020002, 0x480c7004, 0x1c01f000, 0x4803c856, + 0x4dc00000, 0x42007000, 0x0011232b, 0x64007400, + 0x49787001, 0x600380ee, 0x60080800, 0x59c00007, 0x4a038006, 0x60000001, 0x59c00007, 0x4a038006, 0x60000003, 0x59c00007, 0x4a038006, 0x60000005, 0x59c00007, 0x4a038006, 0x60000007, 0x59c00007, - 0x4a038006, 0xe0000000, 0x1c01f000, 0x4c5c0000, - 0x4178b800, 0x0501f809, 0x5c00b800, 0x1c01f000, - 0x4803c856, 0x4c5c0000, 0x905cbd41, 0x0501f803, - 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4dc00000, - 0x4c500000, 0x4c580000, 0x4c540000, 0x640370e8, - 0x805cb9c0, 0x05000009, 0x64138807, 0x4a0370f2, - 0x80000000, 0x59b800ea, 0x8c000510, 0x05000003, - 0x59b800e0, 0x05fdf7fc, 0x608380ee, 0x0501fd02, - 0x59c00007, 0x4a038006, 0x20000000, 0x59c00007, - 0x4a038006, 0x8000000a, 0x59c00007, 0x4a038006, - 0x8000000b, 0x59c00007, 0x4a038006, 0x40000001, - 0x83c00580, 0x00007700, 0x05000003, 0x600380ee, - 0x05fdf7ef, 0x608380ee, 0x60000810, 0x59c00007, - 0x8c00051e, 0x05000006, 0x4a038006, 0x90000001, - 0x80040840, 0x05fe07fa, 0x05fdfa4c, 0x83c00580, - 0x00007700, 0x05000003, 0x600380ee, 0x05fdf7f3, - 0x4178a000, 0x805cb9c0, 0x0502000f, 0x6080b000, - 0x91b8ac20, 0x0561fd16, 0x640770fb, 0x4a037020, - 0x001012ac, 0x59a8005e, 0x82000500, 0x0000ffff, - 0x48037021, 0x4a037035, 0x00110202, 0x4a037038, - 0x001012a3, 0x640770fb, 0x6080b000, 0x91b8ac00, - 0x0561fd07, 0x6100b000, 0xb1b8ac00, 0x0561fd04, - 0x805cb9c0, 0x05020006, 0x4a0370e4, 0xaaaaaaaa, - 0x4a0370e5, 0xaaaaaaaa, 0x0501f005, 0x4a0370e4, - 0x82aa2a82, 0x4a0370e5, 0xaaaaa2aa, 0x4a0370e6, - 0xaaaaaaaa, 0x640370fb, 0x4a0370e6, 0xaaaaaaaa, - 0x608380ee, 0x4a038006, 0x90000000, 0x59c00007, - 0x8c00051e, 0x05fe0a19, 0x600380ee, 0x4a038006, - 0x90000000, 0x59c00007, 0x8c00051e, 0x05fe0a13, - 0x5c00a800, 0x5c00b000, 0x5c00a000, 0x5c038000, - 0x1c01f000, 0x4d300000, 0x4d2c0000, 0x4d340000, + 0x4a038006, 0x60000009, 0x59c00007, 0x4a038006, + 0x6000000b, 0x59c00007, 0x4c040000, 0x0501f817, + 0x5c000800, 0x4a038009, 0xf4f60000, 0x91c38420, + 0x80040840, 0x05fe07e6, 0x600380ee, 0x6443c822, + 0x640370e8, 0x0501f83c, 0x4a0370ee, 0x00100000, + 0x4a0370ee, 0x00080102, 0x4a0370e9, 0x00000400, + 0x4a0370e9, 0x00003a0f, 0x640370e8, 0x640770e8, + 0x5c038000, 0x1c01f000, 0x59c00007, 0x4a038006, + 0xe0000001, 0x61000800, 0x497b8005, 0x59c00007, + 0x80040840, 0x05fe07fd, 0x4a038006, 0x30000001, + 0x59c00007, 0x8c000508, 0x05fe07fe, 0x59c00007, + 0x4a038006, 0xb0000003, 0x59c00007, 0x4a038006, + 0xb0000005, 0x59c00007, 0x4a038006, 0xb0000001, + 0x59c00007, 0x4a038006, 0xb0000009, 0x59c00007, + 0x4a038006, 0xb0000007, 0x59c00007, 0x4a038006, + 0xb000000b, 0x59c00007, 0x4a038006, 0x60000001, + 0x59c00007, 0x4a038006, 0x60000003, 0x59c00007, + 0x4a038006, 0x60000005, 0x59c00007, 0x4a038006, + 0x60000007, 0x59c00007, 0x4a038006, 0xe0000000, + 0x1c01f000, 0x4c5c0000, 0x4178b800, 0x0501f809, + 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4c5c0000, + 0x905cbd41, 0x0501f803, 0x5c00b800, 0x1c01f000, + 0x4803c856, 0x4dc00000, 0x4c500000, 0x4c580000, + 0x4c540000, 0x640370e8, 0x805cb9c0, 0x05000009, + 0x64138807, 0x4a0370f2, 0x80000000, 0x59b800ea, + 0x8c000510, 0x05000003, 0x59b800e0, 0x05fdf7fc, + 0x608380ee, 0x0501fd3e, 0x59c00007, 0x4a038006, + 0x20000000, 0x59c00007, 0x4a038006, 0x8000000a, + 0x59c00007, 0x4a038006, 0x8000000b, 0x59c00007, + 0x4a038006, 0x40000001, 0x83c00580, 0x00007700, + 0x05000003, 0x600380ee, 0x05fdf7ef, 0x608380ee, + 0x60000810, 0x59c00007, 0x8c00051e, 0x05000006, + 0x4a038006, 0x90000001, 0x80040840, 0x05fe07fa, + 0x05fdfa25, 0x83c00580, 0x00007700, 0x05000003, + 0x600380ee, 0x05fdf7f3, 0x4178a000, 0x805cb9c0, + 0x0502000f, 0x6080b000, 0x91b8ac20, 0x0565fc2f, + 0x640770fb, 0x4a037020, 0x0010004b, 0x59a80061, + 0x82000500, 0x0000ffff, 0x48037021, 0x4a037035, + 0x001141a6, 0x4a037038, 0x00100042, 0x640770fb, + 0x6080b000, 0x91b8ac00, 0x0565fc20, 0x6100b000, + 0xb1b8ac00, 0x0565fc1d, 0x805cb9c0, 0x05020006, + 0x4a0370e4, 0xaaaaaaaa, 0x4a0370e5, 0xaaaaaaaa, + 0x0501f005, 0x4a0370e4, 0x82aa2a82, 0x4a0370e5, + 0xaaaaa2aa, 0x4a0370e6, 0xaaaaaaaa, 0x640370fb, + 0x4a0370e6, 0xaaaaaaaa, 0x608380ee, 0x4a038006, + 0x90000000, 0x59c00007, 0x8c00051e, 0x05fe09f2, + 0x600380ee, 0x4a038006, 0x90000000, 0x59c00007, + 0x8c00051e, 0x05fe09ec, 0x5c00a800, 0x5c00b000, + 0x5c00a000, 0x5c038000, 0x1c01f000, 0x4d300000, + 0x4d2c0000, 0x4d340000, 0x4d400000, 0x4cfc0000, + 0x4d380000, 0x4d3c0000, 0x4d440000, 0x4d4c0000, + 0x4d480000, 0x4c5c0000, 0x4c600000, 0x4c640000, + 0x4d040000, 0x4cf40000, 0x4cf80000, 0x0001f8d0, + 0x5c01f000, 0x5c01e800, 0x5c020800, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x5c029000, 0x5c029800, + 0x5c028800, 0x5c027800, 0x5c027000, 0x5c01f800, + 0x5c028000, 0x5c026800, 0x5c025800, 0x5c026000, + 0x1c01f000, 0x5c000000, 0x4c000000, 0x4803c857, + 0x4c540000, 0x4c500000, 0x4d240000, 0x4d200000, + 0x4d1c0000, 0x4d300000, 0x4d2c0000, 0x4d340000, 0x4d400000, 0x4cfc0000, 0x4d380000, 0x4d3c0000, 0x4d440000, 0x4d4c0000, 0x4d480000, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4d040000, 0x4cf40000, - 0x4cf80000, 0x0001f8c8, 0x5c01f000, 0x5c01e800, - 0x5c020800, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x5c029000, 0x5c029800, 0x5c028800, 0x5c027800, - 0x5c027000, 0x5c01f800, 0x5c028000, 0x5c026800, - 0x5c025800, 0x5c026000, 0x1c01f000, 0x493bc857, - 0x0001f0f5, 0x83300500, 0x000000ff, 0x90000c88, - 0x05fe19e6, 0x0c01f023, 0x1c01f000, 0x82000d00, - 0xc2000038, 0x05fe09da, 0x05fdf9e0, 0x00000000, - 0x00000048, 0x00000054, 0x00000053, 0x00100c17, - 0x00100c42, 0x00100c30, 0x00100c5c, 0x00100c21, - 0x00100c2a, 0x00100c33, 0x00100c58, 0x00100ccf, - 0x00100c17, 0x00100cd1, 0x00100c17, 0x00100c17, - 0x00100cd4, 0x00100cd8, 0x00100ce9, 0x00100cfb, - 0x00100c84, 0x00100d02, 0x00100d0c, 0x00100c17, - 0x00100c17, 0x00100c5d, 0x00100c17, 0x05fdf9c3, - 0x00100c20, 0x00100d8d, 0x00100ca1, 0x00100cc1, - 0x00100c20, 0x00100c20, 0x00100c20, 0x001010e6, - 0x05fdf9ba, 0x4803c856, 0x59300004, 0x8c00053e, - 0x05020003, 0x61567000, 0x0009f000, 0x053dfc92, - 0x05fc07fd, 0x1c01f000, 0x4803c856, 0x0501f8e3, - 0x40002800, 0x41782000, 0x615a7000, 0x0009f000, - 0x4803c856, 0x615e7000, 0x0009f000, 0x4803c856, - 0x0531ff4c, 0x4a0370e5, 0x00800000, 0x40000000, - 0x59b800e5, 0x8c00052c, 0x05000007, 0x4a0370e5, + 0x4cf80000, 0x4c580000, 0x0001f86e, 0x5c00b000, + 0x5c01f000, 0x5c01e800, 0x5c020800, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x5c029000, 0x5c029800, + 0x5c028800, 0x5c027800, 0x5c027000, 0x5c01f800, + 0x5c028000, 0x5c026800, 0x5c025800, 0x5c026000, + 0x5c023800, 0x5c024000, 0x5c024800, 0x5c00a000, + 0x5c00a800, 0x1c01f000, 0x493bc857, 0x0001f0fd, + 0x83300500, 0x000000ff, 0x90000c88, 0x05fe198e, + 0x0c01f026, 0x1c01f000, 0x82000d00, 0xc2000038, + 0x05fe0982, 0x05fdf988, 0x00000000, 0x00000048, + 0x00000054, 0x00000053, 0x00100cad, 0x00100cd8, + 0x00100cc6, 0x00100cf2, 0x00100cb7, 0x00100cc0, + 0x00100cc9, 0x00100cee, 0x00100d6b, 0x00100cad, + 0x00100d6d, 0x00100cad, 0x00100cad, 0x00100d70, + 0x00100d74, 0x00100d85, 0x00100d97, 0x00100d20, + 0x00100d9e, 0x00100da8, 0x00100cad, 0x00100cad, + 0x00100cf3, 0x00100cad, 0x00100cad, 0x00100d1a, + 0x00100cad, 0x05fdf968, 0x00100cb6, 0x00100e29, + 0x00100d3d, 0x00100d5d, 0x00100cb6, 0x00100cb6, + 0x00100cb6, 0x00101181, 0x05fdf95f, 0x4803c856, + 0x59300004, 0x8c00053e, 0x05020003, 0x61567000, + 0x0009f039, 0x0541f8ba, 0x05fc07fd, 0x1c01f000, + 0x4803c856, 0x0501f8e9, 0x40002800, 0x41782000, + 0x615a7000, 0x0009f039, 0x4803c856, 0x615e7000, + 0x0009f039, 0x4803c856, 0x0535faa6, 0x4a0370e5, 0x00800000, 0x40000000, 0x59b800e5, 0x8c00052c, - 0x05fe099a, 0x1c01f000, 0x4803c856, 0x59325809, - 0x812e59c0, 0x05000012, 0x59300008, 0x8c00051a, - 0x0502000b, 0x592c040c, 0x8c00051c, 0x05020003, - 0x4a026013, 0xffffffff, 0x59300004, 0x8c00053e, - 0x05020005, 0x61227000, 0x0009f000, 0x641e5a0a, - 0x05fdf7f8, 0x053dfc64, 0x05fc07fb, 0x1c01f000, - 0x4803c856, 0x83300500, 0x00ffffff, 0x0539f306, - 0x1c01f000, 0x4178b800, 0x59300817, 0x82040580, - 0xdeaddead, 0x05000011, 0x82040580, 0x00110228, - 0x05000009, 0x48066009, 0x497a6017, 0x0001f945, - 0x59300008, 0x60840800, 0x80040540, 0x48026008, - 0x0501f014, 0x48066009, 0x42026000, 0x00111ad0, - 0x0001f945, 0x0501f00f, 0x59a800de, 0x80000d40, - 0x4807c857, 0x05fc0965, 0x58041000, 0x49780800, - 0x59a800df, 0x80040580, 0x05020004, 0x497b50de, - 0x497b50df, 0x0501f002, 0x480b50de, 0x05fdf7ee, - 0x6503900d, 0x642370e5, 0x64126203, 0x1c01f000, - 0x4803c856, 0x813261c0, 0x05fc0954, 0x0551f842, + 0x05000007, 0x4a0370e5, 0x00800000, 0x40000000, + 0x59b800e5, 0x8c00052c, 0x05fe093f, 0x1c01f000, + 0x4803c856, 0x59325809, 0x812e59c0, 0x05000012, + 0x59300008, 0x8c00051a, 0x0502000b, 0x592c040c, + 0x8c00051c, 0x05020003, 0x4a026013, 0xffffffff, + 0x59300004, 0x8c00053e, 0x05020005, 0x61227000, + 0x0009f039, 0x641e5a0a, 0x05fdf7f8, 0x0541f88c, + 0x05fc07fb, 0x1c01f000, 0x4803c856, 0x83300500, + 0x00ffffff, 0x0539f724, 0x1c01f000, 0x4178b800, + 0x59300817, 0x82040580, 0xdeaddead, 0x05000011, + 0x82040580, 0x001141cc, 0x05000009, 0x48066009, + 0x497a6017, 0x0001f94d, 0x59300008, 0x60840800, + 0x80040540, 0x48026008, 0x0501f014, 0x48066009, + 0x42026000, 0x00115a74, 0x0001f94d, 0x0501f00f, + 0x59a800e3, 0x80000d40, 0x4807c857, 0x05fc090a, + 0x58041000, 0x49780800, 0x59a800e4, 0x80040580, + 0x05020004, 0x497b50e3, 0x497b50e4, 0x0501f002, + 0x480b50e3, 0x05fdf7ee, 0x6503900d, 0x642370e5, + 0x64126203, 0x1c01f000, 0x42000000, 0x0011235f, + 0x0565fa3e, 0x42000000, 0x00112484, 0x0565f238, + 0x4803c856, 0x813261c0, 0x05fc08f3, 0x0551fd2f, 0x0500000b, 0x59325809, 0x592c020c, 0x84000552, - 0x48025a0c, 0x0505f8a4, 0x59300004, 0x8c00053e, - 0x05020004, 0x417a7800, 0x054dfb83, 0x1c01f000, - 0x053dfc25, 0x05fc07fc, 0x1c01f000, 0x4c040000, + 0x48025a0c, 0x0505f87a, 0x59300004, 0x8c00053e, + 0x05020004, 0x417a7800, 0x0551f859, 0x1c01f000, + 0x0541f847, 0x05fc07fc, 0x1c01f000, 0x4c040000, 0x59b808ea, 0x90040d07, 0x90040583, 0x05000004, 0x42000000, 0x60000000, 0x0501f894, 0x5c000800, 0x1c01f000, 0x0501f8d7, 0x05000015, 0x59325809, 0x812e59c0, 0x05000012, 0x592c0208, 0x82000500, 0x000000ff, 0x90000da9, 0x0502000d, 0x59300203, 0x90000583, 0x05000008, 0x59300808, 0x84040d26, - 0x48066008, 0x0001f945, 0x6503900d, 0x642370e5, - 0x1c01f000, 0x053dfc04, 0x05fc07f8, 0x42000000, - 0x0010e44c, 0x0561fb23, 0x59880151, 0x80000000, - 0x48031151, 0x6503900d, 0x42000000, 0xc0000000, - 0x0001f13a, 0x4c5c0000, 0x4c600000, 0x4c640000, - 0x4200c800, 0x00110209, 0x6000b860, 0x6014c002, - 0x0531ffed, 0x4a0370e4, 0x02000000, 0x5c00c800, + 0x48066008, 0x0001f94d, 0x6503900d, 0x642370e5, + 0x1c01f000, 0x0541f826, 0x05fc07f8, 0x42000000, + 0x001123f0, 0x0565fa02, 0x59880154, 0x80000000, + 0x48031154, 0x6503900d, 0x42000000, 0xc0000000, + 0x0001f142, 0x4c5c0000, 0x4c600000, 0x4c640000, + 0x4200c800, 0x001141ad, 0x6000b860, 0x6014c002, + 0x0535fb41, 0x4a0370e4, 0x02000000, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4933c857, - 0x0005f7dc, 0x4933c857, 0x0501fbab, 0x1c01f000, - 0x41300800, 0x800409c0, 0x05fe0904, 0x05fdf8fc, - 0x42000000, 0x0010e44c, 0x0561fb02, 0x4933c857, - 0x813261c0, 0x05fc08fd, 0x0501f830, 0x40002800, - 0x0561fa66, 0x0501f88e, 0x05000006, 0x5932680a, - 0x59340200, 0x8c00050e, 0x59300416, 0x05520ad7, - 0x1c01f000, 0x42000000, 0x0010e44c, 0x0561faf1, - 0x4933c857, 0x813261c0, 0x05fc08ec, 0x0501f880, - 0x0500000a, 0x054dffd8, 0x05000008, 0x59325809, + 0x0009f010, 0x4933c857, 0x0501fbad, 0x1c01f000, + 0x41300800, 0x800409c0, 0x05fe08a3, 0x05fdf89b, + 0x42000000, 0x001123f0, 0x0565f9e1, 0x4933c857, + 0x813261c0, 0x05fc089c, 0x0501f830, 0x40002800, + 0x0565f942, 0x0501f88e, 0x05000006, 0x5932680a, + 0x59340200, 0x8c00050e, 0x59300416, 0x05520fd3, + 0x1c01f000, 0x42000000, 0x001123f0, 0x0565f9d0, + 0x4933c857, 0x813261c0, 0x05fc088b, 0x0501f880, + 0x0500000a, 0x0551fcc5, 0x05000008, 0x59325809, 0x592c020c, 0x84000544, 0x8400054e, 0x48025a0c, - 0x417a7800, 0x054dfb1c, 0x1c01f000, 0x485fc857, + 0x417a7800, 0x054dfff2, 0x1c01f000, 0x485fc857, 0x5c000000, 0x4d780000, 0x4203e000, 0x50000000, - 0x6014b900, 0x05fdf0dd, 0x4933c857, 0x913004a0, - 0x05fe18d6, 0x83300c00, 0x0010e4c1, 0x50040000, + 0x6014b900, 0x05fdf07c, 0x4933c857, 0x913004a0, + 0x05fe1875, 0x83300c00, 0x00112465, 0x50040000, 0x80000000, 0x05001002, 0x44000800, 0x1c01f000, 0x4933c857, 0x05fdf7f6, 0x4807c856, 0x59b800ea, 0x8c000510, 0x05fc07fd, 0x59b800e0, 0x4803c857, 0x1c01f000, 0x4803c856, 0x42000000, 0x10000000, - 0x41300800, 0x0501f019, 0x8c000510, 0x00000140, + 0x41300800, 0x0501f019, 0x8c000510, 0x00000148, 0x4c040000, 0x0501f808, 0x5c000800, 0x90100488, - 0x00001140, 0x4c040000, 0x05fdfeab, 0x5c000800, - 0x0001f140, 0x59b800e2, 0x59b820e2, 0x80100580, + 0x00001148, 0x4c040000, 0x05fdfe71, 0x5c000800, + 0x0001f148, 0x59b800e2, 0x59b820e2, 0x80100580, 0x05fe07fd, 0x80102114, 0x0501f001, 0x40101800, 0x800c190a, 0x9010051f, 0x900c1d1f, 0x800c2480, 0x9010251f, 0x1c01f000, 0x82000500, 0xf0000000, 0x82040d00, 0x0fffffff, 0x80040d40, 0x4807c857, - 0x42001000, 0x0010e38b, 0x50080000, 0x80000540, + 0x42001000, 0x0011232c, 0x50080000, 0x80000540, 0x05020004, 0x640f70e5, 0x4a0370e4, 0x00000300, 0x80000000, 0x44001000, 0x60001008, 0x59b800ea, 0x8c000510, 0x0500000b, 0x05fdffdf, 0x90100488, - 0x05001007, 0x4c040000, 0x4c080000, 0x05fdfe82, + 0x05001007, 0x4c040000, 0x4c080000, 0x05fdfe48, 0x5c001000, 0x5c000800, 0x0501f01c, 0x59b800ea, 0x8c000516, 0x05020019, 0x4a0370e4, 0x00300000, 0x480770e1, 0x600011fe, 0x80081040, 0x05000010, 0x59b808e4, 0x8c040528, 0x05fe07fc, 0x42001000, - 0x0010e38b, 0x50080000, 0x80000040, 0x05020004, - 0x640b70e5, 0x4a0370e4, 0x00000200, 0x05fc1877, + 0x0011232c, 0x50080000, 0x80000040, 0x05020004, + 0x640b70e5, 0x4a0370e4, 0x00000200, 0x05fc1816, 0x44001000, 0x8c04052c, 0x1c01f000, 0x41f80000, - 0x50000000, 0x05fdf871, 0x80081040, 0x05fe07d8, - 0x41f80000, 0x50000000, 0x05fdf86c, 0x4d380000, + 0x50000000, 0x05fdf810, 0x80081040, 0x05fe07d8, + 0x41f80000, 0x50000000, 0x05fdf80b, 0x4d380000, 0x59300c07, 0x90040589, 0x05020004, 0x611e7000, - 0x0009f800, 0x80000580, 0x5c027000, 0x1c01f000, - 0x4c500000, 0x59a80249, 0x8c000518, 0x05000006, + 0x0009f839, 0x80000580, 0x5c027000, 0x1c01f000, + 0x4c500000, 0x59a8024c, 0x8c000518, 0x05000006, 0x640b900d, 0x59c8a020, 0x640f900d, 0x59c80820, 0x0501f005, 0x6407900d, 0x59c8a020, 0x640b900d, 0x59c80820, 0x8c50052e, 0x05000002, 0x900409c0, - 0x82040d00, 0x0000ffff, 0x0531fd12, 0x5c00a000, - 0x1c01f000, 0x42000000, 0x0010e43e, 0x0561fa4d, - 0x05fdffe8, 0x05000052, 0x4933c857, 0x59300407, - 0x90000580, 0x0500004e, 0x59c82021, 0x6407900d, + 0x82040d00, 0x0000ffff, 0x0535f864, 0x5c00a000, + 0x1c01f000, 0x42000000, 0x001123df, 0x0565f92c, + 0x05fdffe8, 0x05000054, 0x4933c857, 0x59300407, + 0x90000580, 0x05000050, 0x59c82021, 0x6407900d, 0x59c82821, 0x82142d00, 0x0000ffff, 0x59325809, - 0x812e59c0, 0x05000046, 0x59300008, 0x8c000536, - 0x05020043, 0x5932680a, 0x0525fb16, 0x05520a03, - 0x599c0019, 0x8c00050c, 0x0502001e, 0x0525fb11, - 0x0502001c, 0x59300813, 0x4807c857, 0x592c040c, - 0x8c00051c, 0x05020015, 0x8400055c, 0x48025c0c, - 0x42000000, 0x0010e3ba, 0x0561fa2a, 0x592c0a08, - 0x82040d00, 0x000000ff, 0xb0040588, 0x05000007, - 0x90040598, 0x05000005, 0xb00405a8, 0x05000003, - 0xb00405aa, 0x05020005, 0x59300013, 0x0555f8fb, - 0x80000d40, 0x48065806, 0x4a026013, 0x7fffffff, - 0x59300008, 0x8c000516, 0x0502001d, 0x48166015, - 0x0525faf0, 0x05000004, 0x59300416, 0x8c00051c, - 0x05000004, 0x599c0019, 0x8c00050c, 0x05000014, - 0x0501fcfc, 0x05020012, 0x0501fa0b, 0x40280000, - 0x4802600f, 0x05000005, 0x4832600d, 0x50200000, - 0x4802600c, 0x4822600e, 0x59300416, 0x8c00051c, - 0x05020004, 0x599c0019, 0x8c00050c, 0x05020871, - 0x6503900d, 0x642370e5, 0x1c01f000, 0x42000000, - 0x0010e44c, 0x0561f9f7, 0x59880153, 0x80000000, - 0x48031153, 0x6503900d, 0x42000000, 0xc0000000, - 0x0001f13a, 0x4cf80000, 0x58f40000, 0x8001f540, - 0x0501f81e, 0x41781800, 0x0501f903, 0x05020013, - 0x44140800, 0x0501f826, 0x05000010, 0x40043800, - 0x60041800, 0x40142000, 0x0501f8fb, 0x0502000b, - 0x801c3800, 0x501c0000, 0x44000800, 0x0501f80f, - 0x801c0580, 0x05000004, 0x44103800, 0x801c3840, - 0x44143800, 0x0501f816, 0x5c01f000, 0x1c01f000, - 0x80f9f1c0, 0x05020003, 0x58f41202, 0x0501f002, - 0x601c1000, 0x1c01f000, 0x80f9f1c0, 0x05020005, - 0x58f40401, 0x90000482, 0x80f40400, 0x0501f004, - 0x58f80401, 0x90000482, 0x80f80400, 0x50002800, - 0x80000000, 0x50002000, 0x1c01f000, 0x80f9f1c0, - 0x05020006, 0x58f40401, 0x90000482, 0x05f81fbb, - 0x4801ec01, 0x0501f008, 0x58f80401, 0x90000482, - 0x05f81fb6, 0x4801f401, 0x90000582, 0x05020002, - 0x0501f817, 0x58f40202, 0x80000040, 0x4801ea02, - 0x05f80fae, 0x90000581, 0x1c01f000, 0x82f40580, - 0xffffffff, 0x0500000d, 0x58f40201, 0x82000580, - 0x0000dcb3, 0x05fa0fa5, 0x58f40000, 0x8001f540, - 0x05000005, 0x58f80201, 0x82000580, 0x0000ddb9, - 0x05fa0f9e, 0x0501f809, 0x1c01f000, 0x4d2c0000, - 0x40fa5800, 0x05fdfb51, 0x4979e800, 0x4179f000, - 0x5c025800, 0x1c01f000, 0x80f5e9c0, 0x05000008, - 0x80f9f1c0, 0x05fe0ff6, 0x4d2c0000, 0x40f65800, - 0x05fdfb46, 0x4179e800, 0x5c025800, 0x1c01f000, - 0x4cf40000, 0x0525fa67, 0x0502002e, 0x59300808, - 0x82040500, 0x00003000, 0x0502002a, 0x8c040522, - 0x0500002a, 0x5930002b, 0x8001ed40, 0x05f80f7f, - 0x82000580, 0xffffffff, 0x05000022, 0x58f40201, - 0x82000580, 0x0000dcb3, 0x05fa0f78, 0x58f40a02, - 0x82040500, 0x0000fffe, 0x05000003, 0x05fdff86, - 0x58f40a02, 0x9004048f, 0x0502107a, 0x80040800, - 0x4805ea02, 0x90040588, 0x0500007d, 0x90040488, - 0x05001008, 0x58f40000, 0x8001ed40, 0x05f80f67, - 0x58f40201, 0x82000580, 0x0000ddb9, 0x05fa0f63, - 0x58f40401, 0x90000c02, 0x4805ec01, 0x80f40400, - 0x59300814, 0x44040000, 0x80000000, 0x45780000, - 0x5c01e800, 0x1c01f000, 0x60001020, 0x4203e000, - 0xb0800000, 0x4203f800, 0x0c000000, 0x40000000, - 0x80081040, 0x05f80f51, 0x05ffb7fb, 0x59300808, - 0x84040d62, 0x48066008, 0x4203f800, 0x08000000, - 0x4d2c0000, 0x05fdfae0, 0x0500004e, 0x492e602b, - 0x4a025a01, 0x0000dcb3, 0x59300009, 0x80001d40, - 0x05f80f42, 0x580c0813, 0x48065803, 0x580c0208, - 0x82000500, 0x000000ff, 0xb00005a8, 0x05000007, - 0x90000582, 0x05000005, 0x90000598, 0x05000003, - 0x90000588, 0x0502002b, 0x580c1801, 0x800c19c0, - 0x05f80f32, 0x580c0c09, 0x90040d03, 0x90040582, - 0x05020003, 0x592c0803, 0x0501f022, 0x580c2a0a, - 0x580c000b, 0x59301813, 0x800c0580, 0x05000021, - 0x90040580, 0x0500000e, 0x40140000, 0x4c080000, - 0x400c1000, 0x41780800, 0x0539f8d4, 0x800409c0, - 0x05fa0f1e, 0x90140c08, 0x0539f8b4, 0x5c001000, - 0x40041800, 0x592c0803, 0x0501f015, 0x90140408, - 0x4c080000, 0x400c1000, 0x41780800, 0x0539f8c7, - 0x800409c0, 0x05fa0f11, 0x40140800, 0x0539f8a7, - 0x5c001000, 0x40041800, 0x592c0803, 0x0501f008, - 0x59301813, 0x40040000, 0x800c0580, 0x05020004, - 0x497a5a02, 0x64125c01, 0x0501f007, 0x64065a02, - 0x641a5c01, 0x497a5804, 0x400c0000, 0x80040480, - 0x48025805, 0x412de800, 0x5c025800, 0x05fdf789, - 0x5c025800, 0x4a02602b, 0xffffffff, 0x05fdf79d, - 0x4d2c0000, 0x58f65800, 0x05fdfaac, 0x40f65800, - 0x05fdfaaa, 0x5c025800, 0x05fdf7f7, 0x4d2c0000, - 0x05fdfa85, 0x05fc07fa, 0x4a025a01, 0x0000ddb9, - 0x640a5c01, 0x492de800, 0x412de800, 0x5c025800, - 0x05fdf784, 0x05fdff13, 0x90f40404, 0x800c0400, - 0x40000800, 0x50040000, 0x80100580, 0x05000012, - 0x90040c02, 0x80081040, 0x05fe07fb, 0x80f9f1c0, - 0x0500000e, 0x58f41202, 0x90081487, 0x90f80402, - 0x800c0400, 0x40000800, 0x50040000, 0x80100580, - 0x05000005, 0x90040c02, 0x80081040, 0x05fe07fb, - 0x0501f002, 0x1c01f000, 0x90000541, 0x05fdf7fe, - 0x4cf40000, 0x4cf80000, 0x4001e800, 0x812e59c0, - 0x05000021, 0x592c0a0a, 0x800409c0, 0x0502001e, - 0x82f40580, 0xffffffff, 0x05000019, 0x58f40201, - 0x82000580, 0x0000dcb3, 0x05fa0ebc, 0x58f40000, - 0x8001f540, 0x05000005, 0x58f80201, 0x82000580, - 0x0000ddb9, 0x05fa0eb5, 0x41783800, 0x58f44003, - 0x0501f833, 0x05020009, 0x05fdff1c, 0x497a602b, - 0x59300808, 0x84040d22, 0x48066008, 0x5c01f000, - 0x5c01e800, 0x1c01f000, 0x05fdff14, 0x64465a0a, - 0x05fdf7f7, 0x05fdfefa, 0x05fdf7f5, 0x4cf40000, - 0x4cf80000, 0x4001e800, 0x90040581, 0x0502001c, - 0x82f40580, 0xffffffff, 0x05000017, 0x58f40201, - 0x82000580, 0x0000dcb3, 0x05fa0e98, 0x58f40000, - 0x8001f540, 0x05000005, 0x58f80201, 0x82000580, - 0x0000ddb9, 0x05fa0e91, 0x41783800, 0x58f44003, - 0x0501f80f, 0x05020007, 0x05fdfef8, 0x60040800, - 0x497a602b, 0x5c01f000, 0x5c01e800, 0x1c01f000, - 0x05fdfef2, 0x60440800, 0x05fdf7fa, 0x4c040000, - 0x05fdfed7, 0x5c000800, 0x05fdf7f6, 0x4803c856, - 0x401c2000, 0x41781800, 0x4c200000, 0x05fdff96, - 0x5c004000, 0x05020022, 0x40202000, 0x60041800, - 0x05fdff91, 0x0502001e, 0x05fdfea2, 0x40082800, - 0x90f43404, 0x50182000, 0x40100000, 0x801c0580, - 0x05000004, 0x60041800, 0x05fdff87, 0x05020014, - 0x90183402, 0x80142840, 0x05fe07f7, 0x80f9f1c0, - 0x0500000e, 0x58f42a02, 0x90142c87, 0x90f83402, - 0x50182000, 0x40100000, 0x801c0580, 0x05000004, - 0x60041800, 0x05fdff78, 0x05020005, 0x90183402, - 0x80142840, 0x05fe07f7, 0x1c01f000, 0x90000541, - 0x05fdf7fe, 0x05f9fe55, 0x592c020e, 0x8c000502, - 0x05fc07fd, 0x497a6014, 0x0501fdbe, 0x412c7000, - 0x59300008, 0x84000556, 0x48026008, 0x9004050f, - 0x82000c00, 0x001012ac, 0x50044000, 0x80204000, - 0x50200000, 0x80187c00, 0x583c2800, 0x583c2001, - 0x583c1002, 0x58380a0b, 0x40187000, 0x5818300b, - 0x59303808, 0x497a6015, 0x0001f183, 0x592c040e, - 0x8c000500, 0x05f80e39, 0x592c0011, 0x48026014, - 0x05fdf7e6, 0x592c040c, 0x8c000502, 0x05fc07de, - 0x592c040d, 0x80000540, 0x05fc07db, 0x90000c82, - 0x0500100e, 0x58380001, 0x80007540, 0x05f80e2b, - 0x58380208, 0x9000050f, 0x82000400, 0x001012ac, - 0x50004000, 0x40040000, 0x800409c0, 0x05000004, - 0x90040c85, 0x05fe17f4, 0x80204400, 0x50200000, - 0x80387c00, 0x583c2800, 0x583c2001, 0x583c1002, - 0x592c0a0b, 0x592c3011, 0x59303808, 0x497a6014, - 0x497a6015, 0x48166010, 0x48126011, 0x480a6012, - 0x481a6013, 0x80040840, 0x4806600f, 0x0000018a, - 0x80204000, 0x50201800, 0x800c19c0, 0x0502000a, - 0x58380001, 0x80007540, 0x05f80e08, 0x58380208, - 0x9000050f, 0x82000400, 0x001012ac, 0x50004000, - 0x50201800, 0x483a600d, 0x480e600c, 0x4822600e, - 0x0001f18a, 0x4803c856, 0x592c020c, 0x8c00051e, - 0x05020016, 0x50200000, 0x80306c00, 0x40240000, - 0x0c01f001, 0x00100ff5, 0x00100ff5, 0x00100ffd, - 0x00100ff5, 0x00100ff5, 0x00100ff5, 0x00100ff5, - 0x00100ff5, 0x00100ffd, 0x00100ff5, 0x00100ffd, - 0x00100ff5, 0x00100ff5, 0x00100ffd, 0x00100ff5, - 0x00100ff5, 0x05f9fde5, 0x8400051e, 0x48025a0c, - 0x50200000, 0x80306c00, 0x58343801, 0x481e6011, - 0x0501f007, 0x58341802, 0x58342800, 0x58343801, - 0x480e6012, 0x48166010, 0x481e6011, 0x0501f289, - 0x4933c857, 0x5931f809, 0x59301006, 0x800811c0, - 0x05000009, 0x41780800, 0x60280000, 0x0535ff83, - 0x80080102, 0x05020002, 0x84001542, 0x80081040, - 0x4809fc0a, 0x640a6006, 0x592c040d, 0x90000508, - 0x05000008, 0x0501f834, 0x59300203, 0x90000584, - 0x05020003, 0x61227000, 0x0009f800, 0x1c01f000, - 0x4cfc0000, 0x58fc0208, 0x82000500, 0x000000ff, - 0xb0000588, 0x05000003, 0x900005a2, 0x05020009, - 0x58fc040c, 0x8c000500, 0x05000006, 0x58fc080f, - 0x8c040516, 0x0500001c, 0x58fc000b, 0x0501f00a, - 0x58fc040c, 0x8c000512, 0x05020019, 0x58fc0c0d, - 0x8c040516, 0x05020003, 0x5c01f800, 0x1c01f000, - 0x58fc000e, 0x4c000000, 0x4d2c0000, 0x40fe5800, - 0x59300013, 0x0551fe81, 0x5c025800, 0x80000d40, - 0x5c000000, 0x80040580, 0x05020007, 0x59300008, - 0x84000500, 0x48026008, 0x61227000, 0x5c01f800, - 0x0009f000, 0x5c01f800, 0x1c01f000, 0x58fdf80d, - 0x05fdf7e7, 0x5c000000, 0x4c000000, 0x4803c857, - 0x4933c857, 0x59b808ea, 0x90040d07, 0x90040580, - 0x05000021, 0x90040583, 0x0500001f, 0x59300407, - 0x4c000000, 0x64026407, 0x61043000, 0x4a0370e5, - 0x00003000, 0x42000000, 0x50000000, 0x41300800, - 0x4c180000, 0x05fdfcd5, 0x5c003000, 0x0500000d, - 0x60780000, 0x80000040, 0x05fe07ff, 0x80183040, - 0x05fe07f5, 0x42000000, 0x40000000, 0x41300800, - 0x05fdfcca, 0x5988014d, 0x80000000, 0x4803114d, - 0x4a0370e5, 0x00002000, 0x5c000000, 0x48026407, - 0x1c01f000, 0x59300008, 0x84000500, 0x48026008, - 0x05fdf7fc, 0x59c00007, 0x4a038006, 0x30000000, - 0x40000000, 0x59c00007, 0x8c00050a, 0x05fe07fe, - 0x1c01f000, 0x5c000000, 0x4c000000, 0x4803c857, - 0x4dc00000, 0x640370e8, 0x608380ee, 0x05fdfff2, - 0x600380ee, 0x05fdfff0, 0x0529f828, 0x05020011, - 0x4a038891, 0x0000ffff, 0x497b8880, 0x4ce80000, - 0x6059d000, 0x0531ff78, 0x497b8892, 0x6059d000, - 0x0531ff75, 0x5c01d000, 0x42000000, 0x0010e497, - 0x055dff48, 0x0501f810, 0x5c038000, 0x0529f102, - 0x0501f81f, 0x4c080000, 0x4c140000, 0x42000000, - 0x0010e498, 0x055dff3f, 0x0501f807, 0x5c002800, + 0x812e59c0, 0x05000048, 0x59300008, 0x8c000536, + 0x05020045, 0x5932680a, 0x0525fcec, 0x05520eff, + 0x0565fa96, 0x0502001e, 0x0525fce8, 0x0502001c, + 0x59300813, 0x4807c857, 0x592c040c, 0x8c00051c, + 0x05020015, 0x8400055c, 0x48025c0c, 0x42000000, + 0x0011235b, 0x0565f90a, 0x592c0a08, 0x82040d00, + 0x000000ff, 0xb0040588, 0x05000007, 0x90040598, + 0x05000005, 0xb00405a8, 0x05000003, 0xb00405aa, + 0x05020005, 0x59300013, 0x0555fe06, 0x80000d40, + 0x48065806, 0x4a026013, 0x7fffffff, 0x59300014, + 0x80000540, 0x05000004, 0x59300008, 0x8c000516, + 0x0502001d, 0x48166015, 0x0525fcc4, 0x05000004, + 0x59300416, 0x8c00051c, 0x05000005, 0x0565fa6b, + 0x05000015, 0x0525fcbd, 0x05020013, 0x0501fcd0, + 0x05020011, 0x0501fa0a, 0x40280000, 0x4802600f, + 0x05000005, 0x4832600d, 0x50200000, 0x4802600c, + 0x4822600e, 0x59300416, 0x8c00051c, 0x05020003, + 0x0565fa5a, 0x05020871, 0x6503900d, 0x642370e5, + 0x1c01f000, 0x42000000, 0x001123f0, 0x0565f8d4, + 0x59880156, 0x80000000, 0x48031156, 0x6503900d, + 0x42000000, 0xc0000000, 0x0001f142, 0x4cf80000, + 0x58f40000, 0x8001f540, 0x0501f81e, 0x41781800, + 0x0501f903, 0x05020013, 0x44140800, 0x0501f826, + 0x05000010, 0x40043800, 0x60041800, 0x40142000, + 0x0501f8fb, 0x0502000b, 0x801c3800, 0x501c0000, + 0x44000800, 0x0501f80f, 0x801c0580, 0x05000004, + 0x44103800, 0x801c3840, 0x44143800, 0x0501f816, + 0x5c01f000, 0x1c01f000, 0x80f9f1c0, 0x05020003, + 0x58f41202, 0x0501f002, 0x601c1000, 0x1c01f000, + 0x80f9f1c0, 0x05020005, 0x58f40401, 0x90000482, + 0x80f40400, 0x0501f004, 0x58f80401, 0x90000482, + 0x80f80400, 0x50002800, 0x80000000, 0x50002000, + 0x1c01f000, 0x80f9f1c0, 0x05020006, 0x58f40401, + 0x90000482, 0x05f81f58, 0x4801ec01, 0x0501f008, + 0x58f80401, 0x90000482, 0x05f81f53, 0x4801f401, + 0x90000582, 0x05020002, 0x0501f817, 0x58f40202, + 0x80000040, 0x4801ea02, 0x05f80f4b, 0x90000581, + 0x1c01f000, 0x82f40580, 0xffffffff, 0x0500000d, + 0x58f40201, 0x82000580, 0x0000dcb3, 0x05fa0f42, + 0x58f40000, 0x8001f540, 0x05000005, 0x58f80201, + 0x82000580, 0x0000ddb9, 0x05fa0f3b, 0x0501f809, + 0x1c01f000, 0x4d2c0000, 0x40fa5800, 0x05fdfaea, + 0x4979e800, 0x4179f000, 0x5c025800, 0x1c01f000, + 0x80f5e9c0, 0x05000008, 0x80f9f1c0, 0x05fe0ff6, + 0x4d2c0000, 0x40f65800, 0x05fdfadf, 0x4179e800, + 0x5c025800, 0x1c01f000, 0x4cf40000, 0x0525fc3b, + 0x0502002e, 0x59300808, 0x82040500, 0x00003000, + 0x0502002a, 0x8c040522, 0x0500002a, 0x5930002b, + 0x8001ed40, 0x05f80f1c, 0x82000580, 0xffffffff, + 0x05000022, 0x58f40201, 0x82000580, 0x0000dcb3, + 0x05fa0f15, 0x58f40a02, 0x82040500, 0x0000fffe, + 0x05000003, 0x05fdff86, 0x58f40a02, 0x9004048f, + 0x0502107a, 0x80040800, 0x4805ea02, 0x90040588, + 0x0500007d, 0x90040488, 0x05001008, 0x58f40000, + 0x8001ed40, 0x05f80f04, 0x58f40201, 0x82000580, + 0x0000ddb9, 0x05fa0f00, 0x58f40401, 0x90000c02, + 0x4805ec01, 0x80f40400, 0x59300814, 0x44040000, + 0x80000000, 0x45780000, 0x5c01e800, 0x1c01f000, + 0x60001020, 0x4203e000, 0xb0800000, 0x4203f800, + 0x0c000000, 0x40000000, 0x80081040, 0x05f80eee, + 0x05ffb7fb, 0x59300808, 0x84040d62, 0x48066008, + 0x4203f800, 0x08000000, 0x4d2c0000, 0x05fdfa79, + 0x0500004e, 0x492e602b, 0x4a025a01, 0x0000dcb3, + 0x59300009, 0x80001d40, 0x05f80edf, 0x580c0813, + 0x48065803, 0x580c0208, 0x82000500, 0x000000ff, + 0xb00005a8, 0x05000007, 0x90000582, 0x05000005, + 0x90000598, 0x05000003, 0x90000588, 0x0502002b, + 0x580c1801, 0x800c19c0, 0x05f80ecf, 0x580c0c09, + 0x90040d03, 0x90040582, 0x05020003, 0x592c0803, + 0x0501f022, 0x580c2a0a, 0x580c000b, 0x59301813, + 0x800c0580, 0x05000021, 0x90040580, 0x0500000e, + 0x40140000, 0x4c080000, 0x400c1000, 0x41780800, + 0x0539fcef, 0x800409c0, 0x05fa0ebb, 0x90140c08, + 0x0539fccf, 0x5c001000, 0x40041800, 0x592c0803, + 0x0501f015, 0x90140408, 0x4c080000, 0x400c1000, + 0x41780800, 0x0539fce2, 0x800409c0, 0x05fa0eae, + 0x40140800, 0x0539fcc2, 0x5c001000, 0x40041800, + 0x592c0803, 0x0501f008, 0x59301813, 0x40040000, + 0x800c0580, 0x05020004, 0x497a5a02, 0x64125c01, + 0x0501f007, 0x64065a02, 0x641a5c01, 0x497a5804, + 0x400c0000, 0x80040480, 0x48025805, 0x412de800, + 0x5c025800, 0x05fdf789, 0x5c025800, 0x4a02602b, + 0xffffffff, 0x05fdf79d, 0x4d2c0000, 0x58f65800, + 0x05fdfa45, 0x40f65800, 0x05fdfa43, 0x5c025800, + 0x05fdf7f7, 0x4d2c0000, 0x05fdfa1e, 0x05fc07fa, + 0x4a025a01, 0x0000ddb9, 0x640a5c01, 0x492de800, + 0x412de800, 0x5c025800, 0x05fdf784, 0x05fdff13, + 0x90f40404, 0x800c0400, 0x40000800, 0x50040000, + 0x80100580, 0x05000012, 0x90040c02, 0x80081040, + 0x05fe07fb, 0x80f9f1c0, 0x0500000e, 0x58f41202, + 0x90081487, 0x90f80402, 0x800c0400, 0x40000800, + 0x50040000, 0x80100580, 0x05000005, 0x90040c02, + 0x80081040, 0x05fe07fb, 0x0501f002, 0x1c01f000, + 0x90000541, 0x05fdf7fe, 0x4cf40000, 0x4cf80000, + 0x4001e800, 0x812e59c0, 0x05000021, 0x592c0a0a, + 0x800409c0, 0x0502001e, 0x82f40580, 0xffffffff, + 0x05000019, 0x58f40201, 0x82000580, 0x0000dcb3, + 0x05fa0e59, 0x58f40000, 0x8001f540, 0x05000005, + 0x58f80201, 0x82000580, 0x0000ddb9, 0x05fa0e52, + 0x41783800, 0x58f44003, 0x0501f833, 0x05020009, + 0x05fdff1c, 0x497a602b, 0x59300808, 0x84040d22, + 0x48066008, 0x5c01f000, 0x5c01e800, 0x1c01f000, + 0x05fdff14, 0x64465a0a, 0x05fdf7f7, 0x05fdfefa, + 0x05fdf7f5, 0x4cf40000, 0x4cf80000, 0x4001e800, + 0x90040581, 0x0502001c, 0x82f40580, 0xffffffff, + 0x05000017, 0x58f40201, 0x82000580, 0x0000dcb3, + 0x05fa0e35, 0x58f40000, 0x8001f540, 0x05000005, + 0x58f80201, 0x82000580, 0x0000ddb9, 0x05fa0e2e, + 0x41783800, 0x58f44003, 0x0501f80f, 0x05020007, + 0x05fdfef8, 0x60040800, 0x497a602b, 0x5c01f000, + 0x5c01e800, 0x1c01f000, 0x05fdfef2, 0x60440800, + 0x05fdf7fa, 0x4c040000, 0x05fdfed7, 0x5c000800, + 0x05fdf7f6, 0x4803c856, 0x401c2000, 0x41781800, + 0x4c200000, 0x05fdff96, 0x5c004000, 0x05020022, + 0x40202000, 0x60041800, 0x05fdff91, 0x0502001e, + 0x05fdfea2, 0x40082800, 0x90f43404, 0x50182000, + 0x40100000, 0x801c0580, 0x05000004, 0x60041800, + 0x05fdff87, 0x05020014, 0x90183402, 0x80142840, + 0x05fe07f7, 0x80f9f1c0, 0x0500000e, 0x58f42a02, + 0x90142c87, 0x90f83402, 0x50182000, 0x40100000, + 0x801c0580, 0x05000004, 0x60041800, 0x05fdff78, + 0x05020005, 0x90183402, 0x80142840, 0x05fe07f7, + 0x1c01f000, 0x90000541, 0x05fdf7fe, 0x05f9fdf2, + 0x592c020e, 0x8c000502, 0x05fc07fd, 0x497a6014, + 0x0501fd92, 0x412c7000, 0x59300008, 0x84000556, + 0x48026008, 0x9004050f, 0x82000c00, 0x0010004b, + 0x50044000, 0x80204000, 0x50200000, 0x80187c00, + 0x583c2800, 0x583c2001, 0x583c1002, 0x58380a0b, + 0x40187000, 0x5818300b, 0x59303808, 0x497a6015, + 0x0001f18b, 0x592c040e, 0x8c000500, 0x05f80dd6, + 0x592c0011, 0x48026014, 0x05fdf7e6, 0x592c040c, + 0x8c000502, 0x05fc07de, 0x592c040d, 0x80000540, + 0x05fc07db, 0x90000c82, 0x0500100e, 0x58380001, + 0x80007540, 0x05f80dc8, 0x58380208, 0x9000050f, + 0x82000400, 0x0010004b, 0x50004000, 0x40040000, + 0x800409c0, 0x05000004, 0x90040c85, 0x05fe17f4, + 0x80204400, 0x50200000, 0x80387c00, 0x583c2800, + 0x583c2001, 0x583c1002, 0x592c0a0b, 0x592c3011, + 0x59303808, 0x497a6014, 0x497a6015, 0x48166010, + 0x48126011, 0x480a6012, 0x481a6013, 0x80040840, + 0x4806600f, 0x00000192, 0x80204000, 0x50201800, + 0x800c19c0, 0x0502000a, 0x58380001, 0x80007540, + 0x05f80da5, 0x58380208, 0x9000050f, 0x82000400, + 0x0010004b, 0x50004000, 0x50201800, 0x483a600d, + 0x480e600c, 0x4822600e, 0x0001f192, 0x4803c856, + 0x592c020c, 0x8c00051e, 0x05020016, 0x50200000, + 0x80306c00, 0x40240000, 0x0c01f001, 0x00101093, + 0x00101093, 0x0010109b, 0x00101093, 0x00101093, + 0x00101093, 0x00101093, 0x00101093, 0x0010109b, + 0x00101093, 0x0010109b, 0x00101093, 0x00101093, + 0x0010109b, 0x00101093, 0x00101093, 0x05f9fd82, + 0x8400051e, 0x48025a0c, 0x50200000, 0x80306c00, + 0x58343801, 0x481e6011, 0x0501f007, 0x58341802, + 0x58342800, 0x58343801, 0x480e6012, 0x48166010, + 0x481e6011, 0x0501f287, 0x4933c857, 0x5931f809, + 0x59301006, 0x800811c0, 0x05000009, 0x41780800, + 0x60280000, 0x0539fb9e, 0x80080102, 0x05020002, + 0x84001542, 0x80081040, 0x4809fc0a, 0x640a6006, + 0x592c040d, 0x90000508, 0x05000008, 0x0501f834, + 0x59300203, 0x90000584, 0x05020003, 0x61227000, + 0x0009f839, 0x1c01f000, 0x4cfc0000, 0x58fc0208, + 0x82000500, 0x000000ff, 0xb0000588, 0x05000003, + 0x900005a2, 0x05020009, 0x58fc040c, 0x8c000500, + 0x05000006, 0x58fc080f, 0x8c040516, 0x0500001c, + 0x58fc000b, 0x0501f00a, 0x58fc040c, 0x8c000512, + 0x05020019, 0x58fc0c0d, 0x8c040516, 0x05020003, + 0x5c01f800, 0x1c01f000, 0x58fc000e, 0x4c000000, + 0x4d2c0000, 0x40fe5800, 0x59300013, 0x0555fb89, + 0x5c025800, 0x80000d40, 0x5c000000, 0x80040580, + 0x05020007, 0x59300008, 0x84000500, 0x48026008, + 0x61227000, 0x5c01f800, 0x0009f039, 0x5c01f800, + 0x1c01f000, 0x58fdf80d, 0x05fdf7e7, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4933c857, 0x59b808ea, + 0x90040d07, 0x90040580, 0x05000021, 0x90040583, + 0x0500001f, 0x59300407, 0x4c000000, 0x64026407, + 0x61043000, 0x4a0370e5, 0x00003000, 0x42000000, + 0x50000000, 0x41300800, 0x4c180000, 0x05fdfcd3, + 0x5c003000, 0x0500000d, 0x60780000, 0x80000040, + 0x05fe07ff, 0x80183040, 0x05fe07f5, 0x42000000, + 0x40000000, 0x41300800, 0x05fdfcc8, 0x59880150, + 0x80000000, 0x48031150, 0x4a0370e5, 0x00002000, + 0x5c000000, 0x48026407, 0x1c01f000, 0x59300008, + 0x84000500, 0x48026008, 0x05fdf7fc, 0x59c00007, + 0x4a038006, 0x30000000, 0x40000000, 0x59c00007, + 0x8c00050a, 0x05fe07fe, 0x1c01f000, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4dc00000, 0x640370e8, + 0x608380ee, 0x05fdfff2, 0x600380ee, 0x05fdfff0, + 0x0529fa74, 0x05020012, 0x4a038891, 0x0000ffff, + 0x497b8880, 0x4ce80000, 0x6059d000, 0x0535fb45, + 0x497b8892, 0x6059d000, 0x0535fb42, 0x5c01d000, + 0x42000000, 0x0011243b, 0x0561fe25, 0x61fc19ff, + 0x0501f811, 0x5c038000, 0x0529f34d, 0x0501f81b, + 0x4c080000, 0x4c140000, 0x42000000, 0x0011243c, + 0x0561fe1b, 0x61fc19ff, 0x0501f807, 0x5c002800, 0x5c001000, 0x48178892, 0x480b8880, 0x5c038000, - 0x1c01f000, 0x496fc857, 0x916c0583, 0x05020008, - 0x4c080000, 0x4c0c0000, 0x61201100, 0x61fc19ff, - 0x0519ff30, 0x5c001800, 0x5c001000, 0x60f00800, - 0x0501ff46, 0x4a038891, 0x0000ffff, 0x6503900d, - 0x05fdfaa8, 0x640770e8, 0x1c01f000, 0x5c000000, - 0x4c000000, 0x4803c857, 0x59c41080, 0x497b8880, - 0x4ce80000, 0x6059d000, 0x4c080000, 0x0531ff46, - 0x5c001000, 0x5c01d000, 0x59c42892, 0x497b8892, - 0x0525ffea, 0x05020002, 0x1c01f000, 0x61802004, - 0x59c418a4, 0x900c1d0f, 0x900c0580, 0x0500000c, - 0x59c41805, 0x900c1d01, 0x0502000b, 0x59c418a4, - 0x900c1d0f, 0x900c0487, 0x05001003, 0x900c048c, - 0x05001003, 0x80102040, 0x05fe07f2, 0x497b8891, - 0x1c01f000, 0x4c100000, 0x60642000, 0x64078805, - 0x0505fccf, 0x59c41805, 0x900c1d01, 0x05000005, - 0x80102040, 0x05fe07fa, 0x5c002000, 0x05fdf7f4, - 0x5c002000, 0x05fdf7f0, 0x60080020, 0x46000000, - 0x0162c58b, 0x59c8080b, 0x4807c857, 0x59c8103f, - 0x480bc857, 0x05f9fced, 0x4803c856, 0x1c01f000, - 0x00101100, 0x00101100, 0x00101100, 0x00101114, - 0x00101100, 0x00101100, 0x00101100, 0x00101100, - 0x00101100, 0x00101114, 0x00101100, 0x00101101, - 0x00101100, 0x00101100, 0x00101100, 0x00101100, - 0x05f9fcda, 0x900405bb, 0x05fa0cd8, 0x592c020e, - 0x8c000500, 0x0500008d, 0x592c1a0b, 0x9004050f, - 0x82000400, 0x001012ac, 0x50001000, 0x50080000, - 0x59302015, 0x4802600c, 0x492e600d, 0x480a600e, - 0x480e600f, 0x48126014, 0x5c025800, 0x1c01f000, - 0x9004050f, 0x82000400, 0x001012ac, 0x50001000, - 0x50080000, 0x592c1a0b, 0x4802600c, 0x492e600d, - 0x480a600e, 0x480e600f, 0x497a6014, 0x05fdf7f3, - 0x8c040500, 0x05020071, 0x82040d00, 0x00000080, - 0x0500006e, 0x0001f19b, 0x0501fc22, 0x843c7d4e, - 0x0001f1a8, 0x59307804, 0x823c7d00, 0x01880080, - 0x823c7d40, 0x80000005, 0x59300013, 0x82000500, - 0xffff0000, 0x05000002, 0x843c7d6a, 0x59300015, - 0x59301014, 0x80080580, 0x0502000b, 0x800811c0, - 0x05020004, 0x8c3c050e, 0x05000055, 0x0501f004, - 0x592c120c, 0x8c08051e, 0x05020051, 0x843c7d4a, - 0x0501f04f, 0x480bc857, 0x59300804, 0x82040500, - 0x00008080, 0x82000580, 0x00008080, 0x05020016, - 0x592c6001, 0x58300409, 0x90000503, 0x90000581, - 0x05020011, 0x84040d1e, 0x48066004, 0x59302015, - 0x5930001c, 0x80101480, 0x0500100b, 0x5830020a, - 0x41780800, 0x0535fe39, 0x800810c6, 0x59301814, - 0x800c0482, 0x80100580, 0x05020003, 0x48126014, - 0x05fdf7db, 0x42000000, 0x0010e43f, 0x055dfe7d, - 0x59302015, 0x59300416, 0x4803c857, 0x8c000514, - 0x0502000f, 0x599c1819, 0x8c0c0512, 0x0500000a, - 0x592c0813, 0x59300017, 0x80040c80, 0x05000005, - 0x05001004, 0x80040000, 0x80140480, 0x05001008, - 0x0541fac4, 0x900c1d41, 0x0501f01f, 0x84000514, - 0x48026416, 0x48126017, 0x4813c857, 0x4c3c0000, - 0x0501f954, 0x5c007800, 0x05020017, 0x5930500f, - 0x592c020c, 0x4803c857, 0x8c00051e, 0x05020004, - 0x903c7d60, 0x5930400e, 0x0501f004, 0x8400051e, - 0x48025a0c, 0x0501f907, 0x50201800, 0x480e600c, - 0x4832600d, 0x4822600e, 0x482a600f, 0x480fc857, - 0x4833c857, 0x4823c857, 0x482bc857, 0x80000580, - 0x483e6004, 0x1c01f000, 0x05f9fc48, 0x4933c857, - 0x4d2c0000, 0x59900005, 0x81300580, 0x05fa0c43, - 0x054dfb31, 0x05f80c41, 0x59325809, 0x4d3c0000, - 0x4d400000, 0x59300004, 0x4803c857, 0x4c000000, - 0x0539fda9, 0x0539faab, 0x5c000000, 0x8c000516, - 0x05000014, 0x82000d00, 0x01000080, 0x05020004, - 0x592c0a0e, 0x8c040506, 0x0502000e, 0x592c0013, - 0x4803c857, 0x4802580b, 0x41780800, 0x600a8000, - 0x0525fc7b, 0x4a025c0a, 0x0000ffff, 0x492fc857, - 0x0001fb82, 0x0551fcfc, 0x0541fa1a, 0x0501f01b, - 0x640a6203, 0x592c020c, 0x8c000512, 0x05020004, - 0x592c020c, 0x8400054e, 0x48025a0c, 0x59300407, - 0x90000586, 0x0502000f, 0x592c0811, 0x59140001, - 0x82000500, 0xffff0000, 0x05000004, 0x811800ca, - 0x81c80c00, 0x58040939, 0x48066017, 0x592c0011, - 0x80040480, 0x592c0813, 0x80040480, 0x4802580f, - 0x417a7800, 0x0549fe44, 0x5c028000, 0x5c027800, - 0x5c025800, 0x1c01f000, 0x4933c857, 0x4d2c0000, - 0x59900005, 0x81300580, 0x05fa0c00, 0x054dfaee, - 0x05f80bfe, 0x59325809, 0x592c020c, 0x84000540, - 0x48025a0c, 0x05fdf7ba, 0x491bc857, 0x4dd00000, + 0x1c01f000, 0x496fc857, 0x916c0583, 0x05020003, + 0x61201100, 0x051df830, 0x60f00800, 0x0501ff1c, + 0x4a038891, 0x0000ffff, 0x6503900d, 0x05fdfa6f, + 0x640770e8, 0x1c01f000, 0x5c000000, 0x4c000000, + 0x4803c857, 0x59c41080, 0x497b8880, 0x4ce80000, + 0x6059d000, 0x4c080000, 0x0535fb16, 0x5c001000, + 0x5c01d000, 0x59c42892, 0x497b8892, 0x0529fa39, + 0x05020002, 0x1c01f000, 0x61802004, 0x59c418a4, + 0x900c1d0f, 0x900c0580, 0x0500000c, 0x59c41805, + 0x900c1d01, 0x0502000b, 0x59c418a4, 0x900c1d0f, + 0x900c0487, 0x05001003, 0x900c048c, 0x05001003, + 0x80102040, 0x05fe07f2, 0x497b8891, 0x1c01f000, + 0x4c100000, 0x60642000, 0x64078805, 0x0505fcb4, + 0x59c41805, 0x900c1d01, 0x05000005, 0x80102040, + 0x05fe07fa, 0x5c002000, 0x05fdf7f4, 0x5c002000, + 0x05fdf7f0, 0x60080020, 0x46000000, 0x0162c58b, + 0x59c8080b, 0x4807c857, 0x59c8103f, 0x480bc857, + 0x42000000, 0x00112438, 0x0561fdcd, 0x05fdff90, + 0x1c01f000, 0x4803c856, 0x1c01f000, 0x0010119f, + 0x0010119f, 0x0010119f, 0x001011b3, 0x0010119f, + 0x0010119f, 0x0010119f, 0x0010119f, 0x0010119f, + 0x001011b3, 0x0010119f, 0x001011a0, 0x0010119f, + 0x0010119f, 0x0010119f, 0x0010119f, 0x05f9fc76, + 0x900405bb, 0x05fa0c74, 0x592c020e, 0x8c000500, + 0x0500008d, 0x592c1a0b, 0x9004050f, 0x82000400, + 0x0010004b, 0x50001000, 0x50080000, 0x59302015, + 0x4802600c, 0x492e600d, 0x480a600e, 0x480e600f, + 0x48126014, 0x5c025800, 0x1c01f000, 0x9004050f, + 0x82000400, 0x0010004b, 0x50001000, 0x50080000, + 0x592c1a0b, 0x4802600c, 0x492e600d, 0x480a600e, + 0x480e600f, 0x497a6014, 0x05fdf7f3, 0x8c040500, + 0x05020071, 0x82040d00, 0x00000080, 0x0500006e, + 0x0001f1a3, 0x0501fbf5, 0x843c7d4e, 0x0001f1b0, + 0x59307804, 0x823c7d00, 0x01880080, 0x823c7d40, + 0x80000005, 0x59300013, 0x82000500, 0xffff0000, + 0x05000002, 0x843c7d6a, 0x59300015, 0x59301014, + 0x80080580, 0x0502000b, 0x800811c0, 0x05020004, + 0x8c3c050e, 0x05000055, 0x0501f004, 0x592c120c, + 0x8c08051e, 0x05020051, 0x843c7d4a, 0x0501f04f, + 0x480bc857, 0x59300804, 0x82040500, 0x00008080, + 0x82000580, 0x00008080, 0x05020016, 0x592c6001, + 0x58300409, 0x90000503, 0x90000581, 0x05020011, + 0x84040d1e, 0x48066004, 0x59302015, 0x5930001c, + 0x80101480, 0x0500100b, 0x5830020a, 0x41780800, + 0x0539fa53, 0x800810c6, 0x59301814, 0x800c0482, + 0x80100580, 0x05020003, 0x48126014, 0x05fdf7db, + 0x42000000, 0x001123e0, 0x0561fd59, 0x59302015, + 0x59300416, 0x4803c857, 0x8c000514, 0x0502000f, + 0x599c1819, 0x8c0c0512, 0x0500000a, 0x592c0813, + 0x59300017, 0x80040c80, 0x05000005, 0x05001004, + 0x80040000, 0x80140480, 0x05001008, 0x0541ff57, + 0x900c1d41, 0x0501f01f, 0x84000514, 0x48026416, + 0x48126017, 0x4813c857, 0x4c3c0000, 0x0501f928, + 0x5c007800, 0x05020017, 0x5930500f, 0x592c020c, + 0x4803c857, 0x8c00051e, 0x05020004, 0x903c7d60, + 0x5930400e, 0x0501f004, 0x8400051e, 0x48025a0c, + 0x0501f904, 0x50201800, 0x480e600c, 0x4832600d, + 0x4822600e, 0x482a600f, 0x480fc857, 0x4833c857, + 0x4823c857, 0x482bc857, 0x80000580, 0x483e6004, + 0x1c01f000, 0x05f9fbe4, 0x4933c857, 0x4d2c0000, + 0x59900005, 0x81300580, 0x05fa0bdf, 0x0551f81b, + 0x05f80bdd, 0x59325809, 0x4d3c0000, 0x4d400000, + 0x59300004, 0x4803c857, 0x4c000000, 0x053df9c8, + 0x0539feca, 0x5c000000, 0x8c000516, 0x05000014, + 0x82000d00, 0x01000080, 0x05020004, 0x592c0a0e, + 0x8c040506, 0x0502000e, 0x592c0013, 0x4803c857, + 0x4802580b, 0x41780800, 0x600a8000, 0x0525fec0, + 0x4a025c0a, 0x0000ffff, 0x492fc857, 0x0001fba8, + 0x0555fa03, 0x0541fe90, 0x0501f01b, 0x640a6203, + 0x592c020c, 0x8c000512, 0x05020004, 0x592c020c, + 0x8400054e, 0x48025a0c, 0x59300407, 0x90000586, + 0x0502000f, 0x592c0811, 0x59140001, 0x82000500, + 0xffff0000, 0x05000004, 0x811800ca, 0x81c80c00, + 0x58040939, 0x48066017, 0x592c0011, 0x80040480, + 0x592c0813, 0x80040480, 0x4802580f, 0x417a7800, + 0x054dfb17, 0x5c028000, 0x5c027800, 0x5c025800, + 0x1c01f000, 0x4933c857, 0x4d2c0000, 0x054dffdb, + 0x05f80b9d, 0x59325809, 0x592c020c, 0x84000540, + 0x48025a0c, 0x05fdf7bd, 0x491bc857, 0x4dd00000, 0x4c580000, 0x41780800, 0x8007a0ca, 0x83d3a400, 0x00007600, 0x4a03a005, 0x80000002, 0x05024004, - 0x4c040000, 0x00044e27, 0x5c000800, 0x59d01006, + 0x4c040000, 0x00044e5d, 0x5c000800, 0x59d01006, 0x82080500, 0x00006000, 0x82000580, 0x00006000, 0x05000007, 0x8c08051e, 0x05fc07f5, 0x59d01006, 0x82080500, 0x00006000, 0x05fe07f1, 0x91d3a420, @@ -1202,20 +1241,20 @@ static const uint32_t isp_2500_risc_code[] = { 0x480c2822, 0x59d0000f, 0x59d00810, 0x59d01011, 0x59d01812, 0x48002c23, 0x48042824, 0x48082825, 0x480c2826, 0x6401b006, 0x4a03a005, 0x30000000, - 0x59d00006, 0x1c01f000, 0x42000000, 0x0010e4e1, - 0x055dfd98, 0x600008ec, 0x580410a2, 0x41780800, + 0x59d00006, 0x1c01f000, 0x42000000, 0x00112485, + 0x0561fc77, 0x600008ec, 0x580410a2, 0x41780800, 0x9008050f, 0x8c000506, 0x05020003, 0x81180580, 0x05000006, 0x80040800, 0x80081108, 0x90040587, - 0x05fe07f8, 0x05f9fb89, 0x4a039040, 0x04000000, + 0x05fe07f8, 0x05f9fb28, 0x4a039040, 0x04000000, 0x59c80040, 0x8c000532, 0x05fe07fe, 0x59d0000d, 0x800000e0, 0x59d0100c, 0x82081500, 0x0000ffff, 0x80081540, 0x480b9028, 0x4d2c0000, 0x59325809, - 0x054dfa69, 0x05f80b79, 0x59d02004, 0x592c0208, + 0x054dff56, 0x05f80b18, 0x59d02004, 0x592c0208, 0x82001500, 0x000000ff, 0x9000050f, 0x90000582, 0x05000003, 0xb00805ba, 0x05020004, 0x592c0011, - 0x80102480, 0x05f81b6d, 0x5c025800, 0x9010250f, - 0x90102588, 0x05fa0b69, 0x59c80047, 0x8c000530, - 0x05fa0b66, 0x59d0000b, 0x48039029, 0x800400d6, + 0x80102480, 0x05f81b0c, 0x5c025800, 0x9010250f, + 0x90102588, 0x05fa0b08, 0x59c80047, 0x8c000530, + 0x05fa0b05, 0x59d0000b, 0x48039029, 0x800400d6, 0x40001000, 0x800400dc, 0x80081400, 0x82081540, 0x0400002f, 0x480b9047, 0x59c80047, 0x8c000532, 0x05fe07fe, 0x64079048, 0x59c80048, 0x8c000500, @@ -1224,546 +1263,539 @@ static const uint32_t isp_2500_risc_code[] = { 0x4803c856, 0x80204000, 0x50200000, 0x80000540, 0x05000003, 0x80285040, 0x1c01f000, 0x58300001, 0x80000540, 0x0500000c, 0x4802600d, 0x40006000, - 0x58300208, 0x9000050f, 0x82000400, 0x001012ac, - 0x50004000, 0x802041c0, 0x05f80b3c, 0x80285040, - 0x1c01f000, 0x40005000, 0x1c01f000, 0x00000009, - 0x0000000c, 0x0000000f, 0x00000012, 0x00000015, - 0x00000000, 0x00000000, 0x0000000f, 0x00000000, - 0x00000000, 0x00000000, 0x001012a7, 0x001012a6, - 0x00000000, 0x001012a7, 0x00000000, 0x00000000, - 0x001012a7, 0x001012a6, 0x001012a3, 0x001012a7, - 0x001012a6, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x001012a7, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x001012a7, 0x001012a7, 0x001012a7, 0x00000000, - 0x001012a7, 0x00000000, 0x00000000, 0x00000000, - 0x4813c857, 0x492fc857, 0x4933c857, 0x48126014, - 0x592c520b, 0x802851c0, 0x05000076, 0x59300008, - 0x8c000516, 0x0500001e, 0x592c0208, 0x82001500, - 0x000000ff, 0x9000050f, 0x90000582, 0x05000003, - 0xb00805ba, 0x05020003, 0x592c0011, 0x80102480, - 0x801021c0, 0x41781000, 0x0500000e, 0x592c6001, - 0x58300409, 0x58300a0a, 0x90000503, 0x90000580, - 0x05000002, 0x90040c08, 0x40040000, 0x40101000, - 0x41780800, 0x0535fca1, 0x800409c0, 0x05020059, - 0x0501fa86, 0x0500004f, 0x0501f056, 0x59300004, - 0x8c00050e, 0x0500000d, 0x0501fb13, 0x05020051, - 0x592c6001, 0x42004000, 0x001012a4, 0x58300409, - 0x8c000510, 0x0500000f, 0x5830540d, 0x42004000, - 0x001012a5, 0x0501f00b, 0x412c6000, 0x0501f847, - 0x05000008, 0x90240582, 0x05020003, 0x58300011, - 0x80102480, 0x50200000, 0x80004540, 0x0500003d, - 0x50200000, 0x80000540, 0x0500000b, 0x80301400, - 0x58080002, 0x80102480, 0x0500101d, 0x801021c0, - 0x05000009, 0x80285040, 0x05000032, 0x80204000, - 0x05fdf7f4, 0x58300001, 0x80006540, 0x0500002d, - 0x05fdf7e7, 0x80285040, 0x0500002a, 0x80204000, - 0x50200000, 0x80000540, 0x05020009, 0x58300001, - 0x80006540, 0x05000023, 0x58300208, 0x90004d0f, - 0x82244400, 0x001012ac, 0x50204000, 0x592c020c, - 0x8400051e, 0x48025a0c, 0x0501f012, 0x80102080, - 0x80102000, 0x48126012, 0x4813c857, 0x58080802, - 0x40100000, 0x80042480, 0x05f81aa4, 0x58080000, - 0x58081801, 0x80102400, 0x48126010, 0x480e6011, - 0x4813c857, 0x592c020c, 0x8400055e, 0x48025a0c, - 0x4833c857, 0x4823c857, 0x482bc857, 0x4832600d, - 0x4822600e, 0x482a600f, 0x80000580, 0x0501f002, - 0x90000541, 0x1c01f000, 0x58300208, 0x90004d0f, - 0x82244400, 0x001012ac, 0x82000500, 0x000000ff, - 0x900005a9, 0x05020016, 0x50204000, 0x592c040d, - 0x80000540, 0x05f80a85, 0x90000c82, 0x0500100e, - 0x58300001, 0x80006540, 0x05f80a80, 0x58300208, - 0x9000050f, 0x82000400, 0x001012ac, 0x50004000, - 0x40040000, 0x800409c0, 0x05000005, 0x90040c85, - 0x05fe17f4, 0x80204400, 0x80000580, 0x1c01f000, - 0x4c5c0000, 0x59e4b800, 0x485fc857, 0x905c051f, - 0x05fa0a6e, 0x825c0500, 0x000000e0, 0x05f80a6b, - 0x8c5c050e, 0x05020807, 0x8c5c050c, 0x05020809, - 0x8c5c050a, 0x05020900, 0x5c00b800, 0x1c01f000, - 0x4803c856, 0x4a03c800, 0x00000080, 0x1c01f000, - 0x4d2c0000, 0x42007800, 0x0010e4e5, 0x583c0003, - 0x583c0804, 0x80040540, 0x05000037, 0x42000800, - 0x0010e388, 0x50065800, 0x592c0002, 0x90000580, - 0x05000031, 0x59e40050, 0x59e40852, 0x80040480, - 0x82000500, 0xfffffc00, 0x05020005, 0x59e40050, - 0x59e40851, 0x80040800, 0x80040480, 0x82000c80, - 0x00000400, 0x59e40050, 0x80041400, 0x480bc857, - 0x50080000, 0x58080801, 0x80040540, 0x0500001e, - 0x480bc857, 0x480a5803, 0x583c1009, 0x583c000a, - 0x80080580, 0x05020005, 0x583c0000, 0x84000550, - 0x48007800, 0x41781000, 0x82080400, 0x00001000, - 0x4803c857, 0x48007809, 0x583c0003, 0x80081400, - 0x480bc857, 0x583c0804, 0x64025801, 0x4a025809, - 0x001013bc, 0x480a5807, 0x48065808, 0x59e40053, - 0x800000c4, 0x48025805, 0x412c1000, 0x492fc857, - 0x0001f821, 0x5c025800, 0x6503c800, 0x1c01f000, - 0x42007800, 0x0010e388, 0x503c7800, 0x4a007802, - 0x00000100, 0x42007800, 0x0010e4e5, 0x583c0000, - 0x84000552, 0x48007800, 0x583c100c, 0x480bc857, - 0x80081000, 0x4808780c, 0x583c180b, 0x800c19c0, - 0x05000013, 0x90080503, 0x05020011, 0x583c0007, - 0x4803c857, 0x583c2008, 0x4813c857, 0x80102000, - 0x80100580, 0x05020002, 0x41782000, 0x48107808, - 0x400c0000, 0x80080580, 0x05020005, 0x4978780c, - 0x60041800, 0x60a01100, 0x0519fbfe, 0x1c01f000, - 0x42007800, 0x0010e4e5, 0x4d2c0000, 0x4c5c0000, - 0x4c600000, 0x4030b800, 0x583cc000, 0x4a00b802, - 0x00000100, 0x583c2015, 0x80100800, 0x583c0013, - 0x80040580, 0x05020003, 0x8460c554, 0x41780800, - 0x48047815, 0x8c600502, 0x05f809e8, 0x8460c502, - 0x48607800, 0x42000000, 0x0010e389, 0x50000000, - 0x80300580, 0x05fa09e1, 0x583c081e, 0x800409c0, - 0x05000008, 0x583c001f, 0x80040580, 0x05020005, - 0x4978781f, 0x60081800, 0x60a01100, 0x0519fbd9, - 0x8c600508, 0x050e0c69, 0x5c00c000, 0x5c00b800, - 0x5c025800, 0x1c01f000, 0x4d2c0000, 0x4c5c0000, - 0x4c600000, 0x4c640000, 0x42000800, 0x0010e389, - 0x50065800, 0x4a025809, 0x001013e0, 0x6000c002, - 0x4200b800, 0x0010e4e5, 0x585cc800, 0x4867c857, - 0x8d0c052a, 0x0502000f, 0x40ee5800, 0x492fc857, - 0x4a025802, 0x00000100, 0x585c0014, 0x80000000, - 0x90000503, 0x4800b814, 0x4a025809, 0x0010306e, - 0x585cc017, 0x8260c500, 0x000000ff, 0x05f809b3, - 0x4c580000, 0x61e8b001, 0x8058b040, 0x05f809af, - 0x8c640502, 0x0500000b, 0x8d0c052a, 0x05fa09ab, - 0x4c580000, 0x4c600000, 0x0001f9b8, 0x585cc800, - 0x5c00c000, 0x5c00b000, 0x485bc857, 0x05fdf7f3, - 0x5c00b000, 0x4200b800, 0x0010e4e5, 0x8464cd42, - 0x4864b800, 0x592c0002, 0x90000580, 0x05f8099b, - 0x585c100d, 0x585c0018, 0x80081400, 0x80600400, - 0x4800b818, 0x585c0014, 0x800001c0, 0x05020002, - 0x4978b818, 0x8060c0c4, 0x492fc857, 0x480bc857, - 0x4863c857, 0x480a5803, 0x585c001d, 0x4803c857, - 0x585c180e, 0x800c1400, 0x480a5807, 0x4808b81b, - 0x80600400, 0x4800b81d, 0x4803c857, 0x800c0400, - 0x4800b819, 0x585c0810, 0x4807c857, 0x4803c857, - 0x80040d80, 0x05020004, 0x4978b81d, 0x585c080e, - 0x4804b819, 0x585c080e, 0x80040580, 0x82000500, - 0x000003ff, 0x05020004, 0x585c001f, 0x80000000, - 0x4800b81f, 0x585c080f, 0x48065808, 0x4807c857, - 0x64025801, 0x48625805, 0x412c1000, 0x0001f821, - 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x5c025800, - 0x1c01f000, 0x6483c800, 0x055dfb5f, 0x59e40000, - 0x1c01f000, 0x60001020, 0x80081040, 0x05000022, - 0x055dfc83, 0x05fc07fd, 0x59800801, 0x82040d00, - 0xfff006ff, 0x82040d40, 0x000ff900, 0x48070001, - 0x59e00002, 0x8c00051e, 0x05020016, 0x605c00f4, - 0x50001000, 0x82081500, 0x03f00000, 0x82080580, - 0x00800000, 0x0500000f, 0x61901000, 0x80081040, - 0x0500000c, 0x59800881, 0x8c040514, 0x05fc07fc, - 0x82040500, 0x00000180, 0x82000580, 0x00000180, - 0x05020004, 0x59800080, 0x84000540, 0x48030080, - 0x90000541, 0x64030000, 0x1c01f000, 0x61880809, - 0x055dfc68, 0x05020003, 0x4803c856, 0x055dfc6c, - 0x59800802, 0x4807c857, 0x8c040520, 0x05000007, - 0x64030000, 0x60101020, 0x50080000, 0x8400054c, - 0x44001000, 0x0501f000, 0x82040500, 0x00001084, - 0x05fa092a, 0x8c040510, 0x05000006, 0x42000000, - 0x0010e4e2, 0x055dfb27, 0x4a030002, 0x00000100, - 0x8c040522, 0x0500002d, 0x59e00002, 0x8c00051e, - 0x0502002a, 0x601c20f6, 0x50102800, 0x4817c857, - 0x605c00f4, 0x50003000, 0x82180500, 0x000f0000, - 0x40003800, 0x40144000, 0x821c0580, 0x00020000, - 0x05020002, 0x902041c0, 0x8c18050c, 0x05000002, - 0x842041c0, 0x82204500, 0x000000ff, 0x90204401, - 0x8c200510, 0x05000005, 0x42000000, 0x0010e4e3, - 0x055dfb08, 0x61fc4001, 0x42001800, 0xffffff00, - 0x8c18050c, 0x05000003, 0x840c19c0, 0x842041c0, - 0x821c0580, 0x00020000, 0x05020003, 0x900c19c0, - 0x902041c0, 0x800c0505, 0x80200540, 0x44002000, - 0x4a030002, 0x00020000, 0x64030000, 0x1c01f000, - 0x4d2c0000, 0x64007000, 0x82040d00, 0x43200f80, - 0x05fa08ee, 0x58380008, 0x4803c00f, 0x583a5807, - 0x592c0801, 0x800409c0, 0x0500000e, 0x592c0000, - 0x48000800, 0x58380006, 0x812c0580, 0x05020002, - 0x48047006, 0x48047007, 0x60042000, 0x0559fe40, - 0x05f808de, 0x05f9fc95, 0x5c025800, 0x05f9f54d, - 0x4a0370e4, 0x00003000, 0x054dfc4b, 0x583a5807, - 0x592c0000, 0x48007007, 0x800001c0, 0x05020002, - 0x49787006, 0x05f9fc89, 0x5c025800, 0x42007000, - 0x000211a7, 0x0001f036, 0x4803c856, 0x4c3c0000, - 0x4d2c0000, 0x4d300000, 0x5830000a, 0x80025d40, - 0x0500001a, 0x592e600c, 0x4c300000, 0x054dfc4b, - 0x5c006000, 0x05f808c1, 0x58300002, 0x82000580, - 0x00000100, 0x05000003, 0x640a5a0a, 0x492fc857, - 0x4c300000, 0x0001fb82, 0x5c025800, 0x05f9fc6f, - 0x0005ffdc, 0x59c80000, 0x82000540, 0x00001200, - 0x48039000, 0x850e1d1c, 0x5c026000, 0x5c025800, - 0x5c007800, 0x1c01f000, 0x40325800, 0x05f9fc63, - 0x05fdf7fa, 0x59300025, 0x48025814, 0x59300026, - 0x48025815, 0x59300a23, 0x8c04050c, 0x05020007, - 0x59300020, 0x59300a21, 0x800408e0, 0x80040540, - 0x5930081f, 0x0501f006, 0x59300820, 0x59300221, - 0x800408e0, 0x80040d40, 0x5930001f, 0x9c0001c0, - 0x9c0409c0, 0x48025816, 0x48065817, 0x1c01f000, - 0x592c0001, 0x80003540, 0x05f80890, 0x58180a08, - 0x82040d00, 0x000000ff, 0xb004058a, 0x05fa088b, - 0x592c1015, 0x592c1a16, 0x58182209, 0x592c2c16, - 0x592c0017, 0x800000e0, 0x80142d40, 0x592c0017, - 0x80003920, 0x58184409, 0x5818020a, 0x8c20050e, - 0x05fa087e, 0x800048e0, 0x80244d40, 0x5818000b, - 0x4802602c, 0x8c20050c, 0x05020009, 0x901c51c0, - 0x841401c0, 0x82003d00, 0x0000ffff, 0x80140120, - 0x80280540, 0x9c0029c0, 0x0501f003, 0x9c1429c0, - 0x841c39c0, 0x480a601f, 0x480e6020, 0x48126421, - 0x48126221, 0x48166022, 0x481e6423, 0x48226223, - 0x48266024, 0x1c01f000, 0x4c5c0000, 0x592c0001, - 0x80006540, 0x05f80861, 0x58300a08, 0x82040d00, - 0x000000ff, 0xb004058a, 0x05fa085c, 0x58302c09, - 0x8c140506, 0x58300209, 0x05000002, 0x80080400, - 0x48026421, 0x48026221, 0x5830020a, 0x800008e0, - 0x80040540, 0x48026024, 0x8c14050a, 0x05020004, - 0x592c0015, 0x80080400, 0x4802601f, 0x5830320a, - 0x8c140510, 0x0502000c, 0x90142d03, 0x90140582, - 0x0500000e, 0x90140581, 0x05000007, 0x40080800, - 0x90180408, 0x40001000, 0x0535f9d8, 0x40042000, - 0x0501f006, 0x40080800, 0x40181000, 0x4004b800, - 0x0535f9d2, 0x40042000, 0x4c100000, 0x05fdfda7, - 0x05f80836, 0x5c002000, 0x50200000, 0x80004540, - 0x0500005e, 0x58300a08, 0x82040d00, 0x000000ff, - 0xb004058a, 0x05020006, 0x80204000, 0x58300409, - 0x8c000510, 0x05000002, 0x80204000, 0x50200000, + 0x58300208, 0x9000050f, 0x82000400, 0x0010004b, + 0x50004000, 0x802041c0, 0x05f80adb, 0x80285040, + 0x1c01f000, 0x40005000, 0x1c01f000, 0x4813c857, + 0x492fc857, 0x4933c857, 0x48126014, 0x592c520b, + 0x802851c0, 0x05000076, 0x59300008, 0x8c000516, + 0x0500001e, 0x592c0208, 0x82001500, 0x000000ff, + 0x9000050f, 0x90000582, 0x05000003, 0xb00805ba, + 0x05020003, 0x592c0011, 0x80102480, 0x801021c0, + 0x41781000, 0x0500000e, 0x592c6001, 0x58300409, + 0x58300a0a, 0x90000503, 0x90000580, 0x05000002, + 0x90040c08, 0x40040000, 0x40101000, 0x41780800, + 0x0539f8e7, 0x800409c0, 0x05020059, 0x0501fa85, + 0x0500004f, 0x0501f056, 0x59300004, 0x8c00050e, + 0x0500000d, 0x0501fb11, 0x05020051, 0x592c6001, + 0x42004000, 0x00100043, 0x58300409, 0x8c000510, + 0x0500000f, 0x5830540d, 0x42004000, 0x00100044, + 0x0501f00b, 0x412c6000, 0x0501f847, 0x05000008, + 0x90240582, 0x05020003, 0x58300011, 0x80102480, + 0x50200000, 0x80004540, 0x0500003d, 0x50200000, 0x80000540, 0x0500000b, 0x80301400, 0x58080002, 0x80102480, 0x0500101d, 0x801021c0, 0x05000009, - 0x80285040, 0x05000049, 0x80204000, 0x05fdf7f4, - 0x58300001, 0x80006540, 0x05000044, 0x05fdf7df, - 0x80285040, 0x05000041, 0x80204000, 0x50200000, + 0x80285040, 0x05000032, 0x80204000, 0x05fdf7f4, + 0x58300001, 0x80006540, 0x0500002d, 0x05fdf7e7, + 0x80285040, 0x0500002a, 0x80204000, 0x50200000, 0x80000540, 0x05020009, 0x58300001, 0x80006540, - 0x0500003a, 0x58300208, 0x90004d0f, 0x82244400, - 0x001012ac, 0x50204000, 0x592c020c, 0x8400051e, - 0x48025a0c, 0x0501f010, 0x80102080, 0x80102000, + 0x05000023, 0x58300208, 0x90004d0f, 0x82244400, + 0x0010004b, 0x50204000, 0x592c020c, 0x8400051e, + 0x48025a0c, 0x0501f012, 0x80102080, 0x80102000, 0x48126012, 0x4813c857, 0x58080802, 0x40100000, - 0x80042480, 0x05f41ffd, 0x58080000, 0x80102400, - 0x48126010, 0x4813c857, 0x592c020c, 0x8400055e, - 0x48025a0c, 0x59300008, 0x8400052c, 0x48026008, - 0x592c1001, 0x58080409, 0x90000503, 0x90000581, - 0x05020012, 0x599c0019, 0x8c00050c, 0x0502000f, - 0x90280581, 0x05020003, 0x59300812, 0x0501f007, - 0x80280840, 0x5808020a, 0x40001000, 0x0535f97b, - 0x59300012, 0x80040c00, 0x48066013, 0x59300008, - 0x8400056c, 0x48026008, 0x592c1001, 0x58080409, - 0x8c000510, 0x05000003, 0x0501f822, 0x05000003, - 0x80000580, 0x0501f002, 0x90000541, 0x5c00b800, - 0x1c01f000, 0x592c6801, 0x803469c0, 0x05000017, - 0x58347805, 0x58347409, 0x90380503, 0x8c380510, - 0x0c020006, 0x0c01f001, 0x0010161d, 0x0010161a, - 0x00101620, 0x00101622, 0x00101622, 0x00101622, - 0x0010161d, 0x0010161d, 0x803c00c6, 0x80102400, - 0x0501f004, 0x803c00c6, 0x80102480, 0x05001003, - 0x80000580, 0x1c01f000, 0x90000541, 0x1c01f000, - 0x4c040000, 0x4c080000, 0x4c600000, 0x592c0208, - 0x82000500, 0x000000ff, 0xb00005a8, 0x05000007, - 0x90000582, 0x05000005, 0x90000598, 0x05000003, - 0x90000588, 0x05020037, 0x592c6801, 0x803469c0, - 0x05000034, 0x58340208, 0x82000500, 0x000000ff, - 0xb000058a, 0x0502002f, 0x5834740d, 0x592cc20b, - 0x40380000, 0x8060c480, 0x42007800, 0x001012a5, - 0x0501f82a, 0x05fe07ff, 0x40607000, 0x503c0000, - 0x80341400, 0x805c00c6, 0x58088002, 0x80408480, - 0x0500101b, 0x0500001a, 0x58088800, 0x80448c00, - 0x58089001, 0x90489440, 0x59300827, 0x800409c0, - 0x05000018, 0x4844080d, 0x4848080e, 0x4840080f, - 0x4978080c, 0x80380040, 0x05000003, 0x05020813, - 0x4838080c, 0x59300827, 0x4834080a, 0x483c080b, - 0x503c0000, 0x48000809, 0x90000541, 0x5c00c000, - 0x5c001000, 0x5c000800, 0x1c01f000, 0x58088002, - 0x80400106, 0x805cbc80, 0x0501f804, 0x05fe07dc, - 0x80000580, 0x05fdf7f6, 0x4803c856, 0x803c7800, - 0x503c0000, 0x80000540, 0x05000003, 0x80387040, - 0x1c01f000, 0x58340001, 0x80006d40, 0x0500000a, - 0x58340208, 0x9000050f, 0x82000400, 0x001012ac, - 0x50007800, 0x803c79c0, 0x05f40f60, 0x80387040, - 0x1c01f000, 0x40007000, 0x1c01f000, 0x802850c6, - 0x59306827, 0x58340009, 0x5834100a, 0x5834180b, - 0x5834200c, 0x58344810, 0x80087c00, 0x583c0002, - 0x80284480, 0x0500100f, 0x80102040, 0x0500001f, - 0x80244c80, 0x0500001d, 0x40205000, 0x800c1800, - 0x500c0000, 0x80000d40, 0x05fe07f4, 0x58081001, - 0x42001800, 0x001012a3, 0x60240000, 0x05fdf7ef, - 0x80204080, 0x80204000, 0x4810680c, 0x583c0000, - 0x80282c00, 0x583c3001, 0x90183440, 0x500c0800, - 0x48046809, 0x4808680a, 0x480c680b, 0x4810680c, - 0x4814680d, 0x4818680e, 0x4820680f, 0x48246810, - 0x80000580, 0x1c01f000, 0x90000541, 0x1c01f000, - 0x4d2c0000, 0x0001f817, 0x05f40f2c, 0x412c1000, - 0x5c025800, 0x4a001009, 0x000201cd, 0x9008040a, - 0x48001003, 0x0001f1c3, 0x4d2c0000, 0x40325800, - 0x05f9fadb, 0x5c025800, 0x1c01f000, 0x4807c857, - 0x05f5ff1e, 0x42001000, 0x001105e7, 0x4a001003, - 0x001105f1, 0x4a001009, 0x000201cd, 0x4978100a, - 0x1c01f000, 0x59e00017, 0x8c000500, 0x1c01f000, - 0x0001f9d6, 0x4d040000, 0x4c640000, 0x4c600000, - 0x40120800, 0x400cc800, 0x4014c000, 0x0501f01a, - 0x59e00017, 0x8c00050c, 0x05020005, 0x59a808a0, - 0x58040003, 0x8c000500, 0x0500000d, 0x4c080000, - 0x59a8109f, 0x50080000, 0x84000542, 0x44001000, - 0x5c001000, 0x59e00017, 0x8c00050c, 0x05fe07fe, - 0x58040003, 0x8c000500, 0x05fe07fb, 0x4d040000, - 0x4c640000, 0x4c600000, 0x5804c800, 0x58060801, - 0x5804c002, 0x4a03b805, 0x20000000, 0x59dc0006, + 0x80042480, 0x05f81a6c, 0x58080000, 0x58081801, + 0x80102400, 0x48126010, 0x480e6011, 0x4813c857, + 0x592c020c, 0x8400055e, 0x48025a0c, 0x4833c857, + 0x4823c857, 0x482bc857, 0x4832600d, 0x4822600e, + 0x482a600f, 0x80000580, 0x0501f002, 0x90000541, + 0x1c01f000, 0x58300208, 0x90004d0f, 0x82244400, + 0x0010004b, 0x82000500, 0x000000ff, 0x900005a9, + 0x05020016, 0x50204000, 0x592c040d, 0x80000540, + 0x05f80a4d, 0x90000c82, 0x0500100e, 0x58300001, + 0x80006540, 0x05f80a48, 0x58300208, 0x9000050f, + 0x82000400, 0x0010004b, 0x50004000, 0x40040000, + 0x800409c0, 0x05000005, 0x90040c85, 0x05fe17f4, + 0x80204400, 0x80000580, 0x1c01f000, 0x4c5c0000, + 0x59e4b800, 0x485fc857, 0x905c051f, 0x05fa0a36, + 0x825c0500, 0x000000e0, 0x05f80a33, 0x8c5c050e, + 0x05020807, 0x8c5c050c, 0x05020809, 0x8c5c050a, + 0x050208fc, 0x5c00b800, 0x1c01f000, 0x4803c856, + 0x4a03c800, 0x00000080, 0x1c01f000, 0x4d2c0000, + 0x42007800, 0x00112489, 0x583c0003, 0x583c0804, + 0x80040540, 0x05000033, 0x42000800, 0x00112323, + 0x50065800, 0x592c0002, 0x90000580, 0x0500002d, + 0x59e40050, 0x59e40852, 0x80040480, 0x82000500, + 0xfffffc00, 0x05020005, 0x59e40050, 0x59e40851, + 0x80040800, 0x80040480, 0x82000c80, 0x00000400, + 0x59e40050, 0x80041400, 0x480bc857, 0x480bc857, + 0x480a5803, 0x583c1009, 0x583c000a, 0x80080580, + 0x05020005, 0x583c0000, 0x84000550, 0x48007800, + 0x41781000, 0x82080400, 0x00001000, 0x4803c857, + 0x48007809, 0x583c0003, 0x80081400, 0x480bc857, + 0x583c0804, 0x64025801, 0x4a025809, 0x0010142b, + 0x480a5807, 0x48065808, 0x59e40053, 0x800000c4, + 0x48025805, 0x412c1000, 0x492fc857, 0x0001f829, + 0x5c025800, 0x6503c800, 0x1c01f000, 0x42007800, + 0x00112323, 0x503c7800, 0x4a007802, 0x00000100, + 0x42007800, 0x00112489, 0x583c0000, 0x84000552, + 0x48007800, 0x583c100c, 0x480bc857, 0x80081000, + 0x4808780c, 0x583c180b, 0x800c19c0, 0x05000013, + 0x90080503, 0x05020011, 0x583c0007, 0x4803c857, + 0x583c2008, 0x4813c857, 0x80102000, 0x80100580, + 0x05020002, 0x41782000, 0x48107808, 0x400c0000, + 0x80080580, 0x05020005, 0x4978780c, 0x60041800, + 0x60a01100, 0x0519fd2c, 0x1c01f000, 0x42007800, + 0x00112489, 0x4d2c0000, 0x4c5c0000, 0x4c600000, + 0x4030b800, 0x583cc000, 0x4a00b802, 0x00000100, + 0x583c2015, 0x80100800, 0x583c0013, 0x80040580, + 0x05020003, 0x8460c554, 0x41780800, 0x48047815, + 0x8c600502, 0x05f809b4, 0x8460c502, 0x48607800, + 0x42000000, 0x00112324, 0x50000000, 0x80300580, + 0x05fa09ad, 0x583c081e, 0x800409c0, 0x05000008, + 0x583c001f, 0x80040580, 0x05020005, 0x4978781f, + 0x60081800, 0x60a01100, 0x0519fd07, 0x8c600508, + 0x050e0ca2, 0x5c00c000, 0x5c00b800, 0x5c025800, + 0x1c01f000, 0x4d2c0000, 0x4c5c0000, 0x4c600000, + 0x4c640000, 0x42000800, 0x00112324, 0x50065800, + 0x4a025809, 0x0010144f, 0x6000c002, 0x4200b800, + 0x00112489, 0x585cc800, 0x4867c857, 0x8d0c052a, + 0x0502000f, 0x40ee5800, 0x492fc857, 0x4a025802, + 0x00000100, 0x585c0014, 0x80000000, 0x90000503, + 0x4800b814, 0x4a025809, 0x00103116, 0x585cc017, + 0x8260c500, 0x000000ff, 0x05f8097f, 0x4c580000, + 0x61e8b001, 0x8058b040, 0x05f8097b, 0x8c640502, + 0x0500000b, 0x8d0c052a, 0x05fa0977, 0x4c580000, + 0x4c600000, 0x0001f9c0, 0x585cc800, 0x5c00c000, + 0x5c00b000, 0x485bc857, 0x05fdf7f3, 0x5c00b000, + 0x4200b800, 0x00112489, 0x8464cd42, 0x4864b800, + 0x592c0002, 0x90000580, 0x05f80967, 0x585c100d, + 0x585c0018, 0x80081400, 0x80600400, 0x4800b818, + 0x585c0014, 0x800001c0, 0x05020002, 0x4978b818, + 0x8060c0c4, 0x492fc857, 0x480bc857, 0x4863c857, + 0x480a5803, 0x585c001d, 0x4803c857, 0x585c180e, + 0x800c1400, 0x480a5807, 0x4808b81b, 0x80600400, + 0x4800b81d, 0x4803c857, 0x800c0400, 0x4800b819, + 0x585c0810, 0x4807c857, 0x4803c857, 0x80040d80, + 0x05020004, 0x4978b81d, 0x585c080e, 0x4804b819, + 0x585c080e, 0x80040580, 0x82000500, 0x000003ff, + 0x05020004, 0x585c001f, 0x80000000, 0x4800b81f, + 0x585c080f, 0x48065808, 0x4807c857, 0x64025801, + 0x48625805, 0x412c1000, 0x0001f829, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x5c025800, 0x1c01f000, + 0x6483c800, 0x0561fa6b, 0x59e40000, 0x1c01f000, + 0x60001020, 0x80081040, 0x05000022, 0x0561fb8f, + 0x05fc07fd, 0x59800801, 0x82040d00, 0xfff006ff, + 0x82040d40, 0x000ff900, 0x48070001, 0x59e00002, + 0x8c00051e, 0x05020016, 0x605c00f4, 0x50001000, + 0x82081500, 0x03f00000, 0x82080580, 0x00800000, + 0x0500000f, 0x61901000, 0x80081040, 0x0500000c, + 0x59800881, 0x8c040514, 0x05fc07fc, 0x82040500, + 0x00000180, 0x82000580, 0x00000180, 0x05020004, + 0x59800080, 0x84000540, 0x48030080, 0x90000541, + 0x64030000, 0x1c01f000, 0x61880809, 0x0561fb74, + 0x05020003, 0x4803c856, 0x0561fb78, 0x59800802, + 0x4807c857, 0x8c040520, 0x05000007, 0x64030000, + 0x60101020, 0x50080000, 0x8400054c, 0x44001000, + 0x0501f000, 0x82040500, 0x00001084, 0x05fa08f6, + 0x8c040510, 0x05000006, 0x42000000, 0x00112486, + 0x0561fa33, 0x4a030002, 0x00000100, 0x8c040522, + 0x0500002d, 0x59e00002, 0x8c00051e, 0x0502002a, + 0x601c20f6, 0x50102800, 0x4817c857, 0x605c00f4, + 0x50003000, 0x82180500, 0x000f0000, 0x40003800, + 0x40144000, 0x821c0580, 0x00020000, 0x05020002, + 0x902041c0, 0x8c18050c, 0x05000002, 0x842041c0, + 0x82204500, 0x000000ff, 0x90204401, 0x8c200510, + 0x05000005, 0x42000000, 0x00112487, 0x0561fa14, + 0x61fc4001, 0x42001800, 0xffffff00, 0x8c18050c, + 0x05000003, 0x840c19c0, 0x842041c0, 0x821c0580, + 0x00020000, 0x05020003, 0x900c19c0, 0x902041c0, + 0x800c0505, 0x80200540, 0x44002000, 0x4a030002, + 0x00020000, 0x64030000, 0x1c01f000, 0x4d2c0000, + 0x64007000, 0x82040d00, 0x43200f80, 0x05fa08ba, + 0x58380008, 0x4803c00f, 0x583a5807, 0x592c0801, + 0x800409c0, 0x0500000e, 0x592c0000, 0x48000800, + 0x58380006, 0x812c0580, 0x05020002, 0x48047006, + 0x48047007, 0x60042000, 0x055dfd1b, 0x05f808aa, + 0x05f9fc5d, 0x5c025800, 0x05f9f540, 0x4a0370e4, + 0x00003000, 0x0551f978, 0x59a8049f, 0x84000502, + 0x4803549f, 0x583a5807, 0x592c0000, 0x48007007, + 0x800001c0, 0x05020002, 0x49787006, 0x05f9fc4e, + 0x5c025800, 0x42007000, 0x000211e8, 0x0001f03e, + 0x4803c856, 0x4c3c0000, 0x4d2c0000, 0x4d300000, + 0x5830000a, 0x80025d40, 0x0500001a, 0x592e600c, + 0x4c300000, 0x0551f975, 0x5c006000, 0x05f8088a, + 0x58300002, 0x82000580, 0x00000100, 0x05000003, + 0x640a5a0a, 0x492fc857, 0x4c300000, 0x0001fba8, + 0x5c025800, 0x05f9fc34, 0x0009f810, 0x59c80000, + 0x82000540, 0x00001200, 0x48039000, 0x850e1d1c, + 0x5c026000, 0x5c025800, 0x5c007800, 0x1c01f000, + 0x40325800, 0x05f9fc28, 0x05fdf7fa, 0x59300025, + 0x48025814, 0x59300026, 0x48025815, 0x59300a23, + 0x8c04050c, 0x05020007, 0x59300020, 0x59300a21, + 0x800408e0, 0x80040540, 0x5930081f, 0x0501f006, + 0x59300820, 0x59300221, 0x800408e0, 0x80040d40, + 0x5930001f, 0x9c0001c0, 0x9c0409c0, 0x48025816, + 0x48065817, 0x1c01f000, 0x592c0001, 0x80003540, + 0x05f80859, 0x58180a08, 0x82040d00, 0x000000ff, + 0xb004058a, 0x05fa0854, 0x592c1015, 0x592c1a16, + 0x58182209, 0x592c2c16, 0x592c0017, 0x800000e0, + 0x80142d40, 0x592c0017, 0x80003920, 0x58184409, + 0x5818020a, 0x8c20050e, 0x05fa0847, 0x800048e0, + 0x80244d40, 0x5818000b, 0x4802602c, 0x8c20050c, + 0x05020009, 0x901c51c0, 0x841401c0, 0x82003d00, + 0x0000ffff, 0x80140120, 0x80280540, 0x9c0029c0, + 0x0501f003, 0x9c1429c0, 0x841c39c0, 0x480a601f, + 0x480e6020, 0x48126421, 0x48126221, 0x48166022, + 0x481e6423, 0x48226223, 0x48266024, 0x1c01f000, + 0x4c5c0000, 0x592c0001, 0x80006540, 0x05f8082a, + 0x58300a08, 0x82040d00, 0x000000ff, 0xb004058a, + 0x05fa0825, 0x58302c09, 0x8c140506, 0x58300209, + 0x05000002, 0x80080400, 0x48026421, 0x48026221, + 0x5830020a, 0x800008e0, 0x80040540, 0x48026024, + 0x8c14050a, 0x05020004, 0x592c0015, 0x80080400, + 0x4802601f, 0x5830320a, 0x8c140510, 0x0502000c, + 0x90142d03, 0x90140582, 0x0500000e, 0x90140581, + 0x05000007, 0x40080800, 0x90180408, 0x40001000, + 0x0535fe1f, 0x40042000, 0x0501f006, 0x40080800, + 0x40181000, 0x4004b800, 0x0535fe19, 0x40042000, + 0x4c100000, 0x05fdfda8, 0x05f40fff, 0x5c002000, + 0x50200000, 0x80004540, 0x0500005d, 0x58300a08, + 0x82040d00, 0x000000ff, 0xb004058a, 0x05020006, + 0x80204000, 0x58300409, 0x8c000510, 0x05000002, + 0x80204000, 0x50200000, 0x80000540, 0x0500000b, + 0x80301400, 0x58080002, 0x80102480, 0x0500101d, + 0x801021c0, 0x05000009, 0x80285040, 0x05000048, + 0x80204000, 0x05fdf7f4, 0x58300001, 0x80006540, + 0x05000043, 0x05fdf7df, 0x80285040, 0x05000040, + 0x80204000, 0x50200000, 0x80000540, 0x05020009, + 0x58300001, 0x80006540, 0x05000039, 0x58300208, + 0x90004d0f, 0x82244400, 0x0010004b, 0x50204000, + 0x592c020c, 0x8400051e, 0x48025a0c, 0x0501f010, + 0x80102080, 0x80102000, 0x48126012, 0x4813c857, + 0x58080802, 0x40100000, 0x80042480, 0x05f41fc6, + 0x58080000, 0x80102400, 0x48126010, 0x4813c857, + 0x592c020c, 0x8400055e, 0x48025a0c, 0x59300008, + 0x8400052c, 0x48026008, 0x592c1001, 0x58080409, + 0x90000503, 0x90000581, 0x05020011, 0x0561fa77, + 0x0502000f, 0x90280581, 0x05020003, 0x59300812, + 0x0501f007, 0x80280840, 0x5808020a, 0x40001000, + 0x0535fdc3, 0x59300012, 0x80040c00, 0x48066013, + 0x59300008, 0x8400056c, 0x48026008, 0x592c1001, + 0x58080409, 0x8c000510, 0x05000003, 0x0501f822, + 0x05000003, 0x80000580, 0x0501f002, 0x90000541, + 0x5c00b800, 0x1c01f000, 0x592c6801, 0x803469c0, + 0x05000017, 0x58347805, 0x58347409, 0x90380503, + 0x8c380510, 0x0c020006, 0x0c01f001, 0x0010168e, + 0x0010168b, 0x00101691, 0x00101693, 0x00101693, + 0x00101693, 0x0010168e, 0x0010168e, 0x803c00c6, + 0x80102400, 0x0501f004, 0x803c00c6, 0x80102480, + 0x05001003, 0x80000580, 0x1c01f000, 0x90000541, + 0x1c01f000, 0x4c040000, 0x4c080000, 0x4c600000, + 0x592c0208, 0x82000500, 0x000000ff, 0xb00005a8, + 0x05000007, 0x90000582, 0x05000005, 0x90000598, + 0x05000003, 0x90000588, 0x05020037, 0x592c6801, + 0x803469c0, 0x05000034, 0x58340208, 0x82000500, + 0x000000ff, 0xb000058a, 0x0502002f, 0x5834740d, + 0x592cc20b, 0x40380000, 0x8060c480, 0x42007800, + 0x00100044, 0x0501f82a, 0x05fe07ff, 0x40607000, + 0x503c0000, 0x80341400, 0x805c00c6, 0x58088002, + 0x80408480, 0x0500101b, 0x0500001a, 0x58088800, + 0x80448c00, 0x58089001, 0x90489440, 0x59300827, + 0x800409c0, 0x05000018, 0x4844080d, 0x4848080e, + 0x4840080f, 0x4978080c, 0x80380040, 0x05000003, + 0x05020813, 0x4838080c, 0x59300827, 0x4834080a, + 0x483c080b, 0x503c0000, 0x48000809, 0x90000541, + 0x5c00c000, 0x5c001000, 0x5c000800, 0x1c01f000, + 0x58088002, 0x80400106, 0x805cbc80, 0x0501f804, + 0x05fe07dc, 0x80000580, 0x05fdf7f6, 0x4803c856, + 0x803c7800, 0x503c0000, 0x80000540, 0x05000003, + 0x80387040, 0x1c01f000, 0x58340001, 0x80006d40, + 0x0500000a, 0x58340208, 0x9000050f, 0x82000400, + 0x0010004b, 0x50007800, 0x803c79c0, 0x05f40f2a, + 0x80387040, 0x1c01f000, 0x40007000, 0x1c01f000, + 0x802850c6, 0x59306827, 0x58340009, 0x5834100a, + 0x5834180b, 0x5834200c, 0x58344810, 0x80087c00, + 0x583c0002, 0x80284480, 0x0500100f, 0x80102040, + 0x0500001f, 0x80244c80, 0x0500001d, 0x40205000, + 0x800c1800, 0x500c0000, 0x80000d40, 0x05fe07f4, + 0x58081001, 0x42001800, 0x00100042, 0x60240000, + 0x05fdf7ef, 0x80204080, 0x80204000, 0x4810680c, + 0x583c0000, 0x80282c00, 0x583c3001, 0x90183440, + 0x500c0800, 0x48046809, 0x4808680a, 0x480c680b, + 0x4810680c, 0x4814680d, 0x4818680e, 0x4820680f, + 0x48246810, 0x80000580, 0x1c01f000, 0x90000541, + 0x1c01f000, 0x4d2c0000, 0x0001f81f, 0x05f40ef6, + 0x412c1000, 0x5c025800, 0x4a001009, 0x000201d5, + 0x9008040a, 0x48001003, 0x0001f1cb, 0x4d2c0000, + 0x40325800, 0x05f9faa1, 0x5c025800, 0x1c01f000, + 0x4807c857, 0x05f5fee8, 0x42001000, 0x0011458b, + 0x4a001003, 0x00114595, 0x4a001009, 0x000201d5, + 0x4978100a, 0x1c01f000, 0x59e00017, 0x8c000500, + 0x1c01f000, 0x0001f9de, 0x4d040000, 0x4c640000, + 0x4c600000, 0x40120800, 0x400cc800, 0x4014c000, + 0x0501f01a, 0x59e00017, 0x8c00050c, 0x05020005, + 0x59a808a3, 0x58040003, 0x8c000500, 0x0500000d, + 0x4c080000, 0x59a810a2, 0x50080000, 0x84000542, + 0x44001000, 0x5c001000, 0x59e00017, 0x8c00050c, + 0x05fe07fe, 0x58040003, 0x8c000500, 0x05fe07fb, + 0x4d040000, 0x4c640000, 0x4c600000, 0x5804c800, + 0x58060801, 0x5804c002, 0x4a03b805, 0x20000000, + 0x59dc0006, 0x4a03b805, 0x30000000, 0x59dc0006, + 0x4a03b805, 0x70000000, 0x59dc0006, 0x4867b800, + 0x4907b801, 0x6413b802, 0x601c00e2, 0x44600000, 0x4a03b805, 0x30000000, 0x59dc0006, 0x4a03b805, - 0x70000000, 0x59dc0006, 0x4867b800, 0x4907b801, - 0x6413b802, 0x601c00e2, 0x44600000, 0x4a03b805, - 0x30000000, 0x59dc0006, 0x4a03b805, 0x10000003, - 0x59dc0006, 0x8c00053e, 0x05fc07fe, 0x4a03b805, - 0x20000000, 0x59dc0006, 0x5c00c000, 0x5c00c800, - 0x5c020800, 0x1c01f000, 0x4803c856, 0x055dfa08, - 0x0001f1df, 0x59300c03, 0xb0040592, 0x05020037, - 0x59c80000, 0x82000540, 0x00001200, 0x48039000, - 0x850e1d1c, 0x4d2c0000, 0x59325809, 0x42007000, - 0x000211a7, 0x58380800, 0x90040582, 0x0502000c, - 0x58386001, 0x58300009, 0x82000580, 0x0010150e, - 0x05020007, 0x5830000a, 0x812c0580, 0x05020004, - 0x4933c857, 0x4978600a, 0x0501f01e, 0x58386005, - 0x40305000, 0x803061c0, 0x0500001a, 0x58300009, - 0x82000580, 0x0010150e, 0x05020004, 0x5830000a, - 0x812c0580, 0x05000004, 0x40305000, 0x58306000, - 0x05fdf7f5, 0x4933c856, 0x8030058a, 0x58300000, - 0x05000006, 0x48005000, 0x800001c0, 0x05020007, - 0x48287004, 0x0501f005, 0x800001c0, 0x05020002, - 0x48007004, 0x48007005, 0x40325800, 0x05f9fa53, - 0x5c025800, 0x0501f010, 0x59300a03, 0x90040581, - 0x0502000d, 0x42001000, 0x0010e387, 0x50081000, - 0x58080002, 0x82000580, 0x00000100, 0x05000006, - 0x5808000c, 0x81300580, 0x05020003, 0x4933c856, - 0x4978100c, 0x59300004, 0x84000520, 0x48026004, - 0x1c01f000, 0x4803c856, 0x60f00800, 0x48079000, - 0x59c80000, 0x80040500, 0x05fe07fe, 0x497b9005, - 0x4a039035, 0x00880400, 0x59a8003b, 0x800000e0, - 0x4803900e, 0x64c39011, 0x4a03900f, 0x00111b00, - 0x4a039010, 0x00111b00, 0x65db9015, 0x4a039003, - 0x00001f07, 0x6503900d, 0x4a039000, 0x00001600, - 0x1c01f000, 0x59c80007, 0x8c000508, 0x05020885, - 0x59c80800, 0x8c040516, 0x05020003, 0x90000506, - 0x0c01f004, 0x4807c857, 0x9000050e, 0x0c01f001, - 0x00101789, 0x00101788, 0x00106d20, 0x00101788, - 0x0010178b, 0x00101788, 0x0010178b, 0x0010178b, - 0x00101788, 0x00101788, 0x00101788, 0x00101788, - 0x0010178b, 0x00101788, 0x0010178b, 0x00101788, - 0x05f5fe52, 0x4803c857, 0x1c01f000, 0x59c8080c, - 0x4807c857, 0x82040500, 0x00006000, 0x05000003, - 0x055df808, 0x0501f005, 0x82040500, 0x007f0000, - 0x05000004, 0x0559ffd5, 0x0539f899, 0x0501f02c, - 0x90040514, 0x0500000d, 0x055df82d, 0x916c0583, - 0x05000008, 0x0525f911, 0x05000003, 0x051df94c, - 0x0501f004, 0x64075042, 0x6006d800, 0x0525f88e, - 0x0501f820, 0x0501f01e, 0x82040500, 0x00001c00, - 0x05000004, 0x0559fffd, 0x0501f81a, 0x0501f018, - 0x82040500, 0x00000140, 0x05000004, 0x055df80a, - 0x0501f814, 0x0501f012, 0x82040500, 0x00008000, - 0x0500000f, 0x0525f8f9, 0x0500000b, 0x59c400a4, - 0x9000050f, 0x9000058b, 0x05020007, 0x4c040000, - 0x051df946, 0x60780000, 0x80000040, 0x05fe07ff, - 0x5c000800, 0x0559ffd0, 0x0501f802, 0x1c01f000, - 0x4c0c0000, 0x4c100000, 0x4c140000, 0x05fdf8b6, - 0x5c002800, 0x5c002000, 0x5c001800, 0x1c01f000, - 0x4803c856, 0x59a80804, 0x59a8004e, 0x82000500, - 0xfffff000, 0x80040540, 0x4803504e, 0x59a80052, - 0x82000500, 0xfffff000, 0x80040540, 0x48035052, - 0x59a80056, 0x82000500, 0xfffff000, 0x80040540, - 0x48035056, 0x48078882, 0x82040480, 0x00000204, - 0x05021004, 0x42001000, 0x00240f00, 0x0501f00f, - 0x82040480, 0x00000404, 0x05021004, 0x42001000, - 0x00440800, 0x0501f009, 0x82040480, 0x00000804, - 0x05021004, 0x42001000, 0x00840400, 0x0501f003, - 0x42001000, 0x00880400, 0x480b9035, 0x0501f350, - 0x59c80815, 0x05f5fdde, 0x4807c857, 0xb0040d3c, + 0x10000003, 0x59dc0006, 0x8c00053e, 0x05fc07fe, + 0x4a03b805, 0x20000000, 0x59dc0006, 0x5c00c000, + 0x5c00c800, 0x5c020800, 0x1c01f000, 0x4803c856, + 0x0561f912, 0x0001f1e7, 0x59300c03, 0xb0040592, + 0x05020037, 0x59c80000, 0x82000540, 0x00001200, + 0x48039000, 0x850e1d1c, 0x4d2c0000, 0x59325809, + 0x42007000, 0x000211e8, 0x58380800, 0x90040582, + 0x0502000c, 0x58386001, 0x58300009, 0x82000580, + 0x00101580, 0x05020007, 0x5830000a, 0x812c0580, + 0x05020004, 0x4933c857, 0x4978600a, 0x0501f01e, + 0x58386005, 0x40305000, 0x803061c0, 0x0500001a, + 0x58300009, 0x82000580, 0x00101580, 0x05020004, + 0x5830000a, 0x812c0580, 0x05000004, 0x40305000, + 0x58306000, 0x05fdf7f5, 0x4933c856, 0x8030058a, + 0x58300000, 0x05000006, 0x48005000, 0x800001c0, + 0x05020007, 0x48287004, 0x0501f005, 0x800001c0, + 0x05020002, 0x48007004, 0x48007005, 0x40325800, + 0x05f9fa19, 0x5c025800, 0x0501f010, 0x59300a03, + 0x90040581, 0x0502000d, 0x42001000, 0x00112322, + 0x50081000, 0x58080002, 0x82000580, 0x00000100, + 0x05000006, 0x5808000c, 0x81300580, 0x05020003, + 0x4933c856, 0x4978100c, 0x59300004, 0x84000520, + 0x48026004, 0x1c01f000, 0x4803c856, 0x60f00800, 0x48079000, 0x59c80000, 0x80040500, 0x05fe07fe, - 0x8c040504, 0x0500001b, 0x59c80035, 0x48039035, - 0x59a800ca, 0x80000540, 0x05000016, 0x4c300000, - 0x600060de, 0x58300801, 0x82040d00, 0xffc00000, - 0x8004090c, 0x58300000, 0x90000541, 0x48006000, - 0x58300000, 0x8c000500, 0x05fe07fe, 0x82000500, - 0xfc00ffff, 0x80040540, 0x84000574, 0x48006000, - 0x58300000, 0x8c000534, 0x05fe07fe, 0x5c006000, - 0x59c80000, 0x82000540, 0x00001200, 0x48039000, - 0x1c01f000, 0x60100020, 0x50000000, 0x8c000520, - 0x05020006, 0x42006000, 0x7ff4c000, 0x58300003, - 0x8c000502, 0x0502000a, 0x600060de, 0x64686000, - 0x58300000, 0x8c000504, 0x05fe07fe, 0x641c6002, - 0x59a800ca, 0x84000540, 0x480350ca, 0x1c01f000, - 0x600060de, 0x58300801, 0x9004050c, 0x05f60da7, - 0x60f00800, 0x05fdf7c1, 0x4853c857, 0x497b8801, - 0x850e1d1a, 0x5050b000, 0x485bc857, 0x8058b1c0, - 0x0500089d, 0x82580480, 0x00000804, 0x0502189a, - 0x60040000, 0x61000801, 0x0501fd74, 0x40582000, - 0x8050a000, 0x50500000, 0x80102400, 0x9058b483, - 0x8050a000, 0x485bc857, 0x4853c857, 0x50501000, - 0x80082404, 0x60101800, 0x82080500, 0x000000ff, - 0x61000821, 0x0501fd65, 0x80081110, 0x800c1840, - 0x05fe07fa, 0x8050a000, 0x8058b040, 0x05fe07f4, - 0x4803c856, 0x41780000, 0x61000801, 0x0501fd5b, - 0x50501000, 0x80082404, 0x0502087b, 0x4803c856, - 0x1c01f000, 0x4a035076, 0xaabbccdd, 0x600c0000, - 0x0501fcb1, 0x600c0000, 0x0501fcdf, 0x60300868, - 0x0501fd49, 0x90040541, 0x60300868, 0x0501fd4b, - 0x60480888, 0x0501fd44, 0x90040548, 0x60480888, - 0x0501fd46, 0x60180818, 0x0501fd3f, 0x82040540, - 0x00000080, 0x60180818, 0x0501fd40, 0x60480828, - 0x0501fd39, 0x90040541, 0x60480828, 0x0501fd3b, - 0x59a80084, 0x8c00050e, 0x05000006, 0x4803c857, - 0x82000500, 0x0000ff00, 0x80000110, 0x0501f002, - 0x60e00001, 0x60300800, 0x0501fd30, 0x60380940, - 0x0501fd29, 0x82040500, 0xffffff0f, 0x0501fef5, - 0x05020003, 0x90000540, 0x0501f002, 0x90000550, - 0x60380940, 0x0501fd25, 0x60380938, 0x0501fd1e, - 0x90040550, 0x60380938, 0x0501fd20, 0x60800000, - 0x61000859, 0x0501fd1d, 0x61000000, 0x61000851, - 0x0501fd1a, 0x60300000, 0x61800861, 0x0501fd17, - 0x60840000, 0x61800821, 0x0501fd14, 0x59c40001, - 0x84000574, 0x48038801, 0x850e1d5a, 0x61602004, - 0x6029d000, 0x0501f83c, 0x4813c857, 0x61000849, - 0x0501fd05, 0x4807c857, 0x82041500, 0x000000c0, - 0x82081580, 0x000000c0, 0x05000004, 0x80102040, - 0x05000825, 0x05fdf7f3, 0x4803c856, 0x60c82000, - 0x6029d000, 0x0501f82c, 0x60380878, 0x0501fcf6, - 0x90040d01, 0x05020004, 0x80102040, 0x0500081a, - 0x05fdf7f8, 0x4803c856, 0x61702001, 0x6029d000, - 0x052dff41, 0x60380818, 0x0501fceb, 0x90040d10, - 0x05020004, 0x80102040, 0x05f40d10, 0x05fdf7f8, - 0x4803c856, 0x60a02000, 0x6029d000, 0x052dff36, - 0x603808b8, 0x0501fce0, 0x90040d04, 0x05000004, - 0x80102040, 0x05f40d05, 0x05fdf7f8, 0x4803c856, - 0x1c01f000, 0x4803c856, 0x4a03c020, 0x00004010, - 0x4a03c011, 0x40100011, 0x05006000, 0x4203e000, - 0x40000000, 0x4203e000, 0x30000001, 0x4803c856, - 0x0501f000, 0x61201801, 0x800c1840, 0x05fe07ff, - 0x80e9d040, 0x05fe07fc, 0x1c01f000, 0x4803c856, - 0x497b88a9, 0x64078807, 0x497b8807, 0x59c40005, - 0x48038805, 0x0501fde0, 0x0501fe23, 0x0501f9f6, - 0x4a0388a7, 0x0000f7f7, 0x4a0388a3, 0x8000403c, - 0x4a0388ae, 0x000061a8, 0x59c40001, 0x82000500, - 0xfffe7fff, 0x82000540, 0x005fe063, 0x48038801, - 0x4a038810, 0x00410108, 0x4a038811, 0x00520608, - 0x4a038812, 0x00450320, 0x4a038813, 0x00440405, - 0x4a03881c, 0x004132e1, 0x4a038850, 0x80000108, - 0x64238860, 0x64238870, 0x4a038851, 0x80000508, - 0x4a038861, 0x00800000, 0x4a038871, 0x00800000, - 0x4a038852, 0x80000708, 0x4a038862, 0x00800000, - 0x4a038872, 0x00800000, 0x4a038853, 0x80000608, - 0x497b8863, 0x4a038873, 0x00800000, 0x4a038882, - 0x00000840, 0x4a0388a5, 0x000000fe, 0x647b88a6, - 0x4a0388b0, 0x00007530, 0x4a038802, 0x0000ffff, - 0x4a038806, 0xc0e80b00, 0x1c01f000, 0x850e1d4e, - 0x1c01f000, 0x59c40805, 0x59c40006, 0x80040d00, - 0x05f40caa, 0x82040500, 0x00e80b00, 0x05020004, - 0x8c04053e, 0x050208c9, 0x0501f005, 0x82040500, - 0x00880b00, 0x05f60c9a, 0x05f5fca0, 0x4c5c0000, - 0x4c600000, 0x59c4b805, 0x485fc857, 0x59c410a3, - 0x84081518, 0x825c0500, 0x04000000, 0x05020d5c, - 0x59c40006, 0x8c000500, 0x05000003, 0x8c5c0500, - 0x05020080, 0x0521ff65, 0x0500001c, 0x0521ff6f, - 0x0500001a, 0x59c40005, 0x82000500, 0x000000c0, - 0x05000042, 0x0521ff6f, 0x05020040, 0x59c40006, - 0x82000500, 0x000000f0, 0x05020004, 0x4a038805, - 0x000000c0, 0x0501f039, 0x59a80043, 0x84000506, - 0x48035043, 0x42006000, 0xff203fff, 0x42006800, - 0x40000000, 0x051df8f6, 0x60400800, 0x42001000, - 0x001051b3, 0x052dfe99, 0x8c5c0534, 0x0502002b, - 0x4a035041, 0x0000aaaa, 0x59c40005, 0x8c00050c, - 0x0502000f, 0x8c00050e, 0x05020015, 0x8c00050a, - 0x0502001b, 0x8c000508, 0x05000008, 0x59a8003f, - 0x90000589, 0x05020005, 0x42000000, 0x0010e3a4, - 0x0559fe64, 0x0525f8e2, 0x0501f04c, 0x42000000, - 0x0010e3b2, 0x0559fe5f, 0x41781800, 0x60042000, - 0x0501fd13, 0x64035042, 0x0501f00e, 0x42000000, - 0x0010e3b3, 0x0559fe57, 0x41781800, 0x60082000, - 0x0501fd0b, 0x640b5042, 0x0501f006, 0x42000000, - 0x0010e3a6, 0x0559fe4f, 0x0525f873, 0x0501f037, - 0x0525f91f, 0x0501f035, 0x8c5c0534, 0x05000031, - 0x59c40005, 0x8c00053a, 0x05020004, 0x42000000, - 0x0010e39a, 0x0559fe43, 0x4a038805, 0x20000000, - 0x0521ff12, 0x0502000e, 0x4a038805, 0x04000000, - 0x59c418a8, 0x60002000, 0x0501fcf1, 0x0521ff17, - 0x05020005, 0x64075042, 0x6006d800, 0x0521fe8a, - 0x0501f053, 0x41780000, 0x0521fedd, 0x0501fce1, - 0x4000c000, 0x0501fc28, 0x916c1584, 0x0502000b, + 0x497b9005, 0x4a039035, 0x00880400, 0x59a8003d, + 0x800000e0, 0x4803900e, 0x64c39011, 0x4a03900f, + 0x00115aa4, 0x4a039010, 0x00115aa4, 0x65db9015, + 0x4a039003, 0x00001f07, 0x6503900d, 0x4a039000, + 0x00001600, 0x1c01f000, 0x59c80007, 0x8c000508, + 0x05020885, 0x59c80800, 0x8c040516, 0x05020003, + 0x90000506, 0x0c01f004, 0x4807c857, 0x9000050e, + 0x0c01f001, 0x001017fa, 0x001017f9, 0x001070b1, + 0x001017f9, 0x001017fc, 0x001017f9, 0x001017fc, + 0x001017fc, 0x001017f9, 0x001017f9, 0x001017f9, + 0x001017f9, 0x001017fc, 0x001017f9, 0x001017fc, + 0x001017f9, 0x05f5fe1c, 0x4803c857, 0x1c01f000, + 0x59c8080c, 0x4807c857, 0x82040500, 0x00006000, + 0x05000003, 0x055dff12, 0x0501f005, 0x82040500, + 0x007f0000, 0x05000004, 0x055dfedf, 0x0539fce6, + 0x0501f02c, 0x90040514, 0x0500000d, 0x055dff37, + 0x916c0583, 0x05000008, 0x0525fb8a, 0x05000003, + 0x051dfad2, 0x0501f004, 0x64075045, 0x6006d800, + 0x0525fb01, 0x0501f820, 0x0501f01e, 0x82040500, + 0x00001c00, 0x05000004, 0x055dff07, 0x0501f81a, + 0x0501f018, 0x82040500, 0x00000140, 0x05000004, + 0x055dff14, 0x0501f814, 0x0501f012, 0x82040500, + 0x00008000, 0x0500000f, 0x0525fb72, 0x0500000b, + 0x59c400a4, 0x9000050f, 0x9000058b, 0x05020007, + 0x4c040000, 0x051dfacc, 0x60780000, 0x80000040, + 0x05fe07ff, 0x5c000800, 0x055dfeda, 0x0501f802, + 0x1c01f000, 0x4c0c0000, 0x4c100000, 0x4c140000, + 0x05fdf8e3, 0x5c002800, 0x5c002000, 0x5c001800, + 0x1c01f000, 0x4803c856, 0x59a80804, 0x59a80051, + 0x82000500, 0xfffff000, 0x80040540, 0x48035051, + 0x59a80055, 0x82000500, 0xfffff000, 0x80040540, + 0x48035055, 0x59a80059, 0x82000500, 0xfffff000, + 0x80040540, 0x48035059, 0x48078882, 0x82040480, + 0x00000204, 0x05021004, 0x42001000, 0x00240f00, + 0x0501f00f, 0x82040480, 0x00000404, 0x05021004, + 0x42001000, 0x00440800, 0x0501f009, 0x82040480, + 0x00000804, 0x05021004, 0x42001000, 0x00840400, + 0x0501f003, 0x42001000, 0x00880400, 0x480b9035, + 0x0501f35f, 0x59c80815, 0x05f5fda8, 0x4807c857, + 0xb0040d3c, 0x48079000, 0x59c80000, 0x80040500, + 0x05fe07fe, 0x8c040504, 0x0500001b, 0x59c80035, + 0x48039035, 0x59a800cf, 0x80000540, 0x05000016, + 0x4c300000, 0x600060de, 0x58300801, 0x82040d00, + 0xffc00000, 0x8004090c, 0x58300000, 0x90000541, + 0x48006000, 0x58300000, 0x8c000500, 0x05fe07fe, + 0x82000500, 0xfc00ffff, 0x80040540, 0x84000574, + 0x48006000, 0x58300000, 0x8c000534, 0x05fe07fe, + 0x5c006000, 0x59c80000, 0x82000540, 0x00001200, + 0x48039000, 0x1c01f000, 0x60100020, 0x50000000, + 0x8c000520, 0x05020006, 0x42006000, 0x7ff4c000, + 0x58300003, 0x8c000502, 0x0502000a, 0x600060de, + 0x64686000, 0x58300000, 0x8c000504, 0x05fe07fe, + 0x641c6002, 0x59a800cf, 0x84000540, 0x480350cf, + 0x1c01f000, 0x600060de, 0x58300801, 0x9004050c, + 0x05f60d71, 0x60f00800, 0x05fdf7c1, 0x4853c857, + 0x497b8801, 0x850e1d1a, 0x5050b000, 0x485bc857, + 0x8058b1c0, 0x050008a3, 0x82580480, 0x00000804, + 0x050218a0, 0x60040000, 0x61000801, 0x0501fd83, + 0x40582000, 0x8050a000, 0x50500000, 0x80102400, + 0x9058b483, 0x8050a000, 0x485bc857, 0x4853c857, + 0x50501000, 0x80082404, 0x60101800, 0x82080500, + 0x000000ff, 0x61000821, 0x0501fd74, 0x80081110, + 0x800c1840, 0x05fe07fa, 0x8050a000, 0x8058b040, + 0x05fe07f4, 0x4803c856, 0x41780000, 0x61000801, + 0x0501fd6a, 0x50501000, 0x80082404, 0x05020881, + 0x4803c856, 0x1c01f000, 0x4a035079, 0xaabbccdd, + 0x600c0000, 0x0501fcc0, 0x600c0000, 0x0501fcee, + 0x60300868, 0x0501fd58, 0x90040541, 0x60300868, + 0x0501fd5a, 0x60480888, 0x0501fd53, 0x90040548, + 0x60480888, 0x0501fd55, 0x60180818, 0x0501fd4e, + 0x82040540, 0x00000080, 0x60180818, 0x0501fd4f, + 0x60480828, 0x0501fd48, 0x90040541, 0x60480828, + 0x0501fd4a, 0x60300830, 0x0501fd43, 0x82040540, + 0x00000080, 0x60300830, 0x0501fd44, 0x59a80087, + 0x8c00050e, 0x05000006, 0x4803c857, 0x82000500, + 0x0000ff00, 0x80000110, 0x0501f002, 0x60e00001, + 0x60300800, 0x0501fd39, 0x60380940, 0x0501fd32, + 0x82040500, 0xffffff0f, 0x0501fefe, 0x05020003, + 0x90000540, 0x0501f002, 0x90000550, 0x60380940, + 0x0501fd2e, 0x60380938, 0x0501fd27, 0x90040550, + 0x60380938, 0x0501fd29, 0x60800000, 0x61000859, + 0x0501fd26, 0x61000000, 0x61000851, 0x0501fd23, + 0x60300000, 0x61800861, 0x0501fd20, 0x60840000, + 0x61800821, 0x0501fd1d, 0x59c40001, 0x84000574, + 0x48038801, 0x850e1d5a, 0x61602004, 0x6029d000, + 0x0501f83c, 0x4813c857, 0x61000849, 0x0501fd0e, + 0x4807c857, 0x82041500, 0x000000c0, 0x82081580, + 0x000000c0, 0x05000004, 0x80102040, 0x05000825, + 0x05fdf7f3, 0x4803c856, 0x60c82000, 0x6029d000, + 0x0501f82c, 0x60380878, 0x0501fcff, 0x90040d01, + 0x05020004, 0x80102040, 0x0500081a, 0x05fdf7f8, + 0x4803c856, 0x61702001, 0x6029d000, 0x0531fb35, + 0x60380818, 0x0501fcf4, 0x90040d10, 0x05020004, + 0x80102040, 0x05f40cd4, 0x05fdf7f8, 0x4803c856, + 0x60a02000, 0x6029d000, 0x0531fb2a, 0x603808b8, + 0x0501fce9, 0x90040d04, 0x05000004, 0x80102040, + 0x05f40cc9, 0x05fdf7f8, 0x4803c856, 0x1c01f000, + 0x4803c856, 0x4a03c020, 0x00004010, 0x4a03c011, + 0x40100011, 0x05006000, 0x4203e000, 0x40000000, + 0x4203e000, 0x30000001, 0x4803c856, 0x0501f000, + 0x61201801, 0x800c1840, 0x05fe07ff, 0x80e9d040, + 0x05fe07fc, 0x1c01f000, 0x4803c856, 0x497b88a9, + 0x64078807, 0x497b8807, 0x59c40005, 0x48038805, + 0x0501fde9, 0x0501fe2c, 0x0501f9ff, 0x4a0388a7, + 0x0000f7f7, 0x4a0388a3, 0x8000403c, 0x4a0388ae, + 0x000061a8, 0x59c40001, 0x82000500, 0xfffe7fff, + 0x82000540, 0x005fe063, 0x48038801, 0x4a038810, + 0x00410108, 0x4a038811, 0x00520608, 0x4a038812, + 0x00450320, 0x4a038813, 0x00440405, 0x4a03881c, + 0x004132e1, 0x4a038850, 0x80000108, 0x64238860, + 0x64238870, 0x4a038851, 0x80000508, 0x4a038861, + 0x00800000, 0x4a038871, 0x00800000, 0x4a038852, + 0x80000708, 0x4a038862, 0x00800000, 0x4a038872, + 0x00800000, 0x4a038853, 0x80000608, 0x497b8863, + 0x4a038873, 0x00800000, 0x4a038882, 0x00000840, + 0x4a0388a5, 0x000000fe, 0x647b88a6, 0x4a0388b0, + 0x00007530, 0x4a038802, 0x0000ffff, 0x4a038806, + 0xc0e80b00, 0x1c01f000, 0x850e1d4e, 0x1c01f000, + 0x59c40805, 0x59c40006, 0x80040d00, 0x05f40c6e, + 0x82040500, 0x00e80b00, 0x05020004, 0x8c04053e, + 0x050208d2, 0x0501f005, 0x82040500, 0x00880b00, + 0x05f60c5e, 0x05f5fc64, 0x4c5c0000, 0x4c600000, + 0x59c4b805, 0x485fc857, 0x59c410a3, 0x84081518, + 0x825c0500, 0x04000000, 0x05020d65, 0x59c40006, + 0x8c000500, 0x05000003, 0x8c5c0500, 0x05020089, + 0x0525f9d8, 0x0500001c, 0x0525f9e2, 0x0500001a, + 0x59c40005, 0x82000500, 0x000000c0, 0x05000042, + 0x0525f9e2, 0x05020040, 0x59c40006, 0x82000500, + 0x000000f0, 0x05020004, 0x4a038805, 0x000000c0, + 0x0501f039, 0x59a80046, 0x84000506, 0x48035046, + 0x42006000, 0xff203fff, 0x42006800, 0x40000000, + 0x051dfa76, 0x60400800, 0x42001000, 0x001053aa, + 0x0531fa8d, 0x8c5c0534, 0x0502002b, 0x4a035044, + 0x0000aaaa, 0x59c40005, 0x8c00050c, 0x0502000f, + 0x8c00050e, 0x05020015, 0x8c00050a, 0x0502001b, + 0x8c000508, 0x05000008, 0x59a80042, 0x90000589, + 0x05020005, 0x42000000, 0x00112345, 0x055dfd68, + 0x0525fb59, 0x0501f055, 0x42000000, 0x00112353, + 0x055dfd63, 0x41781800, 0x60042000, 0x0501fd1c, + 0x64035045, 0x0501f00e, 0x42000000, 0x00112354, + 0x055dfd5b, 0x41781800, 0x60082000, 0x0501fd14, + 0x640b5045, 0x0501f006, 0x42000000, 0x00112347, + 0x055dfd53, 0x0525fae8, 0x0501f040, 0x0525fb97, + 0x0501f03e, 0x8c5c0534, 0x0500003a, 0x59c40005, + 0x8c00053a, 0x05020004, 0x42000000, 0x0011233b, + 0x055dfd47, 0x4a038805, 0x20000000, 0x0525f985, + 0x0502000e, 0x4a038805, 0x04000000, 0x59c418a8, + 0x60002000, 0x0501fcfa, 0x0525f98a, 0x05020005, + 0x64075045, 0x6006d800, 0x0525f8f7, 0x0501f05c, + 0x41780000, 0x0525f94a, 0x0501fcea, 0x4000c000, + 0x59c400a2, 0x82000500, 0x0000ffff, 0x59881023, + 0x80081400, 0x05021002, 0x81781040, 0x480b1023, + 0x0505f8a7, 0x0501fc28, 0x916c1584, 0x0502000b, 0x8c5c0500, 0x05020013, 0x8d0c0506, 0x05020004, 0x59c410a3, 0x90081548, 0x480b88a3, 0x59c41006, 0x84081540, 0x480b8806, 0x4a038805, 0x04000000, - 0x6006d800, 0x497b503e, 0x8d0c0518, 0x05020004, - 0x4803c856, 0x850e1d06, 0x0519ff45, 0x0519f9e1, + 0x6006d800, 0x497b5041, 0x8d0c0518, 0x05020004, + 0x4803c856, 0x850e1d06, 0x051df8bc, 0x0519fb56, 0x8c5c053c, 0x05020852, 0x8c5c0500, 0x05000031, - 0x42000000, 0x0010e4bc, 0x0559fe12, 0x64078805, - 0x6148b006, 0x6191d000, 0x4c580000, 0x052dfe36, + 0x42000000, 0x00112460, 0x055dfd0d, 0x64078805, + 0x6148b006, 0x6191d000, 0x4c580000, 0x0531fa21, 0x0501fba3, 0x5c00b000, 0x05000004, 0x8058b040, 0x05fe07f9, 0x0501f004, 0x485bc857, 0x64078805, 0x0501f020, 0x485bc857, 0x59c40006, 0x84000500, - 0x48038806, 0x0535fe78, 0x497b8880, 0x0501fda1, + 0x48038806, 0x0539fab6, 0x497b8880, 0x0501fda1, 0x05000008, 0x60000818, 0x0501fbcf, 0x8c040500, - 0x05000004, 0x60142000, 0x0525f908, 0x0501f003, - 0x60182000, 0x0525f905, 0x59c400a3, 0x82000500, - 0xfcf8ffff, 0x480388a3, 0x640b50b4, 0x6012d800, - 0x6403506a, 0x64078805, 0x05f5fe0c, 0x0501fb19, - 0x497b5068, 0x64075075, 0x497b50a6, 0x05f5fa03, + 0x05000004, 0x60142000, 0x0525fb78, 0x0501f003, + 0x60182000, 0x0525fb75, 0x59c400a3, 0x82000500, + 0xfcf8ffff, 0x480388a3, 0x640b50b9, 0x6012d800, + 0x6403506d, 0x64078805, 0x05f5fdbb, 0x0501fb19, + 0x497b506b, 0x64075078, 0x497b50a9, 0x05f5f9ba, 0x825cbd00, 0xbbfffffe, 0x485f8805, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4d180000, 0x59c41004, 0x480bc857, 0x8c080500, 0x05000006, 0x4803c856, - 0x4a01a8e5, 0x00000800, 0x0535fefb, 0x0501f007, + 0x4a01a8e5, 0x00000800, 0x0539fb39, 0x0501f007, 0x82080500, 0x000001f0, 0x05000004, 0x4803c856, - 0x0539f820, 0x05360f13, 0x4a038805, 0x80000000, + 0x0539fc5e, 0x053a0b51, 0x4a038805, 0x80000000, 0x5c023000, 0x1c01f000, 0x59c408a3, 0x4807c857, 0x84040d40, 0x480788a3, 0x1c01f000, 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, - 0x4a038805, 0x40000000, 0x42000000, 0x0010e3ac, - 0x0559fdbc, 0x0535faf2, 0x59c41004, 0x8c080500, + 0x4a038805, 0x40000000, 0x42000000, 0x0011234d, + 0x055dfcb7, 0x0535ff30, 0x59c41004, 0x8c080500, 0x05000040, 0x598e600b, 0x4a01a8e5, 0x00000800, 0x813261c0, 0x05000024, 0x59300403, 0x900005b2, 0x05020021, 0x5930001e, 0x48038833, 0x4a038807, - 0x00018000, 0x6009d000, 0x052dfdd3, 0x497b8807, - 0x6009d000, 0x052dfdd0, 0x0535fd6c, 0x60c1d0ea, - 0x052dfdcd, 0x59c408a4, 0x90040d0f, 0x90040d80, + 0x00018000, 0x6009d000, 0x0531f9be, 0x497b8807, + 0x6009d000, 0x0531f9bb, 0x0539f9aa, 0x60c1d0ea, + 0x0531f9b8, 0x59c408a4, 0x90040d0f, 0x90040d80, 0x05000004, 0x42000000, 0x00200000, 0x0501fb7c, - 0x0535fa29, 0x59300009, 0x80000540, 0x05f40b97, + 0x0535fe67, 0x59300009, 0x80000540, 0x05f40b52, 0x40025800, 0x4a025a08, 0x00000103, 0x5931d82d, - 0x58ef400b, 0x58ec0009, 0x0801f800, 0x0005ffdc, + 0x58ef400b, 0x58ec0009, 0x0801f800, 0x0009f810, 0x0501f032, 0x598c000d, 0x82001c80, 0x000000c8, 0x0502100c, 0x80000000, 0x4803180d, 0x59c400a4, 0x9000050f, 0x90000582, 0x05020004, 0x42000000, - 0x00200000, 0x0501fb62, 0x052dfd59, 0x0501f023, - 0x4933c857, 0x0535fd45, 0x813261c0, 0x0500001f, - 0x64066203, 0x609e7000, 0x0009f800, 0x0501f01b, - 0x0535ffc8, 0x05000019, 0x0535ffee, 0x052dfd74, + 0x00200000, 0x0501fb62, 0x0531f93d, 0x0501f023, + 0x4933c857, 0x0539f983, 0x813261c0, 0x0500001f, + 0x64066203, 0x609e7000, 0x0009f839, 0x0501f01b, + 0x0539fc06, 0x05000019, 0x0539fc2c, 0x0531f958, 0x59926005, 0x813261c0, 0x0500000d, 0x61201801, - 0x0535ffb7, 0x0502000a, 0x59c400a4, 0x9000050f, + 0x0539fbf5, 0x0502000a, 0x59c400a4, 0x9000050f, 0x90000582, 0x05020004, 0x42000000, 0x00200000, - 0x0501fb47, 0x052dfd44, 0x0501f008, 0x4933c857, - 0x0535fcd1, 0x813261c0, 0x05000004, 0x613e7000, - 0x640e6203, 0x0009f800, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x0535f281, + 0x0501fb47, 0x0531f928, 0x0501f008, 0x4933c857, + 0x0539f90f, 0x813261c0, 0x05000004, 0x613e7000, + 0x640e6203, 0x0009f839, 0x5c01b000, 0x5c022800, + 0x5c034800, 0x5c03a000, 0x5c032000, 0x0535f6bf, 0x810c0d80, 0x8c04050e, 0x05000055, 0x4803c857, - 0x8d0c050e, 0x05000021, 0x850e1d0e, 0x497b50b4, - 0x42000000, 0x0010e393, 0x0559fd4e, 0x0559fdfa, - 0x0001ff09, 0x60441100, 0x497b50a8, 0x59c40001, + 0x8d0c050e, 0x05000021, 0x850e1d0e, 0x497b50b9, + 0x42000000, 0x00112334, 0x055dfc49, 0x055dfcf5, + 0x0001ff2f, 0x60441100, 0x497b50ab, 0x59c40001, 0x82000500, 0x00018000, 0x90001d80, 0x0500000b, 0x82001d80, 0x00008000, 0x0500000a, 0x82001d80, 0x00010000, 0x05000009, 0x82001d80, 0x00018000, - 0x05000008, 0x05f5fb39, 0x60001800, 0x0501f006, + 0x05000008, 0x05f5faf4, 0x60001800, 0x0501f006, 0x60041800, 0x0501f004, 0x600c1800, 0x0501f002, - 0x60101800, 0x0515f533, 0x850e1d4e, 0x59a808b4, + 0x60101800, 0x0515f650, 0x850e1d4e, 0x59a808b9, 0x800409c0, 0x05020006, 0x59c4000d, 0x8c000520, 0x05000003, 0x600c1800, 0x0501f002, 0x40041800, - 0x0559fdbd, 0x4c0c0000, 0x4c0c0000, 0x41782000, + 0x055dfcb8, 0x4c0c0000, 0x4c0c0000, 0x41782000, 0x0501fcc8, 0x0500000f, 0x0501fcad, 0x60042000, 0x0502000c, 0x0501fcb5, 0x05020006, 0x60082000, 0x0501f8b4, 0x05020007, 0x60102000, 0x0501f005, 0x600c2000, 0x0501f89d, 0x05020002, 0x60142000, - 0x5c001800, 0x60481100, 0x5c001800, 0x0515fd11, - 0x05f5fd32, 0x0559fe1f, 0x0502000c, 0x4d200000, + 0x5c001800, 0x60481100, 0x5c001800, 0x0515fe2e, + 0x05f5fce1, 0x055dfd1a, 0x0502000c, 0x4d200000, 0x61fe4001, 0x0501f857, 0x5c024000, 0x4d400000, - 0x4d3c0000, 0x60a28000, 0x60227800, 0x0501fffb, + 0x4d3c0000, 0x60a28000, 0x60227800, 0x0505f80e, 0x5c027800, 0x5c028000, 0x1c01f000, 0x80000540, - 0x05fc07fe, 0x4d3c0000, 0x60067800, 0x054dfb48, + 0x05fc07fe, 0x4d3c0000, 0x60067800, 0x0551f86f, 0x5c027800, 0x1c01f000, 0x4803c857, 0x82000400, - 0x00102853, 0x50000800, 0x82040d00, 0x000000ff, + 0x001028fb, 0x50000800, 0x82040d00, 0x000000ff, 0x1c01f000, 0x4803c856, 0x4c580000, 0x6040b000, 0x497b88ac, 0x497b88ad, 0x8058b040, 0x05fe07fe, 0x5c00b000, 0x1c01f000, 0x4807c857, 0x80041908, - 0x480f88ac, 0x9004250f, 0x82102400, 0x0010d15b, + 0x480f88ac, 0x9004250f, 0x82102400, 0x0010d8d9, 0x50102000, 0x59c400ad, 0x80100540, 0x480f88ac, - 0x480388ad, 0x0559fe18, 0x05000002, 0x4807503d, + 0x480388ad, 0x055dfd13, 0x05000002, 0x48075040, 0x1c01f000, 0x4807c857, 0x80041908, 0x480f88ac, - 0x9004250f, 0x82102400, 0x0010d15b, 0x50102000, + 0x9004250f, 0x82102400, 0x0010d8d9, 0x50102000, 0x59c400ad, 0x80101500, 0x05000004, 0x80100580, 0x480f88ac, 0x480388ad, 0x1c01f000, 0x4803c857, 0x4c080000, 0x4c040000, 0x4c000000, 0x59c40892, @@ -1773,12 +1805,12 @@ static const uint32_t isp_2500_risc_code[] = { 0x48038886, 0x8058b040, 0x05fe07fe, 0x497b8886, 0x5c000000, 0x5c000800, 0x5c001000, 0x1c01f000, 0x4803c856, 0x8d0c0520, 0x05000003, 0x60ba8000, - 0x0555f47d, 0x1c01f000, 0x59a800ca, 0x80000540, - 0x05000008, 0x0521fd7d, 0x60280800, 0x0502000e, + 0x0559f344, 0x1c01f000, 0x59a800cf, 0x80000540, + 0x05000008, 0x0521ffe7, 0x60280800, 0x0502000e, 0x600008de, 0x58040001, 0x8000092c, 0x0501f00a, 0x59c80835, 0x82040d00, 0x00001f00, 0x80040910, - 0x80040800, 0x59a800ca, 0x80000540, 0x05000002, - 0x61680804, 0x4807c857, 0x1c01f000, 0x59a800ca, + 0x80040800, 0x59a800cf, 0x80000540, 0x05000002, + 0x61680804, 0x4807c857, 0x1c01f000, 0x59a800cf, 0x80000540, 0x0500001c, 0x599c1a01, 0x60a80801, 0x820c0480, 0x00000204, 0x0500100a, 0x61680800, 0x820c0480, 0x00000404, 0x05001006, 0x60b80800, @@ -1786,116 +1818,116 @@ static const uint32_t isp_2500_risc_code[] = { 0x4c300000, 0x600060de, 0x58301000, 0x82081500, 0xfc00ffff, 0x800400e0, 0x80080540, 0x84000574, 0x48006000, 0x58300000, 0x8c000534, 0x05fe07fe, - 0x5c006000, 0x1c01f000, 0x4c000000, 0x59a80069, + 0x5c006000, 0x1c01f000, 0x4c000000, 0x59a8006c, 0x4803c857, 0x90000580, 0x5c000000, 0x1c01f000, - 0x4c000000, 0x59a80069, 0x4803c857, 0x90000581, - 0x5c000000, 0x1c01f000, 0x4c000000, 0x59a80069, + 0x4c000000, 0x59a8006c, 0x4803c857, 0x90000581, + 0x5c000000, 0x1c01f000, 0x4c000000, 0x59a8006c, 0x4803c857, 0x90000583, 0x5c000000, 0x1c01f000, - 0x4c000000, 0x59a80069, 0x4803c857, 0x90000584, - 0x5c000000, 0x1c01f000, 0x4c000000, 0x59a80069, + 0x4c000000, 0x59a8006c, 0x4803c857, 0x90000584, + 0x5c000000, 0x1c01f000, 0x4c000000, 0x59a8006c, 0x90000582, 0x5c000000, 0x1c01f000, 0x4c000000, - 0x4c040000, 0x4c080000, 0x4c380000, 0x59a8006c, - 0x90000c87, 0x05f61a55, 0x0c01f806, 0x5c007000, + 0x4c040000, 0x4c080000, 0x4c380000, 0x59a8006f, + 0x90000c87, 0x05f61a10, 0x0c01f806, 0x5c007000, 0x5c001000, 0x5c000800, 0x5c000000, 0x1c01f000, - 0x00101b93, 0x00101ba0, 0x00101bad, 0x00101bae, - 0x00101bcc, 0x00101bcd, 0x00101bce, 0x4803c856, - 0x6403506e, 0x600c0000, 0x0501f9af, 0x600c0000, - 0x0501f97d, 0x0501fa06, 0x4803c856, 0x641b506c, - 0x60740800, 0x42001000, 0x00101bcf, 0x052df449, - 0x497b5071, 0x64db5066, 0x64ab5065, 0x4803c856, - 0x6407506e, 0x600c0000, 0x0501f96f, 0x4803c856, - 0x641b506c, 0x60740800, 0x42001000, 0x00101bcf, - 0x052df43c, 0x05f5fa2d, 0x64db5066, 0x4803c856, - 0x640f506e, 0x60000800, 0x0501f9ff, 0x90040d1c, + 0x00101c13, 0x00101c20, 0x00101c2d, 0x00101c2e, + 0x00101c4c, 0x00101c4d, 0x00101c4e, 0x4803c856, + 0x64035071, 0x600c0000, 0x0501f9af, 0x600c0000, + 0x0501f97d, 0x0501fa06, 0x4803c856, 0x641b506f, + 0x60740800, 0x42001000, 0x00101c4f, 0x0531f02d, + 0x497b5074, 0x64db5069, 0x64ab5068, 0x4803c856, + 0x64075071, 0x600c0000, 0x0501f96f, 0x4803c856, + 0x641b506f, 0x60740800, 0x42001000, 0x00101c4f, + 0x0531f020, 0x05f5f9e8, 0x64db5069, 0x4803c856, + 0x640f5071, 0x60000800, 0x0501f9ff, 0x90040d1c, 0x9004059c, 0x05000008, 0x90040598, 0x05000008, 0x90040594, 0x05000008, 0x90040590, 0x05000008, - 0x05f5fa1e, 0x60040000, 0x0501f006, 0x60000000, + 0x05f5f9d9, 0x60040000, 0x0501f006, 0x60000000, 0x0501f004, 0x60080000, 0x0501f002, 0x600c0000, - 0x0501f951, 0x497b5072, 0x4803c856, 0x641b506c, - 0x60740800, 0x42001000, 0x00101bcf, 0x052df41d, - 0x05f5fa0e, 0x05f5fa0d, 0x1c01f000, 0x4c000000, - 0x4c040000, 0x4c080000, 0x4c380000, 0x59a8006e, - 0x90000c87, 0x05f61a05, 0x0c01f806, 0x5c007000, + 0x0501f951, 0x497b5075, 0x4803c856, 0x641b506f, + 0x60740800, 0x42001000, 0x00101c4f, 0x0531f001, + 0x05f5f9c9, 0x05f5f9c8, 0x1c01f000, 0x4c000000, + 0x4c040000, 0x4c080000, 0x4c380000, 0x59a80071, + 0x90000c87, 0x05f619c0, 0x0c01f806, 0x5c007000, 0x5c001000, 0x5c000800, 0x5c000000, 0x1c01f000, - 0x00101be3, 0x00101bff, 0x00101c50, 0x00101c65, - 0x00101c79, 0x00101c82, 0x00101c83, 0x0501f990, - 0x05020018, 0x59a81074, 0x60000800, 0x0501f9ca, + 0x00101c63, 0x00101c7f, 0x00101cd0, 0x00101ce5, + 0x00101cf9, 0x00101d02, 0x00101d03, 0x0501f990, + 0x05020018, 0x59a81077, 0x60000800, 0x0501f9ca, 0x90040d1c, 0x9004059c, 0x05000008, 0x90040598, 0x05000008, 0x90040594, 0x05000008, 0x90040590, - 0x05000008, 0x05f5f9e9, 0x84081540, 0x0501f006, + 0x05000008, 0x05f5f9a4, 0x84081540, 0x0501f006, 0x84081542, 0x0501f004, 0x84081544, 0x0501f002, - 0x84081546, 0x480b5074, 0x6407506c, 0x0501f003, + 0x84081546, 0x480b5077, 0x6407506f, 0x0501f003, 0x0501f8be, 0x05fdff9d, 0x1c01f000, 0x0501f885, 0x0500004f, 0x0501f972, 0x05020029, 0x60000800, 0x0501f9ad, 0x59c41001, 0x82081500, 0x00018000, 0x90040d1c, 0x90040590, 0x05000042, 0x90040594, 0x05000006, 0x90040598, 0x0500000a, 0x9004059c, - 0x0500000a, 0x05f5f9c9, 0x90080580, 0x05000039, + 0x0500000a, 0x05f5f984, 0x90080580, 0x05000039, 0x82080580, 0x00008000, 0x05000036, 0x0501f003, 0x90080580, 0x05000033, 0x60000800, 0x0501f996, - 0x59a80074, 0x90040d1c, 0x90041594, 0x05000006, + 0x59a80077, 0x90040d1c, 0x90041594, 0x05000006, 0x90041598, 0x05000006, 0x9004159c, 0x05000006, - 0x05f609b6, 0x84000544, 0x0501f004, 0x84000542, - 0x0501f002, 0x84000540, 0x48035074, 0x59a80071, - 0x80000000, 0x48035071, 0x90000585, 0x05000003, - 0x0501f859, 0x0501f01d, 0x497b5071, 0x59c40801, + 0x05f60971, 0x84000544, 0x0501f004, 0x84000542, + 0x0501f002, 0x84000540, 0x48035077, 0x59a80074, + 0x80000000, 0x48035074, 0x90000585, 0x05000003, + 0x0501f859, 0x0501f01d, 0x497b5074, 0x59c40801, 0x82040d00, 0x00018000, 0x90040580, 0x0500000b, 0x82040580, 0x00008000, 0x0500000a, 0x82040580, 0x00010000, 0x05000009, 0x82040580, 0x00018000, - 0x05000008, 0x05f5f999, 0x60040000, 0x0501f006, + 0x05000008, 0x05f5f954, 0x60040000, 0x0501f006, 0x60000000, 0x0501f004, 0x60080000, 0x0501f002, - 0x600c0000, 0x0501f8fc, 0x640b506e, 0x0501f003, - 0x640f506c, 0x0501f002, 0x05fdff59, 0x1c01f000, - 0x0501f834, 0x05000013, 0x59a80065, 0x80000040, - 0x48035065, 0x0501f91e, 0x05020004, 0x640f506c, - 0x497b506d, 0x0501f00b, 0x59a80065, 0x80000540, + 0x600c0000, 0x0501f8fc, 0x640b5071, 0x0501f003, + 0x640f506f, 0x0501f002, 0x05fdff59, 0x1c01f000, + 0x0501f834, 0x05000013, 0x59a80068, 0x80000040, + 0x48035068, 0x0501f91e, 0x05020004, 0x640f506f, + 0x497b5070, 0x0501f00b, 0x59a80068, 0x80000540, 0x05020003, 0x0501f891, 0x0501f002, 0x0501f841, - 0x0501f829, 0x497b5071, 0x6407506e, 0x05fdff44, + 0x0501f829, 0x497b5074, 0x64075071, 0x05fdff44, 0x1c01f000, 0x0501f81f, 0x05000012, 0x0501f90c, - 0x0502000d, 0x59a80072, 0x80000000, 0x48035072, - 0x90000587, 0x0502000a, 0x642b5068, 0x497b5075, - 0x59a80074, 0x8400055e, 0x48035074, 0x4803c857, - 0x0501f004, 0x0501f814, 0x6413506e, 0x05fdff4f, + 0x0502000d, 0x59a80075, 0x80000000, 0x48035075, + 0x90000587, 0x0502000a, 0x642b506b, 0x497b5078, + 0x59a80077, 0x8400055e, 0x48035077, 0x4803c857, + 0x0501f004, 0x0501f814, 0x64135071, 0x05fdff4f, 0x1c01f000, 0x0501f80b, 0x05000007, 0x0501f8f8, 0x05020003, 0x05fdff32, 0x0501f003, 0x0501f80a, - 0x05fdff46, 0x1c01f000, 0x05f5f958, 0x05f5f957, - 0x59a80066, 0x80000040, 0x48035066, 0x05000885, + 0x05fdff46, 0x1c01f000, 0x05f5f913, 0x05f5f912, + 0x59a80069, 0x80000040, 0x48035069, 0x05000885, 0x1c01f000, 0x4c040000, 0x60000800, 0x0501f926, 0x90040d1c, 0x9004059c, 0x05000008, 0x90040598, 0x0500000a, 0x90040594, 0x0500000a, 0x90040590, - 0x05000004, 0x05f5f945, 0x600c0000, 0x0501f006, + 0x05000004, 0x05f5f900, 0x600c0000, 0x0501f006, 0x60080000, 0x0501f004, 0x60040000, 0x0501f002, 0x60000000, 0x0501f8a8, 0x5c000800, 0x1c01f000, 0x4c040000, 0x59c40801, 0x82040d00, 0x00018000, 0x90040580, 0x0500000b, 0x82040580, 0x00008000, 0x0500000c, 0x82040580, 0x00010000, 0x0500000b, - 0x82040580, 0x00018000, 0x05000004, 0x05f5f92b, + 0x82040580, 0x00018000, 0x05000004, 0x05f5f8e6, 0x600c0000, 0x0501f006, 0x60080000, 0x0501f004, 0x60040000, 0x0501f002, 0x60000000, 0x0501f85e, - 0x5c000800, 0x1c01f000, 0x4c040000, 0x59a80071, - 0x80000000, 0x48035071, 0x90000585, 0x05020019, - 0x497b5071, 0x59c40801, 0x82040d00, 0x00018000, + 0x5c000800, 0x1c01f000, 0x4c040000, 0x59a80074, + 0x80000000, 0x48035074, 0x90000585, 0x05020019, + 0x497b5074, 0x59c40801, 0x82040d00, 0x00018000, 0x90040580, 0x0500000b, 0x82040580, 0x00008000, 0x0500000c, 0x82040580, 0x00010000, 0x0500000b, - 0x82040580, 0x00018000, 0x05000004, 0x05f5f90b, + 0x82040580, 0x00018000, 0x05000004, 0x05f5f8c6, 0x600c0000, 0x0501f006, 0x60080000, 0x0501f004, 0x60040000, 0x0501f002, 0x60000000, 0x0501f83e, 0x60000800, 0x0501f8d8, 0x90040d1c, 0x9004059c, 0x05000008, 0x90040598, 0x0500000a, 0x90040594, - 0x0500000a, 0x90040590, 0x05000004, 0x05f5f8f7, + 0x0500000a, 0x90040590, 0x05000004, 0x05f5f8b2, 0x600c0000, 0x0501f006, 0x60080000, 0x0501f004, 0x60040000, 0x0501f002, 0x60000000, 0x0501f85a, - 0x5c000800, 0x1c01f000, 0x4c200000, 0x59a80074, - 0x82000500, 0x00007fff, 0x05f408e8, 0x59a84073, - 0x80204102, 0x05f418e5, 0x48235073, 0x80204500, + 0x5c000800, 0x1c01f000, 0x4c200000, 0x59a80077, + 0x82000500, 0x00007fff, 0x05f408a3, 0x59a84076, + 0x80204102, 0x05f418a0, 0x48235076, 0x80204500, 0x05fc07fb, 0x8c000506, 0x05020008, 0x8c000504, 0x05020008, 0x8c000502, 0x05020008, 0x8c000500, - 0x05020008, 0x05f5f8d9, 0x600c0000, 0x0501f006, + 0x05020008, 0x05f5f894, 0x600c0000, 0x0501f006, 0x60080000, 0x0501f004, 0x60000000, 0x0501f002, 0x60040000, 0x0501f80c, 0x5c004000, 0x1c01f000, - 0x05011000, 0x4a03c840, 0x0010dc6c, 0x6427c842, - 0x40000000, 0x05fd17ff, 0x64235073, 0x6403506a, - 0x1c01f000, 0x4c000000, 0x59a800a7, 0x8c000500, + 0x05011000, 0x4a03c840, 0x00111bef, 0x6427c842, + 0x40000000, 0x05fd17ff, 0x64235076, 0x6403506d, + 0x1c01f000, 0x4c000000, 0x59a800aa, 0x8c000500, 0x05020002, 0x0501f960, 0x5c000000, 0x0501fa6b, 0x60080800, 0x0501f894, 0x82041500, 0xffffffe3, 0x59c41801, 0x820c1d00, 0xfffe7fff, 0x800001c0, @@ -1904,8 +1936,8 @@ static const uint32_t isp_2500_risc_code[] = { 0x820c1d40, 0x00008000, 0x840c1d32, 0x0501f00d, 0x90000d82, 0x05020006, 0x90080554, 0x820c1d40, 0x00010000, 0x840c1d32, 0x0501f006, 0x90000d83, - 0x05f608a2, 0x90080550, 0x820c1d40, 0x02018000, - 0x60080800, 0x0501f879, 0x480f8801, 0x59a800a7, + 0x05f6085d, 0x90080550, 0x820c1d40, 0x02018000, + 0x60080800, 0x0501f879, 0x480f8801, 0x59a800aa, 0x8c000500, 0x05020002, 0x0501f13c, 0x1c01f000, 0x1c01f000, 0x4c000000, 0x0501f92e, 0x5c000000, 0x0501fa3e, 0x60000800, 0x0501f867, 0x82041500, @@ -1913,7 +1945,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x90000d81, 0x05020007, 0x9008055c, 0x840c1d30, 0x0501f00d, 0x90080558, 0x840c1d30, 0x0501f00a, 0x90000d82, 0x05020004, 0x90080554, 0x840c1d30, - 0x0501f005, 0x90000d83, 0x05f6087c, 0x90080550, + 0x0501f005, 0x90000d83, 0x05f60837, 0x90080550, 0x840c1d70, 0x480f8801, 0x60000800, 0x0501f853, 0x0501fa1c, 0x0500000d, 0x4a03c014, 0x00200020, 0x60000800, 0x0501f848, 0x90040d1c, 0x90040590, @@ -1944,18 +1976,18 @@ static const uint32_t isp_2500_risc_code[] = { 0x480388a3, 0x480788a3, 0x1c01f000, 0x59c400a3, 0x84000556, 0x480388a3, 0x84000516, 0x480388a3, 0x1c01f000, 0x485fc857, 0x4863c857, 0x4c640000, - 0x4d3c0000, 0x4d400000, 0x0535fa7b, 0x48635009, + 0x4d3c0000, 0x4d400000, 0x0535feb9, 0x48635009, 0x40601800, 0x60002000, 0x0501f8b5, 0x42000000, - 0x0010e3b1, 0x0559f9fb, 0x82600500, 0x0000ff00, + 0x00112352, 0x055df8f6, 0x82600500, 0x0000ff00, 0x82000580, 0x0000f700, 0x05020004, 0x42000000, - 0x0010e399, 0x0559f9f3, 0x0559fb02, 0x05020084, + 0x0011233a, 0x055df8ee, 0x055df9fd, 0x05020084, 0x82600d00, 0x0000ff00, 0x61fe41ff, 0x800409c0, 0x0500001b, 0x82041580, 0x0000f700, 0x05000013, 0x82041580, 0x0000f800, 0x05000010, 0x82041580, 0x0000ff00, 0x6000c800, 0x05000029, 0x840439c0, - 0x0505f82c, 0x05020019, 0x83200400, 0x0010d17b, + 0x0505f848, 0x05020019, 0x83200400, 0x0010d8f9, 0x50024800, 0x59240200, 0x8c000500, 0x05000013, - 0x6004c800, 0x0501f01e, 0x42024800, 0x0010e512, + 0x6004c800, 0x0501f01e, 0x42024800, 0x001124b6, 0x59240200, 0x8c000502, 0x0500000c, 0x59c410a3, 0x82081500, 0x00008000, 0x05000008, 0x59c410a7, 0x82081500, 0x0000ff00, 0x82081580, 0x0000ff00, @@ -1965,23 +1997,23 @@ static const uint32_t isp_2500_risc_code[] = { 0x60128000, 0x60227800, 0x0501f004, 0x850e1d40, 0x60128000, 0x417a7800, 0x59a80005, 0x8c000502, 0x05020004, 0x8d0c050a, 0x05020045, 0x850e1d4a, - 0x42000000, 0x0010e398, 0x0559f9ae, 0x59a81809, - 0x604c1100, 0x0515f9ab, 0x83200580, 0x0000ffff, + 0x42000000, 0x00112339, 0x055df8a9, 0x59a81809, + 0x604c1100, 0x0515fac8, 0x83200580, 0x0000ffff, 0x05000018, 0x59240400, 0x8c000508, 0x05000009, - 0x417a7800, 0x4d300000, 0x417a6000, 0x0505f82a, + 0x417a7800, 0x4d300000, 0x417a6000, 0x0505f850, 0x5c026000, 0x59240400, 0x8c00050a, 0x05020030, 0x4d400000, 0x82600500, 0x000000ff, 0x61fe89ff, - 0x40643000, 0x603a8000, 0x0555f960, 0x60040800, - 0x60001002, 0x0531f8fb, 0x5c028000, 0x0501f024, + 0x40643000, 0x603a8000, 0x0559f827, 0x60040800, + 0x60001002, 0x0531fd2f, 0x5c028000, 0x0501f024, 0x8d0c0520, 0x05000018, 0x4c580000, 0x42024800, - 0x0010e512, 0x0559faa3, 0x4d400000, 0x59240200, + 0x001124b6, 0x055df99e, 0x4d400000, 0x59240200, 0x8c000500, 0x05000004, 0x60040800, 0x60001002, - 0x0531f8ec, 0x91264c0d, 0x8058b040, 0x05fe07f8, - 0x603a8000, 0x61fe89ff, 0x40643000, 0x0555f947, + 0x0531fd20, 0x91264c0d, 0x8058b040, 0x05fe07f8, + 0x603a8000, 0x61fe89ff, 0x40643000, 0x0559f80e, 0x5c028000, 0x5c00b000, 0x599c0817, 0x8c04050a, - 0x0502000b, 0x493fc857, 0x4943c857, 0x0501fc6b, + 0x0502000b, 0x493fc857, 0x4943c857, 0x0501fc7e, 0x0501f007, 0x8d0c0520, 0x05000005, 0x603e8000, - 0x61fe89ff, 0x60003000, 0x0555f93b, 0x497b8880, + 0x61fe89ff, 0x60003000, 0x0559f802, 0x497b8880, 0x5c028000, 0x5c027800, 0x5c00c800, 0x1c01f000, 0x60000800, 0x05fdff3c, 0x90040542, 0x60000800, 0x05fdf73e, 0x60080800, 0x05fdff37, 0x90040542, @@ -1993,20 +2025,20 @@ static const uint32_t isp_2500_risc_code[] = { 0x80040d80, 0x05fe07fb, 0x1c01f000, 0x59a80005, 0x8c000500, 0x05000008, 0x59a80008, 0x8c000500, 0x05020005, 0x84000540, 0x48035008, 0x60581100, - 0x0515f940, 0x1c01f000, 0x1c01f000, 0x59c40801, + 0x0515fa5d, 0x1c01f000, 0x1c01f000, 0x59c40801, 0x82040d00, 0x00018000, 0x82040d80, 0x00018000, 0x05000002, 0x84081518, 0x480b88a3, 0x1c01f000, 0x42000800, 0x7ff4818e, 0x59e00002, 0x8c00051e, 0x05020003, 0x42000800, 0x7ff4808e, 0x58041800, - 0x480f5084, 0x8c0c0500, 0x05020007, 0x8c0c0502, + 0x480f5087, 0x8c0c0500, 0x05020007, 0x8c0c0502, 0x05000005, 0x58044001, 0x58042002, 0x58041003, 0x0501f007, 0x42004000, 0x0003c014, 0x42002000, - 0x0003c014, 0x42001000, 0x0002e014, 0x480b507e, - 0x4813507f, 0x48235080, 0x8c0c0500, 0x05020007, + 0x0003c014, 0x42001000, 0x0002e014, 0x480b5081, + 0x48135082, 0x48235083, 0x8c0c0500, 0x05020007, 0x8c0c0504, 0x05000005, 0x58044004, 0x58042005, 0x58041006, 0x0501f004, 0x60c8400d, 0x60c8200d, - 0x60c8100d, 0x480b5081, 0x48135082, 0x48235083, - 0x1c01f000, 0x59a81081, 0x59a82082, 0x59a84083, + 0x60c8100d, 0x480b5084, 0x48135085, 0x48235086, + 0x1c01f000, 0x59a81084, 0x59a82085, 0x59a84086, 0x60380840, 0x05fdfedc, 0x82040d00, 0xffffffc0, 0x82200500, 0x003f0000, 0x80000120, 0x80040540, 0x60380840, 0x05fdfed9, 0x60380848, 0x05fdfed2, @@ -2023,7 +2055,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x0000fc00, 0x80000114, 0x60380920, 0x05fdfeab, 0x82080500, 0x000003e0, 0x8000010a, 0x603808e8, 0x05fdfea6, 0x9008051f, 0x60380900, 0x05fdfea3, - 0x1c01f000, 0x59a8107e, 0x59a8207f, 0x59a84080, + 0x1c01f000, 0x59a81081, 0x59a82082, 0x59a84083, 0x9020051f, 0x800000c2, 0x84000540, 0x60480800, 0x05fdfe9a, 0x82200500, 0x000001e0, 0x80000908, 0x84040d40, 0x82200500, 0x00000600, 0x80000106, @@ -2044,32 +2076,32 @@ static const uint32_t isp_2500_risc_code[] = { 0x82080500, 0x00001800, 0x80000916, 0x82080500, 0x0003e000, 0x80000114, 0x84000544, 0x80040540, 0x60480858, 0x05fdfe51, 0x1c01f000, 0x4c000000, - 0x0515fbe9, 0x05000007, 0x0515f99d, 0x05020003, + 0x0515fd5d, 0x05000007, 0x0515fac3, 0x05020003, 0x90000541, 0x0501f003, 0x59e00013, 0x8c00050e, 0x5c000000, 0x1c01f000, 0x4c140000, 0x4a03c013, 0x03800300, 0x4a03c014, 0x03800380, 0x60800801, - 0x60281000, 0x0509faf3, 0x05000002, 0x8c14050c, + 0x60281000, 0x0509fb25, 0x05000002, 0x8c14050c, 0x4a03c014, 0x03800000, 0x5c002800, 0x1c01f000, - 0x4c000000, 0x59a80084, 0x90000510, 0x90000590, + 0x4c000000, 0x59a80087, 0x90000510, 0x90000590, 0x5c000000, 0x1c01f000, 0x4c5c0000, 0x4000b800, - 0x59a80076, 0x82000d80, 0xaabbccdd, 0x0500000f, - 0x90000c85, 0x05f21e4d, 0x4c000000, 0x0515f95b, + 0x59a80079, 0x82000d80, 0xaabbccdd, 0x0500000f, + 0x90000c85, 0x05f21e08, 0x4c000000, 0x0515fa81, 0x5c000000, 0x05020003, 0x0c01f81a, 0x0501f016, - 0x4c000000, 0x0515f96c, 0x5c000000, 0x05fc07fb, + 0x4c000000, 0x0515fa92, 0x5c000000, 0x05fc07fb, 0x0c01f819, 0x0501f010, 0x05fdffe6, 0x0500000e, 0x8d0c051a, 0x0500000c, 0x05fdffc9, 0x0502000a, 0x05fdffd2, 0x05020005, 0x905c0d83, 0x05020006, 0x6008b800, 0x0501f004, 0x905c0d81, 0x05020002, 0x600cb800, 0x405c0000, 0x5c00b800, 0x1c01f000, - 0x00101fb6, 0x00101fb7, 0x00101fb8, 0x00101fb9, - 0x00101fbd, 0x00101fbe, 0x00101fc0, 0x00101fd0, - 0x00101fde, 0x00101fee, 0x1c01f000, 0x1c01f000, + 0x00102036, 0x00102037, 0x00102038, 0x00102039, + 0x0010203d, 0x0010203e, 0x00102040, 0x00102050, + 0x0010205e, 0x0010206e, 0x1c01f000, 0x1c01f000, 0x1c01f000, 0x905c0d83, 0x05020002, 0x6008b800, 0x1c01f000, 0x1c01f000, 0x6004b800, 0x1c01f000, 0x05fdffc0, 0x05000007, 0x05fdffa5, 0x05020005, 0x05fdffae, 0x05000003, 0x6000b800, 0x0501f008, 0x905c0d83, 0x05020003, 0x6000b800, 0x0501f004, - 0x905c0d82, 0x05020002, 0x05f1fe0c, 0x1c01f000, + 0x905c0d82, 0x05020002, 0x05f1fdc7, 0x1c01f000, 0x05fdffb0, 0x0500000c, 0x05fdff95, 0x0502000a, 0x05fdff9e, 0x05020005, 0x905c0d83, 0x05020006, 0x6008b800, 0x0501f004, 0x905c0d81, 0x05020002, @@ -2081,31 +2113,31 @@ static const uint32_t isp_2500_risc_code[] = { 0x05fdff77, 0x05020004, 0x05fdff80, 0x05020002, 0x0501f004, 0x905c0d81, 0x05020002, 0x600cb800, 0x1c01f000, 0x4803c856, 0x4c5c0000, 0x4c600000, - 0x4c640000, 0x4c580000, 0x497b5086, 0x4200c000, - 0x7ff52000, 0x0515f906, 0x05020031, 0x4803c856, - 0x0515f91b, 0x05020029, 0x4803c856, 0x4a03c014, + 0x4c640000, 0x4c580000, 0x497b5089, 0x4200c000, + 0x7ff52000, 0x0515fa2c, 0x05020031, 0x4803c856, + 0x0515fa41, 0x05020029, 0x4803c856, 0x4a03c014, 0x07030701, 0x0501f965, 0x4a03c013, 0x07010701, 0x0501f9ef, 0x0501fa1f, 0x0501f981, 0x4201d000, - 0x000f4240, 0x0529fff4, 0x0501f95c, 0x0501f9e8, + 0x000f4240, 0x052dfbdf, 0x0501f95c, 0x0501f9e8, 0x0501fa23, 0x61800801, 0x600c1000, 0x60801801, - 0x0509fa1e, 0x05f00dc1, 0x61800801, 0x60001000, - 0x0509fa50, 0x05f00dbd, 0x4817c857, 0x90141d50, - 0x61800801, 0x60041000, 0x0509fa14, 0x05f00db7, - 0x0501f9df, 0x6140b801, 0x0509fa37, 0x05f00db3, + 0x0509fa4e, 0x05f00d7c, 0x61800801, 0x60001000, + 0x0509fa82, 0x05f00d78, 0x4817c857, 0x90141d50, + 0x61800801, 0x60041000, 0x0509fa44, 0x05f00d72, + 0x0501f9df, 0x6140b801, 0x0509fa68, 0x05f00d6e, 0x4867c857, 0x4c640000, 0x0501f96b, 0x0501f964, 0x5c00c800, 0x0501f01c, 0x4a03c014, 0x07e30000, - 0x59e0c813, 0x0501f8be, 0x0501f017, 0x59a80092, + 0x59e0c813, 0x0501f8be, 0x0501f017, 0x59a80095, 0x82000d80, 0x3261103c, 0x05000004, 0x82000d80, 0x338e103c, 0x050200b1, 0x4803c856, 0x42000800, 0x7ff481e6, 0x59e06802, 0x8c34051e, 0x05020003, 0x42000800, 0x7ff480e6, 0x50040000, 0x4803c857, - 0x4803508d, 0x8c00051e, 0x050000a4, 0x8200cd00, - 0x000000ff, 0x4867c857, 0x48675087, 0x50600800, - 0x48075088, 0x4807c857, 0x82040d80, 0x53434651, - 0x05020098, 0x8060c000, 0x50600800, 0x48075089, - 0x8060c000, 0x50600800, 0x4807508a, 0x8060c000, - 0x50600800, 0x4807508b, 0x8060c000, 0x50600800, - 0x82040d00, 0x0000ffff, 0x4807508c, 0x4200c000, + 0x48035090, 0x8c00051e, 0x050000a4, 0x8200cd00, + 0x000000ff, 0x4867c857, 0x4867508a, 0x50600800, + 0x4807508b, 0x4807c857, 0x82040d80, 0x53434651, + 0x05020098, 0x8060c000, 0x50600800, 0x4807508c, + 0x8060c000, 0x50600800, 0x4807508d, 0x8060c000, + 0x50600800, 0x4807508e, 0x8060c000, 0x50600800, + 0x82040d00, 0x0000ffff, 0x4807508f, 0x4200c000, 0x7ff52002, 0x5060b800, 0x825cbd00, 0xffff0000, 0x805cb920, 0x805cb800, 0x05001082, 0x8c5c051e, 0x05020080, 0x59e06802, 0x8c34051e, 0x0502006a, @@ -2115,23 +2147,23 @@ static const uint32_t isp_2500_risc_code[] = { 0xffff0000, 0x80000120, 0x82100d00, 0x0000ffff, 0x4803c857, 0x4807c857, 0x4c180000, 0x05fdfd37, 0x5c003000, 0x80183040, 0x05fe07f3, 0x41780800, - 0x40641000, 0x60100000, 0x052dff08, 0x59e06802, + 0x40641000, 0x60100000, 0x0531fb41, 0x59e06802, 0x8c34051e, 0x05020057, 0x4200c000, 0x7ff52005, 0x8008c418, 0x5060c800, 0x800409c0, 0x0500000a, 0x90041581, 0x05020003, 0x8064c910, 0x0501f006, 0x90041582, 0x05020003, 0x8064c920, 0x0501f002, 0x8064c930, 0x8264cd00, 0x000000ff, 0x4867c857, - 0x4867508e, 0x42001000, 0x7ff52002, 0x50080000, + 0x48675091, 0x42001000, 0x7ff52002, 0x50080000, 0x82000500, 0x0000ffff, 0x4803c857, 0x8c00051e, 0x05020044, 0x80640480, 0x05021042, 0x40640800, - 0x405c1000, 0x052dfec9, 0x4803c857, 0x800001c0, + 0x405c1000, 0x0531fb02, 0x4803c857, 0x800001c0, 0x0502003c, 0x59e06802, 0x8c34051e, 0x05020034, 0x4200c000, 0x7ff52045, 0x805cc418, 0x8004c418, 0x05001034, 0x05000033, 0x4863c857, 0x50600000, - 0x82000500, 0x0000ffff, 0x4803508f, 0x8c00051e, + 0x82000500, 0x0000ffff, 0x48035092, 0x8c00051e, 0x0502002c, 0x4803c857, 0x80000c97, 0x05021029, - 0x40601000, 0x80081000, 0x50080800, 0x48075090, - 0x80081000, 0x50080800, 0x48075091, 0x4000b800, + 0x40601000, 0x80081000, 0x50080800, 0x48075093, + 0x80081000, 0x50080800, 0x48075094, 0x4000b800, 0x8060c000, 0x50602000, 0x82100500, 0xffff0000, 0x80000120, 0x82100d00, 0x0000ffff, 0x4803c857, 0x4807c857, 0x05fdfce5, 0x805cb840, 0x05fe07f5, @@ -2140,7 +2172,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x8258c400, 0x7ff52000, 0xb060c400, 0x05fdf790, 0x8258c400, 0x7ff52000, 0x05fdf7aa, 0x8258c400, 0x7ff52000, 0xb060c400, 0x805cc418, 0x05fdf7cc, - 0x4a035086, 0xdeaddead, 0x5c00b000, 0x5c00c800, + 0x4a035089, 0xdeaddead, 0x5c00b000, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4867c857, 0x90640d20, 0x8004690a, 0x82640d00, 0x00000400, 0x80040912, 0x80046d4d, 0x90640d01, 0x800408c4, @@ -2149,307 +2181,314 @@ static const uint32_t isp_2500_risc_code[] = { 0x82640d00, 0x00000080, 0x80040904, 0x80046d4d, 0xb0640d00, 0x80046d4d, 0x82640d00, 0x00000200, 0x80040904, 0x80046d4d, 0x8234cd00, 0x000000ff, - 0x1c01f000, 0x0515f809, 0x0502000d, 0x4803c856, + 0x1c01f000, 0x0515f92f, 0x0502000d, 0x4803c856, 0x4a03c014, 0x18001800, 0x4a03c013, 0x18000800, 0x05fdfc97, 0x4a03c013, 0x18000000, 0x61a1d007, - 0x0529feed, 0x4a03c013, 0x18000800, 0x1c01f000, - 0x0511fffa, 0x0502000d, 0x4803c856, 0x4a03c014, + 0x052dfad8, 0x4a03c013, 0x18000800, 0x1c01f000, + 0x0515f920, 0x0502000d, 0x4803c856, 0x4a03c014, 0x18001800, 0x4a03c013, 0x18001800, 0x05fdfc88, - 0x4a03c013, 0x18001000, 0x61a1d007, 0x0529fede, - 0x4a03c013, 0x18001800, 0x1c01f000, 0x0511ffeb, + 0x4a03c013, 0x18001000, 0x61a1d007, 0x052dfac9, + 0x4a03c013, 0x18001800, 0x1c01f000, 0x0515f911, 0x0502000e, 0x0501f831, 0x60041800, 0x42001000, - 0x0010dc87, 0x60900800, 0x60002180, 0x50080000, - 0x82000500, 0x000000ff, 0x4803c857, 0x0515f8cb, - 0x05f00ca2, 0x0501f82d, 0x1c01f000, 0x0501f823, + 0x00111c0a, 0x60900800, 0x60002180, 0x50080000, + 0x82000500, 0x000000ff, 0x4803c857, 0x0515f9f1, + 0x05f00c5d, 0x0501f82d, 0x1c01f000, 0x0501f823, 0x59e00802, 0x8c04051e, 0x05000004, 0x4807c856, 0x60a00800, 0x0501f002, 0x609c0800, 0x4807c857, - 0x60041800, 0x42001000, 0x0010dc85, 0x60002180, - 0x64041000, 0x0515f8b9, 0x05f00c90, 0x0501f81b, - 0x1c01f000, 0x0511ffc9, 0x0502000f, 0x59c40001, + 0x60041800, 0x42001000, 0x00111c08, 0x60002180, + 0x64041000, 0x0515f9df, 0x05f00c4b, 0x0501f81b, + 0x1c01f000, 0x0515f8ef, 0x0502000f, 0x59c40001, 0x82000500, 0x00018000, 0x82000d80, 0x00008000, 0x05000006, 0x82000d80, 0x00010000, 0x05000003, - 0x497b50a6, 0x0501f004, 0x59a800a6, 0x90000c82, + 0x497b50a9, 0x0501f004, 0x59a800a9, 0x90000c82, 0x05fc17fc, 0x1c01f000, 0x42000800, 0x00895440, - 0x0555ff9f, 0x05020004, 0x80040840, 0x05fe07fd, - 0x0555ffab, 0x1c01f000, 0x64030000, 0x1c01f000, + 0x0559fe9a, 0x05020004, 0x80040840, 0x05fe07fd, + 0x0559fea6, 0x1c01f000, 0x64030000, 0x1c01f000, 0x4c5c0000, 0x59e0b802, 0x8c5c051e, 0x05000001, 0x5c00b800, 0x1c01f000, 0x4c5c0000, 0x4c600000, 0x6110b813, 0x4a03c016, 0x00010001, 0x59e00016, 0x8c000500, 0x05000010, 0x8c00051e, 0x05020002, 0x0501f014, 0x4a03c016, 0x00010000, 0x6140c00f, - 0x61a1d007, 0x0529fe88, 0x59e00016, 0x8c00051e, + 0x61a1d007, 0x052dfa73, 0x59e00016, 0x8c00051e, 0x05fc07f1, 0x8060c040, 0x05fe07fa, 0x4a03c016, - 0x80000000, 0x61a1d007, 0x0529fe7f, 0x805cb840, + 0x80000000, 0x61a1d007, 0x052dfa6a, 0x805cb840, 0x05fe07e9, 0x4803c856, 0x4a03c016, 0x80008000, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4a03c013, 0x04010401, 0x4a03c016, 0x80010000, 0x05fdfc18, 0x1c01f000, 0x60800801, 0x61d0100d, 0x8408157e, - 0x0509f8d4, 0x05f00c41, 0x48175079, 0x4817c857, - 0x60800801, 0x61c0100d, 0x8408157e, 0x0509f8cd, - 0x05f00c3a, 0x4817507a, 0x4817c857, 0x60800801, - 0x61e0100d, 0x8408157e, 0x0509f8c6, 0x05f00c33, - 0x4817507b, 0x4817c857, 0x641f507c, 0x617c1800, + 0x0509f906, 0x05f00bfc, 0x4817507c, 0x4817c857, + 0x60800801, 0x61c0100d, 0x8408157e, 0x0509f8ff, + 0x05f00bf5, 0x4817507d, 0x4817c857, 0x60800801, + 0x61e0100d, 0x8408157e, 0x0509f8f8, 0x05f00bee, + 0x4817507e, 0x4817c857, 0x641f507f, 0x617c1800, 0x0501f833, 0x0501f84e, 0x60600801, 0x60001000, - 0x0509f8bc, 0x05020004, 0x0501f859, 0x60600801, - 0x05f1fc1f, 0x0501f864, 0x4817c857, 0x59a8207c, - 0x59a80079, 0x80140480, 0x0502101c, 0x59a8007a, - 0x80140480, 0x05021012, 0x59a8007b, 0x80140480, + 0x0509f8ee, 0x05020004, 0x0501f859, 0x60600801, + 0x05f1fbda, 0x0501f864, 0x4817c857, 0x59a8207f, + 0x59a8007c, 0x80140480, 0x0502101c, 0x59a8007d, + 0x80140480, 0x05021012, 0x59a8007e, 0x80140480, 0x05021008, 0x601c1800, 0x90100583, 0x05020014, - 0x90142c05, 0x59a8007b, 0x80140480, 0x05001010, + 0x90142c05, 0x59a8007e, 0x80140480, 0x05001010, 0x600c1800, 0x90100582, 0x0502000d, 0x90142c05, - 0x59a8007a, 0x80140480, 0x05001009, 0x60081800, - 0x90100580, 0x05020006, 0x90142c05, 0x59a80079, + 0x59a8007d, 0x80140480, 0x05001009, 0x60081800, + 0x90100580, 0x05020006, 0x90142c05, 0x59a8007c, 0x80140480, 0x05001002, 0x60001800, 0x80102583, - 0x480f507c, 0x480fc857, 0x05000003, 0xb00c1d58, - 0x0501f803, 0x65935078, 0x1c01f000, 0x59a80a77, + 0x480f507f, 0x480fc857, 0x05000003, 0xb00c1d58, + 0x0501f803, 0x6593507b, 0x1c01f000, 0x59a80a7a, 0x8c040500, 0x05000003, 0x820c1d00, 0xfffffff7, - 0x0501f817, 0x61800801, 0x60041000, 0x0509f84f, - 0x05f00bf2, 0x1c01f000, 0x4c580000, 0x0501f810, - 0x6140b00f, 0x61800801, 0x60001000, 0x0509f87d, - 0x05f00bea, 0x4817c857, 0x82140d00, 0x000000a0, + 0x0501f817, 0x61800801, 0x60041000, 0x0509f87f, + 0x05f00bad, 0x1c01f000, 0x4c580000, 0x0501f810, + 0x6140b00f, 0x61800801, 0x60001000, 0x0509f8af, + 0x05f00ba5, 0x4817c857, 0x82140d00, 0x000000a0, 0x90040da0, 0x05000004, 0x8058b040, 0x05fe07f6, 0x90000541, 0x5c00b000, 0x1c01f000, 0x05fdff6d, 0x05000004, 0x4a03c013, 0x04010401, 0x0501f003, 0x4a03c013, 0x04010400, 0x05fdf3a9, 0x05fdff65, 0x05000004, 0x4a03c013, 0x04010001, 0x0501f003, - 0x4a03c013, 0x04010000, 0x05fdf3a1, 0x59a80a77, - 0x84040d40, 0x4807c857, 0x48075277, 0x61800801, - 0x60001000, 0x0509f85b, 0x05f00bc8, 0x4817c857, + 0x4a03c013, 0x04010000, 0x05fdf3a1, 0x59a80a7a, + 0x84040d40, 0x4807c857, 0x4807527a, 0x61800801, + 0x60001000, 0x0509f88d, 0x05f00b83, 0x4817c857, 0x82142d00, 0xfffffff7, 0xb0142d40, 0x40141800, - 0x05fdf7c7, 0xb0142c80, 0x05001010, 0x59a80084, - 0x8c000520, 0x0500000a, 0x59a8087d, 0x9004050f, + 0x05fdf7c7, 0xb0142c80, 0x05001010, 0x59a80087, + 0x8c000520, 0x0500000a, 0x59a80880, 0x9004050f, 0x05020007, 0x80040910, 0x82040d00, 0x000000ff, 0x4807c857, 0x80142c01, 0x0501f002, 0x90142c05, 0x4817c857, 0x1c01f000, 0x41782800, 0x05fdf7fd, - 0x60600801, 0x60241000, 0x60101800, 0x0509f807, - 0x05f00baa, 0x60600801, 0x60281000, 0x601c1800, - 0x0509f802, 0x05f00ba5, 0x1c01f000, 0x42000800, + 0x60600801, 0x60241000, 0x60101800, 0x0509f837, + 0x05f00b65, 0x60600801, 0x60281000, 0x601c1800, + 0x0509f832, 0x05f00b60, 0x1c01f000, 0x42000800, 0x7ff481f4, 0x59e00002, 0x8c00051e, 0x05020003, 0x42000800, 0x7ff480f4, 0x4807c857, 0x50040000, - 0x4803c857, 0x4803507d, 0x1c01f000, 0x59c468a4, + 0x4803c857, 0x48035080, 0x1c01f000, 0x59c468a4, + 0x90346d0f, 0x90346d8a, 0x1c01f000, 0x59c468a4, 0x90346d0f, 0x90346d82, 0x1c01f000, 0x59c468a4, 0x90346d0f, 0x90346d81, 0x1c01f000, 0x59c468a4, - 0x90346d0f, 0x90346d80, 0x1c01f000, 0x59a80006, - 0x8c00051c, 0x05020016, 0x4937c857, 0x0539f9b0, - 0x05000013, 0x4926601d, 0x4936600a, 0x0545fe38, - 0x64066407, 0x417a7800, 0x0519fa89, 0x59a80044, - 0x80000000, 0x48035044, 0x60127000, 0x599c0019, - 0x8c00050e, 0x05000002, 0x60027000, 0x599c0208, - 0x48026c12, 0x0009f800, 0x90000541, 0x1c01f000, - 0x4937c857, 0x0539f99a, 0x0500001b, 0x4926601d, - 0x4936600a, 0x59340403, 0x82000580, 0x000007fe, - 0x05000005, 0x4d3c0000, 0x417a7800, 0x0501f8b9, - 0x5c027800, 0x0545fe1a, 0x64066407, 0x417a7800, - 0x0519fa6b, 0x600c0800, 0x0519fa73, 0x0555fe9a, - 0x05020004, 0x59a80044, 0x80000000, 0x48035044, - 0x599c0208, 0x48026c12, 0x600a7000, 0x0009f800, - 0x90000541, 0x1c01f000, 0x4803c856, 0x59a80006, - 0x8c00051e, 0x05020008, 0x61f2880f, 0x42003000, - 0x00fffffc, 0x0519fa87, 0x05020007, 0x0501f808, - 0x05000005, 0x4a03504a, 0x0000ffff, 0x90000541, - 0x1c01f000, 0x80000580, 0x05fdf7fe, 0x4937c857, - 0x0539f96b, 0x05000011, 0x4926601d, 0x4936600a, - 0x0545fdf3, 0x64066407, 0x417a7800, 0x0519fa44, - 0x600c0800, 0x0519fa4c, 0x59a8004b, 0x80000000, - 0x4803504b, 0x599c0208, 0x48026c12, 0x600a7000, - 0x0009f800, 0x90000541, 0x1c01f000, 0x480bc857, - 0x492fc857, 0x4923c857, 0x4927c857, 0x4c5c0000, - 0x4008b800, 0x61f6880f, 0x42003000, 0x00fffffd, - 0x0519fa60, 0x0502001b, 0x5934000a, 0x84000544, - 0x4802680a, 0x0539f94a, 0x05000016, 0x4926601d, - 0x4936600a, 0x812e59c0, 0x05000006, 0x592c0408, - 0x8c00051e, 0x05000003, 0x48ee602d, 0x0501f004, - 0x59a80249, 0x8400055c, 0x48035249, 0x492e6009, - 0x64066407, 0x485e601e, 0x0545fdc5, 0x608a7000, - 0x0009f800, 0x90000541, 0x5c00b800, 0x1c01f000, - 0x80000580, 0x05fdf7fd, 0x5c000000, 0x4c000000, - 0x4803c857, 0x4943c857, 0x493fc857, 0x4d340000, - 0x4d440000, 0x4c580000, 0x4d2c0000, 0x4c5c0000, - 0x0531fa37, 0x4df00000, 0x833c0500, 0x00001800, - 0x05000003, 0x8d3c0516, 0x052c0f54, 0x0531f81d, - 0x0531f8a9, 0x052dfd9f, 0x053dfcb0, 0x5c03e000, - 0x05300a1c, 0x61c0b00f, 0x417a8800, 0x0001fb00, - 0x05020025, 0x8d3c0506, 0x05000004, 0x59340200, - 0x8c00050e, 0x05020020, 0x0519fccf, 0x497a6c0b, - 0x8d3c0518, 0x05000017, 0x5934b80f, 0x805cb9c0, - 0x0500000a, 0x405e5800, 0x49425a0a, 0x492fc857, - 0x592cb800, 0x0001fb82, 0x805cb9c0, 0x05fe07fa, - 0x497a680f, 0x497a6810, 0x4937c857, 0x4a026c00, - 0x00000707, 0x497a6a03, 0x497a6811, 0x59340402, - 0x82000500, 0x000000ff, 0x48026c02, 0x0501f006, - 0x4937c857, 0x4a026c00, 0x00000707, 0x8d0c0520, - 0x05140f78, 0x81468800, 0x8058b040, 0x05fe07d8, - 0x8d3c0502, 0x05000011, 0x497b5046, 0x61c2880f, - 0x6040b000, 0x0001fb00, 0x05020009, 0x4937c857, - 0x5934b80f, 0x5934000c, 0x4a026c00, 0x00000707, - 0x805c0540, 0x05020002, 0x0515ff66, 0x81468800, - 0x8058b040, 0x05fe07f4, 0x5c00b800, 0x5c025800, - 0x5c00b000, 0x5c028800, 0x5c026800, 0x1c01f000, - 0x5c000000, 0x4c000000, 0x4803c857, 0x4933c857, - 0x493fc857, 0x4927c857, 0x4d340000, 0x4d400000, - 0x4d440000, 0x4d2c0000, 0x4c5c0000, 0x0531f9dc, - 0x4df00000, 0x5932680a, 0x813669c0, 0x05000030, - 0x59368c03, 0x60a68000, 0x833c0500, 0x00001800, - 0x05000003, 0x8d3c0516, 0x052c0f03, 0x0531f808, - 0x0531f851, 0x052dfdd7, 0x0551fb2b, 0x4937c857, + 0x90346d0f, 0x90346d80, 0x1c01f000, 0x59c40007, + 0x84000568, 0x48038807, 0x1c01f000, 0x42006000, + 0xfc18ffff, 0x42006800, 0x01000000, 0x0519f973, + 0x05fdfb4f, 0x59c408a4, 0x90040d0f, 0x90040d8c, + 0x052208f8, 0x1c01f000, 0x59a80006, 0x8c00051c, + 0x05020016, 0x4937c857, 0x0539fe32, 0x05000013, + 0x4926601d, 0x4936600a, 0x0549fb3d, 0x64066407, + 0x417a7800, 0x0519fc09, 0x59a80047, 0x80000000, + 0x48035047, 0x60127000, 0x599c0019, 0x8c00050e, + 0x05000002, 0x60027000, 0x599c0208, 0x48026c12, + 0x0009f839, 0x90000541, 0x1c01f000, 0x4937c857, + 0x0539fe1c, 0x0500001b, 0x4926601d, 0x4936600a, + 0x59340403, 0x82000580, 0x000007fe, 0x05000005, + 0x4d3c0000, 0x417a7800, 0x0501f8bd, 0x5c027800, + 0x0549fb1f, 0x64066407, 0x417a7800, 0x0519fbeb, + 0x600c0800, 0x0519fbf3, 0x0559fd82, 0x05020004, + 0x59a80047, 0x80000000, 0x48035047, 0x599c0208, + 0x48026c12, 0x600a7000, 0x0009f839, 0x90000541, + 0x1c01f000, 0x4803c856, 0x59a80006, 0x8c00051e, + 0x05020008, 0x61f2880f, 0x42003000, 0x00fffffc, + 0x0519fc0f, 0x05020007, 0x0501f808, 0x05000005, + 0x4a03504d, 0x0000ffff, 0x90000541, 0x1c01f000, + 0x80000580, 0x05fdf7fe, 0x4937c857, 0x0539fded, + 0x05000011, 0x4926601d, 0x4936600a, 0x0549faf8, + 0x64066407, 0x417a7800, 0x0519fbc4, 0x600c0800, + 0x0519fbcc, 0x59a8004e, 0x80000000, 0x4803504e, + 0x599c0208, 0x48026c12, 0x600a7000, 0x0009f839, + 0x90000541, 0x1c01f000, 0x480bc857, 0x492fc857, + 0x4923c857, 0x4927c857, 0x4c5c0000, 0x4008b800, + 0x61f6880f, 0x42003000, 0x00fffffd, 0x0519fbe8, + 0x0502001b, 0x5934000a, 0x84000544, 0x4802680a, + 0x0539fdcc, 0x05000016, 0x4926601d, 0x4936600a, + 0x812e59c0, 0x05000006, 0x592c0408, 0x8c00051e, + 0x05000003, 0x48ee602d, 0x0501f004, 0x59a8024c, + 0x8400055c, 0x4803524c, 0x492e6009, 0x64066407, + 0x485e601e, 0x0549faca, 0x608a7000, 0x0009f839, + 0x90000541, 0x5c00b800, 0x1c01f000, 0x80000580, + 0x05fdf7fd, 0x5c000000, 0x4c000000, 0x4803c857, + 0x4943c857, 0x493fc857, 0x4d340000, 0x4d440000, + 0x4c580000, 0x4d2c0000, 0x4c5c0000, 0x0531fe62, + 0x4df00000, 0x833c0500, 0x00001800, 0x05000003, + 0x8d3c0516, 0x05300b7a, 0x0531fc49, 0x0531fcd5, + 0x0531f9c5, 0x0541f964, 0x5c03e000, 0x05300e47, + 0x59a8b0ac, 0x417a8800, 0x0001fb08, 0x05020025, 0x8d3c0506, 0x05000004, 0x59340200, 0x8c00050e, - 0x0502001f, 0x0519fc74, 0x497a6c0b, 0x8d3c0518, + 0x05020020, 0x0519fea6, 0x497a6c0b, 0x8d3c0518, 0x05000017, 0x5934b80f, 0x805cb9c0, 0x0500000a, 0x405e5800, 0x49425a0a, 0x492fc857, 0x592cb800, - 0x0001fb82, 0x805cb9c0, 0x05fe07fa, 0x497a680f, + 0x0001fba8, 0x805cb9c0, 0x05fe07fa, 0x497a680f, 0x497a6810, 0x4937c857, 0x4a026c00, 0x00000707, 0x497a6a03, 0x497a6811, 0x59340402, 0x82000500, - 0x000000ff, 0x48026c02, 0x0501f005, 0x4a026c00, - 0x00000707, 0x8d0c0520, 0x05140f1e, 0x5c03e000, - 0x05300998, 0x5c00b800, 0x5c025800, 0x5c028800, - 0x5c028000, 0x5c026800, 0x1c01f000, 0x4933c857, - 0x59a80249, 0x8c000508, 0x05020013, 0x5930500a, - 0x482bc857, 0x916c0582, 0x0502000f, 0x0501f81a, - 0x0502000d, 0x58280403, 0x82004d80, 0x000007fc, - 0x0500000a, 0x82004d80, 0x000007fd, 0x05000006, - 0x59a80044, 0x80000040, 0x4803c857, 0x05f01a53, - 0x48035044, 0x1c01f000, 0x59300429, 0x90004da1, - 0x05fc07f8, 0xb0000591, 0x05fc07fb, 0x59a8004b, - 0x80000040, 0x4803c857, 0x05fc17f7, 0x4803504b, - 0x1c01f000, 0x59300009, 0x800001c0, 0x05020007, - 0x59300403, 0x90000581, 0x05020003, 0x90000541, - 0x0501f002, 0x80000580, 0x1c01f000, 0x4937c857, - 0x59340200, 0x84000502, 0x48026a00, 0x1c01f000, - 0x4933c857, 0x493fc857, 0x4947c857, 0x4927c857, - 0x4d400000, 0x4d340000, 0x4d440000, 0x4c580000, - 0x0531f967, 0x4df00000, 0x8060c1c0, 0x05020003, - 0x6004b000, 0x0501f003, 0x61c0b00f, 0x417a8800, - 0x41440000, 0x81ac0400, 0x50000000, 0x80026d40, - 0x05000018, 0x59245005, 0x59340013, 0x82000500, + 0x000000ff, 0x48026c02, 0x0501f006, 0x4937c857, + 0x4a026c00, 0x00000707, 0x8d0c0520, 0x051808dc, + 0x81468800, 0x83440580, 0x000007f0, 0x05020002, + 0x60028810, 0x8058b040, 0x05fe07d4, 0x8d3c0502, + 0x05000011, 0x497b5049, 0x61c2880f, 0x6040b000, + 0x0001fb08, 0x05020009, 0x4937c857, 0x5934b80f, + 0x5934000c, 0x4a026c00, 0x00000707, 0x805c0540, + 0x05020002, 0x0519f8c6, 0x81468800, 0x8058b040, + 0x05fe07f4, 0x5c00b800, 0x5c025800, 0x5c00b000, + 0x5c028800, 0x5c026800, 0x1c01f000, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4933c857, 0x493fc857, + 0x4927c857, 0x4d340000, 0x4d400000, 0x4d440000, + 0x4d2c0000, 0x4c5c0000, 0x0531fe03, 0x4df00000, + 0x5932680a, 0x813669c0, 0x05000030, 0x59368c03, + 0x60a68000, 0x833c0500, 0x00001800, 0x05000003, + 0x8d3c0516, 0x05300b25, 0x0531fc30, 0x0531fc79, + 0x0531f9f9, 0x0555f9ab, 0x4937c857, 0x8d3c0506, + 0x05000004, 0x59340200, 0x8c00050e, 0x0502001f, + 0x0519fe47, 0x497a6c0b, 0x8d3c0518, 0x05000017, + 0x5934b80f, 0x805cb9c0, 0x0500000a, 0x405e5800, + 0x49425a0a, 0x492fc857, 0x592cb800, 0x0001fba8, + 0x805cb9c0, 0x05fe07fa, 0x497a680f, 0x497a6810, + 0x4937c857, 0x4a026c00, 0x00000707, 0x497a6a03, + 0x497a6811, 0x59340402, 0x82000500, 0x000000ff, + 0x48026c02, 0x0501f005, 0x4a026c00, 0x00000707, + 0x8d0c0520, 0x0518087e, 0x5c03e000, 0x05300dbf, + 0x5c00b800, 0x5c025800, 0x5c028800, 0x5c028000, + 0x5c026800, 0x1c01f000, 0x4933c857, 0x59a8024c, + 0x8c000508, 0x05020013, 0x5930500a, 0x482bc857, + 0x916c0582, 0x0502000f, 0x0501f81a, 0x0502000d, + 0x58280403, 0x82004d80, 0x000007fc, 0x0500000a, + 0x82004d80, 0x000007fd, 0x05000006, 0x59a80047, + 0x80000040, 0x4803c857, 0x05f019f7, 0x48035047, + 0x1c01f000, 0x59300429, 0x90004da1, 0x05fc07f8, + 0xb0000591, 0x05fc07fb, 0x59a8004e, 0x80000040, + 0x4803c857, 0x05fc17f7, 0x4803504e, 0x1c01f000, + 0x59300009, 0x800001c0, 0x05020007, 0x59300403, + 0x90000581, 0x05020003, 0x90000541, 0x0501f002, + 0x80000580, 0x1c01f000, 0x4937c857, 0x59340200, + 0x84000502, 0x48026a00, 0x1c01f000, 0x4933c857, + 0x493fc857, 0x4947c857, 0x4927c857, 0x4d400000, + 0x4d340000, 0x4d440000, 0x4c580000, 0x0531fd8e, + 0x4df00000, 0x8060c1c0, 0x05020003, 0x6004b000, + 0x0501f003, 0x59a8b0ac, 0x417a8800, 0x0001fb08, + 0x05020018, 0x59245005, 0x59340013, 0x82000500, 0x00ffffff, 0x80280580, 0x05020012, 0x4d3c0000, - 0x60067800, 0x0519fd32, 0x5c027800, 0x60a68000, - 0x052dff87, 0x052dffd0, 0x052dfd56, 0x0519fe5e, + 0x60067800, 0x0519ff10, 0x5c027800, 0x60a68000, + 0x0531fbb2, 0x0531fbfb, 0x0531f97b, 0x051df893, 0x05020005, 0x4937c857, 0x4a026c00, 0x00000404, - 0x0501f002, 0x0519fe83, 0x0551faa3, 0x0519fbf2, - 0x81468800, 0x8058b040, 0x05fe07e2, 0x5c03e000, - 0x05300930, 0x5c00b000, 0x5c028800, 0x5c026800, + 0x0501f002, 0x051df8b8, 0x0555f926, 0x0519fdc8, + 0x81468800, 0x83440580, 0x000007f0, 0x05020002, + 0x60028810, 0x8058b040, 0x05fe07e1, 0x5c03e000, + 0x05300d56, 0x5c00b000, 0x5c028800, 0x5c026800, 0x5c028000, 0x1c01f000, 0x4937c857, 0x4947c857, - 0x4c5c0000, 0x4c600000, 0x4c640000, 0x59a800b2, + 0x4c5c0000, 0x4c600000, 0x4c640000, 0x59a800b7, 0x8c000500, 0x0500001d, 0x599c0017, 0x8c00050a, 0x0502001a, 0x5934ba02, 0x825cbd00, 0x000000ff, 0x485fc857, 0x4178c000, 0x4178c800, 0x82600400, - 0x00110258, 0x50002000, 0x8060c1c0, 0x05000008, + 0x001141fc, 0x50002000, 0x8060c1c0, 0x05000008, 0x82100500, 0x000000ff, 0x82002d80, 0x000000ff, 0x0500000a, 0x805c0580, 0x0500000a, 0x80102110, 0x8064c800, 0x90640584, 0x05fe07f6, 0x8060c000, 0x906005a0, 0x05fe07ed, 0x4813c857, 0x90000541, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, - 0x59a80249, 0x8c000512, 0x05f20a9b, 0x1c01f000, + 0x59a8024c, 0x8c000512, 0x05f20a32, 0x1c01f000, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4c500000, - 0x6004b000, 0x42024800, 0x0010e512, 0x417a4000, - 0x61fa880f, 0x0555fd04, 0x05000020, 0x0555fce1, - 0x5924ba00, 0x8c5c0500, 0x0500007c, 0x59a8a249, + 0x6004b000, 0x42024800, 0x001124b6, 0x417a4000, + 0x61fa880f, 0x0559fbe7, 0x05000020, 0x0559fbc4, + 0x5924ba00, 0x8c5c0500, 0x0500007c, 0x59a8a24c, 0x8c500506, 0x0500000d, 0x825c0500, 0x000000e0, 0x82000580, 0x000000e0, 0x05000074, 0x0501f881, - 0x59a80044, 0x4923c857, 0x4803c857, 0x80000000, - 0x48035044, 0x0501f06d, 0x8c5c051e, 0x0500006b, + 0x59a80047, 0x4923c857, 0x4803c857, 0x80000000, + 0x48035047, 0x0501f06d, 0x8c5c051e, 0x0500006b, 0x4927c856, 0x6004b000, 0x825c0500, 0x000000e1, 0x48024a00, 0x485fc857, 0x825cc500, 0x000000e0, - 0x0502001f, 0x0501f018, 0x051dfc7c, 0x05000002, - 0x0555fcc4, 0x5924ba00, 0x8c5c0500, 0x0500005b, - 0x0555fcdd, 0x05000005, 0x59a80249, 0x8c00050e, - 0x05020013, 0x0501f004, 0x83240d80, 0x0010e512, + 0x0502001f, 0x0501f018, 0x051dfece, 0x05000002, + 0x0559fba7, 0x5924ba00, 0x8c5c0500, 0x0500005b, + 0x0559fbc0, 0x05000005, 0x59a8024c, 0x8c00050e, + 0x05020013, 0x0501f004, 0x83240d80, 0x001124b6, 0x0502000f, 0x825cc500, 0x000000e0, 0x0502000c, - 0x051dfc6a, 0x05000004, 0x42000800, 0xffffff1d, - 0x0501fa82, 0x59a80249, 0x82000500, 0xffffdafc, - 0x8400054e, 0x48035249, 0x0501f006, 0x82600580, + 0x051dfebc, 0x05000004, 0x42000800, 0xffffff1d, + 0x0501fa91, 0x59a8024c, 0x82000500, 0xffffdafc, + 0x8400054e, 0x4803524c, 0x0501f006, 0x82600580, 0x000000e0, 0x0502004a, 0x8c5c050e, 0x0502003f, 0x5924c809, 0x9064040e, 0x50000000, 0x4803c857, - 0x80026d40, 0x05000011, 0x051dfc54, 0x05000013, + 0x80026d40, 0x05000011, 0x051dfea6, 0x05000013, 0x59340200, 0x8c00051a, 0x05020034, 0x59240805, - 0x80040910, 0x0500000d, 0x59a80046, 0x4803c857, + 0x80040910, 0x0500000d, 0x59a80049, 0x4803c857, 0x4807c857, 0x80040580, 0x05000008, 0x4a026806, 0xdeaddead, 0x0501f005, 0x42003000, 0x00fffffe, - 0x0519f8a8, 0x0502002e, 0x0535ff95, 0x0500002c, + 0x0519fa2b, 0x0502002e, 0x0539fc12, 0x0500002c, 0x4936600a, 0x4926601d, 0x64066407, 0x417a7800, - 0x0519f86f, 0x05fdff2a, 0x600c0800, 0x0519f876, - 0x0545fc17, 0x49235045, 0x4923c857, 0x59240005, + 0x0519f9ea, 0x05fdff29, 0x600c0800, 0x0519f9f1, + 0x0549f917, 0x49235048, 0x4923c857, 0x59240005, 0x82000500, 0x000000ff, 0x48024805, 0x916c0583, - 0x05000004, 0x59a80044, 0x80000000, 0x48035044, - 0x599c0208, 0x48026c12, 0x600a7000, 0x0009f800, + 0x05000004, 0x59a80047, 0x80000000, 0x48035047, + 0x599c0208, 0x48026c12, 0x600a7000, 0x0009f839, 0x59240200, 0x82000500, 0xffffff9d, 0x8400054e, - 0x8400055e, 0x59a80ccc, 0x8c04050a, 0x05000002, + 0x8400055e, 0x59a80cd1, 0x8c04050a, 0x05000002, 0x8400055e, 0x48024a00, 0x81224000, 0x91264c0d, - 0x8058b040, 0x05000004, 0x0555fc7f, 0x05fe077d, - 0x05fdf79d, 0x4a035045, 0x0000ffff, 0x5c00a000, + 0x8058b040, 0x05000004, 0x0559fb62, 0x05fe077d, + 0x05fdf79d, 0x4a035048, 0x0000ffff, 0x5c00a000, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4d300000, 0x4d440000, 0x4d340000, 0x61fa880f, - 0x42003000, 0x00fffffe, 0x0519f86e, 0x0502001c, - 0x0535ff5b, 0x0500001a, 0x4927c857, 0x4923c857, + 0x42003000, 0x00fffffe, 0x0519f9f1, 0x0502001c, + 0x0539fbd8, 0x0500001a, 0x4927c857, 0x4923c857, 0x497a6009, 0x4936600a, 0x4926601d, 0x64066407, - 0x600c0800, 0x0519f83c, 0x599c0208, 0x48026c12, - 0x600a7000, 0x0009f800, 0x59a80a49, 0x8c040506, + 0x600c0800, 0x0519f9b7, 0x599c0208, 0x48026c12, + 0x600a7000, 0x0009f839, 0x59a80a4c, 0x8c040506, 0x05020002, 0x497a4805, 0x59240200, 0x82000500, 0xffffff9d, 0x8400054e, 0x48024a00, 0x5c026800, 0x5c028800, 0x5c026000, 0x1c01f000, 0x80000580, 0x05fdf7fb, 0x4d200000, 0x4d240000, 0x4c580000, 0x4d340000, 0x4d300000, 0x4d3c0000, 0x4d380000, - 0x4d440000, 0x0519fc0b, 0x05020009, 0x051dfbdf, - 0x05000004, 0x59a81249, 0x8c080506, 0x05000003, + 0x4d440000, 0x0519fde5, 0x05020009, 0x051dfe31, + 0x05000004, 0x59a8124c, 0x8c080506, 0x05000003, 0x05fdff34, 0x0501f002, 0x0501f80a, 0x5c028800, 0x5c027000, 0x5c027800, 0x5c026000, 0x5c026800, 0x5c00b000, 0x5c024800, 0x5c024000, 0x1c01f000, - 0x4803c856, 0x4c600000, 0x0555fc16, 0x4200c000, - 0x0010e510, 0x50600000, 0x82024580, 0x0000ffff, - 0x05020004, 0x42024800, 0x0010e512, 0x0501f008, + 0x4803c856, 0x4c600000, 0x0559faf9, 0x4200c000, + 0x001124b4, 0x50600000, 0x82024580, 0x0000ffff, + 0x05020004, 0x42024800, 0x001124b6, 0x0501f008, 0x8058b480, 0x05000026, 0x05001025, 0x40024000, - 0x82000400, 0x0010d17b, 0x50024800, 0x4520c000, + 0x82000400, 0x0010d8f9, 0x50024800, 0x4520c000, 0x59240005, 0x82000500, 0x000000ff, 0x48024805, 0x59240200, 0x90000503, 0x90000583, 0x0502000e, - 0x59240400, 0x8c000508, 0x0500000b, 0x59a800b2, + 0x59240400, 0x8c000508, 0x0500000b, 0x59a800b7, 0x8c000500, 0x05000003, 0x0501f813, 0x0501f002, - 0x0501f85e, 0x59a80045, 0x82000580, 0x0000ffff, + 0x0501f85e, 0x59a80048, 0x82000580, 0x0000ffff, 0x0502000b, 0x81224000, 0x91264c0d, 0x8058b040, 0x05fe07e7, 0x599c0019, 0x8c00050e, 0x05020004, - 0x59a800b2, 0x8c000500, 0x05020881, 0x5c00c000, + 0x59a800b7, 0x8c000500, 0x05020881, 0x5c00c000, 0x1c01f000, 0x4927c857, 0x4923c857, 0x4c580000, 0x4c100000, 0x4c0c0000, 0x4c080000, 0x4c040000, - 0x4d240000, 0x59243c08, 0x59a81845, 0x820c1580, + 0x4d240000, 0x59243c08, 0x59a81848, 0x820c1580, 0x0000ffff, 0x05020002, 0x60041800, 0x800c1104, - 0x82082400, 0x00110258, 0x50102000, 0x900c0503, - 0x0c01f001, 0x0010252d, 0x0010252f, 0x00102531, - 0x00102533, 0x40101000, 0x0501f006, 0x80101110, + 0x82082400, 0x001141fc, 0x50102000, 0x900c0503, + 0x0c01f001, 0x001025c5, 0x001025c7, 0x001025c9, + 0x001025cb, 0x40101000, 0x0501f006, 0x80101110, 0x0501f004, 0x80101120, 0x0501f002, 0x80101130, 0x4c0c0000, 0x82080500, 0x000000ff, 0x801c0d80, 0x05000019, 0x800001c0, 0x05000017, 0x40000800, - 0x82000580, 0x000000ff, 0x05000017, 0x0501f916, - 0x05000011, 0x40040000, 0x0525fb8c, 0x0502001c, - 0x0519f84b, 0x05000004, 0x05fdfd09, 0x05000018, + 0x82000580, 0x000000ff, 0x05000017, 0x0501f924, + 0x05000011, 0x40040000, 0x0525fea0, 0x0502001c, + 0x0519f9f0, 0x05000004, 0x05fdfd04, 0x05000018, 0x0501f009, 0x599c0019, 0x8c00050e, 0x05020006, - 0x0515ffc8, 0x05020012, 0x05fdfe51, 0x05fdfd19, - 0x0500000f, 0x5c001800, 0x480f5045, 0x800c1800, - 0x05fdf7cf, 0x5c001800, 0x4a035045, 0x0000ffff, + 0x0519f94b, 0x05020012, 0x05fdfe50, 0x05fdfd14, + 0x0500000f, 0x5c001800, 0x480f5048, 0x800c1800, + 0x05fdf7cf, 0x5c001800, 0x4a035048, 0x0000ffff, 0x5c024800, 0x5c000800, 0x5c001000, 0x5c001800, 0x5c002000, 0x5c00b000, 0x1c01f000, 0x5c001800, - 0x480f5045, 0x05fdf7f7, 0x4927c857, 0x4c5c0000, + 0x480f5048, 0x05fdf7f7, 0x4927c857, 0x4c5c0000, 0x4c580000, 0x4c540000, 0x61f8b000, 0x59243c08, - 0x59a80045, 0x82001580, 0x0000ffff, 0x05020003, + 0x59a80048, 0x82001580, 0x0000ffff, 0x05020003, 0x4178a800, 0x0501f004, 0x8058b480, 0x0500101e, - 0x4000a800, 0x48575045, 0x8254bc00, 0x00102853, + 0x4000a800, 0x48575048, 0x8254bc00, 0x001028fb, 0x505cb800, 0x825cbd00, 0x000000ff, 0x405c0800, - 0x0501f8dd, 0x05000011, 0x405c0000, 0x0525fb53, - 0x05020013, 0x0519f812, 0x05000004, 0x05fdfcd0, + 0x0501f8eb, 0x05000011, 0x405c0000, 0x0525fe67, + 0x05020013, 0x0519f9b7, 0x05000004, 0x05fdfccb, 0x0500000f, 0x0501f009, 0x599c0019, 0x8c00050e, - 0x05020006, 0x0515ff8f, 0x05020009, 0x05fdfe18, - 0x05fdfce0, 0x05000006, 0x8054a800, 0x8058b040, - 0x05fe07e5, 0x4a035045, 0x0000ffff, 0x5c00a800, + 0x05020006, 0x0519f912, 0x05020009, 0x05fdfe17, + 0x05fdfcdb, 0x05000006, 0x8054a800, 0x8058b040, + 0x05fe07e5, 0x4a035048, 0x0000ffff, 0x5c00a800, 0x5c00b000, 0x5c00b800, 0x1c01f000, 0x4c580000, - 0x4d440000, 0x61c0b00f, 0x80028d80, 0x0001fb00, + 0x4d440000, 0x59a8b0ac, 0x80028d80, 0x0001fb08, 0x05020018, 0x05fdfe41, 0x05000016, 0x4937c857, - 0x0519fcd5, 0x42026000, 0x00111a70, 0x4936600a, - 0x497a6009, 0x4926601d, 0x417a7800, 0x05fdfd89, - 0x42000000, 0x0010e454, 0x0555fa36, 0x59240400, + 0x0519ff06, 0x42026000, 0x00115a14, 0x4936600a, + 0x497a6009, 0x4926601d, 0x417a7800, 0x05fdfd88, + 0x42000000, 0x001123f8, 0x0559f919, 0x59240400, 0x8c00050a, 0x05020007, 0x41782800, 0x60203000, - 0x4d400000, 0x60a68000, 0x0551f9f8, 0x5c028000, - 0x81468800, 0x8058b040, 0x05fe07e5, 0x5c028800, + 0x4d400000, 0x60a68000, 0x0555f8a7, 0x5c028000, + 0x81468800, 0x83440580, 0x000007f0, 0x05020002, + 0x60028810, 0x8058b040, 0x05fe07e1, 0x5c028800, 0x5c00b000, 0x1c01f000, 0x4927c857, 0x4c5c0000, 0x400cb800, 0x4d200000, 0x4d240000, 0x4c580000, - 0x0555fb38, 0x417a4000, 0x42024800, 0x0010e512, + 0x0559fa17, 0x417a4000, 0x42024800, 0x001124b6, 0x59240200, 0x8c000500, 0x0500000f, 0x8c5c0508, 0x05000004, 0x8400055a, 0x48024a00, 0x0501f00a, 0x82000500, 0x000000e0, 0x82000580, 0x000000e0, @@ -2458,10 +2497,10 @@ static const uint32_t isp_2500_risc_code[] = { 0x05fe07ec, 0x5c00b000, 0x5c024800, 0x5c024000, 0x5c00b800, 0x1c01f000, 0x4d200000, 0x4d240000, 0x4c580000, 0x4c5c0000, 0x400cb800, 0x485fc857, - 0x0555fb14, 0x8058b040, 0x0500001f, 0x60064000, - 0x42024800, 0x0010e51f, 0x59a80249, 0x8c000514, + 0x0559f9f3, 0x8058b040, 0x0500001f, 0x60064000, + 0x42024800, 0x001124c3, 0x59a8024c, 0x8c000514, 0x0500001e, 0x59241200, 0x8c080510, 0x05020012, - 0x8c080500, 0x05000010, 0x59a80acc, 0x5924000b, + 0x8c080500, 0x05000010, 0x59a80ad1, 0x5924000b, 0x82000500, 0x00001fff, 0x80040580, 0x0502000a, 0x8c08051e, 0x05020008, 0x8c5c0508, 0x05000004, 0x8408155a, 0x480a4a00, 0x0501f003, 0x0501f813, @@ -2470,149 +2509,152 @@ static const uint32_t isp_2500_risc_code[] = { 0x5c024000, 0x1c01f000, 0x497a4805, 0x59240200, 0x90000501, 0x48024a00, 0x91264c0d, 0x8058b040, 0x05fe07fa, 0x05fdf7f4, 0x4927c857, 0x4923c857, - 0x59a80249, 0x8c000514, 0x05000003, 0x0501f9e6, + 0x59a8024c, 0x8c000514, 0x05000003, 0x0501f9f1, 0x1c01f000, 0x80000580, 0x05fdf7fe, 0x4c580000, - 0x0555fadc, 0x417a4000, 0x42000800, 0x0010e512, + 0x0559f9bb, 0x417a4000, 0x42000800, 0x001124b6, 0x5930001d, 0x80040580, 0x05000006, 0x81224000, - 0x90040c0d, 0x8058b040, 0x05fe07fa, 0x05edffb7, + 0x90040c0d, 0x8058b040, 0x05fe07fa, 0x05edff56, 0x4933c857, 0x4923c857, 0x5c00b000, 0x1c01f000, - 0x4c580000, 0x0555facb, 0x417a4000, 0x42024800, - 0x0010e512, 0x59a81249, 0x8c080508, 0x0500000a, - 0x821c0d80, 0x00fffffe, 0x05000020, 0x8c08050c, - 0x0500001e, 0x59240005, 0x801c0580, 0x0500001b, - 0x0501f017, 0x90080528, 0x05020005, 0x59240005, - 0x82000500, 0x000000ff, 0x0501f008, 0x821c0580, - 0x00fffff0, 0x05000011, 0x59240200, 0x8c000500, - 0x05000004, 0x59240005, 0x801c0580, 0x0500000b, - 0x81224000, 0x91264c0d, 0x8058b040, 0x05000004, - 0x90080528, 0x05fe07f2, 0x05fdf7ed, 0x61fe41ff, - 0x90000541, 0x481fc856, 0x4923c857, 0x5c00b000, - 0x1c01f000, 0x4807c857, 0x4c580000, 0x0555fa9d, - 0x42006800, 0x0010e512, 0x58340005, 0x82000500, - 0x000000ff, 0x80040580, 0x05000005, 0x90346c0d, - 0x8058b040, 0x05fe07f9, 0x90000541, 0x5c00b000, - 0x1c01f000, 0x4923c857, 0x493fc857, 0x4c580000, - 0x4d400000, 0x4d440000, 0x4d340000, 0x4c5c0000, - 0x052dfea7, 0x4df00000, 0x61c0b00f, 0x417a8800, - 0x83440400, 0x0010d400, 0x50000000, 0x80026d40, - 0x0500001f, 0x59340013, 0x80000130, 0x81200580, - 0x0502001b, 0x60a68000, 0x833c0500, 0x00004000, - 0x052e0bc9, 0x052dfcce, 0x052dfd17, 0x052dfa9d, - 0x054dfff1, 0x8d3c051c, 0x05000004, 0x41240800, - 0x0519fc0c, 0x0501f00e, 0x8d3c0506, 0x05000004, - 0x59340200, 0x8c00050e, 0x05020009, 0x4937c857, - 0x0519f935, 0x497a6c0b, 0x4a026c00, 0x00000707, - 0x59240400, 0x8c00050a, 0x05160bf6, 0x81468800, - 0x8058b040, 0x05fe07db, 0x8d3c0502, 0x0500001f, - 0x6040b000, 0x5924b809, 0x505c0000, 0x80026d40, - 0x05000017, 0x59368c03, 0x833c0500, 0x00004000, - 0x052e0ba5, 0x052dfcaa, 0x052dfcf3, 0x052dfa79, - 0x054dffcd, 0x8d3c051c, 0x0502000b, 0x83440580, - 0x000007fe, 0x05020006, 0x59340813, 0x82040d00, - 0xff000000, 0x48066813, 0x0501f005, 0x0515fbd9, - 0x0501f003, 0x41240800, 0x0519fbde, 0x805cb800, - 0x8058b040, 0x05fe07e5, 0x4d300000, 0x61fe89ff, - 0x42026000, 0x00111a70, 0x4a02600a, 0x00110210, - 0x0519feee, 0x4926601d, 0x60a68000, 0x052dfc8c, - 0x054dffb1, 0x5c026000, 0x5c03e000, 0x052c0e41, - 0x5c00b800, 0x5c026800, 0x5c028800, 0x5c028000, - 0x5c00b000, 0x1c01f000, 0x4807c857, 0x4c580000, - 0x0555fa28, 0x42001000, 0x0010e512, 0x58080200, - 0x80040500, 0x48001200, 0x9008140d, 0x8058b040, - 0x05fe07fb, 0x5c00b000, 0x1c01f000, 0x4803c856, - 0x4d440000, 0x4d340000, 0x4c580000, 0x4c5c0000, - 0x6040b000, 0x61c2880f, 0x5924b809, 0x83440580, - 0x000007fe, 0x05000005, 0x505e6800, 0x813669c0, - 0x05000002, 0x0515fba3, 0x81468800, 0x805cb800, - 0x8058b040, 0x05fe07f6, 0x5c00b800, 0x5c00b000, - 0x5c026800, 0x5c028800, 0x1c01f000, 0x5c000000, - 0x4c000000, 0x4803c857, 0x4c5c0000, 0x4c600000, - 0x4c580000, 0x4d240000, 0x4d200000, 0x4178c000, - 0x59a804cc, 0x4803c857, 0x8c00050c, 0x0502001c, - 0x0555f9f8, 0x417a4000, 0x42024800, 0x0010e512, - 0x5924b80b, 0x825cbd00, 0x00001fff, 0x805cb9c0, - 0x0500000f, 0x405c1000, 0x0501f827, 0x05000017, - 0x916c0583, 0x0502000a, 0x59240200, 0x8c000500, - 0x05000007, 0x8c000502, 0x05020005, 0x8c00051e, - 0x05000003, 0x41780800, 0x0501f87f, 0x81224000, - 0x91264c0d, 0x8058b040, 0x05fe07ea, 0x8060c1c0, - 0x5c024000, 0x5c024800, 0x5c00b000, 0x5c00c000, - 0x5c00b800, 0x1c01f000, 0x405c1000, 0x480bc856, - 0x4d3c0000, 0x4d400000, 0x60aa8000, 0x600a7800, - 0x41780800, 0x813261c0, 0x05000002, 0x60400800, - 0x0501f81a, 0x5c028000, 0x5c027800, 0x8060c000, - 0x05fdf7e7, 0x5c000000, 0x4c000000, 0x4803c857, - 0x480bc857, 0x41780800, 0x60800000, 0x052df85b, - 0x4807c857, 0x607c1800, 0x40040000, 0x800c0480, - 0x82000c00, 0x0010d15b, 0x50040800, 0x4807c857, - 0x82080400, 0x00110672, 0x50000000, 0x4803c857, - 0x80040500, 0x1c01f000, 0x480bc857, 0x4d200000, - 0x4d240000, 0x4c580000, 0x4c5c0000, 0x4c600000, - 0x4008c000, 0x4004b800, 0x0555f9aa, 0x417a4000, - 0x42024800, 0x0010e512, 0x5924000b, 0x82000500, - 0x00001fff, 0x80600580, 0x05020013, 0x8c5c0506, - 0x0502000a, 0x05fdff10, 0x497a4805, 0x8c5c0508, - 0x0500000d, 0x60643000, 0x61fc19ff, 0x601c2000, - 0x0511f8ec, 0x0501f008, 0x8c640502, 0x05020005, - 0x05fdff05, 0x497a4805, 0x497a480b, 0x0501f002, - 0x0521fa84, 0x81224000, 0x91264c0d, 0x8058b040, - 0x05fe07e6, 0x5c00c000, 0x5c00b800, 0x5c00b000, - 0x5c024800, 0x5c024000, 0x1c01f000, 0x4803c856, - 0x4c580000, 0x4d240000, 0x4d200000, 0x59a804cc, - 0x8c00050c, 0x05020018, 0x0555f97e, 0x8058b040, - 0x05000015, 0x60064000, 0x42024800, 0x0010e51f, - 0x59240200, 0x8c00051e, 0x0500000b, 0x8c00050e, - 0x05020009, 0x59a802cc, 0x5924080b, 0x82040d00, - 0x00001fff, 0x80040580, 0x05000003, 0x41780800, - 0x0501f809, 0x91264c0d, 0x81224000, 0x8058b040, - 0x05fe07f0, 0x5c024000, 0x5c024800, 0x5c00b000, - 0x1c01f000, 0x4d300000, 0x4d440000, 0x4c040000, - 0x61fa880f, 0x42003000, 0x00fffffe, 0x0515fd7d, - 0x05020018, 0x0535fc6a, 0x05000016, 0x5c000800, - 0x48066009, 0x4936600a, 0x4926601d, 0x64066407, - 0x600c0800, 0x0515fd4c, 0x599c0208, 0x48026c12, - 0x600a7000, 0x0009f800, 0x497a4805, 0x59240200, - 0x82000500, 0xffffff9d, 0x82000540, 0x00008080, - 0x48024a00, 0x5c028800, 0x5c026000, 0x1c01f000, - 0x5c000800, 0x05fdf7fc, 0x480bc857, 0x4c5c0000, - 0x4c580000, 0x4d200000, 0x4d240000, 0x0555f93d, - 0x8058b040, 0x0500001c, 0x4008b800, 0x60064000, - 0x42024800, 0x0010e51f, 0x59240200, 0x8c000500, - 0x05000011, 0x82000500, 0x00008100, 0x0502000e, - 0x5924000b, 0x82000500, 0x00001fff, 0x05000005, - 0x805c0580, 0x05020008, 0x0501f82f, 0x0501f006, - 0x42001000, 0x0010e512, 0x5808000b, 0x4802480b, - 0x0501f829, 0x81224000, 0x91264c0d, 0x8058b040, - 0x05fe07ea, 0x5c024800, 0x5c024000, 0x5c00b000, - 0x5c00b800, 0x1c01f000, 0x480bc857, 0x4c580000, - 0x4c600000, 0x4008c000, 0x0555f916, 0x42001800, - 0x0010e512, 0x580c000b, 0x82000500, 0x00001fff, - 0x80600580, 0x0502000e, 0x81240583, 0x0500000c, - 0x580c0a00, 0x90040503, 0x90000583, 0x05020008, - 0x82040d40, 0x000080e0, 0x48041a00, 0x5924080c, - 0x497a480c, 0x4804180c, 0x0501f004, 0x900c1c0d, - 0x8058b040, 0x05fe07ec, 0x5c00c000, 0x5c00b000, - 0x1c01f000, 0x4923c857, 0x61fa880f, 0x42003000, - 0x00fffffe, 0x0515fd17, 0x05020011, 0x599c0208, - 0x48026c12, 0x4d2c0000, 0x417a5800, 0x0545fa54, - 0x5c025800, 0x0500000a, 0x59a800bb, 0x80000000, - 0x480350bb, 0x59240200, 0x84000550, 0x84000512, + 0x4c580000, 0x0559f9aa, 0x417a4000, 0x42024800, + 0x001124b6, 0x59a8124c, 0x8c080508, 0x05000013, + 0x821c0d80, 0x00fffffe, 0x0502000a, 0x0559f9c1, + 0x05000028, 0x60040900, 0x0501fa0b, 0x05000022, + 0x40124800, 0x40164000, 0x80000580, 0x0501f021, + 0x8c08050c, 0x0500001f, 0x59240005, 0x801c0580, + 0x0500001c, 0x0501f018, 0x90080528, 0x05020005, + 0x59240005, 0x82000500, 0x000000ff, 0x0501f009, + 0x821c0580, 0x00fffff0, 0x05000012, 0x59240200, + 0x90000503, 0x90000583, 0x05020004, 0x59240005, + 0x801c0580, 0x0500000b, 0x81224000, 0x91264c0d, + 0x8058b040, 0x05000004, 0x90080528, 0x05fe07f1, + 0x05fdf7ec, 0x61fe41ff, 0x90000541, 0x481fc856, + 0x4923c857, 0x5c00b000, 0x1c01f000, 0x4807c857, + 0x4c580000, 0x0559f972, 0x42006800, 0x001124b6, + 0x58340005, 0x82000500, 0x000000ff, 0x80040580, + 0x05000005, 0x90346c0d, 0x8058b040, 0x05fe07f9, + 0x90000541, 0x5c00b000, 0x1c01f000, 0x4923c857, + 0x493fc857, 0x4c580000, 0x4d400000, 0x4d440000, + 0x4d340000, 0x4c5c0000, 0x0531fabf, 0x4df00000, + 0x59a8b0ac, 0x417a8800, 0x0001fb08, 0x0502001f, + 0x59340013, 0x80000130, 0x81200580, 0x0502001b, + 0x60a68000, 0x833c0500, 0x00004000, 0x052e0fdf, + 0x0531f8ea, 0x0531f933, 0x052dfeb3, 0x0551fe65, + 0x8d3c051c, 0x05000004, 0x41240800, 0x0519fe38, + 0x0501f00e, 0x8d3c0506, 0x05000004, 0x59340200, + 0x8c00050e, 0x05020009, 0x4937c857, 0x0519fafc, + 0x497a6c0b, 0x4a026c00, 0x00000707, 0x59240400, + 0x8c00050a, 0x05160d4a, 0x81468800, 0x83440580, + 0x000007f0, 0x05020002, 0x60028810, 0x8058b040, + 0x05fe07da, 0x8d3c0502, 0x0500001f, 0x6040b000, + 0x5924b809, 0x505c0000, 0x80026d40, 0x05000017, + 0x59368c03, 0x833c0500, 0x00004000, 0x052e0fb7, + 0x0531f8c2, 0x0531f90b, 0x052dfe8b, 0x0551fe3d, + 0x8d3c051c, 0x0502000b, 0x83440580, 0x000007fe, + 0x05020006, 0x59340813, 0x82040d00, 0xff000000, + 0x48066813, 0x0501f005, 0x0515fd29, 0x0501f003, + 0x41240800, 0x0519fe06, 0x805cb800, 0x8058b040, + 0x05fe07e5, 0x4d300000, 0x61fe89ff, 0x42026000, + 0x00115a14, 0x4a02600a, 0x001141b4, 0x051df91c, + 0x4926601d, 0x60a68000, 0x0531f8a4, 0x0551fe21, + 0x5c026000, 0x5c03e000, 0x05300a58, 0x5c00b800, + 0x5c026800, 0x5c028800, 0x5c028000, 0x5c00b000, + 0x1c01f000, 0x4807c857, 0x4c580000, 0x0559f8fc, + 0x42001000, 0x001124b6, 0x58080200, 0x80040500, + 0x48001200, 0x9008140d, 0x8058b040, 0x05fe07fb, + 0x5c00b000, 0x1c01f000, 0x4803c856, 0x4d440000, + 0x4d340000, 0x4c580000, 0x4c5c0000, 0x6040b000, + 0x61c2880f, 0x5924b809, 0x83440580, 0x000007fe, + 0x05000005, 0x505e6800, 0x813669c0, 0x05000002, + 0x0515fcf3, 0x81468800, 0x805cb800, 0x8058b040, + 0x05fe07f6, 0x5c00b800, 0x5c00b000, 0x5c026800, + 0x5c028800, 0x1c01f000, 0x5c000000, 0x4c000000, + 0x4803c857, 0x4c5c0000, 0x4c600000, 0x4c580000, + 0x4d240000, 0x4d200000, 0x4178c000, 0x59a804d1, + 0x4803c857, 0x8c00050c, 0x0502001c, 0x0559f8cc, + 0x417a4000, 0x42024800, 0x001124b6, 0x5924b80b, + 0x825cbd00, 0x00001fff, 0x805cb9c0, 0x0500000f, + 0x405c1000, 0x0501f827, 0x05000017, 0x916c0583, + 0x0502000a, 0x59240200, 0x8c000500, 0x05000007, + 0x8c000502, 0x05020005, 0x8c00051e, 0x05000003, + 0x41780800, 0x0501f87f, 0x81224000, 0x91264c0d, + 0x8058b040, 0x05fe07ea, 0x8060c1c0, 0x5c024000, + 0x5c024800, 0x5c00b000, 0x5c00c000, 0x5c00b800, + 0x1c01f000, 0x405c1000, 0x480bc856, 0x4d3c0000, + 0x4d400000, 0x60aa8000, 0x600a7800, 0x41780800, + 0x813261c0, 0x05000002, 0x60400800, 0x0501f81a, + 0x5c028000, 0x5c027800, 0x8060c000, 0x05fdf7e7, + 0x5c000000, 0x4c000000, 0x4803c857, 0x480bc857, + 0x41780800, 0x60800000, 0x052dfc6d, 0x4807c857, + 0x607c1800, 0x40040000, 0x800c0480, 0x82000c00, + 0x0010d8d9, 0x50040800, 0x4807c857, 0x82080400, + 0x00114616, 0x50000000, 0x4803c857, 0x80040500, + 0x1c01f000, 0x480bc857, 0x4d200000, 0x4d240000, + 0x4c580000, 0x4c5c0000, 0x4c600000, 0x4008c000, + 0x4004b800, 0x0559f87e, 0x417a4000, 0x42024800, + 0x001124b6, 0x5924000b, 0x82000500, 0x00001fff, + 0x80600580, 0x05020013, 0x8c5c0506, 0x0502000a, + 0x05fdff0f, 0x497a4805, 0x8c5c0508, 0x0500000d, + 0x60643000, 0x61fc19ff, 0x601c2000, 0x0511f9e2, + 0x0501f008, 0x8c640502, 0x05020005, 0x05fdff04, + 0x497a4805, 0x497a480b, 0x0501f002, 0x0521fd19, + 0x81224000, 0x91264c0d, 0x8058b040, 0x05fe07e6, + 0x5c00c000, 0x5c00b800, 0x5c00b000, 0x5c024800, + 0x5c024000, 0x1c01f000, 0x4803c856, 0x4c580000, + 0x4d240000, 0x4d200000, 0x59a804d1, 0x8c00050c, + 0x05020018, 0x0559f852, 0x8058b040, 0x05000015, + 0x60064000, 0x42024800, 0x001124c3, 0x59240200, + 0x8c00051e, 0x0500000b, 0x8c00050e, 0x05020009, + 0x59a802d1, 0x5924080b, 0x82040d00, 0x00001fff, + 0x80040580, 0x05000003, 0x41780800, 0x0501f809, + 0x91264c0d, 0x81224000, 0x8058b040, 0x05fe07f0, + 0x5c024000, 0x5c024800, 0x5c00b000, 0x1c01f000, + 0x4d300000, 0x4d440000, 0x4c040000, 0x61fa880f, + 0x42003000, 0x00fffffe, 0x0515fef1, 0x05020018, + 0x0539f8d8, 0x05000016, 0x5c000800, 0x48066009, + 0x4936600a, 0x4926601d, 0x64066407, 0x600c0800, + 0x0515feb8, 0x599c0208, 0x48026c12, 0x600a7000, + 0x0009f839, 0x497a4805, 0x59240200, 0x82000500, + 0xffffff9d, 0x82000540, 0x00008080, 0x48024a00, + 0x5c028800, 0x5c026000, 0x1c01f000, 0x5c000800, + 0x05fdf7fc, 0x480bc857, 0x4c5c0000, 0x4c580000, + 0x4d200000, 0x4d240000, 0x0559f811, 0x8058b040, + 0x0500001c, 0x4008b800, 0x60064000, 0x42024800, + 0x001124c3, 0x59240200, 0x8c000500, 0x05000011, + 0x82000500, 0x00008100, 0x0502000e, 0x5924000b, + 0x82000500, 0x00001fff, 0x05000005, 0x805c0580, + 0x05020008, 0x0501f82f, 0x0501f006, 0x42001000, + 0x001124b6, 0x5808000b, 0x4802480b, 0x0501f829, + 0x81224000, 0x91264c0d, 0x8058b040, 0x05fe07ea, + 0x5c024800, 0x5c024000, 0x5c00b000, 0x5c00b800, + 0x1c01f000, 0x480bc857, 0x4c580000, 0x4c600000, + 0x4008c000, 0x0555ffea, 0x42001800, 0x001124b6, + 0x580c000b, 0x82000500, 0x00001fff, 0x80600580, + 0x0502000e, 0x81240583, 0x0500000c, 0x580c0a00, + 0x90040503, 0x90000583, 0x05020008, 0x82040d40, + 0x000080e0, 0x48041a00, 0x5924080c, 0x497a480c, + 0x4804180c, 0x0501f004, 0x900c1c0d, 0x8058b040, + 0x05fe07ec, 0x5c00c000, 0x5c00b000, 0x1c01f000, + 0x4923c857, 0x61fa880f, 0x42003000, 0x00fffffe, + 0x0515fe8b, 0x05020012, 0x599c0208, 0x48026c12, + 0x4d2c0000, 0x417a5800, 0x0545ff4c, 0x5c025800, + 0x0500000b, 0x59a800c0, 0x80000000, 0x480350c0, + 0x59240200, 0x82000500, 0xfffffd1d, 0x84000550, 0x48024a00, 0x90000541, 0x1c01f000, 0x80000580, 0x05fdf7fe, 0x4923c857, 0x4d300000, 0x4d440000, - 0x61fa880f, 0x42003000, 0x00fffffe, 0x0515fcfd, - 0x0502001b, 0x0535fbea, 0x05000019, 0x497a6009, + 0x61fa880f, 0x42003000, 0x00fffffe, 0x0515fe70, + 0x0502001b, 0x0539f857, 0x05000019, 0x497a6009, 0x4936600a, 0x4926601d, 0x64066407, 0x600c0800, - 0x0515fccd, 0x599c0208, 0x48026c12, 0x600a7000, - 0x0009f800, 0x59240200, 0x4927c857, 0x82000500, - 0xffffff9d, 0x8400054e, 0x48024a00, 0x59a80249, - 0x82000500, 0xffffdafc, 0x8400054e, 0x48035249, + 0x0515fe38, 0x599c0208, 0x48026c12, 0x600a7000, + 0x0009f839, 0x59240200, 0x4927c857, 0x82000500, + 0xffffff9d, 0x8400054e, 0x48024a00, 0x59a8024c, + 0x82000500, 0xffffdafc, 0x8400054e, 0x4803524c, 0x5c028800, 0x5c026000, 0x1c01f000, 0x80000580, - 0x05fdf7fc, 0x4c580000, 0x4807c857, 0x0555f8bd, - 0x41782800, 0x42002000, 0x0010e512, 0x58100200, + 0x05fdf7fc, 0x4c580000, 0x4807c857, 0x0555ff90, + 0x41782800, 0x42002000, 0x001124b6, 0x58100200, 0x80040500, 0x80040580, 0x05000007, 0x80142800, 0x9010240d, 0x8058b040, 0x05fe07f9, 0x5c00b000, 0x1c01f000, 0x90000541, 0x05fdf7fd, 0x4c580000, - 0x0555f8ac, 0x42001000, 0x0010e512, 0x58080200, + 0x0555ff7f, 0x42001000, 0x001124b6, 0x58080200, 0x8c00051a, 0x05020004, 0x9008140d, 0x8058b040, 0x05fe07fb, 0x5c00b000, 0x1c01f000, 0x00007eef, 0x00007de8, 0x00007ce4, 0x000080e2, 0x00007be1, @@ -2678,74 +2720,74 @@ static const uint32_t isp_2500_risc_code[] = { 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, 0x00008000, - 0x00008000, 0x00008000, 0x00008000, 0x05f1f81e, - 0x05ec0c86, 0x492f4017, 0x1c01f000, 0x91a0ac07, - 0x83a00580, 0x0010dceb, 0x05000008, 0x492fc857, - 0x812e59c0, 0x05ec0c7d, 0x912ca40a, 0x6034b000, - 0x0551ff47, 0x0501f00d, 0x6040b000, 0x91e0a420, + 0x00008000, 0x00008000, 0x00008000, 0x05edffad, + 0x05ec0c19, 0x492f4017, 0x1c01f000, 0x91a0ac07, + 0x83a00580, 0x00111c71, 0x05000008, 0x492fc857, + 0x812e59c0, 0x05ec0c10, 0x912ca40a, 0x6034b000, + 0x0555fe1a, 0x0501f00d, 0x6040b000, 0x91e0a420, 0x50500000, 0x8050a000, 0x50500800, 0x900409c0, 0x80040540, 0x4400a800, 0x8050a000, 0x8054a800, 0x8058b040, 0x05fe07f7, 0x1c01f000, 0x42000000, - 0x0010e3bc, 0x0551fe6e, 0x59a00207, 0xb0000cbf, - 0x050210ba, 0x0c01f001, 0x001029f8, 0x00102a2e, - 0x00102a2e, 0x00102a7a, 0x00102a8f, 0x00102a2e, - 0x001029f8, 0x00102aa6, 0x00102ab7, 0x00102a2e, - 0x00102a2e, 0x00102ad0, 0x00102aef, 0x00102b0e, - 0x00102a2e, 0x00102b2b, 0x00102a2e, 0x00102a2e, - 0x00102b4b, 0x00102a2e, 0x00102c08, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x00102a2e, 0x00102c2f, - 0x00102c8a, 0x00102a2e, 0x00102a2e, 0x00102a2e, - 0x00102cd8, 0x00102cf9, 0x00102f40, 0x00102a2e, - 0x00102f8d, 0x00102a2e, 0x00102a2e, 0x00102a2e, - 0x00102a2e, 0x00102f92, 0x00103094, 0x00102a2e, - 0x0010309b, 0x00102a2e, 0x00102a2e, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x0010309c, 0x0010315f, - 0x00103360, 0x0010336c, 0x00102a2e, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x0010337f, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x00102a2e, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x001033a8, 0x001033ea, - 0x00103432, 0x00103449, 0x00103461, 0x001036ae, - 0x00103a28, 0x00102a2e, 0x00103f5d, 0x00103b98, - 0x00103bcd, 0x00102a2e, 0x00102a2e, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x00102a2e, 0x00102a2e, - 0x00102a2e, 0x00103be8, 0x00103c39, 0x00102a2e, - 0x00102a2e, 0x00103c8d, 0x00102a2e, 0x00103d05, - 0x00103dba, 0x00103e61, 0x00102a2e, 0x00103e8f, - 0x00103f19, 0x00102a2e, 0x00103f5d, 0x001042c2, - 0x00102a2e, 0x001042d1, 0x0010434b, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x00102a2e, 0x001043a8, - 0x001043c2, 0x001043db, 0x00102a2e, 0x0010444d, - 0x00102a2e, 0x00102a2e, 0x00104491, 0x00102a2e, - 0x001044b5, 0x00102a2e, 0x00102a2e, 0x0010450c, - 0x00104639, 0x00102a2e, 0x00102a2e, 0x00102a2e, - 0x00102a2e, 0x00102a2e, 0x0010467b, 0x001046fa, - 0x00102a2e, 0x48efc857, 0x0509fc65, 0x0500003b, - 0x48efc857, 0x4a034207, 0x00004000, 0x050dfdb6, - 0x83a00580, 0x0010dceb, 0x0500000b, 0x58ee580a, - 0x4d2c0000, 0x0501f852, 0x41a25800, 0x05edff8f, - 0x40ee5800, 0x05edff8d, 0x5c025800, 0x492fc857, - 0x0001f382, 0x05026007, 0x59a0001e, 0x84000542, - 0x4803401e, 0x4a01d809, 0x00102a09, 0x1c01f000, + 0x0011235d, 0x0555fd41, 0x59a00207, 0xb0000cbf, + 0x050210ba, 0x0c01f001, 0x00102aa0, 0x00102ad6, + 0x00102ad6, 0x00102b22, 0x00102b37, 0x00102ad6, + 0x00102aa0, 0x00102b4e, 0x00102b5f, 0x00102ad6, + 0x00102ad6, 0x00102b79, 0x00102b98, 0x00102bb7, + 0x00102ad6, 0x00102bd4, 0x00102ad6, 0x00102ad6, + 0x00102bf4, 0x00102ad6, 0x00102cb0, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x00102ad6, 0x00102cd7, + 0x00102d32, 0x00102ad6, 0x00102ad6, 0x00102ad6, + 0x00102d80, 0x00102da1, 0x00102feb, 0x00102ad6, + 0x00103038, 0x00102ad6, 0x00102ad6, 0x00102ad6, + 0x00102ad6, 0x0010303d, 0x0010313c, 0x00102ad6, + 0x00103143, 0x00102ad6, 0x00102ad6, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x00103144, 0x00103207, + 0x0010348c, 0x00103498, 0x00104cec, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x001034ab, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x00102ad6, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x001034f5, 0x00103537, + 0x0010357f, 0x00103594, 0x001035ac, 0x001037f9, + 0x00103b9b, 0x00102ad6, 0x001040d3, 0x00103d0b, + 0x00103d40, 0x00102ad6, 0x00102ad6, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x00102ad6, 0x00102ad6, + 0x00102ad6, 0x00103d5b, 0x00103dac, 0x00102ad6, + 0x00102ad6, 0x00103e00, 0x00102ad6, 0x00103e78, + 0x00103f2d, 0x00103fd7, 0x00102ad6, 0x00104005, + 0x0010408f, 0x00102ad6, 0x001040d3, 0x00104441, + 0x00102ad6, 0x00104450, 0x001044cc, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x00102ad6, 0x0010452c, + 0x00104546, 0x0010455f, 0x00102ad6, 0x001045d1, + 0x00102ad6, 0x00102ad6, 0x00104621, 0x00102ad6, + 0x00104645, 0x00102ad6, 0x00102ad6, 0x0010469c, + 0x001047db, 0x00102ad6, 0x00102ad6, 0x00102ad6, + 0x00102ad6, 0x00102ad6, 0x0010481d, 0x0010489c, + 0x00102ad6, 0x48efc857, 0x0509fd33, 0x0500003b, + 0x48efc857, 0x4a034207, 0x00004000, 0x050dfeb0, + 0x83a00580, 0x00111c71, 0x0500000b, 0x58ee580a, + 0x4d2c0000, 0x0501f852, 0x41a25800, 0x05edff1e, + 0x40ee5800, 0x05edff1c, 0x5c025800, 0x492fc857, + 0x0001f3a8, 0x05026007, 0x59a0001e, 0x84000542, + 0x4803401e, 0x4a01d809, 0x00102ab1, 0x1c01f000, 0x59a00207, 0x82000d80, 0x00004000, 0x05000005, 0x900001c0, 0x90000551, 0x4803c011, 0x0501f004, 0x900001c0, 0x90000550, 0x4803c011, 0x0501f846, - 0x59e00017, 0x8c00050a, 0x60000800, 0x00020892, - 0x8d0c0530, 0x05f60ca4, 0x000209bc, 0x6403c017, + 0x59e00017, 0x8c00050a, 0x60000800, 0x0002089a, + 0x8d0c0530, 0x05f60c6d, 0x000209c4, 0x6403c017, 0x4203e000, 0x30000001, 0x4203e000, 0x40000000, - 0x40ee5800, 0x05edff69, 0x59a0001e, 0x84000504, + 0x40ee5800, 0x05edfef8, 0x59a0001e, 0x84000504, 0x4803401e, 0x1c01f000, 0x4803c856, 0x4a034207, 0x00004001, 0x05fdf7ca, 0x4803c856, 0x4a034207, 0x00004002, 0x05fdf7c6, 0x4803c856, 0x4a034207, - 0x00004003, 0x05fdf7c2, 0x05f9ff55, 0x4803c856, - 0x4a034207, 0x00004005, 0x05fdf7bd, 0x05f9ff50, + 0x00004003, 0x05fdf7c2, 0x05f9ff2d, 0x4803c856, + 0x4a034207, 0x00004005, 0x05fdf7bd, 0x05f9ff28, 0x4803c856, 0x4a034207, 0x00004006, 0x05fdf7b8, 0x4803c856, 0x4a034207, 0x0000400b, 0x05fdf7b4, 0x4803c856, 0x4a034207, 0x0000400c, 0x05fdf7b0, 0x4803c856, 0x4a034207, 0x0000400c, 0x05fdf7ac, 0x4a034207, 0x00004020, 0x05fdf7a9, 0x4c580000, 0x4c500000, 0x4c540000, 0x58eca80a, 0x8054a9c0, - 0x05ec0b82, 0x91a0a407, 0x9054ac0a, 0x6034b000, - 0x0551fe4b, 0x5c00a800, 0x5c00a000, 0x5c00b000, + 0x05ec0b15, 0x91a0a407, 0x9054ac0a, 0x6034b000, + 0x0555fd1e, 0x5c00a800, 0x5c00a000, 0x5c00b000, 0x1c01f000, 0x4c580000, 0x4c500000, 0x4c540000, 0x59a00007, 0x4803c857, 0x59a00008, 0x4803c857, 0x59a00009, 0x4803c857, 0x91e0ac20, 0x91a0a407, @@ -2755,11 +2797,11 @@ static const uint32_t isp_2500_risc_code[] = { 0x5c00b000, 0x1c01f000, 0x59a00407, 0x800000c2, 0x59a00a08, 0x900409c0, 0x80040540, 0x84000540, 0x59a00c08, 0x8c040500, 0x0500000b, 0x4c000000, - 0x0551fe7b, 0x5c000000, 0x05000004, 0x48030004, + 0x0555fd4e, 0x5c000000, 0x05000004, 0x48030004, 0x64030000, 0x05fdf76f, 0x64030000, 0x64134407, 0x05fc07af, 0x4803880e, 0x05fdf76a, 0x59a00407, 0x800000c2, 0x59a00c08, 0x8c040500, 0x0500000d, - 0x4c000000, 0x0551fe6a, 0x5c000000, 0x05000006, + 0x4c000000, 0x0555fd3d, 0x5c000000, 0x05000006, 0x48030004, 0x59800805, 0x48074407, 0x64030000, 0x05fdf75c, 0x64030000, 0x64134407, 0x05fc079c, 0x4803880e, 0x59c4080f, 0x48074407, 0x900409c0, @@ -2767,103 +2809,103 @@ static const uint32_t isp_2500_risc_code[] = { 0x900c19c0, 0x800c1d40, 0x580c0803, 0x80000580, 0x500c1000, 0x80080400, 0x800c1800, 0x80040840, 0x05fe07fc, 0x48034407, 0x900001c0, 0x48034208, - 0x800001c0, 0x05fc0743, 0x05fdf780, 0x641f4407, + 0x800001c0, 0x05fc0743, 0x05fdf780, 0x64234407, 0x640f4208, 0x64034408, 0x59a8000a, 0x82000c80, 0x00140000, 0x05021004, 0x42000000, 0x0013ffff, - 0x0501f006, 0x59a808ca, 0x8c040500, 0x05000003, + 0x0501f006, 0x59a808cf, 0x8c040500, 0x05000003, 0x82000400, 0x00006000, 0x48034209, 0x900001c0, - 0x48034409, 0x61540121, 0x4803420a, 0x900001c0, - 0x4803440e, 0x60000000, 0x4803400f, 0x05fdf729, + 0x48034409, 0x42000000, 0x001090d5, 0x4803420a, + 0x900001c0, 0x4803440e, 0x60000000, 0x4803400f, + 0x05fdf728, 0x59a00408, 0x59a01208, 0x900811c0, + 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, + 0x800c1d40, 0x59a00a09, 0x59a00409, 0x900409c0, + 0x80040d40, 0x59a0020b, 0x59a02407, 0x900001c0, + 0x80100540, 0x82002480, 0x00100000, 0x05fc175d, + 0x59a8280a, 0x80142480, 0x050e15d3, 0x42002800, + 0x7fefffff, 0x80142480, 0x05fe1756, 0x42002800, + 0x7ffd0000, 0x80142480, 0x05fc1752, 0x050df5ca, 0x59a00408, 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, 0x800c1d40, 0x59a00a09, 0x59a00409, 0x900409c0, 0x80040d40, 0x59a0020b, 0x59a02407, 0x900001c0, 0x80100540, - 0x82002480, 0x00100000, 0x05fc175e, 0x59a8280a, - 0x80142480, 0x050e14da, 0x42002800, 0x7fefffff, - 0x80142480, 0x05fe1757, 0x42002800, 0x7ffd0000, - 0x80142480, 0x05fc1753, 0x050df4d1, 0x59a00408, - 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, - 0x59a01a0a, 0x900c19c0, 0x800c1d40, 0x59a00a09, - 0x59a00409, 0x900409c0, 0x80040d40, 0x59a0020b, - 0x59a02407, 0x900001c0, 0x80100540, 0x82002480, - 0x00100000, 0x05fc173f, 0x59a8280a, 0x80142480, - 0x050e14c4, 0x42002800, 0x7fefffff, 0x80142480, - 0x05fe1738, 0x42002800, 0x7ffd0000, 0x80142480, - 0x05fc1734, 0x050df4bb, 0x59a02408, 0x59a00208, - 0x901021c0, 0x80102540, 0x59a01a0b, 0x59a00407, - 0x900c19c0, 0x800c1d40, 0x41781000, 0x820c0580, - 0x00007c00, 0x0500000a, 0x820c0480, 0x00007a00, - 0x05001007, 0x820c0480, 0x00007cff, 0x05021004, - 0x0551fddf, 0x05000007, 0x80081000, 0x44101800, - 0x800811c0, 0x05fc06d3, 0x64030000, 0x05fdf6d1, - 0x64030000, 0x64134407, 0x05fdf711, 0x59a01a0b, + 0x82002480, 0x00100000, 0x05fc173e, 0x59a8280a, + 0x80142480, 0x050e15bd, 0x42002800, 0x7fefffff, + 0x80142480, 0x05fe1737, 0x42002800, 0x7ffd0000, + 0x80142480, 0x05fc1733, 0x050df5b4, 0x59a02408, + 0x59a00208, 0x901021c0, 0x80102540, 0x59a01a0b, 0x59a00407, 0x900c19c0, 0x800c1d40, 0x41781000, 0x820c0580, 0x00007c00, 0x0500000a, 0x820c0480, 0x00007a00, 0x05001007, 0x820c0480, 0x00007cff, - 0x05021004, 0x0551fdc6, 0x0500000e, 0x80081000, - 0x500c0000, 0x82000d00, 0x0000ffff, 0x48074208, - 0x82000d00, 0xffff0000, 0x900409c0, 0x48074408, - 0x800811c0, 0x05fc06b3, 0x64030000, 0x05fdf6b1, - 0x64030000, 0x64134407, 0x05fdf6f1, 0x4d2c0000, - 0x4d340000, 0x4d300000, 0x4d440000, 0x050dfd36, - 0x05020006, 0x4923c857, 0x4927c857, 0x59a28c07, - 0x0515ff25, 0x05000006, 0x5c028800, 0x5c026000, - 0x5c026800, 0x5c025800, 0x05fdf6e6, 0x4937c857, - 0x59a04408, 0x59a00208, 0x900001c0, 0x80204540, - 0x4823c857, 0x59a04a0b, 0x0501f877, 0x05000008, - 0x64074209, 0x4a034407, 0x0000ffff, 0x4a034208, - 0x0000ffff, 0x497b4408, 0x0501f03d, 0x497b4407, - 0x0501f87e, 0x0500003f, 0x59300402, 0x48034407, - 0x59300202, 0x48034208, 0x59300006, 0x48034408, - 0x59a0020c, 0x8c000500, 0x05000030, 0x4933c857, - 0x0515feb9, 0x05000003, 0x64274407, 0x0501f031, - 0x8d0c050e, 0x05000003, 0x64074407, 0x0501f02d, - 0x916c0583, 0x05000003, 0x641f4407, 0x0501f029, - 0x59340200, 0x8c00050e, 0x05000003, 0x64834407, - 0x0501f024, 0x59300407, 0x90000d83, 0x05020007, - 0x59300804, 0x9004051f, 0x90000584, 0x05020003, - 0x8c04053e, 0x05020015, 0x050dfc0d, 0x05020003, - 0x640b4407, 0x0501f017, 0x492fc857, 0x4a025c08, - 0x00008000, 0x497a5a08, 0x497a5809, 0x0545fb53, - 0x05020003, 0x640f4407, 0x0501f00e, 0x4a01d809, - 0x00102bb1, 0x5c028800, 0x5c026000, 0x5c026800, - 0x5c025800, 0x1c01f000, 0x640b4209, 0x5c028800, - 0x5c026000, 0x5c026800, 0x5c025800, 0x05fdf64d, + 0x05021004, 0x0555fcb1, 0x05000007, 0x80081000, + 0x44101800, 0x800811c0, 0x05fc06d2, 0x64030000, + 0x05fdf6d0, 0x64030000, 0x64134407, 0x05fdf710, + 0x59a01a0b, 0x59a00407, 0x900c19c0, 0x800c1d40, + 0x41781000, 0x820c0580, 0x00007c00, 0x0500000a, + 0x820c0480, 0x00007a00, 0x05001007, 0x820c0480, + 0x00007cff, 0x05021004, 0x0555fc98, 0x0500000e, + 0x80081000, 0x500c0000, 0x82000d00, 0x0000ffff, + 0x48074208, 0x82000d00, 0xffff0000, 0x900409c0, + 0x48074408, 0x800811c0, 0x05fc06b2, 0x64030000, + 0x05fdf6b0, 0x64030000, 0x64134407, 0x05fdf6f0, + 0x4d2c0000, 0x4d340000, 0x4d300000, 0x4d440000, + 0x050dfe2a, 0x05020006, 0x4923c857, 0x4927c857, + 0x59a28c07, 0x0519f945, 0x05000006, 0x5c028800, + 0x5c026000, 0x5c026800, 0x5c025800, 0x05fdf6e5, + 0x4937c857, 0x59a04408, 0x59a00208, 0x900001c0, + 0x80204540, 0x4823c857, 0x59a04a0b, 0x0501f877, + 0x05000008, 0x64074209, 0x4a034407, 0x0000ffff, + 0x4a034208, 0x0000ffff, 0x497b4408, 0x0501f03d, + 0x497b4407, 0x0501f87e, 0x0500003f, 0x59300402, + 0x48034407, 0x59300202, 0x48034208, 0x59300006, + 0x48034408, 0x59a0020c, 0x8c000500, 0x05000030, + 0x4933c857, 0x0519f8d9, 0x05000003, 0x64274407, + 0x0501f031, 0x8d0c050e, 0x05000003, 0x64074407, + 0x0501f02d, 0x916c0583, 0x05000003, 0x641f4407, + 0x0501f029, 0x59340200, 0x8c00050e, 0x05000003, + 0x64834407, 0x0501f024, 0x59300407, 0x90000d83, + 0x05020007, 0x59300804, 0x9004051f, 0x90000584, + 0x05020003, 0x8c04053e, 0x05020015, 0x050dfd06, + 0x05020003, 0x640b4407, 0x0501f017, 0x492fc857, + 0x4a025c08, 0x00008000, 0x497a5a08, 0x497a5809, + 0x0549f85b, 0x05020003, 0x640f4407, 0x0501f00e, + 0x4a01d809, 0x00102c5a, 0x5c028800, 0x5c026000, + 0x5c026800, 0x5c025800, 0x1c01f000, 0x640b4209, 0x5c028800, 0x5c026000, 0x5c026800, 0x5c025800, - 0x05fdf68b, 0x492fc857, 0x4933c857, 0x497a602a, - 0x592c0009, 0x82000580, 0x01000000, 0x05020003, - 0x64134407, 0x05fdf682, 0x4d2c0000, 0x912e5c0a, - 0x592c0000, 0x82000580, 0x02000000, 0x05020011, - 0x4803c856, 0x64134209, 0x592c0804, 0x82040500, - 0x0000ffff, 0x48034409, 0x80040920, 0x4807420a, - 0x592c0805, 0x82040500, 0x0000ffff, 0x4803440a, - 0x80040920, 0x4807420b, 0x5c025800, 0x05fdf629, - 0x4803c856, 0x64174209, 0x592c0801, 0x82040500, - 0x0000ffff, 0x48034409, 0x80040920, 0x4807420a, - 0x05fdf7f6, 0x4937c857, 0x4823c857, 0x4827c857, - 0x5934000f, 0x80001d40, 0x05000009, 0x580c0009, - 0x80200580, 0x05020007, 0x580c0003, 0x58000211, - 0x80240580, 0x05020003, 0x81780000, 0x1c01f000, - 0x580c0000, 0x05fdf7f4, 0x4823c857, 0x4d2c0000, - 0x42026000, 0x00111b00, 0x59300407, 0x90000d83, + 0x05fdf64c, 0x5c028800, 0x5c026000, 0x5c026800, + 0x5c025800, 0x05fdf68a, 0x492fc857, 0x4933c857, + 0x497a602a, 0x592c0009, 0x82000580, 0x01000000, + 0x05020003, 0x64134407, 0x05fdf681, 0x4d2c0000, + 0x912e5c0a, 0x592c0000, 0x82000580, 0x02000000, + 0x05020011, 0x4803c856, 0x64134209, 0x592c0804, + 0x82040500, 0x0000ffff, 0x48034409, 0x80040920, + 0x4807420a, 0x592c0805, 0x82040500, 0x0000ffff, + 0x4803440a, 0x80040920, 0x4807420b, 0x5c025800, + 0x05fdf628, 0x4803c856, 0x64174209, 0x592c0801, + 0x82040500, 0x0000ffff, 0x48034409, 0x80040920, + 0x4807420a, 0x05fdf7f6, 0x4937c857, 0x4823c857, + 0x4827c857, 0x5934000f, 0x80001d40, 0x05000009, + 0x580c0009, 0x80200580, 0x05020007, 0x580c0003, + 0x58000211, 0x80240580, 0x05020003, 0x81780000, + 0x1c01f000, 0x580c0000, 0x05fdf7f4, 0x4823c857, + 0x4d2c0000, 0x40be6000, 0x59300407, 0x90000d83, 0x05000003, 0x90000d86, 0x0502000b, 0x59325809, 0x812e59c0, 0x05000008, 0x592c0003, 0x58000211, 0x80240580, 0x05020004, 0x592c0009, 0x80200580, 0x05000009, 0x91326430, 0x59a8000b, 0x81300480, 0x05fc17ee, 0x417a6000, 0x80000580, 0x5c025800, 0x1c01f000, 0x90000541, 0x5c025800, 0x1c01f000, - 0x83a00580, 0x0010dceb, 0x050e076a, 0x64030000, + 0x83a00580, 0x00111c71, 0x051200b6, 0x64030000, 0x4a034207, 0x00004000, 0x4a03c011, 0x40000010, 0x05fdfe51, 0x59e00017, 0x8c00050a, 0x60000800, - 0x00020892, 0x8d0c0530, 0x05f60aaf, 0x000209bc, + 0x0002089a, 0x8d0c0530, 0x05f60a78, 0x000209c4, 0x6403c017, 0x4203e000, 0x30000001, 0x4203e000, 0x40000000, 0x4203e000, 0xb0100000, 0x41fc0000, - 0x8c00050a, 0x05fc07fc, 0x0551fcdd, 0x05fc07ff, + 0x8c00050a, 0x05fc07fc, 0x0555fbb0, 0x05fc07ff, 0x59800802, 0x8c040520, 0x05020003, 0x64030000, 0x05fdf7f5, 0x60101020, 0x50080000, 0x8400054c, 0x44001000, 0x64030000, 0x0501f000, 0x59a00c07, 0x800409c0, 0x05000005, 0x916c0580, 0x05000003, - 0x646b4407, 0x05fdf606, 0x42007000, 0x0010e060, + 0x646b4407, 0x05fdf606, 0x42007000, 0x00111ffa, 0x58381c01, 0x58382201, 0x58383202, 0x8c040500, 0x0500000b, 0x59a01208, 0x82080500, 0x0000f003, 0x05fe0600, 0x82080480, 0x00000841, 0x05fe15fd, @@ -2878,15 +2920,15 @@ static const uint32_t isp_2500_risc_code[] = { 0xd0000000, 0x40040000, 0x800c0540, 0x48007401, 0x8c040500, 0x05000002, 0x48087201, 0x8c04050a, 0x0500001a, 0x481c7202, 0x4c0c0000, 0x4c100000, - 0x4c180000, 0x052df8a2, 0x4df00000, 0x58383a02, + 0x4c180000, 0x052dfcb8, 0x4df00000, 0x58383a02, 0x481fc857, 0x41780000, 0x801c3840, 0x800010c8, 0x82081400, 0x0000b037, 0x64001002, 0x801c1c80, 0x05021002, 0x64081002, 0x80000000, 0x90001c85, - 0x05fc17f7, 0x5c03e000, 0x052c0882, 0x5c003000, + 0x05fc17f7, 0x5c03e000, 0x052c0c98, 0x5c003000, 0x5c002000, 0x5c001800, 0x480f4407, 0x48134208, 0x481b4408, 0x05fdf56f, 0x4d440000, 0x4d340000, - 0x59a28c07, 0x050dfbf8, 0x05020009, 0x0515fdea, - 0x05020007, 0x0515fda0, 0x05000008, 0x64274407, + 0x59a28c07, 0x050dfced, 0x05020009, 0x0519f80b, + 0x05020007, 0x0515ffc1, 0x05000008, 0x64274407, 0x5c026800, 0x5c028800, 0x05fdf5a5, 0x5c026800, 0x5c028800, 0x05fdf5a7, 0x59a01208, 0x59a01c08, 0x5934400a, 0x82203d00, 0x0002e000, 0x801c391a, @@ -2896,7 +2938,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x05000005, 0x90040585, 0x05000003, 0x4937c857, 0x60100800, 0x82204500, 0xfffd1fff, 0x800400da, 0x80200540, 0x4802680a, 0x4c080000, 0x4c1c0000, - 0x052df85b, 0x0519f815, 0x052df84a, 0x5c003800, + 0x052dfc71, 0x0519fa42, 0x052dfc60, 0x5c003800, 0x5c001000, 0x481f4408, 0x5934400a, 0x82203d00, 0x0f000000, 0x801c3930, 0x8c080504, 0x05020011, 0x8c080502, 0x0500000b, 0x4823c857, 0x82204500, @@ -2906,234 +2948,234 @@ static const uint32_t isp_2500_risc_code[] = { 0x82204500, 0xf07fffff, 0x4822680a, 0x05fdf7f9, 0x59a02c07, 0x8c140502, 0x05020005, 0x59a00a09, 0x82040480, 0x00000100, 0x05021019, 0x82041400, - 0x0010de60, 0x50080000, 0x80025d40, 0x05000014, + 0x00111dfa, 0x50080000, 0x80025d40, 0x05000014, 0x4178b000, 0x592c0005, 0x80000d40, 0x05000004, 0x8058b000, 0x58040000, 0x05fdf7fc, 0x485b4209, 0x592c1408, 0x592c0c09, 0x58080100, 0x80040c80, 0x05021003, 0x592c0208, 0x80040c00, 0x48074407, 0x497b4408, 0x497b4208, 0x05fdf502, 0x64774407, - 0x05fdf543, 0x916c2d80, 0x050c0678, 0x83a00580, - 0x0010dceb, 0x050e0677, 0x59a02c07, 0x4817c857, + 0x05fdf543, 0x916c2d80, 0x050c07c4, 0x83a00580, + 0x00111c71, 0x050e07c3, 0x59a02c07, 0x4817c857, 0x8c140516, 0x0502003a, 0x82140500, 0x00000408, 0x050200a3, 0x8c140500, 0x050200af, 0x8d0c0516, 0x05000003, 0x64874407, 0x05fdf531, 0x59a00a09, - 0x82040480, 0x00000100, 0x050211a2, 0x8c140502, - 0x05020004, 0x82041400, 0x0010dd60, 0x0501f007, + 0x82040480, 0x00000100, 0x050211a4, 0x8c140502, + 0x05020004, 0x82041400, 0x00111cfa, 0x0501f007, 0x59a0020e, 0x82000480, 0x00000100, 0x05fe1529, - 0x82041400, 0x0010de60, 0x50080000, 0x80000540, - 0x05020192, 0x4c040000, 0x4c080000, 0x05edfc52, - 0x5c001000, 0x5c000800, 0x0500018a, 0x05011000, + 0x82041400, 0x00111dfa, 0x50080000, 0x80000540, + 0x05020194, 0x4c040000, 0x4c080000, 0x05edfbe1, + 0x5c001000, 0x5c000800, 0x0500018c, 0x05011000, 0x492fc840, 0x6463c842, 0x05011000, 0x8c140502, - 0x05020007, 0x4c080000, 0x0501f9a4, 0x5c001000, + 0x05020007, 0x4c080000, 0x0501f9a7, 0x5c001000, 0x05fe050f, 0x452c1000, 0x05fdf4ca, 0x4c080000, - 0x0501f9d7, 0x5c001000, 0x05fe0509, 0x452c1000, + 0x0501f9da, 0x5c001000, 0x05fe0509, 0x452c1000, 0x05fdf4c4, 0x592c000e, 0x48034407, 0x80000120, 0x48034208, 0x497a580e, 0x05fdf4be, 0x59a00a09, - 0x82040480, 0x00000100, 0x05021172, 0x8d0c0516, + 0x82040480, 0x00000100, 0x05021174, 0x8d0c0516, 0x05000003, 0x64874407, 0x05fdf4f9, 0x8c140502, - 0x0502002e, 0x82041400, 0x0010dd60, 0x50080000, - 0x80025d40, 0x05000167, 0x592c1a00, 0x580c0000, - 0x592c1a0c, 0x800c0580, 0x05020160, 0x91701d82, - 0x0500015e, 0x412c1800, 0x59980002, 0x90000482, + 0x0502002e, 0x82041400, 0x00111cfa, 0x50080000, + 0x80025d40, 0x05000169, 0x592c1a00, 0x580c0000, + 0x592c1a0c, 0x800c0580, 0x05020162, 0x91701d82, + 0x05000160, 0x412c1800, 0x59980002, 0x90000482, 0x05021004, 0x4a03b004, 0x10000000, 0x0501f005, - 0x4c0c0000, 0x80f01d83, 0x05180f10, 0x5c001800, + 0x4c0c0000, 0x80f01d83, 0x051c0958, 0x5c001800, 0x59a01208, 0x800810e0, 0x59a00408, 0x80080540, 0x48001808, 0x59a0120a, 0x800810e0, 0x59a0040a, 0x80080540, 0x48001809, 0x59a00a09, 0x59a0140b, 0x82040400, 0x00005c00, 0x48080100, 0x480a5a0c, 0x59980002, 0x90000482, 0x05fe148a, 0x4a03b004, - 0x10000001, 0x05fdf487, 0x82041400, 0x0010de60, - 0x50080000, 0x80025d40, 0x0500013a, 0x592c0005, - 0x80000540, 0x05020135, 0x592c1c08, 0x592c0409, - 0x580c0900, 0x80040580, 0x05020130, 0x412c1800, + 0x10000001, 0x05fdf487, 0x82041400, 0x00111dfa, + 0x50080000, 0x80025d40, 0x0500013c, 0x592c0005, + 0x80000540, 0x05020137, 0x592c1c08, 0x592c0409, + 0x580c0900, 0x80040580, 0x05020132, 0x412c1800, 0x412c0000, 0x81740580, 0x0502000f, 0x59d80106, - 0x80000540, 0x05020129, 0x8d0c0524, 0x05020127, + 0x80000540, 0x0502012b, 0x8d0c0524, 0x05020129, 0x59980008, 0x90000482, 0x05021004, 0x4a03b104, - 0x10000000, 0x0501f004, 0x4c0c0000, 0x0519f8bb, + 0x10000000, 0x0501f004, 0x4c0c0000, 0x0519faf7, 0x5c001800, 0x59a01208, 0x800810e0, 0x59a00408, 0x80080540, 0x48001806, 0x59a0120a, 0x800810e0, 0x59a0040a, 0x80080540, 0x48001807, 0x59a00a09, 0x59a0120b, 0x82040400, 0x00005e00, 0x48080000, 0x48081c09, 0x59980008, 0x90000482, 0x05fe1455, 0x4a03b104, 0x10000001, 0x05fdf452, 0x59a00a09, - 0x82040480, 0x00000100, 0x05021106, 0x82041400, - 0x0010dd60, 0x50080000, 0x80025d40, 0x05000101, - 0x8c140514, 0x05fe0784, 0x41780000, 0x0501f8ff, + 0x82040480, 0x00000100, 0x05021108, 0x82041400, + 0x00111cfa, 0x50080000, 0x80025d40, 0x05000103, + 0x8c140514, 0x05fe0784, 0x41780000, 0x0501f901, 0x05fdf444, 0x8c140512, 0x05000003, 0x8d0c0520, - 0x050200f8, 0x59a00a09, 0x82040480, 0x00000100, - 0x050210f4, 0x800409c0, 0x050000f2, 0x8c140502, - 0x05020087, 0x82041400, 0x0010dd60, 0x50080000, - 0x80025d40, 0x050000eb, 0x592c1a00, 0x580c0000, - 0x592c1a0c, 0x800c0580, 0x05000003, 0x0501f96c, - 0x050200e2, 0x592c1a00, 0x580c0000, 0x48025a0c, - 0x4d340000, 0x4d440000, 0x4c080000, 0x61c2880f, - 0x59a04a09, 0x41440000, 0x81ac0400, 0x50026800, - 0x813669c0, 0x05000020, 0x5934000f, 0x40002000, - 0x80001d40, 0x0500001c, 0x580c0003, 0x58000211, - 0x80240580, 0x05000004, 0x580c0000, 0x400c2000, - 0x05fdf7f8, 0x4937c857, 0x4947c857, 0x480fc857, - 0x0501f94f, 0x0502001c, 0x4d2c0000, 0x400e5800, - 0x592c0800, 0x05edfbae, 0x5c025800, 0x40040000, - 0x5934100f, 0x800c1582, 0x0500000b, 0x4807c857, - 0x4813c857, 0x48042000, 0x800409c0, 0x05fe07e5, - 0x48126810, 0x814689c0, 0x0500000f, 0x81468840, - 0x05fdf7d9, 0x800409c0, 0x05020004, 0x497a680f, - 0x497a6810, 0x05fdf7f8, 0x4806680f, 0x40042000, - 0x05fdf7d8, 0x5c001000, 0x5c028800, 0x5c026800, - 0x0501f0a6, 0x5c001000, 0x5c028800, 0x5c026800, - 0x4d300000, 0x4d2c0000, 0x42026000, 0x00111b00, - 0x59325809, 0x812e59c0, 0x05000018, 0x592c0003, - 0x58000211, 0x80240580, 0x05020014, 0x0501f920, - 0x0502000f, 0x492fc857, 0x4d2c0000, 0x4c140000, - 0x4c080000, 0x053df9f8, 0x5c001000, 0x5c002800, - 0x5c025800, 0x05020009, 0x4c080000, 0x0005ffdc, - 0x05edfb77, 0x5c001000, 0x0501f004, 0x5c025800, - 0x5c026000, 0x0501f085, 0x91326430, 0x59a8000b, - 0x81300480, 0x05fc17e3, 0x5c025800, 0x5c026000, - 0x59980802, 0x80040840, 0x48073002, 0x45781000, - 0x59a00a09, 0x4807c857, 0x40f01000, 0x58080801, - 0x412c0000, 0x80040580, 0x05000004, 0x40041000, - 0x58040801, 0x05fdf7fb, 0x58040801, 0x48041001, - 0x4d2c0000, 0x412c0000, 0x80f00580, 0x05180e27, - 0x5c025800, 0x05edfb4d, 0x05fdf3b2, 0x82041400, - 0x0010de60, 0x50080000, 0x80025d40, 0x05000065, - 0x592c0005, 0x80000540, 0x05000012, 0x0501f8e8, - 0x0502005e, 0x592c0805, 0x4d2c0000, 0x40065800, - 0x58040000, 0x4c080000, 0x4c000000, 0x05edfb44, - 0x5c000000, 0x5c001000, 0x80000d40, 0x05fe07f8, - 0x5c025800, 0x48025804, 0x48025805, 0x850e1d26, - 0x592c1c08, 0x592c0409, 0x580c0900, 0x80040580, - 0x05000003, 0x0501f8d2, 0x05020048, 0x412c0000, - 0x81740580, 0x05020019, 0x59d80106, 0x80000540, - 0x05000011, 0x0501f8ca, 0x05020040, 0x42000800, - 0x000fffff, 0x59d80106, 0x80000540, 0x0500000a, - 0x0502e005, 0x59da5908, 0x4c080000, 0x05edfb1b, - 0x5c001000, 0x80040840, 0x05fe07f7, 0x4803c857, - 0x0501f032, 0x8d0c0524, 0x05000004, 0x0501f8b8, - 0x0502002e, 0x850e1d24, 0x60000802, 0x80040840, - 0x0500100a, 0x82040400, 0x0010dd60, 0x50000000, - 0x80000540, 0x05fc07fa, 0x58000012, 0x812c0580, - 0x05000010, 0x05fdf7f6, 0x59980808, 0x80040840, - 0x48073008, 0x45781000, 0x59a00a09, 0x4807c857, - 0x41741000, 0x58080800, 0x412c0000, 0x80040580, - 0x05000006, 0x40041000, 0x58040800, 0x05fdf7fb, - 0x492fc857, 0x0501f011, 0x58040800, 0x48041000, - 0x4d2c0000, 0x412c0000, 0x81740580, 0x05140fa7, - 0x5c025800, 0x592c0209, 0xb000053f, 0x82000400, - 0x0010df60, 0x45780000, 0x05edfae8, 0x05fdf34d, - 0x640b4407, 0x05fdf38e, 0x647b4407, 0x05fdf38c, - 0x64774407, 0x05fdf38a, 0x59a00c07, 0x8c040510, - 0x0500000a, 0x64065a0a, 0x59a0020d, 0x48025c11, - 0x0001ff16, 0x42000000, 0x00102ecb, 0x50000000, - 0x48025a10, 0x1c01f000, 0x59a00a0d, 0x90040486, - 0x05001002, 0x60040800, 0x82040c00, 0x00102ec8, - 0x50040000, 0x48025a10, 0x64025a0a, 0x1c01f000, - 0x00000002, 0x00000002, 0x00000005, 0x0000000a, - 0x00000014, 0x000000ff, 0x8c14050e, 0x05020008, - 0x59a0020c, 0x82000400, 0x0010de60, 0x50000000, - 0x80000540, 0x0500002d, 0x48025812, 0x48065a11, - 0x59a01208, 0x800810e0, 0x59a00408, 0x80080540, - 0x48025808, 0x59a0120a, 0x800810e0, 0x59a0040a, - 0x80080540, 0x48025809, 0x59a00409, 0x48025c0a, - 0x64065c10, 0x59980002, 0x80000000, 0x48033002, - 0x58f01001, 0x492de001, 0x480a5801, 0x82040400, - 0x00005c00, 0x59a0140b, 0x48080100, 0x480a5a0c, - 0x48025a00, 0x05fdffc1, 0x59a0140d, 0x8c140508, - 0x05000002, 0x8408157e, 0x8c14050a, 0x05000002, - 0x8408157c, 0x8c140504, 0x05000003, 0x82081540, - 0x20000000, 0x480a580b, 0x59a0040c, 0x48025c0c, - 0x80000580, 0x1c01f000, 0x45781000, 0x05edfa8f, - 0x647f4407, 0x90000541, 0x1c01f000, 0x4a025803, - 0xffff0000, 0x48065a02, 0x59a0020e, 0x48025a09, - 0x59a01208, 0x800810e0, 0x59a00408, 0x80080540, - 0x48025806, 0x59a0120a, 0x800810e0, 0x59a0040a, - 0x80080540, 0x48025807, 0x59a00409, 0x48025a08, - 0x59980008, 0x80000000, 0x48033008, 0x59741000, - 0x492ee800, 0x480a5800, 0x82040400, 0x00005e00, - 0x59a0120b, 0x48080000, 0x480a5c09, 0x48025c08, - 0x59a00c07, 0x59a0140d, 0x8c040508, 0x05000002, - 0x8408157e, 0x8c04050a, 0x05000002, 0x8408157c, - 0x8c040504, 0x05000003, 0x82081540, 0x20000000, - 0x480a5801, 0x59a0020e, 0x82000400, 0x0010df60, - 0x44080000, 0x80000580, 0x1c01f000, 0x8c140512, - 0x05000005, 0x8d0c0520, 0x05020003, 0x80000580, - 0x0501f002, 0x90000541, 0x4803c857, 0x1c01f000, - 0x8d0c050e, 0x05000003, 0x64074407, 0x05fdf2f8, - 0x916c0583, 0x05020014, 0x050df93f, 0x05fe02f9, - 0x59240200, 0x8c000502, 0x05000041, 0x59240005, - 0x497b4407, 0x0519f961, 0x0500000e, 0x82000d00, - 0x00ffff00, 0x0502000b, 0x82000c00, 0x00102853, - 0x50040800, 0x80040910, 0x82041580, 0x00000080, - 0x05020003, 0x641f4407, 0x05fdf2e1, 0x48074407, - 0x82000d00, 0x0000ffff, 0x48074208, 0x80000120, - 0x48034408, 0x59a80249, 0x82001500, 0x00003500, - 0x480b440a, 0x5924100b, 0x82081500, 0x00001fff, - 0x480b420b, 0x480b420b, 0x8c000502, 0x05000016, - 0x8c000506, 0x05000006, 0x90000d0a, 0x90040d8a, - 0x05020003, 0x6407420a, 0x0501f018, 0x8c00050a, - 0x05000006, 0x90000d22, 0x90040da2, 0x05020003, - 0x640f420a, 0x0501f011, 0x8c000508, 0x05000006, - 0x90000d12, 0x90040d92, 0x05020003, 0x640b420a, - 0x0501f00a, 0x0519f92d, 0x05020003, 0x6413420a, - 0x05fdf274, 0x8c000506, 0x05000003, 0x64174407, - 0x05fdf2b3, 0x6403420a, 0x05fdf26e, 0x646f4407, - 0x05fdf2af, 0x59a8005c, 0x48034408, 0x59a8005d, - 0x4803420a, 0x05fdf267, 0x42007800, 0x0010e4e5, - 0x59a00407, 0x4803c857, 0x90000c8c, 0x05fe12a9, - 0x0c01f001, 0x0010300c, 0x00102fac, 0x00102fb9, - 0x00102fc9, 0x00102fe8, 0x0010300d, 0x00102fa5, - 0x00102fa5, 0x00103019, 0x00103054, 0x00102fa6, - 0x00103067, 0x05fdf29b, 0x59a00208, 0x48007c01, - 0x59a00408, 0x48007a01, 0x05e9feec, 0x0501f061, - 0x916c0580, 0x05fc028e, 0x59a00a08, 0x59a00408, - 0x900001c0, 0x80040d40, 0x4807c857, 0x59a00a09, - 0x59a00409, 0x900001c0, 0x80040d40, 0x4807c857, - 0x0501f054, 0x916c0580, 0x05fc0281, 0x59a00408, - 0x59a01208, 0x900001c0, 0x80081540, 0x59a00409, - 0x59a01a09, 0x900001c0, 0x800c1d40, 0x42000000, - 0x00110772, 0x480fc857, 0x480bc857, 0x60000820, - 0x050df000, 0x59a00a08, 0x59a00408, 0x900001c0, - 0x80041d40, 0x820c0c80, 0x0010d32a, 0x05fe1271, - 0x820c0c80, 0x00100000, 0x05fc126e, 0x480fc857, - 0x903c7c22, 0x503c0800, 0x800409c0, 0x05000005, - 0x903c05a6, 0x05fc0267, 0x803c7800, 0x05fdf7fa, - 0x59e41001, 0x82080d00, 0xfffeffcf, 0x4807c801, - 0x440c7800, 0x46001800, 0x0201f800, 0x800c1800, - 0x46001800, 0x001005ce, 0x480bc801, 0x0501f025, - 0x59a01a08, 0x59a00408, 0x900001c0, 0x800c1d40, - 0x480c7803, 0x59a02209, 0x59a00409, 0x900001c0, - 0x80102540, 0x48107804, 0x59a0020a, 0x40001000, - 0x48007807, 0x80000040, 0x05fc124a, 0x48007808, - 0x60000880, 0x0525ff79, 0x80000540, 0x05000002, - 0x05fdf244, 0x40040000, 0x800c1c00, 0x05fc1241, - 0x4800780a, 0x480c7805, 0x48107806, 0x4978780c, - 0x59a0040a, 0x800000c4, 0x4800780b, 0x59e40001, - 0x4803c857, 0x82000540, 0x00040000, 0x4803c801, - 0x05fdf1ec, 0x49787803, 0x49787804, 0x49787808, - 0x49787807, 0x49787803, 0x49787805, 0x49787806, - 0x4978780c, 0x4978780b, 0x59e40001, 0x84000524, - 0x05fdf7f3, 0x4978781f, 0x49787814, 0x49787815, - 0x4978781d, 0x49787817, 0x49787818, 0x59a01a08, - 0x59a00408, 0x900001c0, 0x800c1d40, 0x480c780e, - 0x480c7819, 0x480c781b, 0x59a02209, 0x59a00409, - 0x900001c0, 0x80102540, 0x4810780f, 0x4810781a, - 0x4810781c, 0x59a0020a, 0x80000540, 0x05fc0211, - 0x48007813, 0x60000808, 0x40001000, 0x0525ff3f, - 0x80000540, 0x05fe020b, 0x40040000, 0x800c1c00, - 0x05fc1208, 0x480c7810, 0x48107811, 0x4a03420a, - 0x00000400, 0x59a0040a, 0x4800781e, 0x850e1d6a, - 0x59a0040b, 0x48007a12, 0x59a0020c, 0x48007c12, - 0x600c0000, 0x05e9fe2c, 0x80102000, 0x4810780d, - 0x48134209, 0x901021c0, 0x48134409, 0x59e40052, - 0x4803c857, 0x4a007816, 0x00000400, 0x903c0416, + 0x050200fa, 0x59a00a09, 0x82040480, 0x00000100, + 0x050210f6, 0x800409c0, 0x050000f4, 0x8c140502, + 0x05020089, 0x82041400, 0x00111cfa, 0x50080000, + 0x80025d40, 0x050000ed, 0x592c1a00, 0x580c0000, + 0x592c1a0c, 0x800c0580, 0x05000003, 0x0501f96f, + 0x050200e4, 0x592c1a00, 0x580c0000, 0x48025a0c, + 0x4d340000, 0x4d440000, 0x4c080000, 0x59aa88ac, + 0x81468840, 0x59a04a09, 0x0001fb08, 0x05020020, + 0x5934000f, 0x40002000, 0x80001d40, 0x0500001c, + 0x580c0003, 0x58000211, 0x80240580, 0x05000004, + 0x580c0000, 0x400c2000, 0x05fdf7f8, 0x4937c857, + 0x4947c857, 0x480fc857, 0x0501f954, 0x05020020, + 0x4d2c0000, 0x400e5800, 0x592c0800, 0x05edfb3f, + 0x5c025800, 0x40040000, 0x5934100f, 0x800c1582, + 0x0500000f, 0x4807c857, 0x4813c857, 0x48042000, + 0x800409c0, 0x05fe07e5, 0x48126810, 0x814689c0, + 0x05000013, 0x81468840, 0x83440580, 0x000007ff, + 0x05fe07da, 0x61be887f, 0x05fdf7d8, 0x800409c0, + 0x05020004, 0x497a680f, 0x497a6810, 0x05fdf7f4, + 0x4806680f, 0x40042000, 0x05fdf7d4, 0x5c001000, + 0x5c028800, 0x5c026800, 0x0501f0a6, 0x5c001000, + 0x5c028800, 0x5c026800, 0x4d300000, 0x4d2c0000, + 0x42026000, 0x00115aa4, 0x59325809, 0x812e59c0, + 0x05000018, 0x592c0003, 0x58000211, 0x80240580, + 0x05020014, 0x0501f921, 0x0502000f, 0x492fc857, + 0x4d2c0000, 0x4c140000, 0x4c080000, 0x053dfec0, + 0x5c001000, 0x5c002800, 0x5c025800, 0x05020009, + 0x4c080000, 0x0009f810, 0x05edfb04, 0x5c001000, + 0x0501f004, 0x5c025800, 0x5c026000, 0x0501f085, + 0x91326430, 0x59a8000b, 0x81300480, 0x05fc17e3, + 0x5c025800, 0x5c026000, 0x59980802, 0x80040840, + 0x48073002, 0x45781000, 0x59a00a09, 0x4807c857, + 0x40f01000, 0x58080801, 0x412c0000, 0x80040580, + 0x05000004, 0x40041000, 0x58040801, 0x05fdf7fb, + 0x58040801, 0x48041001, 0x4d2c0000, 0x412c0000, + 0x80f00580, 0x051c086d, 0x5c025800, 0x05edfada, + 0x05fdf3b0, 0x82041400, 0x00111dfa, 0x50080000, + 0x80025d40, 0x05000065, 0x592c0005, 0x80000540, + 0x05000012, 0x0501f8e9, 0x0502005e, 0x592c0805, + 0x4d2c0000, 0x40065800, 0x58040000, 0x4c080000, + 0x4c000000, 0x05edfad1, 0x5c000000, 0x5c001000, + 0x80000d40, 0x05fe07f8, 0x5c025800, 0x48025804, + 0x48025805, 0x850e1d26, 0x592c1c08, 0x592c0409, + 0x580c0900, 0x80040580, 0x05000003, 0x0501f8d3, + 0x05020048, 0x412c0000, 0x81740580, 0x05020019, + 0x59d80106, 0x80000540, 0x05000011, 0x0501f8cb, + 0x05020040, 0x42000800, 0x000fffff, 0x59d80106, + 0x80000540, 0x0500000a, 0x0502e005, 0x59da5908, + 0x4c080000, 0x05edfaa8, 0x5c001000, 0x80040840, + 0x05fe07f7, 0x4803c857, 0x0501f032, 0x8d0c0524, + 0x05000004, 0x0501f8b9, 0x0502002e, 0x850e1d24, + 0x60000802, 0x80040840, 0x0500100a, 0x82040400, + 0x00111cfa, 0x50000000, 0x80000540, 0x05fc07fa, + 0x58000012, 0x812c0580, 0x05000010, 0x05fdf7f6, + 0x59980808, 0x80040840, 0x48073008, 0x45781000, + 0x59a00a09, 0x4807c857, 0x41741000, 0x58080800, + 0x412c0000, 0x80040580, 0x05000006, 0x40041000, + 0x58040800, 0x05fdf7fb, 0x492fc857, 0x0501f011, + 0x58040800, 0x48041000, 0x4d2c0000, 0x412c0000, + 0x81740580, 0x051809e1, 0x5c025800, 0x592c0209, + 0xb000053f, 0x82000400, 0x00111efa, 0x45780000, + 0x05edfa75, 0x05fdf34b, 0x640b4407, 0x05fdf38c, + 0x647b4407, 0x05fdf38a, 0x64774407, 0x05fdf388, + 0x59a00c07, 0x8c040510, 0x0500000b, 0x64065a0a, + 0x497a580d, 0x59a0020d, 0x48025c11, 0x0001ff3c, + 0x42000000, 0x00102f76, 0x50000000, 0x48025a10, + 0x1c01f000, 0x59a00a0d, 0x90040486, 0x05001002, + 0x60040800, 0x82040c00, 0x00102f73, 0x50040000, + 0x48025a10, 0x64025a0a, 0x1c01f000, 0x00000002, + 0x00000002, 0x00000005, 0x0000000a, 0x00000014, + 0x000000ff, 0x8c14050e, 0x05020008, 0x59a0020c, + 0x82000400, 0x00111dfa, 0x50000000, 0x80000540, + 0x0500002d, 0x48025812, 0x48065a11, 0x59a01208, + 0x800810e0, 0x59a00408, 0x80080540, 0x48025808, + 0x59a0120a, 0x800810e0, 0x59a0040a, 0x80080540, + 0x48025809, 0x59a00409, 0x48025c0a, 0x64065c10, + 0x59980002, 0x80000000, 0x48033002, 0x58f01001, + 0x492de001, 0x480a5801, 0x82040400, 0x00005c00, + 0x59a0140b, 0x48080100, 0x480a5a0c, 0x48025a00, + 0x05fdffc0, 0x59a0140d, 0x8c140508, 0x05000002, + 0x8408157e, 0x8c14050a, 0x05000002, 0x8408157c, + 0x8c140504, 0x05000003, 0x82081540, 0x20000000, + 0x480a580b, 0x59a0040c, 0x48025c0c, 0x80000580, + 0x1c01f000, 0x45781000, 0x05edfa1b, 0x647f4407, + 0x90000541, 0x1c01f000, 0x4a025803, 0xffff0000, + 0x48065a02, 0x59a0020e, 0x48025a09, 0x59a01208, + 0x800810e0, 0x59a00408, 0x80080540, 0x48025806, + 0x59a0120a, 0x800810e0, 0x59a0040a, 0x80080540, + 0x48025807, 0x59a00409, 0x48025a08, 0x59980008, + 0x80000000, 0x48033008, 0x59741000, 0x492ee800, + 0x480a5800, 0x82040400, 0x00005e00, 0x59a0120b, + 0x48080000, 0x480a5c09, 0x48025c08, 0x59a00c07, + 0x59a0140d, 0x8c040508, 0x05000002, 0x8408157e, + 0x8c04050a, 0x05000002, 0x8408157c, 0x8c040504, + 0x05000003, 0x82081540, 0x20000000, 0x480a5801, + 0x59a0020e, 0x82000400, 0x00111efa, 0x44080000, + 0x80000580, 0x1c01f000, 0x8c140512, 0x05000005, + 0x8d0c0520, 0x05020003, 0x80000580, 0x0501f002, + 0x90000541, 0x4803c857, 0x1c01f000, 0x8d0c050e, + 0x05000003, 0x64074407, 0x05fdf2f5, 0x916c0583, + 0x05020014, 0x050dfa31, 0x05fe02f6, 0x59240200, + 0x8c000502, 0x05000041, 0x59240005, 0x497b4407, + 0x0519fba0, 0x0500000e, 0x82000d00, 0x00ffff00, + 0x0502000b, 0x82000c00, 0x001028fb, 0x50040800, + 0x80040910, 0x82041580, 0x00000080, 0x05020003, + 0x641f4407, 0x05fdf2de, 0x48074407, 0x82000d00, + 0x0000ffff, 0x48074208, 0x80000120, 0x48034408, + 0x59a8024c, 0x82001500, 0x00003500, 0x480b440a, + 0x5924100b, 0x82081500, 0x00001fff, 0x480b420b, + 0x480b420b, 0x8c000502, 0x05000016, 0x8c000506, + 0x05000006, 0x90000d0a, 0x90040d8a, 0x05020003, + 0x6407420a, 0x0501f018, 0x8c00050a, 0x05000006, + 0x90000d22, 0x90040da2, 0x05020003, 0x640f420a, + 0x0501f011, 0x8c000508, 0x05000006, 0x90000d12, + 0x90040d92, 0x05020003, 0x640b420a, 0x0501f00a, + 0x0519fb6c, 0x05020003, 0x6413420a, 0x05fdf271, + 0x8c000506, 0x05000003, 0x64174407, 0x05fdf2b0, + 0x6403420a, 0x05fdf26b, 0x646f4407, 0x05fdf2ac, + 0x59a8005f, 0x48034408, 0x59a80060, 0x4803420a, + 0x05fdf264, 0x42007800, 0x00112489, 0x59a00407, + 0x4803c857, 0x90000c8c, 0x05fe12a6, 0x0c01f001, + 0x001030b7, 0x00103057, 0x00103064, 0x00103074, + 0x00103093, 0x001030b8, 0x00103050, 0x00103050, + 0x001030c4, 0x001030fc, 0x00103051, 0x0010310f, + 0x05fdf298, 0x59a00208, 0x48007c01, 0x59a00408, + 0x48007a01, 0x05e9fe70, 0x0501f061, 0x916c0580, + 0x05fc028b, 0x59a00a08, 0x59a00408, 0x900001c0, + 0x80040d40, 0x4807c857, 0x59a00a09, 0x59a00409, + 0x900001c0, 0x80040d40, 0x4807c857, 0x0501f054, + 0x916c0580, 0x05fc027e, 0x59a00408, 0x59a01208, + 0x900001c0, 0x80081540, 0x59a00409, 0x59a01a09, + 0x900001c0, 0x800c1d40, 0x42000000, 0x00114716, + 0x480fc857, 0x480bc857, 0x60000820, 0x050df0f7, + 0x59a00a08, 0x59a00408, 0x900001c0, 0x80041d40, + 0x820c0c80, 0x0010daa9, 0x05fe126e, 0x820c0c80, + 0x00100000, 0x05fc126b, 0x480fc857, 0x903c7c22, + 0x503c0800, 0x800409c0, 0x05000005, 0x903c05a6, + 0x05fc0264, 0x803c7800, 0x05fdf7fa, 0x59e41001, + 0x82080d00, 0xfffeffcf, 0x4807c801, 0x440c7800, + 0x46001800, 0x0201f800, 0x800c1800, 0x46001800, + 0x00100609, 0x480bc801, 0x0501f025, 0x59a01a08, + 0x59a00408, 0x900001c0, 0x800c1d40, 0x480c7803, + 0x59a02209, 0x59a00409, 0x900001c0, 0x80102540, + 0x48107804, 0x59a0020a, 0x40001000, 0x48007807, + 0x80000040, 0x05fc1247, 0x48007808, 0x60000880, + 0x0529fb87, 0x80000540, 0x05000002, 0x05fdf241, + 0x40040000, 0x800c1c00, 0x05fc123e, 0x4800780a, + 0x480c7805, 0x48107806, 0x4978780c, 0x59a0040a, + 0x800000c4, 0x4800780b, 0x59e40001, 0x4803c857, + 0x82000540, 0x00040000, 0x4803c801, 0x05fdf1e9, + 0x49787803, 0x49787804, 0x49787808, 0x49787807, + 0x49787803, 0x49787805, 0x49787806, 0x4978780c, + 0x4978780b, 0x59e40001, 0x84000524, 0x05fdf7f3, + 0x4978781f, 0x49787814, 0x49787815, 0x4978781d, + 0x49787817, 0x49787818, 0x59a01a08, 0x59a00408, + 0x900001c0, 0x800c1d40, 0x480c780e, 0x480c7819, + 0x480c781b, 0x59a02209, 0x59a00409, 0x900001c0, + 0x80102540, 0x4810780f, 0x4810781a, 0x4810781c, + 0x59a0020a, 0x80000540, 0x05fc020e, 0x48007813, + 0x60000808, 0x40001000, 0x0529fb4d, 0x80000540, + 0x05fe0208, 0x40040000, 0x800c1c00, 0x05fc1205, + 0x480c7810, 0x48107811, 0x4a03420a, 0x00000400, + 0x59a0040a, 0x4800781e, 0x850e1d6a, 0x59a0040b, + 0x48007a12, 0x59a0020c, 0x48007c12, 0x59e42051, + 0x80102000, 0x4810780d, 0x48134209, 0x901021c0, + 0x48134409, 0x4a007816, 0x00000400, 0x903c0416, 0x48034208, 0x900001c0, 0x48034408, 0x05fdf1a5, 0x583c0800, 0x830e1d00, 0xffcfffff, 0x48ec7820, 0x4a01d802, 0x00000100, 0x583c0017, 0x82000500, 0x000000ff, 0x05020008, 0x4807c857, 0x8c040502, 0x05000004, 0x84040d48, 0x48047800, 0x1c01f000, - 0x0501f00a, 0x05f1fba5, 0x1c01f000, 0x916c0580, - 0x05fc01d3, 0x05e9fee6, 0x900801c0, 0x480b4407, - 0x48034208, 0x05fdf18b, 0x42007800, 0x0010e4e5, + 0x0501f00a, 0x05f1fb6c, 0x1c01f000, 0x916c0580, + 0x05fc01d3, 0x05e9fe6d, 0x900801c0, 0x480b4407, + 0x48034208, 0x05fdf18b, 0x42007800, 0x00112489, 0x583dd820, 0x58ef400b, 0x40ec6000, 0x583c0000, 0x48efc857, 0x49a3c857, 0x4803c857, 0x82000500, 0x0000ffc0, 0x48007800, 0x583c001d, 0x4803c857, @@ -3144,2901 +3186,3044 @@ static const uint32_t isp_2500_risc_code[] = { 0x4807440b, 0x49787818, 0x583c0017, 0x49787817, 0x82000500, 0x000000ff, 0x05fe0163, 0x05fdf165, 0x59a80005, 0x48034407, 0x59a80006, 0x48034208, - 0x59a80007, 0x48034408, 0x05fdf15e, 0x05e9fd3f, + 0x59a80007, 0x48034408, 0x05fdf15e, 0x05e9fcd2, 0x4803c856, 0x59a0020c, 0x4803c857, 0x8c00051e, - 0x050e00de, 0x8c00051a, 0x05000005, 0x050df87c, - 0x05000018, 0x65034407, 0x05fdf195, 0x05f5fed9, - 0x05000003, 0x05f5febe, 0x05000003, 0x648b4407, + 0x050e01dc, 0x8c00051a, 0x05000005, 0x050df97a, + 0x05000018, 0x65034407, 0x05fdf195, 0x05f5feb1, + 0x05000003, 0x05f5fe96, 0x05000003, 0x648b4407, 0x05fdf18f, 0x4a03c013, 0x03800300, 0x4a03c014, 0x03800380, 0x59a00c07, 0x82040580, 0x000000a0, 0x05000004, 0x82040580, 0x000000a2, 0x0502001e, 0x59a0140b, 0x82080480, 0x00000100, 0x0502101a, - 0x050df869, 0x05fe0183, 0x59a0020c, 0x8c000500, + 0x050df967, 0x05fe0183, 0x59a0020c, 0x8c000500, 0x0502001b, 0x59a00a0b, 0x800409c0, 0x05000012, - 0xb0040481, 0x05021010, 0x0509fed9, 0x0500000a, + 0xb0040481, 0x05021010, 0x0509ffd3, 0x0500000a, 0x59a01008, 0x900811c0, 0x59a0180a, 0x900c19c0, - 0x59a00a0b, 0x0509fef4, 0x4a01d809, 0x001030d8, + 0x59a00a0b, 0x0509ffee, 0x4a01d809, 0x00103180, 0x1c01f000, 0x640b4407, 0x4a03c014, 0x03800000, 0x05fdf167, 0x4a03c014, 0x03800000, 0x05fdf169, - 0x0505fd83, 0x05fc0159, 0x58ee580d, 0x59a00c07, + 0x0505fe51, 0x05fc0159, 0x58ee580d, 0x59a00c07, 0x59a0140b, 0x59a0020c, 0x8c000500, 0x0502004e, - 0x912e5c08, 0x4178c000, 0x59a0ba0b, 0x050df853, - 0x05000009, 0x05f9f889, 0x05f9f904, 0x05000003, - 0x65074407, 0x05fdf151, 0x05f9f919, 0x59a00c07, + 0x912e5c08, 0x4178c000, 0x59a0ba0b, 0x050df951, + 0x05000009, 0x05f9f861, 0x05f9f8dc, 0x05000003, + 0x65074407, 0x05fdf151, 0x05f9f8f1, 0x59a00c07, 0x59a0140b, 0x40600000, 0x812c0400, 0x5000c800, 0x82641d00, 0x000000ff, 0x4c040000, 0x4c080000, - 0x050df842, 0x05000002, 0x8408157e, 0x0501f93f, + 0x050df940, 0x05000002, 0x8408157e, 0x0501f947, 0x5c001000, 0x5c000800, 0x0500005f, 0x805cb840, 0x05000058, 0x80081000, 0x82641d00, 0x0000ff00, - 0x800c1910, 0x4c040000, 0x4c080000, 0x050df833, - 0x05000002, 0x8408157e, 0x0501f930, 0x5c001000, + 0x800c1910, 0x4c040000, 0x4c080000, 0x050df931, + 0x05000002, 0x8408157e, 0x0501f938, 0x5c001000, 0x5c000800, 0x05000050, 0x805cb840, 0x05000049, 0x80081000, 0x82641d00, 0x00ff0000, 0x800c1920, - 0x4c040000, 0x4c080000, 0x050df824, 0x05000002, - 0x8408157e, 0x0501f921, 0x5c001000, 0x5c000800, + 0x4c040000, 0x4c080000, 0x050df922, 0x05000002, + 0x8408157e, 0x0501f929, 0x5c001000, 0x5c000800, 0x05000041, 0x805cb840, 0x0500003a, 0x80081000, 0x82641d00, 0xff000000, 0x800c1930, 0x4c040000, - 0x4c080000, 0x050df815, 0x05000002, 0x8408157e, - 0x0501f912, 0x5c001000, 0x5c000800, 0x05000032, + 0x4c080000, 0x050df913, 0x05000002, 0x8408157e, + 0x0501f91a, 0x5c001000, 0x5c000800, 0x05000032, 0x805cb840, 0x0500002b, 0x80081000, 0x8060c000, 0x05fdf7c1, 0x59a0020b, 0x82000500, 0x000000ff, - 0x40001800, 0x050df805, 0x05000020, 0x4c0c0000, - 0x05f9f83a, 0x5c001800, 0x05f9f8c5, 0x59a00c07, + 0x40001800, 0x050df903, 0x05000020, 0x4c0c0000, + 0x05f9f812, 0x5c001800, 0x05f9f89d, 0x59a00c07, 0x59a0140b, 0x82040580, 0x000000e0, 0x05000013, - 0x05f9f8c7, 0x82040580, 0x000000a0, 0x05000007, + 0x05f9f89f, 0x82040580, 0x000000a0, 0x05000007, 0x82040580, 0x000000d0, 0x05fe00fd, 0x4807c857, - 0x8408157c, 0x0501f009, 0x05f9f8a4, 0x05000003, - 0x65074407, 0x05fdf0f1, 0x05f9f8b9, 0x59a00c07, - 0x59a0140b, 0x8408157e, 0x0501f8e8, 0x0500000a, - 0x4817c857, 0x0501f003, 0x0501f8e4, 0x05000006, - 0x0509ffe2, 0x05fa083a, 0x4a03c014, 0x03800000, - 0x05fdf0a0, 0x0509ffdd, 0x05fa0835, 0x4a03c014, + 0x8408157c, 0x0501f009, 0x05f9f87c, 0x05000003, + 0x65074407, 0x05fdf0f1, 0x05f9f891, 0x59a00c07, + 0x59a0140b, 0x8408157e, 0x0501f8f0, 0x0500000a, + 0x4817c857, 0x0501f003, 0x0501f8ec, 0x05000006, + 0x050df8e0, 0x05fa0812, 0x4a03c014, 0x03800000, + 0x05fdf0a0, 0x050df8db, 0x05fa080d, 0x4a03c014, 0x03800000, 0x64134407, 0x05fdf0dd, 0x4803c856, - 0x59a0020c, 0x4803c857, 0x8c00051e, 0x050a07d6, - 0x8c00051a, 0x05000005, 0x0509ffb9, 0x05000018, - 0x65034407, 0x05fdf0d2, 0x05f5fe16, 0x05000003, - 0x05f5fdfb, 0x05000003, 0x648b4407, 0x05fdf0cc, + 0x59a0020c, 0x4803c857, 0x8c00051e, 0x050e00d4, + 0x8c00051a, 0x05000005, 0x050df8b7, 0x05000018, + 0x65034407, 0x05fdf0d2, 0x05f5fdee, 0x05000003, + 0x05f5fdd3, 0x05000003, 0x648b4407, 0x05fdf0cc, 0x4a03c013, 0x03800300, 0x4a03c014, 0x03800380, 0x59a00c07, 0x82040580, 0x000000a0, 0x05000004, - 0x82040580, 0x000000a2, 0x050200b9, 0x59a0140b, - 0x82080480, 0x00000100, 0x050210b5, 0x0509ffa6, + 0x82040580, 0x000000a2, 0x050200c1, 0x59a0140b, + 0x82080480, 0x00000100, 0x050210bd, 0x050df8a4, 0x05fe00c0, 0x59a00c07, 0x59a0140b, 0x4807c857, - 0x480bc857, 0x59a0020c, 0x8c000500, 0x05020068, - 0x59a01a0b, 0x800c19c0, 0x050000a9, 0xb00c0481, - 0x050210a7, 0x0509fe12, 0x05020006, 0x640b4407, + 0x480bc857, 0x59a0020c, 0x8c000500, 0x05020070, + 0x59a01a0b, 0x800c19c0, 0x050000b1, 0xb00c0481, + 0x050210af, 0x0509ff0c, 0x05020006, 0x640b4407, 0x4a03c014, 0x03800000, 0x4803c857, 0x05fdf0a8, - 0x912e5c08, 0x4178c000, 0x59a0ba0b, 0x0509ff9f, - 0x05000007, 0x05f5ffd5, 0x05f9f850, 0x05000003, - 0x65074407, 0x05fdf09d, 0x05f9f865, 0x59a00c07, + 0x912e5c08, 0x4178c000, 0x59a0ba0b, 0x59a0020c, + 0x8c00051a, 0x05020006, 0x8c000502, 0x0500000e, + 0x0501f8ff, 0x0502004f, 0x0501f097, 0x050df895, + 0x05000007, 0x05f5ffa5, 0x05f9f820, 0x05000003, + 0x65074407, 0x05fdf095, 0x05f9f835, 0x59a00c07, 0x59a0140b, 0x4803c857, 0x40600000, 0x812c0400, - 0x4000c800, 0x4c040000, 0x4c080000, 0x0509ff8f, - 0x05000002, 0x8408157e, 0x0501f8c2, 0x5c001000, + 0x4000c800, 0x4c040000, 0x4c080000, 0x050df885, + 0x05000002, 0x8408157e, 0x0501f8c4, 0x5c001000, 0x5c000800, 0x05000080, 0x4414c800, 0x805cb840, 0x05000034, 0x80081000, 0x4c040000, 0x4c080000, - 0x0509ff82, 0x05000002, 0x8408157e, 0x0501f8b5, + 0x050df878, 0x05000002, 0x8408157e, 0x0501f8b7, 0x5c001000, 0x5c000800, 0x05000073, 0x50640000, 0x801428d0, 0x80140540, 0x4400c800, 0x805cb840, 0x05000024, 0x80081000, 0x4c040000, 0x4c080000, - 0x0509ff72, 0x05000002, 0x8408157e, 0x0501f8a5, + 0x050df868, 0x05000002, 0x8408157e, 0x0501f8a7, 0x5c001000, 0x5c000800, 0x05000063, 0x50640000, 0x801428e0, 0x80140540, 0x4400c800, 0x805cb840, 0x05000014, 0x80081000, 0x4c040000, 0x4c080000, - 0x0509ff62, 0x05000002, 0x8408157e, 0x0501f895, + 0x050df858, 0x05000002, 0x8408157e, 0x0501f897, 0x5c001000, 0x5c000800, 0x05000053, 0x50640000, 0x801428f0, 0x80140540, 0x4400c800, 0x805cb840, 0x05000004, 0x80081000, 0x8060c000, 0x05fdf7be, - 0x0509ff52, 0x05f60faa, 0x59a00a0b, 0x59a01008, + 0x050df848, 0x05f60f7a, 0x59a00a0b, 0x59a01008, 0x900811c0, 0x59a0180a, 0x900c19c0, 0x4a03c014, - 0x03800000, 0x412c0000, 0x0509f5d5, 0x4803c857, - 0x0509ff46, 0x05000036, 0x05f5ff7c, 0x05f9f808, + 0x03800000, 0x412c0000, 0x0509f6c7, 0x4803c857, + 0x050df83c, 0x05000036, 0x05f5ff4c, 0x05f5ffd8, 0x59a00c07, 0x59a0140b, 0x82040580, 0x00000098, - 0x0502000d, 0x59a80084, 0x8c000520, 0x05000006, - 0x59a8287d, 0x9014050f, 0x05020003, 0x8c140508, + 0x0502000d, 0x59a80087, 0x8c000520, 0x05000006, + 0x59a82880, 0x9014050f, 0x05020003, 0x8c140508, 0x0500001c, 0x90080581, 0x0502001a, 0x60001000, 0x0501f018, 0x82040580, 0x000000e0, 0x05000015, - 0x05f5fffb, 0x82040580, 0x000000a0, 0x05000009, - 0x82040580, 0x000000d0, 0x05fe0031, 0x4807c857, - 0x6140b801, 0x0501f84c, 0x40642800, 0x0501f011, - 0x05f5ffd6, 0x05000003, 0x65074407, 0x05fdf023, - 0x05f5ffeb, 0x59a00c07, 0x59a0140b, 0x8408157e, - 0x0501f850, 0x05020003, 0x65074407, 0x05fdf01b, - 0x59a00c07, 0x82040580, 0x00000098, 0x05f40ff6, - 0x4817c857, 0x05f5ff6a, 0x0501f003, 0x0501f845, + 0x05f5ffcb, 0x82040580, 0x000000a0, 0x05000009, + 0x82040580, 0x000000d0, 0x05fe0029, 0x4807c857, + 0x6140b801, 0x0501f84d, 0x40642800, 0x0501f011, + 0x05f5ffa6, 0x05000003, 0x65074407, 0x05fdf01b, + 0x05f5ffbb, 0x59a00c07, 0x59a0140b, 0x8408157e, + 0x0501f852, 0x05020003, 0x65074407, 0x05fdf013, + 0x59a00c07, 0x82040580, 0x00000098, 0x05f40fc6, + 0x4817c857, 0x05f5ff3a, 0x0501f003, 0x0501f847, 0x05000005, 0x48174407, 0x4a03c014, 0x03800000, - 0x05f9f7cc, 0x0509ff09, 0x05f60f61, 0x4a03c014, - 0x03800000, 0x64134407, 0x05fdf009, 0x4a03c014, - 0x03800000, 0x05fdf00b, 0x4c5c0000, 0x4c600000, + 0x05f9f7c4, 0x0509ffff, 0x05f60f31, 0x4a03c014, + 0x03800000, 0x64134407, 0x05fdf001, 0x4a03c014, + 0x03800000, 0x05fdf003, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4004b800, 0x4008c000, 0x400cc800, - 0x0501f877, 0x05000019, 0x0501f8a3, 0x0502001b, + 0x0501f8e7, 0x05000019, 0x0501f913, 0x0502001b, 0x8c60053c, 0x0502000c, 0x8c60053e, 0x05000007, 0x4060b800, 0x825cbd00, 0x0000ff00, 0x805cb910, - 0x0501f899, 0x05020011, 0x4060b800, 0x0501f896, - 0x0502000e, 0x4064b800, 0x0501f893, 0x0502000b, - 0x0501f882, 0x4ce80000, 0x6021d027, 0x0521fdb2, + 0x0501f909, 0x05020011, 0x4060b800, 0x0501f906, + 0x0502000e, 0x4064b800, 0x0501f903, 0x0502000b, + 0x0501f8f2, 0x4ce80000, 0x6021d027, 0x0525f96d, 0x5c01d000, 0x90000541, 0x5c00c800, 0x5c00c000, - 0x5c00b800, 0x1c01f000, 0x0501f878, 0x80000580, - 0x05fdf7fa, 0x4c5c0000, 0x0501f855, 0x05000008, - 0x905cbd41, 0x0501f880, 0x05020007, 0x0501f8ba, - 0x0501f8ec, 0x0501f86d, 0x90000541, 0x5c00b800, - 0x1c01f000, 0x0501f869, 0x80000580, 0x05fdf7fc, - 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4004b800, - 0x4008c000, 0x0501f842, 0x05000016, 0x0501f86e, - 0x05020019, 0x8c60053e, 0x05000009, 0x4c5c0000, - 0x4060b800, 0x825cbd00, 0x0000ff00, 0x805cb910, - 0x0501f865, 0x5c00b800, 0x0502000f, 0x4c5c0000, - 0x4060b800, 0x0501f860, 0x5c00b800, 0x0502000a, - 0x05fdffd9, 0x05000003, 0x0501f84c, 0x90000541, - 0x40642800, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x1c01f000, 0x0501f845, 0x80000580, 0x05fdf7f9, - 0x4ce80000, 0x4c580000, 0x4803c856, 0x6030b000, - 0x6029d000, 0x0521fd70, 0x4a03c013, 0x02000200, - 0x6029d000, 0x0521fd6c, 0x4a03c013, 0x02000000, - 0x8058b040, 0x05fe07f7, 0x61a00807, 0x4a03c013, - 0x03800300, 0x80040840, 0x0500000f, 0x4a03c014, - 0x03800000, 0x59e00013, 0x4a03c014, 0x03800380, - 0x82000500, 0x00000300, 0x82000580, 0x00000300, - 0x05fe07f3, 0x90000541, 0x5c00b000, 0x5c01d000, - 0x1c01f000, 0x80000580, 0x05fdf7fc, 0x4ce80000, + 0x5c00b800, 0x1c01f000, 0x0501f8e8, 0x80000580, + 0x4803c856, 0x05fdf7f9, 0x4c5c0000, 0x0501f8c4, + 0x05000008, 0x905cbd41, 0x0501f8ef, 0x05020007, + 0x0501f929, 0x0501f959, 0x0501f8dc, 0x90000541, + 0x5c00b800, 0x1c01f000, 0x0501f8d8, 0x80000580, + 0x485fc857, 0x05fdf7fb, 0x4c5c0000, 0x4c600000, + 0x4c640000, 0x4004b800, 0x4008c000, 0x0501f8b0, + 0x05000016, 0x0501f8dc, 0x05020019, 0x8c60053e, + 0x05000009, 0x4c5c0000, 0x4060b800, 0x825cbd00, + 0x0000ff00, 0x805cb910, 0x0501f8d3, 0x5c00b800, + 0x0502000f, 0x4c5c0000, 0x4060b800, 0x0501f8ce, + 0x5c00b800, 0x0502000a, 0x05fdffd8, 0x05000003, + 0x0501f8ba, 0x90000541, 0x40642800, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x0501f8b3, + 0x80000580, 0x4867c857, 0x05fdf7f8, 0x4c5c0000, + 0x4c600000, 0x4c640000, 0x4d040000, 0x4c500000, + 0x4c540000, 0x4c580000, 0x4004a000, 0x4008a800, + 0x400cb000, 0x412e0800, 0x40500800, 0x40541000, + 0x4004b800, 0x4008c000, 0x0501f881, 0x0500004f, + 0x0501f8ad, 0x05020056, 0x8c60053e, 0x05000009, + 0x4c5c0000, 0x4060b800, 0x825cbd00, 0x0000ff00, + 0x805cb910, 0x0501f8a4, 0x5c00b800, 0x0502004c, + 0x4c5c0000, 0x4060b800, 0x0501f89f, 0x5c00b800, + 0x05020047, 0x0501f86e, 0x0500003c, 0x905cbd41, + 0x0501f899, 0x05020042, 0x40581800, 0x900c1c88, + 0x05001004, 0x400cb000, 0x6020b800, 0x0501f003, + 0x4058b800, 0x4178b000, 0x0501f8cb, 0x82642d00, + 0x000000ff, 0x805cb840, 0x05000020, 0x0501f906, + 0x0501f8c5, 0x8064c8d0, 0x82640500, 0x0000ff00, + 0x80142d40, 0x805cb840, 0x05000018, 0x0501f8fe, + 0x0501f8bd, 0x8064c8e0, 0x82640500, 0x00ff0000, + 0x80142d40, 0x805cb840, 0x05000010, 0x0501f8f6, + 0x0501f8b5, 0x8064c8f0, 0x82640500, 0xff000000, + 0x80142d40, 0x805cb840, 0x05000008, 0x0501f8ee, + 0x44160800, 0x81060800, 0x40541800, 0x900c1c04, + 0x400ca800, 0x05fdf7dd, 0x44160800, 0x0501f8d7, + 0x0501f85a, 0x40581800, 0x90000541, 0x800c19c0, + 0x05000006, 0x81060800, 0x40541800, 0x900c1c04, + 0x400ca800, 0x05fdf7ad, 0x90000541, 0x5c00b000, + 0x5c00a800, 0x5c00a000, 0x5c020800, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x0501f847, + 0x80000580, 0x4867c857, 0x05fdf7f5, 0x4ce80000, + 0x4c580000, 0x4803c856, 0x6030b000, 0x6029d000, + 0x0525f8bc, 0x4a03c013, 0x02000200, 0x6029d000, + 0x0525f8b8, 0x4a03c013, 0x02000000, 0x8058b040, + 0x05fe07f7, 0x61a00807, 0x4a03c013, 0x03800300, + 0x80040840, 0x0500000f, 0x4a03c014, 0x03800000, + 0x59e00013, 0x4a03c014, 0x03800380, 0x82000500, + 0x00000300, 0x82000580, 0x00000300, 0x05fe07f3, + 0x90000541, 0x5c00b000, 0x5c01d000, 0x1c01f000, + 0x4803c856, 0x80000580, 0x05fdf7fb, 0x4ce80000, 0x61a00807, 0x4a03c013, 0x03800300, 0x80040840, 0x05000016, 0x4a03c014, 0x03800000, 0x59e00013, 0x4a03c014, 0x03800380, 0x82000500, 0x00000300, - 0x82000580, 0x00000300, 0x05fe07f3, 0x6029d000, - 0x0521fd41, 0x4a03c013, 0x01000000, 0x6029d000, - 0x0521fd3d, 0x4a03c013, 0x02000000, 0x90000541, - 0x5c01d000, 0x1c01f000, 0x4803c857, 0x05fdffc1, + 0x82000580, 0x00000300, 0x05fe07f3, 0x6055d000, + 0x0525f88c, 0x4a03c013, 0x01000000, 0x6029d000, + 0x0525f888, 0x4a03c013, 0x02000000, 0x90000541, + 0x5c01d000, 0x1c01f000, 0x4803c856, 0x05fdffc0, 0x05fe07f3, 0x05fdf7fb, 0x4a03c013, 0x01000000, - 0x4ce80000, 0x6029d000, 0x0521fd2f, 0x5c01d000, + 0x4ce80000, 0x6029d000, 0x0525f87a, 0x5c01d000, 0x4a03c013, 0x02000200, 0x4ce80000, 0x6029d000, - 0x0521fd29, 0x5c01d000, 0x4a03c013, 0x01000100, + 0x0525f874, 0x5c01d000, 0x4a03c013, 0x01000100, 0x1c01f000, 0x4c5c0000, 0x4c600000, 0x6020c000, 0x825c0500, 0x00000080, 0x800000c2, 0x82000540, 0x01000000, 0x4803c013, 0x4ce80000, 0x6029d000, - 0x0521fd19, 0x5c01d000, 0x4a03c013, 0x02000200, - 0x4ce80000, 0x6029d000, 0x0521fd13, 0x5c01d000, + 0x0525f864, 0x5c01d000, 0x4a03c013, 0x02000200, + 0x4ce80000, 0x6029d000, 0x0525f85e, 0x5c01d000, 0x4a03c013, 0x02000000, 0x805cb8c2, 0x8060c040, 0x05fe07ec, 0x4a03c013, 0x01000100, 0x4ce80000, - 0x6029d000, 0x0521fd08, 0x5c01d000, 0x4a03c013, - 0x02000200, 0x4ce80000, 0x6029d000, 0x0521fd02, + 0x6029d000, 0x0525f853, 0x5c01d000, 0x4a03c013, + 0x02000200, 0x4ce80000, 0x6029d000, 0x0525f84d, 0x5c01d000, 0x4a03c014, 0x03800000, 0x61a00807, 0x59e0b813, 0x825cbd00, 0x00000100, 0x80040840, 0x05000004, 0x405c0000, 0x80000540, 0x05fe07f9, 0x4a03c014, 0x03800380, 0x4a03c013, 0x02000000, - 0x4ce80000, 0x6029d000, 0x0521fcef, 0x5c01d000, + 0x4ce80000, 0x6029d000, 0x0525f83a, 0x5c01d000, 0x405c0000, 0x80000540, 0x5c00c000, 0x5c00b800, - 0x1c01f000, 0x4c600000, 0x4803c856, 0x4a03c013, - 0x01000100, 0x6020c000, 0x61a0c807, 0x4ce80000, - 0x6029d000, 0x0521fce0, 0x5c01d000, 0x4a03c013, - 0x02000200, 0x4a03c014, 0x03800000, 0x59e00013, - 0x4a03c014, 0x03800380, 0x82000500, 0x00000200, - 0x05020003, 0x8064c840, 0x05fe07f7, 0x4178c800, - 0x0501f007, 0x4ce80000, 0x6029d000, 0x0521fcce, - 0x5c01d000, 0x4a03c013, 0x02000200, 0x4ce80000, - 0x6029d000, 0x0521fcc8, 0x5c01d000, 0x4a03c014, - 0x03800000, 0x59e00013, 0x4a03c014, 0x03800380, - 0x82000500, 0x00000100, 0x80000110, 0x8064c8c2, - 0x8064cd40, 0x4a03c013, 0x02000000, 0x8060c040, - 0x05fe07e9, 0x4867c857, 0x5c00c000, 0x1c01f000, - 0x4803c856, 0x4a03c013, 0x01000100, 0x4ce80000, - 0x6029d000, 0x0521fcb0, 0x5c01d000, 0x4a03c013, - 0x02000200, 0x4ce80000, 0x6029d000, 0x0521fcaa, + 0x1c01f000, 0x4c600000, 0x4a03c013, 0x01000100, + 0x6020c000, 0x61a0c807, 0x4ce80000, 0x6029d000, + 0x0525f82c, 0x5c01d000, 0x4a03c013, 0x02000200, + 0x4a03c014, 0x03800000, 0x59e00013, 0x4a03c014, + 0x03800380, 0x82000500, 0x00000200, 0x05020003, + 0x8064c840, 0x05fe07f7, 0x4178c800, 0x0501f007, + 0x4ce80000, 0x6029d000, 0x0525f81a, 0x5c01d000, + 0x4a03c013, 0x02000200, 0x4ce80000, 0x6029d000, + 0x0525f814, 0x5c01d000, 0x4a03c014, 0x03800000, + 0x59e00013, 0x4a03c014, 0x03800380, 0x82000500, + 0x00000100, 0x80000110, 0x8064c8c2, 0x8064cd40, + 0x4a03c013, 0x02000000, 0x8060c040, 0x05fe07e9, + 0x5c00c000, 0x1c01f000, 0x4a03c013, 0x01000100, + 0x4ce80000, 0x6029d000, 0x0521fffe, 0x5c01d000, + 0x4a03c013, 0x02000200, 0x4ce80000, 0x6029d000, + 0x0521fff8, 0x5c01d000, 0x4a03c013, 0x02000000, + 0x1c01f000, 0x4a03c013, 0x01000000, 0x4ce80000, + 0x6029d000, 0x0521ffef, 0x5c01d000, 0x4a03c013, + 0x02000200, 0x4ce80000, 0x6029d000, 0x0521ffe9, 0x5c01d000, 0x4a03c013, 0x02000000, 0x1c01f000, - 0x59a00408, 0x59a8085c, 0x4803505c, 0x48074408, - 0x59a00a0a, 0x90040494, 0x05021002, 0x6140080f, - 0x59a8005d, 0x4807505d, 0x4803420a, 0x05f9f68d, + 0x59a00408, 0x59a8085f, 0x4803505f, 0x48074408, + 0x59a00a0a, 0x90040494, 0x05021002, 0x60500800, + 0x59a80060, 0x48075060, 0x4803420a, 0x05f9f609, 0x59a00407, 0x59a00a08, 0x900409c0, 0x80040d40, 0x59a00408, 0x59a01209, 0x900811c0, 0x80081540, 0x59a00409, 0x59a01a0a, 0x900c19c0, 0x800c1d40, 0x59a0040a, 0x59a0220b, 0x901021c0, 0x80102540, - 0x054dfeff, 0x05f8067b, 0x05f9f6d2, 0x916c0580, + 0x0551fd51, 0x05f805f7, 0x05f9f64e, 0x916c0580, 0x0500000a, 0x59a80005, 0x59a00c07, 0x80041580, - 0xb0081500, 0x05f80673, 0x80080580, 0x48035005, - 0x05e9fc49, 0x05f9f66f, 0x59a00407, 0x59a80805, + 0xb0081500, 0x05f805ef, 0x80080580, 0x48035005, + 0x05e9fb4c, 0x05f9f5eb, 0x59a00407, 0x59a80805, 0x48035005, 0x80040d80, 0x8c040512, 0x05000004, 0x59c40001, 0x84000544, 0x48038801, 0x8c04050c, - 0x05ea0c3d, 0x59a00208, 0x599c0818, 0x8c040510, - 0x05000002, 0x8400054a, 0x48035006, 0x59a00408, - 0x8c00051a, 0x05000009, 0x600018ec, 0x60140800, - 0x580c1006, 0x4a001805, 0x70000005, 0x900c1c20, - 0x80040840, 0x05fe07fb, 0x48035007, 0x05f9f651, - 0x8d0c050e, 0x05000003, 0x64074407, 0x05f9f690, - 0x0515fd02, 0x05020003, 0x645b4407, 0x05f9f68c, - 0x916c0583, 0x05000003, 0x641f4407, 0x05f9f688, - 0x59a00c07, 0x82040500, 0xffffff00, 0x05fa0689, - 0x82041580, 0x000000ff, 0x05020007, 0x59a8003d, - 0x82000500, 0x000000ff, 0x82001540, 0x0000ff00, - 0x0501f00f, 0x82040400, 0x00102853, 0x50000000, - 0x80000110, 0x82000580, 0x00000080, 0x05f80679, - 0x59a8003d, 0x82000500, 0x000000ff, 0x80041580, - 0x05f80674, 0x840409c0, 0x80041540, 0x4c080000, - 0x0531f833, 0x5c001000, 0x05020003, 0x640f4407, - 0x05f9f667, 0x48ee602d, 0x480a621e, 0x4a02641e, - 0x0000bc09, 0x64066407, 0x0509fbc5, 0x05020004, - 0x0005ffdc, 0x640b4407, 0x05f9f65d, 0x497a5a08, - 0x4a02601d, 0x0010e512, 0x497a5809, 0x4a025c08, - 0x00008000, 0x4a01d809, 0x0010342c, 0x492e6009, - 0x60ca7000, 0x0009f000, 0x8d0c050e, 0x05000003, - 0x64074407, 0x05f9f64e, 0x0515fcc0, 0x05020003, - 0x645b4407, 0x05f9f64a, 0x916c0583, 0x05000003, - 0x641f4407, 0x05f9f646, 0x59a00c07, 0x82040500, - 0xffffff00, 0x05fa0647, 0x82041580, 0x000000ff, - 0x05020007, 0x59a8003d, 0x82000500, 0x000000ff, - 0x82001540, 0x0000ff00, 0x0501f00f, 0x82040400, - 0x00102853, 0x50000000, 0x80000110, 0x82000580, - 0x00000080, 0x05f80637, 0x59a8003d, 0x82000500, - 0x000000ff, 0x80041580, 0x05f80632, 0x840409c0, - 0x80041540, 0x4c080000, 0x052dfff1, 0x5c001000, - 0x05020003, 0x640f4407, 0x05f9f625, 0x48ee602d, - 0x480a621e, 0x4a02641e, 0x0000bc05, 0x64066407, - 0x0509fb83, 0x05020004, 0x0005ffdc, 0x640b4407, - 0x05f9f61b, 0x497a5a08, 0x4a02601d, 0x0010e512, - 0x497a5809, 0x4a025c08, 0x00008000, 0x4a01d809, - 0x0010342c, 0x492e6009, 0x60ca7000, 0x0009f000, - 0x592c0009, 0x82000580, 0x01000000, 0x05fa05c9, - 0x64134407, 0x05f9f60a, 0x497b4407, 0x497b4208, - 0x8d0c0520, 0x05000008, 0x59a80098, 0x59a80899, - 0x80040480, 0x59a8089a, 0x48074407, 0x80041480, - 0x480b4208, 0x0509fc8f, 0x48034408, 0x59a8103b, - 0x59a8029c, 0x80080480, 0x4803420a, 0x495f440a, - 0x59a80048, 0x4803420c, 0x4a03440c, 0x000000fe, - 0x05f9f5b0, 0x8d0c050e, 0x05000003, 0x64074407, - 0x05f9f5ef, 0x59a00407, 0x8c000500, 0x0502000d, - 0x59a8009b, 0x81640480, 0x05001008, 0x59a8000b, - 0x81500580, 0x05000007, 0x59a80099, 0x59a81098, - 0x80080580, 0x05000003, 0x64634407, 0x05f9f5e0, - 0x850e1d58, 0x4803c856, 0x850e1d46, 0x050df867, - 0x05f9f598, 0x4803c856, 0x8d0c050e, 0x05fa05e1, - 0x59a00407, 0x8c00051e, 0x05000007, 0x4803c856, - 0x59a0020c, 0x82000480, 0x00000800, 0x0500100f, - 0x05f9f5d4, 0x4803c856, 0x59a0020c, 0x599c0a01, - 0x80040480, 0x05021002, 0x05f9f5ce, 0x59a8003b, - 0x81640580, 0x05000005, 0x64634407, 0x05f9f5c4, - 0x64174407, 0x05f9f5c2, 0x59a80249, 0x8c00050a, - 0x05fc07fc, 0x59a00407, 0x8c00051e, 0x05000033, - 0x052dff83, 0x05020003, 0x640f4407, 0x05f9f5b8, - 0x0509fb1b, 0x05020004, 0x0005ffdc, 0x640b4407, - 0x05f9f5b3, 0x497a5a08, 0x59a00407, 0x4802620c, - 0x59a0020a, 0x4802640c, 0x59a0040a, 0x4802620d, - 0x59a0020e, 0x4802620e, 0x59a0040e, 0x4802640e, - 0x59a0020f, 0x4802620f, 0x59a0040f, 0x4802640f, - 0x59a00211, 0x48026210, 0x59a00411, 0x48026410, - 0x59a0020c, 0x4802640d, 0x0501f9f9, 0x05fc07e7, - 0x48ee602d, 0x58ee580d, 0x59300210, 0x59301c10, - 0x900c19c0, 0x800c1d40, 0x5930020e, 0x5930140e, - 0x900811c0, 0x80081540, 0x592c0a09, 0x912c040a, - 0x0509fb15, 0x4a01d809, 0x00103637, 0x64074000, - 0x49334001, 0x1c01f000, 0x0509fe75, 0x05fa0595, - 0x0529f85f, 0x598e600b, 0x0529fb5a, 0x0529f85c, - 0x417a3000, 0x0529fd9b, 0x59926005, 0x813261c0, - 0x05000007, 0x0529fa8c, 0x0529f825, 0x0529f82a, - 0x60027820, 0x60ba8000, 0x0525fede, 0x811a3000, - 0x91180485, 0x05fc17f4, 0x05e9ffd1, 0x0501f88f, - 0x497b50be, 0x64034408, 0x4201d000, 0x003d0900, - 0x0521fb63, 0x59c40880, 0x4c040000, 0x59c408a3, - 0x4c040000, 0x497b4002, 0x0501f892, 0x0501f8ac, - 0x4a03a005, 0x10000000, 0x4a038805, 0x000000f0, - 0x0501f8c6, 0x0501f916, 0x0500006c, 0x59dc0806, - 0x82040500, 0x43200f80, 0x05000007, 0x82040500, - 0x80000000, 0x05000004, 0x4a034408, 0x0000dddd, - 0x0501f062, 0x59d00806, 0x82040500, 0x43dc0700, - 0x05000007, 0x82040500, 0x80000000, 0x05000004, - 0x4a034408, 0x0000dddd, 0x0501f058, 0x59c80001, - 0x800001c0, 0x05fc07e8, 0x59c80018, 0x82000500, - 0xf0000000, 0x59c00808, 0x82040d00, 0x0fffffff, - 0x80040540, 0x48038008, 0x05edfb7b, 0x59c00006, - 0x4a038006, 0x10000000, 0x59c00009, 0x82000d00, - 0x00e00000, 0x05020020, 0x6403900d, 0x59c80020, - 0x82000500, 0xff000000, 0x82000580, 0x32000000, - 0x05020019, 0x6407900d, 0x59c80020, 0x82000500, - 0xff000000, 0x82000580, 0xe1000000, 0x05020012, - 0x6403900d, 0x59c80020, 0x82000500, 0x00ffffff, - 0x6403900d, 0x59c80821, 0x82040d00, 0x00ffffff, - 0x80040580, 0x05020008, 0x59a8003d, 0x80040580, - 0x05020005, 0x59c40005, 0x82000500, 0x000000f0, - 0x05000005, 0x4803c856, 0x0501f8da, 0x640750be, - 0x0501f002, 0x0501f8e5, 0x61900000, 0x80000040, - 0x0502001a, 0x05f5f84a, 0x0502000c, 0x59c40005, - 0x82000500, 0x000000f0, 0x0502000b, 0x0501f8c0, - 0x0500000c, 0x59c00007, 0x82000500, 0x000501c0, - 0x0502000b, 0x497b4408, 0x4a034408, 0x0000aaaa, - 0x0501f00e, 0x4a034408, 0x0000bbbb, 0x0501f00b, - 0x4a034408, 0x0000cccc, 0x0501f008, 0x4a034408, - 0x0000dddd, 0x0501f005, 0x59c00807, 0x90040d0c, - 0x05fc07e3, 0x0501f002, 0x640750be, 0x0501f8c8, - 0x0509fdf6, 0x0529fb4d, 0x0501f813, 0x4201d000, - 0x000186a0, 0x0521fae2, 0x5c000800, 0x480788a3, - 0x5c000800, 0x48078880, 0x59a800be, 0x800001c0, - 0x05f804a4, 0x05f9f4f3, 0x599c0201, 0x480350bf, - 0x41780800, 0x60401076, 0x0525fa34, 0x480b50c0, - 0x1c01f000, 0x0525ffa7, 0x59b800ea, 0x90000507, - 0x90000583, 0x05020002, 0x640770e8, 0x1c01f000, - 0x600380ee, 0x4a038006, 0x30000000, 0x59c00007, - 0x8c00050a, 0x05fe07fe, 0x59c00006, 0x59a0020a, - 0x59a00c0a, 0x900409c0, 0x80040d40, 0x48078001, - 0x59a0020f, 0x59a00c0f, 0x900409c0, 0x80040d40, - 0x48078000, 0x59a0020c, 0x48038002, 0x48038003, - 0x48038005, 0x497b9009, 0x59e00003, 0x82000540, - 0x00008060, 0x4803c003, 0x1c01f000, 0x41780800, - 0x8007a0ca, 0x83d3a400, 0x00007600, 0x61000800, - 0x05f1fa72, 0x6407a00a, 0x4a03a005, 0x20000000, - 0x59d00006, 0x4a03a005, 0x30000000, 0x59d00006, - 0x8c00050a, 0x05fe07fe, 0x59d00005, 0x59a00211, - 0x59a00c11, 0x900409c0, 0x80040d40, 0x4807a001, - 0x59a0020e, 0x59a00c0e, 0x900409c0, 0x80040d40, - 0x4807a000, 0x59a0020c, 0x4803a003, 0x4803a002, - 0x4803a008, 0x1c01f000, 0x59a00002, 0x4803c857, - 0x800001c0, 0x0502004d, 0x59a800ca, 0x8c000500, - 0x05020003, 0x59a800c0, 0x48038880, 0x59c400a3, - 0x82000540, 0x00002008, 0x8400053a, 0x480388a3, - 0x59c40008, 0x82000500, 0xffffffe1, 0x82000540, - 0x00000280, 0x48038808, 0x59c80040, 0x84000534, - 0x48039040, 0x0501f8f6, 0x05020012, 0x59a8003d, - 0x800000d0, 0x90000551, 0x48039120, 0x59a8003d, - 0x82000500, 0x00ffffff, 0x82000540, 0x32000000, - 0x48039121, 0x4a039123, 0xe1290008, 0x59a8003d, - 0x82000500, 0x00ffffff, 0x48039122, 0x0501f015, - 0x59a8003d, 0x82000500, 0x000000ff, 0x900009c0, - 0x840001c0, 0x80040540, 0x90000540, 0x48039120, - 0x59a8003d, 0x82000500, 0x000000ff, 0x82000540, - 0x01000000, 0x48039121, 0x4a039123, 0x08210008, - 0x59a8003d, 0x82000500, 0x000000ff, 0x48039122, - 0x497b9124, 0x59a80cc1, 0x80040800, 0x480754c1, - 0x900409c0, 0x82040540, 0x0000aaaa, 0x48039125, - 0x497b9126, 0x497b9127, 0x59c80101, 0x0501f8c4, - 0x05020004, 0x4a039100, 0x0000e980, 0x0501f003, - 0x4a039100, 0x0000e9a0, 0x1c01f000, 0x90000541, - 0x0502500b, 0x4203e000, 0x80000000, 0x40e81000, - 0x41780800, 0x61900000, 0x0525f998, 0x5994002e, - 0x80080400, 0x4803282e, 0x80000580, 0x1c01f000, - 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, - 0x4cd80000, 0x417a3000, 0x0529fc52, 0x0529f946, - 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, - 0x5c032000, 0x1c01f000, 0x59c80007, 0x8c000500, - 0x05000002, 0x64c3900d, 0x1c01f000, 0x4a038805, - 0x00020000, 0x60f00800, 0x05f1f9e4, 0x4a038891, - 0x0000ffff, 0x59c80035, 0x48039035, 0x6503900d, - 0x600380ee, 0x05edfa5c, 0x4a038006, 0x20000000, - 0x608380ee, 0x05edfa58, 0x4a038006, 0x20000000, - 0x4a03a005, 0x20000000, 0x59d00006, 0x4a03a005, - 0x30000000, 0x59a00207, 0xb0000585, 0x05020004, - 0x59a0000d, 0x800001c0, 0x05000009, 0x4a03b805, - 0x30000001, 0x59dc0006, 0x4a03b805, 0x20000000, - 0x59dc0806, 0x8c04050a, 0x05fe07fe, 0x59d00806, - 0x8c04050a, 0x05fe07fe, 0x1c01f000, 0x0505f824, - 0x05f803fa, 0x58ee580d, 0x4d300000, 0x59a26001, - 0x59a00000, 0x4000b000, 0x80000000, 0x48034000, - 0x592c0001, 0x80000540, 0x0500001a, 0x40025800, - 0x8058b040, 0x05fe07fb, 0x58ec1007, 0x58ec1808, - 0x592c0a09, 0x4d2c0000, 0x58ec000d, 0x40025800, - 0x592c0208, 0x5c025800, 0x82000580, 0x00000103, - 0x05000006, 0x912c040a, 0x0509f96f, 0x4a01d809, - 0x00103637, 0x0501f005, 0x912c040a, 0x0509f96c, - 0x4a01d809, 0x00103637, 0x5c026000, 0x1c01f000, - 0x58ec000d, 0x40025800, 0x592c0208, 0x82000580, - 0x00000103, 0x05020004, 0x0005ffdc, 0x5c026000, - 0x05f9f394, 0x58ec000d, 0x40025800, 0x592c0408, - 0x8400055e, 0x48025c08, 0x61f6880f, 0x42003000, - 0x00fffffd, 0x050dfea7, 0x59a26001, 0x05000005, - 0x0005ffdc, 0x497b4407, 0x5c026000, 0x05f9f3c8, - 0x053dfa6a, 0x05fc07fb, 0x4a01d809, 0x00103679, - 0x05fdf7e2, 0x592c0009, 0x82000580, 0x01000000, - 0x05000013, 0x4d300000, 0x59a26001, 0x5930020d, - 0x59301c0c, 0x900001c0, 0x800c1d40, 0x5930040f, - 0x5930120f, 0x900001c0, 0x80081540, 0x592c0a09, - 0x912c040a, 0x0509f93a, 0x4a01d809, 0x00103637, - 0x64074000, 0x5c026000, 0x1c01f000, 0x4d300000, - 0x59a26001, 0x4a034408, 0x0000cccc, 0x4933c857, - 0x052dfd3c, 0x5c026000, 0x05f9f3b2, 0x4933c857, - 0x4c300000, 0x5930040d, 0x90000cb8, 0x05001003, - 0x64e25a09, 0x0501f003, 0x48025a09, 0x0501f009, - 0x800409c0, 0x05000007, 0x4c040000, 0x0509f8fc, - 0x5c000800, 0x05000004, 0x40040000, 0x05fdf7f3, - 0x90000541, 0x5c006000, 0x1c01f000, 0x59a00207, - 0xb0000584, 0x1c01f000, 0x490fc857, 0x8d0c050e, - 0x05000007, 0x05f1fcc9, 0x05020005, 0x600c0000, - 0x05f1fe91, 0x600c0000, 0x05f1fe5f, 0x59a00407, - 0x90000507, 0x0c01f001, 0x001036c3, 0x001036ca, - 0x001036e2, 0x001036c2, 0x001036c2, 0x001036c2, - 0x001036c2, 0x001036c2, 0x05f9f37e, 0x0509fcb3, - 0x60080810, 0x05f1feec, 0x90040542, 0x60080810, - 0x05f1feee, 0x0501f00e, 0x0509fcac, 0x60080810, - 0x05f1fee5, 0x90040541, 0x60080810, 0x05f1fee7, - 0x60300848, 0x05f1fee0, 0x82040540, 0x00000080, - 0x60300848, 0x05f1fee1, 0x0501f001, 0x59c80040, - 0x4c000000, 0x59a8003d, 0x4c000000, 0x59c400a3, - 0x4c000000, 0x59c40008, 0x4c000000, 0x0501f929, - 0x0500003a, 0x05e5fef9, 0x8d0c050e, 0x05000023, - 0x59c40006, 0x84000500, 0x48038806, 0x0529f96e, - 0x497b8880, 0x59c400a3, 0x82000500, 0xfcf8ffff, - 0x480388a3, 0x6012d800, 0x64078805, 0x05e9f90f, - 0x05f1fe1c, 0x497b5068, 0x64075075, 0x59a800a7, - 0x84000540, 0x480350a7, 0x4803c857, 0x4a01d809, - 0x001036fb, 0x64535078, 0x1c01f000, 0x42000000, - 0x0010dd09, 0x50000800, 0x84040d08, 0x44040000, - 0x59a800a7, 0x84000500, 0x480350a7, 0x4803c857, - 0x8d0c050e, 0x05fa033f, 0x0515f9a8, 0x05020003, - 0x645b4407, 0x05f9f332, 0x916c0583, 0x05fa0339, - 0x59c408a4, 0x90040d0f, 0x90040580, 0x05fa0335, - 0x0509fc17, 0x05fa033b, 0x59c80040, 0x4c000000, - 0x59a8003d, 0x4c000000, 0x59c400a3, 0x4c000000, - 0x59c40008, 0x4c000000, 0x59c40080, 0x4c000000, - 0x59a00210, 0x59a0bc10, 0x905cb9c0, 0x805cbd40, - 0x41784800, 0x41785000, 0x41785800, 0x41789000, - 0x41789800, 0x05fdfe31, 0x64034408, 0x0525fdec, - 0x598e600b, 0x0529f8e7, 0x0525fde9, 0x417a3000, - 0x0529fb28, 0x59926005, 0x813261c0, 0x05000007, - 0x0529f819, 0x0525fdb2, 0x0525fdb7, 0x60027820, - 0x60ba8000, 0x0525fc6b, 0x811a3000, 0x91180485, - 0x05fc17f4, 0x05e9fd5e, 0x4178c000, 0x497b4002, - 0x0501f936, 0x59a00408, 0x82000580, 0x0000dddd, - 0x05000072, 0x0501f976, 0x59a00408, 0x82000580, - 0x0000dddd, 0x0500006d, 0x59a0020d, 0x59a00c0d, - 0x80040d40, 0x05000002, 0x0501f9b8, 0x0501f9b7, - 0x05fdfe52, 0x8060c1c0, 0x05020014, 0x0501fa49, - 0x59a00408, 0x82000580, 0x0000dddd, 0x0500005f, - 0x05fdfe9b, 0x0502000a, 0x05f1fe1d, 0x05020006, - 0x645f4407, 0x05f9fae2, 0x4203e000, 0x50000000, - 0x0501f000, 0x60a85955, 0x0501f059, 0x59c80001, - 0x800001c0, 0x05fc07ee, 0x59c80801, 0x800409c0, - 0x05000006, 0x0501fa21, 0x40240000, 0x80280540, - 0x802c0540, 0x0502004e, 0x59a00002, 0x82000580, - 0xfeedbeef, 0x05000004, 0x42008800, 0x10000000, - 0x0501f003, 0x42008800, 0x10000004, 0x0501f9cf, - 0x4a034002, 0xfeedbeef, 0x0501fa22, 0x59a00408, - 0x82000580, 0x0000dddd, 0x05000038, 0x0501fa4e, - 0x59a00408, 0x82000580, 0x0000dddd, 0x05000033, - 0x05fdfe8a, 0x59c40005, 0x8c000534, 0x05000003, - 0x60ec5977, 0x0501f032, 0x05fdfe69, 0x05020006, - 0x61305999, 0x485f4210, 0x905cb9c0, 0x485f4410, - 0x0501f02b, 0x59a0040d, 0x800001c0, 0x0500000e, - 0x59a26000, 0x5930000f, 0x800001c0, 0x05fe07b8, - 0x59a26001, 0x5930080f, 0x800409c0, 0x05fe07b4, - 0x804891c0, 0x05fe07b2, 0x804c99c0, 0x05fe07b0, - 0x0501f85f, 0x805cb840, 0x05000005, 0x40240000, - 0x80280540, 0x802c0540, 0x05020015, 0x42000000, - 0x00030d40, 0x80000040, 0x0502000e, 0x59c00007, - 0x82000500, 0x000501c0, 0x05020008, 0x05f1fdc8, - 0x05020006, 0x645f4407, 0x05f9fa8d, 0x4203e000, - 0x50000000, 0x0501f000, 0x617459bb, 0x0501f004, - 0x59c00807, 0x90040d0c, 0x05fc07ef, 0x05fdfe45, - 0x59a0040d, 0x800001c0, 0x05000002, 0x0501f840, - 0x05fdfe53, 0x40240000, 0x80280540, 0x802c0540, - 0x05020003, 0x805cb9c0, 0x05fe0778, 0x0509fb7b, - 0x0529f8d2, 0x05fdfd98, 0x4201d000, 0x000186a0, - 0x0521f867, 0x5c000800, 0x48078880, 0x5c000800, - 0x48078808, 0x5c000800, 0x480788a3, 0x5c000800, - 0x4807503d, 0x5c000800, 0x48079040, 0x05e9fb22, - 0x59a00407, 0x90000503, 0x90000582, 0x0500001c, - 0x60080810, 0x05f1fdd8, 0x82040500, 0xfffffffc, - 0x60080810, 0x05f1fdd9, 0x60300848, 0x05f1fdd2, - 0x82040500, 0xffffff7f, 0x60300848, 0x05f1fdd3, - 0x0515f8d6, 0x05020003, 0x0515fc70, 0x0501f00c, - 0x4a0388a7, 0x0000f7f7, 0x42006000, 0xbeffffff, - 0x42006800, 0x80018000, 0x050dfa69, 0x42006000, - 0xfffeffff, 0x41786800, 0x050dfa65, 0x402c0000, - 0x80280540, 0x80240540, 0x05f80202, 0x48274407, - 0x482b4208, 0x482f4408, 0x05f9f252, 0x59a26000, - 0x813261c0, 0x0500000a, 0x59325809, 0x812e59c0, - 0x05000007, 0x0005ffdc, 0x05e9f999, 0x59a26001, - 0x59325809, 0x0005ffdc, 0x05e9f995, 0x1c01f000, - 0x61bc0801, 0x05f1fae9, 0x4a03503d, 0x000000ef, - 0x59c400a3, 0x8400055a, 0x8400053a, 0x480388a3, - 0x05f1fb52, 0x05020006, 0x60040000, 0x05f1fd32, - 0x60040000, 0x05f1fd00, 0x0501f013, 0x05f1fb51, - 0x05020006, 0x60000000, 0x05f1fd2b, 0x60000000, - 0x05f1fcf9, 0x0501f00c, 0x05f1fb50, 0x05020006, - 0x60080000, 0x05f1fd24, 0x60080000, 0x05f1fcf2, - 0x0501f005, 0x600c0000, 0x05f1fd1f, 0x600c0000, - 0x05f1fced, 0x6051d000, 0x051dffdb, 0x59c40008, + 0x05ea0b40, 0x59a00208, 0x599c0818, 0x8c040510, + 0x05000002, 0x8400054a, 0x48035006, 0x59a8103f, + 0x4c000000, 0x8c000510, 0x0502000e, 0x800811c0, + 0x0500001b, 0x497b503f, 0x497b523e, 0x42017800, + 0x00115aa4, 0x40bec000, 0x59a80a9f, 0x90050420, + 0x59a8003d, 0x8006cc00, 0x4967503d, 0x0501f010, + 0x800811c0, 0x0502000e, 0x59a80a9f, 0x4807523e, + 0x4a03503f, 0x00115aa4, 0x60c01000, 0x0525ff4c, + 0x82057c00, 0x00115aa4, 0x40bec000, 0x60810000, + 0x59aacc3e, 0x9166cc20, 0x4967503d, 0x5c000000, + 0x59a00408, 0x8c00051a, 0x05000009, 0x600018ec, + 0x60140800, 0x580c1006, 0x4a001805, 0x70000005, + 0x900c1c20, 0x80040840, 0x05fe07fb, 0x48035007, + 0x05f9f5ac, 0x8d0c050e, 0x05000003, 0x64074407, + 0x05f9f5eb, 0x0515fe9f, 0x05020003, 0x645b4407, + 0x05f9f5e7, 0x916c0583, 0x05000003, 0x641f4407, + 0x05f9f5e3, 0x59a00c07, 0x82040500, 0xffffff00, + 0x05fa05e4, 0x82041580, 0x000000ff, 0x05020007, + 0x59a80040, 0x82000500, 0x000000ff, 0x82001540, + 0x0000ff00, 0x0501f00f, 0x82040400, 0x001028fb, + 0x50000000, 0x80000110, 0x82000580, 0x00000080, + 0x05f805d4, 0x59a80040, 0x82000500, 0x000000ff, + 0x80041580, 0x05f805cf, 0x840409c0, 0x80041540, + 0x4c080000, 0x0531fbfb, 0x5c001000, 0x05020003, + 0x640f4407, 0x05f9f5c2, 0x48ee602d, 0x480a621e, + 0x4a02641e, 0x0000bc09, 0x64066407, 0x0509fc1a, + 0x05020004, 0x0009f810, 0x640b4407, 0x05f9f5b8, + 0x497a5a08, 0x4a02601d, 0x001124b6, 0x497a5809, + 0x4a025c08, 0x00008000, 0x4a01d809, 0x00103579, + 0x492e6009, 0x60ca7000, 0x0009f039, 0x8d0c050e, + 0x05000003, 0x64074407, 0x05f9f5a9, 0x0515fe5d, + 0x05020003, 0x645b4407, 0x05f9f5a5, 0x916c0583, + 0x05000003, 0x641f4407, 0x05f9f5a1, 0x59a00c07, + 0x82040500, 0xffffff00, 0x05fa05a2, 0x82041580, + 0x000000ff, 0x05020007, 0x59a80040, 0x82000500, + 0x000000ff, 0x82001540, 0x0000ff00, 0x0501f00f, + 0x82040400, 0x001028fb, 0x50000000, 0x80000110, + 0x82000580, 0x00000080, 0x05f80592, 0x59a80040, + 0x82000500, 0x000000ff, 0x80041580, 0x05f8058d, + 0x840409c0, 0x80041540, 0x4c080000, 0x0531fbb9, + 0x5c001000, 0x05020003, 0x640f4407, 0x05f9f580, + 0x48ee602d, 0x480a621e, 0x4a02641e, 0x0000bc05, + 0x64066407, 0x0509fbd8, 0x05020004, 0x0009f810, + 0x640b4407, 0x05f9f576, 0x497a5a08, 0x4a02601d, + 0x001124b6, 0x497a5809, 0x4a025c08, 0x00008000, + 0x4a01d809, 0x00103579, 0x492e6009, 0x60ca7000, + 0x0009f039, 0x592c0009, 0x82000580, 0x01000000, + 0x05fa0524, 0x64134407, 0x05f9f565, 0x497b4407, + 0x497b4208, 0x8d0c0520, 0x05000008, 0x59a8009b, + 0x59a8089c, 0x80040480, 0x59a8089d, 0x48074407, + 0x80041480, 0x480b4208, 0x0509fce5, 0x48034408, + 0x59a8043e, 0x4803420a, 0x495f440a, 0x59a8004b, + 0x4803420c, 0x4a03440c, 0x000000fe, 0x05f9f50d, + 0x8d0c050e, 0x05000003, 0x64074407, 0x05f9f54c, + 0x59a00407, 0x8c000500, 0x0502000d, 0x59a8009e, + 0x81640480, 0x05001008, 0x59a8000b, 0x81500580, + 0x05000007, 0x59a8009c, 0x59a8109b, 0x80080580, + 0x05000003, 0x64634407, 0x05f9f53d, 0x850e1d58, + 0x4803c856, 0x850e1d46, 0x050df911, 0x05f9f4f5, + 0x4803c856, 0x8d0c050e, 0x05fa053e, 0x59a00407, + 0x8c00051e, 0x05000007, 0x4803c856, 0x59a0020c, + 0x82000480, 0x00000800, 0x0500100f, 0x05f9f531, + 0x4803c856, 0x59a0020c, 0x599c0a01, 0x80040480, + 0x05021002, 0x05f9f52b, 0x59a8003d, 0x81640580, + 0x05000005, 0x64634407, 0x05f9f521, 0x64174407, + 0x05f9f51f, 0x59a8024c, 0x8c00050a, 0x05fc07fc, + 0x59a00407, 0x8c00051e, 0x05000033, 0x0531fb4d, + 0x05020003, 0x640f4407, 0x05f9f515, 0x0509fb72, + 0x05020004, 0x0009f810, 0x640b4407, 0x05f9f510, + 0x497a5a08, 0x59a00407, 0x4802620c, 0x59a0020a, + 0x4802640c, 0x59a0040a, 0x4802620d, 0x59a0020e, + 0x4802620e, 0x59a0040e, 0x4802640e, 0x59a0020f, + 0x4802620f, 0x59a0040f, 0x4802640f, 0x59a00211, + 0x48026210, 0x59a00411, 0x48026410, 0x59a0020c, + 0x4802640d, 0x0501f9f9, 0x05fc07e7, 0x48ee602d, + 0x58ee580d, 0x59300210, 0x59301c10, 0x900c19c0, + 0x800c1d40, 0x5930020e, 0x5930140e, 0x900811c0, + 0x80081540, 0x592c0a09, 0x912c040a, 0x0509fb6c, + 0x4a01d809, 0x00103782, 0x64074000, 0x49334001, + 0x1c01f000, 0x0509fecd, 0x05fa04f2, 0x0529fbd2, + 0x598e600b, 0x0529fecd, 0x0529fbcf, 0x417a3000, + 0x052df90e, 0x59926005, 0x813261c0, 0x05000007, + 0x0529fdff, 0x0529fb98, 0x0529fb9d, 0x60027820, + 0x60ba8000, 0x0529fa52, 0x811a3000, 0x91180485, + 0x05fc17f4, 0x05e9ff22, 0x0501f88f, 0x497b50c3, + 0x64034408, 0x4201d000, 0x003d0900, 0x0521fe83, + 0x59c40880, 0x4c040000, 0x59c408a3, 0x4c040000, + 0x497b4002, 0x0501f892, 0x0501f8ac, 0x4a03a005, + 0x10000000, 0x4a038805, 0x000000f0, 0x0501f8c6, + 0x0501f916, 0x0500006c, 0x59dc0806, 0x82040500, + 0x43200f80, 0x05000007, 0x82040500, 0x80000000, + 0x05000004, 0x4a034408, 0x0000dddd, 0x0501f062, + 0x59d00806, 0x82040500, 0x43dc0700, 0x05000007, + 0x82040500, 0x80000000, 0x05000004, 0x4a034408, + 0x0000dddd, 0x0501f058, 0x59c80001, 0x800001c0, + 0x05fc07e8, 0x59c80018, 0x82000500, 0xf0000000, + 0x59c00808, 0x82040d00, 0x0fffffff, 0x80040540, + 0x48038008, 0x05edface, 0x59c00006, 0x4a038006, + 0x10000000, 0x59c00009, 0x82000d00, 0x00e00000, + 0x05020020, 0x6403900d, 0x59c80020, 0x82000500, + 0xff000000, 0x82000580, 0x32000000, 0x05020019, + 0x6407900d, 0x59c80020, 0x82000500, 0xff000000, + 0x82000580, 0xe1000000, 0x05020012, 0x6403900d, + 0x59c80020, 0x82000500, 0x00ffffff, 0x6403900d, + 0x59c80821, 0x82040d00, 0x00ffffff, 0x80040580, + 0x05020008, 0x59a80040, 0x80040580, 0x05020005, + 0x59c40005, 0x82000500, 0x000000f0, 0x05000005, + 0x4803c856, 0x0501f8da, 0x640750c3, 0x0501f002, + 0x0501f8e5, 0x61900000, 0x80000040, 0x0502001a, + 0x05f1ff7f, 0x0502000c, 0x59c40005, 0x82000500, + 0x000000f0, 0x0502000b, 0x0501f8c0, 0x0500000c, + 0x59c00007, 0x82000500, 0x000501c0, 0x0502000b, + 0x497b4408, 0x4a034408, 0x0000aaaa, 0x0501f00e, + 0x4a034408, 0x0000bbbb, 0x0501f00b, 0x4a034408, + 0x0000cccc, 0x0501f008, 0x4a034408, 0x0000dddd, + 0x0501f005, 0x59c00807, 0x90040d0c, 0x05fc07e3, + 0x0501f002, 0x640750c3, 0x0501f8c8, 0x0509fe4e, + 0x0529fec0, 0x0501f813, 0x4201d000, 0x000186a0, + 0x0521fe02, 0x5c000800, 0x480788a3, 0x5c000800, + 0x48078880, 0x59a800c3, 0x800001c0, 0x05f80401, + 0x05f9f450, 0x599c0201, 0x480350c4, 0x41780800, + 0x60401076, 0x0525fda2, 0x480b50c5, 0x1c01f000, + 0x0529fb1a, 0x59b800ea, 0x90000507, 0x90000583, + 0x05020002, 0x640770e8, 0x1c01f000, 0x600380ee, + 0x4a038006, 0x30000000, 0x59c00007, 0x8c00050a, + 0x05fe07fe, 0x59c00006, 0x59a0020a, 0x59a00c0a, + 0x900409c0, 0x80040d40, 0x48078001, 0x59a0020f, + 0x59a00c0f, 0x900409c0, 0x80040d40, 0x48078000, + 0x59a0020c, 0x48038002, 0x48038003, 0x48038005, + 0x497b9009, 0x59e00003, 0x82000540, 0x00008060, + 0x4803c003, 0x1c01f000, 0x41780800, 0x8007a0ca, + 0x83d3a400, 0x00007600, 0x61000800, 0x05f1f998, + 0x6407a00a, 0x4a03a005, 0x20000000, 0x59d00006, + 0x4a03a005, 0x30000000, 0x59d00006, 0x8c00050a, + 0x05fe07fe, 0x59d00005, 0x59a00211, 0x59a00c11, + 0x900409c0, 0x80040d40, 0x4807a001, 0x59a0020e, + 0x59a00c0e, 0x900409c0, 0x80040d40, 0x4807a000, + 0x59a0020c, 0x4803a003, 0x4803a002, 0x4803a008, + 0x1c01f000, 0x59a00002, 0x4803c857, 0x800001c0, + 0x0502004d, 0x59a800cf, 0x8c000500, 0x05020003, + 0x59a800c5, 0x48038880, 0x59c400a3, 0x82000540, + 0x00002008, 0x8400053a, 0x480388a3, 0x59c40008, 0x82000500, 0xffffffe1, 0x82000540, 0x00000280, - 0x48038808, 0x4a0388a7, 0x0000f8f7, 0x4a038805, - 0x04000001, 0x42006000, 0xbe20bfff, 0x42006800, - 0x80018000, 0x050dfa1e, 0x42006000, 0xfffeffff, - 0x41786800, 0x050dfa1a, 0x6020b027, 0x6051d000, - 0x4c580000, 0x051dffc4, 0x05f1fd31, 0x5c00b000, - 0x05000004, 0x8058b040, 0x05fe07f9, 0x0501f029, - 0x59c40005, 0x8c000534, 0x05020005, 0x59c400a4, - 0x9000050f, 0x90000588, 0x05020022, 0x42006000, - 0x00020000, 0x050dfa0b, 0x6191d000, 0x051dffb2, - 0x42006000, 0xfeffffff, 0x42006800, 0x02000000, - 0x050df9ff, 0x42006000, 0xfdffffff, 0x41786800, - 0x050df9fb, 0x59c40001, 0x82000500, 0x00018000, - 0x82000580, 0x00018000, 0x59c400a3, 0x05020004, - 0x82000540, 0x00001000, 0x0501f003, 0x82000500, - 0xffffefff, 0x480388a3, 0x4a038805, 0x04000001, - 0x59c400a4, 0x9000050f, 0x90000580, 0x05000002, - 0x90000541, 0x1c01f000, 0x4803c856, 0x600380ee, - 0x05edf801, 0x59c00006, 0x59a0040d, 0x800001c0, - 0x05000037, 0x59a03c0d, 0x59a0020a, 0x59a01c0a, - 0x900c19c0, 0x800c1d40, 0x59a0020f, 0x59a0240f, - 0x901021c0, 0x80102540, 0x59a0020c, 0x82000500, - 0x0000fffc, 0x59a0140c, 0x900811c0, 0x80081540, - 0x480b8003, 0x052dfb7a, 0x05e40d50, 0x49334000, - 0x05e9f8f6, 0x64625a08, 0x4a025809, 0x00abcdef, - 0x492e6009, 0x492e600d, 0x481e600f, 0x6412600e, - 0x912c0415, 0x4802600c, 0x60301000, 0x901c0d81, - 0x05000008, 0x801c3840, 0x0501f963, 0x59a00408, - 0x82000580, 0x0000dddd, 0x05000011, 0x0501f004, - 0x41783800, 0x0501f95c, 0x0501f00d, 0x901c0c85, - 0x05001004, 0x40043800, 0x60f01000, 0x0501f005, - 0x80001580, 0x9008140c, 0x801c3840, 0x05fe07fe, - 0x912c0409, 0x0501f950, 0x05fe07f5, 0x497b9009, - 0x59e00003, 0x82000540, 0x00008060, 0x4803c003, - 0x4a038009, 0x00e00000, 0x1c01f000, 0x4803c856, - 0x41780800, 0x8007a0ca, 0x83d3a400, 0x00007600, - 0x61000800, 0x05edff39, 0x6407a00a, 0x4a03a005, + 0x48038808, 0x59c80040, 0x84000534, 0x48039040, + 0x0501f8f6, 0x05020012, 0x59a80040, 0x800000d0, + 0x90000551, 0x48039120, 0x59a80040, 0x82000500, + 0x00ffffff, 0x82000540, 0x32000000, 0x48039121, + 0x4a039123, 0xe1290008, 0x59a80040, 0x82000500, + 0x00ffffff, 0x48039122, 0x0501f015, 0x59a80040, + 0x82000500, 0x000000ff, 0x900009c0, 0x840001c0, + 0x80040540, 0x90000540, 0x48039120, 0x59a80040, + 0x82000500, 0x000000ff, 0x82000540, 0x01000000, + 0x48039121, 0x4a039123, 0x08210008, 0x59a80040, + 0x82000500, 0x000000ff, 0x48039122, 0x497b9124, + 0x59a80cc6, 0x80040800, 0x480754c6, 0x900409c0, + 0x82040540, 0x0000aaaa, 0x48039125, 0x497b9126, + 0x497b9127, 0x59c80101, 0x0501f8c4, 0x05020004, + 0x4a039100, 0x0000e980, 0x0501f003, 0x4a039100, + 0x0000e9a0, 0x1c01f000, 0x90000541, 0x0502500b, + 0x4203e000, 0x80000000, 0x40e81000, 0x41780800, + 0x61900000, 0x0525fd06, 0x5994002f, 0x80080400, + 0x4803282f, 0x80000580, 0x1c01f000, 0x4d900000, + 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, + 0x417a3000, 0x0529ffc5, 0x0529fcb9, 0x5c01b000, + 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, + 0x1c01f000, 0x59c80007, 0x8c000500, 0x05000002, + 0x64c3900d, 0x1c01f000, 0x4a038805, 0x00020000, + 0x60f00800, 0x05f1f90a, 0x4a038891, 0x0000ffff, + 0x59c80035, 0x48039035, 0x6503900d, 0x600380ee, + 0x05edf9af, 0x4a038006, 0x20000000, 0x608380ee, + 0x05edf9ab, 0x4a038006, 0x20000000, 0x4a03a005, 0x20000000, 0x59d00006, 0x4a03a005, 0x30000000, - 0x59d00006, 0x8c00050a, 0x05fe07fe, 0x59d00005, - 0x59a0020d, 0x800001c0, 0x05000037, 0x59a03a0d, - 0x59a00211, 0x59a01c11, 0x900c19c0, 0x800c1d40, - 0x59a0020e, 0x59a0240e, 0x901021c0, 0x80102540, - 0x59a0120c, 0x82081500, 0x0000fffc, 0x59a0040c, - 0x900001c0, 0x80081540, 0x480ba003, 0x052dfb28, - 0x05e40cfe, 0x49334001, 0x05e9f8a4, 0x64625a08, - 0x4a025809, 0x00abcdef, 0x492e6009, 0x492e600d, - 0x481e600f, 0x6412600e, 0x912c0415, 0x4802600c, - 0x60301000, 0x901c0d81, 0x05000008, 0x801c3840, - 0x0501f911, 0x59a00408, 0x82000580, 0x0000dddd, - 0x05000011, 0x0501f004, 0x41783800, 0x0501f90a, - 0x0501f00d, 0x901c0c85, 0x05001004, 0x40043800, - 0x60f01000, 0x0501f005, 0x80001580, 0x9008140c, - 0x801c3840, 0x05fe07fe, 0x912c0409, 0x0501f8fe, - 0x05fe07f5, 0x1c01f000, 0x4803c856, 0x59a0020d, - 0x800001c0, 0x05000020, 0x904c0582, 0x0500003a, - 0x59a26001, 0x5930380f, 0x801c39c0, 0x05000036, - 0x801c3840, 0x481e600f, 0x5932580d, 0x5930080c, - 0x50042000, 0x58041801, 0x58041002, 0x82081500, - 0xfffffffc, 0x5930000e, 0x80000000, 0x90000d85, - 0x05020008, 0x497a600e, 0x592e5801, 0x812e59c0, - 0x05000018, 0x492e600d, 0x912c0c09, 0x0501f004, - 0x4802600e, 0x5930080c, 0x90040c03, 0x4806600c, - 0x0501f010, 0x59a0120c, 0x82081500, 0x0000fffc, + 0x59a00207, 0xb0000585, 0x05020004, 0x59a0000d, + 0x800001c0, 0x05000009, 0x4a03b805, 0x30000001, + 0x59dc0006, 0x4a03b805, 0x20000000, 0x59dc0806, + 0x8c04050a, 0x05fe07fe, 0x59d00806, 0x8c04050a, + 0x05fe07fe, 0x1c01f000, 0x0505f84f, 0x05f80357, + 0x58ee580d, 0x4d300000, 0x59a26001, 0x59a00000, + 0x4000b000, 0x80000000, 0x48034000, 0x592c0001, + 0x80000540, 0x0500001a, 0x40025800, 0x8058b040, + 0x05fe07fb, 0x58ec1007, 0x58ec1808, 0x592c0a09, + 0x4d2c0000, 0x58ec000d, 0x40025800, 0x592c0208, + 0x5c025800, 0x82000580, 0x00000103, 0x05000006, + 0x912c040a, 0x0509f9c6, 0x4a01d809, 0x00103782, + 0x0501f005, 0x912c040a, 0x0509f9c3, 0x4a01d809, + 0x00103782, 0x5c026000, 0x1c01f000, 0x58ec000d, + 0x40025800, 0x592c0208, 0x82000580, 0x00000103, + 0x05020004, 0x0009f810, 0x5c026000, 0x05f9f2f1, + 0x58ec000d, 0x40025800, 0x592c0408, 0x8400055e, + 0x48025c08, 0x61f6880f, 0x42003000, 0x00fffffd, + 0x050dff77, 0x59a26001, 0x05000005, 0x0009f810, + 0x497b4407, 0x5c026000, 0x05f9f325, 0x053dfeb7, + 0x05fc07fb, 0x4a01d809, 0x001037c4, 0x05fdf7e2, + 0x592c0009, 0x82000580, 0x01000000, 0x05000013, + 0x4d300000, 0x59a26001, 0x5930020d, 0x59301c0c, + 0x900001c0, 0x800c1d40, 0x5930040f, 0x5930120f, + 0x900001c0, 0x80081540, 0x592c0a09, 0x912c040a, + 0x0509f991, 0x4a01d809, 0x00103782, 0x64074000, + 0x5c026000, 0x1c01f000, 0x4d300000, 0x59a26001, + 0x4a034408, 0x0000cccc, 0x4933c857, 0x0531f906, + 0x5c026000, 0x05f9f30f, 0x4933c857, 0x4c300000, + 0x5930040d, 0x90000cb8, 0x05001003, 0x64e25a09, + 0x0501f003, 0x48025a09, 0x0501f009, 0x800409c0, + 0x05000007, 0x4c040000, 0x0509f953, 0x5c000800, + 0x05000004, 0x40040000, 0x05fdf7f3, 0x90000541, + 0x5c006000, 0x1c01f000, 0x59a00207, 0xb0000584, + 0x1c01f000, 0x490fc857, 0x8d0c050e, 0x05000007, + 0x05f1fbfe, 0x05020005, 0x600c0000, 0x05f1fdc6, + 0x600c0000, 0x05f1fd94, 0x59a00407, 0x90000507, + 0x0c01f001, 0x0010380e, 0x00103815, 0x0010383c, + 0x0010380d, 0x0010380d, 0x0010380d, 0x0010380d, + 0x0010380d, 0x05f9f2db, 0x0509fd5c, 0x60080810, + 0x05f1fe21, 0x90040542, 0x60080810, 0x05f1fe23, + 0x0501f00d, 0x60080810, 0x05f1fe1b, 0x90040541, + 0x60080810, 0x05f1fe1d, 0x60300848, 0x05f1fe16, + 0x82040540, 0x00000080, 0x60300848, 0x05f1fe17, + 0x0501f001, 0x0509fd49, 0x59c80040, 0x4c000000, + 0x59a80040, 0x4c000000, 0x59c400a3, 0x4c000000, + 0x59c40008, 0x4c000000, 0x0501f948, 0x05000049, + 0x0515fbac, 0x42006000, 0xfeffffff, 0x42006800, + 0x02000000, 0x050dfc1d, 0x42006000, 0xfdffffff, + 0x41786800, 0x050dfc19, 0x05f1fdf5, 0x59c408a4, + 0x90040d0f, 0x90040d80, 0x0500003a, 0x05e5fdda, + 0x8d0c050e, 0x05000023, 0x59c40006, 0x84000500, + 0x48038806, 0x0529fcd2, 0x497b8880, 0x59c400a3, + 0x82000500, 0xfcf8ffff, 0x480388a3, 0x6012d800, + 0x64078805, 0x05e5ffe4, 0x05f1fd42, 0x497b506b, + 0x64075078, 0x59a800aa, 0x84000540, 0x480350aa, + 0x4803c857, 0x4a01d809, 0x00103855, 0x6453507b, + 0x1c01f000, 0x42000000, 0x00111c8f, 0x50000800, + 0x84040d08, 0x44040000, 0x59a800aa, 0x84000500, + 0x480350aa, 0x4803c857, 0x8d0c050e, 0x05fa028d, + 0x0515fb38, 0x05020003, 0x645b4407, 0x05f9f280, + 0x916c0583, 0x05fa0287, 0x59c408a4, 0x90040d0f, + 0x90040580, 0x05fa0283, 0x0509fc60, 0x05fa0289, + 0x59c80040, 0x4c000000, 0x59a80040, 0x4c000000, + 0x59c400a3, 0x4c000000, 0x59c40008, 0x4c000000, + 0x59c40080, 0x4c000000, 0x59a00210, 0x59a0bc10, + 0x905cb9c0, 0x805cbd40, 0x41784800, 0x41785000, + 0x41785800, 0x41789000, 0x41789800, 0x05fdfe22, + 0x64034408, 0x0529f950, 0x598e600b, 0x0529fc4b, + 0x0529f94d, 0x417a3000, 0x0529fe8c, 0x59926005, + 0x813261c0, 0x05000007, 0x0529fb7d, 0x0529f916, + 0x0529f91b, 0x60027820, 0x60ba8000, 0x0525ffd0, + 0x811a3000, 0x91180485, 0x05fc17f4, 0x05e9fca0, + 0x4178c000, 0x497b4002, 0x0501f94d, 0x59a00408, + 0x82000580, 0x0000dddd, 0x05000082, 0x0501f98d, + 0x59a00408, 0x82000580, 0x0000dddd, 0x0500007d, + 0x59a0020d, 0x59a00c0d, 0x80040d40, 0x05000002, + 0x0501f9cf, 0x0501f9ce, 0x05fdfe43, 0x8060c1c0, + 0x0502001c, 0x0501fa62, 0x59a00408, 0x82000580, + 0x0000dddd, 0x0500006f, 0x05fdfe8c, 0x05020012, + 0x05f1fd43, 0x0502000e, 0x59c40004, 0x48034409, + 0x59c400a4, 0x4803420a, 0x59c40005, 0x4803440a, + 0x4a034209, 0x00000555, 0x645f4407, 0x05f9fa28, + 0x4203e000, 0x50000000, 0x0501f000, 0x60a85955, + 0x0501f061, 0x59c80001, 0x800001c0, 0x05fc07e6, + 0x59c80801, 0x800409c0, 0x05000006, 0x0501fa32, + 0x40240000, 0x80280540, 0x802c0540, 0x05020056, + 0x59a00002, 0x82000580, 0xfeedbeef, 0x05000004, + 0x42008800, 0x10000000, 0x0501f003, 0x42008800, + 0x10000004, 0x0501f9df, 0x4a034002, 0xfeedbeef, + 0x0501fa33, 0x59a00408, 0x82000580, 0x0000dddd, + 0x05000040, 0x0501fa5f, 0x59a00408, 0x82000580, + 0x0000dddd, 0x0500003b, 0x05fdfe73, 0x59c40005, + 0x8c000534, 0x05000003, 0x60ec5977, 0x0501f03a, + 0x05fdfe52, 0x05020006, 0x61305999, 0x485f4210, + 0x905cb9c0, 0x485f4410, 0x0501f033, 0x59a0040d, + 0x800001c0, 0x0500000e, 0x59a26000, 0x5930000f, + 0x800001c0, 0x05fe07b0, 0x59a26001, 0x5930080f, + 0x800409c0, 0x05fe07ac, 0x804891c0, 0x05fe07aa, + 0x804c99c0, 0x05fe07a8, 0x0501f867, 0x805cb840, + 0x05000005, 0x40240000, 0x80280540, 0x802c0540, + 0x0502001d, 0x42000000, 0x00030d40, 0x80000040, + 0x05020016, 0x59c00007, 0x82000500, 0x000501c0, + 0x05020010, 0x05f1fce6, 0x0502000e, 0x59c40004, + 0x48034409, 0x59c400a4, 0x4803420a, 0x59c40005, + 0x4803440a, 0x4a034209, 0x00000666, 0x645f4407, + 0x05f9f9cb, 0x4203e000, 0x50000000, 0x0501f000, + 0x617459bb, 0x0501f004, 0x59c00807, 0x90040d0c, + 0x05fc07e7, 0x05fdfe26, 0x59a0040d, 0x800001c0, + 0x05000002, 0x0501f840, 0x05fdfe34, 0x40240000, + 0x80280540, 0x802c0540, 0x05020003, 0x805cb9c0, + 0x05fe0768, 0x0509fbb4, 0x0529fc26, 0x05fdfd79, + 0x4201d000, 0x000186a0, 0x0521fb68, 0x5c000800, + 0x48078880, 0x5c000800, 0x48078808, 0x5c000800, + 0x480788a3, 0x5c000800, 0x48075040, 0x5c000800, + 0x48079040, 0x05e9fa1a, 0x59a00407, 0x90000503, + 0x90000582, 0x0500001c, 0x60080810, 0x05f1fcee, + 0x82040500, 0xfffffffc, 0x60080810, 0x05f1fcef, + 0x60300848, 0x05f1fce8, 0x82040500, 0xffffff7f, + 0x60300848, 0x05f1fce9, 0x0515fa56, 0x05020003, + 0x0515fdf6, 0x0501f00c, 0x4a0388a7, 0x0000f7f7, + 0x42006000, 0xbeffffff, 0x42006800, 0x80018000, + 0x050dfaf6, 0x42006000, 0xfffeffff, 0x41786800, + 0x050dfaf2, 0x402c0000, 0x80280540, 0x80240540, + 0x05f80140, 0x48274407, 0x482b4208, 0x482f4408, + 0x05f9f190, 0x59a26000, 0x813261c0, 0x0500000a, + 0x59325809, 0x812e59c0, 0x05000007, 0x0009f810, + 0x05e9f866, 0x59a26001, 0x59325809, 0x0009f810, + 0x05e9f862, 0x1c01f000, 0x61bc0801, 0x05f1f9ff, + 0x4a035040, 0x000000ef, 0x59c400a3, 0x8400055a, + 0x8400053a, 0x480388a3, 0x05f1fa68, 0x05020006, + 0x60040000, 0x05f1fc48, 0x60040000, 0x05f1fc16, + 0x0501f013, 0x05f1fa67, 0x05020006, 0x60000000, + 0x05f1fc41, 0x60000000, 0x05f1fc0f, 0x0501f00c, + 0x05f1fa66, 0x05020006, 0x60080000, 0x05f1fc3a, + 0x60080000, 0x05f1fc08, 0x0501f005, 0x600c0000, + 0x05f1fc35, 0x600c0000, 0x05f1fc03, 0x6051d000, + 0x0521fadc, 0x59c40008, 0x82000500, 0xffffffe1, + 0x82000540, 0x00000280, 0x48038808, 0x4a0388a7, + 0x0000f8f7, 0x4a038805, 0x04000001, 0x42006000, + 0xbe20bfff, 0x42006800, 0x80018000, 0x050dfaab, + 0x42006000, 0xfffeffff, 0x41786800, 0x050dfaa7, + 0x6020b027, 0x6051d000, 0x4c580000, 0x0521fac5, + 0x05f1fc47, 0x5c00b000, 0x05000006, 0x8058b040, + 0x05fe07f9, 0x4a034209, 0x00000111, 0x0501f02e, + 0x59c40005, 0x8c000534, 0x05020008, 0x4a034209, + 0x00000222, 0x59c400a4, 0x9000050f, 0x90000588, + 0x05020025, 0x497b4209, 0x42006000, 0x00020000, + 0x050dfa93, 0x6191d000, 0x0521faae, 0x42006000, + 0xfeffffff, 0x42006800, 0x02000000, 0x050dfa87, + 0x42006000, 0xfdffffff, 0x41786800, 0x050dfa83, + 0x59c40001, 0x82000500, 0x00018000, 0x82000580, + 0x00018000, 0x59c400a3, 0x05020004, 0x82000540, + 0x00001000, 0x0501f003, 0x82000500, 0xffffefff, + 0x480388a3, 0x4a038805, 0x04000001, 0x59c400a4, + 0x9000050f, 0x90000580, 0x05000004, 0x4a034209, + 0x00000333, 0x90000541, 0x1c01f000, 0x4803c856, + 0x600380ee, 0x05e9ff2e, 0x59c00006, 0x59a0040d, + 0x800001c0, 0x05000037, 0x59a03c0d, 0x59a0020a, + 0x59a01c0a, 0x900c19c0, 0x800c1d40, 0x59a0020f, + 0x59a0240f, 0x901021c0, 0x80102540, 0x59a0020c, + 0x82000500, 0x0000fffc, 0x59a0140c, 0x900811c0, + 0x80081540, 0x480b8003, 0x052dff1e, 0x05e40c1a, + 0x49334000, 0x05e5ffbc, 0x64625a08, 0x4a025809, + 0x00abcdef, 0x492e6009, 0x492e600d, 0x481e600f, + 0x6412600e, 0x912c0415, 0x4802600c, 0x60301000, + 0x901c0d81, 0x05000008, 0x801c3840, 0x0501f965, + 0x59a00408, 0x82000580, 0x0000dddd, 0x05000011, + 0x0501f004, 0x41783800, 0x0501f95e, 0x0501f00d, + 0x901c0c85, 0x05001004, 0x40043800, 0x60f01000, + 0x0501f005, 0x80001580, 0x9008140c, 0x801c3840, + 0x05fe07fe, 0x912c0409, 0x0501f952, 0x05fe07f5, + 0x497b9009, 0x59e00003, 0x82000540, 0x00008060, + 0x4803c003, 0x4a038009, 0x00e00000, 0x1c01f000, + 0x4803c856, 0x41780800, 0x8007a0ca, 0x83d3a400, + 0x00007600, 0x61000800, 0x05edfe39, 0x6407a00a, + 0x4a03a005, 0x20000000, 0x59d00006, 0x4a03a005, + 0x30000000, 0x59d00006, 0x8c00050a, 0x05fe07fe, + 0x59d00005, 0x59a0020d, 0x800001c0, 0x05000037, + 0x59a03a0d, 0x59a00211, 0x59a01c11, 0x900c19c0, + 0x800c1d40, 0x59a0020e, 0x59a0240e, 0x901021c0, + 0x80102540, 0x59a0120c, 0x82081500, 0x0000fffc, 0x59a0040c, 0x900001c0, 0x80081540, 0x480ba003, - 0x59a0020e, 0x59a0240e, 0x901021c0, 0x80102540, - 0x59a00211, 0x59a01c11, 0x900c19c0, 0x800c1d40, - 0x6061d075, 0x051dfefa, 0x6423a00a, 0x480ba002, - 0x59a800bf, 0x4803a008, 0x4813a000, 0x480fa001, - 0x4a03a005, 0x10000000, 0x05e45c9c, 0x804c9800, - 0x90000541, 0x1c01f000, 0x4847c857, 0x59a0040d, - 0x800001c0, 0x05000020, 0x90480582, 0x0500003e, - 0x59a26000, 0x5930380f, 0x801c39c0, 0x0500003a, - 0x801c3840, 0x481e600f, 0x5932580d, 0x5930080c, - 0x50042000, 0x58041801, 0x58041002, 0x82081500, - 0xfffffffc, 0x5930000e, 0x80000000, 0x90000d85, - 0x05020008, 0x497a600e, 0x592e5801, 0x812e59c0, - 0x0500001b, 0x492e600d, 0x912c0c09, 0x0501f004, - 0x4802600e, 0x5930080c, 0x90040c03, 0x4806600c, - 0x0501f013, 0x82440580, 0x10000000, 0x0502001e, - 0x59a0020f, 0x59a0240f, 0x901021c0, 0x80102540, - 0x59a0020a, 0x59a01c0a, 0x900c19c0, 0x800c1d40, - 0x59a0020c, 0x82000500, 0x0000fffc, 0x59a0140c, - 0x900811c0, 0x80081540, 0x480b8003, 0x48138000, - 0x480f8001, 0x480b8002, 0x59c80018, 0x82000500, - 0xf0000000, 0x59c02008, 0x82102500, 0x0fffffff, - 0x80100540, 0x48038008, 0x48478006, 0x80489000, - 0x9060c541, 0x1c01f000, 0x59c00009, 0x4803c857, - 0x82000d00, 0x00e00000, 0x0500000d, 0x485f4210, - 0x905cb9c0, 0x485f4410, 0x8c00052e, 0x05000002, - 0x80285000, 0x8c00052c, 0x05000002, 0x80244800, - 0x8c00052a, 0x05000002, 0x802c5800, 0x1c01f000, - 0x59d00806, 0x82040500, 0x43dc0700, 0x05000007, + 0x052dfecc, 0x05e40bc8, 0x49334001, 0x05e5ff6a, + 0x64625a08, 0x4a025809, 0x00abcdef, 0x492e6009, + 0x492e600d, 0x481e600f, 0x6412600e, 0x912c0415, + 0x4802600c, 0x60301000, 0x901c0d81, 0x05000008, + 0x801c3840, 0x0501f913, 0x59a00408, 0x82000580, + 0x0000dddd, 0x05000011, 0x0501f004, 0x41783800, + 0x0501f90c, 0x0501f00d, 0x901c0c85, 0x05001004, + 0x40043800, 0x60f01000, 0x0501f005, 0x80001580, + 0x9008140c, 0x801c3840, 0x05fe07fe, 0x912c0409, + 0x0501f900, 0x05fe07f5, 0x1c01f000, 0x4803c856, + 0x59a0020d, 0x800001c0, 0x05000020, 0x904c0582, + 0x0500003b, 0x59a26001, 0x5930380f, 0x801c39c0, + 0x05000037, 0x801c3840, 0x481e600f, 0x5932580d, + 0x5930080c, 0x50042000, 0x58041801, 0x58041002, + 0x82081500, 0xfffffffc, 0x5930000e, 0x80000000, + 0x90000d85, 0x05020008, 0x497a600e, 0x592e5801, + 0x812e59c0, 0x05000018, 0x492e600d, 0x912c0c09, + 0x0501f004, 0x4802600e, 0x5930080c, 0x90040c03, + 0x4806600c, 0x0501f010, 0x59a0120c, 0x82081500, + 0x0000fffc, 0x59a0040c, 0x900001c0, 0x80081540, + 0x480ba003, 0x59a0020e, 0x59a0240e, 0x901021c0, + 0x80102540, 0x59a00211, 0x59a01c11, 0x900c19c0, + 0x800c1d40, 0x6061d075, 0x0521f9f4, 0x6423a00a, + 0x480ba002, 0x59a800c4, 0x4803a008, 0x4813a000, + 0x480fa001, 0x59d00805, 0x4a03a005, 0x10000000, + 0x05e45b65, 0x804c9800, 0x90000541, 0x1c01f000, + 0x4847c857, 0x59a0040d, 0x800001c0, 0x05000020, + 0x90480582, 0x0500003f, 0x59a26000, 0x5930380f, + 0x801c39c0, 0x0500003b, 0x801c3840, 0x481e600f, + 0x5932580d, 0x5930080c, 0x50042000, 0x58041801, + 0x58041002, 0x82081500, 0xfffffffc, 0x5930000e, + 0x80000000, 0x90000d85, 0x05020008, 0x497a600e, + 0x592e5801, 0x812e59c0, 0x0500001b, 0x492e600d, + 0x912c0c09, 0x0501f004, 0x4802600e, 0x5930080c, + 0x90040c03, 0x4806600c, 0x0501f013, 0x82440580, + 0x10000000, 0x0502001f, 0x59a0020f, 0x59a0240f, + 0x901021c0, 0x80102540, 0x59a0020a, 0x59a01c0a, + 0x900c19c0, 0x800c1d40, 0x59a0020c, 0x82000500, + 0x0000fffc, 0x59a0140c, 0x900811c0, 0x80081540, + 0x480b8003, 0x48138000, 0x480f8001, 0x480b8002, + 0x59c80018, 0x82000500, 0xf0000000, 0x59c02008, + 0x82102500, 0x0fffffff, 0x80100540, 0x48038008, + 0x59c00806, 0x48478006, 0x80489000, 0x9060c541, + 0x1c01f000, 0x59c00009, 0x4803c857, 0x82000d00, + 0x00e00000, 0x0500000d, 0x485f4210, 0x905cb9c0, + 0x485f4410, 0x8c00052e, 0x05000002, 0x80285000, + 0x8c00052c, 0x05000002, 0x80244800, 0x8c00052a, + 0x05000002, 0x802c5800, 0x1c01f000, 0x59d00806, + 0x82040500, 0x43dc0700, 0x05000007, 0x82040500, + 0x80000000, 0x05000004, 0x4a034408, 0x0000dddd, + 0x0501f027, 0x59a0020d, 0x800001c0, 0x05000024, + 0x59d00806, 0x4807c857, 0x8c04053e, 0x05000020, + 0x8c040504, 0x0500001e, 0x4a03a005, 0x20000000, + 0x82040d00, 0x43dc0700, 0x05000004, 0x4a034408, + 0x0000dddd, 0x0501f016, 0x904c0483, 0x05e61aee, + 0x404c0000, 0x0c01f001, 0x00103b2d, 0x00103b2e, + 0x00103b34, 0x05e5fae8, 0x80000040, 0x40009800, + 0x05fdff43, 0x0500000a, 0x05fdff41, 0x0501f008, + 0x80000040, 0x40009800, 0x59d00806, 0x4807c857, + 0x8c04053e, 0x05fe07e5, 0x05fdff39, 0x1c01f000, + 0x59c00807, 0x82040500, 0x00f507c0, 0x05000007, 0x82040500, 0x80000000, 0x05000004, 0x4a034408, - 0x0000dddd, 0x0501f027, 0x59a0020d, 0x800001c0, - 0x05000024, 0x59d00806, 0x4807c857, 0x8c04053e, - 0x05000020, 0x8c040504, 0x0500001e, 0x4a03a005, - 0x20000000, 0x82040d00, 0x43dc0700, 0x05000004, - 0x4a034408, 0x0000dddd, 0x0501f016, 0x904c0483, - 0x05e61c26, 0x404c0000, 0x0c01f001, 0x001039ba, - 0x001039bb, 0x001039c1, 0x05e5fc20, 0x80000040, - 0x40009800, 0x05fdff45, 0x0500000a, 0x05fdff43, - 0x0501f008, 0x80000040, 0x40009800, 0x59d00806, - 0x4807c857, 0x8c04053e, 0x05fe07e5, 0x05fdff3b, - 0x1c01f000, 0x59c00807, 0x82040500, 0x00f507c0, - 0x05000007, 0x82040500, 0x80000000, 0x05000004, - 0x4a034408, 0x0000dddd, 0x0501f02a, 0x59a0040d, - 0x800001c0, 0x05000027, 0x59c00807, 0x4807c857, - 0x8c04053e, 0x05000023, 0x59c00807, 0x4a038006, - 0x20000000, 0x82040d00, 0x00f507c0, 0x05000004, - 0x4a034408, 0x0000dddd, 0x0501f01a, 0x90480483, - 0x05e61bf6, 0x40480000, 0x0c01f001, 0x001039ea, - 0x001039eb, 0x001039f3, 0x05e5fbf0, 0x80000040, - 0x40009000, 0x42008800, 0x10000004, 0x05fdff53, - 0x0500000c, 0x05fdff51, 0x0501f00a, 0x80000040, - 0x40009000, 0x59c00807, 0x4807c857, 0x8c04053e, - 0x05fe07e2, 0x42008800, 0x10000004, 0x05fdff47, - 0x1c01f000, 0x492fc857, 0x4000a800, 0x4a03b805, - 0x20000000, 0x59dc0006, 0x4a03b805, 0x30000000, - 0x4813b800, 0x480fb801, 0x480bb802, 0x4857b803, - 0x4a03b805, 0x30000002, 0x59dc0006, 0x4a03b805, - 0x70000001, 0x59dc0006, 0x4a03b805, 0x10000000, - 0x59dc0006, 0x8c00053e, 0x05fc07fe, 0x4a03b805, - 0x20000000, 0x59dc0006, 0x82000500, 0x43200f80, - 0x05000005, 0x4a034408, 0x0000dddd, 0x80000580, - 0x0501f00b, 0x59dc2000, 0x59dc1801, 0x801c39c0, - 0x05000007, 0x4d2c0000, 0x05e5ff60, 0x5c000800, - 0x05e40bb6, 0x642a5a08, 0x492c0801, 0x1c01f000, - 0x49cbc857, 0x59c80003, 0x82000500, 0xffffe0ff, - 0x48039003, 0x61f00800, 0x05edfdc8, 0x4a03902c, - 0x00200000, 0x61d0b003, 0x59c8002c, 0x8c00052c, - 0x05000006, 0x8058b040, 0x05fe07fc, 0x600c0080, - 0x41781000, 0x0501f148, 0x640b50c8, 0x42006000, - 0x00103b96, 0x50301000, 0x480bc857, 0x41784800, - 0x4a03902d, 0x00008000, 0x61d0b003, 0x59c8002c, - 0x8c000534, 0x05000006, 0x8058b040, 0x05fe07fc, - 0x600c0080, 0x41781000, 0x0501f137, 0x0501f8ab, - 0x80244800, 0x82081400, 0x02020202, 0x82240580, - 0x000003b1, 0x05fe07fa, 0x0501f93f, 0x41784800, - 0x50301000, 0x0501f8cc, 0x80244800, 0x82081400, - 0x02020202, 0x82240580, 0x000003b1, 0x05fe07fa, - 0x80306000, 0x82300580, 0x00103b98, 0x05fe07de, - 0x59a808c7, 0x800409c0, 0x05000005, 0x60100080, - 0x60081000, 0x59a818c6, 0x0501f11b, 0x42006000, - 0x00103b96, 0x644350c8, 0x50301000, 0x480bc857, - 0x41784800, 0x4a03902d, 0x00000800, 0x0501f887, - 0x80244800, 0x82081400, 0x02020202, 0x90240598, - 0x05fe07fb, 0x0501f91c, 0x41784800, 0x50301000, - 0x0501f8a9, 0x80244800, 0x82081400, 0x02020202, - 0x90240598, 0x05fe07fb, 0x80306000, 0x82300580, - 0x00103b98, 0x05fe07e9, 0x59a808c7, 0x800409c0, - 0x05000005, 0x60100080, 0x60401000, 0x59a818c6, - 0x0501f0f9, 0x42006000, 0x00103b96, 0x642350c8, - 0x50301000, 0x480bc857, 0x41784800, 0x4a03902d, - 0x00000400, 0x0501f865, 0x80244800, 0x82081400, - 0x03030303, 0x82240580, 0x00000088, 0x05fe07fa, - 0x0501f8f9, 0x41784800, 0x50301000, 0x0501f886, - 0x80244800, 0x82081400, 0x03030303, 0x82240580, - 0x00000088, 0x05fe07fa, 0x80306000, 0x82300580, - 0x00103b98, 0x05fe07e7, 0x59a808c7, 0x800409c0, - 0x05000005, 0x60100080, 0x60201000, 0x59a818c6, - 0x0501f0d5, 0x42006000, 0x00103b96, 0x648350c8, + 0x0000dddd, 0x0501f02a, 0x59a0040d, 0x800001c0, + 0x05000027, 0x59c00807, 0x4807c857, 0x8c04053e, + 0x05000023, 0x59c00807, 0x4a038006, 0x20000000, + 0x82040d00, 0x00f507c0, 0x05000004, 0x4a034408, + 0x0000dddd, 0x0501f01a, 0x90480483, 0x05e61abe, + 0x40480000, 0x0c01f001, 0x00103b5d, 0x00103b5e, + 0x00103b66, 0x05e5fab8, 0x80000040, 0x40009000, + 0x42008800, 0x10000004, 0x05fdff52, 0x0500000c, + 0x05fdff50, 0x0501f00a, 0x80000040, 0x40009000, + 0x59c00807, 0x4807c857, 0x8c04053e, 0x05fe07e2, + 0x42008800, 0x10000004, 0x05fdff46, 0x1c01f000, + 0x492fc857, 0x4000a800, 0x4a03b805, 0x20000000, + 0x59dc0006, 0x4a03b805, 0x30000000, 0x4813b800, + 0x480fb801, 0x480bb802, 0x4857b803, 0x4a03b805, + 0x30000002, 0x59dc0006, 0x4a03b805, 0x70000001, + 0x59dc0006, 0x4a03b805, 0x10000000, 0x59dc0006, + 0x8c00053e, 0x05fc07fe, 0x4a03b805, 0x20000000, + 0x59dc0006, 0x82000500, 0x43200f80, 0x05000005, + 0x4a034408, 0x0000dddd, 0x80000580, 0x0501f00b, + 0x59dc2000, 0x59dc1801, 0x801c39c0, 0x05000007, + 0x4d2c0000, 0x05e5fe24, 0x5c000800, 0x05e40a7e, + 0x642a5a08, 0x492c0801, 0x1c01f000, 0x49cbc857, + 0x59c80003, 0x82000500, 0xffffe0ff, 0x48039003, + 0x61f00800, 0x05edfcc6, 0x4a03902c, 0x00200000, + 0x61d0b003, 0x59c8002c, 0x8c00052c, 0x05000006, + 0x8058b040, 0x05fe07fc, 0x600c0080, 0x41781000, + 0x0501f148, 0x640b50cd, 0x42006000, 0x00103d09, 0x50301000, 0x480bc857, 0x41784800, 0x4a03902d, - 0x00002000, 0x61d0b003, 0x59c8002c, 0x8c000530, + 0x00008000, 0x61d0b003, 0x59c8002c, 0x8c000534, 0x05000006, 0x8058b040, 0x05fe07fc, 0x600c0080, - 0x41781000, 0x0501f0c4, 0x59c8002c, 0x82000500, - 0xffe0ffff, 0x82080d00, 0x001f0000, 0x80040540, - 0x4803902c, 0x0501f831, 0x80244800, 0x82081400, - 0x02020202, 0x82240580, 0x00000110, 0x05fe07fa, - 0x0501f8c5, 0x41784800, 0x50301000, 0x0501f852, - 0x59c80034, 0x82080d00, 0x001f0000, 0x82000500, - 0x001f0000, 0x80040580, 0x05000006, 0x59a800c7, - 0x80000000, 0x480350c7, 0x40240000, 0x480350c6, - 0x80244800, 0x82081400, 0x02020202, 0x82240580, - 0x00000110, 0x05fe07ee, 0x80306000, 0x82300580, - 0x00103b98, 0x05fe07cb, 0x59a808c7, 0x800409c0, - 0x05000004, 0x60100080, 0x60801000, 0x59a818c6, - 0x59c80803, 0x82040d40, 0x00001f00, 0x48079003, - 0x59c8002c, 0x8400052a, 0x4803902c, 0x61f00800, - 0x05edfd02, 0x05f5f703, 0x59c8002c, 0x82000500, - 0xffff0000, 0x82080d00, 0x0000ffff, 0x80040540, - 0x4803902c, 0x480b9028, 0x480b9029, 0x59a800c8, - 0x90004584, 0x05000007, 0x90000590, 0x05020003, - 0x80080920, 0x4807903a, 0x480b902a, 0x480b902b, - 0x59c8002d, 0x82000500, 0xfffffc00, 0x80240540, - 0x4803902d, 0x61d0b003, 0x59c8002c, 0x82000500, - 0x18000000, 0x05000006, 0x8058b040, 0x05fe07fb, - 0x600c0080, 0x41781000, 0x0501f06b, 0x6407902e, - 0x61d0b003, 0x59c8002e, 0x8c000500, 0x05000005, - 0x8058b040, 0x05fe07fc, 0x600c0080, 0x0501f062, - 0x1c01f000, 0x41783800, 0x59c8002d, 0x82000500, - 0xfffffc00, 0x80240d40, 0x4807902d, 0x61d0b003, - 0x59c8002c, 0x82000500, 0x18000000, 0x05000006, - 0x8058b040, 0x05fe07fb, 0x600c0080, 0x41781000, - 0x0501f051, 0x59c81830, 0x59c80030, 0x800c0d80, - 0x05fe07fd, 0x80080d80, 0x05000005, 0x4803c857, - 0x480bc857, 0x4827c857, 0x801c3800, 0x59c82031, - 0x59c80031, 0x80100d80, 0x05fe07fd, 0x80080d80, - 0x05000005, 0x4803c857, 0x480bc857, 0x4827c857, - 0x801c3800, 0x59a800c8, 0x90004584, 0x05000027, - 0x61fc41ff, 0x90000590, 0x05020003, 0x42004000, - 0x7f7f7f7f, 0x59c82832, 0x59c80032, 0x80140d80, - 0x05fe07fd, 0x80080d80, 0x05000005, 0x4803c857, - 0x480bc857, 0x4827c857, 0x801c3800, 0x59c83033, - 0x59c80033, 0x80180d80, 0x05fe07fd, 0x80080d80, + 0x41781000, 0x0501f137, 0x0501f8ab, 0x80244800, + 0x82081400, 0x02020202, 0x82240580, 0x000003b1, + 0x05fe07fa, 0x0501f93f, 0x41784800, 0x50301000, + 0x0501f8cc, 0x80244800, 0x82081400, 0x02020202, + 0x82240580, 0x000003b1, 0x05fe07fa, 0x80306000, + 0x82300580, 0x00103d0b, 0x05fe07de, 0x59a808cc, + 0x800409c0, 0x05000005, 0x60100080, 0x60081000, + 0x59a818cb, 0x0501f11b, 0x42006000, 0x00103d09, + 0x644350cd, 0x50301000, 0x480bc857, 0x41784800, + 0x4a03902d, 0x00000800, 0x0501f887, 0x80244800, + 0x82081400, 0x02020202, 0x90240598, 0x05fe07fb, + 0x0501f91c, 0x41784800, 0x50301000, 0x0501f8a9, + 0x80244800, 0x82081400, 0x02020202, 0x90240598, + 0x05fe07fb, 0x80306000, 0x82300580, 0x00103d0b, + 0x05fe07e9, 0x59a808cc, 0x800409c0, 0x05000005, + 0x60100080, 0x60401000, 0x59a818cb, 0x0501f0f9, + 0x42006000, 0x00103d09, 0x642350cd, 0x50301000, + 0x480bc857, 0x41784800, 0x4a03902d, 0x00000400, + 0x0501f865, 0x80244800, 0x82081400, 0x03030303, + 0x82240580, 0x00000088, 0x05fe07fa, 0x0501f8f9, + 0x41784800, 0x50301000, 0x0501f886, 0x80244800, + 0x82081400, 0x03030303, 0x82240580, 0x00000088, + 0x05fe07fa, 0x80306000, 0x82300580, 0x00103d0b, + 0x05fe07e7, 0x59a808cc, 0x800409c0, 0x05000005, + 0x60100080, 0x60201000, 0x59a818cb, 0x0501f0d5, + 0x42006000, 0x00103d09, 0x648350cd, 0x50301000, + 0x480bc857, 0x41784800, 0x4a03902d, 0x00002000, + 0x61d0b003, 0x59c8002c, 0x8c000530, 0x05000006, + 0x8058b040, 0x05fe07fc, 0x600c0080, 0x41781000, + 0x0501f0c4, 0x59c8002c, 0x82000500, 0xffe0ffff, + 0x82080d00, 0x001f0000, 0x80040540, 0x4803902c, + 0x0501f831, 0x80244800, 0x82081400, 0x02020202, + 0x82240580, 0x00000110, 0x05fe07fa, 0x0501f8c5, + 0x41784800, 0x50301000, 0x0501f852, 0x59c80034, + 0x82080d00, 0x001f0000, 0x82000500, 0x001f0000, + 0x80040580, 0x05000006, 0x59a800cc, 0x80000000, + 0x480350cc, 0x40240000, 0x480350cb, 0x80244800, + 0x82081400, 0x02020202, 0x82240580, 0x00000110, + 0x05fe07ee, 0x80306000, 0x82300580, 0x00103d0b, + 0x05fe07cb, 0x59a808cc, 0x800409c0, 0x05000004, + 0x60100080, 0x60801000, 0x59a818cb, 0x59c80803, + 0x82040d40, 0x00001f00, 0x48079003, 0x59c8002c, + 0x8400052a, 0x4803902c, 0x61f00800, 0x05edfc00, + 0x05f5f638, 0x59c8002c, 0x82000500, 0xffff0000, + 0x82080d00, 0x0000ffff, 0x80040540, 0x4803902c, + 0x480b9028, 0x480b9029, 0x59a800cd, 0x90004584, + 0x05000007, 0x90000590, 0x05020003, 0x80080920, + 0x4807903a, 0x480b902a, 0x480b902b, 0x59c8002d, + 0x82000500, 0xfffffc00, 0x80240540, 0x4803902d, + 0x61d0b003, 0x59c8002c, 0x82000500, 0x18000000, + 0x05000006, 0x8058b040, 0x05fe07fb, 0x600c0080, + 0x41781000, 0x0501f06b, 0x6407902e, 0x61d0b003, + 0x59c8002e, 0x8c000500, 0x05000005, 0x8058b040, + 0x05fe07fc, 0x600c0080, 0x0501f062, 0x1c01f000, + 0x41783800, 0x59c8002d, 0x82000500, 0xfffffc00, + 0x80240d40, 0x4807902d, 0x61d0b003, 0x59c8002c, + 0x82000500, 0x18000000, 0x05000006, 0x8058b040, + 0x05fe07fb, 0x600c0080, 0x41781000, 0x0501f051, + 0x59c81830, 0x59c80030, 0x800c0d80, 0x05fe07fd, + 0x80080d80, 0x05000005, 0x4803c857, 0x480bc857, + 0x4827c857, 0x801c3800, 0x59c82031, 0x59c80031, + 0x80100d80, 0x05fe07fd, 0x80080d80, 0x05000005, + 0x4803c857, 0x480bc857, 0x4827c857, 0x801c3800, + 0x59a800cd, 0x90004584, 0x05000027, 0x61fc41ff, + 0x90000590, 0x05020003, 0x42004000, 0x7f7f7f7f, + 0x59c82832, 0x59c80032, 0x80140d80, 0x05fe07fd, + 0x80080d80, 0x05000005, 0x4803c857, 0x480bc857, + 0x4827c857, 0x801c3800, 0x59c83033, 0x59c80033, + 0x80180d80, 0x05fe07fd, 0x80080d80, 0x05000005, + 0x4803c857, 0x480bc857, 0x4827c857, 0x801c3800, + 0x59c80034, 0x59c80834, 0x80040d80, 0x05fe07fd, + 0x80080d80, 0x40200000, 0x80040d00, 0x05000012, + 0x4803c857, 0x480bc857, 0x4827c857, 0x801c3800, + 0x0501f00d, 0x59c80034, 0x59c80834, 0x80040d80, + 0x05fe07fd, 0x80080d80, 0x82040d00, 0x000000ff, 0x05000005, 0x4803c857, 0x480bc857, 0x4827c857, - 0x801c3800, 0x59c80034, 0x59c80834, 0x80040d80, - 0x05fe07fd, 0x80080d80, 0x40200000, 0x80040d00, - 0x05000012, 0x4803c857, 0x480bc857, 0x4827c857, - 0x801c3800, 0x0501f00d, 0x59c80034, 0x59c80834, - 0x80040d80, 0x05fe07fd, 0x80080d80, 0x82040d00, - 0x000000ff, 0x05000005, 0x4803c857, 0x480bc857, - 0x4827c857, 0x801c3800, 0x801c39c0, 0x05000005, - 0x59a800c7, 0x801c0400, 0x480350c7, 0x482750c6, - 0x1c01f000, 0x48034207, 0x48074407, 0x480b4208, - 0x480f4408, 0x48134209, 0x48174409, 0x59c80003, - 0x82000540, 0x00001f00, 0x48039003, 0x59c8002c, - 0x8400052a, 0x4803902c, 0x61f00800, 0x05edfc67, - 0x05f5f66b, 0x42000000, 0x00600000, 0x80000040, - 0x05fe07ff, 0x1c01f000, 0x11121111, 0x44454442, - 0x0505fc07, 0x05020003, 0x640b4407, 0x05f5f6a0, - 0x42005000, 0x0010e511, 0x50285000, 0x482b4000, - 0x4200a000, 0x0010e512, 0x59a00408, 0x59a01208, - 0x900811c0, 0x80081540, 0x59a0040a, 0x59a01a0a, - 0x900c19c0, 0x800c1d40, 0x42024800, 0x0010e512, - 0x912cac08, 0x6018b000, 0x9050040d, 0x48034001, - 0x0549fcf7, 0x60180800, 0x800400c4, 0x80080c00, - 0x48074002, 0x900c0c40, 0x48074003, 0x60180800, - 0x912c0408, 0x0505fc0f, 0x4a01d809, 0x00103bbd, - 0x1c01f000, 0x0501fa9e, 0x05f40674, 0x59a0a001, - 0x59a01000, 0x80081040, 0x480b4000, 0x05000005, - 0x59a01002, 0x59a01803, 0x58ee580d, 0x05fdf7e5, - 0x42000800, 0x0010e511, 0x50040800, 0x48074407, - 0x05f5f62c, 0x0505fbd2, 0x05020003, 0x640b4407, - 0x05f5f66b, 0x59a00c0b, 0x42000000, 0x0010e511, - 0x50000000, 0x80040480, 0x05f6166a, 0x8204a400, - 0x0010d17b, 0x5050a000, 0x912cac08, 0x6018b000, - 0x0549fccb, 0x59a00408, 0x59a01208, 0x900811c0, + 0x801c3800, 0x801c39c0, 0x05000005, 0x59a800cc, + 0x801c0400, 0x480350cc, 0x482750cb, 0x1c01f000, + 0x48034207, 0x48074407, 0x480b4208, 0x480f4408, + 0x48134209, 0x48174409, 0x59c80003, 0x82000540, + 0x00001f00, 0x48039003, 0x59c8002c, 0x8400052a, + 0x4803902c, 0x61f00800, 0x05edfb65, 0x05f5f5a0, + 0x42000000, 0x00600000, 0x80000040, 0x05fe07ff, + 0x1c01f000, 0x11121111, 0x44454442, 0x0505fc36, + 0x05020003, 0x640b4407, 0x05f5f5d5, 0x42005000, + 0x001124b5, 0x50285000, 0x482b4000, 0x4200a000, + 0x001124b6, 0x59a00408, 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, - 0x800c1d40, 0x60180800, 0x912c0408, 0x0505f3e1, - 0x59a00c0b, 0x800409c0, 0x05f40656, 0x900404a1, - 0x05f61654, 0x90040491, 0x05001002, 0x60400800, + 0x800c1d40, 0x42024800, 0x001124b6, 0x912cac08, + 0x6018b000, 0x9050040d, 0x48034001, 0x054dfaff, + 0x60180800, 0x800400c4, 0x80080c00, 0x48074002, + 0x900c0c40, 0x48074003, 0x60180800, 0x912c0408, + 0x0505fc3e, 0x4a01d809, 0x00103d30, 0x1c01f000, + 0x0501faa1, 0x05f405a9, 0x59a0a001, 0x59a01000, + 0x80081040, 0x480b4000, 0x05000005, 0x59a01002, + 0x59a01803, 0x58ee580d, 0x05fdf7e5, 0x42000800, + 0x001124b5, 0x50040800, 0x48074407, 0x05f5f561, + 0x0505fc01, 0x05020003, 0x640b4407, 0x05f5f5a0, + 0x59a00c0b, 0x42000000, 0x001124b5, 0x50000000, + 0x80040480, 0x05f6159f, 0x8204a400, 0x0010d8f9, + 0x5050a000, 0x912cac08, 0x6018b000, 0x054dfad3, + 0x59a00408, 0x59a01208, 0x900811c0, 0x80081540, + 0x59a0040a, 0x59a01a0a, 0x900c19c0, 0x800c1d40, + 0x60180800, 0x912c0408, 0x0505f410, 0x59a00c0b, + 0x800409c0, 0x05f4058b, 0x900404a1, 0x05f61589, + 0x90040491, 0x05001002, 0x60400800, 0x59a00209, + 0x59a01408, 0x900811c0, 0x80081540, 0x59a00208, + 0x59a01c07, 0x900c19c0, 0x800c1d40, 0x0505fbd6, + 0x05000005, 0x0505fbf4, 0x4a01d809, 0x00103d73, + 0x1c01f000, 0x640b4407, 0x05f5f571, 0x0501fa5e, + 0x05f40566, 0x59a00c0b, 0x90040491, 0x05001002, + 0x60400800, 0x59a0040c, 0x59a0120c, 0x900811c0, + 0x80081540, 0x59a0020a, 0x59a01c09, 0x900c19c0, + 0x800c1d40, 0x58ec0003, 0x0505fbe8, 0x4a01d809, + 0x00103d86, 0x1c01f000, 0x0501fa4b, 0x05f40553, + 0x59a00c0b, 0x90040491, 0x05f41516, 0x90040c90, 0x59a00209, 0x59a01408, 0x900811c0, 0x80081540, 0x59a00208, 0x59a01c07, 0x900c19c0, 0x800c1d40, - 0x0505fba7, 0x05000005, 0x0505fbc5, 0x4a01d809, - 0x00103c00, 0x1c01f000, 0x640b4407, 0x05f5f63c, - 0x0501fa5b, 0x05f40631, 0x59a00c0b, 0x90040491, - 0x05001002, 0x60400800, 0x59a0040c, 0x59a0120c, + 0xb0081400, 0x58ec0003, 0x0505fbcb, 0x4a01d809, + 0x00103d9a, 0x1c01f000, 0x0501fa37, 0x05f4053f, + 0x59a0040b, 0x90000c90, 0x59a0040c, 0x59a0120c, 0x900811c0, 0x80081540, 0x59a0020a, 0x59a01c09, - 0x900c19c0, 0x800c1d40, 0x58ec0003, 0x0505fbb9, - 0x4a01d809, 0x00103c13, 0x1c01f000, 0x0501fa48, - 0x05f4061e, 0x59a00c0b, 0x90040491, 0x05f415e1, - 0x90040c90, 0x59a00209, 0x59a01408, 0x900811c0, - 0x80081540, 0x59a00208, 0x59a01c07, 0x900c19c0, - 0x800c1d40, 0xb0081400, 0x58ec0003, 0x0505fb9c, - 0x4a01d809, 0x00103c27, 0x1c01f000, 0x0501fa34, - 0x05f4060a, 0x59a0040b, 0x90000c90, 0x59a0040c, - 0x59a0120c, 0x900811c0, 0x80081540, 0x59a0020a, - 0x59a01c09, 0x900c19c0, 0x800c1d40, 0xb0081400, - 0x58ec0003, 0x0505fb93, 0x4a01d809, 0x001029f5, - 0x1c01f000, 0x48efc857, 0x59a00208, 0x59a01408, - 0x900001c0, 0x80081540, 0x59a0020a, 0x59a01c0a, - 0x900001c0, 0x800c1d40, 0x59a00407, 0x48034000, - 0x480b4001, 0x480f4002, 0x0505fb59, 0x05020003, - 0x640b4407, 0x05f5f5f2, 0x60400800, 0x0505fb74, - 0x4a01d809, 0x00103c4f, 0x1c01f000, 0x0501fa0c, - 0x05f405e2, 0x58ee580d, 0x48efc857, 0x49a3c857, - 0x492fc857, 0x592c0a08, 0x80040910, 0x05020003, - 0x64674407, 0x05f5f5e2, 0x4805d80c, 0x0501f005, - 0x0501f9ff, 0x05f405d5, 0x48efc857, 0x49a3c857, - 0x48efc857, 0x49a3c857, 0x58ec000c, 0x80000040, - 0x0500000d, 0x4801d80c, 0x0505fb39, 0x05020003, - 0x640b4407, 0x05f5f5d2, 0x60400800, 0x58ec1007, - 0x58ec1808, 0x0505fb52, 0x4a01d809, 0x00103c5c, - 0x1c01f000, 0x58ee580d, 0x48efc857, 0x49a3c857, - 0x492fc857, 0x492f3000, 0x592c0408, 0x8400055e, - 0x48025c08, 0x4a01d809, 0x00103c7c, 0x1c01f000, - 0x4d2c0000, 0x58ee580d, 0x48efc857, 0x49a3c857, - 0x492fc857, 0x592c0408, 0x8400051e, 0x48025c08, - 0x59a00000, 0x59a01001, 0x59a01802, 0x80081400, - 0x900c1c40, 0x912c0408, 0x60400800, 0x5c025800, - 0x0505f33c, 0x8d0c050e, 0x05000003, 0x64074407, - 0x05f5f5ab, 0x916c0583, 0x05000003, 0x641f4407, - 0x05f5f5a7, 0x59a0320c, 0x82183500, 0x000000ff, - 0x59a28c07, 0x0505fbec, 0x05f605a6, 0x050dfdde, - 0x05f605a4, 0x83440580, 0x000007fd, 0x05000005, - 0x050dfd85, 0x05000003, 0x64274407, 0x05f5f598, - 0x0505fafb, 0x05020003, 0x640b4407, 0x05f5f594, - 0x801831c0, 0x05000007, 0x412c0800, 0x0505faf4, - 0x05020003, 0x640b4407, 0x05f5f58d, 0x40065800, - 0x4a025c08, 0x00008000, 0x497a5a08, 0x0539f8cf, - 0x05020003, 0x640f4407, 0x05f5f585, 0x4a01d809, - 0x00103cba, 0x1c01f000, 0x592c0009, 0x82000580, - 0x01000000, 0x05020003, 0x64134407, 0x05f5f57c, - 0x592c040a, 0x82002d00, 0x0000ff00, 0x82000500, - 0x000000ff, 0x80000904, 0x80040800, 0x90040486, - 0x05001002, 0x60140800, 0x4c500000, 0x4c540000, - 0x4c580000, 0x912ca40a, 0x4050a800, 0x4004b000, - 0x0549fc12, 0x59a00408, 0x59a01208, 0x900811c0, - 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, - 0x800c1d40, 0x912c040a, 0x4c140000, 0x0505faed, - 0x5c002800, 0x801429c0, 0x05000003, 0x4a01d809, - 0x00103ce5, 0x5c00b000, 0x5c00a800, 0x5c00a000, - 0x1c01f000, 0x0501f976, 0x05f4054c, 0x58ee580d, - 0x812e59c0, 0x05e408f1, 0x592c000a, 0x82000500, - 0xff000000, 0x80000904, 0x800409c0, 0x05f40509, - 0x4807c857, 0x9004048e, 0x05001002, 0x60340800, - 0x592e5801, 0x812e59c0, 0x05e408e4, 0x4c500000, - 0x4c540000, 0x4c580000, 0x912ca409, 0x4050a800, - 0x4004b000, 0x0549fbe5, 0x5c00b000, 0x5c00a800, - 0x5c00a000, 0x58ec1007, 0x58ec1808, 0x912c0409, - 0x0505f2c4, 0x0505fa9a, 0x05020003, 0x640b4407, - 0x05f5f533, 0x59a00c07, 0x82040500, 0x0000ff00, - 0x840001c0, 0x9000148e, 0x05f61532, 0x0c01f001, - 0x00103d1e, 0x00103d24, 0x00103d2a, 0x00103d2b, - 0x00103d2f, 0x00103d49, 0x00103d4d, 0x00103d36, - 0x00103d3b, 0x00103d41, 0x00103d2a, 0x00103d2a, - 0x00103d2a, 0x00103d2a, 0x60340800, 0x42003800, - 0x00103d76, 0x4a034000, 0x0010dd46, 0x0501f02d, - 0x60340800, 0x42003800, 0x00103d76, 0x4a034000, - 0x0010dd53, 0x0501f027, 0x05f5f516, 0x0505fc9e, - 0x05f60514, 0x497b501c, 0x05f5f4ca, 0x0505fc9a, - 0x05f60510, 0x59a8101b, 0x800811c0, 0x05f404c5, - 0x480b501c, 0x05f5f4c3, 0x0505fc93, 0x05f60509, - 0x497b500f, 0x497b5010, 0x05f5f4be, 0x0505fc8e, - 0x05f60504, 0x6403500f, 0x4a035010, 0x000927c0, - 0x05f5f4b8, 0x59a00c07, 0x82040d00, 0x000000ff, - 0x05f404fc, 0x48074000, 0x42003800, 0x00103d57, - 0x0501f008, 0x60200800, 0x42003800, 0x00103d7f, - 0x0501f004, 0x60100800, 0x42003800, 0x00103db0, - 0x0501f902, 0x912c0409, 0x4c1c0000, 0x0505fa6c, - 0x5c003800, 0x481dd809, 0x1c01f000, 0x0501f904, - 0x05f404da, 0x58ee580d, 0x59a0b000, 0x912ca409, - 0x50500800, 0x82040580, 0x00110307, 0x0502000f, - 0x82041500, 0x000000ff, 0x90080488, 0x0502100b, - 0x4200a800, 0x0010dc14, 0x80081840, 0x8050a000, - 0x50500000, 0x4400a800, 0x8054a800, 0x800c1840, - 0x05fe07fb, 0x0501f005, 0x48074407, 0x900409c0, - 0x48074208, 0x05f5f4cf, 0x8050a000, 0x8058b482, - 0x05fe07e8, 0x05f5f483, 0x0501f8e5, 0x05f404bb, - 0x58ee580d, 0x64075047, 0x6034b000, 0x59a0a800, - 0x912ca409, 0x0549fb65, 0x05f5f47a, 0x0501f8dc, - 0x05f404b2, 0x58ee580d, 0x912ca409, 0x50500000, - 0x82001500, 0x000c0016, 0x05f604ba, 0x90500c03, - 0x50040000, 0x90001501, 0x05f604b6, 0x50500000, - 0x90001528, 0x05000015, 0x900815a8, 0x05f604b1, - 0x80500800, 0x50040000, 0x90001513, 0x90081593, - 0x05f604ac, 0x80040800, 0x50040000, 0x82001500, - 0x00050000, 0x82081580, 0x00050000, 0x05f604a5, - 0x916c0580, 0x0500000e, 0x599c0019, 0x8c00050e, - 0x0502000b, 0x05f5f49f, 0x80500800, 0x50040000, - 0x90001513, 0x05f6049b, 0x80040800, 0x50040000, - 0x82001500, 0x00050000, 0x05f60496, 0x6020b000, - 0x4200a800, 0x0010dd3e, 0x0549faf9, 0x05f5f449, - 0x0501f8ab, 0x05f40481, 0x58ee580d, 0x6010b000, - 0x4200a800, 0x0010e50c, 0x912ca409, 0x0549faf0, - 0x850e1d50, 0x05f5f43f, 0x0505f9e5, 0x05020003, - 0x640b4407, 0x05f5f47e, 0x912cac09, 0x59a00c07, - 0x82040500, 0x0000ff00, 0x840001c0, 0x9000148e, - 0x05f6147c, 0x0c01f001, 0x00103dd4, 0x00103dd7, - 0x00103dda, 0x00103ddb, 0x00103dee, 0x00103e10, - 0x00103dda, 0x00103e16, 0x00103df5, 0x00103e06, - 0x00103dda, 0x00103dda, 0x00103dda, 0x00103dda, - 0x4200a000, 0x0010dd46, 0x0501f06e, 0x4200a000, - 0x0010dd53, 0x0501f06b, 0x05f5f466, 0x0505fbee, - 0x05f60464, 0x59a8041d, 0x48034407, 0x59a8021d, - 0x48034208, 0x59a8041e, 0x48034408, 0x59a8021e, - 0x4803420a, 0x59a8041b, 0x4803440a, 0x59a8021b, - 0x4803420b, 0x59a8041c, 0x4803440b, 0x59a8021c, - 0x4803420c, 0x05f5f40b, 0x0505fbdb, 0x05f60451, - 0x0501f862, 0x60600800, 0x42000000, 0x0010dc23, - 0x0505f1d4, 0x0505fbd4, 0x05000002, 0x05f5f449, - 0x59a80411, 0x48034407, 0x59a80211, 0x48034208, - 0x59a80412, 0x48034408, 0x59a80212, 0x4803420a, - 0x6403440a, 0x6403420b, 0x6427440b, 0x4a03420c, - 0x000027c0, 0x05f5f3f3, 0x0505fbc3, 0x05000002, - 0x05f40438, 0x0501f849, 0x61ec0801, 0x800400c4, - 0x48034407, 0x42000000, 0x00107dd1, 0x0505f1b9, - 0x6020b000, 0x40580800, 0x4200a000, 0x0010dd3e, - 0x0549fa93, 0x0501f032, 0x59a00a0b, 0x6473420b, - 0x9004049c, 0x05f41427, 0x603cb000, 0x4178a000, - 0x0549fa93, 0x912cac09, 0x6010b000, 0xb1a8a40d, - 0x0549fa87, 0x916c0580, 0x05000004, 0x6010b000, - 0x91a8a400, 0x0549fa82, 0x912cac15, 0x600cb000, - 0xb1a8a411, 0x0549fa7e, 0x492f4000, 0x0505f974, - 0x05020003, 0x640b4407, 0x05f5f40d, 0x912cac09, - 0x603cb000, 0x4178a000, 0x0549fa7d, 0x912cac09, - 0x6004b000, 0xb1a8a414, 0x0549fa71, 0x912cac0a, - 0x6010b000, 0xb1a8a415, 0x0549fa6d, 0x0501f817, - 0x492f4001, 0x59a25800, 0x912c0409, 0x603c0800, - 0x0505f988, 0x4a01d809, 0x00103e4a, 0x1c01f000, - 0x6034b000, 0x40580800, 0x0549fa9c, 0x0501f80b, - 0x912c0409, 0x0505f17f, 0x0501f811, 0x05f403e7, - 0x59a25801, 0x58ec1007, 0x58ec1808, 0x912c0409, - 0x60340800, 0x0505f177, 0x59a00208, 0x59a01408, - 0x900001c0, 0x80081540, 0x59a0020a, 0x59a01c0a, - 0x900001c0, 0x800c1d40, 0x1c01f000, 0x4031d800, - 0x58ef400b, 0x58ec0002, 0x82000580, 0x00000200, - 0x1c01f000, 0x59a00407, 0x80000d40, 0x05020003, - 0x48072832, 0x05f5f393, 0x8d0c050e, 0x05020007, - 0x4c000000, 0x0511fa45, 0x5c000000, 0x05000003, - 0x645b4407, 0x05f5f3ce, 0x82000c80, 0x00001000, - 0x05f613d0, 0x90000c82, 0x05f413ce, 0x800008c6, - 0x80040c00, 0x80040c00, 0x48072832, 0x59a800af, - 0x84000500, 0x59a00a08, 0x8c040500, 0x05000002, - 0x84000540, 0x480350af, 0x05f5f37a, 0x8d0c050e, - 0x05020003, 0x0511fa2d, 0x0502000c, 0x59a800af, - 0x8c000500, 0x05020005, 0x4a03c014, 0x00400040, - 0x4a03c013, 0x00400040, 0x59a800af, 0x8400054a, - 0x480350af, 0x05e1ff4d, 0x1c01f000, 0x916c0580, - 0x05020003, 0x641f4407, 0x05f5f3a9, 0x59a01407, - 0x800811c0, 0x0502002a, 0x497b4208, 0x05f1f8e9, - 0x05000011, 0x05f1f8ce, 0x64074208, 0x0502000e, - 0x4c080000, 0x05f1f8d5, 0x5c001000, 0x05020006, - 0x640b4208, 0x05edfcd3, 0x05020007, 0x64134208, - 0x0501f005, 0x640f4208, 0x05edfcbc, 0x05020002, - 0x64174208, 0x59c40801, 0x82040d00, 0x00018000, - 0x90040580, 0x05020003, 0x64034407, 0x0501f069, - 0x82040580, 0x00008000, 0x05020003, 0x64074407, - 0x0501f064, 0x82040580, 0x00010000, 0x05020003, - 0x640f4407, 0x0501f05f, 0x82040580, 0x00018000, - 0x05e20f1e, 0x64134407, 0x0501f05a, 0x59a800d1, - 0x8c000502, 0x05000004, 0x60080000, 0x40000800, - 0x0501f012, 0x59a00208, 0x4c000000, 0x0505fa23, - 0x5c000000, 0x05000005, 0x4c000000, 0x0505fa36, - 0x5c000000, 0x05020007, 0x90000d84, 0x05000003, - 0x90000d82, 0x05020003, 0x600c0000, 0x600c1000, - 0x48034002, 0x59a80869, 0x48035069, 0x599c7819, - 0x823c7d00, 0xffff1fff, 0x800000da, 0x803c7d40, - 0x483f3819, 0x497b4208, 0x05f1f8a2, 0x05000013, - 0x05f1f887, 0x64074208, 0x05020010, 0x4c040000, - 0x4c080000, 0x05f1f88d, 0x5c001000, 0x5c000800, - 0x05020006, 0x640b4208, 0x05edfc8a, 0x05020007, - 0x64134208, 0x0501f005, 0x640f4208, 0x05edfc73, - 0x05020002, 0x64174208, 0x05edfc88, 0x0500000b, - 0x05edfc6e, 0x05000009, 0x05edfc72, 0x05000007, - 0x05edfc76, 0x05000005, 0x05edfc7a, 0x05000003, - 0x48075069, 0x05f5f343, 0x90080583, 0x05020005, - 0x59a00002, 0x48035076, 0x640b5069, 0x0501f005, - 0x4a035076, 0xaabbccdd, 0x90080582, 0x05020011, - 0x59c40006, 0x84000500, 0x48038806, 0x0525f94a, - 0x497b8880, 0x42000000, 0x0010e4bc, 0x0549f8cd, - 0x4803c856, 0x850e1d48, 0x4a038808, 0x00000200, - 0x6012d800, 0x64078805, 0x64075075, 0x05e5f8e7, - 0x05f5f2e0, 0x8d0c050e, 0x05000003, 0x64074407, - 0x05f5f31f, 0x916c0583, 0x05000003, 0x641f4407, - 0x05f5f31b, 0x59a28c07, 0x59a0320c, 0x82183500, - 0x000000ff, 0x0505f960, 0x05f6031a, 0x050dfb52, - 0x05f60318, 0x83440580, 0x000007fd, 0x05000005, - 0x050dfaf9, 0x05000003, 0x60240800, 0x05f5f30c, - 0x0505f86f, 0x05020003, 0x640b4407, 0x05f5f308, - 0x497a5a08, 0x4a025c08, 0x00008000, 0x0535fe5e, - 0x05020003, 0x640f4407, 0x05f5f301, 0x4a01d809, - 0x00103f3e, 0x1c01f000, 0x592c0009, 0x82000d00, - 0x0000ffff, 0x82000500, 0xffff0000, 0x82000580, - 0x01000000, 0x05020003, 0x64134407, 0x05f5f2f4, - 0x80040904, 0x4c500000, 0x4c540000, 0x4c580000, - 0x912ca409, 0x4050a800, 0x4004b000, 0x0549f993, - 0x5c00b000, 0x5c00a800, 0x5c00a000, 0x59a00208, - 0x59a01408, 0x900001c0, 0x80081540, 0x59a0020a, - 0x59a01c0a, 0x900001c0, 0x800c1d40, 0x912c0409, - 0x0505f06c, 0x60000020, 0x50000000, 0x82000480, - 0x25320001, 0x0502000a, 0x599c1019, 0x8c08053c, - 0x05020005, 0x4a03c014, 0x00400040, 0x4a03c013, - 0x00400000, 0x6041d04e, 0x051df89b, 0x496fc857, - 0x916c0580, 0x05000003, 0x646b4407, 0x05f5f2cc, - 0x0511f93e, 0x050a0996, 0x60800800, 0x59a00408, - 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, - 0x59a01a0a, 0x900c19c0, 0x800c1d40, 0x419c0000, - 0x49a3c857, 0x0505f842, 0x4a01d809, 0x00103f81, - 0x1c01f000, 0x4833c857, 0x05fdfed9, 0x05f402af, - 0x59a00407, 0x8c000500, 0x05000061, 0x59a0020e, - 0x80000104, 0x05f402b7, 0x90000c95, 0x05f612b5, - 0x40000800, 0x59a0040c, 0x59a0120c, 0x900811c0, - 0x80081540, 0x59a0040d, 0x59a01a0d, 0x900c19c0, - 0x800c1d40, 0x42000000, 0x0010dd2a, 0x49a3c857, - 0x0505f827, 0x4a01d809, 0x00103f9c, 0x1c01f000, - 0x05fdfebf, 0x05f40295, 0x42000800, 0x0010dd2a, - 0x58040200, 0x800001c0, 0x05f4029e, 0x599c0017, - 0x8c000508, 0x05000042, 0x58040204, 0x8c000500, - 0x0500003f, 0x599c0202, 0x800001c0, 0x05f40295, - 0x599c141e, 0x80000000, 0x80080480, 0x05f61291, - 0x42001000, 0x00110228, 0x4a001008, 0x00000112, - 0x6428120b, 0x4978140b, 0x49781011, 0x4a00140e, - 0x00000101, 0x58040005, 0x48001015, 0x4a00120a, - 0x0000ffff, 0x4a00100d, 0x00111ad0, 0x58040006, - 0x48001016, 0x58040007, 0x48001017, 0x4a001013, - 0xdeadbeff, 0x4a001001, 0x00110240, 0x42001000, - 0x00110240, 0x48081000, 0x48081001, 0x64281208, - 0x58040005, 0x48001009, 0x4800100c, 0x4800100f, - 0x48001012, 0x48001015, 0x58040006, 0x4800100a, - 0x4800100d, 0x48001010, 0x48001013, 0x48001016, - 0x58040007, 0x4800100b, 0x4800100e, 0x48001011, - 0x48001014, 0x48001017, 0x42001000, 0x00111ad0, - 0x4a001009, 0x00110228, 0x4a001013, 0xdeadbeff, - 0x64841008, 0x64101203, 0x64181407, 0x599c0200, - 0x800001c0, 0x05f40257, 0x59a800d1, 0x8c000502, - 0x05000011, 0x599c0017, 0x84000508, 0x48033817, - 0x599c0019, 0x82000500, 0xffff1fff, 0x82000540, - 0x00004000, 0x48033819, 0x599c0018, 0x84000510, - 0x84000516, 0x82000500, 0xffffffcf, 0x90000560, - 0x0501f004, 0x8c000504, 0x05000004, 0x599c0018, - 0x84000514, 0x48033818, 0x0539fd97, 0x850e1d20, - 0x599c0017, 0x8c000508, 0x05000003, 0x850e1d60, - 0x0501f006, 0x8c00050a, 0x05f60236, 0x59a80806, - 0x8c040516, 0x05f60233, 0x42024800, 0x0010e512, - 0x64124a00, 0x42000800, 0x0010e511, 0x64040800, - 0x42000800, 0x0010e510, 0x46000800, 0x0000ffff, - 0x59240c00, 0x84040d46, 0x599c1017, 0x8c08050a, - 0x05020002, 0x84040d48, 0x8c080508, 0x05020002, - 0x84040d4a, 0x84040d4c, 0x48064c00, 0x59240a00, - 0x84040d40, 0x48064a00, 0x0505faed, 0x05000017, - 0x59c40801, 0x82040d40, 0x00004000, 0x48078801, - 0x64c378e4, 0x640752cd, 0x640752cc, 0x640b50ce, - 0x4a02480b, 0x0f000001, 0x4c000000, 0x4c500000, - 0x60000001, 0x4200a000, 0x001105f2, 0x4600a000, - 0xffffffff, 0x8050a000, 0x80000040, 0x05fe07fc, - 0x5c00a000, 0x5c000000, 0x4803c857, 0x8c000504, - 0x05020004, 0x59c408a3, 0x84040d7a, 0x480788a3, - 0x8c000502, 0x05020004, 0x59c408a3, 0x84040d08, - 0x480788a3, 0x599c0c02, 0x8c000500, 0x0502000b, - 0x8c000516, 0x0500001f, 0x4c000000, 0x59240400, - 0x84000542, 0x840411c0, 0x80081540, 0x480a4c00, - 0x5c000000, 0x0501f008, 0x4c000000, 0x59240400, - 0x84000540, 0x840411c0, 0x80081540, 0x480a4c00, - 0x5c000000, 0xb00414bf, 0x05f611e2, 0x82041400, - 0x00102853, 0x50081000, 0x82081500, 0x000000ff, - 0x48064a08, 0x480a4805, 0x480a4c08, 0x8c000500, - 0x05020004, 0x480b503d, 0x600c0800, 0x0521fcd6, - 0x0501ffeb, 0x05000004, 0x59240400, 0x84000544, - 0x48024c00, 0x599c0019, 0x8c000506, 0x05000003, - 0x4a03b805, 0x90000000, 0x8c00050e, 0x05020005, - 0x4c000000, 0x0505fad0, 0x5c000000, 0x05f601c5, - 0x90000530, 0x05000003, 0x80000108, 0x0501f002, - 0x60080000, 0x48039040, 0x60080800, 0x82000400, - 0x001042be, 0x50001000, 0x0521fcbb, 0x599c0201, - 0x82000c80, 0x00000100, 0x05f411b6, 0x82000c80, - 0x00000841, 0x05f611b3, 0x90000507, 0x05f601b1, - 0x599c0401, 0x80000540, 0x05f401ae, 0x59a808d1, - 0x8c040502, 0x05000005, 0x90000c90, 0x05001003, - 0x60400000, 0x48033c01, 0x850e1d52, 0x82000580, - 0x0000ffff, 0x05000002, 0x850e1d12, 0x599c0409, - 0x599c0c07, 0x80040c80, 0x05f6119e, 0x80000040, - 0x05f4019c, 0x599c0209, 0x599c0a07, 0x80040c80, - 0x05f61198, 0x80000040, 0x05f40196, 0xb1a81411, - 0x599c0818, 0x8c040510, 0x05020005, 0x50080000, - 0x8400053e, 0x44001000, 0x0501f00b, 0x59a80006, - 0x8400054a, 0x48035006, 0x4a0370e4, 0x0000c000, - 0x4c040000, 0x59c408a3, 0x84040d3a, 0x480788a3, - 0x5c000800, 0x8c040512, 0x05020009, 0x50080000, - 0x82000500, 0xfffff5ff, 0x44001000, 0x80081000, - 0x50080000, 0x8400053e, 0x44001000, 0x59e00002, - 0x84000568, 0x4803c002, 0x05e5f8a7, 0x42000000, - 0x0010dd60, 0x452c0000, 0x64073002, 0x412de000, - 0x492fc840, 0x644fc842, 0x05011000, 0x599c0018, - 0x8c00052e, 0x05000012, 0x850e1d16, 0x59a810d2, - 0x90081493, 0x0500100c, 0x0500000b, 0x480b50d2, - 0x480b50d3, 0x59a810d4, 0x9008148a, 0x05001004, - 0x05000003, 0x480b50d4, 0x0501f005, 0x60041000, - 0x05fdf7fd, 0x60041000, 0x05fdf7f5, 0x600000b8, - 0x599c1407, 0x48080100, 0x480a5a0c, 0x48025a00, - 0x492e5801, 0x599c000b, 0x48025808, 0x599c000c, - 0x48025809, 0x64065c10, 0x599c0409, 0x48025c0a, - 0x05e5f87d, 0x42000000, 0x0010de60, 0x452c0000, - 0x64073008, 0x492fc840, 0x642bc842, 0x05011000, - 0x412ee800, 0x492e5800, 0x492de012, 0x4a025803, - 0xffff0000, 0x60040000, 0x8d0c0516, 0x05020006, - 0x599c0211, 0x82001480, 0x00000100, 0x05f61139, - 0x599c1018, 0x48025a09, 0x600000bc, 0x599c1207, - 0x48080000, 0x480a5c09, 0x48025c08, 0x599c000d, - 0x48025806, 0x599c000e, 0x48025807, 0x599c0209, - 0x48025a08, 0x599c0818, 0x8c040532, 0x05000009, - 0x6405e20a, 0x599c021a, 0x4801e411, 0x42000000, - 0x00102ecb, 0x50000000, 0x4801e210, 0x0501f009, - 0x599c0a1a, 0x90040486, 0x05001002, 0x60040800, - 0x82040c00, 0x00102ec8, 0x50040000, 0x4801e210, - 0x599c0818, 0x599c141a, 0x8c040526, 0x05000002, - 0x8408157e, 0x8c040524, 0x05000002, 0x8408157c, - 0x8c040528, 0x05000003, 0x82081540, 0x20000000, - 0x4809e00b, 0x480a5801, 0x480bb01f, 0x480bb11f, - 0x599c0211, 0x82000400, 0x0010df60, 0x44080000, - 0x42000000, 0x0010e389, 0x50000000, 0x48080006, - 0x42000000, 0x0010e388, 0x50000000, 0x48080006, - 0x0511fb2e, 0x050dfca4, 0x599c0201, 0x48035004, - 0x05e9fe84, 0x599c020a, 0x800001c0, 0x05000003, - 0x48035063, 0x0501f003, 0x4a035063, 0x000000c8, - 0x8d0c0520, 0x05000006, 0x599c0413, 0x90000c82, - 0x05f410ec, 0x051dfd7e, 0x417a5000, 0x599c0003, - 0x599c0804, 0x9c0001c0, 0x9c0409c0, 0x48024801, - 0x48064802, 0x48035002, 0x48075003, 0x599c1017, - 0x8c08051c, 0x05000006, 0x599c0005, 0x599c0806, - 0x9c0001c0, 0x9c0409c0, 0x0501f003, 0x82000500, - 0xf0ffffff, 0x48024803, 0x48064804, 0x48035000, - 0x48075001, 0x42001000, 0x0010dd46, 0x48001000, - 0x48041001, 0x42001000, 0x0010dd53, 0x48001000, - 0x48041001, 0x59a00207, 0xb0000588, 0x050200b0, - 0x0501fe27, 0x05020003, 0x640b4407, 0x05f5f0c0, - 0x60400800, 0x59a00208, 0x59a01408, 0x900001c0, + 0x900c19c0, 0x800c1d40, 0xb0081400, 0x58ec0003, + 0x0505fbc2, 0x4a01d809, 0x00102a9d, 0x1c01f000, + 0x48efc857, 0x59a00208, 0x59a01408, 0x900001c0, 0x80081540, 0x59a0020a, 0x59a01c0a, 0x900001c0, - 0x800c1d40, 0x82081400, 0x00000080, 0xb0083400, - 0x481b4002, 0x900c3440, 0x481b4003, 0x912c0408, - 0x0501fe33, 0x4a01d809, 0x00104190, 0x1c01f000, - 0x05fdfccb, 0x05f400a1, 0x58ee580d, 0x592c1008, - 0x480bc857, 0x80080120, 0x42024800, 0x0010e512, - 0x48024c06, 0x82081500, 0x0000ffff, 0x599c0818, - 0x90040d30, 0x90040580, 0x05020004, 0xb00804be, - 0x05f610a0, 0x0501f001, 0x0545ff73, 0x05000014, - 0x82080480, 0x00000100, 0x05f6109a, 0x42000000, - 0x0010e511, 0x44080000, 0x800811c0, 0x05f40095, - 0x40080800, 0x42024800, 0x0010e512, 0x912e5c09, - 0x592c0400, 0x8c000506, 0x05020012, 0x59240200, - 0x84000500, 0x48024a00, 0x0501f00e, 0x82080480, - 0x000000ff, 0x05f61087, 0x80080800, 0x42000000, - 0x0010e511, 0x44040000, 0x800811c0, 0x05000068, - 0x42024800, 0x0010e51f, 0x80040840, 0x912e5c09, - 0x600c4000, 0x592c0400, 0x8c000506, 0x05000012, - 0x59a810d1, 0x90081506, 0x05f60076, 0x8c00050a, - 0x05020003, 0x8d0c0520, 0x05f40072, 0x64164a00, - 0x90001503, 0x05000006, 0x840011c0, 0x82081500, - 0x000000ff, 0x480a4a08, 0x0501f003, 0x82000500, - 0x000000ff, 0x48024c00, 0x592c0001, 0x592c1002, - 0x9c0001c0, 0x9c0811c0, 0x48024801, 0x480a4802, - 0x599c1817, 0x8c0c051c, 0x05000006, 0x592c0003, - 0x592c1004, 0x9c0001c0, 0x9c0811c0, 0x0501f003, - 0x82000500, 0xf0ffffff, 0x48024803, 0x480a4804, - 0x912e5c05, 0x91264c0d, 0x80040840, 0x05000019, - 0x80204040, 0x05fe07d4, 0x48074000, 0x49274001, - 0x603c0800, 0x59a01002, 0x59a01803, 0x9008343c, - 0x481b4002, 0x900c3440, 0x481b4003, 0x58ee580d, - 0x912c0408, 0x0501fdc2, 0x4a01d809, 0x00104201, - 0x1c01f000, 0x05fdfc5a, 0x05f40030, 0x58ee580d, - 0x912e5c08, 0x59a00800, 0x59a24801, 0x05fdf7bd, - 0x0545ff0d, 0x05000010, 0x42006800, 0x0010e512, - 0x4200b000, 0x0010e511, 0x5058b000, 0x58340400, - 0x8c000506, 0x05000005, 0x58340200, 0x8400055e, - 0x48006a00, 0x0501f004, 0x90346c0d, 0x8058b040, - 0x05fe07f7, 0x42006800, 0x0010e512, 0x4200b000, - 0x0010e511, 0x5058b000, 0x8058b040, 0x05000008, - 0x42024800, 0x0010e51f, 0x58340206, 0x48024a06, - 0x91264c0d, 0x8058b040, 0x05fe07fc, 0x599c1019, - 0x82081500, 0x0000e000, 0x497b4208, 0x05edfd55, - 0x05000012, 0x05edfd3a, 0x64074208, 0x0502000f, - 0x4c080000, 0x05edfd41, 0x5c001000, 0x05020007, - 0x640b4208, 0x82080580, 0x00008000, 0x05020007, - 0x64134208, 0x0501f005, 0x640f4208, 0x90080580, - 0x05020002, 0x64174208, 0x90080580, 0x05020007, - 0x64035069, 0x60040000, 0x05edfb03, 0x60040000, - 0x05edfad1, 0x0501f02b, 0x82080580, 0x00002000, - 0x05020008, 0x64075069, 0x60000000, 0x05edfafa, - 0x60000000, 0x05edfac8, 0x05edfebf, 0x0501f021, - 0x82080580, 0x00004000, 0x05020004, 0x640b5069, - 0x64075075, 0x05fdf7f9, 0x82080580, 0x00006000, - 0x0502000f, 0x59a80892, 0x82040d80, 0x01391077, - 0x05020004, 0x59e00813, 0x8c040500, 0x05f207e1, - 0x640f5069, 0x60080000, 0x05edfae3, 0x60080000, - 0x05edfab1, 0x05fdf7e9, 0x0501f00a, 0x82080580, - 0x00008000, 0x05f207d7, 0x05edfeb2, 0x64135069, - 0x600c0000, 0x05edfad8, 0x600c0000, 0x05edfaa6, - 0x599c1019, 0x82081500, 0x0000e000, 0x4c080000, - 0x0501fea2, 0x5c001000, 0x05020004, 0x82080580, - 0x00004000, 0x0500000b, 0x0501fe70, 0x05000003, - 0x0501fe85, 0x05020009, 0x82080580, 0x00008000, - 0x05000004, 0x82080580, 0x00004000, 0x05020003, - 0x600010c0, 0x0501f004, 0x599c0019, 0x8c000518, - 0x05000005, 0x8008111a, 0x480b5076, 0x640b5069, - 0x64075075, 0x599c0019, 0x8c000520, 0x05000001, - 0x4a035041, 0x0000aaaa, 0x599c1018, 0x90081530, - 0x90080d80, 0x05000005, 0x90080d90, 0x05000008, - 0x90080da0, 0x05020002, 0x48075041, 0x0501fdb7, - 0x05000007, 0x4803c856, 0x850e1d46, 0x05edf88f, - 0x59a8004d, 0x80040540, 0x4803504d, 0x49f3c857, - 0x42001000, 0x00106004, 0x0519fc0f, 0x42001000, - 0x00105ff7, 0x0519fd4d, 0x4a038805, 0xffffffff, - 0x0501fe5b, 0x05000008, 0x599c1019, 0x8c08053c, - 0x05020005, 0x4a03c014, 0x00400040, 0x4a03c013, - 0x00400000, 0x59a0001e, 0x84000540, 0x4803401e, - 0x49f3c857, 0x59a802dd, 0x48034209, 0x59a804dd, - 0x48034409, 0x05f1f73b, 0x00000018, 0x0000000c, - 0x00000018, 0x00000020, 0x916c0580, 0x05020003, - 0x601c0800, 0x05f1f776, 0x60800800, 0x59a00408, - 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, - 0x59a01a0a, 0x900c19c0, 0x800c1d40, 0x419c0000, - 0x0501f4f8, 0x8d0c050e, 0x05000003, 0x64074407, - 0x05f1f767, 0x050dfdd9, 0x05020003, 0x645b4407, - 0x05f1f763, 0x59a800b2, 0x8c000500, 0x0500000e, - 0x64034407, 0x60800800, 0x59a00408, 0x59a01208, - 0x900811c0, 0x80081540, 0x59a0040a, 0x59a01a0a, - 0x900c19c0, 0x800c1d40, 0x42000000, 0x00110258, - 0x0501f4e0, 0x64074407, 0x6080b000, 0x4200a800, - 0x00110258, 0x4200a000, 0xffffffff, 0x4450a800, - 0x8054a800, 0x8058b040, 0x05fe07fd, 0x4d440000, - 0x4d340000, 0x42028800, 0xffffffff, 0x42002000, - 0xffffffff, 0x60043000, 0x60043800, 0x42001800, - 0x00110258, 0x59a8103d, 0x82081500, 0x000000ff, - 0x40180000, 0x0c01f001, 0x00104306, 0x00104309, - 0x0010430d, 0x00104311, 0x82102500, 0xffffff00, - 0x0501f014, 0x82102500, 0xffff00ff, 0x840811c0, - 0x0501f010, 0x82102500, 0xff00ffff, 0x900811c0, - 0x0501f00c, 0x82102500, 0x00ffffff, 0x9c0801c0, - 0x80102540, 0x44101800, 0x42003000, 0xffffffff, - 0x42002000, 0xffffffff, 0x800c1800, 0x0501f003, - 0x40080000, 0x80102540, 0x81468800, 0xb1442cbf, - 0x05021012, 0x4c080000, 0x4c0c0000, 0x4c180000, - 0x4c1c0000, 0x0001fb00, 0x5c003800, 0x5c003000, - 0x5c001800, 0x5c001000, 0x05fe07f4, 0x0509ff06, - 0x05fe07f2, 0x80183000, 0x801c3800, 0x59341202, - 0x40180000, 0x0c01f7d1, 0x82100580, 0xffffffff, - 0x05000002, 0x44101800, 0x42001800, 0x00110258, - 0x500c0000, 0x82000500, 0xffffff00, 0x801c0540, - 0x44001800, 0x5c026800, 0x5c028800, 0x60800800, + 0x800c1d40, 0x59a00407, 0x48034000, 0x480b4001, + 0x480f4002, 0x0505fb88, 0x05020003, 0x640b4407, + 0x05f5f527, 0x60400800, 0x0505fba3, 0x4a01d809, + 0x00103dc2, 0x1c01f000, 0x0501fa0f, 0x05f40517, + 0x58ee580d, 0x48efc857, 0x49a3c857, 0x492fc857, + 0x592c0a08, 0x80040910, 0x05020003, 0x64674407, + 0x05f5f517, 0x4805d80c, 0x0501f005, 0x0501fa02, + 0x05f4050a, 0x48efc857, 0x49a3c857, 0x48efc857, + 0x49a3c857, 0x58ec000c, 0x80000040, 0x0500000d, + 0x4801d80c, 0x0505fb68, 0x05020003, 0x640b4407, + 0x05f5f507, 0x60400800, 0x58ec1007, 0x58ec1808, + 0x0505fb81, 0x4a01d809, 0x00103dcf, 0x1c01f000, + 0x58ee580d, 0x48efc857, 0x49a3c857, 0x492fc857, + 0x492f3000, 0x592c0408, 0x8400055e, 0x48025c08, + 0x4a01d809, 0x00103def, 0x1c01f000, 0x4d2c0000, + 0x58ee580d, 0x48efc857, 0x49a3c857, 0x492fc857, + 0x592c0408, 0x8400051e, 0x48025c08, 0x59a00000, + 0x59a01001, 0x59a01802, 0x80081400, 0x900c1c40, + 0x912c0408, 0x60400800, 0x5c025800, 0x0505f36b, + 0x8d0c050e, 0x05000003, 0x64074407, 0x05f5f4e0, + 0x916c0583, 0x05000003, 0x641f4407, 0x05f5f4dc, + 0x59a0320c, 0x82183500, 0x000000ff, 0x59a28c07, + 0x0505fc16, 0x05f604db, 0x050dff34, 0x05f604d9, + 0x83440580, 0x000007fd, 0x05000005, 0x050dfedb, + 0x05000003, 0x64274407, 0x05f5f4cd, 0x0505fb2a, + 0x05020003, 0x640b4407, 0x05f5f4c9, 0x801831c0, + 0x05000007, 0x412c0800, 0x0505fb23, 0x05020003, + 0x640b4407, 0x05f5f4c2, 0x40065800, 0x4a025c08, + 0x00008000, 0x497a5a08, 0x0539fcf5, 0x05020003, + 0x640f4407, 0x05f5f4ba, 0x4a01d809, 0x00103e2d, + 0x1c01f000, 0x592c0009, 0x82000580, 0x01000000, + 0x05020003, 0x64134407, 0x05f5f4b1, 0x592c040a, + 0x82002d00, 0x0000ff00, 0x82000500, 0x000000ff, + 0x80000904, 0x80040800, 0x90040486, 0x05001002, + 0x60140800, 0x4c500000, 0x4c540000, 0x4c580000, + 0x912ca40a, 0x4050a800, 0x4004b000, 0x054dfa1a, 0x59a00408, 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, 0x800c1d40, - 0x42000000, 0x00110258, 0x0501f47e, 0x59a28c07, - 0x0501fd39, 0x05f206f3, 0x59a0020c, 0x8c000500, - 0x0500000c, 0x59a01209, 0x59a00409, 0x82000500, - 0x000000ff, 0x900001c0, 0x80081540, 0x41784000, - 0x0509fdb5, 0x05000005, 0x48034407, 0x05f1f6e5, - 0x0509ff1d, 0x05f206e3, 0x0501fc41, 0x05020003, - 0x640b4407, 0x05f1f6da, 0x59a0020c, 0x8c000500, - 0x05000003, 0x0509fecc, 0x050204f6, 0x59a0020c, - 0x8c000502, 0x05000015, 0x83440480, 0x000007f0, - 0x05021012, 0x0509fecd, 0x05020010, 0x497a5a08, - 0x4a025c08, 0x00008000, 0x59a24805, 0x0535f9f8, - 0x05020003, 0x640f4407, 0x05f1f6c5, 0x4a01d809, - 0x0010437a, 0x1c01f000, 0x59a28c07, 0x59a2440b, - 0x0509fefd, 0x05f206c3, 0x4c580000, 0x4c500000, + 0x912c040a, 0x4c140000, 0x0505fb1c, 0x5c002800, + 0x801429c0, 0x05000003, 0x4a01d809, 0x00103e58, + 0x5c00b000, 0x5c00a800, 0x5c00a000, 0x1c01f000, + 0x0501f979, 0x05f40481, 0x58ee580d, 0x812e59c0, + 0x05e00fb9, 0x592c000a, 0x82000500, 0xff000000, + 0x80000904, 0x800409c0, 0x05f4043e, 0x4807c857, + 0x9004048e, 0x05001002, 0x60340800, 0x592e5801, + 0x812e59c0, 0x05e00fac, 0x4c500000, 0x4c540000, + 0x4c580000, 0x912ca409, 0x4050a800, 0x4004b000, + 0x054df9ed, 0x5c00b000, 0x5c00a800, 0x5c00a000, + 0x58ec1007, 0x58ec1808, 0x912c0409, 0x0505f2f3, + 0x0505fac9, 0x05020003, 0x640b4407, 0x05f5f468, + 0x59a00c07, 0x82040500, 0x0000ff00, 0x840001c0, + 0x9000148e, 0x05f61467, 0x0c01f001, 0x00103e91, + 0x00103e97, 0x00103e9d, 0x00103e9e, 0x00103ea2, + 0x00103ebc, 0x00103ec0, 0x00103ea9, 0x00103eae, + 0x00103eb4, 0x00103e9d, 0x00103e9d, 0x00103e9d, + 0x00103e9d, 0x60340800, 0x42003800, 0x00103ee9, + 0x4a034000, 0x00111ce0, 0x0501f02d, 0x60340800, + 0x42003800, 0x00103ee9, 0x4a034000, 0x00111ced, + 0x0501f027, 0x05f5f44b, 0x0505fcd1, 0x05f60449, + 0x497b501e, 0x05f5f3ff, 0x0505fccd, 0x05f60445, + 0x59a8101d, 0x800811c0, 0x05f403fa, 0x480b501e, + 0x05f5f3f8, 0x0505fcc6, 0x05f6043e, 0x497b5011, + 0x497b5012, 0x05f5f3f3, 0x0505fcc1, 0x05f60439, + 0x64035011, 0x4a035012, 0x000927c0, 0x05f5f3ed, + 0x59a00c07, 0x82040d00, 0x000000ff, 0x05f40431, + 0x48074000, 0x42003800, 0x00103eca, 0x0501f008, + 0x60200800, 0x42003800, 0x00103ef2, 0x0501f004, + 0x60100800, 0x42003800, 0x00103f23, 0x0501f905, + 0x912c0409, 0x4c1c0000, 0x0505fa9b, 0x5c003800, + 0x481dd809, 0x1c01f000, 0x0501f907, 0x05f4040f, + 0x58ee580d, 0x59a0b000, 0x912ca409, 0x50500800, + 0x82040580, 0x00110307, 0x0502000f, 0x82041500, + 0x000000ff, 0x90080488, 0x0502100b, 0x4200a800, + 0x00111b96, 0x80081840, 0x8050a000, 0x50500000, + 0x4400a800, 0x8054a800, 0x800c1840, 0x05fe07fb, + 0x0501f005, 0x48074407, 0x900409c0, 0x48074208, + 0x05f5f404, 0x8050a000, 0x8058b482, 0x05fe07e8, + 0x05f5f3b8, 0x0501f8e8, 0x05f403f0, 0x58ee580d, + 0x6407504a, 0x6034b000, 0x59a0a800, 0x912ca409, + 0x054df96d, 0x05f5f3af, 0x0501f8df, 0x05f403e7, + 0x58ee580d, 0x912ca409, 0x50500000, 0x82001500, + 0x000c0016, 0x05f603ef, 0x90500c03, 0x50040000, + 0x90001501, 0x05f603eb, 0x50500000, 0x90001528, + 0x05000015, 0x900815a8, 0x05f603e6, 0x80500800, + 0x50040000, 0x90001513, 0x90081593, 0x05f603e1, + 0x80040800, 0x50040000, 0x82001500, 0x00050000, + 0x82081580, 0x00050000, 0x05f603da, 0x916c0580, + 0x0500000e, 0x599c0019, 0x8c00050e, 0x0502000b, + 0x05f5f3d4, 0x80500800, 0x50040000, 0x90001513, + 0x05f603d0, 0x80040800, 0x50040000, 0x82001500, + 0x00050000, 0x05f603cb, 0x6020b000, 0x4200a800, + 0x00111cc4, 0x054df901, 0x05f5f37e, 0x0501f8ae, + 0x05f403b6, 0x58ee580d, 0x6010b000, 0x4200a800, + 0x001124b0, 0x912ca409, 0x054df8f8, 0x850e1d50, + 0x05f5f374, 0x0505fa14, 0x05020003, 0x640b4407, + 0x05f5f3b3, 0x912cac09, 0x59a00c07, 0x82040500, + 0x0000ff00, 0x840001c0, 0x9000148e, 0x05f613b1, + 0x0c01f001, 0x00103f47, 0x00103f4a, 0x00103f4d, + 0x00103f4e, 0x00103f61, 0x00103f83, 0x00103f4d, + 0x00103f89, 0x00103f68, 0x00103f79, 0x00103f4d, + 0x00103f4d, 0x00103f4d, 0x00103f4d, 0x4200a000, + 0x00111ce0, 0x0501f071, 0x4200a000, 0x00111ced, + 0x0501f06e, 0x05f5f39b, 0x0505fc21, 0x05f60399, + 0x59a8041f, 0x48034407, 0x59a8021f, 0x48034208, + 0x59a80420, 0x48034408, 0x59a80220, 0x4803420a, + 0x59a8041d, 0x4803440a, 0x59a8021d, 0x4803420b, + 0x59a8041e, 0x4803440b, 0x59a8021e, 0x4803420c, + 0x05f5f340, 0x0505fc0e, 0x05f60386, 0x0501f865, + 0x60600800, 0x42000000, 0x00111ba5, 0x0505f203, + 0x0505fc07, 0x05000002, 0x05f5f37e, 0x59a80413, + 0x48034407, 0x59a80213, 0x48034208, 0x59a80414, + 0x48034408, 0x59a80214, 0x4803420a, 0x6403440a, + 0x6403420b, 0x6427440b, 0x4a03420c, 0x000027c0, + 0x05f5f328, 0x0505fbf6, 0x05000002, 0x05f4036d, + 0x0501f84c, 0x61ec0801, 0x800400c4, 0x48034407, + 0x42000000, 0x00108288, 0x0505f1e8, 0x6020b000, + 0x40580800, 0x4200a000, 0x00111cc4, 0x054df89b, + 0x0501f035, 0x59a00a0b, 0x6473420b, 0x9004049c, + 0x05f4135c, 0x603cb000, 0x4178a000, 0x054df89b, + 0x912cac09, 0x6010b000, 0xb1a8a410, 0x054df88f, + 0x916c0580, 0x05000007, 0x6008b000, 0x91a8a402, + 0x054df88a, 0x6008b000, 0x91a8a400, 0x054df887, + 0x912cac15, 0x600cb000, 0xb1a8a414, 0x054df883, + 0x492f4000, 0x0505f9a0, 0x05020003, 0x640b4407, + 0x05f5f33f, 0x912cac09, 0x603cb000, 0x4178a000, + 0x054df882, 0x912cac09, 0x6004b000, 0xb1a8a417, + 0x054df876, 0x912cac0a, 0x6010b000, 0xb1a8a418, + 0x054df872, 0x0501f817, 0x492f4001, 0x59a25800, + 0x912c0409, 0x603c0800, 0x0505f9b4, 0x4a01d809, + 0x00103fc0, 0x1c01f000, 0x6034b000, 0x40580800, + 0x054df8a1, 0x0501f80b, 0x912c0409, 0x0505f1ab, + 0x0501f811, 0x05f40319, 0x59a25801, 0x58ec1007, + 0x58ec1808, 0x912c0409, 0x60340800, 0x0505f1a3, + 0x59a00208, 0x59a01408, 0x900001c0, 0x80081540, + 0x59a0020a, 0x59a01c0a, 0x900001c0, 0x800c1d40, + 0x1c01f000, 0x4031d800, 0x58ef400b, 0x58ec0002, + 0x82000580, 0x00000200, 0x1c01f000, 0x59a00407, + 0x80000d40, 0x05020003, 0x48072833, 0x05f5f2c5, + 0x8d0c050e, 0x05020007, 0x4c000000, 0x0511fbb9, + 0x5c000000, 0x05000003, 0x645b4407, 0x05f5f300, + 0x82000c80, 0x00001000, 0x05f61302, 0x90000c82, + 0x05f41300, 0x800008c6, 0x80040c00, 0x80040c00, + 0x48072833, 0x59a800b4, 0x84000500, 0x59a00a08, + 0x8c040500, 0x05000002, 0x84000540, 0x480350b4, + 0x05f5f2ac, 0x8d0c050e, 0x05020003, 0x0511fba1, + 0x0502000c, 0x59a800b4, 0x8c000500, 0x05020005, + 0x4a03c014, 0x00400040, 0x4a03c013, 0x00400040, + 0x59a800b4, 0x8400054a, 0x480350b4, 0x05e1fe12, + 0x1c01f000, 0x916c0580, 0x05020003, 0x641f4407, + 0x05f5f2db, 0x59a01407, 0x800811c0, 0x0502002a, + 0x497b4208, 0x05edfff3, 0x05000011, 0x05edffd8, + 0x64074208, 0x0502000e, 0x4c080000, 0x05edffdf, + 0x5c001000, 0x05020006, 0x640b4208, 0x05edfbdd, + 0x05020007, 0x64134208, 0x0501f005, 0x640f4208, + 0x05edfbc6, 0x05020002, 0x64174208, 0x59c40801, + 0x82040d00, 0x00018000, 0x90040580, 0x05020003, + 0x64034407, 0x0501f069, 0x82040580, 0x00008000, + 0x05020003, 0x64074407, 0x0501f064, 0x82040580, + 0x00010000, 0x05020003, 0x640f4407, 0x0501f05f, + 0x82040580, 0x00018000, 0x05e20de3, 0x64134407, + 0x0501f05a, 0x59a800d6, 0x8c000502, 0x05000004, + 0x60080000, 0x40000800, 0x0501f012, 0x59a00208, + 0x4c000000, 0x0505fa53, 0x5c000000, 0x05000005, + 0x4c000000, 0x0505fa66, 0x5c000000, 0x05020007, + 0x90000d84, 0x05000003, 0x90000d82, 0x05020003, + 0x600c0000, 0x600c1000, 0x48034002, 0x59a8086c, + 0x4803506c, 0x599c7819, 0x823c7d00, 0xffff1fff, + 0x800000da, 0x803c7d40, 0x483f3819, 0x497b4208, + 0x05edffac, 0x05000013, 0x05edff91, 0x64074208, + 0x05020010, 0x4c040000, 0x4c080000, 0x05edff97, + 0x5c001000, 0x5c000800, 0x05020006, 0x640b4208, + 0x05edfb94, 0x05020007, 0x64134208, 0x0501f005, + 0x640f4208, 0x05edfb7d, 0x05020002, 0x64174208, + 0x05edfb92, 0x0500000b, 0x05edfb78, 0x05000009, + 0x05edfb7c, 0x05000007, 0x05edfb80, 0x05000005, + 0x05edfb84, 0x05000003, 0x4807506c, 0x05f5f275, + 0x90080583, 0x05020005, 0x59a00002, 0x48035079, + 0x640b506c, 0x0501f005, 0x4a035079, 0xaabbccdd, + 0x90080582, 0x05020011, 0x59c40006, 0x84000500, + 0x48038806, 0x0525fc92, 0x497b8880, 0x42000000, + 0x00112460, 0x0549fed2, 0x4803c856, 0x850e1d48, + 0x4a038808, 0x00000200, 0x6012d800, 0x64078805, + 0x64075078, 0x05e1ffa0, 0x05f5f212, 0x8d0c050e, + 0x05000003, 0x64074407, 0x05f5f251, 0x916c0583, + 0x05000003, 0x641f4407, 0x05f5f24d, 0x59a28c07, + 0x59a0320c, 0x82183500, 0x000000ff, 0x0505f987, + 0x05f6024c, 0x050dfca5, 0x05f6024a, 0x83440580, + 0x000007fd, 0x05000005, 0x050dfc4c, 0x05000003, + 0x60240800, 0x05f5f23e, 0x0505f89b, 0x05020003, + 0x640b4407, 0x05f5f23a, 0x497a5a08, 0x4a025c08, + 0x00008000, 0x0539fa81, 0x05020003, 0x640f4407, + 0x05f5f233, 0x4a01d809, 0x001040b4, 0x1c01f000, + 0x592c0009, 0x82000d00, 0x0000ffff, 0x82000500, + 0xffff0000, 0x82000580, 0x01000000, 0x05020003, + 0x64134407, 0x05f5f226, 0x80040904, 0x4c500000, + 0x4c540000, 0x4c580000, 0x912ca409, 0x4050a800, + 0x4004b000, 0x0549ff98, 0x5c00b000, 0x5c00a800, + 0x5c00a000, 0x59a00208, 0x59a01408, 0x900001c0, + 0x80081540, 0x59a0020a, 0x59a01c0a, 0x900001c0, + 0x800c1d40, 0x912c0409, 0x0505f098, 0x60000020, + 0x50000000, 0x82000480, 0x25320001, 0x0502000a, + 0x599c1019, 0x8c08053c, 0x05020005, 0x4a03c014, + 0x00400040, 0x4a03c013, 0x00400000, 0x6041d04e, + 0x051dfb90, 0x496fc857, 0x916c0580, 0x05000003, + 0x646b4407, 0x05f5f1fe, 0x0511fab2, 0x050a0a17, + 0x60800800, 0x59a00408, 0x59a01208, 0x900811c0, + 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, + 0x800c1d40, 0x419c0000, 0x49a3c857, 0x0505f86e, + 0x4a01d809, 0x001040f7, 0x1c01f000, 0x4833c857, + 0x05fdfed9, 0x05f401e1, 0x59a00407, 0x8c000500, + 0x05000061, 0x59a0020e, 0x80000104, 0x05f401e9, + 0x90000c95, 0x05f611e7, 0x40000800, 0x59a0040c, + 0x59a0120c, 0x900811c0, 0x80081540, 0x59a0040d, + 0x59a01a0d, 0x900c19c0, 0x800c1d40, 0x42000000, + 0x00111cb0, 0x49a3c857, 0x0505f853, 0x4a01d809, + 0x00104112, 0x1c01f000, 0x05fdfebf, 0x05f401c7, + 0x42000800, 0x00111cb0, 0x58040200, 0x800001c0, + 0x05f401d0, 0x599c0017, 0x8c000508, 0x05000042, + 0x58040204, 0x8c000500, 0x0500003f, 0x599c0202, + 0x800001c0, 0x05f401c7, 0x599c141e, 0x80000000, + 0x80080480, 0x05f611c3, 0x42001000, 0x001141cc, + 0x4a001008, 0x00000112, 0x6428120b, 0x4978140b, + 0x49781011, 0x4a00140e, 0x00000101, 0x58040005, + 0x48001015, 0x4a00120a, 0x0000ffff, 0x4a00100d, + 0x00115a74, 0x58040006, 0x48001016, 0x58040007, + 0x48001017, 0x4a001013, 0xdeadbeff, 0x4a001001, + 0x001141e4, 0x42001000, 0x001141e4, 0x48081000, + 0x48081001, 0x64281208, 0x58040005, 0x48001009, + 0x4800100c, 0x4800100f, 0x48001012, 0x48001015, + 0x58040006, 0x4800100a, 0x4800100d, 0x48001010, + 0x48001013, 0x48001016, 0x58040007, 0x4800100b, + 0x4800100e, 0x48001011, 0x48001014, 0x48001017, + 0x42001000, 0x00115a74, 0x4a001009, 0x001141cc, + 0x4a001013, 0xdeadbeff, 0x64841008, 0x64101203, + 0x64181407, 0x599c0200, 0x800001c0, 0x05f40189, + 0x59a800d6, 0x8c000502, 0x05000011, 0x599c0017, + 0x84000508, 0x48033817, 0x599c0019, 0x82000500, + 0xffff1fff, 0x82000540, 0x00004000, 0x48033819, + 0x599c0018, 0x84000510, 0x84000516, 0x82000500, + 0xffffffcf, 0x90000560, 0x0501f004, 0x8c000504, + 0x05000004, 0x599c0018, 0x84000514, 0x48033818, + 0x053df9c8, 0x850e1d20, 0x599c0017, 0x8c000508, + 0x05000003, 0x850e1d60, 0x0501f006, 0x8c00050a, + 0x05f60168, 0x59a80806, 0x8c040516, 0x05f60165, + 0x42024800, 0x001124b6, 0x64124a00, 0x42000800, + 0x001124b5, 0x64040800, 0x42000800, 0x001124b4, + 0x46000800, 0x0000ffff, 0x59240c00, 0x84040d46, + 0x599c1017, 0x8c08050a, 0x05020002, 0x84040d48, + 0x8c080508, 0x05020002, 0x84040d4a, 0x84040d4c, + 0x48064c00, 0x59240a00, 0x84040d40, 0x48064a00, + 0x0505fb1d, 0x05000017, 0x59c40801, 0x82040d40, + 0x00004000, 0x48078801, 0x64c378e4, 0x640752d2, + 0x640752d1, 0x640b50d3, 0x4a02480b, 0x0f000001, + 0x4c000000, 0x4c500000, 0x60000001, 0x4200a000, + 0x00114596, 0x4600a000, 0xffffffff, 0x8050a000, + 0x80000040, 0x05fe07fc, 0x5c00a000, 0x5c000000, + 0x4803c857, 0x8c000504, 0x05020004, 0x59c408a3, + 0x84040d7a, 0x480788a3, 0x8c000502, 0x05020004, + 0x59c408a3, 0x84040d08, 0x480788a3, 0x599c0c02, + 0x8c000500, 0x0502000b, 0x8c000516, 0x0500001f, + 0x4c000000, 0x59240400, 0x84000542, 0x840411c0, + 0x80081540, 0x480a4c00, 0x5c000000, 0x0501f008, + 0x4c000000, 0x59240400, 0x84000540, 0x840411c0, + 0x80081540, 0x480a4c00, 0x5c000000, 0xb00414bf, + 0x05f61114, 0x82041400, 0x001028fb, 0x50081000, + 0x82081500, 0x000000ff, 0x48064a08, 0x480a4805, + 0x480a4c08, 0x8c000500, 0x05020004, 0x480b5040, + 0x600c0800, 0x0525f81e, 0x0505f812, 0x05000004, + 0x59240400, 0x84000544, 0x48024c00, 0x599c0019, + 0x8c000506, 0x05000003, 0x4a03b805, 0x90000000, + 0x8c00050e, 0x05020005, 0x4c000000, 0x0505fb4e, + 0x5c000000, 0x05f600f7, 0x90000530, 0x05000003, + 0x80000108, 0x0501f002, 0x60080000, 0x48039040, + 0x60080800, 0x82000400, 0x0010443d, 0x50001000, + 0x0525f803, 0x599c0201, 0x82000c80, 0x00000100, + 0x05f410e8, 0x82000c80, 0x00000841, 0x05f610e5, + 0x90000507, 0x05f600e3, 0x599c0401, 0x80000540, + 0x05f400e0, 0x59a808d6, 0x8c040502, 0x05000005, + 0x90000c90, 0x05001003, 0x60400000, 0x48033c01, + 0x850e1d52, 0x82000580, 0x0000ffff, 0x05000002, + 0x850e1d12, 0x599c0409, 0x599c0c07, 0x80040c80, + 0x05f610d0, 0x80000040, 0x05f400ce, 0x599c0209, + 0x599c0a07, 0x80040c80, 0x05f610ca, 0x80000040, + 0x05f400c8, 0xb1a81414, 0x599c0818, 0x8c040510, + 0x05020005, 0x50080000, 0x8400053e, 0x44001000, + 0x0501f00b, 0x59a80006, 0x8400054a, 0x48035006, + 0x4a0370e4, 0x0000c000, 0x4c040000, 0x59c408a3, + 0x84040d3a, 0x480788a3, 0x5c000800, 0x8c040512, + 0x05020009, 0x50080000, 0x82000500, 0xfffff5ff, + 0x44001000, 0x80081000, 0x50080000, 0x8400053e, + 0x44001000, 0x59e00002, 0x84000568, 0x4803c002, + 0x05e1ff68, 0x42000000, 0x00111cfa, 0x452c0000, + 0x64073002, 0x412de000, 0x492fc840, 0x644fc842, + 0x05011000, 0x599c0018, 0x8c00052e, 0x05000012, + 0x850e1d16, 0x59a810d7, 0x90081493, 0x0500100c, + 0x0500000b, 0x480b50d7, 0x480b50d8, 0x59a810d9, + 0x9008148a, 0x05001004, 0x05000003, 0x480b50d9, + 0x0501f005, 0x60041000, 0x05fdf7fd, 0x60041000, + 0x05fdf7f5, 0x600000b8, 0x599c1407, 0x48080100, + 0x480a5a0c, 0x48025a00, 0x492e5801, 0x599c100b, + 0x480a5808, 0x599c180c, 0x480e5809, 0x64065c10, + 0x599c0c09, 0x48065c0a, 0x05e1ff3e, 0x42000000, + 0x00111dfa, 0x452c0000, 0x64073008, 0x492fc840, + 0x642bc842, 0x05011000, 0x412ee800, 0x492e5800, + 0x492de012, 0x4a025803, 0xffff0000, 0x60040000, + 0x8d0c0516, 0x05020006, 0x599c0211, 0x82001480, + 0x00000100, 0x05f6106b, 0x599c1018, 0x48025a09, + 0x600000bc, 0x599c1207, 0x48080000, 0x480a5c09, + 0x48025c08, 0x599c100d, 0x480a5806, 0x599c180e, + 0x480e5807, 0x599c0a09, 0x48065a08, 0x599c0818, + 0x8c040532, 0x05000009, 0x6405e20a, 0x599c021a, + 0x4801e411, 0x42000000, 0x00102f76, 0x50000000, + 0x4801e210, 0x0501f009, 0x599c0a1a, 0x90040486, + 0x05001002, 0x60040800, 0x82040c00, 0x00102f73, + 0x50040000, 0x4801e210, 0x599c0818, 0x599c141a, + 0x8c040526, 0x05000002, 0x8408157e, 0x8c040524, + 0x05000002, 0x8408157c, 0x8c040528, 0x05000003, + 0x82081540, 0x20000000, 0x4809e00b, 0x480a5801, + 0x480bb01f, 0x480bb11f, 0x599c0211, 0x82000400, + 0x00111efa, 0x44080000, 0x42000000, 0x00112324, + 0x50000000, 0x48080006, 0x42000000, 0x00112323, + 0x50000000, 0x48080006, 0x0511fca8, 0x050dfe12, + 0x599c0201, 0x48035004, 0x05e9fd7f, 0x599c020a, + 0x800001c0, 0x05000003, 0x48035066, 0x0501f003, + 0x4a035066, 0x000000c8, 0x8d0c0520, 0x05000006, + 0x599c0413, 0x90000c82, 0x05f4101e, 0x0521f8bf, + 0x417a5000, 0x599c0003, 0x599c0804, 0x9c0001c0, + 0x9c0409c0, 0x48024801, 0x48064802, 0x48035002, + 0x48075003, 0x599c1017, 0x8c08051c, 0x05000006, + 0x599c0005, 0x599c0806, 0x9c0001c0, 0x9c0409c0, + 0x0501f003, 0x82000500, 0xf0ffffff, 0x48024803, + 0x48064804, 0x48035000, 0x48075001, 0x42001000, + 0x00111ce0, 0x48001000, 0x48041001, 0x42001000, + 0x00111ced, 0x48001000, 0x48041001, 0x59a00207, + 0xb0000588, 0x050200b0, 0x0501fe53, 0x05020003, + 0x640b4407, 0x05f1f7f2, 0x60400800, 0x59a00208, + 0x59a01408, 0x900001c0, 0x80081540, 0x59a0020a, + 0x59a01c0a, 0x900001c0, 0x800c1d40, 0x82081400, + 0x00000080, 0xb0083400, 0x481b4002, 0x900c3440, + 0x481b4003, 0x912c0408, 0x0501fe5f, 0x4a01d809, + 0x00104306, 0x1c01f000, 0x05fdfccb, 0x05f007d3, + 0x58ee580d, 0x592c1008, 0x480bc857, 0x80080120, + 0x42024800, 0x001124b6, 0x48024c06, 0x82081500, + 0x0000ffff, 0x599c0818, 0x90040d30, 0x90040580, + 0x05020004, 0xb00804be, 0x05f217d2, 0x0501f001, + 0x0549fd78, 0x05000014, 0x82080480, 0x00000100, + 0x05f217cc, 0x42000000, 0x001124b5, 0x44080000, + 0x800811c0, 0x05f007c7, 0x40080800, 0x42024800, + 0x001124b6, 0x912e5c09, 0x592c0400, 0x8c000506, + 0x05020012, 0x59240200, 0x84000500, 0x48024a00, + 0x0501f00e, 0x82080480, 0x000000ff, 0x05f217b9, + 0x80080800, 0x42000000, 0x001124b5, 0x44040000, + 0x800811c0, 0x05000068, 0x42024800, 0x001124c3, + 0x80040840, 0x912e5c09, 0x600c4000, 0x592c0400, + 0x8c000506, 0x05000012, 0x59a810d6, 0x90081506, + 0x05f207a8, 0x8c00050a, 0x05020003, 0x8d0c0520, + 0x05f007a4, 0x64164a00, 0x90001503, 0x05000006, + 0x840011c0, 0x82081500, 0x000000ff, 0x480a4a08, + 0x0501f003, 0x82000500, 0x000000ff, 0x48024c00, + 0x592c0001, 0x592c1002, 0x9c0001c0, 0x9c0811c0, + 0x48024801, 0x480a4802, 0x599c1817, 0x8c0c051c, + 0x05000006, 0x592c0003, 0x592c1004, 0x9c0001c0, + 0x9c0811c0, 0x0501f003, 0x82000500, 0xf0ffffff, + 0x48024803, 0x480a4804, 0x912e5c05, 0x91264c0d, + 0x80040840, 0x05000019, 0x80204040, 0x05fe07d4, + 0x48074000, 0x49274001, 0x603c0800, 0x59a01002, + 0x59a01803, 0x9008343c, 0x481b4002, 0x900c3440, + 0x481b4003, 0x58ee580d, 0x912c0408, 0x0501fdee, + 0x4a01d809, 0x00104377, 0x1c01f000, 0x05fdfc5a, + 0x05f00762, 0x58ee580d, 0x912e5c08, 0x59a00800, + 0x59a24801, 0x05fdf7bd, 0x0549fd12, 0x05000010, + 0x42006800, 0x001124b6, 0x4200b000, 0x001124b5, + 0x5058b000, 0x58340400, 0x8c000506, 0x05000005, + 0x58340200, 0x8400055e, 0x48006a00, 0x0501f004, + 0x90346c0d, 0x8058b040, 0x05fe07f7, 0x42006800, + 0x001124b6, 0x4200b000, 0x001124b5, 0x5058b000, + 0x8058b040, 0x05000008, 0x42024800, 0x001124c3, + 0x58340206, 0x48024a06, 0x91264c0d, 0x8058b040, + 0x05fe07fc, 0x599c1019, 0x82081500, 0x0000e000, + 0x497b4208, 0x05edfc5f, 0x05000012, 0x05edfc44, + 0x64074208, 0x0502000f, 0x4c080000, 0x05edfc4b, + 0x5c001000, 0x05020007, 0x640b4208, 0x82080580, + 0x00008000, 0x05020007, 0x64134208, 0x0501f005, + 0x640f4208, 0x90080580, 0x05020002, 0x64174208, + 0x90080580, 0x05020007, 0x6403506c, 0x60040000, + 0x05edfa0d, 0x60040000, 0x05edf9db, 0x0501f02b, + 0x82080580, 0x00002000, 0x05020008, 0x6407506c, + 0x60000000, 0x05edfa04, 0x60000000, 0x05edf9d2, + 0x05edfdc9, 0x0501f021, 0x82080580, 0x00004000, + 0x05020004, 0x640b506c, 0x64075078, 0x05fdf7f9, + 0x82080580, 0x00006000, 0x0502000f, 0x59a80895, + 0x82040d80, 0x01391077, 0x05020004, 0x59e00813, + 0x8c040500, 0x05f20713, 0x640f506c, 0x60080000, + 0x05edf9ed, 0x60080000, 0x05edf9bb, 0x05fdf7e9, + 0x0501f00a, 0x82080580, 0x00008000, 0x05f20709, + 0x05edfdbc, 0x6413506c, 0x600c0000, 0x05edf9e2, + 0x600c0000, 0x05edf9b0, 0x599c1019, 0x82081500, + 0x0000e000, 0x4c080000, 0x0501fed2, 0x5c001000, + 0x05020004, 0x82080580, 0x00004000, 0x0500000b, + 0x0501fea0, 0x05000003, 0x0501feb5, 0x05020009, + 0x82080580, 0x00008000, 0x05000004, 0x82080580, + 0x00004000, 0x05020003, 0x600010c0, 0x0501f004, + 0x599c0019, 0x8c000518, 0x05000005, 0x8008111a, + 0x480b5079, 0x640b506c, 0x64075078, 0x599c0019, + 0x8c000520, 0x05000001, 0x4a035044, 0x0000aaaa, + 0x599c1018, 0x90081530, 0x90080d80, 0x05000005, + 0x90080d90, 0x05000008, 0x90080da0, 0x05020002, + 0x48075044, 0x0501fdde, 0x05000007, 0x4803c856, + 0x850e1d46, 0x05e9ff99, 0x59a80050, 0x80040540, + 0x48035050, 0x49f3c857, 0x42001000, 0x001062e8, + 0x0519feb3, 0x42001000, 0x001062db, 0x051df83b, + 0x4a038805, 0xffffffff, 0x0501fe8b, 0x05000008, + 0x599c1019, 0x8c08053c, 0x05020005, 0x4a03c014, + 0x00400040, 0x4a03c013, 0x00400000, 0x59a0001e, + 0x84000540, 0x4803401e, 0x8d0c0538, 0x05020008, + 0x42000800, 0x0010e380, 0x82041400, 0x00003800, + 0x05e1fdad, 0x480b500d, 0x481b500e, 0x49f3c857, + 0x59a802e2, 0x48034209, 0x59a804e2, 0x48034409, + 0x05f1f664, 0x00000018, 0x0000000c, 0x00000018, + 0x00000020, 0x916c0580, 0x05020003, 0x601c0800, + 0x05f1f69f, 0x60800800, 0x59a00408, 0x59a01208, + 0x900811c0, 0x80081540, 0x59a0040a, 0x59a01a0a, + 0x900c19c0, 0x800c1d40, 0x419c0000, 0x0501f51b, + 0x8d0c050e, 0x05000003, 0x64074407, 0x05f1f690, + 0x050dff44, 0x05020003, 0x645b4407, 0x05f1f68c, + 0x59a800b7, 0x8c000500, 0x0500000e, 0x64034407, + 0x60800800, 0x59a00408, 0x59a01208, 0x900811c0, + 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, + 0x800c1d40, 0x42000000, 0x001141fc, 0x0501f503, + 0x64074407, 0x6080b000, 0x4200a800, 0x001141fc, + 0x4200a000, 0xffffffff, 0x4450a800, 0x8054a800, + 0x8058b040, 0x05fe07fd, 0x4d440000, 0x4d340000, + 0x42028800, 0xffffffff, 0x42002000, 0xffffffff, + 0x60043000, 0x60043800, 0x42001800, 0x001141fc, + 0x59a81040, 0x82081500, 0x000000ff, 0x40180000, + 0x0c01f001, 0x00104485, 0x00104488, 0x0010448c, + 0x00104490, 0x82102500, 0xffffff00, 0x0501f014, + 0x82102500, 0xffff00ff, 0x840811c0, 0x0501f010, + 0x82102500, 0xff00ffff, 0x900811c0, 0x0501f00c, + 0x82102500, 0x00ffffff, 0x9c0801c0, 0x80102540, + 0x44101800, 0x42003000, 0xffffffff, 0x42002000, + 0xffffffff, 0x800c1800, 0x0501f003, 0x40080000, + 0x80102540, 0x81468800, 0xb1442cbf, 0x05021014, + 0x4c100000, 0x4c080000, 0x4c0c0000, 0x4c180000, + 0x4c1c0000, 0x0001fb08, 0x5c003800, 0x5c003000, + 0x5c001800, 0x5c001000, 0x5c002000, 0x05fe07f2, + 0x050df84e, 0x05fe07f0, 0x80183000, 0x801c3800, + 0x59341202, 0x40180000, 0x0c01f7cf, 0x82100580, + 0xffffffff, 0x05000002, 0x44101800, 0x42001800, + 0x001141fc, 0x500c0000, 0x82000500, 0xffffff00, + 0x801c0540, 0x44001800, 0x5c026800, 0x5c028800, + 0x60800800, 0x59a00408, 0x59a01208, 0x900811c0, + 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, + 0x800c1d40, 0x42000000, 0x001141fc, 0x0501f49f, + 0x59a28c07, 0x0501fd55, 0x05f2061a, 0x59a0020c, + 0x8c000500, 0x0500000c, 0x59a01209, 0x59a00409, + 0x82000500, 0x000000ff, 0x900001c0, 0x80081540, + 0x41784000, 0x0509fea6, 0x05000005, 0x48034407, + 0x05f1f60c, 0x050df865, 0x05f2060a, 0x0501fc62, + 0x05020003, 0x640b4407, 0x05f1f601, 0x59a0020c, + 0x8c000500, 0x05000003, 0x050df814, 0x05020512, + 0x59a0020c, 0x8c000502, 0x05000018, 0x83440480, + 0x000007f0, 0x05001004, 0x83440480, 0x00000800, + 0x05001012, 0x050df812, 0x05020010, 0x497a5a08, + 0x4a025c08, 0x00008000, 0x59a24805, 0x0535fe0d, + 0x05020003, 0x640f4407, 0x05f1f5e9, 0x4a01d809, + 0x001044fe, 0x1c01f000, 0x59a28c07, 0x59a2440b, + 0x050df842, 0x05f205e7, 0x4c580000, 0x4c500000, 0x4c540000, 0x6028b000, 0x4134a000, 0x912e5c05, - 0x412ca800, 0x0545fd22, 0x912cac06, 0x4054a000, - 0x6010b000, 0x0545fd59, 0x5c00a800, 0x5c00a000, + 0x412ca800, 0x0549fb19, 0x912cac06, 0x4054a000, + 0x6010b000, 0x0549fb50, 0x5c00a800, 0x5c00a000, 0x5c00b000, 0x592c0802, 0x82040500, 0x00ff00ff, 0x900001c0, 0x82041500, 0xff00ff00, 0x80080540, 0x48025802, 0x592c0801, 0x82040500, 0x00ff00ff, 0x900001c0, 0x82041500, 0xff00ff00, 0x80080540, 0x48025801, 0x60280800, 0x59a00408, 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, 0x59a01a0a, - 0x900c19c0, 0x800c1d40, 0x412c0000, 0x0501f421, - 0x496fc857, 0x496f4407, 0x497b4208, 0x05edfbd5, - 0x05000015, 0x05edfbba, 0x64074208, 0x05020012, - 0x4c080000, 0x05edfbc1, 0x5c001000, 0x05020008, - 0x640b4208, 0x916c0580, 0x0500000b, 0x05e9ffbd, + 0x900c19c0, 0x800c1d40, 0x412c0000, 0x0501f43f, + 0x496fc857, 0x496f4407, 0x497b4208, 0x05edfad1, + 0x05000015, 0x05edfab6, 0x64074208, 0x05020012, + 0x4c080000, 0x05edfabd, 0x5c001000, 0x05020008, + 0x640b4208, 0x916c0580, 0x0500000b, 0x05e9feb9, 0x05020009, 0x64134208, 0x0501f007, 0x640f4208, - 0x916c0580, 0x05000004, 0x05e9ffa4, 0x05020002, - 0x64174208, 0x05f1f637, 0x59a28c07, 0x0501fcc2, - 0x05f2067c, 0x0509feb4, 0x05f2067a, 0x916c0583, - 0x05000003, 0x641f4407, 0x05f1f671, 0x91340c06, + 0x916c0580, 0x05000004, 0x05e9fea0, 0x05020002, + 0x64174208, 0x05f1f55b, 0x59a28c07, 0x0501fcdb, + 0x05f205a0, 0x0509fff9, 0x05f2059e, 0x916c0583, + 0x05000003, 0x641f4407, 0x05f1f595, 0x91340c06, 0x59a0020c, 0x8c000500, 0x05000002, 0x91340c08, 0x58040001, 0x4803440a, 0x900001c0, 0x4803420a, 0x50040000, 0x48034408, 0x900001c0, 0x48034208, - 0x59340200, 0x48034407, 0x05f1f61e, 0x8d0c050e, - 0x05000003, 0x64074407, 0x05f1f65d, 0x59a0220c, + 0x59340200, 0x48034407, 0x05f1f542, 0x8d0c050e, + 0x05000003, 0x64074407, 0x05f1f581, 0x59a0220c, 0x8c100500, 0x05020021, 0x8c100506, 0x05020004, - 0x59a03209, 0x90180483, 0x05f2165a, 0x59a28c07, - 0x0001fb00, 0x05f20657, 0x0509fe3b, 0x05000003, - 0x64274407, 0x05f1f64e, 0x0501fbb1, 0x05020003, - 0x640b4407, 0x05f1f64a, 0x59a0220c, 0x8c100506, + 0x59a03209, 0x90180483, 0x05f2157e, 0x59a28c07, + 0x0001fb08, 0x05f2057b, 0x0509ff80, 0x05000003, + 0x64274407, 0x05f1f572, 0x0501fbcf, 0x05020003, + 0x640b4407, 0x05f1f56e, 0x59a0220c, 0x8c100506, 0x05000004, 0x59343002, 0x82183500, 0x00ffffff, - 0x497a5a08, 0x4a025c08, 0x00008000, 0x0535f938, - 0x05020003, 0x640f4407, 0x05f1f63d, 0x4a01d809, - 0x0010443c, 0x1c01f000, 0x59a28c07, 0x0001fb00, - 0x05f2063c, 0x0509fe20, 0x05000003, 0x64274407, - 0x05f1f633, 0x0501fb96, 0x05020003, 0x640b4407, - 0x05f1f62f, 0x497a5a08, 0x4a025c08, 0x00008000, - 0x0501fb8f, 0x05020003, 0x640b4407, 0x05f1f628, - 0x592e5800, 0x0535f931, 0x05020003, 0x640f4407, - 0x05f1f623, 0x4a01d809, 0x0010441c, 0x1c01f000, + 0x497a5a08, 0x4a025c08, 0x00008000, 0x0535fd4d, + 0x05020003, 0x640f4407, 0x05f1f561, 0x4a01d809, + 0x001045c0, 0x1c01f000, 0x59a28c07, 0x0001fb08, + 0x05f20560, 0x0509ff65, 0x05000003, 0x64274407, + 0x05f1f557, 0x0501fbb4, 0x05020003, 0x640b4407, + 0x05f1f553, 0x497a5a08, 0x4a025c08, 0x00008000, + 0x0501fbad, 0x05020003, 0x640b4407, 0x05f1f54c, + 0x592e5800, 0x0535fd46, 0x05020003, 0x640f4407, + 0x05f1f547, 0x4a01d809, 0x001045a0, 0x1c01f000, 0x592c2809, 0x82140d80, 0x01000000, 0x05020003, - 0x64134407, 0x05f1f61a, 0x60200800, 0x59a00208, + 0x64134407, 0x05f1f53e, 0x60200800, 0x59a00208, 0x59a01408, 0x900001c0, 0x80081540, 0x59a0020a, 0x59a01c0a, 0x900001c0, 0x800c1d40, 0x912c0409, - 0x0501fb9c, 0x8c140500, 0x05000003, 0x4a01d809, - 0x00104432, 0x1c01f000, 0x05fdfa29, 0x05f005ff, - 0x58ee580e, 0x812e59c0, 0x05e009a4, 0x60200800, - 0x912c0409, 0x58ec1007, 0x58ec1808, 0x0501f38d, + 0x0501fbba, 0x8c140500, 0x05000003, 0x4a01d809, + 0x001045b6, 0x1c01f000, 0x05fdfa1b, 0x05f00523, + 0x58ee580e, 0x812e59c0, 0x05e0085b, 0x60200800, + 0x912c0409, 0x58ec1007, 0x58ec1808, 0x0501f3ab, 0x592c0009, 0x82000580, 0x01000000, 0x05020003, - 0x64134407, 0x05f1f5fa, 0x59a00208, 0x59a01408, + 0x64134407, 0x05f1f51e, 0x59a00208, 0x59a01408, 0x900001c0, 0x80081540, 0x59a0020a, 0x59a01c0a, 0x900001c0, 0x800c1d40, 0x60180800, 0x912c040a, - 0x0501f37c, 0x59a00a0b, 0x800409c0, 0x05f005f1, + 0x0501f39a, 0x59a00a0b, 0x800409c0, 0x05f00515, 0x82040480, 0x00000081, 0x05001002, 0x60000801, 0x59c40085, 0x59881004, 0x80081400, 0x480b1004, - 0x497b8885, 0x59c400b1, 0x59a810a9, 0x80080400, - 0x48031022, 0x59c400b2, 0x59a810aa, 0x80080400, + 0x497b8885, 0x59c400b1, 0x59a810ae, 0x80080400, + 0x48031022, 0x59c400b2, 0x59a810af, 0x80080400, 0x48031021, 0x59c400a2, 0x82000500, 0x0000ffff, - 0x48031023, 0x598810bc, 0x598800bd, 0x80081400, - 0x598800be, 0x80081400, 0x598800bf, 0x80081400, - 0x59880122, 0x80081400, 0x598800c0, 0x80081400, - 0x5988013c, 0x80081400, 0x5988013a, 0x80081400, - 0x59880139, 0x80081400, 0x480b1024, 0x59a00208, + 0x59881023, 0x80080400, 0x05021002, 0x81780040, + 0x48031023, 0x598810bf, 0x598800c0, 0x80081400, + 0x598800c1, 0x80081400, 0x598800c2, 0x80081400, + 0x59880125, 0x80081400, 0x598800c3, 0x80081400, + 0x59880145, 0x80081400, 0x5988014b, 0x80081400, + 0x59880157, 0x80081400, 0x5988014e, 0x80081400, + 0x5988013f, 0x80081400, 0x5988013d, 0x80081400, + 0x5988013c, 0x80081400, 0x480b1024, 0x59a00208, 0x59a01408, 0x900001c0, 0x80081540, 0x59a0020a, 0x59a01c0a, 0x900001c0, 0x800c1d40, 0x91880400, - 0x0501fb48, 0x4a01d809, 0x00104484, 0x1c01f000, - 0x05fdf9d7, 0x05f005ad, 0x59a0020c, 0x8c000500, + 0x0501fb5a, 0x4a01d809, 0x00104614, 0x1c01f000, + 0x05fdf9bd, 0x05f004c5, 0x59a0020c, 0x8c000500, 0x05000006, 0x91880400, 0x4803c840, 0x641bc842, 0x05011000, 0x497b8885, 0x4a034208, 0x00000080, - 0x05f1f568, 0x8d0c050e, 0x05000003, 0x64074407, - 0x05f1f5a7, 0x0501fbf0, 0x05f205aa, 0x0501fb08, - 0x05020003, 0x640b4407, 0x05f1f5a1, 0x497a5a08, + 0x05f1f480, 0x8d0c050e, 0x05000003, 0x64074407, + 0x05f1f4bf, 0x0501fbfd, 0x05f204c2, 0x0501fb1a, + 0x05020003, 0x640b4407, 0x05f1f4b9, 0x497a5a08, 0x4a025c08, 0x00008000, 0x59a00407, 0x800001c0, - 0x05f005a0, 0x82001580, 0x000000ff, 0x05000003, - 0x90001484, 0x05f2159b, 0x40001000, 0x59a24805, - 0x05edfe03, 0x05020003, 0x640f4407, 0x05f1f590, - 0x4a01d809, 0x001044af, 0x1c01f000, 0x592c0009, - 0x82000580, 0x01000000, 0x05f20546, 0x64134407, - 0x05f1f587, 0x59a01407, 0x8c080508, 0x05020005, - 0x8d0c050e, 0x05000003, 0x64074407, 0x05f1f580, - 0x59a01c08, 0x820c0480, 0x00001000, 0x05f21581, + 0x05f004b8, 0x82001580, 0x000000ff, 0x05000003, + 0x90001484, 0x05f214b3, 0x40001000, 0x59a24805, + 0x05edfd06, 0x05020003, 0x640f4407, 0x05f1f4a8, + 0x4a01d809, 0x0010463f, 0x1c01f000, 0x592c0009, + 0x82000580, 0x01000000, 0x05f2045e, 0x64134407, + 0x05f1f49f, 0x59a01407, 0x8c080508, 0x05020005, + 0x8d0c050e, 0x05000003, 0x64074407, 0x05f1f498, + 0x59a01c08, 0x820c0480, 0x00001000, 0x05f21499, 0x497b2804, 0x497b2805, 0x497b2826, 0x497b2827, - 0x497b2829, 0x497b282a, 0x497b282c, 0x497b282d, + 0x497b282a, 0x497b282b, 0x497b282d, 0x497b282e, 0x4803c856, 0x850e1d06, 0x8c080500, 0x05000004, 0x4803c856, 0x910e1d51, 0x0501f004, 0x8c080506, 0x05000002, 0x850e1d42, 0x850e1d0a, 0x6006d800, 0x82081500, 0x000000e0, 0x8008010a, 0x0c02002d, - 0x050dfbd6, 0x05020008, 0x64075042, 0x4a035041, - 0x0000aaaa, 0x050dfb54, 0x0501f01b, 0x64035042, - 0x05fdf7fb, 0x050dfbd9, 0x05fc07f8, 0x0505fc24, - 0x0521fb71, 0x050dfbc9, 0x05020003, 0x60000000, - 0x050dfb9f, 0x59a00a08, 0x480788a7, 0x59c400a3, + 0x050dfd30, 0x05020008, 0x64075045, 0x4a035044, + 0x0000aaaa, 0x050dfca8, 0x0501f01b, 0x64035045, + 0x05fdf7fb, 0x050dfd33, 0x05fc07f8, 0x0505fc8b, + 0x0521fe9f, 0x050dfd23, 0x05020003, 0x60000000, + 0x050dfcf3, 0x59a00a08, 0x480788a7, 0x59c400a3, 0x82000500, 0xfeffffff, 0x82000540, 0x80018000, 0x40000800, 0x84040d20, 0x480388a3, 0x480788a3, - 0x497b5064, 0x60b40800, 0x42001000, 0x00105184, - 0x0519f991, 0x59a00408, 0x800000c2, 0x800008c4, - 0x8005d400, 0x61fc01ff, 0x050dfbb0, 0x05000003, - 0x59a00208, 0x80000110, 0x0501fb98, 0x05f1f4f5, - 0x001044d8, 0x001044da, 0x001044e1, 0x00102a40, - 0x001044df, 0x00102a40, 0x00102a40, 0x00102a40, - 0x916c0583, 0x05000003, 0x641f4407, 0x05f1f52c, - 0x0501fb75, 0x05f2052f, 0x59a00408, 0x59a00a08, + 0x497b5067, 0x60b40800, 0x42001000, 0x0010537b, + 0x0519fc1b, 0x59a00408, 0x800000c2, 0x800008c4, + 0x8005d400, 0x61fc01ff, 0x050dfd0a, 0x05000003, + 0x59a00208, 0x80000110, 0x0501fba5, 0x05f1f40d, + 0x00104668, 0x0010466a, 0x00104671, 0x00102ae8, + 0x0010466f, 0x00102ae8, 0x00102ae8, 0x00102ae8, + 0x916c0583, 0x05000003, 0x641f4407, 0x05f1f444, + 0x0501fb82, 0x05f20447, 0x59a00408, 0x59a00a08, 0x900409c0, 0x80040d40, 0x4805d807, 0x59a0040a, 0x59a00a0a, 0x900409c0, 0x80040d40, 0x4805d808, - 0x6401d801, 0x0501fa82, 0x05020003, 0x640b4407, - 0x05f1f51b, 0x417a8800, 0x497b4001, 0x912c0409, - 0x48034002, 0x59a00407, 0x8c000504, 0x05020088, + 0x6401d801, 0x0501fa94, 0x05020003, 0x640b4407, + 0x05f1f433, 0x417a8800, 0x497b4001, 0x912c0409, + 0x48034002, 0x59a00407, 0x8c000504, 0x05020091, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4178b800, - 0x59a0c407, 0x59a0c802, 0x59a2440b, 0x0509fd4a, - 0x05020027, 0x0509fcf4, 0x05000003, 0x0509fb8f, + 0x59a0c407, 0x59a0c802, 0x59a2440b, 0x0509fe83, + 0x05020027, 0x0509fe2d, 0x05000003, 0x0509fc71, 0x05020023, 0x8c60053e, 0x05020020, 0x8c600500, 0x05000008, 0x59340009, 0x4400c800, 0x8064c800, 0x59340008, 0x4400c800, 0x8064c800, 0x0501f007, 0x59340007, 0x4400c800, 0x8064c800, 0x59340006, 0x4400c800, 0x8064c800, 0x83440580, 0x000007fe, 0x0500000b, 0x83440580, 0x000007fc, 0x05000008, - 0x0509fce5, 0x05000003, 0x85468d5e, 0x0501f004, - 0x0509fa7b, 0x05020002, 0x85468d5e, 0x4544c800, + 0x0509fe1e, 0x05000003, 0x85468d5e, 0x0501f004, + 0x0509fb55, 0x05020002, 0x85468d5e, 0x4544c800, 0x85468d1e, 0x8064c800, 0x905cbc0c, 0x81468800, - 0x83440480, 0x000007f0, 0x0500100c, 0x8c600506, - 0x05000025, 0x83440580, 0x000007f0, 0x05020003, - 0x61fa880f, 0x0501f005, 0x83440580, 0x000007ff, - 0x0502001d, 0x61f2880f, 0x905c05bc, 0x05fe07c8, + 0x83440480, 0x000007f0, 0x05001015, 0x83440480, + 0x00000800, 0x05001005, 0x59a800ad, 0x81440480, + 0x0500100f, 0x0501f029, 0x8c600506, 0x05000009, + 0x83440580, 0x000007f0, 0x05020003, 0x61fa880f, + 0x0501f007, 0x83440580, 0x000007ff, 0x05000003, + 0x60028810, 0x0501f002, 0x61f2880f, 0x905c05bc, + 0x05fe07bf, 0x59a00001, 0x805c0400, 0x48034001, + 0x8c60053e, 0x05020007, 0x59a00a0b, 0x800409c0, + 0x05000006, 0x80040480, 0x05021004, 0x8460c57e, + 0x4178b800, 0x05fdf7b2, 0x49474000, 0x485dd805, + 0x59a00002, 0x4801d803, 0x40ec1000, 0x0001f829, + 0x4a01d809, 0x00104744, 0x5c00c800, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x8c60053e, 0x05020019, + 0x805cb9c0, 0x05000021, 0x59a00001, 0x805c0400, + 0x48034001, 0x59a00a0b, 0x800409c0, 0x05000005, + 0x80040480, 0x05021003, 0x4178b800, 0x0501f00d, + 0x59a00801, 0x48074407, 0x485dd805, 0x59a00002, + 0x4801d803, 0x4a01d809, 0x00102a9d, 0x40ec1000, + 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x0001f029, + 0x59a00001, 0x805c0c00, 0x59a0020b, 0x80040480, + 0x48034208, 0x642b4407, 0x5c00c800, 0x5c00c000, + 0x5c00b800, 0x05f1f3a6, 0x59a00801, 0x48074407, + 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x05f1f35d, + 0x05fdf88d, 0x05f00395, 0x59a28800, 0x05fdf771, + 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4178b800, + 0x59a0c407, 0x59a0c802, 0x59a2440b, 0x0509fdf3, + 0x05020029, 0x0509fd9d, 0x05000003, 0x0509fbe1, + 0x05020025, 0x8c60053e, 0x05020022, 0x83440580, + 0x000007fe, 0x0500000f, 0x83440580, 0x000007fc, + 0x0500000c, 0x0509fd9d, 0x05000005, 0x59340403, + 0x8400055e, 0x48026c03, 0x0501f006, 0x0509fad2, + 0x05020004, 0x59340403, 0x8400055e, 0x48026c03, + 0x4134a000, 0x4064a800, 0x6018b000, 0x0549f8b7, + 0x59340007, 0x4400a800, 0x59340006, 0x4800a801, + 0x59340009, 0x4800a802, 0x59340008, 0x4800a803, + 0x59340403, 0x8400051e, 0x48026c03, 0x9064cc0a, + 0x905cbc28, 0x81468800, 0x83440480, 0x000007f0, + 0x05001015, 0x83440480, 0x00000800, 0x05001005, + 0x59a800ad, 0x81440480, 0x0500100f, 0x0501f02a, + 0x8c600506, 0x05000009, 0x83440580, 0x000007f0, + 0x05020003, 0x61fa880f, 0x0501f007, 0x83440580, + 0x000007ff, 0x05000003, 0x60028810, 0x0501f002, + 0x61f2880f, 0x905c05a8, 0x05000002, 0x05fdf7bb, 0x59a00001, 0x805c0400, 0x48034001, 0x8c60053e, 0x05020007, 0x59a00a0b, 0x800409c0, 0x05000006, 0x80040480, 0x05021004, 0x8460c57e, 0x4178b800, - 0x05fdf7bb, 0x49474000, 0x485dd805, 0x59a00002, - 0x4801d803, 0x40ec1000, 0x0001f821, 0x4a01d809, - 0x001045ab, 0x5c00c800, 0x5c00c000, 0x5c00b800, + 0x05fdf7ae, 0x49474000, 0x485dd805, 0x59a00002, + 0x4801d803, 0x40ec1000, 0x0001f829, 0x4a01d809, + 0x001047d7, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x8c60053e, 0x05020019, 0x805cb9c0, 0x05000021, 0x59a00001, 0x805c0400, 0x48034001, 0x59a00a0b, 0x800409c0, 0x05000005, 0x80040480, 0x05021003, 0x4178b800, 0x0501f00d, 0x59a00801, 0x48074407, 0x485dd805, 0x59a00002, 0x4801d803, - 0x4a01d809, 0x001029f5, 0x40ec1000, 0x5c00c800, - 0x5c00c000, 0x5c00b800, 0x0001f021, 0x59a00001, + 0x4a01d809, 0x00102a9d, 0x40ec1000, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x0001f029, 0x59a00001, 0x805c0c00, 0x59a0020b, 0x80040480, 0x48034208, 0x642b4407, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x05f1f497, 0x59a00801, 0x48074407, 0x5c00c800, - 0x5c00c000, 0x5c00b800, 0x05f1f44e, 0x05fdf8b0, - 0x05f00486, 0x59a28800, 0x05fdf77a, 0x4c5c0000, - 0x4c600000, 0x4c640000, 0x4178b800, 0x59a0c407, - 0x59a0c802, 0x59a2440b, 0x0509fcc3, 0x05020029, - 0x0509fc6d, 0x05000003, 0x0509fb08, 0x05020025, - 0x8c60053e, 0x05020022, 0x83440580, 0x000007fe, - 0x0500000f, 0x83440580, 0x000007fc, 0x0500000c, - 0x0509fc6d, 0x05000005, 0x59340403, 0x8400055e, - 0x48026c03, 0x0501f006, 0x0509fa01, 0x05020004, - 0x59340403, 0x8400055e, 0x48026c03, 0x4134a000, - 0x4064a800, 0x6018b000, 0x0545fad5, 0x59340007, - 0x4400a800, 0x59340006, 0x4800a801, 0x59340009, - 0x4800a802, 0x59340008, 0x4800a803, 0x59340403, - 0x8400051e, 0x48026c03, 0x9064cc0a, 0x905cbc28, - 0x81468800, 0x83440480, 0x000007f0, 0x0500100c, - 0x8c600506, 0x05000026, 0x83440580, 0x000007f0, - 0x05020003, 0x61fa880f, 0x0501f005, 0x83440580, - 0x000007ff, 0x0502001e, 0x61f2880f, 0x905c05a8, - 0x05000002, 0x05fdf7c4, 0x59a00001, 0x805c0400, - 0x48034001, 0x8c60053e, 0x05020007, 0x59a00a0b, - 0x800409c0, 0x05000006, 0x80040480, 0x05021004, - 0x8460c57e, 0x4178b800, 0x05fdf7b7, 0x49474000, - 0x485dd805, 0x59a00002, 0x4801d803, 0x40ec1000, - 0x0001f821, 0x4a01d809, 0x00104635, 0x5c00c800, - 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x8c60053e, - 0x05020019, 0x805cb9c0, 0x05000021, 0x59a00001, - 0x805c0400, 0x48034001, 0x59a00a0b, 0x800409c0, - 0x05000005, 0x80040480, 0x05021003, 0x4178b800, - 0x0501f00d, 0x59a00801, 0x48074407, 0x485dd805, - 0x59a00002, 0x4801d803, 0x4a01d809, 0x001029f5, + 0x05f1f313, 0x59a00801, 0x48074407, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x05f1f2ca, 0x05f9fffa, + 0x05f00302, 0x59a28800, 0x05fdf76e, 0x61f82800, + 0x59a00c07, 0x59a01208, 0x59a01c08, 0x59a0220a, + 0x82040500, 0x0000ff00, 0x840001c0, 0x900034a0, + 0x05f01304, 0x80140480, 0x05f01302, 0x82040500, + 0x000000ff, 0x900034a0, 0x05f012fe, 0x80140480, + 0x05f012fc, 0x82080500, 0x0000ff00, 0x840001c0, + 0x900034a0, 0x05f012f7, 0x80140480, 0x05f012f5, + 0x82080500, 0x000000ff, 0x900034a0, 0x05f012f1, + 0x80140480, 0x05f012ef, 0x820c0500, 0x0000ff00, + 0x840001c0, 0x900034a0, 0x05f012ea, 0x80140480, + 0x05f012e8, 0x820c0500, 0x000000ff, 0x900034a0, + 0x05f012e4, 0x80140480, 0x05f012e2, 0x82100500, + 0x0000ff00, 0x840001c0, 0x900034a0, 0x05f012dd, + 0x80140480, 0x05f012db, 0x82100500, 0x000000ff, + 0x900034a0, 0x05f012d7, 0x80140480, 0x05f012d5, + 0x900401c0, 0x80080d40, 0x900c01c0, 0x80101d40, + 0xb1a83422, 0x44043000, 0x80183000, 0x440c3000, + 0x05f1f284, 0x916c0583, 0x05000003, 0x641f4407, + 0x05f1f2c3, 0x0501fa01, 0x05f202c6, 0x49234003, + 0x59a00408, 0x59a00a08, 0x900409c0, 0x80040d40, + 0x4805d807, 0x59a0040a, 0x59a00a0a, 0x900409c0, + 0x80040d40, 0x4805d808, 0x6401d801, 0x0501f912, + 0x05020003, 0x640b4407, 0x05f1f2b1, 0x417a8800, + 0x497b4001, 0x912c0408, 0x48034002, 0x4c5c0000, + 0x4c600000, 0x4c640000, 0x4178b800, 0x4178c800, + 0x59a0c002, 0x0509fd05, 0x0502000a, 0x0509fcaf, + 0x05020008, 0x8c64053e, 0x05020005, 0x59340002, + 0x4800c000, 0x4944c001, 0x9060c402, 0x905cbc08, + 0x81468800, 0x59a800ad, 0x81440480, 0x0502101f, + 0xb05c0480, 0x05021002, 0x05fdf7ef, 0x59a00001, + 0x805c0400, 0x48034001, 0x8c64053e, 0x05000003, + 0x4178b800, 0x05fdf7e8, 0x59a00a0b, 0x800409c0, + 0x05000006, 0x80040480, 0x05021004, 0x4178b800, + 0x8464cd7e, 0x05fdf7e0, 0x49474000, 0x485dd805, + 0x59a00002, 0x4801d803, 0x40ec1000, 0x0001f829, + 0x4a01d809, 0x00104896, 0x5c00c800, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x8c64053e, 0x0502001a, + 0x805cb9c0, 0x05000022, 0x59a00001, 0x805c0400, + 0x48034001, 0x59a00a0b, 0x800409c0, 0x05000005, + 0x80040480, 0x05021003, 0x4178b800, 0x0501f00e, + 0x59a00801, 0x80040906, 0x48074407, 0x485dd805, + 0x59a00002, 0x4801d803, 0x4a01d809, 0x00102a9d, 0x40ec1000, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x0001f021, 0x59a00001, 0x805c0c00, 0x59a0020b, + 0x0001f029, 0x59a00001, 0x805c0c00, 0x59a0020b, 0x80040480, 0x48034208, 0x642b4407, 0x5c00c800, - 0x5c00c000, 0x5c00b800, 0x05f1f40d, 0x59a00801, - 0x48074407, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x05f1f3c4, 0x05fdf826, 0x05f003fc, 0x59a28800, - 0x05fdf777, 0x61f82800, 0x59a00c07, 0x59a01208, - 0x59a01c08, 0x59a0220a, 0x82040500, 0x0000ff00, - 0x840001c0, 0x900034a0, 0x05f013fe, 0x80140480, - 0x05f013fc, 0x82040500, 0x000000ff, 0x900034a0, - 0x05f013f8, 0x80140480, 0x05f013f6, 0x82080500, - 0x0000ff00, 0x840001c0, 0x900034a0, 0x05f013f1, - 0x80140480, 0x05f013ef, 0x82080500, 0x000000ff, - 0x900034a0, 0x05f013eb, 0x80140480, 0x05f013e9, - 0x820c0500, 0x0000ff00, 0x840001c0, 0x900034a0, - 0x05f013e4, 0x80140480, 0x05f013e2, 0x820c0500, - 0x000000ff, 0x900034a0, 0x05f013de, 0x80140480, - 0x05f013dc, 0x82100500, 0x0000ff00, 0x840001c0, - 0x900034a0, 0x05f013d7, 0x80140480, 0x05f013d5, - 0x82100500, 0x000000ff, 0x900034a0, 0x05f013d1, - 0x80140480, 0x05f013cf, 0x900401c0, 0x80080d40, - 0x900c01c0, 0x80101d40, 0xb1a8341f, 0x44043000, - 0x80183000, 0x440c3000, 0x05f1f37e, 0x916c0583, - 0x05000003, 0x641f4407, 0x05f1f3bd, 0x0501fa06, - 0x05f203c0, 0x49234003, 0x59a00408, 0x59a00a08, - 0x900409c0, 0x80040d40, 0x4805d807, 0x59a0040a, - 0x59a00a0a, 0x900409c0, 0x80040d40, 0x4805d808, - 0x6401d801, 0x0501f912, 0x05020003, 0x640b4407, - 0x05f1f3ab, 0x417a8800, 0x497b4001, 0x912c0408, - 0x48034002, 0x4c5c0000, 0x4c600000, 0x4c640000, - 0x4178b800, 0x4178c800, 0x59a0c002, 0x0509fbde, - 0x0502000a, 0x0509fb88, 0x05020008, 0x8c64053e, - 0x05020005, 0x59340002, 0x4800c000, 0x4944c001, - 0x9060c402, 0x905cbc08, 0x81468800, 0x83440480, - 0x00000800, 0x0502101f, 0xb05c0480, 0x05021002, - 0x05fdf7ef, 0x59a00001, 0x805c0400, 0x48034001, - 0x8c64053e, 0x05000003, 0x4178b800, 0x05fdf7e8, - 0x59a00a0b, 0x800409c0, 0x05000006, 0x80040480, - 0x05021004, 0x4178b800, 0x8464cd7e, 0x05fdf7e0, - 0x49474000, 0x485dd805, 0x59a00002, 0x4801d803, - 0x40ec1000, 0x0001f821, 0x4a01d809, 0x001046f4, - 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, - 0x8c64053e, 0x0502001a, 0x805cb9c0, 0x05000022, - 0x59a00001, 0x805c0400, 0x48034001, 0x59a00a0b, - 0x800409c0, 0x05000005, 0x80040480, 0x05021003, - 0x4178b800, 0x0501f00e, 0x59a00801, 0x80040906, - 0x48074407, 0x485dd805, 0x59a00002, 0x4801d803, - 0x4a01d809, 0x001029f5, 0x40ec1000, 0x5c00c800, - 0x5c00c000, 0x5c00b800, 0x0001f021, 0x59a00001, - 0x805c0c00, 0x59a0020b, 0x80040480, 0x48034208, - 0x642b4407, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x05f1f34f, 0x59a00801, 0x80040906, 0x48074407, - 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x05f1f305, - 0x05f9ff67, 0x05f0033d, 0x59a28800, 0x59a24003, - 0x59a24805, 0x05fdf79c, 0x8d0c050e, 0x05000003, - 0x64074407, 0x05f1f33e, 0x59a80249, 0x8c00050a, - 0x05020005, 0x8c000506, 0x05020003, 0x645b4407, - 0x05f1f337, 0x0501f980, 0x05f2033a, 0x0501f898, - 0x05020003, 0x640b4407, 0x05f1f331, 0x59a00c07, - 0x80040902, 0x59a00408, 0x59a01208, 0x900811c0, - 0x80081540, 0x59a0040a, 0x59a01a0a, 0x900c19c0, - 0x800c1d40, 0x912c0409, 0x0501f8a9, 0x4a01d809, - 0x0010471a, 0x1c01f000, 0x05f9ff41, 0x05f00317, - 0x58ee580d, 0x592c000d, 0x59a8383d, 0x0515f9af, - 0x05040df4, 0x05f2031f, 0x49474001, 0x481a6802, - 0x592c000e, 0x82001d80, 0x70000000, 0x05020005, - 0x0501f877, 0x0502000c, 0x640b4407, 0x05f1f310, - 0x82001d80, 0x72000000, 0x05f20312, 0x0501f870, - 0x0502086f, 0x0502086e, 0x05020003, 0x640b4407, - 0x05f1f307, 0x58ee580d, 0x4a025c08, 0x00008000, - 0x497a5a08, 0x592c320c, 0x80183102, 0x592c1801, - 0x4a001809, 0x01000000, 0x0531fe1a, 0x05020003, - 0x640f4407, 0x05f1f2fa, 0x4a01d809, 0x00104745, - 0x1c01f000, 0x592c4000, 0x592c0009, 0x82000580, - 0x01000000, 0x05020003, 0x64134407, 0x05f1f2f0, - 0x4c580000, 0x4c500000, 0x4c540000, 0x912c3c09, - 0x401ca000, 0x401ca800, 0x5820280e, 0x6008b000, - 0x82143580, 0x70000000, 0x05000002, 0x603cb000, - 0x0545f98a, 0x5c00a800, 0x5c00a000, 0x5c00b000, - 0x401c0000, 0x5820100a, 0x5820180b, 0x58202209, - 0x80102102, 0x82143580, 0x70000000, 0x05020005, - 0x90103482, 0x05f012db, 0x60080800, 0x0501f061, - 0x82143580, 0x72000000, 0x05f202d6, 0x901034aa, - 0x05f012d4, 0x603c0800, 0x0501f85a, 0x4a01d809, - 0x00104772, 0x1c01f000, 0x05f9fee9, 0x05f002bf, - 0x58ee580e, 0x592e5800, 0x912c0c09, 0x4c580000, - 0x4c500000, 0x4c540000, 0x4004a000, 0x4004a800, - 0x603cb000, 0x0545f965, 0x5c00a800, 0x5c00a000, - 0x5c00b000, 0x40ec1000, 0x64001001, 0x64f01005, - 0x48041003, 0x0001f821, 0x4a01d809, 0x00104789, - 0x1c01f000, 0x05f9fed2, 0x05f002a8, 0x58ee580e, + 0x5c00c000, 0x5c00b800, 0x05f1f255, 0x59a00801, + 0x80040906, 0x48074407, 0x5c00c800, 0x5c00c000, + 0x5c00b800, 0x05f1f20b, 0x05f9ff3b, 0x05f00243, + 0x59a28800, 0x59a24003, 0x59a24805, 0x05fdf79c, + 0x8d0c050e, 0x05000003, 0x64074407, 0x05f1f244, + 0x59a8024c, 0x8c00050a, 0x05020005, 0x8c000506, + 0x05020003, 0x645b4407, 0x05f1f23d, 0x0501f97b, + 0x05f20240, 0x0501f898, 0x05020003, 0x640b4407, + 0x05f1f237, 0x59a00c07, 0x80040902, 0x59a00408, + 0x59a01208, 0x900811c0, 0x80081540, 0x59a0040a, + 0x59a01a0a, 0x900c19c0, 0x800c1d40, 0x912c0409, + 0x0501f8a9, 0x4a01d809, 0x001048bc, 0x1c01f000, + 0x05f9ff15, 0x05f0021d, 0x58ee580d, 0x592c000d, + 0x59a83840, 0x0515fbb9, 0x05040e6d, 0x05f20225, + 0x49474001, 0x481a6802, 0x592c000e, 0x82001d80, + 0x70000000, 0x05020005, 0x0501f877, 0x0502000c, + 0x640b4407, 0x05f1f216, 0x82001d80, 0x72000000, + 0x05f20218, 0x0501f870, 0x0502086f, 0x0502086e, + 0x05020003, 0x640b4407, 0x05f1f20d, 0x58ee580d, + 0x4a025c08, 0x00008000, 0x497a5a08, 0x592c320c, + 0x80183102, 0x592c1801, 0x4a001809, 0x01000000, + 0x0535fa11, 0x05020003, 0x640f4407, 0x05f1f200, + 0x4a01d809, 0x001048e7, 0x1c01f000, 0x592c4000, + 0x592c0009, 0x82000580, 0x01000000, 0x05020003, + 0x64134407, 0x05f1f1f6, 0x4c580000, 0x4c500000, + 0x4c540000, 0x912c3c09, 0x401ca000, 0x401ca800, + 0x5820280e, 0x6008b000, 0x82143580, 0x70000000, + 0x05000002, 0x603cb000, 0x0545ff63, 0x5c00a800, + 0x5c00a000, 0x5c00b000, 0x401c0000, 0x5820100a, + 0x5820180b, 0x58202209, 0x80102102, 0x82143580, + 0x70000000, 0x05020005, 0x90103482, 0x05f011e1, + 0x60080800, 0x0501f061, 0x82143580, 0x72000000, + 0x05f201dc, 0x901034aa, 0x05f011da, 0x603c0800, + 0x0501f85a, 0x4a01d809, 0x00104914, 0x1c01f000, + 0x05f9febd, 0x05f001c5, 0x58ee580e, 0x592e5800, 0x912c0c09, 0x4c580000, 0x4c500000, 0x4c540000, - 0x4004a000, 0x4004a800, 0x6030b000, 0x0545f94f, + 0x4004a000, 0x4004a800, 0x603cb000, 0x0545ff3e, 0x5c00a800, 0x5c00a000, 0x5c00b000, 0x40ec1000, - 0x64001001, 0x64c01005, 0x48041003, 0x0001f821, - 0x4a01d809, 0x001029f5, 0x1c01f000, 0x05e1f9e3, - 0x0500000e, 0x497a5800, 0x58ec000d, 0x80000540, - 0x05020004, 0x492dd80d, 0x492dd80e, 0x0501f006, - 0x58ec000e, 0x48025800, 0x90000401, 0x452c0000, - 0x492dd80e, 0x912c0408, 0x492fc857, 0x4803c857, - 0x1c01f000, 0x4d2c0000, 0x58ec400d, 0x802041c0, - 0x05000007, 0x4823c857, 0x40225800, 0x592c4001, - 0x497a5801, 0x05e1f9d9, 0x05fdf7f9, 0x4979d80d, - 0x4979d80e, 0x5c025800, 0x1c01f000, 0x60043000, - 0x0501f009, 0x60043000, 0x0501f008, 0x60003000, - 0x0501f006, 0x60003000, 0x800408c4, 0x0501f00b, - 0x60003000, 0x800408c4, 0x800409c0, 0x05dc0e0f, - 0x4803c857, 0x4807c857, 0x480bc857, 0x480fc857, - 0x481bc857, 0x48efc857, 0x4819d801, 0x4801d803, - 0x4809d807, 0x480dd808, 0x4805d805, 0x40ec1000, - 0x0001f821, 0x4a01d809, 0x001029f5, 0x1c01f000, - 0x80002d80, 0x480bc857, 0x480fc857, 0x4813c857, - 0x4817c857, 0x0001fab3, 0x0542004b, 0x4d2c0000, - 0x4da00000, 0x42034000, 0x0010dceb, 0x59a00018, - 0x800001c0, 0x05020014, 0x05006013, 0x480bc020, - 0x480fc021, 0x4813c022, 0x4817c023, 0x900811c0, - 0x90081552, 0x480bc011, 0x59e00017, 0x8c00050a, - 0x60000800, 0x00020892, 0x8d0c0530, 0x05e60ece, - 0x000209bc, 0x6403c017, 0x4203e000, 0x30000001, - 0x0501f049, 0x4c040000, 0x4c1c0000, 0x80000800, - 0x48074018, 0x59a0381b, 0x481fc857, 0x801c39c0, - 0x05020023, 0x9000048c, 0x0502100e, 0x59a00019, - 0x80000000, 0x48034019, 0x59a0021a, 0x90000402, - 0x90000c97, 0x4803421a, 0x05001003, 0x497b421a, - 0x41780000, 0x59a03817, 0x801c3c00, 0x0501f02c, - 0x4803c856, 0x05e1f96d, 0x05000007, 0x492f401b, - 0x492f401c, 0x412c3800, 0x497b421d, 0x497a5817, - 0x0501f023, 0x5988001e, 0x80000000, 0x4803101e, - 0x59a00018, 0x80000040, 0x48034018, 0x59a0021a, - 0x59a03817, 0x801c3c00, 0x0501f019, 0x59a0021d, - 0x90000402, 0x90000c96, 0x05021004, 0x4803421d, - 0x801c3c00, 0x0501f012, 0x05e1f954, 0x0502000b, - 0x5988001e, 0x80000000, 0x4803101e, 0x59a00018, - 0x80000040, 0x48034018, 0x4803c857, 0x59a0021d, - 0x801c3c00, 0x0501f006, 0x492f401b, 0x492c3817, - 0x412c3800, 0x497b421d, 0x497a5817, 0x48083c00, - 0x480c3a00, 0x48103c01, 0x48143a01, 0x5c003800, - 0x5c000800, 0x5c034000, 0x5c025800, 0x1c01f000, - 0x480fc857, 0x4813c857, 0x481bc857, 0x42000000, - 0x0010e40c, 0x0541ff8f, 0x801800d0, 0x81202d40, - 0x60501100, 0x05fdf78c, 0x4c000000, 0x599c0017, - 0x8c000512, 0x5c000000, 0x1c01f000, 0x4c000000, - 0x599c0018, 0x8c00050e, 0x5c000000, 0x1c01f000, - 0x8d0c050e, 0x05000003, 0x64074407, 0x05f1f1dc, - 0x916c0583, 0x05000003, 0x641f4407, 0x05f1f1d8, - 0x59a24805, 0x59240400, 0x8c000508, 0x05020003, - 0x64234407, 0x05f1f1d2, 0x59340405, 0x8c000508, - 0x05020003, 0x8c00050a, 0x05fe02f9, 0x497a5a08, - 0x497a5809, 0x4a025c08, 0x00008000, 0x0531fd79, - 0x05020003, 0x640f4407, 0x05f1f1c5, 0x4a01d809, - 0x0010487a, 0x1c01f000, 0x592c0009, 0x82000580, - 0x01000000, 0x05020003, 0x64134407, 0x05f1f1bc, - 0x59a28c07, 0x59a2440b, 0x0509f9f7, 0x05f201bd, - 0x05fdf2e3, 0x4c040000, 0x59a2440b, 0x42000000, - 0x0010e511, 0x50000000, 0x81200480, 0x0502100d, - 0x83200c00, 0x0010d17b, 0x50064800, 0x812649c0, - 0x05000008, 0x59240200, 0x8c000500, 0x05000005, - 0x49274005, 0x80000580, 0x5c000800, 0x1c01f000, - 0x90000541, 0x05fdf7fd, 0x61be880f, 0x0001fb00, - 0x05140e31, 0x81468840, 0x05fe17fd, 0x1c01f000, - 0x4803c856, 0x4c0c0000, 0x4d340000, 0x4d440000, - 0x61fa880f, 0x60024000, 0x0509f9d3, 0x0502000a, - 0x5934180a, 0x900c1d01, 0x900c1d81, 0x60002000, - 0x0501fa6c, 0x05000002, 0x60042000, 0x606c1100, - 0x05fdff2c, 0x5c028800, 0x5c026800, 0x5c001800, - 0x1c01f000, 0x48efc857, 0x05011000, 0x48efc840, - 0x6443c842, 0x40000000, 0x05fd17ff, 0x42000000, - 0x0010dd60, 0x50000000, 0x80000540, 0x05000003, - 0x5800000b, 0x4801d806, 0x4a01d80f, 0xbeefbeef, - 0x1c01f000, 0x497b4000, 0x497b4001, 0x497b4002, - 0x497b4003, 0x497b4004, 0x497b4005, 0x1c01f000, - 0x42002000, 0x00111b00, 0x41580000, 0x41781000, + 0x64001001, 0x64f01005, 0x48041003, 0x0001f829, + 0x4a01d809, 0x0010492b, 0x1c01f000, 0x05f9fea6, + 0x05f001ae, 0x58ee580e, 0x912c0c09, 0x4c580000, + 0x4c500000, 0x4c540000, 0x4004a000, 0x4004a800, + 0x6030b000, 0x0545ff28, 0x5c00a800, 0x5c00a000, + 0x5c00b000, 0x40ec1000, 0x64001001, 0x64c01005, + 0x48041003, 0x0001f829, 0x4a01d809, 0x00102a9d, + 0x1c01f000, 0x05e1f878, 0x0500000e, 0x497a5800, + 0x58ec000d, 0x80000540, 0x05020004, 0x492dd80d, + 0x492dd80e, 0x0501f006, 0x58ec000e, 0x48025800, + 0x90000401, 0x452c0000, 0x492dd80e, 0x912c0408, + 0x492fc857, 0x4803c857, 0x1c01f000, 0x4d2c0000, + 0x58ec400d, 0x802041c0, 0x05000007, 0x4823c857, + 0x40225800, 0x592c4001, 0x497a5801, 0x05e1f86e, + 0x05fdf7f9, 0x4979d80d, 0x4979d80e, 0x5c025800, + 0x1c01f000, 0x60043000, 0x0501f009, 0x60043000, + 0x0501f008, 0x60003000, 0x0501f006, 0x60003000, + 0x800408c4, 0x0501f006, 0x60003000, 0x800408c4, + 0x800409c0, 0x05dc0ca8, 0x4803c857, 0x4819d801, + 0x4801d803, 0x4809d807, 0x480dd808, 0x4805d805, + 0x40ec1000, 0x0001f829, 0x4a01d809, 0x00102a9d, + 0x1c01f000, 0x80002d80, 0x480bc857, 0x480fc857, + 0x4813c857, 0x4817c857, 0x0001fabb, 0x054205f8, + 0x4d2c0000, 0x4da00000, 0x42034000, 0x00111c71, + 0x59a00018, 0x800001c0, 0x05020014, 0x05006013, + 0x480bc020, 0x480fc021, 0x4813c022, 0x4817c023, + 0x900811c0, 0x90081552, 0x480bc011, 0x59e00017, + 0x8c00050a, 0x60000800, 0x0002089a, 0x8d0c0530, + 0x05e60da2, 0x000209c4, 0x6403c017, 0x4203e000, + 0x30000001, 0x0501f049, 0x4c040000, 0x4c1c0000, + 0x80000800, 0x48074018, 0x59a0381b, 0x481fc857, + 0x801c39c0, 0x05020023, 0x9000048c, 0x0502100e, + 0x59a00019, 0x80000000, 0x48034019, 0x59a0021a, + 0x90000402, 0x90000c97, 0x4803421a, 0x05001003, + 0x497b421a, 0x41780000, 0x59a03817, 0x801c3c00, + 0x0501f02c, 0x4803c856, 0x05e1f807, 0x05000007, + 0x492f401b, 0x492f401c, 0x412c3800, 0x497b421d, + 0x497a5817, 0x0501f023, 0x5988001e, 0x80000000, + 0x4803101e, 0x59a00018, 0x80000040, 0x48034018, + 0x59a0021a, 0x59a03817, 0x801c3c00, 0x0501f019, + 0x59a0021d, 0x90000402, 0x90000c96, 0x05021004, + 0x4803421d, 0x801c3c00, 0x0501f012, 0x05ddffee, + 0x0502000b, 0x5988001e, 0x80000000, 0x4803101e, + 0x59a00018, 0x80000040, 0x48034018, 0x4803c857, + 0x59a0021d, 0x801c3c00, 0x0501f006, 0x492f401b, + 0x492c3817, 0x412c3800, 0x497b421d, 0x497a5817, + 0x48083c00, 0x480c3a00, 0x48103c01, 0x48143a01, + 0x5c003800, 0x5c000800, 0x5c034000, 0x5c025800, + 0x1c01f000, 0x480fc857, 0x4813c857, 0x481bc857, + 0x42000000, 0x001123ad, 0x0545fd6d, 0x801800d0, + 0x81202d40, 0x60501100, 0x05fdf78c, 0x4c000000, + 0x599c0017, 0x8c000512, 0x5c000000, 0x1c01f000, + 0x4c000000, 0x599c0018, 0x8c00050e, 0x5c000000, + 0x1c01f000, 0x8d0c050e, 0x05000003, 0x64074407, + 0x05f1f0e7, 0x916c0583, 0x05000003, 0x641f4407, + 0x05f1f0e3, 0x59a24805, 0x59240400, 0x8c000508, + 0x05020003, 0x64234407, 0x05f1f0dd, 0x59340405, + 0x8c000508, 0x05020003, 0x8c00050a, 0x05fe02dd, + 0x497a5a08, 0x497a5809, 0x4a025c08, 0x00008000, + 0x0535f975, 0x05020003, 0x640f4407, 0x05f1f0d0, + 0x4a01d809, 0x00104a17, 0x1c01f000, 0x592c0009, + 0x82000580, 0x01000000, 0x05020003, 0x64134407, + 0x05f1f0c7, 0x59a28c07, 0x59a2440b, 0x0509fb23, + 0x05f200c8, 0x05fdf2c7, 0x4c040000, 0x59a2440b, + 0x42000000, 0x001124b5, 0x50000000, 0x81200480, + 0x0502100d, 0x83200c00, 0x0010d8f9, 0x50064800, + 0x812649c0, 0x05000008, 0x59240200, 0x8c000500, + 0x05000005, 0x49274005, 0x80000580, 0x5c000800, + 0x1c01f000, 0x90000541, 0x05fdf7fd, 0x59a800ad, + 0x80000040, 0x40028800, 0x0001fb08, 0x051808ac, + 0x83440580, 0x00000800, 0x05020002, 0x61c2880f, + 0x81468840, 0x05fe17f9, 0x1c01f000, 0x4803c856, + 0x4c0c0000, 0x4d340000, 0x4d440000, 0x61fa880f, + 0x60024000, 0x0509faf9, 0x0502000a, 0x5934180a, + 0x900c1d01, 0x900c1d81, 0x60002000, 0x0501fa6f, + 0x05000002, 0x60042000, 0x606c1100, 0x05fdff26, + 0x5c028800, 0x5c026800, 0x5c001800, 0x1c01f000, + 0x48efc857, 0x05011000, 0x48efc840, 0x6443c842, + 0x40000000, 0x05fd17ff, 0x42000000, 0x00111cfa, + 0x50000000, 0x80000540, 0x05000003, 0x5800000b, + 0x4801d806, 0x4a01d80f, 0xbeefbeef, 0x1c01f000, + 0x497b4000, 0x497b4001, 0x497b4002, 0x497b4003, + 0x497b4004, 0x497b4005, 0x1c01f000, 0x0501fb27, + 0x05000004, 0x916404a0, 0x0502101d, 0x0501f01b, + 0x42002000, 0x00115aa4, 0x41580000, 0x41781000, 0x58100c07, 0x800409c0, 0x0500000c, 0x90041d83, 0x0500000a, 0x90041c86, 0x05001007, 0x90041d8a, 0x05000005, 0x90041c8f, 0x05001004, 0x90041c92, 0x05021002, 0x80081000, 0x90102430, 0x80100c80, - 0x05fc17f0, 0x40080000, 0x59a8129c, 0x80080480, - 0x05021002, 0x41780000, 0x81640480, 0x05021002, - 0x41780000, 0x1c01f000, 0x05e9fe96, 0x05020015, - 0x59a86892, 0x82346d80, 0x3261103c, 0x05020011, - 0x0545f80f, 0x0500000d, 0x605c70f4, 0x50386800, - 0x82347500, 0x03f00000, 0x82387580, 0x00400000, - 0x05020007, 0x82347500, 0x000f0000, 0x82387580, - 0x00010000, 0x05000002, 0x90000541, 0x64030000, - 0x1c01f000, 0x05e9fe7f, 0x05020004, 0x59a86892, - 0x82347580, 0x01651077, 0x1c01f000, 0x05e9fe79, - 0x0502000d, 0x59a86892, 0x82347580, 0x01751077, - 0x05000009, 0x82347580, 0x01661077, 0x05000006, - 0x82347580, 0x01681077, 0x05000003, 0x82347580, - 0x01761077, 0x1c01f000, 0x05e9fe6a, 0x05020007, - 0x59a86892, 0x82347580, 0x01681077, 0x05000003, - 0x82347580, 0x01761077, 0x1c01f000, 0x05e9fe61, - 0x05020004, 0x59a86892, 0x82347580, 0x01751077, - 0x1c01f000, 0x05fdfffa, 0x05000003, 0x80000580, - 0x0501f00d, 0x59a00c07, 0x82040580, 0x000000a0, - 0x05000009, 0x82040580, 0x000000e0, 0x05000006, - 0x82040580, 0x000000d0, 0x05000003, 0x82040580, - 0x00000098, 0x1c01f000, 0x59a0020c, 0x8c00051a, - 0x1c01f000, 0x4803c856, 0x05fdffdc, 0x05000005, - 0x0501f88d, 0x05000003, 0x65034407, 0x05f1f0fc, - 0x59a0020b, 0x4803c857, 0x800001c0, 0x05f000fd, - 0xb0000485, 0x05f210fb, 0x59a0220c, 0x8c100500, - 0x0502001d, 0x4803c856, 0x05fdfe55, 0x05020004, - 0x640b4407, 0x4803c856, 0x05f1f0ed, 0x05edf80f, - 0x59a00c0b, 0x59a01a0b, 0x59a0220c, 0x59a02c07, - 0x912e5c05, 0x412cc800, 0x4807c857, 0x480fc857, - 0x4813c857, 0x4817c857, 0x4867c857, 0x0501f916, - 0x64030000, 0x0500001f, 0x59a00a0b, 0x59a01008, - 0x900811c0, 0x59a0180a, 0x900c19c0, 0x412c0000, - 0x05fdf65f, 0x4807c856, 0x59a00c0b, 0x59a01a0b, - 0x900c0581, 0x05f200d7, 0x4c040000, 0x4c0c0000, - 0x4c100000, 0x05e9fff1, 0x5c002000, 0x5c001800, - 0x5c000800, 0x59a02c07, 0x91a0cc07, 0x4807c857, - 0x4813c857, 0x4817c857, 0x0501f8fb, 0x64030000, - 0x05000004, 0x59a00a07, 0x48074407, 0x05f1f07d, - 0x64134407, 0x05f1f0be, 0x59a0220c, 0x4813c857, - 0x05fdff96, 0x05000005, 0x0501f847, 0x05000003, - 0x65034407, 0x05f1f0b6, 0x59a00c0b, 0x4807c857, - 0x8c100500, 0x05020017, 0x05fdfe15, 0x05020003, - 0x640b4407, 0x05f1f0ae, 0x59a00a0b, 0xb0040485, - 0x05f210b0, 0x59a01008, 0x900811c0, 0x59a0180a, - 0x900c19c0, 0x912c0405, 0x05fdfe2b, 0x4a01d809, - 0x0010499a, 0x1c01f000, 0x05f9fcc1, 0x05f00097, - 0x58ee580d, 0x912c1405, 0x59a01a0b, 0x0501f003, - 0x91a0140b, 0x60041800, 0x4c080000, 0x4c0c0000, - 0x05e9ffba, 0x5c001800, 0x5c001000, 0x59a00c0b, - 0x59a0220c, 0x59a02c07, 0x4807c857, 0x480bc857, - 0x50080000, 0x82000500, 0x000000ff, 0x4803c857, - 0x480fc857, 0x4813c857, 0x4817c857, 0x0501f84f, - 0x64030000, 0x05f20043, 0x64134407, 0x05f1f084, - 0x05fdff5e, 0x05000003, 0x0501f80f, 0x0502000d, - 0x4803c856, 0x61c0083f, 0x61c4103f, 0x64000800, - 0x46001000, 0x000001a7, 0x64040800, 0x64041000, - 0x64080800, 0x50080000, 0x8400054e, 0x44001000, - 0x1c01f000, 0x59a80092, 0x82000580, 0x338e103c, - 0x1c01f000, 0x4803c856, 0x4c5c0000, 0x64103000, - 0x4200b800, 0x000f4240, 0x05e9fbd9, 0x805cb840, - 0x05000005, 0x501c6800, 0x90346d02, 0x05fe07fb, - 0x90346d41, 0x485fc857, 0x5c00b800, 0x1c01f000, - 0x4803c856, 0x4c5c0000, 0x64103000, 0x4200b800, - 0x000f4240, 0x05e9fbca, 0x805cb840, 0x05000006, - 0x501c6800, 0x82346d00, 0x00000082, 0x05fe07fa, - 0x90346d41, 0x485fc857, 0x5c00b800, 0x1c01f000, - 0x4803c856, 0x4c5c0000, 0x4c600000, 0x6000b8f8, - 0x4200c000, 0x000f4240, 0x6404b800, 0x40000000, - 0x8060c040, 0x05000004, 0x505c0000, 0x8c000500, - 0x05fc07fa, 0x5c00c000, 0x5c00b800, 0x1c01f000, - 0x4803c856, 0x4c5c0000, 0x6000b8f8, 0x4578b800, - 0x5c00b800, 0x1c01f000, 0x4803c856, 0x05fdffe9, - 0x0500006a, 0x4c5c0000, 0x61c0303f, 0x61c4383f, - 0x64103000, 0x4200b800, 0x000f4240, 0x805cb840, - 0x60080000, 0x0500004f, 0x501c0000, 0x8c00050c, - 0x05fe07fb, 0x640c3000, 0x4817c857, 0x05fdffb6, - 0x05000002, 0x60802801, 0x44143800, 0x64103000, - 0x46003800, 0x00000090, 0x05fdffc2, 0x05000054, - 0x8c10051c, 0x05000008, 0x640c3000, 0x4807c857, - 0x44043800, 0x64103000, 0x64403800, 0x05fdffb9, - 0x0500004b, 0x800c19c0, 0x05000033, 0x640c3000, - 0x5008b800, 0x445c3800, 0x485fc857, 0x480fc857, - 0x800c1840, 0x05000028, 0x64103000, 0x64403800, - 0x05fdffac, 0x0500003e, 0x640c3000, 0x805cb910, - 0x445c3800, 0x485fc857, 0x480fc857, 0x800c1840, - 0x0500001d, 0x64103000, 0x64403800, 0x05fdffa1, - 0x05000033, 0x640c3000, 0x805cb910, 0x445c3800, - 0x485fc857, 0x480fc857, 0x800c1840, 0x05000012, - 0x64103000, 0x64403800, 0x05fdff96, 0x05000028, + 0x05fc17f0, 0x80800482, 0x05021002, 0x41780000, + 0x81640480, 0x05021002, 0x41780000, 0x1c01f000, + 0x05e9fd70, 0x05020015, 0x59a86895, 0x82346d80, + 0x3261103c, 0x05020011, 0x0545fde4, 0x0500000d, + 0x605c70f4, 0x50386800, 0x82347500, 0x03f00000, + 0x82387580, 0x00400000, 0x05020007, 0x82347500, + 0x000f0000, 0x82387580, 0x00010000, 0x05000002, + 0x90000541, 0x64030000, 0x1c01f000, 0x05e9fd59, + 0x05020004, 0x59a86895, 0x82347580, 0x01651077, + 0x1c01f000, 0x05e9fd53, 0x0502000d, 0x59a86895, + 0x82347580, 0x01751077, 0x05000009, 0x82347580, + 0x01661077, 0x05000006, 0x82347580, 0x01681077, + 0x05000003, 0x82347580, 0x01761077, 0x1c01f000, + 0x05e9fd44, 0x05020007, 0x59a86895, 0x82347580, + 0x01681077, 0x05000003, 0x82347580, 0x01761077, + 0x1c01f000, 0x05e9fd3b, 0x05020004, 0x59a86895, + 0x82347580, 0x01751077, 0x1c01f000, 0x05fdfffa, + 0x05000003, 0x80000580, 0x0501f00d, 0x59a00c07, + 0x82040580, 0x000000a0, 0x05000009, 0x82040580, + 0x000000e0, 0x05000006, 0x82040580, 0x000000d0, + 0x05000003, 0x82040580, 0x00000098, 0x1c01f000, + 0x59a0020c, 0x8c00051a, 0x1c01f000, 0x4803c856, + 0x05fdffdc, 0x05000005, 0x0501f88d, 0x05000003, + 0x65034407, 0x05edf7fe, 0x59a0020b, 0x4803c857, + 0x800001c0, 0x05ec07ff, 0xb0000485, 0x05ee17fd, + 0x59a0220c, 0x8c100500, 0x0502001d, 0x4803c856, + 0x05fdfe51, 0x05020004, 0x640b4407, 0x4803c856, + 0x05edf7ef, 0x05e9fee9, 0x59a00c0b, 0x59a01a0b, + 0x59a0220c, 0x59a02c07, 0x912e5c05, 0x412cc800, + 0x4807c857, 0x480fc857, 0x4813c857, 0x4817c857, + 0x4867c857, 0x0501f916, 0x64030000, 0x0500001f, + 0x59a00a0b, 0x59a01008, 0x900811c0, 0x59a0180a, + 0x900c19c0, 0x412c0000, 0x05fdf65b, 0x4807c856, + 0x59a00c0b, 0x59a01a0b, 0x900c0581, 0x05ee07d9, + 0x4c040000, 0x4c0c0000, 0x4c100000, 0x05e9fecb, + 0x5c002000, 0x5c001800, 0x5c000800, 0x59a02c07, + 0x91a0cc07, 0x4807c857, 0x4813c857, 0x4817c857, + 0x0501f8fb, 0x64030000, 0x05000004, 0x59a00a07, + 0x48074407, 0x05edf77f, 0x64134407, 0x05edf7c0, + 0x59a0220c, 0x4813c857, 0x05fdff96, 0x05000005, + 0x0501f847, 0x05000003, 0x65034407, 0x05edf7b8, + 0x59a00c0b, 0x4807c857, 0x8c100500, 0x05020017, + 0x05fdfe11, 0x05020003, 0x640b4407, 0x05edf7b0, + 0x59a00a0b, 0xb0040485, 0x05ee17b2, 0x59a01008, + 0x900811c0, 0x59a0180a, 0x900c19c0, 0x912c0405, + 0x05fdfe27, 0x4a01d809, 0x00104b40, 0x1c01f000, + 0x05f9fc91, 0x05ec0799, 0x58ee580d, 0x912c1405, + 0x59a01a0b, 0x0501f003, 0x91a0140b, 0x60041800, + 0x4c080000, 0x4c0c0000, 0x05e9fe94, 0x5c001800, + 0x5c001000, 0x59a00c0b, 0x59a0220c, 0x59a02c07, + 0x4807c857, 0x480bc857, 0x50080000, 0x82000500, + 0x000000ff, 0x4803c857, 0x480fc857, 0x4813c857, + 0x4817c857, 0x0501f84f, 0x64030000, 0x05ee0745, + 0x64134407, 0x05edf786, 0x05fdff5e, 0x05000003, + 0x0501f80f, 0x0502000d, 0x4803c856, 0x61c0083f, + 0x61c4103f, 0x64000800, 0x46001000, 0x000001a7, + 0x64040800, 0x64041000, 0x64080800, 0x50080000, + 0x8400054e, 0x44001000, 0x1c01f000, 0x59a80095, + 0x82000580, 0x338e103c, 0x1c01f000, 0x4803c856, + 0x4c5c0000, 0x64103000, 0x4200b800, 0x000f4240, + 0x05e9fab3, 0x805cb840, 0x05000005, 0x501c6800, + 0x90346d02, 0x05fe07fb, 0x90346d41, 0x485fc857, + 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4c5c0000, + 0x64103000, 0x4200b800, 0x000f4240, 0x05e9faa4, + 0x805cb840, 0x05000006, 0x501c6800, 0x82346d00, + 0x00000082, 0x05fe07fa, 0x90346d41, 0x485fc857, + 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4c5c0000, + 0x4c600000, 0x6000b8f8, 0x4200c000, 0x000f4240, + 0x6404b800, 0x40000000, 0x8060c040, 0x05000004, + 0x505c0000, 0x8c000500, 0x05fc07fa, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4c5c0000, + 0x6000b8f8, 0x4578b800, 0x5c00b800, 0x1c01f000, + 0x4803c856, 0x05fdffe9, 0x0500006a, 0x4c5c0000, + 0x61c0303f, 0x61c4383f, 0x64103000, 0x4200b800, + 0x000f4240, 0x805cb840, 0x60080000, 0x0500004f, + 0x501c0000, 0x8c00050c, 0x05fe07fb, 0x640c3000, + 0x4817c857, 0x05fdffb6, 0x05000002, 0x60802801, + 0x44143800, 0x64103000, 0x46003800, 0x00000090, + 0x05fdffc2, 0x05000054, 0x8c10051c, 0x05000008, + 0x640c3000, 0x4807c857, 0x44043800, 0x64103000, + 0x64403800, 0x05fdffb9, 0x0500004b, 0x800c19c0, + 0x05000033, 0x640c3000, 0x5008b800, 0x445c3800, + 0x485fc857, 0x480fc857, 0x800c1840, 0x05000028, + 0x64103000, 0x64403800, 0x05fdffac, 0x0500003e, 0x640c3000, 0x805cb910, 0x445c3800, 0x485fc857, - 0x480fc857, 0x800c1840, 0x05000007, 0x64103000, - 0x64403800, 0x05fdff8b, 0x0500001d, 0x80081000, - 0x05fdf7d3, 0x64103000, 0x65403800, 0x05fdff85, - 0x05000017, 0x90000541, 0x4803c856, 0x0501f011, - 0x4803c857, 0x64103000, 0x65403800, 0x05fdff7d, + 0x480fc857, 0x800c1840, 0x0500001d, 0x64103000, + 0x64403800, 0x05fdffa1, 0x05000033, 0x640c3000, + 0x805cb910, 0x445c3800, 0x485fc857, 0x480fc857, + 0x800c1840, 0x05000012, 0x64103000, 0x64403800, + 0x05fdff96, 0x05000028, 0x640c3000, 0x805cb910, + 0x445c3800, 0x485fc857, 0x480fc857, 0x800c1840, + 0x05000007, 0x64103000, 0x64403800, 0x05fdff8b, + 0x0500001d, 0x80081000, 0x05fdf7d3, 0x64103000, + 0x65403800, 0x05fdff85, 0x05000017, 0x90000541, + 0x4803c856, 0x0501f011, 0x4803c857, 0x64103000, + 0x65403800, 0x05fdff7d, 0x64103000, 0x4200b800, + 0x000f4240, 0x805cb840, 0x05000005, 0x501c0000, + 0x8c00050c, 0x05fe07fc, 0x05fdf7a9, 0x4803c857, + 0x05ddfa05, 0x4803c856, 0x5c00b800, 0x05fdff8f, + 0x1c01f000, 0x600c0000, 0x05fdf7fb, 0x4803c856, + 0x05fdff7a, 0x60040000, 0x0500009c, 0x4c5c0000, + 0x4c600000, 0x400c6000, 0x61c0303f, 0x61c4383f, 0x64103000, 0x4200b800, 0x000f4240, 0x805cb840, - 0x05000005, 0x501c0000, 0x8c00050c, 0x05fe07fc, - 0x05fdf7a9, 0x4803c857, 0x05ddfb70, 0x4803c856, - 0x5c00b800, 0x05fdff8f, 0x1c01f000, 0x600c0000, - 0x05fdf7fb, 0x4803c856, 0x05fdff7a, 0x60040000, - 0x0500009c, 0x4c5c0000, 0x4c600000, 0x400c6000, - 0x61c0303f, 0x61c4383f, 0x64103000, 0x4200b800, - 0x000f4240, 0x805cb840, 0x60080000, 0x0500008e, - 0x501c0000, 0x4803c857, 0x8c00050c, 0x05fe07fa, - 0x8c10051c, 0x05000017, 0x640c3000, 0x50180000, - 0x4803c857, 0x501c0000, 0x4803c857, 0x4817c857, - 0x05fdff3d, 0x05000002, 0x60802801, 0x44143800, - 0x64103000, 0x46003800, 0x00000090, 0x05fdff49, - 0x0500007d, 0x640c3000, 0x4807c857, 0x44043800, - 0x64103000, 0x64403800, 0x05fdff42, 0x05000076, - 0x640c3000, 0x80142800, 0x05fdff2b, 0x05000002, - 0x60842801, 0x44143800, 0x64103000, 0x46003800, - 0x00000090, 0x05fdff37, 0x0500006b, 0x800c19c0, - 0x05dc0b32, 0x4178b800, 0x900c1581, 0x05000040, - 0x64103000, 0x64803800, 0x05fdff1f, 0x05000062, - 0x640c3000, 0x501c0800, 0x4807c857, 0x9c0409c0, - 0x8004bd57, 0x485fc857, 0x480fc857, 0x805cb910, - 0x800c1840, 0x900c1581, 0x05000031, 0x64103000, - 0x64803800, 0x05fdff10, 0x05000053, 0x640c3000, - 0x501c0800, 0x4807c857, 0x9c0409c0, 0x8004bd57, - 0x485fc857, 0x480fc857, 0x805cb910, 0x800c1840, - 0x900c1581, 0x05000022, 0x64103000, 0x64803800, - 0x05fdff01, 0x05000044, 0x640c3000, 0x501c0800, + 0x60080000, 0x0500008e, 0x501c0000, 0x4803c857, + 0x8c00050c, 0x05fe07fa, 0x8c10051c, 0x05000017, + 0x640c3000, 0x50180000, 0x4803c857, 0x501c0000, + 0x4803c857, 0x4817c857, 0x05fdff3d, 0x05000002, + 0x60802801, 0x44143800, 0x64103000, 0x46003800, + 0x00000090, 0x05fdff49, 0x0500007d, 0x640c3000, + 0x4807c857, 0x44043800, 0x64103000, 0x64403800, + 0x05fdff42, 0x05000076, 0x640c3000, 0x80142800, + 0x05fdff2b, 0x05000002, 0x60842801, 0x44143800, + 0x64103000, 0x46003800, 0x00000090, 0x05fdff37, + 0x0500006b, 0x800c19c0, 0x05dc09c7, 0x4178b800, + 0x900c1581, 0x05000040, 0x64103000, 0x64803800, + 0x05fdff1f, 0x05000062, 0x640c3000, 0x501c0800, 0x4807c857, 0x9c0409c0, 0x8004bd57, 0x485fc857, 0x480fc857, 0x805cb910, 0x800c1840, 0x900c1581, - 0x05000013, 0x64103000, 0x64803800, 0x05fdfef2, - 0x05000035, 0x640c3000, 0x501c0800, 0x4807c857, + 0x05000031, 0x64103000, 0x64803800, 0x05fdff10, + 0x05000053, 0x640c3000, 0x501c0800, 0x4807c857, 0x9c0409c0, 0x8004bd57, 0x485fc857, 0x480fc857, - 0x445cc800, 0x8064c800, 0x4178b800, 0x800c1840, - 0x900c1581, 0x05000002, 0x05fdf7c2, 0x64103000, - 0x65a03800, 0x05fdfee0, 0x05000023, 0x640c3000, - 0x501c0800, 0x4807c857, 0x82040d00, 0x000000ff, - 0x9c0409c0, 0x8004bd57, 0x4807c857, 0x485fc857, - 0x4863c857, 0x4867c857, 0x480fc857, 0x40301000, - 0x41780800, 0x60100000, 0x0519fc90, 0x4807c857, - 0x800409c0, 0x05000006, 0x60100000, 0x80000c81, - 0x805cb910, 0x80040840, 0x05fe07fe, 0x445cc800, - 0x485fc857, 0x4863c857, 0x4867c857, 0x90000541, - 0x4803c856, 0x5c00c000, 0x5c00b800, 0x05fdfeed, - 0x1c01f000, 0x600c0000, 0x05fdf7fb, 0x4c000000, - 0x599c0018, 0x8c000514, 0x5c000000, 0x1c01f000, - 0x05fdfffb, 0x05000003, 0x59a80249, 0x8c000518, - 0x1c01f000, 0x599c0018, 0x8c000516, 0x05020003, - 0x90000541, 0x1c01f000, 0x80000580, 0x05fdf7fe, - 0x59a0020c, 0x8c000518, 0x1c01f000, 0x60003020, - 0x80183040, 0x05000010, 0x0541fdd5, 0x05fc07fd, - 0x05ddffa1, 0x605430f4, 0x50183800, 0x821c0500, - 0x00007000, 0x05000006, 0x480350d8, 0x821c0500, - 0xffff8fff, 0x44003000, 0x80000580, 0x64030000, - 0x1c01f000, 0x4803c856, 0x4a034408, 0x0000cccc, - 0x90000541, 0x05fdf7fa, 0x0541fdc1, 0x05fc07ff, - 0x600008f4, 0x58040015, 0x82000500, 0xffff8fff, - 0x59a810d8, 0x80080540, 0x48000815, 0x64030000, - 0x1c01f000, 0x59a80005, 0x8c000514, 0x05000005, - 0x42000000, 0x0010dd3e, 0x50000000, 0x90000528, - 0x1c01f000, 0x59a80092, 0x82000580, 0x041e1014, + 0x805cb910, 0x800c1840, 0x900c1581, 0x05000022, + 0x64103000, 0x64803800, 0x05fdff01, 0x05000044, + 0x640c3000, 0x501c0800, 0x4807c857, 0x9c0409c0, + 0x8004bd57, 0x485fc857, 0x480fc857, 0x805cb910, + 0x800c1840, 0x900c1581, 0x05000013, 0x64103000, + 0x64803800, 0x05fdfef2, 0x05000035, 0x640c3000, + 0x501c0800, 0x4807c857, 0x9c0409c0, 0x8004bd57, + 0x485fc857, 0x480fc857, 0x445cc800, 0x8064c800, + 0x4178b800, 0x800c1840, 0x900c1581, 0x05000002, + 0x05fdf7c2, 0x64103000, 0x65a03800, 0x05fdfee0, + 0x05000023, 0x640c3000, 0x501c0800, 0x4807c857, + 0x82040d00, 0x000000ff, 0x9c0409c0, 0x8004bd57, + 0x4807c857, 0x485fc857, 0x4863c857, 0x4867c857, + 0x480fc857, 0x40301000, 0x41780800, 0x60100000, + 0x0519ffa3, 0x4807c857, 0x800409c0, 0x05000006, + 0x60100000, 0x80000c81, 0x805cb910, 0x80040840, + 0x05fe07fe, 0x445cc800, 0x485fc857, 0x4863c857, + 0x4867c857, 0x90000541, 0x4803c856, 0x5c00c000, + 0x5c00b800, 0x05fdfeed, 0x1c01f000, 0x600c0000, + 0x05fdf7fb, 0x4c000000, 0x599c0018, 0x8c000514, + 0x5c000000, 0x1c01f000, 0x05fdfffb, 0x05000003, + 0x59a8024c, 0x8c000518, 0x1c01f000, 0x599c0018, + 0x8c000516, 0x05020003, 0x90000541, 0x1c01f000, + 0x80000580, 0x05fdf7fe, 0x60003020, 0x80183040, + 0x05000010, 0x0545fbad, 0x05fc07fd, 0x05ddfe60, + 0x605430f4, 0x50183800, 0x821c0500, 0x00007000, + 0x05000006, 0x480350dd, 0x821c0500, 0xffff8fff, + 0x44003000, 0x80000580, 0x64030000, 0x1c01f000, + 0x4803c856, 0x4a034408, 0x0000cccc, 0x90000541, + 0x05fdf7fa, 0x0545fb99, 0x05fc07ff, 0x600008f4, + 0x58040015, 0x82000500, 0xffff8fff, 0x59a810dd, + 0x80080540, 0x48000815, 0x64030000, 0x1c01f000, + 0x59a00c07, 0x90040588, 0x05000004, 0x90040589, + 0x05000016, 0x05edf5f7, 0x59000200, 0x80000540, + 0x05000043, 0x59001001, 0x59001802, 0x59002803, + 0x900811c0, 0x900c19c0, 0x901429c0, 0x61702000, + 0x8d0c0538, 0x05000002, 0x8410255e, 0x59000800, + 0x480b4008, 0x48134209, 0x480f400a, 0x4817400b, + 0x4807400c, 0x05edf59b, 0x916c0580, 0x0502002e, + 0x8d0c0538, 0x05020030, 0x59000200, 0x80001d40, + 0x0500002b, 0x59a0100b, 0x800811c0, 0x05ec05d9, + 0x900811c0, 0x41780800, 0x61700000, 0x4c0c0000, + 0x0519ff33, 0x5c001800, 0x800409c0, 0x05ee05d1, + 0x400c0000, 0x80080480, 0x05001002, 0x400c1000, + 0x480a0400, 0x82080400, 0x00000800, 0x480350ad, + 0x82080400, 0x000007f0, 0x480350ac, 0x82080c00, + 0x0010e380, 0x42001000, 0x00111b80, 0x05ddfcba, + 0x480b500d, 0x481b500e, 0x59a0280b, 0x59a01008, + 0x59a0180a, 0x900801c0, 0x48020001, 0x900c01c0, + 0x48020002, 0x901401c0, 0x48020003, 0x850e1d78, + 0x05fdf7c7, 0x60c00800, 0x0501f004, 0x60c40800, + 0x0501f002, 0x60c80800, 0x4807c857, 0x48074407, + 0x05edf5a7, 0x59a80005, 0x8c000514, 0x05000005, + 0x42000000, 0x00111cc4, 0x50000000, 0x90000528, + 0x1c01f000, 0x59a80095, 0x82000580, 0x041e1014, 0x1c01f000, 0x4807c857, 0x480bc857, 0x480fc857, - 0x4c040000, 0x4c080000, 0x4c0c0000, 0x05f1ff11, + 0x4c040000, 0x4c080000, 0x4c0c0000, 0x05f1fdcf, 0x5c001800, 0x5c001000, 0x5c000800, 0x05000003, - 0x80141d43, 0x05f1fed5, 0x1c01f000, 0x4807c857, + 0x80141d43, 0x05f1fd91, 0x1c01f000, 0x4807c857, 0x480bc857, 0x480fc857, 0x4c040000, 0x4c080000, - 0x4c0c0000, 0x05f1ff03, 0x5c001800, 0x5c001000, + 0x4c0c0000, 0x05f1fdc1, 0x5c001800, 0x5c001000, 0x5c000800, 0x05000004, 0x800c1880, 0x80141d03, - 0x05f1fec6, 0x1c01f000, 0x641f4407, 0x05edf6c8, - 0x64eb4407, 0x05edf6c6, 0x051dfcdf, 0x497b8880, + 0x05f1fd82, 0x1c01f000, 0x641f4407, 0x05edf57c, + 0x64eb4407, 0x05edf57a, 0x051dffa9, 0x497b8880, 0x59c400a3, 0x82000500, 0xfcf8ffff, 0x480388a3, - 0x05e9fecb, 0x05020003, 0x600dd000, 0x0515fc86, - 0x4d3c0000, 0x60067800, 0x0535faa5, 0x5c027800, - 0x05e9fec3, 0x0502000b, 0x59c408a3, 0x84040d72, - 0x480788a3, 0x6009d000, 0x0515fc7b, 0x05e9fec0, - 0x05de0a4e, 0x59c408a3, 0x84040d32, 0x480788a3, - 0x05e9feb3, 0x05020012, 0x42000000, 0x00200000, - 0x05e9fa27, 0x600dd000, 0x0515fc6f, 0x05e9feb4, - 0x0500000b, 0x59c408a3, 0x84040d72, 0x480788a3, - 0x6009d000, 0x0515fc68, 0x05e9fead, 0x05de0a3b, - 0x59c408a3, 0x84040d32, 0x480788a3, 0x1c01f000, - 0x59c400a4, 0x4c580000, 0x4c500000, 0x4c540000, - 0x9000050f, 0x90000487, 0x05001008, 0x90006c87, - 0x05de1a2e, 0x0c01f807, 0x5c00a800, 0x5c00a000, - 0x5c00b000, 0x1c01f000, 0x0501f8e9, 0x05fdf7fb, - 0x00104bbb, 0x00104bc1, 0x00104be5, 0x00104bff, - 0x00104ca1, 0x00104bba, 0x1c01f000, 0x59c40806, - 0x8c040500, 0x05020003, 0x84040d40, 0x48078806, - 0x1c01f000, 0x59c40005, 0x8c000534, 0x050206b2, - 0x4a038805, 0xffffffff, 0x42006000, 0x00020000, - 0x0501fe94, 0x59a80043, 0x82000500, 0xfffffffa, - 0x84000542, 0x48035043, 0x497b5249, 0x42000800, - 0x00110258, 0x45780800, 0x497b50b2, 0x42000000, - 0x0010e510, 0x46000000, 0x0000ffff, 0x42006000, - 0xffefffff, 0x42006800, 0x40000000, 0x0501fe7c, + 0x05e9fd5b, 0x05020003, 0x600dd000, 0x0515fefd, + 0x4d3c0000, 0x60067800, 0x0535fe58, 0x5c027800, + 0x05e9fd53, 0x05020009, 0x59c408a3, 0x84040d72, + 0x480788a3, 0x6009d000, 0x0515fef2, 0x59c408a3, + 0x84040d32, 0x480788a3, 0x05e9fd45, 0x05020010, + 0x42000000, 0x00200000, 0x05e9f8b5, 0x600dd000, + 0x0515fee8, 0x05e9fd46, 0x05000009, 0x59c408a3, + 0x84040d72, 0x480788a3, 0x6009d000, 0x0515fee1, + 0x59c408a3, 0x84040d32, 0x480788a3, 0x05e9fd30, + 0x05fc07f7, 0x1c01f000, 0x59a80006, 0x8c000510, + 0x1c01f000, 0x59c400a4, 0x4c580000, 0x4c500000, + 0x4c540000, 0x9000050f, 0x90000487, 0x05001008, + 0x90006c87, 0x05de1874, 0x0c01f807, 0x5c00a800, + 0x5c00a000, 0x5c00b000, 0x1c01f000, 0x0501f8e9, + 0x05fdf7fb, 0x00104db0, 0x00104db6, 0x00104dda, + 0x00104df4, 0x00104e96, 0x00104daf, 0x1c01f000, + 0x59c40806, 0x8c040500, 0x05020003, 0x84040d40, + 0x48078806, 0x1c01f000, 0x59c40005, 0x8c000534, + 0x050206b4, 0x4a038805, 0xffffffff, 0x42006000, + 0x00020000, 0x0501fe96, 0x59a80046, 0x82000500, + 0xfffffffa, 0x84000542, 0x48035046, 0x497b524c, + 0x42000800, 0x001141fc, 0x45780800, 0x497b50b7, + 0x42000000, 0x001124b4, 0x46000000, 0x0000ffff, + 0x42006000, 0xffefffff, 0x42006800, 0x40000000, + 0x0501fe7e, 0x59c40006, 0x82000500, 0xffffff0f, + 0x48038806, 0x60400800, 0x42001000, 0x001053a5, + 0x0515fce2, 0x0501f001, 0x42006000, 0xffffffff, + 0x42006800, 0x00800000, 0x0501fe70, 0x6120b001, + 0x59c400a4, 0x9000050f, 0x9000058a, 0x0500000d, + 0x8058b040, 0x05fe07fb, 0x497b5041, 0x42006000, + 0xbf7fffff, 0x42006800, 0x00018000, 0x0501fe63, + 0x42006000, 0xfffeffff, 0x41786800, 0x0501f65f, + 0x497b5041, 0x640350b6, 0x80000580, 0x0501f667, + 0x4a038805, 0xffffffff, 0x59a800b6, 0x90000c84, + 0x05de181d, 0x0c01f001, 0x00104dfd, 0x00104e23, + 0x00104e8f, 0x4803c856, 0x59c400a3, 0x8400051e, + 0x480388a3, 0x640750b6, 0x59c40008, 0x82000540, + 0x00000280, 0x48038808, 0x0501fe32, 0x42007800, + 0x00112005, 0x4a007806, 0x11010000, 0x4200a000, + 0x001124b7, 0x4200a800, 0x0011200c, 0x6008b000, + 0x0545fa12, 0x59c40802, 0x84040d0c, 0x48078802, + 0x600c0800, 0x497b50c1, 0x0501fd11, 0x640750c1, + 0x497b50bb, 0x0501fe47, 0x42006000, 0xffffffff, + 0x42006800, 0x00080000, 0x0501fe30, 0x42006000, + 0xfff7ffff, 0x41786800, 0x0501f62c, 0x59a800bb, + 0x497b50bb, 0x80002540, 0x0500005e, 0x59c40004, + 0x90000503, 0x05020065, 0x59a80846, 0x8c040502, + 0x05000049, 0x9010058c, 0x0502004c, 0x90100418, + 0x8000b104, 0x41cc1000, 0x42001800, 0x00112005, + 0x50080800, 0x500c0000, 0x80040580, 0x05020019, + 0x80081000, 0x800c1800, 0x8058b040, 0x05fe07f9, + 0x0501fe24, 0x59c80015, 0x84000508, 0x48039015, + 0x42006000, 0xffffffff, 0x42006800, 0x00500000, + 0x0501fe0a, 0x640b50b6, 0x640b5041, 0x05e5fd22, + 0x6140080f, 0x42001000, 0x00105303, 0x0515fe01, + 0x59a80046, 0x84000506, 0x48035046, 0x0501f5e9, + 0x59cc0806, 0x82040d80, 0x11010000, 0x05020027, + 0x59cc0800, 0x82040500, 0x00ffffff, 0x05000018, + 0x82000580, 0x000000ef, 0x05020015, 0x59cc0801, + 0x82040500, 0x00ffffff, 0x82000580, 0x000000ef, + 0x0502000f, 0x91cca407, 0x4200a800, 0x001124b7, + 0x6008b000, 0x50500800, 0x50540000, 0x80040480, + 0x05001007, 0x05020011, 0x8050a000, 0x8054a800, + 0x8058b040, 0x05fe07f8, 0x0501f00c, 0x59a80046, + 0x84000502, 0x48035046, 0x59c80015, 0x84000508, + 0x48039015, 0x41cca000, 0x4200a800, 0x00112005, + 0x6024b000, 0x0545f9a9, 0x0501fde6, 0x42006000, + 0xffffffff, 0x42006800, 0x00080000, 0x0501fdcf, + 0x42006000, 0xfff7ffff, 0x41786800, 0x0501fdcb, + 0x42006000, 0xffffffff, 0x60006880, 0x0501fdc7, + 0x59c40004, 0x90000503, 0x05020004, 0x497b50bb, + 0x600c0800, 0x0501f49a, 0x1c01f000, 0x1c01f000, + 0x59a80041, 0x90006d8f, 0x05000003, 0x9000059b, + 0x05020c65, 0x1c01f000, 0x59a80046, 0x84000506, + 0x48035046, 0x497b50c1, 0x59a80041, 0x90000c9e, + 0x05da1f79, 0x0c01f001, 0x00104ecd, 0x00104edd, + 0x00104eff, 0x00104f1a, 0x00104f38, 0x00104f3b, + 0x00104f3e, 0x00104f41, 0x00104f44, 0x00104f58, + 0x00104f5b, 0x00104faf, 0x00104fb2, 0x00104fbf, + 0x00104fc2, 0x00104fd4, 0x00104fd9, 0x00105029, + 0x00105050, 0x001050c8, 0x001050ef, 0x0010513e, + 0x00105184, 0x001051d3, 0x001051f1, 0x00105233, + 0x00105251, 0x00105261, 0x00105262, 0x4803c856, + 0x601ed800, 0x0509fcdb, 0x05000006, 0x42006000, + 0xffffffd7, 0x41786800, 0x0501fd8c, 0x0501f009, 0x59c40006, 0x82000500, 0xffffff0f, 0x48038806, - 0x60400800, 0x42001000, 0x001051ae, 0x0515fabd, - 0x0501f001, 0x42006000, 0xffffffff, 0x42006800, - 0x00800000, 0x0501fe6e, 0x6120b001, 0x59c400a4, - 0x9000050f, 0x9000058a, 0x0500000d, 0x8058b040, - 0x05fe07fb, 0x497b503e, 0x42006000, 0xbf7fffff, - 0x42006800, 0x00018000, 0x0501fe61, 0x42006000, - 0xfffeffff, 0x41786800, 0x0501f65d, 0x497b503e, - 0x640350b1, 0x80000580, 0x0501f665, 0x4a038805, - 0xffffffff, 0x59a800b1, 0x90000c84, 0x05de19d7, - 0x0c01f001, 0x00104c08, 0x00104c2e, 0x00104c9a, - 0x4803c856, 0x59c400a3, 0x8400051e, 0x480388a3, - 0x640750b1, 0x59c40008, 0x82000540, 0x00000280, - 0x48038808, 0x0501fe30, 0x42007800, 0x0010e06b, - 0x4a007806, 0x11010000, 0x4200a000, 0x0010e513, - 0x4200a800, 0x0010e072, 0x6008b000, 0x0541fc8c, - 0x59c40802, 0x84040d0c, 0x48078802, 0x600c0800, - 0x497b50bc, 0x0501fd0f, 0x640750bc, 0x497b50b6, - 0x0501fe45, 0x42006000, 0xffffffff, 0x42006800, - 0x00080000, 0x0501fe2e, 0x42006000, 0xfff7ffff, - 0x41786800, 0x0501f62a, 0x59a800b6, 0x497b50b6, - 0x80002540, 0x0500005e, 0x59c40004, 0x90000503, - 0x05020065, 0x59a80843, 0x8c040502, 0x05000049, - 0x9010058c, 0x0502004c, 0x90100418, 0x8000b104, - 0x41cc1000, 0x42001800, 0x0010e06b, 0x50080800, - 0x500c0000, 0x80040580, 0x05020019, 0x80081000, - 0x800c1800, 0x8058b040, 0x05fe07f9, 0x0501fe22, - 0x59c80015, 0x84000508, 0x48039015, 0x42006000, - 0xffffffff, 0x42006800, 0x00500000, 0x0501fe08, - 0x640b50b1, 0x640b503e, 0x05e5fe97, 0x6140080f, - 0x42001000, 0x0010510c, 0x0515fb92, 0x59a80043, - 0x84000506, 0x48035043, 0x0501f5e7, 0x59cc0806, - 0x82040d80, 0x11010000, 0x05020027, 0x59cc0800, - 0x82040500, 0x00ffffff, 0x05000018, 0x82000580, - 0x000000ef, 0x05020015, 0x59cc0801, 0x82040500, - 0x00ffffff, 0x82000580, 0x000000ef, 0x0502000f, - 0x91cca407, 0x4200a800, 0x0010e513, 0x6008b000, - 0x50500800, 0x50540000, 0x80040480, 0x05001007, - 0x05020011, 0x8050a000, 0x8054a800, 0x8058b040, - 0x05fe07f8, 0x0501f00c, 0x59a80043, 0x84000502, - 0x48035043, 0x59c80015, 0x84000508, 0x48039015, - 0x41cca000, 0x4200a800, 0x0010e06b, 0x6024b000, - 0x0541fc23, 0x0501fde4, 0x42006000, 0xffffffff, - 0x42006800, 0x00080000, 0x0501fdcd, 0x42006000, - 0xfff7ffff, 0x41786800, 0x0501fdc9, 0x42006000, - 0xffffffff, 0x60006880, 0x0501fdc5, 0x59c40004, - 0x90000503, 0x05020004, 0x497b50b6, 0x600c0800, - 0x0501f498, 0x1c01f000, 0x1c01f000, 0x59a8003e, - 0x90006d8f, 0x05000003, 0x9000059b, 0x05020c63, - 0x1c01f000, 0x59a80043, 0x84000506, 0x48035043, - 0x497b50bc, 0x59a8003e, 0x90000c9e, 0x05de1933, - 0x0c01f001, 0x00104cd8, 0x00104ce8, 0x00104d0a, - 0x00104d24, 0x00104d42, 0x00104d45, 0x00104d48, - 0x00104d4b, 0x00104d4e, 0x00104d62, 0x00104d65, - 0x00104db9, 0x00104dbc, 0x00104dc9, 0x00104dcc, - 0x00104dde, 0x00104de3, 0x00104e32, 0x00104e59, - 0x00104ed1, 0x00104ef8, 0x00104f47, 0x00104f8d, - 0x00104fdc, 0x00104ffa, 0x0010503c, 0x0010505a, - 0x0010506a, 0x0010506b, 0x4803c856, 0x601ed800, - 0x0509fbe6, 0x05000006, 0x42006000, 0xffffffd7, - 0x41786800, 0x0501fd8a, 0x0501f009, 0x59c40006, - 0x82000500, 0xffffff0f, 0x48038806, 0x4a038805, - 0x000000f0, 0x0509ff22, 0x0509fb52, 0x1c01f000, - 0x4803c856, 0x42006000, 0xbf7fffff, 0x42006800, - 0x00400000, 0x0501fd7a, 0x05e5fe0b, 0x6407503e, - 0x42001000, 0x001051ae, 0x0515f9e3, 0x0501fcd4, - 0x6140080f, 0x42001000, 0x0010510c, 0x0515f301, - 0x59a800b6, 0x90000594, 0x0502001e, 0x4803c857, - 0x42006000, 0xffbfffff, 0x41786800, 0x0501fd68, - 0x59c40004, 0x90000503, 0x05020016, 0x42001000, - 0x0010510c, 0x0515f9c0, 0x59cc1006, 0x82081580, - 0x11020000, 0x05020010, 0x59cc1007, 0x8c08053e, - 0x0500000a, 0x59a80043, 0x8c000504, 0x05020007, - 0x42000000, 0x0010e39d, 0x0541fada, 0x59a80043, - 0x84000544, 0x48035043, 0x6443503e, 0x0501f0dc, - 0x1c01f000, 0x0501f3f9, 0x4803c856, 0x640f503e, - 0x42006000, 0xbf3fffff, 0x42006800, 0x00100000, - 0x0501fd47, 0x42001000, 0x001051ae, 0x0515f9b2, - 0x0501fca3, 0x42001000, 0x0010510c, 0x0515f99e, - 0x59a80449, 0x90000528, 0x05000004, 0x42000800, - 0xffffd815, 0x05edf9ad, 0x42007800, 0x0010e071, - 0x46007800, 0x11020000, 0x60140800, 0x0501f40d, - 0x59a800b6, 0x80000540, 0x0500001a, 0x4803c857, - 0x42001000, 0x0010510c, 0x0515f98b, 0x59a800b6, - 0x90000594, 0x05020014, 0x59cc1006, 0x82081580, - 0x11020000, 0x05020010, 0x59cc1007, 0x8c08053e, - 0x0500000a, 0x59a80043, 0x8c000504, 0x05020007, - 0x42000000, 0x0010e39d, 0x0541faa2, 0x59a80043, - 0x84000544, 0x48035043, 0x6413503e, 0x0501f003, - 0x1c01f000, 0x0501f3c1, 0x4803c856, 0x6417503e, - 0x0501f117, 0x4c5c0000, 0x6004b800, 0x0501f0ed, - 0x4803c856, 0x641f503e, 0x0501f1b0, 0x4c5c0000, - 0x6004b800, 0x0501f186, 0x4803c856, 0x6427503e, - 0x91cca406, 0x4200a800, 0x0010e071, 0x6014b000, - 0x0541fb53, 0x42007800, 0x0010e071, 0x46007800, - 0x11050100, 0x8d0c0506, 0x05000243, 0x60140800, - 0x0501fbd4, 0x4d3c0000, 0x60067800, 0x0535f8c8, - 0x5c027800, 0x1c01f000, 0x4c5c0000, 0x6004b800, - 0x0501f1e5, 0x4803c856, 0x642f503e, 0x42001000, - 0x0010e072, 0x4008a800, 0x6080b000, 0x4600a800, - 0xffffffff, 0x8054a800, 0x8058b040, 0x05fe07fc, - 0x42007800, 0x0010e071, 0x46007800, 0x11060000, - 0x8d0c0506, 0x05000005, 0x50080000, 0x46001000, - 0x00ffffff, 0x0501f03e, 0x42024800, 0x0010e512, - 0x0541fb7c, 0x40083000, 0x41782800, 0x41781800, - 0x41782000, 0x59240200, 0x8c000500, 0x05000012, - 0x8c000502, 0x05000010, 0x801429c0, 0x05020002, - 0x800c1800, 0x80142800, 0x59244408, 0x82204500, - 0x000000ff, 0x400c0000, 0x50182000, 0x0c01f810, - 0x80102540, 0x44103000, 0x800c19c0, 0x05020002, - 0x80183000, 0x91264c0d, 0x8058b040, 0x05fe07ea, - 0x50080000, 0x82000500, 0x00ffffff, 0x801428f0, - 0x80140540, 0x44001000, 0x0501f019, 0x00104da3, - 0x00104da8, 0x00104dad, 0x00104db2, 0x802000f0, - 0x82102500, 0x00ffffff, 0x800c1800, 0x1c01f000, - 0x802000e0, 0x82102500, 0xff00ffff, 0x800c1800, - 0x1c01f000, 0x802000d0, 0x82102500, 0xffff00ff, - 0x800c1800, 0x1c01f000, 0x40200000, 0x82102500, - 0xffffff00, 0x41781800, 0x1c01f000, 0x60840800, - 0x0501f378, 0x4c5c0000, 0x6004b800, 0x0501f223, - 0x4803c856, 0x6437503e, 0x91cca406, 0x4200a800, - 0x0010e071, 0x6084b000, 0x0541fae5, 0x42007800, - 0x0010e071, 0x46007800, 0x11070000, 0x60840800, - 0x0501f368, 0x4c5c0000, 0x6004b800, 0x0501f273, - 0x4803c856, 0x90040d41, 0x0501fc95, 0x643f503e, - 0x497b50b6, 0x42006000, 0xffffffff, 0x42006800, - 0x00300000, 0x0501fc82, 0x42006000, 0xffdfffff, - 0x41786800, 0x0501fc7e, 0x6140080f, 0x42001000, - 0x0010510c, 0x0515f0ac, 0x4803c856, 0x59a800b6, - 0x80000540, 0x05020321, 0x1c01f000, 0x4803c856, - 0x6447503e, 0x91cca406, 0x4200a800, 0x0010e071, - 0x6014b000, 0x0541fabe, 0x4200a800, 0x0010e071, - 0x4600a800, 0x11020000, 0x8d0c0506, 0x05020041, - 0x59a80c49, 0x82040580, 0x0000ffff, 0x0500003d, - 0x90040d30, 0x05000005, 0x42000800, 0xffffd815, - 0x05edf8d2, 0x0501f037, 0x59cc0007, 0x8c00053c, - 0x05000034, 0x42024800, 0x0010e512, 0x0541faf9, - 0x59240200, 0xb0000d23, 0xb0040da3, 0x05020021, - 0x59240a08, 0x42001000, 0x0010e072, 0x0501fab6, - 0x05000009, 0x59240c08, 0x05e5fcf7, 0x59240200, - 0x84000502, 0x84000518, 0x84000544, 0x48024a00, - 0x0501f014, 0x59240200, 0x82000540, 0x00001006, - 0x84000506, 0x48024a00, 0x48064a08, 0x82042c00, - 0x00102853, 0x50142800, 0x82142d00, 0x000000ff, - 0x48164c08, 0x59240005, 0x82000500, 0x00ffff00, - 0x80140d40, 0x48064805, 0x40140800, 0x05e5fccf, - 0x91264c0d, 0x8058b040, 0x05fe07da, 0x42024800, - 0x0010e512, 0x59242a00, 0x8c140502, 0x05000005, - 0x8c140500, 0x05000003, 0x59242c08, 0x4817503d, - 0x60140800, 0x0501f2ff, 0x4c5c0000, 0x4178b800, - 0x59a800b6, 0x80000540, 0x05000021, 0x4803c857, - 0x42001000, 0x0010510c, 0x0515f87b, 0x59a800b6, - 0x90000594, 0x05020019, 0x59cc1006, 0x82081580, - 0x11030000, 0x05020015, 0x59cc1007, 0x8c08053e, - 0x0500000a, 0x59a80043, 0x8c000504, 0x05020007, - 0x42000000, 0x0010e39d, 0x0541f992, 0x59a80043, - 0x84000544, 0x48035043, 0x805cb9c0, 0x05000004, - 0x641b503e, 0x05fdfef7, 0x0501f005, 0x644b503e, - 0x0501f805, 0x0501f002, 0x0501faac, 0x5c00b800, - 0x1c01f000, 0x4803c856, 0x644f503e, 0x91cca407, - 0x4200a800, 0x0010e072, 0x6010b000, 0x0541fa48, - 0x4200a800, 0x0010e071, 0x4600a800, 0x11030000, - 0x8d0c0506, 0x0502006a, 0x42024800, 0x0010e512, - 0x0541fa90, 0x4c600000, 0x4178c000, 0x59a80249, - 0x82000500, 0xfffffffc, 0x48035249, 0x59240200, - 0x40000800, 0x82040d00, 0xfffffb17, 0x48064a00, - 0x8c000500, 0x05000048, 0x8c000518, 0x05020046, - 0x8c000502, 0x05020004, 0x59240400, 0x8c000502, - 0x05000041, 0x59240a08, 0x42001000, 0x0010e072, - 0x0501fa3d, 0x0500002b, 0x59240005, 0x82000500, - 0x00ffff00, 0x48024805, 0x59240200, 0x8c000502, - 0x05000019, 0x59240207, 0x82000500, 0x0000ffff, - 0x05000015, 0x8060c000, 0x59240c08, 0x05e5fc72, - 0x4c640000, 0x4c580000, 0x4d2c0000, 0x5924c809, - 0x6040b000, 0x50640000, 0x800001c0, 0x05000004, - 0x4578c800, 0x40025800, 0x05ddfaf8, 0x8064c800, - 0x8058b040, 0x05fe07f8, 0x5c025800, 0x5c00b000, - 0x5c00c800, 0x59240200, 0x84000502, 0x84000544, - 0x48024a00, 0x59240400, 0x8c000504, 0x05000016, - 0x59240200, 0x84000546, 0x48024a00, 0x0501f012, - 0x59240200, 0x90000546, 0x84000506, 0x48024a00, - 0x82042c00, 0x00102853, 0x50142800, 0x82142d00, - 0x000000ff, 0x48164c08, 0x59240005, 0x82000500, - 0x00ffff00, 0x80140d40, 0x48064805, 0x40140800, - 0x05e5fc36, 0x59240200, 0x84000518, 0x48024a00, - 0x91264c0d, 0x8058b040, 0x05fe07ad, 0x8060c1c0, - 0x05020b0b, 0x5c00c000, 0x42024800, 0x0010e512, - 0x59242a00, 0x8c140502, 0x05000005, 0x8c140500, - 0x05000003, 0x59242c08, 0x4817503d, 0x60140800, - 0x0501f260, 0x4c5c0000, 0x4178b800, 0x59a800b6, + 0x4a038805, 0x000000f0, 0x050df81d, 0x0509fc41, + 0x1c01f000, 0x4803c856, 0x42006000, 0xbf7fffff, + 0x42006800, 0x00400000, 0x0501fd7c, 0x05e5fc96, + 0x64075041, 0x42001000, 0x001053a5, 0x0515fc08, + 0x0501fcd6, 0x6140080f, 0x42001000, 0x00105303, + 0x0515f570, 0x59a800bb, 0x90000594, 0x0502001e, + 0x4803c857, 0x42006000, 0xffbfffff, 0x41786800, + 0x0501fd6a, 0x59c40004, 0x90000503, 0x05020016, + 0x42001000, 0x00105303, 0x0515fbe5, 0x59cc1006, + 0x82081580, 0x11020000, 0x05020010, 0x59cc1007, + 0x8c08053e, 0x0500000a, 0x59a80046, 0x8c000504, + 0x05020007, 0x42000000, 0x0011233e, 0x0545f860, + 0x59a80046, 0x84000544, 0x48035046, 0x64435041, + 0x0501f0dd, 0x1c01f000, 0x0501f3fb, 0x4803c856, + 0x640f5041, 0x42006000, 0xbf3fffff, 0x42006800, + 0x00100000, 0x0501fd49, 0x42001000, 0x001053a5, + 0x0515fbd7, 0x0501fca5, 0x42001000, 0x00105303, + 0x0515fbc3, 0x59a8044c, 0x90000528, 0x05000004, + 0x42000800, 0xffffd815, 0x05edf85f, 0x05e9fbc0, + 0x42007800, 0x0011200b, 0x46007800, 0x11020000, + 0x60140800, 0x0501f40e, 0x59a800bb, 0x80000540, + 0x0500001a, 0x4803c857, 0x42001000, 0x00105303, + 0x0515fbaf, 0x59a800bb, 0x90000594, 0x05020014, + 0x59cc1006, 0x82081580, 0x11020000, 0x05020010, + 0x59cc1007, 0x8c08053e, 0x0500000a, 0x59a80046, + 0x8c000504, 0x05020007, 0x42000000, 0x0011233e, + 0x0545f827, 0x59a80046, 0x84000544, 0x48035046, + 0x64135041, 0x0501f003, 0x1c01f000, 0x0501f3c2, + 0x4803c856, 0x64175041, 0x0501f118, 0x4c5c0000, + 0x6004b800, 0x0501f0ee, 0x4803c856, 0x641f5041, + 0x0501f1b1, 0x4c5c0000, 0x6004b800, 0x0501f187, + 0x4803c856, 0x64275041, 0x91cca406, 0x4200a800, + 0x0011200b, 0x6014b000, 0x0545f8d8, 0x42007800, + 0x0011200b, 0x46007800, 0x11050100, 0x8d0c0506, + 0x05000244, 0x60140800, 0x0501fbd5, 0x4d3c0000, + 0x60067800, 0x0535fc79, 0x5c027800, 0x1c01f000, + 0x4c5c0000, 0x6004b800, 0x0501f1e6, 0x4803c856, + 0x642f5041, 0x42001000, 0x0011200c, 0x4008a800, + 0x6080b000, 0x4600a800, 0xffffffff, 0x8054a800, + 0x8058b040, 0x05fe07fc, 0x42007800, 0x0011200b, + 0x46007800, 0x11060000, 0x8d0c0506, 0x05000005, + 0x50080000, 0x46001000, 0x00ffffff, 0x0501f03e, + 0x42024800, 0x001124b6, 0x0545f901, 0x40083000, + 0x41782800, 0x41781800, 0x41782000, 0x59240200, + 0x8c000500, 0x05000012, 0x8c000502, 0x05000010, + 0x801429c0, 0x05020002, 0x800c1800, 0x80142800, + 0x59244408, 0x82204500, 0x000000ff, 0x400c0000, + 0x50182000, 0x0c01f810, 0x80102540, 0x44103000, + 0x800c19c0, 0x05020002, 0x80183000, 0x91264c0d, + 0x8058b040, 0x05fe07ea, 0x50080000, 0x82000500, + 0x00ffffff, 0x801428f0, 0x80140540, 0x44001000, + 0x0501f019, 0x00104f99, 0x00104f9e, 0x00104fa3, + 0x00104fa8, 0x802000f0, 0x82102500, 0x00ffffff, + 0x800c1800, 0x1c01f000, 0x802000e0, 0x82102500, + 0xff00ffff, 0x800c1800, 0x1c01f000, 0x802000d0, + 0x82102500, 0xffff00ff, 0x800c1800, 0x1c01f000, + 0x40200000, 0x82102500, 0xffffff00, 0x41781800, + 0x1c01f000, 0x60840800, 0x0501f379, 0x4c5c0000, + 0x6004b800, 0x0501f224, 0x4803c856, 0x64375041, + 0x91cca406, 0x4200a800, 0x0011200b, 0x6084b000, + 0x0545f86a, 0x42007800, 0x0011200b, 0x46007800, + 0x11070000, 0x60840800, 0x0501f369, 0x4c5c0000, + 0x6004b800, 0x0501f274, 0x4803c856, 0x90040d41, + 0x0501fc96, 0x643f5041, 0x497b50bb, 0x42006000, + 0xffffffff, 0x42006800, 0x00300000, 0x0501fc83, + 0x42006000, 0xffdfffff, 0x41786800, 0x0501fc7f, + 0x6140080f, 0x42001000, 0x00105303, 0x0515f2d0, + 0x4803c856, 0x59a800bb, 0x80000540, 0x05020322, + 0x1c01f000, 0x4803c856, 0x64475041, 0x91cca406, + 0x4200a800, 0x0011200b, 0x6014b000, 0x0545f843, + 0x4200a800, 0x0011200b, 0x4600a800, 0x11020000, + 0x8d0c0506, 0x05020041, 0x59a80c4c, 0x82040580, + 0x0000ffff, 0x0500003d, 0x90040d30, 0x05000005, + 0x42000800, 0xffffd815, 0x05e9ff83, 0x0501f037, + 0x59cc0007, 0x8c00053c, 0x05000034, 0x42024800, + 0x001124b6, 0x0545f87e, 0x59240200, 0xb0000d23, + 0xb0040da3, 0x05020021, 0x59240a08, 0x42001000, + 0x0011200c, 0x0501fab7, 0x05000009, 0x59240c08, + 0x05e5fb81, 0x59240200, 0x84000502, 0x84000518, + 0x84000544, 0x48024a00, 0x0501f014, 0x59240200, + 0x82000540, 0x00001006, 0x84000506, 0x48024a00, + 0x48064a08, 0x82042c00, 0x001028fb, 0x50142800, + 0x82142d00, 0x000000ff, 0x48164c08, 0x59240005, + 0x82000500, 0x00ffff00, 0x80140d40, 0x48064805, + 0x40140800, 0x05e5fb59, 0x91264c0d, 0x8058b040, + 0x05fe07da, 0x42024800, 0x001124b6, 0x59242a00, + 0x8c140502, 0x05000005, 0x8c140500, 0x05000003, + 0x59242c08, 0x48175040, 0x05e9faad, 0x60140800, + 0x0501f2ff, 0x4c5c0000, 0x4178b800, 0x59a800bb, 0x80000540, 0x05000021, 0x4803c857, 0x42001000, - 0x0010510c, 0x0511ffdc, 0x59a800b6, 0x90000594, - 0x05020019, 0x59cc1006, 0x82081580, 0x11040000, + 0x00105303, 0x0515fa9e, 0x59a800bb, 0x90000594, + 0x05020019, 0x59cc1006, 0x82081580, 0x11030000, 0x05020015, 0x59cc1007, 0x8c08053e, 0x0500000a, - 0x59a80043, 0x8c000504, 0x05020007, 0x42000000, - 0x0010e39d, 0x0541f8f3, 0x59a80043, 0x84000544, - 0x48035043, 0x805cb9c0, 0x05000004, 0x6423503e, - 0x05fdfe5e, 0x0501f005, 0x6453503e, 0x0501f805, - 0x0501f002, 0x0501fa0d, 0x5c00b800, 0x1c01f000, - 0x4803c856, 0x6457503e, 0x91cca407, 0x4200a800, - 0x0010e072, 0x6010b000, 0x0541f9a9, 0x4200a800, - 0x0010e071, 0x4600a800, 0x11040000, 0x8d0c0506, - 0x05020041, 0x42024800, 0x0010e512, 0x0541f9f1, - 0x59240400, 0x8c000500, 0x0500002f, 0x59240200, - 0x8c000500, 0x0500002c, 0x8c000502, 0x0502002a, - 0x59240c00, 0x80040910, 0x82040d00, 0x000000ff, - 0x42001000, 0x0010e072, 0x0501f9a7, 0x05000010, + 0x59a80046, 0x8c000504, 0x05020007, 0x42000000, + 0x0011233e, 0x0541ff16, 0x59a80046, 0x84000544, + 0x48035046, 0x805cb9c0, 0x05000004, 0x641b5041, + 0x05fdfef6, 0x0501f005, 0x644b5041, 0x0501f805, + 0x0501f002, 0x0501faac, 0x5c00b800, 0x1c01f000, + 0x4803c856, 0x644f5041, 0x91cca407, 0x4200a800, + 0x0011200c, 0x6010b000, 0x0541ffcc, 0x4200a800, + 0x0011200b, 0x4600a800, 0x11030000, 0x8d0c0506, + 0x0502006a, 0x42024800, 0x001124b6, 0x0545f814, + 0x4c600000, 0x4178c000, 0x59a8024c, 0x82000500, + 0xfffffffc, 0x4803524c, 0x59240200, 0x40000800, + 0x82040d00, 0xfffffb17, 0x48064a00, 0x8c000500, + 0x05000048, 0x8c000518, 0x05020046, 0x8c000502, + 0x05020004, 0x59240400, 0x8c000502, 0x05000041, + 0x59240a08, 0x42001000, 0x0011200c, 0x0501fa3d, + 0x0500002b, 0x59240005, 0x82000500, 0x00ffff00, + 0x48024805, 0x59240200, 0x8c000502, 0x05000019, + 0x59240207, 0x82000500, 0x0000ffff, 0x05000015, + 0x8060c000, 0x59240c08, 0x05e5fafb, 0x4c640000, + 0x4c580000, 0x4d2c0000, 0x5924c809, 0x6040b000, + 0x50640000, 0x800001c0, 0x05000004, 0x4578c800, + 0x40025800, 0x05ddf938, 0x8064c800, 0x8058b040, + 0x05fe07f8, 0x5c025800, 0x5c00b000, 0x5c00c800, + 0x59240200, 0x84000502, 0x84000544, 0x48024a00, + 0x59240400, 0x8c000504, 0x05000016, 0x59240200, + 0x84000546, 0x48024a00, 0x0501f012, 0x59240200, + 0x90000546, 0x84000506, 0x48024a00, 0x82042c00, + 0x001028fb, 0x50142800, 0x82142d00, 0x000000ff, + 0x48164c08, 0x59240005, 0x82000500, 0x00ffff00, + 0x80140d40, 0x48064805, 0x40140800, 0x05e5fabf, + 0x59240200, 0x84000518, 0x48024a00, 0x91264c0d, + 0x8058b040, 0x05fe07ad, 0x8060c1c0, 0x05020b0b, + 0x5c00c000, 0x42024800, 0x001124b6, 0x59242a00, + 0x8c140502, 0x05000005, 0x8c140500, 0x05000003, + 0x59242c08, 0x48175040, 0x60140800, 0x0501f260, + 0x4c5c0000, 0x4178b800, 0x59a800bb, 0x80000540, + 0x05000021, 0x4803c857, 0x42001000, 0x00105303, + 0x0515f9ff, 0x59a800bb, 0x90000594, 0x05020019, + 0x59cc1006, 0x82081580, 0x11040000, 0x05020015, + 0x59cc1007, 0x8c08053e, 0x0500000a, 0x59a80046, + 0x8c000504, 0x05020007, 0x42000000, 0x0011233e, + 0x0541fe77, 0x59a80046, 0x84000544, 0x48035046, + 0x805cb9c0, 0x05000004, 0x64235041, 0x05fdfe5d, + 0x0501f005, 0x64535041, 0x0501f805, 0x0501f002, + 0x0501fa0d, 0x5c00b800, 0x1c01f000, 0x4803c856, + 0x64575041, 0x91cca407, 0x4200a800, 0x0011200c, + 0x6010b000, 0x0541ff2d, 0x4200a800, 0x0011200b, + 0x4600a800, 0x11040000, 0x8d0c0506, 0x05020041, + 0x42024800, 0x001124b6, 0x0541ff75, 0x59240400, + 0x8c000500, 0x0500002f, 0x59240200, 0x8c000500, + 0x0500002c, 0x8c000502, 0x0502002a, 0x59240c00, + 0x80040910, 0x82040d00, 0x000000ff, 0x42001000, + 0x0011200c, 0x0501f9a7, 0x05000010, 0x59240005, + 0x82000500, 0x00ffff00, 0x48024805, 0x59240200, + 0x84000502, 0x48024a00, 0x59242400, 0x8c100504, + 0x05000018, 0x84000546, 0x84000544, 0x48024a00, + 0x8060c000, 0x0501f013, 0x59240200, 0x90000546, + 0x84000506, 0x48024a00, 0x48064a08, 0x82042c00, + 0x001028fb, 0x50142800, 0x82142d00, 0x000000ff, + 0x48164c08, 0x59240005, 0x82000500, 0x00ffff00, + 0x80140d40, 0x48064805, 0x40140800, 0x05e5fa43, + 0x91264c0d, 0x8058b040, 0x05fe07cd, 0x42024800, + 0x001124b6, 0x59242a00, 0x8c140502, 0x05000005, + 0x8c140500, 0x05000003, 0x59242c08, 0x48175040, + 0x60140800, 0x0501f1ea, 0x4c5c0000, 0x4178b800, + 0x59a800bb, 0x80000540, 0x05000040, 0x4803c857, + 0x42001000, 0x00105303, 0x0515f989, 0x59a800bb, + 0x90000594, 0x05020038, 0x59cc1006, 0x82080500, + 0x11050000, 0x82000580, 0x11050000, 0x05020032, + 0x8c080510, 0x05000013, 0x0501fb08, 0x59cc1007, + 0x8c08053e, 0x0500000a, 0x59a80046, 0x8c000504, + 0x05020007, 0x42000000, 0x0011233e, 0x0541fdfc, + 0x59a80046, 0x84000544, 0x48035046, 0x805cb9c0, + 0x05000014, 0x642b5041, 0x05fdfdf9, 0x0501f01f, + 0x59cc1007, 0x8c08053e, 0x0500000a, 0x59a80046, + 0x8c000504, 0x05020007, 0x42000000, 0x0011233e, + 0x0541fdeb, 0x59a80046, 0x84000544, 0x48035046, + 0x90000541, 0x0501fae9, 0x497b50b7, 0x0501f002, + 0x640750b7, 0x59cc1007, 0x8c08053c, 0x05000002, + 0x6423524c, 0x805cb9c0, 0x05020004, 0x645b5041, + 0x0501f808, 0x0501f005, 0x643b5041, 0x05fdfe43, + 0x0501f002, 0x0501f978, 0x5c00b800, 0x1c01f000, + 0x4803c856, 0x91cca406, 0x4200a800, 0x0011200b, + 0x6014b000, 0x0541fe99, 0x645f5041, 0x59a800b7, + 0x8c000500, 0x05000006, 0x42001000, 0x0011200b, + 0x46001000, 0x11050100, 0x0501f002, 0x646f5041, + 0x8d0c0506, 0x05020037, 0x42024800, 0x001124b6, + 0x0541fedb, 0x59240200, 0x8c000500, 0x05000025, + 0x8c000502, 0x05020023, 0x8c000506, 0x05020021, + 0x4c580000, 0x0501f8c2, 0x5c00b000, 0x0502000b, 0x59240005, 0x82000500, 0x00ffff00, 0x48024805, - 0x59240200, 0x84000502, 0x48024a00, 0x59242400, - 0x8c100504, 0x05000018, 0x84000546, 0x84000544, - 0x48024a00, 0x8060c000, 0x0501f013, 0x59240200, - 0x90000546, 0x84000506, 0x48024a00, 0x48064a08, - 0x82042c00, 0x00102853, 0x50142800, 0x82142d00, - 0x000000ff, 0x48164c08, 0x59240005, 0x82000500, - 0x00ffff00, 0x80140d40, 0x48064805, 0x40140800, - 0x05e5fbba, 0x91264c0d, 0x8058b040, 0x05fe07cd, - 0x42024800, 0x0010e512, 0x59242a00, 0x8c140502, - 0x05000005, 0x8c140500, 0x05000003, 0x59242c08, - 0x4817503d, 0x60140800, 0x0501f1ea, 0x4c5c0000, - 0x4178b800, 0x59a800b6, 0x80000540, 0x05000040, - 0x4803c857, 0x42001000, 0x0010510c, 0x0511ff66, - 0x59a800b6, 0x90000594, 0x05020038, 0x59cc1006, - 0x82080500, 0x11050000, 0x82000580, 0x11050000, - 0x05020032, 0x8c080510, 0x05000013, 0x0501fb08, - 0x59cc1007, 0x8c08053e, 0x0500000a, 0x59a80043, - 0x8c000504, 0x05020007, 0x42000000, 0x0010e39d, - 0x0541f878, 0x59a80043, 0x84000544, 0x48035043, - 0x805cb9c0, 0x05000014, 0x642b503e, 0x05fdfdfa, - 0x0501f01f, 0x59cc1007, 0x8c08053e, 0x0500000a, - 0x59a80043, 0x8c000504, 0x05020007, 0x42000000, - 0x0010e39d, 0x0541f867, 0x59a80043, 0x84000544, - 0x48035043, 0x90000541, 0x0501fae9, 0x497b50b2, - 0x0501f002, 0x640750b2, 0x59cc1007, 0x8c08053c, - 0x05000002, 0x64235249, 0x805cb9c0, 0x05020004, - 0x645b503e, 0x0501f808, 0x0501f005, 0x643b503e, - 0x05fdfe44, 0x0501f002, 0x0501f978, 0x5c00b800, - 0x1c01f000, 0x4803c856, 0x91cca406, 0x4200a800, - 0x0010e071, 0x6014b000, 0x0541f915, 0x645f503e, - 0x59a800b2, 0x8c000500, 0x05000006, 0x42001000, - 0x0010e071, 0x46001000, 0x11050100, 0x0501f002, - 0x646f503e, 0x8d0c0506, 0x05020037, 0x42024800, - 0x0010e512, 0x0541f957, 0x59240200, 0x8c000500, - 0x05000025, 0x8c000502, 0x05020023, 0x8c000506, - 0x05020021, 0x4c580000, 0x0501f8c2, 0x5c00b000, - 0x0502000b, 0x59240005, 0x82000500, 0x00ffff00, - 0x48024805, 0x59240200, 0x84000502, 0x84000546, - 0x84000544, 0x48024a00, 0x0501f013, 0x59240200, - 0x90000546, 0x84000506, 0x48024a00, 0x48064a08, - 0x82042c00, 0x00102853, 0x50142800, 0x82142d00, - 0x000000ff, 0x48164c08, 0x59240005, 0x82000500, - 0x00ffff00, 0x80140d40, 0x48064805, 0x40140800, - 0x05e5fb2a, 0x91264c0d, 0x8058b040, 0x05fe07d7, - 0x42024800, 0x0010e512, 0x59242a00, 0x8c140502, - 0x05000005, 0x8c140500, 0x05000003, 0x59242c08, - 0x4817503d, 0x60140800, 0x0501f95a, 0x4d3c0000, - 0x60067800, 0x0531fe4e, 0x5c027800, 0x1c01f000, - 0x4c5c0000, 0x4178b800, 0x59a800b6, 0x80000540, - 0x05000018, 0x4803c857, 0x42001000, 0x0010510c, - 0x0511fed1, 0x59a800b6, 0x82000580, 0x00000084, - 0x0502000f, 0x59cc1006, 0x82081580, 0x11060000, - 0x0502000b, 0x80000580, 0x0501fa75, 0x805cb9c0, - 0x05000004, 0x6433503e, 0x05fdfdca, 0x0501f005, - 0x6463503e, 0x0501f805, 0x0501f002, 0x0501f90b, - 0x5c00b800, 0x1c01f000, 0x4803c856, 0x6467503e, - 0x91cca406, 0x4200a800, 0x0010e071, 0x6084b000, - 0x0541f8a7, 0x42003800, 0x0010e072, 0x42024800, - 0x0010e512, 0x4200b000, 0x0010e511, 0x5058b000, - 0x59240200, 0x8c000500, 0x05000019, 0x8c000502, - 0x05000017, 0x401c2800, 0x50141000, 0x80080130, - 0x80000000, 0x40001800, 0x82081500, 0x00ffffff, - 0x800000f0, 0x80080540, 0x44002800, 0x59244408, - 0x82204500, 0x000000ff, 0x400c1000, 0x80081104, - 0x82083400, 0x0010e072, 0x50181000, 0x900c0503, - 0x0c01f808, 0x80081540, 0x44083000, 0x91264c0d, - 0x8058b040, 0x05fe07e3, 0x60840800, 0x0501f109, - 0x0010502c, 0x00105030, 0x00105034, 0x00105038, - 0x802000f0, 0x82081500, 0x00ffffff, 0x1c01f000, - 0x802000e0, 0x82081500, 0xff00ffff, 0x1c01f000, - 0x802000d0, 0x82081500, 0xffff00ff, 0x1c01f000, - 0x40200000, 0x82081500, 0xffffff00, 0x1c01f000, - 0x4c5c0000, 0x4178b800, 0x59a800b6, 0x80000540, - 0x05000018, 0x4803c857, 0x42001000, 0x0010510c, - 0x0511fe71, 0x59a800b6, 0x82000580, 0x00000084, - 0x0502000f, 0x59cc1006, 0x82081580, 0x11070000, - 0x0502000b, 0x640750b2, 0x0501f897, 0x805cb9c0, - 0x05000004, 0x643b503e, 0x05fdfd7a, 0x0501f005, - 0x646b503e, 0x0501f805, 0x0501f002, 0x0501f8ab, - 0x5c00b800, 0x1c01f000, 0x90000541, 0x0501fa08, - 0x646f503e, 0x91cca406, 0x4200a800, 0x0010e071, - 0x59a820b6, 0x40100000, 0x8000b104, 0x40580800, - 0x5450a800, 0x8050a000, 0x8054a800, 0x8058b040, - 0x05fe07fc, 0x0501f0c7, 0x1c01f000, 0x1c01f000, - 0x4803c856, 0x60103000, 0x42004000, 0x0010e072, - 0x599c2817, 0x8c140514, 0x0502001c, 0x600c1000, - 0x40200000, 0x80080400, 0x50000800, 0x82042580, - 0xffffffff, 0x05020005, 0x80081040, 0x80183040, - 0x05fe07f8, 0x0501f03f, 0x800811c0, 0x05020006, - 0x82042580, 0x3fffffff, 0x05000039, 0x82040d40, - 0xc0000000, 0x6080b000, 0x60041800, 0x40042000, - 0x80102102, 0x0502101f, 0x800c18c2, 0x8058b040, - 0x05fe07fc, 0x0501f02e, 0x41781000, 0x40200000, + 0x59240200, 0x84000502, 0x84000546, 0x84000544, + 0x48024a00, 0x0501f013, 0x59240200, 0x90000546, + 0x84000506, 0x48024a00, 0x48064a08, 0x82042c00, + 0x001028fb, 0x50142800, 0x82142d00, 0x000000ff, + 0x48164c08, 0x59240005, 0x82000500, 0x00ffff00, + 0x80140d40, 0x48064805, 0x40140800, 0x05e5f9b3, + 0x91264c0d, 0x8058b040, 0x05fe07d7, 0x42024800, + 0x001124b6, 0x59242a00, 0x8c140502, 0x05000005, + 0x8c140500, 0x05000003, 0x59242c08, 0x48175040, + 0x60140800, 0x0501f95a, 0x4d3c0000, 0x60067800, + 0x0535f9fe, 0x5c027800, 0x1c01f000, 0x4c5c0000, + 0x4178b800, 0x59a800bb, 0x80000540, 0x05000018, + 0x4803c857, 0x42001000, 0x00105303, 0x0515f8f4, + 0x59a800bb, 0x82000580, 0x00000084, 0x0502000f, + 0x59cc1006, 0x82081580, 0x11060000, 0x0502000b, + 0x80000580, 0x0501fa75, 0x805cb9c0, 0x05000004, + 0x64335041, 0x05fdfdc9, 0x0501f005, 0x64635041, + 0x0501f805, 0x0501f002, 0x0501f90b, 0x5c00b800, + 0x1c01f000, 0x4803c856, 0x64675041, 0x91cca406, + 0x4200a800, 0x0011200b, 0x6084b000, 0x0541fe2b, + 0x42003800, 0x0011200c, 0x42024800, 0x001124b6, + 0x4200b000, 0x001124b5, 0x5058b000, 0x59240200, + 0x8c000500, 0x05000019, 0x8c000502, 0x05000017, + 0x401c2800, 0x50141000, 0x80080130, 0x80000000, + 0x40001800, 0x82081500, 0x00ffffff, 0x800000f0, + 0x80080540, 0x44002800, 0x59244408, 0x82204500, + 0x000000ff, 0x400c1000, 0x80081104, 0x82083400, + 0x0011200c, 0x50181000, 0x900c0503, 0x0c01f808, + 0x80081540, 0x44083000, 0x91264c0d, 0x8058b040, + 0x05fe07e3, 0x60840800, 0x0501f109, 0x00105223, + 0x00105227, 0x0010522b, 0x0010522f, 0x802000f0, + 0x82081500, 0x00ffffff, 0x1c01f000, 0x802000e0, + 0x82081500, 0xff00ffff, 0x1c01f000, 0x802000d0, + 0x82081500, 0xffff00ff, 0x1c01f000, 0x40200000, + 0x82081500, 0xffffff00, 0x1c01f000, 0x4c5c0000, + 0x4178b800, 0x59a800bb, 0x80000540, 0x05000018, + 0x4803c857, 0x42001000, 0x00105303, 0x0515f894, + 0x59a800bb, 0x82000580, 0x00000084, 0x0502000f, + 0x59cc1006, 0x82081580, 0x11070000, 0x0502000b, + 0x640750b7, 0x0501f897, 0x805cb9c0, 0x05000004, + 0x643b5041, 0x05fdfd79, 0x0501f005, 0x646b5041, + 0x0501f805, 0x0501f002, 0x0501f8ab, 0x5c00b800, + 0x1c01f000, 0x90000541, 0x0501fa08, 0x646f5041, + 0x91cca406, 0x4200a800, 0x0011200b, 0x59a820bb, + 0x40100000, 0x8000b104, 0x40580800, 0x5450a800, + 0x8050a000, 0x8054a800, 0x8058b040, 0x05fe07fc, + 0x0501f0c7, 0x1c01f000, 0x1c01f000, 0x4803c856, + 0x60103000, 0x42004000, 0x0011200c, 0x599c2817, + 0x8c140514, 0x0502001c, 0x600c1000, 0x40200000, 0x80080400, 0x50000800, 0x82042580, 0xffffffff, - 0x05020005, 0x80081000, 0x80183040, 0x05fe07f8, - 0x0501f023, 0x800811c0, 0x05020003, 0x82040d40, - 0xc0000000, 0x6004b000, 0x42001800, 0x80000000, - 0x40042000, 0x801020c2, 0x05021006, 0x800c1902, - 0x8058b000, 0x905804a1, 0x05fc17fb, 0x0501f014, - 0x40200000, 0x80082400, 0x50100000, 0x800c0540, - 0x44002000, 0x59a80043, 0x84000540, 0x48035043, - 0x40580000, 0x60802800, 0x80142c80, 0x40080000, - 0x600c3800, 0x801c0480, 0x800000ca, 0x80142d40, - 0x40140800, 0x90000541, 0x0501f002, 0x80000580, - 0x1c01f000, 0x4807c857, 0x480bc857, 0x40041800, - 0x41782000, 0x600c0000, 0x900c1ca0, 0x05001004, - 0x80102000, 0x80000040, 0x05fdf7fc, 0x40041800, - 0x801021c0, 0x05000004, 0x900c1ca0, 0x80102040, - 0x05fe07fe, 0x60042000, 0x800c19c0, 0x05000004, - 0x801020c2, 0x800c1840, 0x05fe07fe, 0x80083c00, - 0x401c2800, 0x50140000, 0x80102d00, 0x05020007, - 0x80100540, 0x44003800, 0x59a80043, 0x84000540, - 0x48035043, 0x80000580, 0x1c01f000, 0x4807c856, - 0x605c1100, 0x59a81864, 0x053dff04, 0x05f9fef9, - 0x1c01f000, 0x4807c856, 0x6080b000, 0x91cca407, - 0x4200a800, 0x00110258, 0x053df7f8, 0x4807c856, - 0x0519ff69, 0x61dc0801, 0x0501f8d4, 0x497b2804, - 0x497b2805, 0x497b2826, 0x497b2827, 0x6006d800, - 0x42006000, 0xbe7fffff, 0x42006800, 0x00018000, - 0x0501f95f, 0x42006000, 0xfffeffff, 0x41786800, - 0x0501f95b, 0x497b5064, 0x60b40800, 0x42001000, - 0x00105184, 0x0511f588, 0x4807c856, 0x05fdffe8, - 0x497b503e, 0x497b50b6, 0x1c01f000, 0x4807c856, - 0x42006000, 0xffffffff, 0x60a06800, 0x0501f14c, - 0x4807c856, 0x05fdffd2, 0x0519fc05, 0x4df00000, - 0x0519fe92, 0x5c03e000, 0x05180bf2, 0x59c400a4, - 0x9000050f, 0x90000582, 0x0502000a, 0x42006000, - 0xffffffff, 0x42006800, 0x00200000, 0x0501f93c, - 0x42006000, 0xffdfffff, 0x41786800, 0x0501f938, - 0x497b503e, 0x61dc0801, 0x0501f8a0, 0x59c400a3, - 0x82000500, 0xbf20bfff, 0x82000540, 0x0001c000, - 0x480388a3, 0x84000520, 0x480388a3, 0x497b5064, - 0x60b40800, 0x42001000, 0x00105184, 0x0511f55a, - 0x497b50b6, 0x59b400f5, 0x8c000500, 0x05020003, - 0x90000541, 0x480368f5, 0x800400c4, 0x82000400, - 0x00002000, 0x4803910a, 0x59b400f6, 0x90000518, - 0x05fe07fe, 0x4a0368f0, 0x0010e06a, 0x42000000, - 0x0010e071, 0x4c040000, 0x40043800, 0x50000800, - 0x82040d80, 0x11010000, 0x0500000c, 0x50000800, - 0x4807c857, 0x8d0c052a, 0x05000008, 0x4c000000, - 0x821c3d40, 0x0000dc00, 0x42000000, 0x0010e06b, - 0x05d9fda3, 0x5c000000, 0x5c000800, 0x480368f1, - 0x82040400, 0x0000dc00, 0x480368f3, 0x59c408a4, - 0x90040d0f, 0x90040588, 0x05020013, 0x4c5c0000, - 0x4c600000, 0x59c4b805, 0x8c5c053a, 0x05020004, - 0x42000000, 0x0010e39a, 0x053dfe7a, 0x4a038805, - 0x20000000, 0x05e5fd27, 0x4000c000, 0x05e5fc6e, - 0x6006d800, 0x497b503e, 0x5c00c000, 0x5c00b800, - 0x1c01f000, 0x9004058c, 0x05000015, 0x59c8010b, - 0x8c000502, 0x05fc07e6, 0x90040d8b, 0x05020005, - 0x59a8083e, 0x82040d40, 0x00002000, 0x0501f004, - 0x59a808b1, 0x82040d40, 0x00001000, 0x48075064, - 0x59a808bc, 0x800409c0, 0x05020005, 0x6140080f, - 0x42001000, 0x0010510c, 0x0511fe66, 0x1c01f000, - 0x4807c856, 0x05fdff5a, 0x0519fb8d, 0x4df00000, - 0x0519fe1a, 0x5c03e000, 0x05180b7a, 0x59c400a4, - 0x9000050f, 0x90000582, 0x0502000a, 0x42006000, - 0xffffffff, 0x42006800, 0x00200000, 0x0501f8c4, - 0x42006000, 0xffdfffff, 0x41786800, 0x0501f8c0, - 0x0505ff1c, 0x05000010, 0x0505ff26, 0x0502000e, - 0x4a035041, 0x0000aaaa, 0x4c040000, 0x05e5f98f, - 0x59a8004d, 0x82000500, 0xffff0000, 0x80040540, - 0x4803504d, 0x5c000800, 0x64035042, 0x0505fe8a, - 0x0501f005, 0x641750b4, 0x60000001, 0x05e5f8d9, - 0x05fdff3f, 0x1c01f000, 0x0501f809, 0x42006000, - 0xbf7f7fff, 0x41786800, 0x0501f0a5, 0x42006000, - 0xbf7f7fff, 0x41786800, 0x0501f0a1, 0x0505ff09, - 0x05020009, 0x59c40006, 0x82000540, 0x000000f0, - 0x48038806, 0x42006000, 0xbfffffff, 0x41786800, - 0x0501f897, 0x1c01f000, 0x800408d0, 0x59a80043, - 0x8c000506, 0x05000006, 0x59a8003d, 0x82000500, - 0x000000ff, 0x80040540, 0x0501f003, 0x82040540, - 0x000000f7, 0x480388a7, 0x1c01f000, 0x4807c856, - 0x42000000, 0x0010e432, 0x053dfe0a, 0x60143000, - 0x4d3c0000, 0x4c180000, 0x60343000, 0x600a7800, - 0x0501f04f, 0x4807c856, 0x42000000, 0x0010e45c, - 0x053dfe00, 0x60003000, 0x4d3c0000, 0x4c180000, - 0x603c3000, 0x61fc19ff, 0x601c2000, 0x05f9fe65, - 0x5c003000, 0x59240200, 0x84000556, 0x48024a00, - 0x4d400000, 0x60aa8000, 0x59240400, 0x8c00050a, - 0x05380dbd, 0x600a7800, 0x05e9fc77, 0x5c028000, - 0x5c027800, 0x0005f7dc, 0x4807c856, 0x053dff38, - 0x0500000b, 0x4d400000, 0x4d200000, 0x05e9fc20, - 0x60068000, 0x60001802, 0x600c2800, 0x60040000, - 0x0505fc54, 0x5c024000, 0x5c028000, 0x42000000, - 0x0010e45a, 0x053dfddb, 0x600c3000, 0x4d3c0000, - 0x4c180000, 0x60383000, 0x600a7804, 0x0501f020, - 0x4807c856, 0x053dff22, 0x0500000b, 0x4d400000, - 0x4d200000, 0x05e9fc0a, 0x60068000, 0x60001802, - 0x60402800, 0x60040000, 0x0505fc3e, 0x5c024000, - 0x5c028000, 0x42000000, 0x0010e459, 0x053dfdc5, - 0x60103000, 0x4d3c0000, 0x4c180000, 0x60403000, - 0x600a7804, 0x0501f00a, 0x4807c856, 0x42000000, - 0x0010e39c, 0x053dfdbb, 0x60043000, 0x4d3c0000, - 0x4c180000, 0x60303000, 0x600a7800, 0x61fc19ff, - 0x601c2000, 0x4d200000, 0x417a4000, 0x05f9fe1d, - 0x5c024000, 0x5c003000, 0x4d400000, 0x053dfb65, - 0x60aa8000, 0x05e9f8a1, 0x4c580000, 0x053dfec5, - 0x42000800, 0x0010e512, 0x58040005, 0x82000500, - 0x000000ff, 0x48000805, 0x90040c0d, 0x8058b040, - 0x05fe07fa, 0x5c00b000, 0x5c028000, 0x5c027800, - 0x1c01f000, 0x4807c856, 0x05011000, 0x4a03c840, - 0x0010e06a, 0x6503c842, 0x40000000, 0x05fd17ff, - 0x42007800, 0x0010e06a, 0x64447800, 0x803c7800, - 0x4a007800, 0x220000ef, 0x4a007801, 0x000000ef, - 0x4a007802, 0x01380000, 0x64007803, 0x4a007804, - 0xffffffff, 0x64007805, 0x1c01f000, 0x59c400a3, - 0x80300500, 0x80340540, 0x480388a3, 0x1c01f000, - 0x4833c857, 0x59c400a3, 0x80300540, 0x480388a3, - 0x80300580, 0x480388a3, 0x1c01f000, 0x4803c856, - 0x05000003, 0x640750bd, 0x0501f002, 0x497b50bd, - 0x1c01f000, 0x59c80002, 0x80000540, 0x05000009, - 0x80000040, 0x05000007, 0x4a039005, 0x00000140, - 0x60300000, 0x80000040, 0x05fe07ff, 0x05fdf7f6, - 0x1c01f000, 0x4c5c0000, 0x4c600000, 0x59c4b805, - 0x485fc856, 0x8c5c053a, 0x05020004, 0x42000000, - 0x0010e39a, 0x053dfd5f, 0x4a038805, 0x20000000, - 0x05e5fc0c, 0x4000c000, 0x05e5fb53, 0x4a038805, - 0x04000000, 0x5c00c000, 0x5c00b800, 0x1c01f000, - 0x497a6a00, 0x0501faf4, 0x4a026c00, 0x00000707, - 0x497a6801, 0x497a6808, 0x497a6809, 0x497a6806, - 0x497a6807, 0x497a6c0b, 0x497a680c, 0x59240400, - 0x8c00050a, 0x05000005, 0x5934080f, 0x59340010, - 0x80040540, 0x05da0b41, 0x4a026a04, 0x00000100, - 0x497a6a03, 0x59340402, 0x82000500, 0x000000ff, - 0x48026c02, 0x497a6c04, 0x497a6a05, 0x497a6c05, - 0x497a6811, 0x4d2c0000, 0x5934000d, 0x49466c03, - 0x80025d40, 0x05000003, 0x05d9fef1, 0x497a680d, - 0x5c025800, 0x599c0401, 0x48026a0b, 0x599c0208, - 0x48026c12, 0x4a02680a, 0x00008000, 0x0505f1fb, - 0x60140000, 0x80000d80, 0x0501f024, 0x0501ff90, - 0x05020013, 0x59a80249, 0x8c00050a, 0x0502000d, - 0x59340212, 0x82000500, 0x0000ff00, 0x4803c857, - 0x05000008, 0x59340a00, 0x8c04051e, 0x000002be, - 0x60a40000, 0x60000820, 0x492fc857, 0x0501f013, - 0x492fc857, 0x60a00000, 0x0501f00e, 0x8d0c0502, - 0x05020003, 0x8d0c0500, 0x05000003, 0x60100000, - 0x0501f008, 0x60a40000, 0x59340a00, 0x8c04051e, - 0x05000004, 0x492fc857, 0x60000820, 0x0501f003, - 0x492fc857, 0x80000d80, 0x4803c857, 0x80028540, - 0x1c01f000, 0x490fc857, 0x8d0c0500, 0x05fe07f0, - 0x0501ff45, 0x05fe07ea, 0x59340200, 0x8c00050e, - 0x05fc07e7, 0x0001f2be, 0x4d480000, 0x4d4c0000, - 0x592e900c, 0x592e980d, 0x0501fc9f, 0x5c029800, - 0x5c029000, 0x05fc07c7, 0x0001f2c1, 0x492fc857, - 0x592e8c0a, 0x83440d80, 0x000007fc, 0x05000004, - 0x83440480, 0x000007f0, 0x05021018, 0x592e440b, - 0x050df861, 0x05000f80, 0x05020014, 0x0509ff48, - 0x05020012, 0x0501ff34, 0x05020012, 0x0521f904, - 0x05000019, 0x83200400, 0x0010d17b, 0x50024800, - 0x4926601d, 0x59340002, 0x4802600b, 0x4936600a, - 0x492e6009, 0x642a6407, 0x61027000, 0x0009f800, - 0x80000580, 0x0501f00b, 0x60a00000, 0x0501f008, - 0x0501ff37, 0x05fc07fd, 0x910c0d03, 0x05000003, - 0x60100000, 0x0501f002, 0x60a40000, 0x80000540, - 0x1c01f000, 0x60b00000, 0x05fdf7fd, 0x492fc857, - 0x592e440b, 0x4923c857, 0x050df83b, 0x592c420b, - 0x0500000a, 0x60380000, 0x59240a00, 0x8c040500, - 0x05000198, 0x90200d0f, 0x90040d88, 0x05020195, - 0x90200d30, 0x05000193, 0x592e8c0a, 0x4947c857, - 0x83440c80, 0x00000800, 0x60280000, 0x0502118d, - 0x4823c857, 0x9020050f, 0x0c01f001, 0x00105346, - 0x001053d9, 0x00105428, 0x00105430, 0x00105438, - 0x00105343, 0x00105343, 0x00105343, 0x00105442, - 0x0010549f, 0x001054bb, 0x00105343, 0x00105343, - 0x00105343, 0x00105343, 0x00105343, 0x4803c857, - 0x60300000, 0x0501f177, 0x592c100c, 0x82081500, - 0x00ffffff, 0x0501fdc4, 0x0500002d, 0x4803c857, - 0x90004d9d, 0x05020016, 0x0509fcb5, 0x59340405, - 0x4c000000, 0x0501fed4, 0x5c000000, 0x05000004, - 0x8c20050a, 0x05000022, 0x80000580, 0x44002800, - 0x59340008, 0x48002802, 0x59340009, 0x48002801, - 0x59340006, 0x48002804, 0x59340007, 0x48002803, - 0x6014b000, 0x052dffb9, 0x0501f17d, 0x4803c857, - 0x90004d9a, 0x05020003, 0x40101000, 0x0501f15a, - 0x4803c857, 0x90004d9b, 0x05020003, 0x40181000, - 0x0501f155, 0x4803c857, 0x90004d9f, 0x05000156, - 0x90004d9c, 0x05000154, 0x90004d99, 0x60280000, - 0x05000148, 0x60280000, 0x05020159, 0x59a800d1, - 0x8c000502, 0x05000016, 0x0501feab, 0x05000014, - 0x59340212, 0x82000500, 0x0000ff00, 0x60401000, - 0x0502000b, 0x60201000, 0x59a80249, 0x8c000506, - 0x05020008, 0x59340002, 0x82000500, 0x00ff0000, - 0x82000580, 0x00ff0000, 0x05000005, 0x0505f924, - 0x60700000, 0x40181000, 0x05020133, 0x0521f874, - 0x0500013b, 0x82200500, 0x00000100, 0x0501fe3e, - 0x4926601d, 0x4936600a, 0x052dfcf9, 0x492e6009, - 0x64066407, 0x8c20050a, 0x05000004, 0x592c0408, - 0x8400055c, 0x48025c08, 0x4c200000, 0x4d3c0000, - 0x60027830, 0x05e5ff8b, 0x5c027800, 0x5c004000, - 0x592c100c, 0x82081500, 0x00ffffff, 0x59240005, - 0x80081d80, 0x0502001c, 0x4a026c00, 0x00000404, - 0x497a6a05, 0x497a6c05, 0x8c20050a, 0x05020006, - 0x4a026c00, 0x00000606, 0x4a026a05, 0x00002000, - 0x648a6c05, 0x59240001, 0x59240802, 0x48026806, - 0x48066807, 0x59240003, 0x59240804, 0x48026808, - 0x48066809, 0x59a80004, 0x48026a04, 0x0505f90f, - 0x0005ffdc, 0x592c0408, 0x8400051c, 0x48025c08, - 0x0501f11b, 0x8c200512, 0x0500000b, 0x599c0018, + 0x05020005, 0x80081040, 0x80183040, 0x05fe07f8, + 0x0501f03f, 0x800811c0, 0x05020006, 0x82042580, + 0x3fffffff, 0x05000039, 0x82040d40, 0xc0000000, + 0x6080b000, 0x60041800, 0x40042000, 0x80102102, + 0x0502101f, 0x800c18c2, 0x8058b040, 0x05fe07fc, + 0x0501f02e, 0x41781000, 0x40200000, 0x80080400, + 0x50000800, 0x82042580, 0xffffffff, 0x05020005, + 0x80081000, 0x80183040, 0x05fe07f8, 0x0501f023, + 0x800811c0, 0x05020003, 0x82040d40, 0xc0000000, + 0x6004b000, 0x42001800, 0x80000000, 0x40042000, + 0x801020c2, 0x05021006, 0x800c1902, 0x8058b000, + 0x905804a1, 0x05fc17fb, 0x0501f014, 0x40200000, + 0x80082400, 0x50100000, 0x800c0540, 0x44002000, + 0x59a80046, 0x84000540, 0x48035046, 0x40580000, + 0x60802800, 0x80142c80, 0x40080000, 0x600c3800, + 0x801c0480, 0x800000ca, 0x80142d40, 0x40140800, + 0x90000541, 0x0501f002, 0x80000580, 0x1c01f000, + 0x4807c857, 0x480bc857, 0x40041800, 0x41782000, + 0x600c0000, 0x900c1ca0, 0x05001004, 0x80102000, + 0x80000040, 0x05fdf7fc, 0x40041800, 0x801021c0, + 0x05000004, 0x900c1ca0, 0x80102040, 0x05fe07fe, + 0x60042000, 0x800c19c0, 0x05000004, 0x801020c2, + 0x800c1840, 0x05fe07fe, 0x80083c00, 0x401c2800, + 0x50140000, 0x80102d00, 0x05020007, 0x80100540, + 0x44003800, 0x59a80046, 0x84000540, 0x48035046, + 0x80000580, 0x1c01f000, 0x4807c856, 0x605c1100, + 0x59a81867, 0x0541fc88, 0x05f9fe9f, 0x1c01f000, + 0x4807c856, 0x6080b000, 0x91cca407, 0x4200a800, + 0x001141fc, 0x0541f57c, 0x4807c856, 0x051dfa30, + 0x61dc0801, 0x0501f8d4, 0x497b2804, 0x497b2805, + 0x497b2826, 0x497b2827, 0x6006d800, 0x42006000, + 0xbe7fffff, 0x42006800, 0x00018000, 0x0501f95f, + 0x42006000, 0xfffeffff, 0x41786800, 0x0501f95b, + 0x497b5067, 0x60b40800, 0x42001000, 0x0010537b, + 0x0511f7ab, 0x4807c856, 0x05fdffe8, 0x497b5041, + 0x497b50bb, 0x1c01f000, 0x4807c856, 0x42006000, + 0xffffffff, 0x60a06800, 0x0501f14c, 0x4807c856, + 0x05fdffd2, 0x0519fecc, 0x4df00000, 0x051df959, + 0x5c03e000, 0x05180eb9, 0x59c400a4, 0x9000050f, + 0x90000582, 0x0502000a, 0x42006000, 0xffffffff, + 0x42006800, 0x00200000, 0x0501f93c, 0x42006000, + 0xffdfffff, 0x41786800, 0x0501f938, 0x497b5041, + 0x61dc0801, 0x0501f8a0, 0x59c400a3, 0x82000500, + 0xbf20bfff, 0x82000540, 0x0001c000, 0x480388a3, + 0x84000520, 0x480388a3, 0x497b5067, 0x60b40800, + 0x42001000, 0x0010537b, 0x0511f77d, 0x497b50bb, + 0x59b400f5, 0x8c000500, 0x05020003, 0x90000541, + 0x480368f5, 0x800400c4, 0x82000400, 0x00002000, + 0x4803910a, 0x59b400f6, 0x90000518, 0x05fe07fe, + 0x4a0368f0, 0x00112004, 0x42000000, 0x0011200b, + 0x4c040000, 0x40043800, 0x50000800, 0x82040d80, + 0x11010000, 0x0500000c, 0x50000800, 0x4807c857, + 0x8d0c052a, 0x05000008, 0x4c000000, 0x821c3d40, + 0x0000dc00, 0x42000000, 0x00112005, 0x05d9fbdb, + 0x5c000000, 0x5c000800, 0x480368f1, 0x82040400, + 0x0000dc00, 0x480368f3, 0x59c408a4, 0x90040d0f, + 0x90040588, 0x05020013, 0x4c5c0000, 0x4c600000, + 0x59c4b805, 0x8c5c053a, 0x05020004, 0x42000000, + 0x0011233b, 0x0541fbfe, 0x4a038805, 0x20000000, + 0x05e5fbb0, 0x4000c000, 0x05e5faf7, 0x6006d800, + 0x497b5041, 0x5c00c000, 0x5c00b800, 0x1c01f000, + 0x9004058c, 0x05000015, 0x59c8010b, 0x8c000502, + 0x05fc07e6, 0x90040d8b, 0x05020005, 0x59a80841, + 0x82040d40, 0x00002000, 0x0501f004, 0x59a808b6, + 0x82040d40, 0x00001000, 0x48075067, 0x59a808c1, + 0x800409c0, 0x05020005, 0x6140080f, 0x42001000, + 0x00105303, 0x0515f8d3, 0x1c01f000, 0x4807c856, + 0x05fdff5a, 0x0519fe54, 0x4df00000, 0x051df8e1, + 0x5c03e000, 0x05180e41, 0x59c400a4, 0x9000050f, + 0x90000582, 0x0502000a, 0x42006000, 0xffffffff, + 0x42006800, 0x00200000, 0x0501f8c4, 0x42006000, + 0xffdfffff, 0x41786800, 0x0501f8c0, 0x0509f80f, + 0x05000010, 0x0509f819, 0x0502000e, 0x4a035044, + 0x0000aaaa, 0x4c040000, 0x05e5f818, 0x59a80050, + 0x82000500, 0xffff0000, 0x80040540, 0x48035050, + 0x5c000800, 0x64035045, 0x0505ff77, 0x0501f005, + 0x641750b9, 0x60000001, 0x05e1ff62, 0x05fdff3f, + 0x1c01f000, 0x0501f809, 0x42006000, 0xbf7f7fff, + 0x41786800, 0x0501f0a5, 0x42006000, 0xbf7f7fff, + 0x41786800, 0x0501f0a1, 0x0505fffc, 0x05020009, + 0x59c40006, 0x82000540, 0x000000f0, 0x48038806, + 0x42006000, 0xbfffffff, 0x41786800, 0x0501f897, + 0x1c01f000, 0x800408d0, 0x59a80046, 0x8c000506, + 0x05000006, 0x59a80040, 0x82000500, 0x000000ff, + 0x80040540, 0x0501f003, 0x82040540, 0x000000f7, + 0x480388a7, 0x1c01f000, 0x4807c856, 0x42000000, + 0x001123d3, 0x0541fb8e, 0x60143000, 0x4d3c0000, + 0x4c180000, 0x60343000, 0x600a7800, 0x0501f04f, + 0x4807c856, 0x42000000, 0x00112400, 0x0541fb84, + 0x60003000, 0x4d3c0000, 0x4c180000, 0x603c3000, + 0x61fc19ff, 0x601c2000, 0x05f9fe0b, 0x5c003000, + 0x59240200, 0x84000556, 0x48024a00, 0x4d400000, + 0x60aa8000, 0x59240400, 0x8c00050a, 0x053c0b0d, + 0x600a7800, 0x05e9fb26, 0x5c028000, 0x5c027800, + 0x0009f010, 0x4807c856, 0x0541fcbc, 0x0500000b, + 0x4d400000, 0x4d200000, 0x05e9fac5, 0x60068000, + 0x60001802, 0x600c2800, 0x60040000, 0x0505fd41, + 0x5c024000, 0x5c028000, 0x42000000, 0x001123fe, + 0x0541fb5f, 0x600c3000, 0x4d3c0000, 0x4c180000, + 0x60383000, 0x600a7804, 0x0501f020, 0x4807c856, + 0x0541fca6, 0x0500000b, 0x4d400000, 0x4d200000, + 0x05e9faaf, 0x60068000, 0x60001802, 0x60402800, + 0x60040000, 0x0505fd2b, 0x5c024000, 0x5c028000, + 0x42000000, 0x001123fd, 0x0541fb49, 0x60103000, + 0x4d3c0000, 0x4c180000, 0x60403000, 0x600a7804, + 0x0501f00a, 0x4807c856, 0x42000000, 0x0011233d, + 0x0541fb3f, 0x60043000, 0x4d3c0000, 0x4c180000, + 0x60303000, 0x600a7800, 0x61fc19ff, 0x601c2000, + 0x4d200000, 0x417a4000, 0x05f9fdc3, 0x5c024000, + 0x5c003000, 0x4d400000, 0x0541f8cb, 0x60aa8000, + 0x05e5ff3d, 0x4c580000, 0x0541fc49, 0x42000800, + 0x001124b6, 0x58040005, 0x82000500, 0x000000ff, + 0x48000805, 0x90040c0d, 0x8058b040, 0x05fe07fa, + 0x5c00b000, 0x5c028000, 0x5c027800, 0x1c01f000, + 0x4807c856, 0x05011000, 0x4a03c840, 0x00112004, + 0x6503c842, 0x40000000, 0x05fd17ff, 0x42007800, + 0x00112004, 0x64447800, 0x803c7800, 0x4a007800, + 0x220000ef, 0x4a007801, 0x000000ef, 0x4a007802, + 0x01380000, 0x64007803, 0x4a007804, 0xffffffff, + 0x64007805, 0x1c01f000, 0x59c400a3, 0x80300500, + 0x80340540, 0x480388a3, 0x1c01f000, 0x4833c857, + 0x59c400a3, 0x80300540, 0x480388a3, 0x80300580, + 0x480388a3, 0x1c01f000, 0x4803c856, 0x05000003, + 0x640750c2, 0x0501f002, 0x497b50c2, 0x1c01f000, + 0x59c80002, 0x80000540, 0x05000009, 0x80000040, + 0x05000007, 0x4a039005, 0x00000140, 0x60300000, + 0x80000040, 0x05fe07ff, 0x05fdf7f6, 0x1c01f000, + 0x4c5c0000, 0x4c600000, 0x59c4b805, 0x485fc856, + 0x8c5c053a, 0x05020004, 0x42000000, 0x0011233b, + 0x0541fae3, 0x4a038805, 0x20000000, 0x05e5fa95, + 0x4000c000, 0x05e5f9dc, 0x4a038805, 0x04000000, + 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x497a6a00, + 0x0501fb37, 0x4a026c00, 0x00000707, 0x497a6801, + 0x497a6808, 0x497a6809, 0x497a6806, 0x497a6807, + 0x497a6c0b, 0x497a680c, 0x59240400, 0x8c00050a, + 0x05000005, 0x5934080f, 0x59340010, 0x80040540, + 0x05da0985, 0x4a026a04, 0x00000100, 0x497a6a03, + 0x59340402, 0x82000500, 0x000000ff, 0x48026c02, + 0x497a6c04, 0x497a6a05, 0x497a6c05, 0x497a6811, + 0x4d2c0000, 0x5934000d, 0x49466c03, 0x80025d40, + 0x05000003, 0x05d9fd31, 0x497a680d, 0x5c025800, + 0x599c0401, 0x48026a0b, 0x599c0208, 0x48026c12, + 0x4a02680a, 0x00008000, 0x0505f2d9, 0x60140000, + 0x80000d80, 0x0501f024, 0x0505f862, 0x05020013, + 0x59a8024c, 0x8c00050a, 0x0502000d, 0x59340212, + 0x82000500, 0x0000ff00, 0x4803c857, 0x05000008, + 0x59340a00, 0x8c04051e, 0x000002c6, 0x60a40000, + 0x60000820, 0x492fc857, 0x0501f013, 0x492fc857, + 0x60a00000, 0x0501f00e, 0x8d0c0502, 0x05020003, + 0x8d0c0500, 0x05000003, 0x60100000, 0x0501f008, + 0x60a40000, 0x59340a00, 0x8c04051e, 0x05000004, + 0x492fc857, 0x60000820, 0x0501f003, 0x492fc857, + 0x80000d80, 0x4803c857, 0x80028540, 0x1c01f000, + 0x490fc857, 0x8d0c0500, 0x05fe07f0, 0x0505f817, + 0x05fe07ea, 0x59340200, 0x8c00050e, 0x05fc07e7, + 0x0001f2c6, 0x4d480000, 0x4d4c0000, 0x592e900c, + 0x592e980d, 0x0501fd12, 0x5c029800, 0x5c029000, + 0x05fc07c7, 0x0001f2c9, 0x492fc857, 0x592e8c0a, + 0x83440d80, 0x000007fc, 0x0500000c, 0x83440480, + 0x000007f0, 0x05001009, 0x83440480, 0x00000800, + 0x0500101d, 0x8d0c0538, 0x0500001b, 0x59a800ad, + 0x81440480, 0x05021018, 0x592e440b, 0x050df9ca, + 0x0504084a, 0x05020014, 0x050df8b1, 0x05020012, + 0x0501fffe, 0x05020012, 0x0521fc1a, 0x05000019, + 0x83200400, 0x0010d8f9, 0x50024800, 0x4926601d, + 0x59340002, 0x4802600b, 0x4936600a, 0x492e6009, + 0x642a6407, 0x61027000, 0x0009f839, 0x80000580, + 0x0501f00b, 0x60a00000, 0x0501f008, 0x0505f801, + 0x05fc07fd, 0x910c0d03, 0x05000003, 0x60100000, + 0x0501f002, 0x60a40000, 0x80000540, 0x1c01f000, + 0x60b00000, 0x05fdf7fd, 0x492fc857, 0x592e440b, + 0x4923c857, 0x050df9a4, 0x592c420b, 0x0500000a, + 0x60380000, 0x59240a00, 0x8c040500, 0x050001a8, + 0x90200d0f, 0x90040d88, 0x050201a5, 0x90200d30, + 0x050001a3, 0x592e8c0a, 0x4947c857, 0x59a800ad, + 0x81440480, 0x60280000, 0x0502119d, 0x4823c857, + 0x9020050f, 0x0c01f001, 0x00105545, 0x001055e1, + 0x00105635, 0x0010563d, 0x00105645, 0x00105542, + 0x00105542, 0x00105542, 0x0010564f, 0x001056ae, + 0x001056ca, 0x00105542, 0x00105542, 0x00105542, + 0x00105542, 0x00105542, 0x4803c857, 0x60300000, + 0x0501f187, 0x592c100c, 0x82081500, 0x00ffffff, + 0x0501fe37, 0x0500002f, 0x4803c857, 0x90004d9d, + 0x05020016, 0x0509fdc9, 0x59340405, 0x4c000000, + 0x0501ff9e, 0x5c000000, 0x05000004, 0x8c20050a, + 0x05000024, 0x80000580, 0x44002800, 0x59340008, + 0x48002802, 0x59340009, 0x48002801, 0x59340006, + 0x48002804, 0x59340007, 0x48002803, 0x6014b000, + 0x0531fb60, 0x0501f191, 0x4803c857, 0x90004d9a, + 0x05020003, 0x40101000, 0x0501f16e, 0x4803c857, + 0x90004d9b, 0x05020003, 0x40181000, 0x0501f169, + 0x4803c857, 0x90004da0, 0x0500016a, 0x90004d9f, + 0x05000168, 0x90004d9c, 0x05000166, 0x90004d99, + 0x60280000, 0x05000156, 0x60280000, 0x0502016b, + 0x59a800d6, 0x8c000502, 0x05000016, 0x0501ff73, + 0x05000014, 0x59340212, 0x82000500, 0x0000ff00, + 0x60401000, 0x0502000b, 0x60201000, 0x59a8024c, + 0x8c000506, 0x05020008, 0x59340002, 0x82000500, + 0x00ff0000, 0x82000580, 0x00ff0000, 0x05000005, + 0x0505f9f8, 0x60700000, 0x40181000, 0x05020141, + 0x0521fb88, 0x0500014d, 0x82200500, 0x00000100, + 0x0501ff02, 0x4926601d, 0x4936600a, 0x0531f890, + 0x492e6009, 0x64066407, 0x8c20050a, 0x05000004, + 0x592c0408, 0x8400055c, 0x48025c08, 0x4c200000, + 0x4d3c0000, 0x60027830, 0x05e5fe21, 0x5c027800, + 0x5c004000, 0x592c100c, 0x82081500, 0x00ffffff, + 0x59240005, 0x80081d80, 0x0502001c, 0x4a026c00, + 0x00000404, 0x497a6a05, 0x497a6c05, 0x8c20050a, + 0x05020006, 0x4a026c00, 0x00000606, 0x4a026a05, + 0x00002000, 0x648a6c05, 0x59240001, 0x59240802, + 0x48026806, 0x48066807, 0x59240003, 0x59240804, + 0x48026808, 0x48066809, 0x59a80004, 0x48026a04, + 0x0505f9e3, 0x0009f810, 0x592c0408, 0x8400051c, + 0x48025c08, 0x0501f12d, 0x8c20050a, 0x05020006, + 0x8c200514, 0x05000004, 0x48226216, 0x592c0a0d, + 0x4806601e, 0x8c200512, 0x0500000b, 0x599c0018, 0x8c000518, 0x05000008, 0x592c000d, 0x82000500, 0x00000380, 0x5934080a, 0x80040d40, 0x84040d54, - 0x4806680a, 0x417a7800, 0x0501f911, 0x600c0800, - 0x0501f919, 0x600a7000, 0x0009f800, 0x80000580, - 0x0501f10a, 0x0501fea0, 0x050200f5, 0x0501fe50, - 0x05000009, 0x0501fe48, 0x050200f5, 0x4c600000, - 0x4178c000, 0x60027830, 0x417a6000, 0x05e5ffc1, + 0x4806680a, 0x417a7800, 0x0501f91c, 0x600c0800, + 0x0501f924, 0x600a7000, 0x0009f839, 0x80000580, + 0x0501f115, 0x0501ff61, 0x05020100, 0x0501ff11, + 0x05000009, 0x0501ff09, 0x05020100, 0x4c600000, + 0x4178c000, 0x60027830, 0x417a6000, 0x05e5fe50, 0x5c00c000, 0x592c100c, 0x82081500, 0x00ffffff, 0x59240005, 0x80084d80, 0x05020007, 0x4a026c00, 0x00000606, 0x4a026a05, 0x00002000, 0x648a6c05, - 0x0501f0ef, 0x59a800d1, 0x8c000502, 0x05000016, - 0x0501fe31, 0x05000014, 0x59340212, 0x82000500, + 0x0501f0fa, 0x59a800d6, 0x8c000502, 0x05000016, + 0x0501fef2, 0x05000014, 0x59340212, 0x82000500, 0x0000ff00, 0x60401000, 0x0502000b, 0x60201000, - 0x59a80249, 0x8c000506, 0x05020008, 0x59340002, + 0x59a8024c, 0x8c000506, 0x05020008, 0x59340002, 0x82000500, 0x00ff0000, 0x82000580, 0x00ff0000, - 0x05000005, 0x0505f8aa, 0x60700000, 0x40181000, - 0x050200b9, 0x051dfffa, 0x050000c1, 0x5934080a, + 0x05000005, 0x0505f977, 0x60700000, 0x40181000, + 0x050200c0, 0x0521fb07, 0x050000cc, 0x5934080a, 0x8c200512, 0x0500000c, 0x599c0018, 0x8c000518, 0x05000009, 0x592c000d, 0x82000500, 0x00000380, 0x82041500, 0xfffffc7f, 0x80080d40, 0x84040d54, 0x0501f002, 0x84040d14, 0x4806680a, 0x4926601d, - 0x4936600a, 0x052dfc72, 0x492e6009, 0x64066407, - 0x417a7800, 0x0501f8c2, 0x60140800, 0x0501f8ca, - 0x600e7000, 0x0009f800, 0x80000580, 0x0501f0bb, - 0x0501fe51, 0x050200a6, 0x0501fe10, 0x050200a8, - 0x052dfe17, 0x0500009e, 0x80000580, 0x0501f0b3, - 0x0501fe49, 0x0502009e, 0x0501fe08, 0x050200a0, - 0x052df937, 0x05000096, 0x80000580, 0x0501f0ab, - 0x0501fe41, 0x05020096, 0x83444d80, 0x000007fe, - 0x60280000, 0x0502007f, 0x052dfe19, 0x0500008c, - 0x80000580, 0x0501f0a1, 0xb0200530, 0x05020004, - 0x8c20050e, 0x60300000, 0x05020076, 0x8c20050a, - 0x0500000f, 0x4d3c0000, 0x600278a0, 0x8c20050e, - 0x05020003, 0x853e7d56, 0x853e7d1c, 0x82200500, - 0x000004a0, 0x42026000, 0x00111a70, 0x492e6009, - 0x0501fda3, 0x5c027800, 0x0501f089, 0x8c200508, - 0x0502001a, 0x592c100c, 0x82081500, 0x00ffffff, - 0x0501fcb1, 0x05000027, 0x4803c857, 0x90004d9a, - 0x05020003, 0x40101000, 0x0501f05f, 0x4803c857, - 0x90004d9b, 0x05020003, 0x40181000, 0x0501f05a, - 0x4803c857, 0x90004d9f, 0x0500005b, 0x90004d9c, - 0x05000059, 0x90004d99, 0x60280000, 0x0500004d, - 0x60280000, 0x0501f05e, 0x0501fe07, 0x0502005c, - 0x4d3c0000, 0x600278a0, 0x8c20050e, 0x05020003, - 0x853e7d56, 0x853e7d1c, 0x82200500, 0x00000090, - 0x42026000, 0x00111a70, 0x492e6009, 0x0501fd60, - 0x5c027800, 0x60280000, 0x0502003a, 0x0501f05c, - 0x592c100c, 0x82081500, 0x00ffffff, 0x59240005, - 0x80084d80, 0x05020003, 0x84204548, 0x05fdf7e9, - 0x916c0583, 0x601c0800, 0x05020005, 0x052dfd6c, - 0x05000009, 0x80000580, 0x0501f050, 0x42026000, - 0x00111a70, 0x492e6009, 0x0501fdc8, 0x05000045, - 0x0501f047, 0x42026000, 0x00111a70, 0x492e6009, - 0x0501fdc2, 0x0500002e, 0x0501f041, 0x0501fdda, - 0x0502002f, 0x916c0583, 0x05020036, 0x8c200508, - 0x05000008, 0x4c600000, 0x4178c000, 0x60027830, - 0x417a6000, 0x05e5fefb, 0x5c00c000, 0x0501f034, - 0x0501fd7f, 0x05000009, 0x0501fd77, 0x05020024, + 0x4936600a, 0x0531f802, 0x8c200514, 0x05000004, + 0x48226216, 0x592c0a0d, 0x4806601e, 0x492e6009, + 0x64066407, 0x417a7800, 0x0501f8c8, 0x60140800, + 0x0501f8d0, 0x600e7000, 0x0009f839, 0x80000580, + 0x0501f0c1, 0x0501ff0d, 0x050200ac, 0x0501fecc, + 0x050200ae, 0x0531f9a9, 0x050000a4, 0x80000580, + 0x0501f0b9, 0x0501ff05, 0x050200a4, 0x0501fec4, + 0x050200a6, 0x052dfcc3, 0x0500009c, 0x80000580, + 0x0501f0b1, 0x0501fefd, 0x0502009c, 0x83444d80, + 0x000007fe, 0x60280000, 0x05020081, 0x0531f9ab, + 0x05000092, 0x80000580, 0x0501f0a7, 0xb0200530, + 0x05020004, 0x8c20050e, 0x60300000, 0x05020078, + 0x8c20050a, 0x0500000f, 0x4d3c0000, 0x600278a0, + 0x8c20050e, 0x05020003, 0x853e7d56, 0x853e7d1c, + 0x82200500, 0x000004a0, 0x42026000, 0x00115a14, + 0x492e6009, 0x0501fe5b, 0x5c027800, 0x0501f08f, + 0x8c200508, 0x0502001c, 0x592c100c, 0x82081500, + 0x00ffffff, 0x0501fd16, 0x05000029, 0x4803c857, + 0x90004d9a, 0x05020003, 0x40101000, 0x0501f061, + 0x4803c857, 0x90004d9b, 0x05020003, 0x40181000, + 0x0501f05c, 0x4803c857, 0x90004da0, 0x05000061, + 0x90004d9f, 0x0500005f, 0x90004d9c, 0x0500005d, + 0x90004d99, 0x60280000, 0x0500004d, 0x60280000, + 0x0501f062, 0x0501fec1, 0x05020060, 0x4d3c0000, + 0x600278a0, 0x8c20050e, 0x05020003, 0x853e7d56, + 0x853e7d1c, 0x82200500, 0x00000090, 0x42026000, + 0x00115a14, 0x492e6009, 0x0501fe16, 0x5c027800, + 0x60280000, 0x0502003a, 0x0501f060, 0x592c100c, + 0x82081500, 0x00ffffff, 0x59240005, 0x80084d80, + 0x05020003, 0x84204548, 0x05fdf7e9, 0x916c0583, + 0x601c0800, 0x05020005, 0x0531f8fc, 0x05000009, + 0x80000580, 0x0501f054, 0x42026000, 0x00115a14, + 0x492e6009, 0x0501fe82, 0x05000049, 0x0501f04b, + 0x42026000, 0x00115a14, 0x492e6009, 0x0501fe7c, + 0x05000032, 0x0501f045, 0x0501fe94, 0x05020033, + 0x916c0583, 0x0502003a, 0x8c200508, 0x05000008, 0x4c600000, 0x4178c000, 0x60027830, 0x417a6000, - 0x05e5fef0, 0x5c00c000, 0x480bc856, 0x052dfbea, - 0x05000013, 0x80000580, 0x0501f028, 0x05fdf7e4, - 0x480bc857, 0x60640800, 0x40001000, 0x6008b000, - 0x0501f008, 0x480bc857, 0x40000800, 0x6008b000, - 0x0501f004, 0x480bc857, 0x40000800, 0x6004b000, - 0x480bc857, 0x60c68000, 0x0501f017, 0x480bc857, - 0x600c0800, 0x6004b000, 0x05fdf7fa, 0x480bc857, - 0x60280800, 0x6004b000, 0x05fdf7f6, 0x480bc857, - 0x60240800, 0x40001000, 0x6008b000, 0x05fdf7f1, - 0x480bc857, 0x601c0800, 0x6004b000, 0x05fdf7ed, - 0x480bc857, 0x6004b000, 0x05fdf7ea, 0x80028580, - 0x4178b000, 0x90000541, 0x1c01f000, 0x4937c857, - 0x5932680a, 0x59341200, 0x813e79c0, 0x05000003, - 0x84081540, 0x0501f002, 0x84081500, 0x480a6a00, - 0x1c01f000, 0x5932680a, 0x5c000000, 0x4c000000, - 0x4803c857, 0x4937c857, 0x83340580, 0x00110210, - 0x0500001f, 0x90040586, 0x05020003, 0x6018000c, - 0x0501f014, 0x90040584, 0x05020003, 0x60100008, - 0x0501f010, 0x90040587, 0x601c000e, 0x0500000d, - 0x90040583, 0x600c000e, 0x0500000a, 0x90040585, - 0x60140008, 0x05000007, 0x90040589, 0x60240008, - 0x05000004, 0x9004058b, 0x602c000e, 0x05da08cf, - 0x4803c857, 0x48026c00, 0x90040d86, 0x05020004, - 0x59341404, 0x800811c0, 0x05d808c8, 0x1c01f000, - 0x5c000000, 0x4c000000, 0x4803c857, 0x4947c857, - 0x481bc857, 0x83440480, 0x00000800, 0x0502105f, - 0x83200400, 0x0010d17b, 0x50024800, 0x59240009, - 0x83441480, 0x000007f0, 0x05001003, 0x80081400, - 0x0501f003, 0x83441400, 0x0010d400, 0x50080000, + 0x05e5fd83, 0x5c00c000, 0x0501f038, 0x0501fe39, + 0x05000009, 0x0501fe31, 0x05020028, 0x4c600000, + 0x4178c000, 0x60027830, 0x417a6000, 0x05e5fd78, + 0x5c00c000, 0x480bc856, 0x052dff73, 0x05000017, + 0x80000580, 0x0501f02c, 0x05fdf7e4, 0x480bc857, + 0x60640800, 0x40001000, 0x6008b000, 0x0501f00c, + 0x480bc857, 0x40000800, 0x6008b000, 0x0501f008, + 0x480fc857, 0x40000800, 0x600cb000, 0x0501f004, + 0x480bc857, 0x40000800, 0x6004b000, 0x480bc857, + 0x60c68000, 0x0501f017, 0x480bc857, 0x600c0800, + 0x6004b000, 0x05fdf7fa, 0x480bc857, 0x60280800, + 0x6004b000, 0x05fdf7f6, 0x480bc857, 0x60240800, + 0x40001000, 0x6008b000, 0x05fdf7f1, 0x480bc857, + 0x601c0800, 0x6004b000, 0x05fdf7ed, 0x480bc857, + 0x6004b000, 0x05fdf7ea, 0x80028580, 0x4178b000, + 0x90000541, 0x1c01f000, 0x4937c857, 0x5932680a, + 0x59341200, 0x813e79c0, 0x05000003, 0x84081540, + 0x0501f002, 0x84081500, 0x480a6a00, 0x1c01f000, + 0x5932680a, 0x5c000000, 0x4c000000, 0x4803c857, + 0x4937c857, 0x83340580, 0x001141b4, 0x0500001f, + 0x90040586, 0x05020003, 0x6018000c, 0x0501f014, + 0x90040584, 0x05020003, 0x60100008, 0x0501f010, + 0x90040587, 0x601c000e, 0x0500000d, 0x90040583, + 0x600c000e, 0x0500000a, 0x90040585, 0x60140008, + 0x05000007, 0x90040589, 0x60240008, 0x05000004, + 0x9004058b, 0x602c000e, 0x05d60ef7, 0x4803c857, + 0x48026c00, 0x90040d86, 0x05020004, 0x59341404, + 0x800811c0, 0x05d40ef0, 0x1c01f000, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4947c857, 0x481bc857, + 0x42001800, 0x80000000, 0x0501f007, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4947c857, 0x481bc857, + 0x41781800, 0x59a800ad, 0x81440480, 0x0502107d, + 0x83200400, 0x0010d8f9, 0x50024800, 0x59240009, + 0x83441480, 0x000007f0, 0x0500100f, 0x83440c80, + 0x00000800, 0x0500100a, 0x83441400, 0x0010db80, + 0x4c080000, 0x4c0c0000, 0x0001fb08, 0x5c001800, + 0x5c001000, 0x0502000d, 0x0501f008, 0x80081400, + 0x0501f003, 0x83441400, 0x0010db80, 0x50080000, 0x80026d40, 0x05000005, 0x59340013, 0x80000130, - 0x81200580, 0x0500001e, 0x4c180000, 0x4d2c0000, - 0x05d9fc41, 0x412e6800, 0x5c025800, 0x5c003000, - 0x05000046, 0x59242005, 0x812000f0, 0x80102540, + 0x81200580, 0x05000030, 0x4c180000, 0x4d2c0000, + 0x800c19c0, 0x05000003, 0x05d9fa5f, 0x0501f002, + 0x05d9fa4c, 0x412e6800, 0x5c025800, 0x5c003000, + 0x05000054, 0x59242005, 0x812000f0, 0x80102540, 0x48126813, 0x5924200b, 0x82100500, 0x00001fff, 0x800000c2, 0x82102500, 0xffffe000, 0x80100540, 0x48026814, 0x59242207, 0x80102000, 0x48124a07, - 0x45341000, 0x497a680d, 0x497a6810, 0x497a680f, - 0x4c180000, 0x05fdfd3f, 0x5c003000, 0x59340a12, - 0x4c040000, 0x0505fb61, 0x5c000800, 0x05000009, - 0x82180500, 0x00ffff00, 0x05000008, 0x59a8103d, - 0x82081500, 0x00ffff00, 0x80080580, 0x05000003, - 0x80000580, 0x0501f004, 0x82180500, 0x000000ff, - 0x800000d0, 0x80040d80, 0x05000003, 0x4803c857, - 0x48026a12, 0x59340813, 0x59242005, 0x801021c0, - 0x05000008, 0x812000f0, 0x80102540, 0x40040000, - 0x80100580, 0x05000003, 0x4813c857, 0x48126813, - 0x83440580, 0x000007fe, 0x05020004, 0x4a026802, - 0x00fffffe, 0x0501f006, 0x59340002, 0x80180580, - 0x05000003, 0x481bc857, 0x481a6802, 0x0501f806, - 0x80000580, 0x1c01f000, 0x4803c856, 0x90000541, - 0x05fdf7fd, 0x59341200, 0x84081508, 0x5934000a, - 0x8c00050c, 0x0502000b, 0x599c0018, 0x8c000510, - 0x05000009, 0x59a80006, 0x8c00050a, 0x05000005, - 0x59340c03, 0x82040480, 0x000007f0, 0x05001002, - 0x84081548, 0x480a6a00, 0x1c01f000, 0x4947c857, - 0x83440480, 0x00000800, 0x05021018, 0x83200400, - 0x0010d17b, 0x50024800, 0x59240009, 0x83441480, - 0x000007f0, 0x05001003, 0x80081400, 0x0501f003, - 0x83441400, 0x0010d400, 0x50080000, 0x80026d40, - 0x05000009, 0x0501fc84, 0x05020008, 0x8d0c0502, - 0x05000004, 0x59340200, 0x8c00050e, 0x05000003, - 0x90000541, 0x1c01f000, 0x80000580, 0x05fdf7fe, - 0x5c000000, 0x4c000000, 0x4803c857, 0x4947c857, - 0x4d2c0000, 0x4d300000, 0x83440580, 0x0000ffff, - 0x0500001c, 0x83440480, 0x00000800, 0x0502101d, - 0x83441400, 0x0010d400, 0x50080000, 0x80026d40, - 0x05000014, 0x45781000, 0x5934000d, 0x80025d40, - 0x05da0bdb, 0x59366011, 0x813261c0, 0x0500000a, - 0x4c640000, 0x5930c800, 0x59325809, 0x0529ff02, - 0x05da0bd3, 0x0005ffdc, 0x90666540, 0x05fe07fa, - 0x5c00c800, 0x0501fee1, 0x41365800, 0x05d9fbc4, - 0x80000580, 0x5c026000, 0x5c025800, 0x1c01f000, - 0x90000541, 0x05fdf7fc, 0x4c580000, 0x59cc0001, - 0x4937c857, 0x82000500, 0x00ffffff, 0x48026802, - 0x497a6c01, 0x497a6a01, 0x59340200, 0x82000500, - 0xffffdffd, 0x48026a00, 0x4004b000, 0x0505facb, - 0x05020012, 0x59340403, 0x82000580, 0x000007fe, - 0x05000005, 0x59a80249, 0x8c00050a, 0x0502000b, - 0x0501f008, 0x59cc0408, 0x8c000518, 0x05000007, - 0x59cc0009, 0x4803505a, 0x59cc000a, 0x4803505b, - 0x8058b1c0, 0x05020001, 0x59cc0a09, 0x90040d10, - 0x59cc0408, 0x90000520, 0x05000005, 0x84040d40, - 0x59a81249, 0x8408155a, 0x480b5249, 0x5934000a, - 0x82000500, 0xffffffee, 0x80040540, 0x4802680a, - 0x91cca40b, 0x9134ac06, 0x6008b000, 0x053dfaa0, - 0x91cca40d, 0x9134ac08, 0x6008b000, 0x053dfa9c, - 0x59a820d0, 0x82100d00, 0x0000f000, 0x82040d80, - 0x00003000, 0x05020017, 0x59cc0013, 0x8c00053e, - 0x05000014, 0x59cc0414, 0x599c0818, 0x8c040512, - 0x0500000e, 0x8c00051e, 0x05000005, 0x59340200, - 0x84000546, 0x84000544, 0x48026a00, 0x59cc0213, - 0x8c000516, 0x05000005, 0x59340200, 0x8400054c, - 0x84000544, 0x48026a00, 0x59cc0a14, 0x0501f005, - 0x59340200, 0x84000508, 0x48026a00, 0x59cc0a18, - 0x59a80006, 0x8c00050c, 0x05020013, 0x82040480, - 0x00000800, 0x0502100a, 0x82040480, 0x00000400, - 0x05001003, 0x60000808, 0x0501f005, 0x82040480, - 0x00000200, 0x05001002, 0x60000804, 0x42001000, - 0x0010e060, 0x58080201, 0x80041480, 0x05001002, - 0x40000800, 0x48066a04, 0x59340403, 0x82000580, - 0x000007fe, 0x05020003, 0x59cc0a08, 0x48066a04, - 0x0501fe86, 0x5c00b000, 0x1c01f000, 0x4937c857, - 0x59cc0207, 0x4803c857, 0x48026a05, 0x59cc020a, - 0x4803c857, 0x48026c05, 0x59cc2006, 0x59341200, - 0x599c0818, 0x5934180a, 0x4807c857, 0x480bc857, - 0x480fc857, 0x82102500, 0xff000000, 0x82102580, - 0x02000000, 0x05000007, 0x8c00050e, 0x05000009, - 0x8c0c0514, 0x05000003, 0x8c0c050e, 0x05000005, - 0x8c040518, 0x05000003, 0x8408154a, 0x0501f002, - 0x8408150a, 0x8c000510, 0x05000009, 0x8c0c0514, - 0x05000003, 0x8c0c0510, 0x05000005, 0x8c040518, - 0x05000003, 0x8408154e, 0x0501f002, 0x8408150e, - 0x8c000512, 0x05000009, 0x8c0c0514, 0x05000003, - 0x8c0c0512, 0x05000005, 0x8c040518, 0x05000003, - 0x8408155c, 0x0501f002, 0x8408151c, 0x480a6a00, - 0x8c000500, 0x05000005, 0x053dfab1, 0x05000003, - 0x840c1d4a, 0x0501f002, 0x840c1d0a, 0x480e680a, - 0x59a80249, 0x8c000508, 0x05000007, 0x84000556, - 0x4803c857, 0x48035249, 0x42001000, 0x0010582b, - 0x0511f825, 0x1c01f000, 0x592c0015, 0x4803c857, - 0x48026805, 0x80000120, 0x42002000, 0x02000000, - 0x05fdf7bb, 0x4803c856, 0x4c5c0000, 0x4d2c0000, - 0x4c580000, 0x5934000d, 0x80025d40, 0x05000023, - 0x592c0006, 0x90000488, 0x0500100a, 0x412cb800, - 0x592c0001, 0x80025d40, 0x05fe07fa, 0x05d9fadb, - 0x0500002e, 0x492fc857, 0x492cb801, 0x0501f01b, - 0x912c0c07, 0x6020b000, 0x50040000, 0x82000580, - 0xffffffff, 0x05020006, 0x80041000, 0x50080000, - 0x82000580, 0xffffffff, 0x05000005, 0x90040c02, - 0x8058b040, 0x05fe07f5, 0x05d5ff20, 0x45480800, - 0x454c1000, 0x592c1806, 0x800c1800, 0x480e5806, - 0x480fc857, 0x0501f010, 0x05d9fac0, 0x05000013, - 0x492fc857, 0x492e680d, 0x497a5805, 0x64065806, - 0x494a5807, 0x494e5808, 0x912c0c09, 0x6038b000, - 0x46000800, 0xffffffff, 0x80040800, 0x8058b040, - 0x05fe07fc, 0x90000541, 0x5c00b000, 0x5c025800, - 0x5c00b800, 0x1c01f000, 0x80000580, 0x05fdf7fb, - 0x4803c856, 0x4d3c0000, 0x4d2c0000, 0x5934000d, - 0x80025d40, 0x0500001c, 0x592c0005, 0x80000540, - 0x0502001c, 0x412e7800, 0x0501f8a7, 0x05020019, - 0x46000800, 0xffffffff, 0x46001000, 0xffffffff, - 0x4813c857, 0x480fc857, 0x580c0006, 0x90000c82, - 0x05021012, 0x480fc857, 0x400c0000, 0x812c0580, - 0x05020004, 0x580c0001, 0x4802680d, 0x0501f003, - 0x580c0001, 0x48002001, 0x400e5800, 0x05d9fa9b, - 0x90000541, 0x5c025800, 0x5c027800, 0x1c01f000, - 0x80000580, 0x05fdf7fc, 0x80000040, 0x48001806, - 0x4803c857, 0x05fdf7f7, 0x64225a0a, 0x0001f382, - 0x64a65a0a, 0x0001f382, 0x64aa5a0a, 0x0001f382, - 0x64a25a0a, 0x0001f382, 0x643a5a0a, 0x0001f382, - 0x4943c857, 0x4d440000, 0x4d340000, 0x4d2c0000, - 0x4c580000, 0x61c0b00f, 0x417a8800, 0x0001fb00, - 0x05020007, 0x8d3c0506, 0x05000004, 0x59340200, - 0x8c00050e, 0x05020002, 0x0501f811, 0x81468800, - 0x8058b040, 0x05fe07f6, 0x83440480, 0x00000800, - 0x05021006, 0x8d3c0502, 0x05000004, 0x61c2880f, - 0x6040b000, 0x05fdf7ee, 0x5c00b000, 0x5c025800, - 0x5c026800, 0x5c028800, 0x1c01f000, 0x4d2c0000, - 0x4c600000, 0x4c5c0000, 0x4178b800, 0x5936580f, - 0x812e59c0, 0x0500002c, 0x592c0208, 0x82000500, - 0x000000ff, 0x90000592, 0x05000024, 0xb00005a0, - 0x05000022, 0x90000588, 0x05000020, 0x8d3c0500, - 0x05000003, 0x0501f846, 0x0502001c, 0x592cc000, - 0x497a5800, 0x805cb9c0, 0x05020009, 0x59340010, - 0x812c0580, 0x05020004, 0x497a680f, 0x497a6810, - 0x0501f008, 0x4862680f, 0x0501f006, 0x4860b800, - 0x59340010, 0x812c0580, 0x05020002, 0x485e6810, - 0x0005f9f3, 0x0509fcb7, 0x4a025a08, 0x00000103, - 0x49425a0a, 0x497a580d, 0x0529fece, 0x0001fb82, - 0x40625800, 0x05fdf7d7, 0x412cb800, 0x592e5800, - 0x05fdf7d4, 0x5c00b800, 0x5c00c000, 0x5c025800, - 0x1c01f000, 0x4803c856, 0x41781800, 0x5934000f, - 0x80025d40, 0x05000018, 0x592c0009, 0x80200580, - 0x592c0000, 0x05000003, 0x412c1800, 0x05fdf7f9, - 0x592c0a08, 0x82040d00, 0x000000ff, 0x90040d92, - 0x05fc07fa, 0xb0040da0, 0x05fc07f8, 0x90040d88, - 0x05fc07f6, 0x497a5800, 0x800c19c0, 0x05000007, - 0x48001800, 0x80000540, 0x05020003, 0x480e6810, - 0x90000541, 0x1c01f000, 0x4802680f, 0x80000540, - 0x05fe07fd, 0x497a6810, 0x05fdf7fa, 0x592c000c, - 0x81480580, 0x05020003, 0x592c000d, 0x814c0580, - 0x1c01f000, 0x4803c856, 0x4c580000, 0x413c1800, - 0x400c2000, 0x593c0005, 0x80000540, 0x05020014, - 0x6020b000, 0x900c0c07, 0x50040000, 0x81480580, - 0x05020005, 0x80041000, 0x50080000, 0x814c0580, - 0x0500000b, 0x90040c02, 0x8058b040, 0x05fe07f7, - 0x400c2000, 0x580c0001, 0x80001d40, 0x05fe07f1, - 0x90000541, 0x5c00b000, 0x1c01f000, 0x80000580, - 0x05fdf7fd, 0x4937c857, 0x4c580000, 0x4d2c0000, - 0x5934000d, 0x80025d40, 0x05020011, 0x05d9f9d7, - 0x0500000c, 0x492e680d, 0x64065805, 0x497a5806, - 0x912c0c07, 0x6040b000, 0x46000800, 0xffffffff, + 0x41340000, 0x83440d00, 0xfffffff0, 0x82040d80, + 0x000007f0, 0x05000009, 0x83440c80, 0x00000800, + 0x05001006, 0x4a026815, 0x00020000, 0x497a6816, + 0x82000540, 0x20000000, 0x44001000, 0x497a680d, + 0x497a6810, 0x497a680f, 0x4c180000, 0x05fdfcfc, + 0x5c003000, 0x59340a12, 0x4c040000, 0x0505fc11, + 0x5c000800, 0x05000009, 0x82180500, 0x00ffff00, + 0x05000008, 0x59a81040, 0x82081500, 0x00ffff00, + 0x80080580, 0x05000003, 0x80000580, 0x0501f004, + 0x82180500, 0x000000ff, 0x800000d0, 0x80040d80, + 0x05000003, 0x4803c857, 0x48026a12, 0x59340813, + 0x59242005, 0x801021c0, 0x05000008, 0x812000f0, + 0x80102540, 0x40040000, 0x80100580, 0x05000003, + 0x4813c857, 0x48126813, 0x83440580, 0x000007fe, + 0x05020004, 0x4a026802, 0x00fffffe, 0x0501f006, + 0x59340002, 0x80180580, 0x05000003, 0x481bc857, + 0x481a6802, 0x0501f806, 0x80000580, 0x1c01f000, + 0x4803c856, 0x90000541, 0x05fdf7fd, 0x59341200, + 0x84081508, 0x5934000a, 0x8c00050c, 0x0502000e, + 0x599c0018, 0x8c000510, 0x0500000c, 0x59a80006, + 0x8c00050a, 0x05000008, 0x59340c03, 0x82040480, + 0x000007f0, 0x05001005, 0x82040480, 0x00000800, + 0x05021002, 0x84081548, 0x480a6a00, 0x1c01f000, + 0x4947c857, 0x59a800ad, 0x81440480, 0x0502101e, + 0x83200400, 0x0010d8f9, 0x50024800, 0x59240009, + 0x83441480, 0x000007f0, 0x05001009, 0x83440c80, + 0x00000800, 0x05001004, 0x0001fb08, 0x05020011, + 0x0501f008, 0x80081400, 0x0501f003, 0x83441400, + 0x0010db80, 0x50080000, 0x80026d40, 0x05000009, + 0x0501fd0a, 0x05020008, 0x8d0c0502, 0x05000004, + 0x59340200, 0x8c00050e, 0x05000003, 0x90000541, + 0x1c01f000, 0x80000580, 0x05fdf7fe, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4947c857, 0x4d2c0000, + 0x4d300000, 0x83440580, 0x0000ffff, 0x0500001e, + 0x59a800ad, 0x81440480, 0x0502101f, 0x83441400, + 0x0010db80, 0x50080000, 0x82000500, 0x00ffffff, + 0x80026d40, 0x05000014, 0x45781000, 0x5934000d, + 0x80025d40, 0x05da09cd, 0x59366011, 0x813261c0, + 0x0500000a, 0x4c640000, 0x5930c800, 0x59325809, + 0x052dfa46, 0x05da09c5, 0x0009f810, 0x90666540, + 0x05fe07fa, 0x5c00c800, 0x0501ff71, 0x41365800, + 0x05d9f9b6, 0x80000580, 0x5c026000, 0x5c025800, + 0x1c01f000, 0x90000541, 0x05fdf7fc, 0x4d2c0000, + 0x4d340000, 0x4947c857, 0x05d9f98a, 0x0500001a, + 0x412e6800, 0x497a6816, 0x0531ff4c, 0x83440400, + 0x0010db80, 0x50000000, 0x82000d00, 0xe0000000, + 0x82040d80, 0x20000000, 0x05000007, 0x8c000538, + 0x0502000a, 0x59e00004, 0x8c00050e, 0x05da0c22, + 0x05fdf7f3, 0x82000500, 0x00ffffff, 0x40006800, + 0x80000580, 0x4803c857, 0x5c026800, 0x5c025800, + 0x1c01f000, 0x4803c857, 0x90000541, 0x05fdf7fb, + 0x4c580000, 0x59cc0001, 0x4937c857, 0x82000500, + 0x00ffffff, 0x48026802, 0x497a6c01, 0x497a6a01, + 0x59340200, 0x82000500, 0xffffdffd, 0x48026a00, + 0x4004b000, 0x0505fb4f, 0x05020012, 0x59340403, + 0x82000580, 0x000007fe, 0x05000005, 0x59a8024c, + 0x8c00050a, 0x0502000b, 0x0501f008, 0x59cc0408, + 0x8c000518, 0x05000007, 0x59cc0009, 0x4803505d, + 0x59cc000a, 0x4803505e, 0x8058b1c0, 0x05020001, + 0x59cc0a09, 0x90040d10, 0x59cc0408, 0x90000520, + 0x05000005, 0x84040d40, 0x59a8124c, 0x8408155a, + 0x480b524c, 0x5934000a, 0x82000500, 0xffffffee, + 0x80040540, 0x4802680a, 0x91cca40b, 0x9134ac06, + 0x6008b000, 0x053dffb5, 0x91cca40d, 0x9134ac08, + 0x6008b000, 0x053dffb1, 0x59a820d5, 0x82100d00, + 0x0000f000, 0x82040d80, 0x00003000, 0x05020017, + 0x59cc0013, 0x8c00053e, 0x05000014, 0x59cc0414, + 0x599c0818, 0x8c040512, 0x0500000e, 0x8c00051e, + 0x05000005, 0x59340200, 0x84000546, 0x84000544, + 0x48026a00, 0x59cc0213, 0x8c000516, 0x05000005, + 0x59340200, 0x8400054c, 0x84000544, 0x48026a00, + 0x59cc0a14, 0x0501f005, 0x59340200, 0x84000508, + 0x48026a00, 0x59cc0a18, 0x59a80006, 0x8c00050c, + 0x05020013, 0x82040480, 0x00000800, 0x0502100a, + 0x82040480, 0x00000400, 0x05001003, 0x60000808, + 0x0501f005, 0x82040480, 0x00000200, 0x05001002, + 0x60000804, 0x42001000, 0x00111ffa, 0x58080201, + 0x80041480, 0x05001002, 0x40000800, 0x48066a04, + 0x59340403, 0x82000580, 0x000007fe, 0x05020003, + 0x59cc0a08, 0x48066a04, 0x0501fef5, 0x5c00b000, + 0x1c01f000, 0x4937c857, 0x59cc0207, 0x4803c857, + 0x48026a05, 0x59cc020a, 0x4803c857, 0x48026c05, + 0x59cc2006, 0x59341200, 0x599c0818, 0x5934180a, + 0x4807c857, 0x480bc857, 0x480fc857, 0x82102500, + 0xff000000, 0x82102580, 0x02000000, 0x05000007, + 0x8c00050e, 0x05000009, 0x8c0c0514, 0x05000003, + 0x8c0c050e, 0x05000005, 0x8c040518, 0x05000003, + 0x8408154a, 0x0501f002, 0x8408150a, 0x8c000510, + 0x05000009, 0x8c0c0514, 0x05000003, 0x8c0c0510, + 0x05000005, 0x8c040518, 0x05000003, 0x8408154e, + 0x0501f002, 0x8408150e, 0x8c000512, 0x05000009, + 0x8c0c0514, 0x05000003, 0x8c0c0512, 0x05000005, + 0x8c040518, 0x05000003, 0x8408155c, 0x0501f002, + 0x8408151c, 0x480a6a00, 0x8c000500, 0x05000005, + 0x053dffc6, 0x05000003, 0x840c1d4a, 0x0501f002, + 0x840c1d0a, 0x480e680a, 0x59a8024c, 0x8c000508, + 0x05000007, 0x84000556, 0x4803c857, 0x4803524c, + 0x42001000, 0x00105a99, 0x0511f9d9, 0x1c01f000, + 0x592c0015, 0x4803c857, 0x48026805, 0x80000120, + 0x42002000, 0x02000000, 0x05fdf7bb, 0x4803c856, + 0x4c5c0000, 0x4d2c0000, 0x4c580000, 0x5934000d, + 0x80025d40, 0x05000023, 0x592c0006, 0x90000488, + 0x0500100a, 0x412cb800, 0x592c0001, 0x80025d40, + 0x05fe07fa, 0x05d9f8ac, 0x0500002e, 0x492fc857, + 0x492cb801, 0x0501f01b, 0x912c0c07, 0x6020b000, + 0x50040000, 0x82000580, 0xffffffff, 0x05020006, + 0x80041000, 0x50080000, 0x82000580, 0xffffffff, + 0x05000005, 0x90040c02, 0x8058b040, 0x05fe07f5, + 0x05d5fcf5, 0x45480800, 0x454c1000, 0x592c1806, + 0x800c1800, 0x480e5806, 0x480fc857, 0x0501f010, + 0x05d9f891, 0x05000013, 0x492fc857, 0x492e680d, + 0x497a5805, 0x64065806, 0x494a5807, 0x494e5808, + 0x912c0c09, 0x6038b000, 0x46000800, 0xffffffff, 0x80040800, 0x8058b040, 0x05fe07fc, 0x90000541, - 0x5c025800, 0x5c00b000, 0x1c01f000, 0x4d2c0000, - 0x592e5801, 0x05d9f9de, 0x5c025800, 0x497a5801, - 0x05fdf7ee, 0x4d2c0000, 0x5936580d, 0x812e59c0, - 0x05000005, 0x4937c857, 0x497a680d, 0x05d9f9d4, - 0x90000541, 0x5c025800, 0x1c01f000, 0x59340405, - 0x4937c857, 0x4803c857, 0x8c000508, 0x1c01f000, - 0x4803c856, 0x0505f8dd, 0x05000043, 0x59a80843, - 0x8c040504, 0x0502001b, 0x59a80a49, 0x8c040506, - 0x05000018, 0x053df91b, 0x42024800, 0x0010e512, - 0x61fa880f, 0x59240809, 0x83440480, 0x000007f0, - 0x80040400, 0x50026800, 0x813669c0, 0x0500000a, - 0x59240200, 0x90000503, 0x90000583, 0x05020006, - 0x0501fa49, 0x05020004, 0x59340200, 0x8400055a, - 0x48026a00, 0x91264c0d, 0x8058b040, 0x05fe07ee, - 0x59a80006, 0x8c00051c, 0x05020003, 0x8d0c0520, - 0x05000013, 0x61c0b00f, 0x417a8800, 0x0001fb00, - 0x0502000c, 0x0501fa38, 0x0502000a, 0x59a8003d, - 0x59340802, 0x80040580, 0x82000500, 0x00ffff00, - 0x05020004, 0x59340200, 0x8400055a, 0x48026a00, - 0x81468800, 0x8058b040, 0x05fe07f1, 0x0501f8d1, - 0x05000003, 0x59a8085b, 0x0501f007, 0x6140080f, - 0x59a80006, 0x8c00051c, 0x05020003, 0x8d0c0520, - 0x05000004, 0x42001000, 0x0010582b, 0x050dffd5, - 0x1c01f000, 0x053df8df, 0x42024800, 0x0010e512, - 0x61fa880f, 0x59240809, 0x83440480, 0x000007f0, - 0x80040400, 0x50026800, 0x813669c0, 0x05000008, - 0x59240200, 0x90000503, 0x90000583, 0x05020004, - 0x59340200, 0x8400051a, 0x48026a00, 0x91264c0d, - 0x8058b040, 0x05fe07f0, 0x05fdf7c6, 0x4d300000, - 0x4d340000, 0x4d440000, 0x4d3c0000, 0x4c580000, - 0x4d200000, 0x4d240000, 0x42001000, 0x0010582b, - 0x050dfe81, 0x59a80a49, 0x4807c857, 0x8c040508, - 0x0502002e, 0x8c04050a, 0x05020003, 0x8c040506, - 0x05000042, 0x053df8b7, 0x42024800, 0x0010e512, - 0x41781000, 0x61fa880f, 0x59240809, 0x83440480, - 0x000007f0, 0x80040400, 0x50026800, 0x813669c0, - 0x0500000b, 0x59240200, 0x90000503, 0x90000583, - 0x05020007, 0x59340200, 0x8c00051a, 0x05000004, - 0x8400051a, 0x48026a00, 0x80081000, 0x91264c0d, - 0x8058b040, 0x05fe07ed, 0x59a80a49, 0x8c04050a, - 0x05020026, 0x800811c0, 0x0500004b, 0x59a80a49, - 0x8c04050a, 0x05020021, 0x8d0c0520, 0x05000005, - 0x6140080f, 0x42001000, 0x0010582b, 0x050dff85, - 0x05e5fc61, 0x0501f040, 0x59a80249, 0x4803c857, - 0x8c000516, 0x0502003c, 0x59aa68c2, 0x813669c0, - 0x05000039, 0x59340400, 0x82000580, 0x00000404, - 0x05020035, 0x051dfb92, 0x05d40d68, 0x4933c857, - 0x64066407, 0x4936600a, 0x4926601d, 0x417a7800, - 0x05fdfc6b, 0x60140800, 0x05fdfc73, 0x600e7000, - 0x0009f800, 0x0501f028, 0x61c0b00f, 0x80028d80, - 0x0001fb00, 0x05020021, 0x59340200, 0x8c00051a, - 0x0500001e, 0x59368c03, 0x417a7800, 0x60a68000, - 0x0501f9e9, 0x59240400, 0x8c00050a, 0x05020003, - 0x41783000, 0x0535ff19, 0x59340200, 0x84000558, - 0x8400051a, 0x48026a00, 0x4937c857, 0x4a026c00, - 0x00000707, 0x05fdff2c, 0x60a68000, 0x0515fc7c, - 0x4df00000, 0x417a6000, 0x0515f9ab, 0x0515fab0, - 0x0515faf9, 0x417a7800, 0x0515f87e, 0x0535fdd2, - 0x5c03e000, 0x05140c63, 0x81468800, 0x8058b040, - 0x05fe07dc, 0x5c024800, 0x5c024000, 0x5c00b000, - 0x5c027800, 0x5c028800, 0x5c026800, 0x5c026000, - 0x1c01f000, 0x4933c857, 0x5930380a, 0x581c0200, - 0x8400051a, 0x48003a00, 0x1c01f000, 0x4933c857, - 0x5930000a, 0x50000000, 0x8c000508, 0x1c01f000, - 0x5930000a, 0x50000000, 0x4933c857, 0x4803c857, - 0x8c00050e, 0x1c01f000, 0x5930000a, 0x50000000, - 0x8c00050a, 0x1c01f000, 0x4933c856, 0x0501f96e, - 0x05000005, 0x59340400, 0x82000d00, 0x000000ff, - 0x90041585, 0x1c01f000, 0x4803c856, 0x59a80a49, - 0x8c040506, 0x0500000a, 0x5930081d, 0x58040200, - 0x8c000500, 0x05000006, 0x58040009, 0x9000040e, - 0x50000800, 0x58040200, 0x8c00051a, 0x1c01f000, - 0x4d340000, 0x4c580000, 0x59a80a49, 0x8c040506, - 0x05000014, 0x053df817, 0x42000800, 0x0010e512, - 0x58041009, 0x9008040e, 0x50026800, 0x813669c0, - 0x05000008, 0x58040200, 0x90000503, 0x90000583, - 0x05020004, 0x59340200, 0x8c00051a, 0x05020005, - 0x90040c0d, 0x8058b040, 0x05fe07f2, 0x80000580, - 0x5c00b000, 0x5c026800, 0x1c01f000, 0x4937c857, - 0x493fc857, 0x59341200, 0x813e79c0, 0x05000003, - 0x8408155e, 0x0501f002, 0x8408151e, 0x480a6a00, - 0x1c01f000, 0x4937c857, 0x05e5fb06, 0x05000005, - 0x59a8085a, 0x42001000, 0x00105905, 0x050dfee5, - 0x1c01f000, 0x4937c857, 0x42001000, 0x00105905, - 0x050dfdad, 0x59a81249, 0x84081512, 0x480b5249, - 0x1c01f000, 0x4c380000, 0x4c340000, 0x4c240000, - 0x4c600000, 0x4008c000, 0x83440480, 0x00000800, - 0x05021065, 0x80002d80, 0x41442000, 0x83447400, - 0x0010d400, 0x61c0b00f, 0x83444c80, 0x000007f0, - 0x05021005, 0x82600480, 0x00fffffc, 0x05001005, - 0x0501f059, 0x6040b000, 0x59240009, 0x80247400, - 0x50380000, 0x80000540, 0x05020030, 0x41440000, - 0x80100580, 0x05020060, 0x40102800, 0x82104c80, - 0x000007f0, 0x05001027, 0x59a80249, 0x8c00050a, + 0x5c00b000, 0x5c025800, 0x5c00b800, 0x1c01f000, + 0x80000580, 0x05fdf7fb, 0x4803c856, 0x4d3c0000, + 0x4d2c0000, 0x5934000d, 0x80025d40, 0x0500001c, + 0x592c0005, 0x80000540, 0x0502001c, 0x412e7800, + 0x0501f8ab, 0x05020019, 0x46000800, 0xffffffff, + 0x46001000, 0xffffffff, 0x4813c857, 0x480fc857, + 0x580c0006, 0x90000c82, 0x05021012, 0x480fc857, + 0x400c0000, 0x812c0580, 0x05020004, 0x580c0001, + 0x4802680d, 0x0501f003, 0x580c0001, 0x48002001, + 0x400e5800, 0x05d9f86c, 0x90000541, 0x5c025800, + 0x5c027800, 0x1c01f000, 0x80000580, 0x05fdf7fc, + 0x80000040, 0x48001806, 0x4803c857, 0x05fdf7f7, + 0x64225a0a, 0x0001f3a8, 0x64a65a0a, 0x0001f3a8, + 0x64aa5a0a, 0x0001f3a8, 0x64a25a0a, 0x0001f3a8, + 0x643a5a0a, 0x0001f3a8, 0x4943c857, 0x4d440000, + 0x4d340000, 0x4d2c0000, 0x4c580000, 0x59a8b0ac, + 0x8d3c0502, 0x05000002, 0x59a8b0ad, 0x417a8800, + 0x0001fb08, 0x05020007, 0x8d3c0506, 0x05000004, + 0x59340200, 0x8c00050e, 0x05020002, 0x0501f812, + 0x81468800, 0x83440580, 0x000007f0, 0x05020004, + 0x8d3c0502, 0x05020002, 0x60028810, 0x8058b040, + 0x05fe07f0, 0x59a800ad, 0x81440480, 0x05021001, + 0x5c00b000, 0x5c025800, 0x5c026800, 0x5c028800, + 0x1c01f000, 0x4d2c0000, 0x4c600000, 0x4c5c0000, + 0x4178b800, 0x5936580f, 0x812e59c0, 0x0500002c, + 0x592c0208, 0x82000500, 0x000000ff, 0x90000592, + 0x05000024, 0xb00005a0, 0x05000022, 0x90000588, + 0x05000020, 0x8d3c0500, 0x05000003, 0x0501f846, + 0x0502001c, 0x592cc000, 0x497a5800, 0x805cb9c0, + 0x05020009, 0x59340010, 0x812c0580, 0x05020004, + 0x497a680f, 0x497a6810, 0x0501f008, 0x4862680f, + 0x0501f006, 0x4860b800, 0x59340010, 0x812c0580, + 0x05020002, 0x485e6810, 0x0005fa1a, 0x0509fdd5, + 0x4a025a08, 0x00000103, 0x49425a0a, 0x497a580d, + 0x052df9fd, 0x0001fba8, 0x40625800, 0x05fdf7d7, + 0x412cb800, 0x592e5800, 0x05fdf7d4, 0x5c00b800, + 0x5c00c000, 0x5c025800, 0x1c01f000, 0x4803c856, + 0x41781800, 0x5934000f, 0x80025d40, 0x05000018, + 0x592c0009, 0x80200580, 0x592c0000, 0x05000003, + 0x412c1800, 0x05fdf7f9, 0x592c0a08, 0x82040d00, + 0x000000ff, 0x90040d92, 0x05fc07fa, 0xb0040da0, + 0x05fc07f8, 0x90040d88, 0x05fc07f6, 0x497a5800, + 0x800c19c0, 0x05000007, 0x48001800, 0x80000540, + 0x05020003, 0x480e6810, 0x90000541, 0x1c01f000, + 0x4802680f, 0x80000540, 0x05fe07fd, 0x497a6810, + 0x05fdf7fa, 0x592c000c, 0x81480580, 0x05020003, + 0x592c000d, 0x814c0580, 0x1c01f000, 0x4803c856, + 0x4c580000, 0x413c1800, 0x400c2000, 0x593c0005, + 0x80000540, 0x05020014, 0x6020b000, 0x900c0c07, + 0x50040000, 0x81480580, 0x05020005, 0x80041000, + 0x50080000, 0x814c0580, 0x0500000b, 0x90040c02, + 0x8058b040, 0x05fe07f7, 0x400c2000, 0x580c0001, + 0x80001d40, 0x05fe07f1, 0x90000541, 0x5c00b000, + 0x1c01f000, 0x80000580, 0x05fdf7fd, 0x4937c857, + 0x4c580000, 0x4d2c0000, 0x5934000d, 0x80025d40, + 0x05020011, 0x05d5ffa4, 0x0500000c, 0x492e680d, + 0x64065805, 0x497a5806, 0x912c0c07, 0x6040b000, + 0x46000800, 0xffffffff, 0x80040800, 0x8058b040, + 0x05fe07fc, 0x90000541, 0x5c025800, 0x5c00b000, + 0x1c01f000, 0x4d2c0000, 0x592e5801, 0x05d5ffab, + 0x5c025800, 0x497a5801, 0x05fdf7ee, 0x4d2c0000, + 0x5936580d, 0x812e59c0, 0x05000005, 0x4937c857, + 0x497a680d, 0x05d5ffa1, 0x90000541, 0x5c025800, + 0x1c01f000, 0x59340405, 0x4937c857, 0x4803c857, + 0x8c000508, 0x1c01f000, 0x4803c856, 0x0505f95d, + 0x05000047, 0x59a80846, 0x8c040504, 0x0502001b, + 0x59a80a4c, 0x8c040506, 0x05000018, 0x053dfe2c, + 0x42024800, 0x001124b6, 0x61fa880f, 0x59240809, + 0x83440480, 0x000007f0, 0x80040400, 0x50026800, + 0x813669c0, 0x0500000a, 0x59240200, 0x90000503, + 0x90000583, 0x05020006, 0x0501faa8, 0x05020004, + 0x59340200, 0x8400055a, 0x48026a00, 0x91264c0d, + 0x8058b040, 0x05fe07ee, 0x59a80006, 0x8c00051c, + 0x05020003, 0x8d0c0520, 0x05000017, 0x59a8b0ac, + 0x417a8800, 0x0001fb08, 0x0502000c, 0x0501fa97, + 0x0502000a, 0x59a80040, 0x59340802, 0x80040580, + 0x82000500, 0x00ffff00, 0x05020004, 0x59340200, + 0x8400055a, 0x48026a00, 0x81468800, 0x83440580, + 0x000007f0, 0x05020002, 0x60028810, 0x8058b040, + 0x05fe07ed, 0x0501f8d5, 0x05000003, 0x59a8085e, + 0x0501f007, 0x6140080f, 0x59a80006, 0x8c00051c, + 0x05020003, 0x8d0c0520, 0x05000004, 0x42001000, + 0x00105a99, 0x0511f9cb, 0x1c01f000, 0x053dfdec, + 0x42024800, 0x001124b6, 0x61fa880f, 0x59240809, + 0x83440480, 0x000007f0, 0x80040400, 0x50026800, + 0x813669c0, 0x05000008, 0x59240200, 0x90000503, + 0x90000583, 0x05020004, 0x59340200, 0x8400051a, + 0x48026a00, 0x91264c0d, 0x8058b040, 0x05fe07f0, + 0x05fdf7c2, 0x4d300000, 0x4d340000, 0x4d440000, + 0x4d3c0000, 0x4c580000, 0x4d200000, 0x4d240000, + 0x42001000, 0x00105a99, 0x0511f82d, 0x59a80a4c, + 0x4807c857, 0x8c040508, 0x0502002e, 0x8c04050a, + 0x05020003, 0x8c040506, 0x05000042, 0x053dfdc4, + 0x42024800, 0x001124b6, 0x41781000, 0x61fa880f, + 0x59240809, 0x83440480, 0x000007f0, 0x80040400, + 0x50026800, 0x813669c0, 0x0500000b, 0x59240200, + 0x90000503, 0x90000583, 0x05020007, 0x59340200, + 0x8c00051a, 0x05000004, 0x8400051a, 0x48026a00, + 0x80081000, 0x91264c0d, 0x8058b040, 0x05fe07ed, + 0x59a80a4c, 0x8c04050a, 0x05020026, 0x800811c0, + 0x0500004f, 0x59a80a4c, 0x8c04050a, 0x05020021, + 0x8d0c0520, 0x05000005, 0x6140080f, 0x42001000, + 0x00105a99, 0x0511f97b, 0x05e5fa8b, 0x0501f044, + 0x59a8024c, 0x4803c857, 0x8c000516, 0x05020040, + 0x59aa68c7, 0x813669c0, 0x0500003d, 0x59340400, + 0x82000580, 0x00000404, 0x05020039, 0x051dfe39, + 0x05d40b35, 0x4933c857, 0x64066407, 0x4936600a, + 0x4926601d, 0x417a7800, 0x05fdfc10, 0x60140800, + 0x05fdfc18, 0x600e7000, 0x0009f839, 0x0501f02c, + 0x59a8b0ac, 0x80028d80, 0x0001fb08, 0x05020021, + 0x59340200, 0x8c00051a, 0x0500001e, 0x59368c03, + 0x417a7800, 0x60a68000, 0x0501fa44, 0x59240400, + 0x8c00050a, 0x05020003, 0x41783000, 0x0539fbf2, + 0x59340200, 0x84000558, 0x8400051a, 0x48026a00, + 0x4937c857, 0x4a026c00, 0x00000707, 0x05fdff28, + 0x60a68000, 0x0515fecc, 0x4df00000, 0x417a6000, + 0x0515fbf6, 0x0515fd01, 0x0515fd4a, 0x417a7800, + 0x0515fac9, 0x0539fa7b, 0x5c03e000, 0x05140eb3, + 0x81468800, 0x83440580, 0x000007f0, 0x05020002, + 0x60028810, 0x8058b040, 0x05fe07d8, 0x5c024800, + 0x5c024000, 0x5c00b000, 0x5c027800, 0x5c028800, + 0x5c026800, 0x5c026000, 0x1c01f000, 0x4933c857, + 0x5930380a, 0x581c0200, 0x8400051a, 0x48003a00, + 0x1c01f000, 0x4933c857, 0x5930000a, 0x50000000, + 0x8c000508, 0x1c01f000, 0x5930000a, 0x50000000, + 0x4933c857, 0x4803c857, 0x8c00050e, 0x1c01f000, + 0x5930000a, 0x50000000, 0x8c00050a, 0x1c01f000, + 0x4933c856, 0x0501f9c5, 0x05000005, 0x59340400, + 0x82000d00, 0x000000ff, 0x90041585, 0x1c01f000, + 0x4803c856, 0x59a80a4c, 0x8c040506, 0x0500000a, + 0x5930081d, 0x58040200, 0x8c000500, 0x05000006, + 0x58040009, 0x9000040e, 0x50000800, 0x58040200, + 0x8c00051a, 0x1c01f000, 0x4d340000, 0x4c580000, + 0x59a80a4c, 0x8c040506, 0x05000014, 0x053dfd20, + 0x42000800, 0x001124b6, 0x58041009, 0x9008040e, + 0x50026800, 0x813669c0, 0x05000008, 0x58040200, + 0x90000503, 0x90000583, 0x05020004, 0x59340200, + 0x8c00051a, 0x05020005, 0x90040c0d, 0x8058b040, + 0x05fe07f2, 0x80000580, 0x5c00b000, 0x5c026800, + 0x1c01f000, 0x4937c857, 0x493fc857, 0x59341200, + 0x813e79c0, 0x05000003, 0x8408155e, 0x0501f002, + 0x8408151e, 0x480a6a00, 0x1c01f000, 0x4937c857, + 0x05e5f92c, 0x05000005, 0x59a8085d, 0x42001000, + 0x00105b77, 0x0511f8d7, 0x1c01f000, 0x4937c857, + 0x42001000, 0x00105b77, 0x050dff55, 0x59a8124c, + 0x84081512, 0x480b524c, 0x1c01f000, 0x4c380000, + 0x4c340000, 0x4c240000, 0x4c600000, 0x4008c000, + 0x59a800ad, 0x81440480, 0x050210a9, 0x80002d80, + 0x41442000, 0x83447400, 0x0010db80, 0x59a8b0ac, + 0x83444c80, 0x000007f0, 0x05001004, 0x83441c80, + 0x00000800, 0x05001005, 0x82600480, 0x00fffffc, + 0x05001005, 0x0501f09a, 0x6040b000, 0x59240009, + 0x80247400, 0x50380000, 0x80000540, 0x05020033, + 0x41440000, 0x80100580, 0x050200a4, 0x40102800, + 0x82104c80, 0x000007f0, 0x0500102a, 0x82104c80, + 0x00000800, 0x05021027, 0x59a8024c, 0x8c00050a, 0x0500000d, 0x82104d80, 0x000007fe, 0x05020005, - 0x82604d80, 0x00fffffe, 0x05020043, 0x0501f01d, + 0x82604d80, 0x00fffffe, 0x05020081, 0x0501f01d, 0x59240200, 0x82000500, 0x00000220, 0x05020005, - 0x0501f04a, 0x59240200, 0x8c00050a, 0x05000047, + 0x0501f08b, 0x59240200, 0x8c00050a, 0x05000088, 0x82104d80, 0x000007fc, 0x05020005, 0x82604d80, - 0x00fffffc, 0x05020034, 0x0501f00e, 0x82104d80, + 0x00fffffc, 0x05020072, 0x0501f00e, 0x82104d80, 0x000007fd, 0x05020005, 0x82604d80, 0x00fffffd, - 0x0502002d, 0x0501f007, 0x82104d80, 0x000007ff, - 0x05020029, 0x82604d80, 0x00ffffff, 0x05020026, - 0x84142d5e, 0x0501f034, 0x40006800, 0x58343002, - 0x82183500, 0x00ffffff, 0x40180000, 0x80600580, - 0x05020022, 0x58340813, 0x80040130, 0x81200580, - 0x0502001e, 0x82040500, 0x00ffffff, 0x59240805, + 0x0502006b, 0x0501f007, 0x82104d80, 0x000007ff, + 0x05020067, 0x82604d80, 0x00ffffff, 0x05020064, + 0x84142d5e, 0x0501f075, 0x82000d00, 0xe0000000, + 0x05000025, 0x8d0c0538, 0x05020003, 0x60800000, + 0x0501f0b2, 0x82000500, 0x00ffffff, 0x8c04053c, + 0x05000013, 0x40003000, 0x80600580, 0x05000021, + 0x40100000, 0x81440580, 0x05020064, 0x4c200000, + 0x4c180000, 0x4c100000, 0x4d440000, 0x40128800, + 0x05fdfc37, 0x5c028800, 0x5c002000, 0x5c003000, + 0x5c004000, 0x05020077, 0x0501f04e, 0x82041d80, + 0x20000000, 0x05000008, 0x82041d80, 0xa0000000, + 0x05000005, 0x82041d80, 0x80000000, 0x05d60a22, + 0x84040d7a, 0x40006800, 0x58343002, 0x82183500, + 0x00ffffff, 0x40180000, 0x80600580, 0x05020039, + 0x800409c0, 0x05000014, 0x82041d80, 0x20000000, + 0x05000011, 0x82041d80, 0xa0000000, 0x05020005, + 0x50380000, 0x82000540, 0xa0000000, 0x44007000, + 0x4c200000, 0x4c100000, 0x4d440000, 0x40128800, + 0x05fdfc0f, 0x5c028800, 0x5c002000, 0x5c004000, + 0x05020050, 0x58340813, 0x80040130, 0x81200580, + 0x05020020, 0x82040500, 0x00ffffff, 0x59240805, 0x80040580, 0x05000004, 0x812000f0, 0x80040d40, 0x48046813, 0x40100000, 0x81440580, 0x05020009, - 0x40366800, 0x8c200508, 0x05000052, 0x05fdff53, - 0x05020050, 0x4947c857, 0x60740000, 0x0501f04e, - 0x4947c857, 0x480bc857, 0x4823c857, 0x60680000, - 0x0501f049, 0x4947c857, 0x4863c857, 0x4813c857, - 0x60640000, 0x0501f044, 0x40100000, 0x81440580, - 0x05020009, 0x58343002, 0x4947c857, 0x481bc857, - 0x606c0000, 0x0501f03c, 0x4947c857, 0x607c0000, - 0x0501f039, 0x80102000, 0x80387000, 0x83444c80, - 0x000007f0, 0x05001007, 0x82104d80, 0x00000800, - 0x0502000a, 0x59247009, 0x61c0200f, 0x0501f007, - 0x82104d80, 0x000007f0, 0x05020004, 0x41782000, - 0x42007000, 0x0010d400, 0x8058b040, 0x05fe0789, - 0x801429c0, 0x05020005, 0x05d5fc3c, 0x4947c857, - 0x60280000, 0x0501f020, 0x4d2c0000, 0x4c180000, - 0x40603000, 0x05fdfb6f, 0x4947c857, 0x4937c857, - 0x5c003000, 0x5c025800, 0x05fe07f5, 0x497a6a12, - 0x59a80249, 0x8c00050a, 0x0502000d, 0x82600500, - 0x00ffff00, 0x05000006, 0x59a8483d, 0x82244d00, - 0x00ffff00, 0x80240580, 0x05020005, 0x82600500, - 0x000000ff, 0x800000d0, 0x48026a12, 0x48626802, - 0x59244805, 0x812000f0, 0x80244d40, 0x48266813, - 0x80000580, 0x80000540, 0x5c00c000, 0x5c004800, - 0x5c006800, 0x5c007000, 0x1c01f000, 0x5934000f, - 0x8d0c0512, 0x05020005, 0x5934140b, 0x80081040, - 0x05001002, 0x480a6c0b, 0x80000540, 0x00020b0d, - 0x1c01f000, 0x59340a00, 0x84040d08, 0x80000540, - 0x05000005, 0x5934000a, 0x8400054c, 0x4802680a, - 0x0501f004, 0x599c0018, 0x8c000510, 0x05000002, - 0x84040d48, 0x48066a00, 0x1c01f000, 0x4803c857, - 0x4947c857, 0x4c300000, 0x90006530, 0x05000005, - 0x4c000000, 0x0529ff89, 0x5c000000, 0x0502000e, - 0x8c00050e, 0x05000009, 0x0501f88f, 0x0502000a, - 0x4937c857, 0x592c020b, 0x8c00051c, 0x05020003, - 0x41240800, 0x0501f89f, 0x80000580, 0x5c006000, - 0x1c01f000, 0x90000541, 0x05fdf7fd, 0x4803c857, - 0x4c580000, 0x4d440000, 0x40001000, 0x80000d80, - 0x61c0b00f, 0x4c040000, 0x40068800, 0x4c080000, - 0x40080000, 0x05fdffe0, 0x5c001000, 0x5c000800, - 0x80040800, 0x8058b040, 0x05fe07f7, 0x8c080514, - 0x05000005, 0x84081514, 0x6004b000, 0x61f0080f, - 0x05fdf7f1, 0x4d300000, 0x4d400000, 0x4d240000, - 0x0501fb9a, 0x61fe89ff, 0x42026000, 0x00111a70, - 0x4a02600a, 0x00110210, 0x417a4800, 0x4926601d, - 0x60a68000, 0x0515fafa, 0x4df00000, 0x0515f930, - 0x0535fc55, 0x5c03e000, 0x05140ae6, 0x5c024800, - 0x5c028000, 0x5c026000, 0x5c028800, 0x5c00b000, - 0x1c01f000, 0x4c5c0000, 0x59340400, 0x8200bd80, + 0x40366800, 0x8c200508, 0x05000063, 0x05fdff11, + 0x05020061, 0x4947c857, 0x60740000, 0x0501f05f, + 0x4947c857, 0x4863c857, 0x4823c857, 0x58341813, + 0x800c1930, 0x60680000, 0x0501f058, 0x4947c857, + 0x4863c857, 0x4813c857, 0x60640000, 0x0501f053, + 0x40100000, 0x81440580, 0x0502000c, 0x58343002, + 0x58341813, 0x800c1930, 0x4947c857, 0x481bc857, + 0x480fc857, 0x606c0000, 0x0501f048, 0x4947c857, + 0x607c0000, 0x0501f045, 0x80102000, 0x80387000, + 0x82104d80, 0x000007f0, 0x0500000a, 0x59a800ad, + 0x80100580, 0x0500000f, 0x82104d80, 0x00000800, + 0x0502000f, 0x59247009, 0x61c0200f, 0x0501f00c, + 0x59a800ad, 0x82000580, 0x00000800, 0x05000005, + 0x60002010, 0x42007000, 0x0010e380, 0x0501f004, + 0x41782000, 0x42007000, 0x0010db80, 0x8058b040, + 0x05fe073d, 0x801429c0, 0x05020005, 0x05d5f9b6, + 0x4947c857, 0x60280000, 0x0501f024, 0x4d2c0000, + 0x4c180000, 0x40603000, 0x8c20053e, 0x05000003, + 0x05fdfabf, 0x0501f002, 0x05fdfac5, 0x4947c857, + 0x4937c857, 0x5c003000, 0x5c025800, 0x05fe07f1, + 0x497a6a12, 0x59a8024c, 0x8c00050a, 0x0502000d, + 0x82600500, 0x00ffff00, 0x05000006, 0x59a84840, + 0x82244d00, 0x00ffff00, 0x80240580, 0x05020005, + 0x82600500, 0x000000ff, 0x800000d0, 0x48026a12, + 0x48626802, 0x59244805, 0x812000f0, 0x80244d40, + 0x48266813, 0x80000580, 0x80000540, 0x5c00c000, + 0x5c004800, 0x5c006800, 0x5c007000, 0x1c01f000, + 0x5934000f, 0x8d0c0512, 0x05020005, 0x5934140b, + 0x80081040, 0x05001002, 0x480a6c0b, 0x80000540, + 0x00020b33, 0x1c01f000, 0x59340a00, 0x84040d08, + 0x80000540, 0x05000005, 0x5934000a, 0x8400054c, + 0x4802680a, 0x0501f004, 0x599c0018, 0x8c000510, + 0x05000002, 0x84040d48, 0x48066a00, 0x1c01f000, + 0x4803c857, 0x4947c857, 0x4c300000, 0x90006530, + 0x05000005, 0x4c000000, 0x052dfa60, 0x5c000000, + 0x0502000e, 0x8c00050e, 0x05000009, 0x0501f893, + 0x0502000a, 0x4937c857, 0x592c020b, 0x8c00051c, + 0x05020003, 0x41240800, 0x0501f8a9, 0x80000580, + 0x5c006000, 0x1c01f000, 0x90000541, 0x05fdf7fd, + 0x4803c857, 0x4c580000, 0x4d440000, 0x40001000, + 0x80000d80, 0x59a8b0ac, 0x4c040000, 0x40068800, + 0x4c080000, 0x40080000, 0x05fdffe0, 0x5c001000, + 0x5c000800, 0x80040800, 0x82040580, 0x000007f0, + 0x05020002, 0x60000810, 0x8058b040, 0x05fe07f3, + 0x8c080514, 0x05000005, 0x84081514, 0x6004b000, + 0x61f0080f, 0x05fdf7ed, 0x4d300000, 0x4d400000, + 0x4d240000, 0x0501fba6, 0x61fe89ff, 0x42026000, + 0x00115a14, 0x4a02600a, 0x001141b4, 0x417a4800, + 0x4926601d, 0x60a68000, 0x0515fcef, 0x4df00000, + 0x0515fb26, 0x0539f8a3, 0x5c03e000, 0x05140cdb, + 0x5c024800, 0x5c028000, 0x5c026000, 0x5c028800, + 0x5c00b000, 0x1c01f000, 0x4c5c0000, 0x59340400, + 0x8200bd80, 0x00000606, 0x5c00b800, 0x1c01f000, + 0x4c5c0000, 0x59340400, 0x8200bd80, 0x00000404, + 0x5c00b800, 0x1c01f000, 0x4c5c0000, 0x59340400, + 0x8200bd80, 0x00000404, 0x05000003, 0x8200bd80, 0x00000606, 0x5c00b800, 0x1c01f000, 0x4c5c0000, - 0x59340400, 0x8200bd80, 0x00000404, 0x5c00b800, - 0x1c01f000, 0x4c5c0000, 0x59340400, 0x8200bd80, - 0x00000404, 0x05000003, 0x8200bd80, 0x00000606, - 0x5c00b800, 0x1c01f000, 0x4c5c0000, 0x4c600000, - 0x59340400, 0x8200bd00, 0x0000ff00, 0x825cc580, - 0x00000400, 0x05000003, 0x825cc580, 0x00000600, - 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4c5c0000, - 0x59340400, 0x82000500, 0x000000ff, 0x9000bd83, - 0x05000002, 0x9000bd85, 0x5c00b800, 0x1c01f000, - 0x5c000000, 0x4c000000, 0x4803c857, 0x4c5c0000, - 0x59340400, 0x82000500, 0x0000ff00, 0x8400b9c0, - 0x805c0580, 0x4937c857, 0x4803c857, 0x48026c00, - 0x5c00b800, 0x1c01f000, 0x4c040000, 0x4c080000, - 0x592c020b, 0x8c00050c, 0x0500000d, 0x592e8c0a, - 0x82000500, 0x00000080, 0x84000548, 0x4d3c0000, - 0x60027820, 0x05fdff76, 0x5c027800, 0x90000541, - 0x5c001000, 0x5c000800, 0x1c01f000, 0x80000580, - 0x05fdf7fc, 0x59340013, 0x80024130, 0x83224c00, - 0x0010d17b, 0x51264800, 0x812649c0, 0x05d40b63, - 0x1c01f000, 0x83440c80, 0x00000800, 0x05021013, - 0x83200400, 0x0010d17b, 0x50024800, 0x59240009, - 0x83440c80, 0x000007f0, 0x05001003, 0x80040c00, - 0x0501f003, 0x83440c00, 0x0010d400, 0x50040000, - 0x80026d40, 0x05000005, 0x59340013, 0x80000130, - 0x81200580, 0x1c01f000, 0x90000541, 0x05fdf7fe, - 0x4937c857, 0x4c580000, 0x4d440000, 0x59368c03, - 0x83440580, 0x0000ffff, 0x05000010, 0x83441480, - 0x000007f0, 0x05021003, 0x05fdfb12, 0x0501f00b, - 0x58040009, 0x80080c00, 0x50040000, 0x81340580, - 0x05d60b3a, 0x4d2c0000, 0x45780800, 0x41365800, - 0x05d5feee, 0x5c025800, 0x80000580, 0x5c028800, - 0x5c00b000, 0x1c01f000, 0x592c040f, 0x82000500, - 0x0000e000, 0x82000580, 0x00006000, 0x0500001e, - 0x916c0583, 0x05000011, 0x916c0582, 0x05020100, - 0x59a80249, 0x90000d38, 0x05020005, 0x59a80841, - 0x800409c0, 0x05000009, 0x0501f0f9, 0x90000d03, - 0x90040d83, 0x050200f6, 0x90000d28, 0x05020003, - 0x8c00050c, 0x050000f2, 0x592e440b, 0x83224500, - 0x000000ff, 0x0509f894, 0x050200cf, 0x592c100e, - 0x82081500, 0x00ffffff, 0x59240005, 0x80080580, - 0x050000d3, 0x592c0c0f, 0x82040d00, 0x0000e000, - 0x82040480, 0x00008000, 0x050210cf, 0x592e8c0a, - 0x83440480, 0x00000800, 0x05001015, 0x83440580, - 0x0000ffff, 0x050200ba, 0x800409c0, 0x050200f0, - 0x592c240d, 0x82100500, 0xffffff00, 0x050200be, - 0x480bc857, 0x4813c857, 0x592c0011, 0x82000480, - 0x00000841, 0x050210be, 0x614e7000, 0x0501fac3, - 0x42026800, 0x00110210, 0x0501f093, 0x800409c0, - 0x050200df, 0x41784000, 0x05fdfe1f, 0x050200cc, - 0x592c240f, 0x8c100514, 0x0500000d, 0x592c240d, - 0x82100500, 0xffffff00, 0x050200a7, 0x901005a0, - 0x050200a9, 0x05fdff32, 0x050200b4, 0x05fdfb97, - 0x60180800, 0x05fdf9f5, 0x0501f0bb, 0x59342204, - 0x592c0011, 0x80100480, 0x050010a1, 0x614e7000, - 0x592c240d, 0x82100500, 0xffffff00, 0x05020096, - 0x4813c857, 0x592c040b, 0x82000500, 0x0000f000, - 0x82000580, 0x00003000, 0x05020006, 0x59340200, - 0x8c000508, 0x05020003, 0x90100583, 0x05020084, - 0x592c0010, 0x800001c0, 0x05000065, 0x90100584, - 0x05000083, 0xb0100591, 0x05000081, 0x90100583, - 0x0500000f, 0x901005a0, 0x05000039, 0x901005a4, - 0x05000033, 0x901005a1, 0x05000033, 0xb0100590, - 0x0500002b, 0xb0100592, 0x05000027, 0x90100585, - 0x05020055, 0x60067000, 0x0501f018, 0x600a7000, - 0x59a800d1, 0x8c000502, 0x05000014, 0x05fdfef6, - 0x05000012, 0x59340212, 0x82000500, 0x0000ff00, - 0x60401000, 0x0502000b, 0x59a80249, 0x8c000506, - 0x0502005b, 0x60201000, 0x59340002, 0x82000500, - 0x00ff0000, 0x82000580, 0x00ff0000, 0x05000003, - 0x0501f96f, 0x05020052, 0x051df8c1, 0x05000066, - 0x64426407, 0x4926601d, 0x4936600a, 0x600c0800, - 0x91380582, 0x05000002, 0x602c0800, 0x05fdf9a2, - 0x0501f036, 0x60027000, 0x0501f002, 0x60127000, - 0x05fdfeea, 0x0502005d, 0x0501f02b, 0x60ce7000, - 0x0501f004, 0x60167000, 0x0501f002, 0x600e7000, - 0x05fdfed9, 0x05020055, 0x59a800d1, 0x8c000502, - 0x05000014, 0x05fdfec8, 0x05000012, 0x59340212, - 0x82000500, 0x0000ff00, 0x60401000, 0x0502000b, - 0x59a80249, 0x8c000506, 0x0502002d, 0x60201000, - 0x59340002, 0x82000500, 0x00ff0000, 0x82000580, - 0x00ff0000, 0x05000003, 0x0501f941, 0x05020024, - 0x051df893, 0x05000038, 0x64426407, 0x4926601d, - 0x4936600a, 0x60140800, 0x91380583, 0x05000002, - 0x60240800, 0x05fdf974, 0x0501f008, 0x90102591, - 0x05020029, 0x051df886, 0x0500002b, 0x64426407, - 0x4926601d, 0x4936600a, 0x0529ffe8, 0x492e6009, - 0x4932580c, 0x83340580, 0x00110210, 0x05000007, - 0x592c0c0f, 0x8c040518, 0x05000004, 0x59340200, - 0x84000514, 0x48026a00, 0x0009f800, 0x80000580, - 0x1c01f000, 0x90000541, 0x05fdf7fe, 0x60281000, - 0x0501f012, 0x60381000, 0x0501f010, 0x603c1000, - 0x0501f00e, 0x60401000, 0x0501f00c, 0x60581000, - 0x0501f00a, 0x605c1000, 0x0501f008, 0x60601000, - 0x0501f006, 0x60781000, 0x0501f004, 0x60901000, - 0x0501f002, 0x60801000, 0x60640800, 0x60c68000, - 0x05fdf7e9, 0x600c0800, 0x0501f002, 0x60280800, - 0x41781000, 0x05fdf7fa, 0x60240800, 0x59341400, - 0x05fdf7f7, 0x60228000, 0x0501f004, 0x601c0800, - 0x416c1000, 0x05fdf7f2, 0x41780800, 0x41781000, - 0x05fdf7d9, 0x60028000, 0x05fdf7fc, 0x90004d9d, - 0x05d40a1e, 0x90004d9a, 0x05020004, 0x40101000, - 0x40000800, 0x05fdf7e6, 0x90004d9b, 0x05020003, - 0x40181000, 0x05fdf7fb, 0x90004d9c, 0x05fc07f9, - 0x90004d99, 0x05fc07ca, 0x05fdf7e1, 0x592e600c, - 0x0529fd96, 0x05fc07cc, 0x59300c07, 0x90040591, - 0x05fe07e1, 0x592c0c0f, 0x82041500, 0x0000e000, - 0x82080580, 0x00006000, 0x05000021, 0x83440580, - 0x0000ffff, 0x05020007, 0x5932680a, 0x83340580, - 0x00110210, 0x05fe07d4, 0x61000810, 0x0501f00f, - 0x592c100e, 0x82081500, 0x00ffffff, 0x41784000, - 0x05fdfd29, 0x05fe07d6, 0x5930000a, 0x82000d80, - 0x00110210, 0x05000003, 0x81340580, 0x05fe07c6, - 0x4936600a, 0x59340a04, 0x592c0011, 0x80040480, - 0x05fc17b3, 0x59300a03, 0x90040587, 0x05fe07be, - 0x492e6009, 0x61527000, 0x05fdf78f, 0x0539f92f, - 0x05fc07c1, 0x05fdf7b8, 0x492fc857, 0x592e600c, - 0x83300580, 0xffffffff, 0x05020041, 0x592c020b, - 0x8c000500, 0x0502006c, 0x8d0c050e, 0x05020059, - 0x592e8c0a, 0x83440480, 0x00000800, 0x05021036, - 0x592c380e, 0x821c3d00, 0x00ffffff, 0x05e5fa1d, - 0x05020039, 0x49265805, 0x41784000, 0x592c100d, - 0x82081500, 0x00ffffff, 0x05fdfcfb, 0x0502004b, - 0x592e6017, 0x4933c857, 0x83300580, 0xffffffff, - 0x05000018, 0x0529fd49, 0x0500002d, 0x591c1407, - 0x800811c0, 0x05000013, 0x592c0411, 0x591c0a02, - 0x80040580, 0x0502000f, 0x591c000a, 0x800001c0, - 0x05020007, 0x591c082a, 0x59340002, 0x80040580, - 0x82000500, 0x00ffffff, 0x0501f002, 0x81340580, - 0x05020004, 0x90080587, 0x0502002c, 0x64923c03, - 0x59240005, 0x592c080d, 0x82041500, 0x00ffffff, - 0x80081580, 0x0500000c, 0x80040932, 0xb0040582, - 0x0502000b, 0x49365806, 0x0501f8d5, 0x80000580, - 0x1c01f000, 0x60281000, 0x0501f00a, 0x60401000, - 0x0501f008, 0x60501000, 0x0501f006, 0x605c1000, - 0x0501f004, 0x60601000, 0x0501f002, 0x60f01000, - 0x492fc857, 0x480bc857, 0x60640800, 0x60c68000, - 0x90000541, 0x05fdf7ef, 0x492fc857, 0x4803c857, - 0x480bc857, 0x40000800, 0x05fdf7f9, 0x492fc857, - 0x60280800, 0x41781000, 0x05fdf7f5, 0x41780800, - 0x41781000, 0x05fdf7f3, 0x60780800, 0x05fdf7fa, - 0x60040800, 0x05fdf7f8, 0x90004d9d, 0x05d4097b, - 0x90004d9a, 0x05020003, 0x40101000, 0x05fdf7eb, - 0x90004d9b, 0x05020003, 0x40181000, 0x05fdf7e7, - 0x90004d9c, 0x05fc07e5, 0x90004d99, 0x05fc07e3, - 0x05fdf7e7, 0x0539f98e, 0x60028000, 0x05fdf7e8, - 0x5c000000, 0x4c000000, 0x4803c857, 0x5930200a, - 0x801021c0, 0x05000029, 0x58101400, 0x4813c857, - 0x480bc857, 0x82081d00, 0x000000ff, 0x59300c03, - 0x90040588, 0x05000018, 0x9004058a, 0x05000010, - 0x9004058c, 0x0500000b, 0x90040582, 0x05000012, - 0x90040581, 0x0500000d, 0x90040583, 0x05000008, - 0x90040585, 0x05000003, 0x900405b3, 0x05020013, - 0x900c0589, 0x0500000a, 0x0501f010, 0x900c0585, - 0x05000007, 0x0501f00d, 0x900c058b, 0x05000004, - 0x0501f00a, 0x900c0583, 0x05020008, 0x82081d00, - 0xffffff00, 0x840c01c0, 0x800c0540, 0x4807c857, - 0x4803c857, 0x48002400, 0x1c01f000, 0x599c0017, - 0x8c00050a, 0x05000003, 0x80000580, 0x1c01f000, - 0x59a80249, 0x90000528, 0x05000007, 0x61f6880f, - 0x417a4000, 0x05fdfdd0, 0x05020003, 0x5934000a, - 0x8c000504, 0x1c01f000, 0x1c01f000, 0x4d440000, - 0x4d340000, 0x80000580, 0x40001800, 0x40028800, - 0x90080588, 0x05020002, 0x60041800, 0x0001fb00, - 0x0502000a, 0x05fdfd6c, 0x05020008, 0x800c19c0, - 0x05000004, 0x59340405, 0x8c000508, 0x05000003, - 0x80081040, 0x05000009, 0x81468800, 0x83440480, - 0x00000800, 0x05fc17f2, 0x80000580, 0x5c026800, - 0x5c028800, 0x1c01f000, 0x90000541, 0x5c026800, - 0x5c028800, 0x1c01f000, 0x60200800, 0x58d400e4, - 0x8c00051c, 0x0502002f, 0x59a80249, 0x8c000508, - 0x0502002c, 0x5934100a, 0x82081500, 0x0002e000, - 0x41781800, 0x90080580, 0x0500000a, 0x800c1800, - 0x82080580, 0x00002000, 0x05000006, 0x800c1800, - 0x82080580, 0x00006000, 0x05000002, 0x800c1800, - 0x42007000, 0x0010e060, 0x58380401, 0x8c000504, - 0x05000006, 0x900c2c84, 0x05021016, 0x820c0400, - 0x00105d02, 0x0501f012, 0x41782000, 0x59342a04, - 0x82140480, 0x00000800, 0x05021006, 0x80102000, - 0x82140480, 0x00000400, 0x05021002, 0x80102000, - 0x800c00c2, 0x800c0400, 0x80100400, 0x90002c89, - 0x05021004, 0x82000400, 0x00105d06, 0x50000800, - 0x48066c04, 0x1c01f000, 0x00000002, 0x00000004, - 0x00000008, 0x00000008, 0x00002802, 0x00001402, - 0x00000a02, 0x00001402, 0x00000a02, 0x00000502, - 0x00000a02, 0x00000502, 0x00000504, 0x59a8089e, - 0x800409c0, 0x05020004, 0x492f509d, 0x492f509e, - 0x0519f5b4, 0x492c0800, 0x492f509e, 0x1c01f000, - 0x5934000f, 0x41784000, 0x80001540, 0x05000010, - 0x58080208, 0x82000500, 0x000000ff, 0x90000592, - 0x05000005, 0xb00005a0, 0x05000003, 0x90000588, - 0x05020004, 0x58080210, 0x80040580, 0x05000005, - 0x58080000, 0x40084000, 0x05fdf7f0, 0x90000541, - 0x1c01f000, 0x4c5c0000, 0x4c600000, 0x592e8c0a, - 0x592e440b, 0x83224500, 0x000000ff, 0x592cbc0c, - 0x592cc40b, 0x4947c857, 0x4923c857, 0x485fc857, - 0x4863c857, 0x8260c500, 0x0000f000, 0x82600580, - 0x00003000, 0x05020007, 0x59340200, 0x8c000508, - 0x05020004, 0x599c0018, 0x8c000510, 0x0500001a, - 0x8c5c050a, 0x0500002b, 0x485fc856, 0x812241c0, - 0x05020013, 0x83440580, 0x000007fe, 0x0502000e, - 0x42003000, 0x00fffffe, 0x05f9ffc6, 0x05020017, - 0x4937c857, 0x052dfa32, 0x05000012, 0x80000580, - 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x90000541, - 0x05fdf7fc, 0x60281000, 0x0501f007, 0x60381000, - 0x0501f005, 0x603c1000, 0x0501f003, 0x60601000, - 0x0501f001, 0x60640800, 0x60c68000, 0x05fdf7f4, - 0x600c0800, 0x0501f002, 0x60280800, 0x41781000, - 0x05fdf7fa, 0x60228000, 0x0501f001, 0x41780800, - 0x41781000, 0x05fdf7ea, 0x60028000, 0x05fdf7fc, - 0x485fc856, 0x812241c0, 0x05fe07e9, 0x83440580, - 0x000007fe, 0x05fe07e4, 0x42003000, 0x00fffffe, - 0x05f9ff9c, 0x05fe07ed, 0x4937c857, 0x592e600e, - 0x0529fbe6, 0x05fc07e2, 0x59300c07, 0x90040591, - 0x05fe07e9, 0x5930000a, 0x800001c0, 0x05000003, - 0x81340580, 0x05fe07e4, 0x4936600a, 0x59300a03, - 0x90040587, 0x05fe07e0, 0x592c0a0d, 0x4807c857, - 0x4806621b, 0x497a641b, 0x492e6009, 0x64126407, - 0x8c5c050e, 0x05020013, 0x4c5c0000, 0x4c600000, - 0x4c640000, 0x592cba0b, 0x485f54cd, 0x485f52cc, - 0x592cc80f, 0x4200c000, 0x001106f2, 0x0539f916, - 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x616a7000, - 0x64066203, 0x493a6403, 0x0511facf, 0x05fdf7b0, - 0x616e7000, 0x592c0010, 0x4802641c, 0x592c0011, - 0x4802621c, 0x05fdf7f7, 0x42000000, 0x00110210, - 0x4a000400, 0x00000707, 0x4a000204, 0x00000840, - 0x4a000403, 0x0000ffff, 0x49780200, 0x1c01f000, - 0x4d340000, 0x4d440000, 0x4c580000, 0x61c0b00f, - 0x4803c856, 0x417a8800, 0x0001fb00, 0x05020006, - 0x59340200, 0x8c00051a, 0x05000003, 0x8400051a, - 0x48026a00, 0x81468800, 0x8058b040, 0x05fe07f7, - 0x5c00b000, 0x5c028800, 0x5c026800, 0x1c01f000, - 0x592c2a08, 0x82142d00, 0x000000ff, 0x90140592, - 0x05000006, 0xb01405b2, 0x05000004, 0xb01405ba, - 0x05000002, 0x90000541, 0x1c01f000, 0x64033003, + 0x4c600000, 0x59340400, 0x8200bd00, 0x0000ff00, + 0x825cc580, 0x00000400, 0x05000003, 0x825cc580, + 0x00000600, 0x5c00c000, 0x5c00b800, 0x1c01f000, + 0x4c5c0000, 0x59340400, 0x82000500, 0x000000ff, + 0x9000bd83, 0x05000002, 0x9000bd85, 0x5c00b800, + 0x1c01f000, 0x5c000000, 0x4c000000, 0x4803c857, + 0x4c5c0000, 0x59340400, 0x82000500, 0x0000ff00, + 0x8400b9c0, 0x805c0580, 0x4937c857, 0x4803c857, + 0x48026c00, 0x5c00b800, 0x1c01f000, 0x4c040000, + 0x4c080000, 0x592c020b, 0x8c00050c, 0x0500000d, + 0x592e8c0a, 0x82000500, 0x00000080, 0x84000548, + 0x4d3c0000, 0x60027820, 0x05fdff72, 0x5c027800, + 0x90000541, 0x5c001000, 0x5c000800, 0x1c01f000, + 0x80000580, 0x05fdf7fc, 0x59340013, 0x80024130, + 0x83224c00, 0x0010d8f9, 0x51264800, 0x812649c0, + 0x05d408d5, 0x1c01f000, 0x59a800ad, 0x81440480, + 0x05021019, 0x83200400, 0x0010d8f9, 0x50024800, + 0x59240009, 0x83440c80, 0x000007f0, 0x05001009, + 0x83441480, 0x00000800, 0x05001004, 0x0001fb08, + 0x0502000d, 0x0501f008, 0x80040c00, 0x0501f003, + 0x83440c00, 0x0010db80, 0x50040000, 0x80026d40, + 0x05000005, 0x59340013, 0x80000130, 0x81200580, + 0x1c01f000, 0x90000541, 0x05fdf7fe, 0x4937c857, + 0x4c580000, 0x4d440000, 0x59368c03, 0x83440580, + 0x0000ffff, 0x05000013, 0x83441480, 0x000007f0, + 0x05001004, 0x83440480, 0x00000800, 0x05001003, + 0x05fdfa83, 0x0501f00b, 0x58040009, 0x80080c00, + 0x50040000, 0x81340580, 0x05d608a3, 0x4d2c0000, + 0x45780800, 0x41365800, 0x05d5fc53, 0x5c025800, + 0x80000580, 0x5c028800, 0x5c00b000, 0x1c01f000, + 0x592c040f, 0x82000500, 0x0000e000, 0x82000580, + 0x00006000, 0x0500001e, 0x916c0583, 0x05000011, + 0x916c0582, 0x050200ff, 0x59a8024c, 0x90000d38, + 0x05020005, 0x59a80844, 0x800409c0, 0x05000009, + 0x0501f0f8, 0x90000d03, 0x90040d83, 0x050200f5, + 0x90000d28, 0x05020003, 0x8c00050c, 0x050000f1, + 0x592e440b, 0x83224500, 0x000000ff, 0x0509f92a, + 0x050200ce, 0x592c100e, 0x82081500, 0x00ffffff, + 0x59240005, 0x80080580, 0x050000d2, 0x592c0c0f, + 0x82040d00, 0x0000e000, 0x82040480, 0x00008000, + 0x050210ce, 0x592e8c0a, 0x59a800ad, 0x81440480, + 0x05001014, 0x83440580, 0x0000ffff, 0x050200b9, + 0x800409c0, 0x050200f1, 0x592c240d, 0x82100500, + 0xffffff00, 0x050200bd, 0x480bc857, 0x4813c857, + 0x61000810, 0x0501faf8, 0x050200be, 0x614e7000, + 0x0501fac7, 0x42026800, 0x001141b4, 0x0501f093, + 0x800409c0, 0x050200e1, 0x42004000, 0x80000000, + 0x05fdfdbf, 0x050200cb, 0x592c240f, 0x8c100514, + 0x0500000d, 0x592c240d, 0x82100500, 0xffffff00, + 0x050200a6, 0x901005a0, 0x050200a8, 0x05fdff29, + 0x050200b3, 0x05fdfb2b, 0x60180800, 0x05fdf936, + 0x0501f0ba, 0x59340a04, 0x0501fadb, 0x050200a1, + 0x614e7000, 0x592c240d, 0x82100500, 0xffffff00, + 0x05020096, 0x4813c857, 0x592c040b, 0x82000500, + 0x0000f000, 0x82000580, 0x00003000, 0x05020006, + 0x59340200, 0x8c000508, 0x05020003, 0x90100583, + 0x05020084, 0x592c0010, 0x800001c0, 0x05000065, + 0x90100584, 0x05000083, 0xb0100591, 0x05000081, + 0x90100583, 0x0500000f, 0x901005a0, 0x05000039, + 0x901005a4, 0x05000033, 0x901005a1, 0x05000033, + 0xb0100590, 0x0500002b, 0xb0100592, 0x05000027, + 0x90100585, 0x05020055, 0x60067000, 0x0501f018, + 0x600a7000, 0x59a800d6, 0x8c000502, 0x05000014, + 0x05fdfeee, 0x05000012, 0x59340212, 0x82000500, + 0x0000ff00, 0x60401000, 0x0502000b, 0x59a8024c, + 0x8c000506, 0x0502005b, 0x60201000, 0x59340002, + 0x82000500, 0x00ff0000, 0x82000580, 0x00ff0000, + 0x05000003, 0x0501f973, 0x05020052, 0x051dfb05, + 0x05000066, 0x64426407, 0x4926601d, 0x4936600a, + 0x600c0800, 0x91380582, 0x05000002, 0x602c0800, + 0x05fdf8e4, 0x0501f036, 0x60027000, 0x0501f002, + 0x60127000, 0x05fdfee2, 0x0502005d, 0x0501f02b, + 0x60ce7000, 0x0501f004, 0x60167000, 0x0501f002, + 0x600e7000, 0x05fdfed1, 0x05020055, 0x59a800d6, + 0x8c000502, 0x05000014, 0x05fdfec0, 0x05000012, + 0x59340212, 0x82000500, 0x0000ff00, 0x60401000, + 0x0502000b, 0x59a8024c, 0x8c000506, 0x0502002d, + 0x60201000, 0x59340002, 0x82000500, 0x00ff0000, + 0x82000580, 0x00ff0000, 0x05000003, 0x0501f945, + 0x05020024, 0x051dfad7, 0x05000038, 0x64426407, + 0x4926601d, 0x4936600a, 0x60140800, 0x91380583, + 0x05000002, 0x60240800, 0x05fdf8b6, 0x0501f008, + 0x90102591, 0x05020029, 0x051dfaca, 0x0500002b, + 0x64426407, 0x4926601d, 0x4936600a, 0x052dfabd, + 0x492e6009, 0x4932580c, 0x83340580, 0x001141b4, + 0x05000007, 0x592c0c0f, 0x8c040518, 0x05000004, + 0x59340200, 0x84000514, 0x48026a00, 0x0009f839, + 0x80000580, 0x1c01f000, 0x90000541, 0x05fdf7fe, + 0x60281000, 0x0501f012, 0x60381000, 0x0501f010, + 0x603c1000, 0x0501f00e, 0x60401000, 0x0501f00c, + 0x60581000, 0x0501f00a, 0x605c1000, 0x0501f008, + 0x60601000, 0x0501f006, 0x60781000, 0x0501f004, + 0x40001000, 0x0501f002, 0x60801000, 0x60640800, + 0x60c68000, 0x05fdf7e9, 0x600c0800, 0x0501f002, + 0x60280800, 0x41781000, 0x05fdf7fa, 0x60240800, + 0x59341400, 0x05fdf7f7, 0x60228000, 0x0501f004, + 0x601c0800, 0x416c1000, 0x05fdf7f2, 0x41780800, + 0x41781000, 0x05fdf7d9, 0x60028000, 0x05fdf7fc, + 0x90004d9d, 0x05d00f88, 0x90004d9a, 0x05020004, + 0x40101000, 0x40000800, 0x05fdf7e6, 0x90004d9b, + 0x05020003, 0x40181000, 0x05fdf7fb, 0x90004d9c, + 0x05fc07f9, 0x90004d99, 0x05fc07ca, 0x90004da0, + 0x05fc07f5, 0x05fdf7df, 0x592e600c, 0x052df85f, + 0x05fc07ca, 0x59300c07, 0x90040591, 0x05fe07df, + 0x592c0c0f, 0x82041500, 0x0000e000, 0x82080580, + 0x00006000, 0x05000021, 0x83440580, 0x0000ffff, + 0x05020007, 0x5932680a, 0x83340580, 0x001141b4, + 0x05fe07d2, 0x61000810, 0x0501f010, 0x592c100e, + 0x82081500, 0x00ffffff, 0x42004000, 0x80000000, + 0x05fdfcc7, 0x05fe07d3, 0x5930000a, 0x82000d80, + 0x001141b4, 0x05000003, 0x81340580, 0x05fe07c3, + 0x4936600a, 0x59340a04, 0x0501f9eb, 0x05fe07b1, + 0x59300a03, 0x90040587, 0x05fe07bc, 0x492e6009, + 0x61527000, 0x05fdf78d, 0x0539fdbf, 0x05fc07bf, + 0x05fdf7b6, 0x492fc857, 0x592e600c, 0x83300580, + 0xffffffff, 0x05020041, 0x592c020b, 0x8c000500, + 0x0502006e, 0x8d0c050e, 0x05020059, 0x592e8c0a, + 0x59a800ad, 0x81440480, 0x05021036, 0x592c380e, + 0x821c3d00, 0x00ffffff, 0x05e1ffe6, 0x05020039, + 0x49265805, 0x41784000, 0x592c100d, 0x82081500, + 0x00ffffff, 0x05fdfc9a, 0x0502004b, 0x592e6017, + 0x4933c857, 0x83300580, 0xffffffff, 0x05000018, + 0x052df812, 0x0500002d, 0x591c1407, 0x800811c0, + 0x05000013, 0x592c0411, 0x591c0a02, 0x80040580, + 0x0502000f, 0x591c000a, 0x800001c0, 0x05020007, + 0x591c082a, 0x59340002, 0x80040580, 0x82000500, + 0x00ffffff, 0x0501f002, 0x81340580, 0x05020004, + 0x90080587, 0x0502002c, 0x64923c03, 0x59240005, + 0x592c080d, 0x82041500, 0x00ffffff, 0x80081580, + 0x0500000c, 0x80040932, 0xb0040582, 0x0502000b, + 0x49365806, 0x0501f8d7, 0x80000580, 0x1c01f000, + 0x60281000, 0x0501f00a, 0x60401000, 0x0501f008, + 0x60501000, 0x0501f006, 0x605c1000, 0x0501f004, + 0x60601000, 0x0501f002, 0x60f01000, 0x492fc857, + 0x480bc857, 0x60640800, 0x60c68000, 0x90000541, + 0x05fdf7ef, 0x492fc857, 0x4803c857, 0x480bc857, + 0x40000800, 0x05fdf7f9, 0x492fc857, 0x60280800, + 0x41781000, 0x05fdf7f5, 0x41780800, 0x41781000, + 0x05fdf7f3, 0x60780800, 0x05fdf7fa, 0x60040800, + 0x05fdf7f8, 0x90004d9d, 0x05d00ee3, 0x90004d9a, + 0x05020003, 0x40101000, 0x05fdf7eb, 0x90004d9b, + 0x05020003, 0x40181000, 0x05fdf7e7, 0x90004d9c, + 0x05fc07e5, 0x90004d99, 0x05fc07e3, 0x90004da0, + 0x05fc07e1, 0x05fdf7e5, 0x0539fe20, 0x60028000, + 0x05fdf7e6, 0x5c000000, 0x4c000000, 0x4803c857, + 0x5930200a, 0x801021c0, 0x05000029, 0x58101400, + 0x4813c857, 0x480bc857, 0x82081d00, 0x000000ff, + 0x59300c03, 0x90040588, 0x05000018, 0x9004058a, + 0x05000010, 0x9004058c, 0x0500000b, 0x90040582, + 0x05000012, 0x90040581, 0x0500000d, 0x90040583, + 0x05000008, 0x90040585, 0x05000003, 0x900405b3, + 0x05020013, 0x900c0589, 0x0500000a, 0x0501f010, + 0x900c0585, 0x05000007, 0x0501f00d, 0x900c058b, + 0x05000004, 0x0501f00a, 0x900c0583, 0x05020008, + 0x82081d00, 0xffffff00, 0x840c01c0, 0x800c0540, + 0x4807c857, 0x4803c857, 0x48002400, 0x1c01f000, + 0x599c0017, 0x8c00050a, 0x05000003, 0x80000580, + 0x1c01f000, 0x59a8024c, 0x90000528, 0x05000007, + 0x61f6880f, 0x417a4000, 0x05fdfdc4, 0x05020003, + 0x5934000a, 0x8c000504, 0x1c01f000, 0x1c01f000, + 0x4d440000, 0x4d340000, 0x80000580, 0x40001800, + 0x40028800, 0x90080588, 0x05020002, 0x60041800, + 0x0001fb08, 0x0502000a, 0x05fdfd60, 0x05020008, + 0x800c19c0, 0x05000004, 0x59340405, 0x8c000508, + 0x05000003, 0x80081040, 0x05000009, 0x81468800, + 0x59a800ad, 0x81440480, 0x05fc17f2, 0x80000580, + 0x5c026800, 0x5c028800, 0x1c01f000, 0x90000541, + 0x5c026800, 0x5c028800, 0x1c01f000, 0x60200800, + 0x58d400e4, 0x8c00051c, 0x0502002f, 0x59a8024c, + 0x8c000508, 0x0502002c, 0x5934100a, 0x82081500, + 0x0002e000, 0x41781800, 0x90080580, 0x0500000a, + 0x800c1800, 0x82080580, 0x00002000, 0x05000006, + 0x800c1800, 0x82080580, 0x00006000, 0x05000002, + 0x800c1800, 0x42007000, 0x00111ffa, 0x58380401, + 0x8c000504, 0x05000006, 0x900c2c84, 0x05021016, + 0x820c0400, 0x00105fd7, 0x0501f012, 0x41782000, + 0x59342a04, 0x82140480, 0x00000800, 0x05021006, + 0x80102000, 0x82140480, 0x00000400, 0x05021002, + 0x80102000, 0x800c00c2, 0x800c0400, 0x80100400, + 0x90002c89, 0x05021004, 0x82000400, 0x00105fdb, + 0x50000800, 0x48066c04, 0x1c01f000, 0x00000002, + 0x00000004, 0x00000008, 0x00000008, 0x00002802, + 0x00001402, 0x00000a02, 0x00001402, 0x00000a02, + 0x00000502, 0x00000a02, 0x00000502, 0x00000504, + 0x59a808a1, 0x800409c0, 0x05020004, 0x492f50a0, + 0x492f50a1, 0x0519f7d3, 0x492c0800, 0x492f50a1, + 0x1c01f000, 0x5934000f, 0x41784000, 0x80001540, + 0x05000010, 0x58080208, 0x82000500, 0x000000ff, + 0x90000592, 0x05000005, 0xb00005a0, 0x05000003, + 0x90000588, 0x05020004, 0x58080210, 0x80040580, + 0x05000005, 0x58080000, 0x40084000, 0x05fdf7f0, + 0x90000541, 0x1c01f000, 0x4c5c0000, 0x4c600000, + 0x592e8c0a, 0x592e440b, 0x83224500, 0x000000ff, + 0x592cbc0c, 0x592cc40b, 0x4947c857, 0x4923c857, + 0x485fc857, 0x4863c857, 0x8260c500, 0x0000f000, + 0x82600580, 0x00003000, 0x05020007, 0x59340200, + 0x8c000508, 0x05020004, 0x599c0018, 0x8c000510, + 0x0500001a, 0x8c5c050a, 0x0500002b, 0x485fc856, + 0x812241c0, 0x05020013, 0x83440580, 0x000007fe, + 0x0502000e, 0x42003000, 0x00fffffe, 0x05f9ff0c, + 0x05020017, 0x4937c857, 0x052dfd0e, 0x05000012, + 0x80000580, 0x5c00c000, 0x5c00b800, 0x1c01f000, + 0x90000541, 0x05fdf7fc, 0x60281000, 0x0501f007, + 0x60381000, 0x0501f005, 0x603c1000, 0x0501f003, + 0x60601000, 0x0501f001, 0x60640800, 0x60c68000, + 0x05fdf7f4, 0x600c0800, 0x0501f002, 0x60280800, + 0x41781000, 0x05fdf7fa, 0x60228000, 0x0501f001, + 0x41780800, 0x41781000, 0x05fdf7ea, 0x60028000, + 0x05fdf7fc, 0x485fc856, 0x812241c0, 0x05fe07e9, + 0x83440580, 0x000007fe, 0x05fe07e4, 0x42003000, + 0x00fffffe, 0x05f9fee2, 0x05fe07ed, 0x4937c857, + 0x592e600e, 0x0529fead, 0x05fc07e2, 0x59300c07, + 0x90040591, 0x05fe07e9, 0x5930000a, 0x800001c0, + 0x05000003, 0x81340580, 0x05fe07e4, 0x4936600a, + 0x59300a03, 0x90040587, 0x05fe07e0, 0x592c0a0d, + 0x4807c857, 0x4806621b, 0x497a641b, 0x492e6009, + 0x64126407, 0x8c5c050e, 0x05020013, 0x4c5c0000, + 0x4c600000, 0x4c640000, 0x592cba0b, 0x485f54d2, + 0x485f52d1, 0x592cc80f, 0x4200c000, 0x00114696, + 0x0539fda8, 0x5c00c800, 0x5c00c000, 0x5c00b800, + 0x616a7000, 0x64066203, 0x493a6403, 0x0511fcb3, + 0x05fdf7b0, 0x616e7000, 0x592c0010, 0x4802641c, + 0x592c0011, 0x4802621c, 0x05fdf7f7, 0x42000000, + 0x001141b4, 0x4a000400, 0x00000707, 0x4a000204, + 0x00000840, 0x4a000403, 0x0000ffff, 0x49780200, + 0x1c01f000, 0x4d340000, 0x4d440000, 0x4c580000, + 0x59a8b0ac, 0x4803c856, 0x417a8800, 0x0001fb08, + 0x05020006, 0x59340200, 0x8c00051a, 0x05000003, + 0x8400051a, 0x48026a00, 0x8058b040, 0x05000007, + 0x81468800, 0x83440580, 0x000007f0, 0x05fe07f4, + 0x60028810, 0x05fdf7f2, 0x5c00b000, 0x5c028800, + 0x5c026800, 0x1c01f000, 0x592c2a08, 0x82142d00, + 0x000000ff, 0x90140592, 0x05000006, 0xb01405b2, + 0x05000004, 0xb01405ba, 0x05000002, 0x90000541, + 0x1c01f000, 0x592c0011, 0x800001c0, 0x05000005, + 0x80040480, 0x05001003, 0x80000580, 0x1c01f000, + 0x60900000, 0x80000540, 0x1c01f000, 0x64033003, 0x4a03b104, 0x80000000, 0x59d80105, 0x4a03b104, 0x60000001, 0x1c01f000, 0x599c0018, 0x4803c856, 0x497b3006, 0x497b3007, 0x9000050f, 0x48033004, @@ -6057,36 +6242,36 @@ static const uint32_t isp_2500_risc_code[] = { 0x640f3003, 0x05fdf7f8, 0x8d0c0520, 0x05020003, 0x64133003, 0x05fdf7f4, 0x64173003, 0x05fdf7f2, 0x592c0208, 0x492fc857, 0x80000540, 0x05000007, - 0x42034000, 0x0010dceb, 0x59a1d806, 0x80edd9c0, - 0x05d00fba, 0x0501f005, 0x052df885, 0x05d20fb7, + 0x42034000, 0x00111c71, 0x59a1d806, 0x80edd9c0, + 0x05d00d11, 0x0501f005, 0x052dfb47, 0x05d20d0e, 0x5931d82d, 0x58ef400b, 0x58ec0009, 0x800001c0, - 0x05d00fb2, 0x0801f800, 0x1c01f000, 0x5c000000, + 0x05d00d09, 0x0801f800, 0x1c01f000, 0x5c000000, 0x4c000000, 0x4803c857, 0x492fc857, 0x4943c857, - 0x4807c857, 0x4c040000, 0x0005f9f3, 0x5c000800, - 0x4c040000, 0x0505fdd3, 0x5c000800, 0x4a025a08, + 0x4807c857, 0x4c040000, 0x0005fa1a, 0x5c000800, + 0x4c040000, 0x0505fe77, 0x5c000800, 0x4a025a08, 0x00000103, 0x49425a0a, 0x48065a0c, 0x4a025c0a, 0x0000ffff, 0x813261c0, 0x05000003, 0x59300402, 0x48025c0a, 0x592c020c, 0x8c000512, 0x05020006, 0x912c040d, 0x05011000, 0x4803c840, 0x642fc842, - 0x05011000, 0x1c01f000, 0x59765800, 0x0001fdfd, - 0x592c1005, 0x800811c0, 0x000205e2, 0x1c01f000, + 0x05011000, 0x1c01f000, 0x59765800, 0x0001fe23, + 0x592c1005, 0x800811c0, 0x00020608, 0x1c01f000, 0x4c540000, 0x4c580000, 0x4c5c0000, 0x4d2c0000, - 0x4c600000, 0x400cc000, 0x4000b800, 0x0539fa9d, - 0x4178a800, 0x05d5fb18, 0x050000c8, 0x05011000, + 0x4c600000, 0x400cc000, 0x4000b800, 0x0539ff34, + 0x4178a800, 0x05d5f87c, 0x050000c8, 0x05011000, 0x485fc857, 0x912c0408, 0x4803c840, 0x6443c842, 0x40000000, 0x05fd17ff, 0x412c7000, 0x4a025808, - 0x00000132, 0x497a5809, 0x42000000, 0x0010de60, + 0x00000132, 0x497a5809, 0x42000000, 0x00111dfa, 0x50000000, 0x48025802, 0x805cb9c0, 0x05020060, - 0x912e5c0b, 0x417a4000, 0x42024800, 0x0010e512, + 0x912e5c0b, 0x417a4000, 0x42024800, 0x001124b6, 0x41786800, 0x59240a00, 0x9004050f, 0x0c01f001, - 0x00105e8d, 0x00105e8d, 0x00105e8d, 0x00105e8d, - 0x00105e8d, 0x00105e8d, 0x00105e8d, 0x00105e84, - 0x00105e8d, 0x00105e8d, 0x00105e8d, 0x00105e8d, - 0x00105e8d, 0x00105e8d, 0x00105e8d, 0x00105e8d, + 0x00106171, 0x00106171, 0x00106171, 0x00106171, + 0x00106171, 0x00106171, 0x00106171, 0x00106168, + 0x00106171, 0x00106171, 0x00106171, 0x00106171, + 0x00106171, 0x00106171, 0x00106171, 0x00106171, 0x8054a800, 0x812241c0, 0x05020007, 0x59240805, 0x805c00f0, 0x80040d40, 0x48065800, 0x812e5800, - 0x0501f030, 0x90340503, 0x0c01f001, 0x00105e93, - 0x00105e9b, 0x00105ea4, 0x00105ead, 0x91200581, + 0x0501f030, 0x90340503, 0x0c01f001, 0x00106177, + 0x0010617f, 0x00106188, 0x00106191, 0x91200581, 0x05020003, 0x60042000, 0x0501f020, 0x912004a0, 0x0500101d, 0x80346800, 0x0501f01b, 0x912005a1, 0x05020004, 0x812e5800, 0x60042000, 0x0501f017, @@ -6098,371 +6283,374 @@ static const uint32_t isp_2500_risc_code[] = { 0x80346800, 0x801020c2, 0x90040507, 0x90000587, 0x05020004, 0x592c0000, 0x80100540, 0x48025800, 0x91264c0d, 0x81224000, 0x8058b040, 0x05fe07b2, - 0x8054a9c0, 0x403a5800, 0x0500005f, 0x0539fa31, - 0x0539fa51, 0x05020002, 0x8058b040, 0x805800d0, + 0x8054a9c0, 0x403a5800, 0x0500005f, 0x0539fec8, + 0x0539fee8, 0x05020002, 0x8058b040, 0x805800d0, 0x80540540, 0x48025a0a, 0x0501f050, 0x4943c857, 0x4923c857, 0x91400581, 0x05020004, 0x48165a0c, 0x90140583, 0x0500004d, 0x83400d00, 0x000000ff, 0x90040584, 0x05000049, 0x90040586, 0x05000047, 0x83400d00, 0x0000ff00, 0x05000003, 0x81400110, 0x48025810, 0x814000d0, 0x81200540, 0x48025c0a, - 0x0539fa35, 0x05020002, 0x8058b040, 0x805800d0, + 0x0539fecc, 0x05020002, 0x8058b040, 0x805800d0, 0x90000541, 0x48025a0a, 0x59240805, 0x805c00f0, 0x80040d40, 0x4806580b, 0x5924000b, 0x4802580f, 0x592c020c, 0x80600540, 0x48025a0c, 0x91400d81, 0x0500002a, 0x4d340000, 0x4d440000, 0x61fa880f, - 0x05fdfb85, 0x05d20ee5, 0x592c020c, 0x8400055a, + 0x05fdfb6a, 0x05d20c3c, 0x592c020c, 0x8400055a, 0x48025a0c, 0x59340006, 0x9c0001c0, 0x48025812, 0x59340007, 0x9c0001c0, 0x48025813, 0x59340008, 0x9c0001c0, 0x48025814, 0x59340009, 0x9c0001c0, - 0x48025815, 0x0501f9a9, 0x05020006, 0x59a80249, + 0x48025815, 0x0501f9af, 0x05020006, 0x59a8024c, 0x8c000508, 0x05020005, 0x6000080c, 0x0501f007, 0x60000804, 0x0501f005, 0x592c020c, 0x84000558, 0x48025a0c, 0x60000808, 0x592c020c, 0x82000500, 0x0000f1ff, 0x80040540, 0x4803c857, 0x48025a0c, - 0x5c028800, 0x5c026800, 0x0539fa16, 0x0502000d, - 0x0001fb82, 0x0501f005, 0x59cc0007, 0x48025810, - 0x05fdf7bd, 0x05d5fa71, 0x5c00c000, 0x5c025800, + 0x5c028800, 0x5c026800, 0x0539fead, 0x0502000d, + 0x0001fba8, 0x0501f005, 0x59cc0007, 0x48025810, + 0x05fdf7bd, 0x05d1ffc4, 0x5c00c000, 0x5c025800, 0x5c00b800, 0x5c00b000, 0x5c00a800, 0x1c01f000, - 0x0535fdb1, 0x05fdf7f9, 0x59a8003f, 0x90000c8a, - 0x05d21eae, 0x0c01f808, 0x4a038805, 0x000000f0, - 0x59c400a3, 0x82000500, 0x02870000, 0x05d20ea7, - 0x1c01f000, 0x00105fb3, 0x00105f40, 0x00105f58, - 0x00105f82, 0x00105fa6, 0x001005da, 0x001005da, - 0x00105f58, 0x001005da, 0x00105f3f, 0x1c01f000, - 0x600c2000, 0x0501fbad, 0x4a038808, 0x00000204, - 0x0501fba1, 0x59c40805, 0x8c04050e, 0x05020010, + 0x0539fa2a, 0x05fdf7f9, 0x59a80042, 0x90000c8a, + 0x05d21c05, 0x0c01f808, 0x4a038805, 0x000000f0, + 0x59c400a3, 0x82000500, 0x02870000, 0x05d20bfe, + 0x1c01f000, 0x00106297, 0x00106224, 0x0010623c, + 0x00106266, 0x0010628a, 0x00100615, 0x00100615, + 0x0010623c, 0x00100615, 0x00106223, 0x1c01f000, + 0x600c2000, 0x0501fbb9, 0x4a038808, 0x00000204, + 0x0501fbac, 0x59c40805, 0x8c04050e, 0x05020010, 0x8c04050a, 0x05020009, 0x8c04050c, 0x05020005, - 0x8c040508, 0x0500000a, 0x640f503f, 0x0501f007, - 0x6403503f, 0x0501f005, 0x42000000, 0x0010e3a4, - 0x0539f888, 0x640b503f, 0x0501f898, 0x1c01f000, - 0x497b50a8, 0x60002000, 0x0501fb94, 0x4a038808, + 0x8c040508, 0x0500000a, 0x640f5042, 0x0501f007, + 0x64035042, 0x0501f005, 0x42000000, 0x00112345, + 0x0539fd1f, 0x640b5042, 0x0501f898, 0x1c01f000, + 0x497b50ab, 0x60002000, 0x0501fba0, 0x4a038808, 0x00000202, 0x59c40805, 0x8c040508, 0x05020020, 0x8c04050c, 0x0502001c, 0x8c04050e, 0x05020018, - 0x82040500, 0x000000f0, 0x0502001b, 0x0501fb7e, + 0x82040500, 0x000000f0, 0x0502001b, 0x0501fb89, 0x4a038808, 0x00000280, 0x59c40002, 0x8400050c, - 0x48038802, 0x0501f959, 0x4d3c0000, 0x60067800, - 0x0529feb7, 0x5c027800, 0x59c410a3, 0x84081518, - 0x05ddff2b, 0x4a038808, 0x00000280, 0x60082000, - 0x0501fb76, 0x6427503f, 0x0501f007, 0x6407503f, - 0x0501f004, 0x6403503f, 0x0501f002, 0x640f503f, - 0x0501f86e, 0x1c01f000, 0x60042000, 0x0501fb6b, - 0x59c410a3, 0x84081518, 0x05ddff19, 0x4a038808, + 0x48038802, 0x0501f95f, 0x4d3c0000, 0x60067800, + 0x052df97a, 0x5c027800, 0x59c410a3, 0x84081518, + 0x05ddfcc7, 0x4a038808, 0x00000280, 0x60082000, + 0x0501fb82, 0x64275042, 0x0501f007, 0x64075042, + 0x0501f004, 0x64035042, 0x0501f002, 0x640f5042, + 0x0501f86e, 0x1c01f000, 0x60042000, 0x0501fb77, + 0x59c410a3, 0x84081518, 0x05ddfcb5, 0x4a038808, 0x00000280, 0x59c40805, 0x8c04050a, 0x05020018, 0x8c04050c, 0x05020014, 0x8c04050e, 0x05020010, 0x82040500, 0x000000f0, 0x05020013, 0x59c40002, - 0x8400050c, 0x48038802, 0x0501f930, 0x4d3c0000, - 0x60067800, 0x0529fe8e, 0x5c027800, 0x60082000, - 0x0501fb52, 0x6427503f, 0x0501f007, 0x6407503f, - 0x0501f004, 0x6403503f, 0x0501f002, 0x640b503f, - 0x0501f84a, 0x1c01f000, 0x0501fc43, 0x4a038808, + 0x8400050c, 0x48038802, 0x0501f936, 0x4d3c0000, + 0x60067800, 0x052df951, 0x5c027800, 0x60082000, + 0x0501fb5e, 0x64275042, 0x0501f007, 0x64075042, + 0x0501f004, 0x64035042, 0x0501f002, 0x640b5042, + 0x0501f84a, 0x1c01f000, 0x0501fc4f, 0x4a038808, 0x00000208, 0x59c40805, 0x8c04050c, 0x05020005, - 0x8c04050e, 0x05000005, 0x6407503f, 0x0501f002, - 0x6403503f, 0x0501f83d, 0x1c01f000, 0x60102000, - 0x0501fb3a, 0x0501f873, 0x59c40805, 0x8c04050c, + 0x8c04050e, 0x05000005, 0x64075042, 0x0501f002, + 0x64035042, 0x0501f83d, 0x1c01f000, 0x60102000, + 0x0501fb46, 0x0501f873, 0x59c40805, 0x8c04050c, 0x05020009, 0x8c04050a, 0x05020005, 0x8c04050e, - 0x05000005, 0x6407503f, 0x0501f002, 0x640b503f, - 0x0501f82e, 0x1c01f000, 0x0501f8ec, 0x05d20e17, - 0x0501fc6b, 0x601c2000, 0x0501fb28, 0x8d0c050c, - 0x05000010, 0x850e1d0c, 0x64438805, 0x05ddfde0, + 0x05000005, 0x64075042, 0x0501f002, 0x640b5042, + 0x0501f82e, 0x1c01f000, 0x0501f8f2, 0x05d20b6e, + 0x0501fc77, 0x601c2000, 0x0501fb34, 0x8d0c050c, + 0x05000010, 0x850e1d0c, 0x64438805, 0x05ddfb7c, 0x59c40005, 0x8c000508, 0x05000006, 0x4a038808, - 0x00000208, 0x64075042, 0x6006d800, 0x0501f01a, + 0x00000208, 0x64075045, 0x6006d800, 0x0501f01a, 0x59c40006, 0x84000548, 0x48038806, 0x0501f016, - 0x59a8003f, 0x90000581, 0x05020012, 0x42000000, - 0x0010e3a4, 0x0535ffff, 0x4ce80000, 0x61a1d007, - 0x050df825, 0x59c40005, 0x90000530, 0x05000008, - 0x8c00050a, 0x05000004, 0x60002000, 0x0501fb07, - 0x0501f003, 0x60042000, 0x0501fb04, 0x5c01d000, - 0x6413503f, 0x1c01f000, 0x4c040000, 0x4c080000, - 0x61900800, 0x42001000, 0x00105ff7, 0x0509fffc, + 0x59a80042, 0x90000581, 0x05020012, 0x42000000, + 0x00112345, 0x0539fc96, 0x4ce80000, 0x61a1d007, + 0x050df9ac, 0x59c40005, 0x90000530, 0x05000008, + 0x8c00050a, 0x05000004, 0x60002000, 0x0501fb13, + 0x0501f003, 0x60042000, 0x0501fb10, 0x5c01d000, + 0x64135042, 0x1c01f000, 0x4c040000, 0x4c080000, + 0x61900800, 0x42001000, 0x001062db, 0x050df97c, 0x5c001000, 0x5c000800, 0x1c01f000, 0x4803c856, - 0x4c040000, 0x0511fd1a, 0x4df00000, 0x0511ffa7, - 0x5c03e000, 0x05100d07, 0x42000000, 0x0010e3a3, - 0x0535ffdc, 0x05fdffc1, 0x5c000800, 0x1c01f000, - 0x4803c856, 0x4c040000, 0x4c080000, 0x0511fd0c, - 0x4df00000, 0x0511ff99, 0x5c03e000, 0x05100cf9, - 0x59c40006, 0x84000500, 0x48038806, 0x0515f846, - 0x497b8880, 0x42000000, 0x0010e3a2, 0x0535ffc9, - 0x05ddfcf8, 0x641350b4, 0x6012d800, 0x64078805, - 0x42001000, 0x00105ff7, 0x0509ffdc, 0x05d1ffe3, - 0x0501f89e, 0x05000005, 0x42006000, 0xfeffffff, - 0x41786800, 0x05f9fa36, 0x05d1fbd8, 0x60000001, - 0x05ddfa60, 0x5c001000, 0x5c000800, 0x1c01f000, + 0x4c040000, 0x0511fef4, 0x4df00000, 0x0515f981, + 0x5c03e000, 0x05100ee1, 0x42000000, 0x00112344, + 0x0539fc73, 0x05fdffc1, 0x5c000800, 0x1c01f000, + 0x4803c856, 0x4c040000, 0x4c080000, 0x0511fee6, + 0x4df00000, 0x0515f973, 0x5c03e000, 0x05100ed3, + 0x59c40006, 0x84000500, 0x48038806, 0x0515fa20, + 0x497b8880, 0x42000000, 0x00112343, 0x0539fc60, + 0x05ddfa94, 0x641350b9, 0x6012d800, 0x64078805, + 0x42001000, 0x001062db, 0x050df95c, 0x05d1fd2e, + 0x0501f8a4, 0x05000005, 0x42006000, 0xfeffffff, + 0x41786800, 0x05f9f949, 0x05d1f92b, 0x60000001, + 0x05d9fffc, 0x5c001000, 0x5c000800, 0x1c01f000, 0x59c40008, 0x82000580, 0x00000210, 0x05000005, - 0x4a038808, 0x00000210, 0x6021d027, 0x0509ffd6, - 0x1c01f000, 0x4c040000, 0x59a80842, 0x90040580, + 0x4a038808, 0x00000210, 0x6021d027, 0x050df95d, + 0x1c01f000, 0x4c040000, 0x59a80845, 0x90040580, 0x05000008, 0x90040581, 0x05000008, 0x90040582, 0x05000008, 0x90040583, 0x05000008, 0x0501f043, - 0x6403503f, 0x0501f006, 0x6413503f, 0x0501f004, - 0x6407503f, 0x0501f002, 0x641f503f, 0x497b8880, - 0x64078893, 0x41780000, 0x05ddfac9, 0x0515f80e, + 0x64035042, 0x0501f006, 0x64135042, 0x0501f004, + 0x64075042, 0x0501f002, 0x641f5042, 0x497b8880, + 0x64078893, 0x41780000, 0x05ddf865, 0x0515f9e8, 0x916c0d84, 0x05000008, 0x59c40006, 0x82000500, 0xffffff0f, 0x82000540, 0x04000001, 0x48038806, 0x0501f007, 0x59c40006, 0x82000500, 0xffffff0f, - 0x82000540, 0x04000000, 0x48038806, 0x0501f863, + 0x82000540, 0x04000000, 0x48038806, 0x0501f869, 0x05020005, 0x59c40806, 0x82040d00, 0xfbffff0f, 0x48078806, 0x59c40005, 0x8c000534, 0x05020026, 0x42006000, 0xfc18ffff, 0x42006800, 0x01000000, - 0x05f9f9f3, 0x05ddfd46, 0x59c408a4, 0x90040d0f, - 0x90040d8c, 0x05020885, 0x0501f850, 0x05000005, - 0x42006000, 0xfeffffff, 0x41786800, 0x05f9f9e8, - 0x916c0d84, 0x0500000c, 0x05fdff7c, 0x5994102e, - 0x41780800, 0x60280000, 0x050dff18, 0x40080000, - 0x59a80863, 0x80040c00, 0x42001000, 0x00106004, - 0x0509ff6c, 0x64135042, 0x05fdfeac, 0x0501f83b, + 0x05f9f906, 0x05ddfae2, 0x59c408a4, 0x90040d0f, + 0x90040d8c, 0x0502088b, 0x0501f856, 0x05000005, + 0x42006000, 0xfeffffff, 0x41786800, 0x05f9f8fb, + 0x916c0d84, 0x0500000c, 0x05fdff7c, 0x5994102f, + 0x41780800, 0x60280000, 0x0511f8ed, 0x40080000, + 0x59a80866, 0x80040c00, 0x42001000, 0x001062e8, + 0x050df8ec, 0x64135045, 0x05fdfeac, 0x0501f841, 0x05020005, 0x59c408a4, 0x90040d0f, 0x9004058c, - 0x05d20d56, 0x5c000800, 0x1c01f000, 0x4803c856, - 0x4c000000, 0x0509ff84, 0x4a03503d, 0x00ffffff, - 0x497b5041, 0x59a8004d, 0x82000500, 0xffff0000, - 0x4803504d, 0x497b8880, 0x497b8893, 0x41780000, - 0x05ddfa7b, 0x59c40001, 0x82000500, 0xfffffcff, + 0x05d20aad, 0x5c000800, 0x1c01f000, 0x4803c856, + 0x4c000000, 0x050df90b, 0x4a035040, 0x00ffffff, + 0x497b5044, 0x59a80050, 0x82000500, 0xffff0000, + 0x48035050, 0x497b8880, 0x497b8893, 0x41780000, + 0x05ddf817, 0x59c40001, 0x82000500, 0xfffffcff, 0x48038801, 0x42006000, 0xfc18ffff, 0x41786800, - 0x05f9f9bb, 0x59c410a3, 0x84081518, 0x05ddfe00, + 0x05f9f8ce, 0x59c410a3, 0x84081518, 0x05ddfb9c, 0x4a038808, 0x00000200, 0x5c000000, 0x800001c0, - 0x05fa0847, 0x4a038805, 0x040000f0, 0x59c40006, + 0x05f60f5a, 0x4a038805, 0x040000f0, 0x59c40006, 0x82000500, 0xffffffcf, 0x82000540, 0x440000c1, - 0x48038806, 0x1c01f000, 0x4c5c0000, 0x59a8b841, - 0x825cbd80, 0x0000aaaa, 0x5c00b800, 0x1c01f000, - 0x4c5c0000, 0x599cb818, 0x905cbd30, 0x905cbd80, + 0x4c000000, 0x0501f80d, 0x5c000000, 0x05020003, + 0x82000500, 0xffffff0f, 0x48038806, 0x1c01f000, + 0x4c5c0000, 0x59a8b844, 0x825cbd80, 0x0000aaaa, 0x5c00b800, 0x1c01f000, 0x4c5c0000, 0x599cb818, - 0x905cbd30, 0x905cbd90, 0x5c00b800, 0x1c01f000, - 0x4c5c0000, 0x599cb818, 0x905cbd30, 0x905cbda0, - 0x5c00b800, 0x1c01f000, 0x490fc857, 0x910c0d13, - 0x0500001d, 0x599c1017, 0x4d3c0000, 0x910c0511, - 0x05000005, 0x417a7800, 0x8d0c0520, 0x05020007, - 0x0501f00f, 0x60227800, 0x8d0c0520, 0x0500000c, - 0x600c3000, 0x0501f002, 0x60103000, 0x603a8000, - 0x4d200000, 0x61fe4001, 0x0531fecf, 0x5c024000, - 0x599c1017, 0x8c08050a, 0x05020005, 0x60128000, - 0x05e1f9f2, 0x4803c856, 0x850e1d08, 0x5c027800, - 0x0501f009, 0x8d0c0520, 0x05000007, 0x603e8000, - 0x60043000, 0x4d200000, 0x61fe4001, 0x0531febe, - 0x5c024000, 0x1c01f000, 0x4803c856, 0x4c580000, - 0x42000000, 0x0010e4bd, 0x0535feea, 0x42000800, - 0x00110516, 0x59c40003, 0x44000800, 0x59c40004, - 0x48000801, 0x59c4000b, 0x48000802, 0x59c4008e, - 0x48000803, 0x59c4008f, 0x48000804, 0x59c40090, - 0x48000805, 0x59c40091, 0x48000806, 0x59c40092, - 0x48000807, 0x59c40093, 0x48000808, 0x59c40099, - 0x48000809, 0x59c4009e, 0x4800080a, 0x59c400aa, - 0x4800080b, 0x90040c0f, 0x41c41800, 0x60c0b000, - 0x580c0050, 0x44000800, 0x80040800, 0x800c1800, - 0x8058b040, 0x05fe07fb, 0x41c41800, 0x6080b000, - 0x580c0010, 0x44000800, 0x80040800, 0x800c1800, - 0x8058b040, 0x05fe07fb, 0x497b8830, 0x6100b000, - 0x59c40031, 0x44000800, 0x80040800, 0x8058b040, - 0x05fe07fc, 0x497b88ac, 0x6040b000, 0x59c400ad, - 0x44000800, 0x80040800, 0x8058b040, 0x05fe07fc, - 0x59a800a9, 0x59c410b1, 0x80080400, 0x480350a9, - 0x59a800aa, 0x59c410b2, 0x80080400, 0x480350aa, - 0x59c41001, 0x4c080000, 0x8408150c, 0x480b8801, - 0x4a0370e4, 0x00000300, 0x4a0370e5, 0xb0000000, - 0x60000810, 0x80040840, 0x05d00c9c, 0x59b800e5, - 0x8c000538, 0x05fe07fc, 0x4a0370e4, 0x00000200, - 0x42006000, 0xffffffff, 0x42006800, 0x80000000, - 0x05f9f90f, 0x64078807, 0x497b8807, 0x0501faac, - 0x4a038808, 0x00000210, 0x42006000, 0xfcf8ffff, - 0x42006800, 0x01000000, 0x05f9f905, 0x5c001000, - 0x480b8801, 0x42000800, 0x00110516, 0x50040000, - 0x48038803, 0x58040001, 0x48038804, 0x58040002, - 0x4803880b, 0x58040003, 0x4803888e, 0x58040004, - 0x4803888f, 0x58040005, 0x48038890, 0x58040006, - 0x48038891, 0x58040007, 0x48038892, 0x58040008, - 0x48038893, 0x58040009, 0x48038899, 0x5804000a, - 0x4803889e, 0x5804000b, 0x480388aa, 0x90040c0f, - 0x41c41800, 0x60c0b000, 0x50040000, 0x48001850, + 0x905cbd30, 0x905cbd80, 0x5c00b800, 0x1c01f000, + 0x4c5c0000, 0x599cb818, 0x905cbd30, 0x905cbd90, + 0x5c00b800, 0x1c01f000, 0x4c5c0000, 0x599cb818, + 0x905cbd30, 0x905cbda0, 0x5c00b800, 0x1c01f000, + 0x490fc857, 0x910c0d13, 0x0500001d, 0x599c1017, + 0x4d3c0000, 0x910c0511, 0x05000005, 0x417a7800, + 0x8d0c0520, 0x05020007, 0x0501f00f, 0x60227800, + 0x8d0c0520, 0x0500000c, 0x600c3000, 0x0501f002, + 0x60103000, 0x603a8000, 0x4d200000, 0x61fe4001, + 0x0535fb2c, 0x5c024000, 0x599c1017, 0x8c08050a, + 0x05020005, 0x60128000, 0x05ddff9b, 0x4803c856, + 0x850e1d08, 0x5c027800, 0x0501f009, 0x8d0c0520, + 0x05000007, 0x603e8000, 0x60043000, 0x4d200000, + 0x61fe4001, 0x0535fb1b, 0x5c024000, 0x1c01f000, + 0x4803c856, 0x4c580000, 0x42000000, 0x00112461, + 0x0539fb7b, 0x42000800, 0x001144ba, 0x59c40003, + 0x44000800, 0x59c40004, 0x48000801, 0x59c4000b, + 0x48000802, 0x59c4008e, 0x48000803, 0x59c4008f, + 0x48000804, 0x59c40090, 0x48000805, 0x59c40091, + 0x48000806, 0x59c40092, 0x48000807, 0x59c40093, + 0x48000808, 0x59c40099, 0x48000809, 0x59c4009e, + 0x4800080a, 0x59c400aa, 0x4800080b, 0x90040c0f, + 0x41c41800, 0x60c0b000, 0x580c0050, 0x44000800, 0x80040800, 0x800c1800, 0x8058b040, 0x05fe07fb, - 0x41c41800, 0x6080b000, 0x50040000, 0x48001810, + 0x41c41800, 0x6080b000, 0x580c0010, 0x44000800, 0x80040800, 0x800c1800, 0x8058b040, 0x05fe07fb, - 0x497b8830, 0x6100b000, 0x50040000, 0x48038831, + 0x497b8830, 0x6100b000, 0x59c40031, 0x44000800, 0x80040800, 0x8058b040, 0x05fe07fc, 0x497b88ac, - 0x6040b000, 0x50040000, 0x480388ad, 0x80040800, - 0x8058b040, 0x05fe07fc, 0x497b8880, 0x41780000, - 0x05ddf97f, 0x59c408a4, 0x90040d0f, 0x9004058c, - 0x05d20c46, 0x4a038805, 0x04000000, 0x5c00b000, - 0x1c01f000, 0x4803c856, 0x4c580000, 0x4ce80000, - 0x42000000, 0x0010e3a5, 0x0535fe3e, 0x59c41008, - 0x4c080000, 0x82081500, 0xffffff7f, 0x480b8808, - 0x59c40004, 0x82000500, 0x00003e02, 0x05000003, - 0x6051d000, 0x0509fe5c, 0x59c40006, 0x82000500, - 0xffffff0f, 0x48038806, 0x0501fa42, 0x64438805, - 0x4a038808, 0x00000204, 0x6194b000, 0x59c40005, - 0x8c000508, 0x05020013, 0x61a1d007, 0x0509fe4e, - 0x8058b040, 0x05fe07fa, 0x601c2000, 0x0501f933, - 0x0501fa2d, 0x0511fe98, 0x4803c856, 0x59c410a3, - 0x84081518, 0x05ddfcde, 0x4a038808, 0x00000208, - 0x64075042, 0x6006d800, 0x90000541, 0x0501f032, - 0x60042000, 0x0501f925, 0x05d5facd, 0x42000000, - 0x0010e499, 0x0535fe0f, 0x05d5fed7, 0x497b8880, - 0x59a8004d, 0x82000500, 0x0000ffff, 0x4c000000, - 0x05ddf93b, 0x5c000000, 0x48038880, 0x59c410a3, - 0x84081518, 0x05ddfcc6, 0x4a038808, 0x00000200, + 0x6040b000, 0x59c400ad, 0x44000800, 0x80040800, + 0x8058b040, 0x05fe07fc, 0x59a800ae, 0x59c410b1, + 0x80080400, 0x480350ae, 0x59a800af, 0x59c410b2, + 0x80080400, 0x480350af, 0x59c41001, 0x4c080000, + 0x8408150c, 0x480b8801, 0x4a0370e4, 0x00000300, + 0x4a0370e5, 0xb0000000, 0x60000810, 0x80040840, + 0x05d009ed, 0x59b800e5, 0x8c000538, 0x05fe07fc, + 0x4a0370e4, 0x00000200, 0x42006000, 0xffffffff, + 0x42006800, 0x80000000, 0x05f9f81c, 0x64078807, + 0x497b8807, 0x0501fab2, 0x4a038808, 0x00000210, + 0x42006000, 0xfcf8ffff, 0x42006800, 0x01000000, + 0x05f9f812, 0x5c001000, 0x480b8801, 0x42000800, + 0x001144ba, 0x50040000, 0x48038803, 0x58040001, + 0x48038804, 0x58040002, 0x4803880b, 0x58040003, + 0x4803888e, 0x58040004, 0x4803888f, 0x58040005, + 0x48038890, 0x58040006, 0x48038891, 0x58040007, + 0x48038892, 0x58040008, 0x48038893, 0x58040009, + 0x48038899, 0x5804000a, 0x4803889e, 0x5804000b, + 0x480388aa, 0x90040c0f, 0x41c41800, 0x60c0b000, + 0x50040000, 0x48001850, 0x80040800, 0x800c1800, + 0x8058b040, 0x05fe07fb, 0x41c41800, 0x6080b000, + 0x50040000, 0x48001810, 0x80040800, 0x800c1800, + 0x8058b040, 0x05fe07fb, 0x497b8830, 0x6100b000, + 0x50040000, 0x48038831, 0x80040800, 0x8058b040, + 0x05fe07fc, 0x497b88ac, 0x6040b000, 0x50040000, + 0x480388ad, 0x80040800, 0x8058b040, 0x05fe07fc, + 0x497b8880, 0x41780000, 0x05d9ff15, 0x59c408a4, + 0x90040d0f, 0x9004058c, 0x05d20997, 0x4a038805, + 0x04000000, 0x5c00b000, 0x1c01f000, 0x4803c856, + 0x4c580000, 0x4ce80000, 0x42000000, 0x00112346, + 0x0539facf, 0x59c41008, 0x4c080000, 0x82081500, + 0xffffff7f, 0x480b8808, 0x59c40004, 0x82000500, + 0x00003e02, 0x05000003, 0x6051d000, 0x0509ffdd, + 0x59c40006, 0x82000500, 0xffffff0f, 0x48038806, + 0x0501fa48, 0x64438805, 0x4a038808, 0x00000204, + 0x6194b000, 0x59c40005, 0x8c000508, 0x05020013, + 0x61a1d007, 0x0509ffcf, 0x8058b040, 0x05fe07fa, + 0x601c2000, 0x0501f939, 0x0501fa33, 0x0515f86c, + 0x4803c856, 0x59c410a3, 0x84081518, 0x05ddfa74, + 0x4a038808, 0x00000208, 0x64075045, 0x6006d800, + 0x90000541, 0x0501f034, 0x60042000, 0x0501f92b, + 0x05d5f87f, 0x42000000, 0x0011243d, 0x0539faa0, + 0x61f819ff, 0x60082000, 0x05d5fc8b, 0x497b8880, + 0x59a80050, 0x82000500, 0x0000ffff, 0x4c000000, + 0x05d9fecf, 0x5c000000, 0x48038880, 0x59c410a3, + 0x84081518, 0x05ddfa5a, 0x4a038808, 0x00000200, 0x64238805, 0x6194b000, 0x4a038805, 0x000000f0, - 0x05ddfbcb, 0x61c00801, 0x59c40005, 0x80040d00, - 0x05000006, 0x61a1d007, 0x0509fe1f, 0x8058b040, - 0x05fe07f6, 0x05fdf7d1, 0x59c410a3, 0x84081558, - 0x05ddfcb3, 0x60082000, 0x0501f900, 0x59c40006, - 0x82000540, 0x000000f0, 0x48038806, 0x59a80040, + 0x05ddf95f, 0x61c00801, 0x59c40005, 0x80040d00, + 0x05000006, 0x61a1d007, 0x0509ff9e, 0x8058b040, + 0x05fe07f6, 0x05fdf7cf, 0x59c410a3, 0x84081558, + 0x05ddfa47, 0x60082000, 0x0501f904, 0x59c40006, + 0x82000540, 0x000000f0, 0x48038806, 0x59a80043, 0x80000540, 0x05020002, 0x80000000, 0x48038893, - 0x80000580, 0x4df00000, 0x05ddfbd5, 0x5c03e000, + 0x80000580, 0x4df00000, 0x05ddf969, 0x5c03e000, 0x5c001000, 0x480b8808, 0x5c01d000, 0x5c00b000, 0x1c01f000, 0x4803c856, 0x4c580000, 0x4ce80000, 0x59c41008, 0x4c080000, 0x82081500, 0xffffff7f, 0x480b8808, 0x59c40004, 0x82000500, 0x00003e02, - 0x05000003, 0x6051d000, 0x0509fdf7, 0x05d5fa88, - 0x42000000, 0x0010e49a, 0x0535fdca, 0x05d5fe92, - 0x60002000, 0x0501f8d9, 0x4a038808, 0x00000202, - 0x80000580, 0x48038880, 0x48038893, 0x05ddf8f4, - 0x6010b007, 0x4a038805, 0x000000f0, 0x05ddfb8c, - 0x61c00801, 0x59c40005, 0x80040d00, 0x05000016, - 0x82000500, 0x000000d0, 0x05020015, 0x619dd000, - 0x0509fddd, 0x8058b040, 0x05fe07f3, 0x601c2000, - 0x0501f8c2, 0x0511fe28, 0x0501f9bb, 0x4a038808, - 0x00000208, 0x64075042, 0x6006d800, 0x59c40006, - 0x8400050a, 0x48038806, 0x64838805, 0x90000541, - 0x0501f01b, 0x60082000, 0x0501f8b4, 0x497b8880, - 0x59a80040, 0x80000540, 0x05020002, 0x80000000, - 0x48038893, 0x59a8004d, 0x82000500, 0x0000ffff, - 0x4c000000, 0x05ddf8ca, 0x5c000000, 0x48038880, - 0x59c410a3, 0x84081518, 0x05ddfc55, 0x4a038808, - 0x00000200, 0x6095d000, 0x0509fdb7, 0x59c410a3, - 0x84081558, 0x05ddfc4e, 0x80000580, 0x4df00000, - 0x05ddfb7b, 0x5c03e000, 0x5c001000, 0x480b8808, - 0x5c01d000, 0x5c00b000, 0x1c01f000, 0x4803c856, - 0x60042000, 0x0501f891, 0x59c40004, 0x82000500, - 0x00003e02, 0x05000008, 0x0511fdf3, 0x0501f986, - 0x4a038808, 0x00000208, 0x64075042, 0x6006d800, - 0x0501f046, 0x05d5fa2e, 0x42000000, 0x0010e49b, - 0x0535fd70, 0x05d5fe38, 0x59c40006, 0x84000508, - 0x48038806, 0x64438805, 0x850e1d4c, 0x61900800, - 0x42001000, 0x00105ff7, 0x0509fd79, 0x59c410a3, - 0x84081518, 0x05ddfc26, 0x4a038808, 0x00000200, - 0x497b8880, 0x4a038805, 0x000000f0, 0x05ddfb2c, - 0x61c00801, 0x59c40005, 0x80040d00, 0x0500000b, - 0x82000500, 0x000000e0, 0x0502000d, 0x61a1d007, - 0x0509fd7d, 0x0509fbe2, 0x59940004, 0x80000540, - 0x05fe07f1, 0x0501f021, 0x59c410a3, 0x84081558, - 0x05ddfc0f, 0x60082000, 0x0501f85c, 0x4c080000, - 0x42001000, 0x00105ff7, 0x0509fd60, 0x5c001000, - 0x497b8880, 0x59a80040, 0x80000540, 0x05020002, - 0x80000000, 0x48038893, 0x59a8004d, 0x82000500, - 0x0000ffff, 0x4c000000, 0x05ddf86d, 0x5c000000, - 0x48038880, 0x850e1d0c, 0x59c40006, 0x84000548, - 0x48038806, 0x05ddfb26, 0x59c40008, 0x82000540, - 0x00000280, 0x48038808, 0x1c01f000, 0x4803c856, - 0x4d400000, 0x4d3c0000, 0x0511fda3, 0x0535fe39, - 0x0502002b, 0x599c1017, 0x8d0c0500, 0x05020009, - 0x8c08051a, 0x05000026, 0x850e1d42, 0x60128000, - 0x60227800, 0x8d0c0520, 0x05020006, 0x0501f01d, - 0x60128000, 0x417a7800, 0x8d0c0520, 0x05000019, - 0x0535fe30, 0x42024800, 0x0010e512, 0x59240200, - 0x8c000500, 0x05000006, 0x4c580000, 0x60040800, - 0x60001002, 0x050dfc77, 0x5c00b000, 0x91264c0d, - 0x8058b040, 0x05fe07f6, 0x61fe41ff, 0x4d400000, - 0x603a8000, 0x600c3000, 0x61fe89ff, 0x0531fccf, - 0x5c028000, 0x599c0817, 0x8c04050a, 0x05020004, - 0x4943c857, 0x493fc857, 0x05ddfff4, 0x497b8880, - 0x6006d800, 0x05fdfd50, 0x5c027800, 0x5c028000, - 0x1c01f000, 0x05d5f9b2, 0x42000000, 0x0010e49c, - 0x0535fcf4, 0x05d5fdbc, 0x60040000, 0x05ddf824, - 0x64078880, 0x05ddf2e2, 0x42000800, 0x0010dce7, + 0x05000003, 0x6051d000, 0x0509ff76, 0x05d5f838, + 0x42000000, 0x0011243e, 0x0539fa59, 0x61f819ff, + 0x60042000, 0x05d5fc44, 0x60002000, 0x0501f8db, + 0x4a038808, 0x00000202, 0x80000580, 0x48038880, + 0x48038893, 0x05d9fe86, 0x6010b007, 0x4a038805, + 0x000000f0, 0x05ddf91e, 0x61c00801, 0x59c40005, + 0x80040d00, 0x05000016, 0x82000500, 0x000000d0, + 0x05020015, 0x619dd000, 0x0509ff5a, 0x8058b040, + 0x05fe07f3, 0x601c2000, 0x0501f8c4, 0x0511fff8, + 0x0501f9bd, 0x4a038808, 0x00000208, 0x64075045, + 0x6006d800, 0x59c40006, 0x8400050a, 0x48038806, + 0x64838805, 0x90000541, 0x0501f01b, 0x60082000, + 0x0501f8b6, 0x497b8880, 0x59a80043, 0x80000540, + 0x05020002, 0x80000000, 0x48038893, 0x59a80050, + 0x82000500, 0x0000ffff, 0x4c000000, 0x05d9fe5c, + 0x5c000000, 0x48038880, 0x59c410a3, 0x84081518, + 0x05ddf9e7, 0x4a038808, 0x00000200, 0x6095d000, + 0x0509ff34, 0x59c410a3, 0x84081558, 0x05ddf9e0, + 0x80000580, 0x4df00000, 0x05ddf90d, 0x5c03e000, + 0x5c001000, 0x480b8808, 0x5c01d000, 0x5c00b000, + 0x1c01f000, 0x4803c856, 0x60042000, 0x0501f893, + 0x59c40004, 0x82000500, 0x00003e02, 0x05000008, + 0x0511ffc3, 0x0501f988, 0x4a038808, 0x00000208, + 0x64075045, 0x6006d800, 0x0501f047, 0x05d1ffdc, + 0x42000000, 0x0011243f, 0x0539f9fd, 0x61fc19ff, + 0x05d5fbe9, 0x59c40006, 0x84000508, 0x48038806, + 0x64438805, 0x850e1d4c, 0x61900800, 0x42001000, + 0x001062db, 0x0509feee, 0x59c410a3, 0x84081518, + 0x05ddf9b7, 0x4a038808, 0x00000200, 0x497b8880, + 0x4a038805, 0x000000f0, 0x05ddf8bd, 0x61c00801, + 0x59c40005, 0x80040d00, 0x0500000b, 0x82000500, + 0x000000e0, 0x0502000d, 0x61a1d007, 0x0509fef9, + 0x0509fd0d, 0x59940004, 0x80000540, 0x05fe07f1, + 0x0501f021, 0x59c410a3, 0x84081558, 0x05ddf9a0, + 0x60082000, 0x0501f85d, 0x4c080000, 0x42001000, + 0x001062db, 0x0509fed5, 0x5c001000, 0x497b8880, + 0x59a80043, 0x80000540, 0x05020002, 0x80000000, + 0x48038893, 0x59a80050, 0x82000500, 0x0000ffff, + 0x4c000000, 0x05d9fdfe, 0x5c000000, 0x48038880, + 0x850e1d0c, 0x59c40006, 0x84000548, 0x48038806, + 0x05ddf8b7, 0x59c40008, 0x82000540, 0x00000280, + 0x48038808, 0x1c01f000, 0x4803c856, 0x4d400000, + 0x4d3c0000, 0x0511ff72, 0x0539fac5, 0x0502002b, + 0x599c1017, 0x8d0c0500, 0x05020009, 0x8c08051a, + 0x05000026, 0x850e1d42, 0x60128000, 0x60227800, + 0x8d0c0520, 0x05020006, 0x0501f01d, 0x60128000, + 0x417a7800, 0x8d0c0520, 0x05000019, 0x0539fabc, + 0x42024800, 0x001124b6, 0x59240200, 0x8c000500, + 0x05000006, 0x4c580000, 0x60040800, 0x60001002, + 0x050dfe3c, 0x5c00b000, 0x91264c0d, 0x8058b040, + 0x05fe07f6, 0x61fe41ff, 0x4d400000, 0x603a8000, + 0x600c3000, 0x61fe89ff, 0x0535f927, 0x5c028000, + 0x599c0817, 0x8c04050a, 0x05020004, 0x4943c857, + 0x493fc857, 0x05ddfd98, 0x497b8880, 0x6006d800, + 0x05fdfd45, 0x5c027800, 0x5c028000, 0x1c01f000, + 0x05d1ff5f, 0x42000000, 0x00112440, 0x0539f980, + 0x61fc19ff, 0x05d5fb6c, 0x60040000, 0x05d9fdb4, + 0x64078880, 0x05ddf072, 0x42000800, 0x00111c6d, 0x48100802, 0x90101488, 0x05001008, 0x58040001, 0x4803c857, 0x4813c857, 0x58040003, 0x80000000, 0x48000803, 0x60082000, 0x58040001, 0x9000148b, 0x05001007, 0x4803c857, 0x4813c857, 0x58040003, 0x80000000, 0x48000803, 0x60000000, 0x48000800, 0x59c428a4, 0x90142d0f, 0x90142d8c, 0x0c000002, - 0x0501f0fb, 0x00106314, 0x0010632e, 0x00106348, - 0x00106362, 0x0010637c, 0x00106392, 0x001063a1, - 0x001063b4, 0x001063c7, 0x001063da, 0x001063dc, - 0x40100000, 0x0c01f001, 0x0010631e, 0x00106320, - 0x00106322, 0x00106323, 0x00106325, 0x00106327, - 0x0010632a, 0x0010632c, 0x64080801, 0x1c01f000, + 0x0501f0fb, 0x00106604, 0x0010661e, 0x00106638, + 0x00106652, 0x0010666c, 0x00106682, 0x00106691, + 0x001066a4, 0x001066b7, 0x001066ca, 0x001066cc, + 0x40100000, 0x0c01f001, 0x0010660e, 0x00106610, + 0x00106612, 0x00106613, 0x00106615, 0x00106617, + 0x0010661a, 0x0010661c, 0x64080801, 0x1c01f000, 0x640c0801, 0x0501f0bc, 0x1c01f000, 0x641c0801, 0x1c01f000, 0x64100801, 0x0501f0ba, 0x64140801, 0x0501f8be, 0x0501f0ba, 0x64140801, 0x0501f0bb, 0x4813c857, 0x1c01f000, 0x40100000, 0x0c01f001, - 0x00106338, 0x0010633a, 0x0010633c, 0x0010633d, - 0x0010633f, 0x00106341, 0x00106344, 0x00106346, + 0x00106628, 0x0010662a, 0x0010662c, 0x0010662d, + 0x0010662f, 0x00106631, 0x00106634, 0x00106636, 0x64080801, 0x1c01f000, 0x640c0801, 0x1c01f000, 0x1c01f000, 0x641c0801, 0x1c01f000, 0x64100801, 0x0501f0a0, 0x64140801, 0x0501f8a4, 0x0501f0a0, 0x64140801, 0x1c01f000, 0x64140801, 0x0501f099, - 0x40100000, 0x0c01f001, 0x00106352, 0x00106353, - 0x00106355, 0x00106357, 0x00106359, 0x0010635b, - 0x0010635e, 0x00106360, 0x1c01f000, 0x640c0801, + 0x40100000, 0x0c01f001, 0x00106642, 0x00106643, + 0x00106645, 0x00106647, 0x00106649, 0x0010664b, + 0x0010664e, 0x00106650, 0x1c01f000, 0x640c0801, 0x1c01f000, 0x64000801, 0x1c01f000, 0x641c0801, 0x1c01f000, 0x64100801, 0x0501f086, 0x64140801, 0x0501f88a, 0x0501f086, 0x64140801, 0x1c01f000, 0x64140801, 0x0501f07f, 0x40100000, 0x0c01f001, - 0x0010636c, 0x0010636e, 0x0010636f, 0x00106371, - 0x00106373, 0x00106375, 0x00106378, 0x0010637a, + 0x0010665c, 0x0010665e, 0x0010665f, 0x00106661, + 0x00106663, 0x00106665, 0x00106668, 0x0010666a, 0x64080801, 0x1c01f000, 0x1c01f000, 0x64000801, 0x1c01f000, 0x641c0801, 0x1c01f000, 0x64100801, 0x0501f06c, 0x64140801, 0x0501f870, 0x0501f06c, 0x64140801, 0x1c01f000, 0x64140801, 0x0501f065, - 0x40100000, 0x0c01f001, 0x00106386, 0x00106388, - 0x00106388, 0x00106389, 0x00106388, 0x0010638b, - 0x0010638e, 0x00106390, 0x64080801, 0x1c01f000, + 0x40100000, 0x0c01f001, 0x00106676, 0x00106678, + 0x00106678, 0x00106679, 0x00106678, 0x0010667b, + 0x0010667e, 0x00106680, 0x64080801, 0x1c01f000, 0x1c01f000, 0x641c0801, 0x1c01f000, 0x64140801, 0x0501f85a, 0x0501f056, 0x64140801, 0x1c01f000, 0x64140801, 0x0501f04f, 0x40100000, 0x0c01f001, - 0x001063a0, 0x001063a0, 0x001063a0, 0x0010639c, - 0x0010639e, 0x001063a0, 0x001063a0, 0x001063a0, + 0x00106690, 0x00106690, 0x00106690, 0x0010668c, + 0x0010668e, 0x00106690, 0x00106690, 0x00106690, 0x641c0801, 0x1c01f000, 0x64100801, 0x1c01f000, - 0x1c01f000, 0x40100000, 0x0c01f001, 0x001063ab, - 0x001063ad, 0x001063ad, 0x001063ae, 0x001063b0, - 0x001063b2, 0x001063b2, 0x001063b2, 0x64080801, + 0x1c01f000, 0x40100000, 0x0c01f001, 0x0010669b, + 0x0010669d, 0x0010669d, 0x0010669e, 0x001066a0, + 0x001066a2, 0x001066a2, 0x001066a2, 0x64080801, 0x1c01f000, 0x1c01f000, 0x641c0801, 0x1c01f000, 0x64100801, 0x0501f02f, 0x64200801, 0x1c01f000, - 0x40100000, 0x0c01f001, 0x001063be, 0x001063c0, - 0x001063c2, 0x001063c2, 0x001063c3, 0x001063c5, - 0x001063c5, 0x001063c5, 0x64080801, 0x1c01f000, + 0x40100000, 0x0c01f001, 0x001066ae, 0x001066b0, + 0x001066b2, 0x001066b2, 0x001066b3, 0x001066b5, + 0x001066b5, 0x001066b5, 0x64080801, 0x1c01f000, 0x640c0801, 0x1c01f000, 0x1c01f000, 0x64100801, 0x0501f01c, 0x64200801, 0x1c01f000, 0x40100000, - 0x0c01f001, 0x001063d1, 0x001063d1, 0x001063d3, - 0x001063d4, 0x001063d6, 0x001063d3, 0x001063d8, - 0x001063d3, 0x64140801, 0x0501f00b, 0x1c01f000, + 0x0c01f001, 0x001066c1, 0x001066c1, 0x001066c3, + 0x001066c4, 0x001066c6, 0x001066c3, 0x001066c8, + 0x001066c3, 0x64140801, 0x0501f00b, 0x1c01f000, 0x641c0801, 0x1c01f000, 0x64100801, 0x1c01f000, 0x64200801, 0x1c01f000, 0x64240801, 0x1c01f000, - 0x1c01f000, 0x42000000, 0x0010e38f, 0x0535f3fd, - 0x42000000, 0x0010e38c, 0x0535f3fa, 0x42000000, - 0x0010e38e, 0x0535f3f7, 0x42000000, 0x0010e38d, - 0x0535f3f4, 0x42000800, 0x0010dce7, 0x58040001, + 0x1c01f000, 0x42000000, 0x00112330, 0x0539f088, + 0x42000000, 0x0011232d, 0x0539f085, 0x42000000, + 0x0011232f, 0x0539f082, 0x42000000, 0x0011232e, + 0x0539f07f, 0x42000800, 0x00111c6d, 0x58040001, 0x48000800, 0x64140801, 0x64200802, 0x1c01f000, - 0x42000800, 0x0010dce7, 0x58040001, 0x48000800, + 0x42000800, 0x00111c6d, 0x58040001, 0x48000800, 0x64040801, 0x64280802, 0x1c01f000, 0x42000800, - 0x0010dce7, 0x58040001, 0x48000800, 0x64180801, - 0x64240802, 0x1c01f000, 0x42000800, 0x0010dce7, + 0x00111c6d, 0x58040001, 0x48000800, 0x64180801, + 0x64240802, 0x1c01f000, 0x42000800, 0x00111c6d, 0x64280801, 0x64280800, 0x1c01f000, 0x496fc857, - 0x4813c857, 0x40100000, 0x0c01f001, 0x0010641d, - 0x0010641d, 0x0010641d, 0x0010641d, 0x0010640f, - 0x00106417, 0x0010641b, 0x0010641d, 0x59a80249, + 0x4813c857, 0x40100000, 0x0c01f001, 0x0010670d, + 0x0010670d, 0x0010670d, 0x0010670d, 0x001066ff, + 0x00106707, 0x0010670b, 0x0010670d, 0x59a8024c, 0x8c000506, 0x05000003, 0x8c000502, 0x0500000a, 0x0501f80a, 0x05fe07cb, 0x0501f007, 0x0501f807, 0x05000005, 0x05fdffca, 0x05fdf7cc, 0x0501f803, 0x05fe07ca, 0x1c01f000, 0x496fc857, 0x416c0000, - 0x90000c88, 0x05d219b9, 0x0c01f001, 0x0010642b, - 0x0010642d, 0x0010642d, 0x0010642d, 0x0010642b, - 0x0010642b, 0x0010642b, 0x0010642d, 0x80000580, + 0x90000c88, 0x05ce1f04, 0x0c01f001, 0x0010671b, + 0x0010671d, 0x0010671d, 0x0010671d, 0x0010671b, + 0x0010671b, 0x0010671b, 0x0010671d, 0x80000580, 0x1c01f000, 0x90000541, 0x1c01f000, 0x59a80005, 0x8c000506, 0x05020002, 0x1c01f000, 0x41781800, - 0x42000800, 0x0010dce7, 0x58040001, 0x40002000, - 0x0c01f001, 0x0010644d, 0x00106446, 0x00106445, - 0x00106444, 0x0010644e, 0x00106448, 0x00106447, - 0x00106452, 0x00106448, 0x00106445, 0x0010644d, + 0x42000800, 0x00111c6d, 0x58040001, 0x40002000, + 0x0c01f001, 0x0010673d, 0x00106736, 0x00106735, + 0x00106734, 0x0010673e, 0x00106738, 0x00106737, + 0x00106742, 0x00106738, 0x00106735, 0x0010673d, 0x800c1800, 0x800c1800, 0x800c1800, 0x800c1800, - 0x800c1800, 0x60dc1100, 0x05f1fb92, 0x481350a8, - 0x1c01f000, 0x1c01f000, 0x59a800a8, 0x90000584, - 0x05fe07f7, 0x05fdf7fc, 0x59a800a8, 0x90000587, - 0x05fe07f2, 0x05fdf7f8, 0x64075042, 0x4a035041, - 0x0000aaaa, 0x05fdf3d8, 0x6002e000, 0x850e1d56, + 0x800c1800, 0x60dc1100, 0x05f1fa3f, 0x481350ab, + 0x1c01f000, 0x1c01f000, 0x59a800ab, 0x90000584, + 0x05fe07f7, 0x05fdf7fc, 0x59a800ab, 0x90000587, + 0x05fe07f2, 0x05fdf7f8, 0x64075045, 0x4a035044, + 0x0000aaaa, 0x05fdf3cc, 0x6002e000, 0x850e1d56, 0x497b3000, 0x4a03b004, 0x60000001, 0x59d80005, 0x4a03b004, 0x90000001, 0x59d80005, 0x4a03a804, 0x60000001, 0x59d40005, 0x4a03a804, 0x90000001, - 0x0501ff88, 0x0501f774, 0x58f25801, 0x4a03b004, + 0x0505f820, 0x0505f00c, 0x58f25801, 0x4a03b004, 0x10000000, 0x592c4200, 0x58201000, 0x592c220c, - 0x592cba0a, 0x0001f7ca, 0x6413c825, 0x6413c827, + 0x592cba0a, 0x0001f7f1, 0x6413c825, 0x6413c827, 0x599c0409, 0x80000d40, 0x0500001f, 0x599c0407, 0x80000540, 0x05000007, 0x800000cc, 0x599c100b, 0x80080400, 0x4803b000, 0x497bb002, 0x59d80001, @@ -6480,332 +6668,351 @@ static const uint32_t isp_2500_risc_code[] = { 0x4803a803, 0x6423a809, 0x4a03a804, 0x10000001, 0x59e00803, 0x82040d00, 0xfffffbff, 0x82040d40, 0x00008000, 0x4807c003, 0x800409c0, 0x05000004, - 0x6006e000, 0x0004bb27, 0x0004f33b, 0x1c01f000, - 0x05d1f91e, 0x1c01f000, 0x0501f866, 0x5c03e000, - 0x0005f0d6, 0x592c1c08, 0x820c1500, 0x000000ff, - 0x800c1910, 0x820c0c00, 0x0010de60, 0x50040800, - 0x480a5c08, 0x800409c0, 0x000600ca, 0x492fc857, - 0x480fc857, 0x800c19c0, 0x05d0090c, 0x42000800, - 0x0010de60, 0x50040800, 0x48065802, 0x0501f866, - 0x0005f0d3, 0x59980000, 0x80000540, 0x000400bb, - 0x0505f00a, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106532, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00020a36, - 0x00106524, 0x00106524, 0x00106532, 0x00106532, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00020a36, - 0x492fc857, 0x497a5805, 0x42000000, 0x0010e44f, - 0x0535fab4, 0x60000008, 0x0501f015, 0x492fc857, - 0x497a5805, 0x42000000, 0x0010e44e, 0x0535faad, + 0x6006e000, 0x0004bb5d, 0x0004f371, 0x1c01f000, + 0x05cdfe69, 0x1c01f000, 0x0501f866, 0x5c03e000, + 0x0005f0fd, 0x592c1c08, 0x820c1500, 0x000000ff, + 0x800c1910, 0x820c0c00, 0x00111dfa, 0x50040800, + 0x480a5c08, 0x800409c0, 0x000600f1, 0x492fc857, + 0x480fc857, 0x800c19c0, 0x05cc0e57, 0x42000800, + 0x00111dfa, 0x50040800, 0x48065802, 0x0501f866, + 0x0005f0fa, 0x59980000, 0x80000540, 0x000400e2, + 0x0505f0a2, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106822, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00020a6c, + 0x00106814, 0x00106814, 0x00106822, 0x00106822, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00020a6c, + 0x492fc857, 0x497a5805, 0x42000000, 0x001123f3, + 0x0535ff3f, 0x60000008, 0x0501f015, 0x492fc857, + 0x497a5805, 0x42000000, 0x001123f2, 0x0535ff38, 0x60000020, 0x0501f00e, 0x492fc857, 0x497a5805, - 0x42000000, 0x0010e44d, 0x0535faa6, 0x60000040, - 0x0501f007, 0x492fc857, 0x42000000, 0x0010e450, - 0x0535faa0, 0x60000010, 0x0501f001, 0x4803c857, + 0x42000000, 0x001123f1, 0x0535ff31, 0x60000040, + 0x0501f007, 0x492fc857, 0x42000000, 0x001123f4, + 0x0535ff2b, 0x60000010, 0x0501f001, 0x4803c857, 0x592c0c08, 0x82040d00, 0xffff80ff, 0x80040540, 0x59980801, 0x800409c0, 0x05000002, 0x8400051e, - 0x48025c08, 0x0005f9f3, 0x0501febe, 0x0001fb82, + 0x48025c08, 0x0005fa1a, 0x0501ff56, 0x0001fba8, 0x91700583, 0x6006e000, 0x05000002, 0x1c01f000, - 0x58f25802, 0x812e59c0, 0x05fe07e0, 0x05d1f887, + 0x58f25802, 0x812e59c0, 0x05fe07e0, 0x05cdfdd2, 0x60081000, 0x60000801, 0x60401800, 0x0501f004, 0x600c1000, 0x41780800, 0x60181800, 0x492fc857, 0x480bc857, 0x592c0208, 0x82000500, 0x000000ff, - 0xb00005aa, 0x05000004, 0x480e5a0a, 0x0001fb82, + 0xb00005aa, 0x05000004, 0x480e5a0a, 0x0001fba8, 0x0501f00a, 0x4d400000, 0x4c300000, 0x497a5c0c, - 0x497a5c0d, 0x400a8000, 0x05fdf8c1, 0x0001fb82, + 0x497a5c0d, 0x400a8000, 0x05fdf8b5, 0x0001fba8, 0x5c006000, 0x5c028000, 0x6006e000, 0x4a006002, - 0x00000100, 0x5832580a, 0x4978600a, 0x05d1fc1f, + 0x00000100, 0x5832580a, 0x4978600a, 0x05d1f966, 0x5c025800, 0x1c01f000, 0x492fc857, 0x80140110, - 0x05fc07b3, 0x80000040, 0x05000026, 0x4a01e007, - 0x001065a0, 0x0005f0df, 0x492fc857, 0x0535fb6d, - 0x00060220, 0x492fc856, 0x83440400, 0x0010d400, - 0x50000000, 0x80026d40, 0x0500000b, 0x592e4414, - 0x81224110, 0x59340013, 0x80000130, 0x81200580, - 0x05020005, 0x4937c857, 0x59340200, 0x8c00050e, - 0x00060220, 0x60a28000, 0x41780800, 0x417a6000, - 0x05fdf897, 0x0525f88f, 0x0001f382, 0x82000500, - 0x0f000000, 0x8000012a, 0x592c0c0e, 0x82040d00, - 0x0000ff87, 0x80040540, 0x48025c0e, 0x0005f233, - 0x492fc857, 0x592c040c, 0x80000540, 0x05fe0796, - 0x8d0c050e, 0x05020008, 0x592c020b, 0x80000540, - 0x05fc0791, 0x497a5a0a, 0x05f5fd45, 0x05020003, - 0x1c01f000, 0x60a00000, 0x48025a0a, 0x0001f382, - 0x592e8a0a, 0x592c040a, 0x4947c857, 0x4803c857, - 0x82000500, 0x000000ff, 0x6004b800, 0x90000d81, - 0x0500000e, 0x417a8800, 0x61c0b80f, 0x90000d82, - 0x0500000a, 0x80000540, 0x00020382, 0x592e8a0a, - 0x0001fb00, 0x00020382, 0x592e900c, 0x592e980d, - 0x05f9f914, 0x0001f382, 0x850e1d00, 0x0001fb00, - 0x05f809f9, 0x81468800, 0x805cb840, 0x05fe07fc, - 0x0001f382, 0x592c0a0c, 0x4807c857, 0x592e4414, - 0x81224110, 0x9004058e, 0x0500006e, 0x900405aa, - 0x05000022, 0x9004058f, 0x05000624, 0x900405ae, - 0x05000622, 0xb0040589, 0x05000620, 0x4c040000, - 0x0501fd7d, 0x5c000800, 0x05020620, 0xb0040586, - 0x0500007f, 0xb0040585, 0x0500002c, 0x900405a9, - 0x0502061a, 0x592e8a0a, 0x42026800, 0x00110210, - 0x83440580, 0x0000ffff, 0x05000006, 0x05f9fc8e, - 0x0502060e, 0x59340200, 0x84000518, 0x48026a00, - 0x592e600d, 0x4933c857, 0x83300580, 0xffffffff, - 0x05020070, 0x0501f605, 0x83200580, 0x000000ff, - 0x05000008, 0x83200400, 0x0010d17b, 0x50024800, - 0x59240a00, 0x84040d16, 0x48064a00, 0x0501f5fb, - 0x42024800, 0x0010e512, 0x0535faf2, 0x59240200, - 0x8c000500, 0x05000004, 0x59240200, 0x84000516, - 0x48024a00, 0x91264c0d, 0x8058b040, 0x05fe07f8, - 0x850e1d04, 0x0501f5ed, 0x592c140b, 0x480bc857, - 0x0525fb49, 0x411e6000, 0x05020003, 0x4803c856, - 0x0501f5ea, 0x59300c07, 0x90040584, 0x05000003, - 0x4803c856, 0x0501f5e5, 0x592c020b, 0x8c000506, - 0x05000009, 0x050dfef6, 0x4df00000, 0x050dfdf7, - 0x050dfbc0, 0x5c03e000, 0x050c0ee2, 0x0515fdad, - 0x0501f5d6, 0x592e380d, 0x591c1416, 0x8c080516, - 0x050005d6, 0x59300009, 0x800001c0, 0x05ce0faf, - 0x84081554, 0x480a3c16, 0x64ea6403, 0x592c040f, - 0x80000540, 0x05000006, 0x64ee6403, 0x592c0415, - 0x4802641c, 0x592c0215, 0x4802621c, 0x64066203, - 0x42000800, 0x80000040, 0x0501fdcb, 0x05000003, - 0x492e6009, 0x0005f6ab, 0x0005feab, 0x0501f5bb, - 0x83200d80, 0x000000ff, 0x05000010, 0x42000000, - 0x0010e511, 0x50000000, 0x81200480, 0x050211c1, - 0x83200400, 0x0010d17b, 0x50024800, 0x59240200, - 0x8c000500, 0x050001bb, 0x59240206, 0x84000510, - 0x48024a06, 0x0501f5a9, 0x42024800, 0x0010e512, - 0x0535faa0, 0x59240200, 0x8c000500, 0x05000004, - 0x59240206, 0x84000510, 0x48024a06, 0x91264c0d, - 0x8058b040, 0x05fe07f8, 0x0501f59c, 0x592c120b, - 0x8c080500, 0x05020599, 0x592e8a0a, 0x592e600d, - 0x0525fafe, 0x05020003, 0x4803c856, 0x0501f597, + 0x05fc07b3, 0x80000040, 0x05000023, 0x4a01e007, + 0x0010688d, 0x0005f106, 0x492fc857, 0x0535fff8, + 0x00060249, 0x492fc856, 0x0001fb08, 0x0502000b, + 0x592e4414, 0x81224110, 0x59340013, 0x80000130, + 0x81200580, 0x05020005, 0x4937c857, 0x59340200, + 0x8c00050e, 0x00060249, 0x60a28000, 0x41780800, + 0x417a6000, 0x05fdf88e, 0x0525fb3b, 0x0001f3a8, + 0x82000500, 0x0f000000, 0x8000012a, 0x592c0c0e, + 0x82040d00, 0x0000ff87, 0x80040540, 0x48025c0e, + 0x0005f25f, 0x492fc857, 0x592c040c, 0x80000540, + 0x05fe0799, 0x8d0c050e, 0x05020008, 0x592c020b, + 0x80000540, 0x05fc0794, 0x497a5a0a, 0x05f5fc4f, + 0x05020003, 0x1c01f000, 0x60a00000, 0x48025a0a, + 0x0001f3a8, 0x592e8a0a, 0x592c040a, 0x4947c857, + 0x4803c857, 0x82000500, 0x000000ff, 0x6004b800, + 0x90000d81, 0x0500000e, 0x417a8800, 0x59a8b8ac, + 0x90000d82, 0x0500000a, 0x80000540, 0x000203a8, + 0x592e8a0a, 0x0001fb08, 0x000203a8, 0x592e900c, + 0x592e980d, 0x05f9f88d, 0x0001f3a8, 0x850e1d00, + 0x0001fb08, 0x05f80976, 0x81468800, 0x83440580, + 0x000007f0, 0x05020002, 0x60028810, 0x805cb840, + 0x05fe07f8, 0x0001f3a8, 0x592c0a0c, 0x4807c857, + 0x592e4414, 0x81224110, 0x9004058e, 0x05000074, + 0x900405aa, 0x05000028, 0x9004058f, 0x050006bb, + 0x900405ae, 0x050006b9, 0xb0040589, 0x050006b7, + 0x4c040000, 0x0501fdf4, 0x5c000800, 0x05000007, + 0x812649c0, 0x050006b5, 0x592c020a, 0x82000580, + 0x000007fe, 0x050206b1, 0xb0040586, 0x0500007f, + 0xb0040585, 0x0500002c, 0x900405a9, 0x050206ab, + 0x592e8a0a, 0x42026800, 0x001141b4, 0x83440580, + 0x0000ffff, 0x05000006, 0x05f9fc60, 0x0502069f, + 0x59340200, 0x84000518, 0x48026a00, 0x592e600d, + 0x4933c857, 0x83300580, 0xffffffff, 0x05020070, + 0x0501f696, 0x83200580, 0x000000ff, 0x05000008, + 0x83200400, 0x0010d8f9, 0x50024800, 0x59240a00, + 0x84040d16, 0x48064a00, 0x0501f68c, 0x42024800, + 0x001124b6, 0x0535ff76, 0x59240200, 0x8c000500, + 0x05000004, 0x59240200, 0x84000516, 0x48024a00, + 0x91264c0d, 0x8058b040, 0x05fe07f8, 0x850e1d04, + 0x0501f67e, 0x592c140b, 0x480bc857, 0x0525fdee, + 0x411e6000, 0x05020003, 0x4803c856, 0x0501f67b, 0x59300c07, 0x90040584, 0x05000003, 0x4803c856, - 0x0501f592, 0x59300a03, 0x90040587, 0x05000003, - 0x4803c856, 0x0501f58d, 0x59300c03, 0x90040581, - 0x0500001b, 0x90040582, 0x0500000e, 0x90040588, - 0x05000010, 0x9004058a, 0x05000005, 0x9004058c, - 0x05020021, 0x60240800, 0x0501f01e, 0x5932680a, - 0x05f9fbba, 0x0502001c, 0x60140800, 0x0501f019, - 0x417a7800, 0x05ddfca7, 0x64066407, 0x0501f006, - 0x592c120b, 0x8c08050e, 0x05000003, 0x0535facb, - 0x05020018, 0x600c0800, 0x0501f00e, 0x83340580, - 0x00110210, 0x05020007, 0x5930000a, 0x82000580, - 0x00110210, 0x05020569, 0x64066407, 0x0501f006, - 0x417a7800, 0x05ddfc93, 0x64066407, 0x602c0800, - 0x05f5fe51, 0x64066203, 0x0501fd67, 0x05000003, - 0x492e6009, 0x050df1d0, 0x050df9cf, 0x0501f557, - 0x64266403, 0x592c0215, 0x4802621c, 0x592c0415, - 0x4802641c, 0x05fdf7f4, 0x59300416, 0x8c000518, - 0x053203ff, 0x0501f097, 0x40000800, 0x58040000, - 0x80000540, 0x05fe07fd, 0x492c0800, 0x1c01f000, - 0x492fc857, 0x59300c07, 0x90040586, 0x0502008a, - 0x59340400, 0x82000580, 0x00000606, 0x05020004, - 0x59340200, 0x8c00051a, 0x000402b8, 0x59340200, - 0x8c00050e, 0x05000080, 0x59300203, 0x60067800, - 0x90000587, 0x000602b8, 0x640a6203, 0x0005f2b8, - 0x600a8000, 0x64526006, 0x4d2c0000, 0x052dfe56, + 0x0501f676, 0x592c020b, 0x8c000506, 0x05000009, + 0x0511f8bd, 0x4df00000, 0x050dffbd, 0x050dfd82, + 0x5c03e000, 0x051008a9, 0x0515ffcb, 0x0501f667, + 0x592e380d, 0x591c1416, 0x8c080516, 0x05000667, + 0x59300009, 0x800001c0, 0x05ce0cf3, 0x84081554, + 0x480a3c16, 0x64ea6403, 0x592c040f, 0x80000540, + 0x05000006, 0x64ee6403, 0x592c0415, 0x4802641c, + 0x592c0215, 0x4802621c, 0x64066203, 0x42000800, + 0x80000040, 0x0501fe5c, 0x05000003, 0x492e6009, + 0x0005f6e2, 0x0005fee2, 0x0501f64c, 0x83200d80, + 0x000000ff, 0x05000010, 0x42000000, 0x001124b5, + 0x50000000, 0x81200480, 0x050211dd, 0x83200400, + 0x0010d8f9, 0x50024800, 0x59240200, 0x8c000500, + 0x050001d7, 0x59240206, 0x84000510, 0x48024a06, + 0x0501f63a, 0x42024800, 0x001124b6, 0x0535ff24, + 0x59240200, 0x8c000500, 0x05000004, 0x59240206, + 0x84000510, 0x48024a06, 0x91264c0d, 0x8058b040, + 0x05fe07f8, 0x0501f62d, 0x592c120b, 0x8c080500, + 0x0502062a, 0x592e8a0a, 0x592e600d, 0x0525fda3, + 0x05020003, 0x4803c856, 0x0501f628, 0x59300c07, + 0x90040584, 0x05000003, 0x4803c856, 0x0501f623, + 0x59300a03, 0x90040587, 0x05000003, 0x4803c856, + 0x0501f61e, 0x83440580, 0x000007fe, 0x05020007, + 0x59240200, 0x82000500, 0x00000180, 0x05000003, + 0x0009f810, 0x0501f611, 0x59300c03, 0x90040581, + 0x05000021, 0x90040582, 0x05000014, 0x90040588, + 0x05000016, 0x9004058a, 0x05000005, 0x9004058c, + 0x05020027, 0x60240800, 0x0501f024, 0x592c0a0b, + 0x8c040510, 0x05000004, 0x48066216, 0x592c0816, + 0x4806601e, 0x5932680a, 0x05f9fb7d, 0x0502001c, + 0x60140800, 0x0501f019, 0x417a7800, 0x05ddfa38, + 0x64066407, 0x0501f006, 0x592c120b, 0x8c08050e, + 0x05000003, 0x0535ff40, 0x05020018, 0x600c0800, + 0x0501f00e, 0x83340580, 0x001141b4, 0x05020007, + 0x5930000a, 0x82000580, 0x001141b4, 0x050205eb, + 0x64066407, 0x0501f006, 0x417a7800, 0x05ddfa24, + 0x64066407, 0x602c0800, 0x05f5fd5e, 0x64066203, + 0x0501fde9, 0x05000003, 0x492e6009, 0x050df383, + 0x050dfb82, 0x0501f5d9, 0x64266403, 0x592c0215, + 0x4802621c, 0x592c0415, 0x4802641c, 0x05fdf7f4, + 0x59300416, 0x8c000518, 0x05360043, 0x0501f09c, + 0x40000800, 0x58040000, 0x80000540, 0x05fe07fd, + 0x492c0800, 0x1c01f000, 0x492fc857, 0x59300c07, + 0x90040586, 0x0502008f, 0x59340400, 0x82000580, + 0x00000606, 0x05020004, 0x59340200, 0x8c00051a, + 0x000402ed, 0x59340200, 0x8c00050e, 0x05000085, + 0x59300203, 0x60067800, 0x90000587, 0x000602ed, + 0x640a6203, 0x0005f2ed, 0x0501feda, 0x05020068, + 0x600a8000, 0x64526006, 0x4d2c0000, 0x0531fa4b, 0x5c025800, 0x59300c07, 0x4807c857, 0x90040587, - 0x0502005f, 0x492fc857, 0x64065a0a, 0x0001f382, - 0x83300580, 0xffffffff, 0x05020059, 0x592c240e, + 0x05020062, 0x492fc857, 0x64065a0a, 0x0001f3a8, + 0x83300580, 0xffffffff, 0x0502005c, 0x592c240e, 0x492fc857, 0x4813c857, 0x8c10051c, 0x05020017, - 0x8c10051a, 0x05000003, 0x8c10050a, 0x05000065, + 0x8c10051a, 0x05000003, 0x8c10050a, 0x05000068, 0x59340a00, 0x8c04050e, 0x05000003, 0x8c10051e, - 0x05000060, 0x0005ffbf, 0x05000068, 0x592c240e, + 0x05000063, 0x0005fff6, 0x05000098, 0x592c240e, 0x59243a00, 0x592c0210, 0x48026202, 0x4936600a, 0x4926601d, 0x4932580d, 0x4a026007, 0x00068000, - 0x641e6203, 0x0005f2b3, 0x592c0a10, 0x4c040000, - 0x05f9fe24, 0x5c000800, 0x05020073, 0x58080000, + 0x641e6203, 0x0005f2e8, 0x592c0a10, 0x4c040000, + 0x05f9fdf1, 0x5c000800, 0x05020076, 0x58080000, 0x49781000, 0x802041c0, 0x05000006, 0x48004000, 0x80000540, 0x05020007, 0x48226810, 0x0501f005, 0x4802680f, 0x80000540, 0x05020002, 0x497a6810, - 0x4d2c0000, 0x400a5800, 0x640a5a0a, 0x0001fb82, - 0x5c025800, 0x05fdf7c8, 0x8c10051c, 0x000602a4, - 0x0501f020, 0x4c100000, 0x05f9fb6b, 0x5c002000, - 0x0004027a, 0x42000000, 0x0010e511, 0x50000000, - 0x81200480, 0x0502102c, 0x8c10051c, 0x05000015, + 0x4d2c0000, 0x400a5800, 0x640a5a0a, 0x0001fba8, + 0x5c025800, 0x05fdf7c8, 0x8c10051c, 0x000602da, + 0x0501f020, 0x4c100000, 0x05f9fb2c, 0x5c002000, + 0x000402b0, 0x42000000, 0x001124b5, 0x50000000, + 0x81200480, 0x0502102f, 0x8c10051c, 0x05000015, 0x592c020a, 0x82000580, 0x0000ffff, 0x05020011, 0x592e600d, 0x83300580, 0xffffffff, 0x05fc07b2, - 0x0525ff87, 0x0502000e, 0x592c2210, 0x59300202, - 0x80100580, 0x0502000a, 0x59300009, 0x800001c0, - 0x05020004, 0x59300203, 0x90000587, 0x05fc079d, - 0x492fc857, 0x64a65a0a, 0x0001f382, 0x492fc857, - 0x64225a0a, 0x0001f382, 0x4803c857, 0x8c000514, - 0x05000007, 0x42000000, 0x0010e439, 0x0535f8a5, - 0x492fc857, 0x492e6009, 0x1c01f000, 0x492fc857, - 0x65165a0a, 0x0001f382, 0x492fc857, 0x64aa5a0a, - 0x0001f382, 0x492fc857, 0x64a25a0a, 0x0001f382, - 0x492fc857, 0x641a5a0a, 0x0001f382, 0x492fc857, - 0x643a5a0a, 0x0001f382, 0x90040587, 0x05fe07e4, - 0x640a5a0a, 0x0001f382, 0x05f9fe7a, 0x05020006, - 0x42000000, 0x0010e445, 0x0535f88a, 0x0529fb00, - 0x05fe0793, 0x592c040a, 0x800000c2, 0x800008c4, - 0x80040400, 0x48025807, 0x59340010, 0x492e6810, - 0x492fc857, 0x80000d40, 0x05000003, 0x492c0800, - 0x1c01f000, 0x59340203, 0x492e680f, 0x492fc857, - 0x4803c857, 0x80000540, 0x05020002, 0x64066a03, - 0x1c01f000, 0x59a8003b, 0x81640480, 0x05fe1766, - 0x42026000, 0x00111b00, 0x59300407, 0x90000586, - 0x05020007, 0x5930000a, 0x81340580, 0x05020004, - 0x59300202, 0x80040580, 0x05fc0752, 0x91326430, - 0x41580000, 0x81300480, 0x05fc17f4, 0x05fdf756, - 0x492fc857, 0x592e4414, 0x81224110, 0x0501fbda, - 0x05020052, 0x0501fac2, 0x05020050, 0x592c0208, - 0x80000112, 0x05fe05a6, 0x592e8a0a, 0x05f9faf2, - 0x0502004a, 0x05f9fa9c, 0x0502004a, 0x592e780e, - 0x493fc857, 0x8d3c053e, 0x05020005, 0x8d0c050e, - 0x05020042, 0x05f9f83a, 0x05fc05a7, 0x913c1d1f, - 0x05fc05a5, 0x592c020b, 0x82000c80, 0x00001000, - 0x05fe15a1, 0x800000c2, 0x800008c4, 0x8005d400, - 0x592e900c, 0x592e980d, 0x5934080d, 0x800409c0, - 0x05000004, 0x58041805, 0x800c19c0, 0x0502002b, - 0x913c1d1f, 0x81780040, 0x80000000, 0x800c1902, - 0x05fe17fe, 0x05fe0590, 0x0c01f001, 0x001067b0, - 0x001067b2, 0x001067bb, 0x001067bd, 0x001067bf, - 0x0521fd28, 0x0501f019, 0x05f5fff3, 0x0500001d, - 0x80e9d1c0, 0x05060f18, 0x60168000, 0x417a9000, - 0x417a9800, 0x0521fd2b, 0x0501f010, 0x61367000, - 0x0501f004, 0x613a7000, 0x0501f002, 0x614a7000, - 0x5934080d, 0x800409c0, 0x05000006, 0x4d3c0000, - 0x40067800, 0x05f5ffc4, 0x5c027800, 0x05000007, - 0x05f5fed1, 0x05220d49, 0x05000006, 0x8d3c053e, - 0x0502000a, 0x1c01f000, 0x64c25a0a, 0x0501f009, - 0x64b25a0a, 0x0501f007, 0x64a25a0a, 0x0501f005, - 0x64a65a0a, 0x0501f003, 0x497a580d, 0x64025a0a, - 0x4a025a08, 0x00000103, 0x0001f382, 0x492fc857, - 0x80140110, 0x80000040, 0x05000002, 0x05fdf54c, - 0x0501fa6a, 0x0502001e, 0x592c020b, 0x82000500, - 0x00003fff, 0x48025a0b, 0x8c000506, 0x05000003, - 0xb0000530, 0x05020003, 0x8d0c050e, 0x05020014, - 0x4a025a0a, 0x0000dead, 0x592c040c, 0x82000500, - 0x0000f0ff, 0x48025c0c, 0x05f5fb29, 0x05020002, - 0x1c01f000, 0x49425a0a, 0x8058b1c0, 0x05000007, - 0x0525fb22, 0x0501f80a, 0x44042800, 0x90580582, - 0x05020002, 0x48082801, 0x0001f382, 0x60c68000, - 0x60040800, 0x6004b000, 0x05fdf7f3, 0x592c040c, - 0x80000118, 0x912c2c0d, 0x80142c00, 0x1c01f000, - 0x492fc857, 0x641a5a0c, 0x0001f382, 0x492fc857, - 0x64065a0c, 0x0001f382, 0x492fc857, 0x592e7c0a, - 0x833c0500, 0xfffffffe, 0x05020044, 0x592c400b, - 0x42026000, 0x00111b00, 0x41581800, 0x400c0000, - 0x81300480, 0x05021028, 0x59300203, 0x90000580, - 0x0500000c, 0x59300009, 0x80000d40, 0x05000009, - 0x58043003, 0x58183211, 0x592c020c, 0x80180580, - 0x05020004, 0x58040009, 0x80200580, 0x05000003, - 0x91326430, 0x05fdf7ee, 0x58040208, 0x82000500, - 0x000000ff, 0xb0000d93, 0x0500000d, 0xb0000d88, - 0x0500000b, 0x90000d98, 0x05000009, 0x90000da9, - 0x05000007, 0x90000d94, 0x05000005, 0xb00005a8, - 0x05000003, 0x90000582, 0x05fe07ee, 0x4d2c0000, - 0x051dffd9, 0x5c025800, 0x05000018, 0x64025a0a, - 0x0001f382, 0x592e8a0a, 0x83440480, 0x000007f0, - 0x05021012, 0x83440400, 0x0010d400, 0x50000000, - 0x80026d40, 0x0500000d, 0x4d2c0000, 0x05f5ff16, - 0x05000009, 0x60168000, 0x592c0a0c, 0x417a6000, - 0x05f9fddb, 0x0521fdd8, 0x0001fb82, 0x5c025800, - 0x05fdf7eb, 0x5c025800, 0x64c65a0a, 0x0001f382, - 0x492fc857, 0x592c020a, 0x90000586, 0x05000003, - 0x0501f9ee, 0x05020019, 0x4d2c0000, 0x05d1f923, - 0x05000011, 0x492fc857, 0x412f4000, 0x05d1f91f, - 0x0500000b, 0x492fc857, 0x412dd800, 0x05f1f84e, - 0x05f1f85d, 0x49a1d80b, 0x5c025800, 0x492dd80a, - 0x48ef4006, 0x05e1f8ea, 0x05e1f101, 0x41a25800, - 0x05d1f922, 0x5c025800, 0x4a025a0a, 0x00004005, - 0x640a5c0a, 0x0001f382, 0x4a025a0a, 0x00004001, - 0x0001f382, 0x4807c857, 0x485fc857, 0x6004b800, - 0x5c000800, 0x4c5c0000, 0x0501f005, 0x4807c857, - 0x485fc857, 0x5c000800, 0x4d780000, 0x4803c857, - 0x492fc857, 0x8c00050e, 0x05ce0d4d, 0x4203e000, - 0x50000000, 0x600cb900, 0x05cdf554, 0x492fc857, - 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4d040000, - 0x4d2c0000, 0x4d200000, 0x4d240000, 0x4c540000, - 0x4c500000, 0x4c580000, 0x417a4000, 0x59a800d1, - 0x90000506, 0x05020141, 0x0501f9a2, 0x05020143, - 0x916c0580, 0x0500013d, 0x592cca0b, 0x592cc40b, - 0x8060c1c0, 0x0500013d, 0x42000000, 0x0010e511, - 0x50000000, 0x4c000000, 0x0535f86f, 0x5c000000, - 0x05000002, 0x80000000, 0x80600480, 0x05021133, + 0x0529fa25, 0x05020011, 0x592c2210, 0x59300202, + 0x80100580, 0x0502000d, 0x59300009, 0x800001c0, + 0x05020004, 0x59300203, 0x90000587, 0x05fc079b, + 0x492fc857, 0x64a65a0a, 0x0001f3a8, 0x42000000, + 0x001123eb, 0x0535fd1e, 0x492fc857, 0x64225a0a, + 0x0001f3a8, 0x4803c857, 0x8c000514, 0x05000007, + 0x42000000, 0x001123da, 0x0535fd15, 0x492fc857, + 0x492e6009, 0x1c01f000, 0x492fc857, 0x65165a0a, + 0x0001f3a8, 0x492fc857, 0x64aa5a0a, 0x0001f3a8, + 0x492fc857, 0x64a25a0a, 0x0001f3a8, 0x492fc857, + 0x641a5a0a, 0x0001f3a8, 0x492fc857, 0x643a5a0a, + 0x0001f3a8, 0x90040587, 0x05fe07e4, 0x640a5a0a, + 0x0001f3a8, 0x05f9fe49, 0x05020006, 0x42000000, + 0x001123e7, 0x0535fcfa, 0x0529fea8, 0x05fe0790, + 0x592c040a, 0x800000c2, 0x800008c4, 0x80040400, + 0x48025807, 0x59340010, 0x492e6810, 0x492fc857, + 0x80000d40, 0x05000003, 0x492c0800, 0x1c01f000, + 0x59340203, 0x492e680f, 0x492fc857, 0x4803c857, + 0x80000540, 0x05020002, 0x64066a03, 0x1c01f000, + 0x59a8003d, 0x81640480, 0x05fe1763, 0x40be6000, + 0x59300407, 0x90000586, 0x05020007, 0x5930000a, + 0x81340580, 0x05020004, 0x59300202, 0x80040580, + 0x05fc074e, 0x91326430, 0x41580000, 0x81300480, + 0x05fc17f4, 0x05fdf754, 0x05f1fb10, 0x05fe07d2, + 0x59a8029f, 0x80000104, 0x81640480, 0x05fc17ce, + 0x0515fe8c, 0x05fdf762, 0x492fc857, 0x592e4414, + 0x81224110, 0x0501fc30, 0x05020052, 0x0501fb18, + 0x05020050, 0x592c0208, 0x80000112, 0x05fe0584, + 0x592e8a0a, 0x05f9faa9, 0x0502004a, 0x05f9fa53, + 0x0502004a, 0x592e780e, 0x493fc857, 0x8d3c053e, + 0x05020005, 0x8d0c050e, 0x05020042, 0x05f5ff92, + 0x05fc0585, 0x913c1d1f, 0x05fc0583, 0x592c020b, + 0x82000c80, 0x00001000, 0x05fe157f, 0x800000c2, + 0x800008c4, 0x8005d400, 0x592e900c, 0x592e980d, + 0x5934080d, 0x800409c0, 0x05000004, 0x58041805, + 0x800c19c0, 0x0502002b, 0x913c1d1f, 0x81780040, + 0x80000000, 0x800c1902, 0x05fe17fe, 0x05fe056e, + 0x0c01f001, 0x00106ac2, 0x00106ac4, 0x00106acd, + 0x00106acf, 0x00106ad1, 0x0521ffaf, 0x0501f019, + 0x05f5ff4b, 0x0500001d, 0x80e9d1c0, 0x050a0820, + 0x60168000, 0x417a9000, 0x417a9800, 0x0521ffb2, + 0x0501f010, 0x61367000, 0x0501f004, 0x613a7000, + 0x0501f002, 0x614a7000, 0x5934080d, 0x800409c0, + 0x05000006, 0x4d3c0000, 0x40067800, 0x05f5ff1c, + 0x5c027800, 0x05000007, 0x05f5fe25, 0x05220fd0, + 0x05000006, 0x8d3c053e, 0x0502000a, 0x1c01f000, + 0x64c25a0a, 0x0501f009, 0x64b25a0a, 0x0501f007, + 0x64a25a0a, 0x0501f005, 0x64a65a0a, 0x0501f003, + 0x497a580d, 0x64025a0a, 0x4a025a08, 0x00000103, + 0x0001f3a8, 0x492fc857, 0x80140110, 0x80000040, + 0x05000002, 0x05fdf52a, 0x0501fac0, 0x0502001f, + 0x592c020b, 0x82000500, 0x00003fff, 0x48025a0b, + 0x8c000506, 0x05000003, 0xb0000530, 0x05020003, + 0x8d0c050e, 0x05020015, 0x4a025a0a, 0x0000dead, + 0x592c040c, 0x82000500, 0x0000f0ff, 0x48025c0c, + 0x05f5fa16, 0x05020002, 0x1c01f000, 0x49425a0a, + 0x8058b1c0, 0x05000008, 0x0525fdb6, 0x0501f80b, + 0x44042800, 0x8058b040, 0x05000003, 0x48082801, + 0x480c2802, 0x0001f3a8, 0x60c68000, 0x60040800, + 0x6004b000, 0x05fdf7f2, 0x592c040c, 0x80000118, + 0x912c2c0d, 0x80142c00, 0x1c01f000, 0x492fc857, + 0x641a5a0c, 0x0001f3a8, 0x492fc857, 0x64065a0c, + 0x0001f3a8, 0x492fc857, 0x592e7c0a, 0x833c0500, + 0xfffffffe, 0x05020046, 0x592c400b, 0x40be6000, + 0x41581800, 0x400c0000, 0x81300480, 0x0502102a, + 0x59300203, 0x90000580, 0x0500000c, 0x59300009, + 0x80000d40, 0x05000009, 0x58043003, 0x58183211, + 0x592c020c, 0x80180580, 0x05020004, 0x58040009, + 0x80200580, 0x05000003, 0x91326430, 0x05fdf7ee, + 0x58040208, 0x82000500, 0x000000ff, 0xb0000d93, + 0x0500000d, 0xb0000d88, 0x0500000b, 0x90000d98, + 0x05000009, 0x90000da9, 0x05000007, 0x90000d94, + 0x05000005, 0xb00005a8, 0x05000003, 0x90000582, + 0x05fe07ee, 0x050dfe84, 0x4d2c0000, 0x0521fa38, + 0x5c025800, 0x0500001a, 0x050dfe70, 0x64025a0a, + 0x0001f3a8, 0x592e8a0a, 0x83440c80, 0x000007f0, + 0x05001004, 0x83440c80, 0x00000800, 0x05001010, + 0x0001fb08, 0x0502000e, 0x4d2c0000, 0x592c400b, + 0x05f5fe6b, 0x05000009, 0x60168000, 0x592c0a0c, + 0x417a6000, 0x05f9fdaa, 0x0525f85c, 0x0001fba8, + 0x5c025800, 0x05fdf7ea, 0x5c025800, 0x050dfe57, + 0x64c65a0a, 0x0001f3a8, 0x492fc857, 0x592c020a, + 0x90000586, 0x05000003, 0x0501fa40, 0x05020019, + 0x4d2c0000, 0x05cdfe44, 0x05000011, 0x492fc857, + 0x412f4000, 0x05cdfe40, 0x0500000b, 0x492fc857, + 0x412dd800, 0x05edfedb, 0x05edfeea, 0x49a1d80b, + 0x5c025800, 0x492dd80a, 0x48ef4006, 0x05ddfe7c, + 0x05ddf693, 0x41a25800, 0x05cdfe43, 0x5c025800, + 0x4a025a0a, 0x00004005, 0x640a5c0a, 0x0001f3a8, + 0x4a025a0a, 0x00004001, 0x0001f3a8, 0x4807c857, + 0x485fc857, 0x6004b800, 0x5c000800, 0x4c5c0000, + 0x0501f005, 0x4807c857, 0x485fc857, 0x5c000800, + 0x4d780000, 0x4803c857, 0x492fc857, 0x8c00050e, + 0x05ce0a72, 0x4203e000, 0x50000000, 0x600cb900, + 0x05cdf279, 0x492fc857, 0x4c5c0000, 0x4c600000, + 0x4c640000, 0x4d040000, 0x4d2c0000, 0x4d200000, + 0x4d240000, 0x4c540000, 0x4c500000, 0x4c580000, + 0x80ddb9c0, 0x0500000d, 0x48dfc857, 0x58dc7802, + 0x58dcb803, 0x58dcc004, 0x58dcc805, 0x4867c857, + 0x58de0806, 0x4907c857, 0x58de4007, 0x58de4808, + 0x4c3c0000, 0x0501f121, 0x417a4000, 0x59a800d6, + 0x90000506, 0x05020159, 0x0501f9e6, 0x0502015b, + 0x916c0580, 0x05000155, 0x592cca0b, 0x592cc40b, + 0x8060c1c0, 0x05000155, 0x42000000, 0x001124b5, + 0x50000000, 0x4c000000, 0x0535fcc6, 0x5c000000, + 0x05000002, 0x80000000, 0x80600480, 0x0502114b, 0x912c7c0c, 0x592c040a, 0x4803c857, 0x8c000500, - 0x05000004, 0x0535f864, 0x0500012c, 0x0501f002, + 0x05000004, 0x0535fcbb, 0x05000144, 0x0501f002, 0x60064000, 0x60060800, 0x4200b800, 0xffffffff, 0x83200580, 0x000000e1, 0x05020003, 0x4200b800, 0x3fffffff, 0x503c0000, 0x805cbd00, 0x05020003, - 0x91224420, 0x0501f00f, 0x805cb902, 0x05021009, - 0x83200400, 0x0010d17b, 0x50024800, 0x90640580, - 0x05000010, 0x8c640506, 0x05020095, 0x0501f113, - 0x81060800, 0x81224000, 0x910404a1, 0x05fc17f3, - 0x803c7800, 0x83200480, 0x00000100, 0x05fc17e2, - 0x61fa4001, 0x8060c1c0, 0x05020108, 0x0501f0df, - 0x59240a00, 0x0535f84d, 0x05000004, 0x8c040500, - 0x05020102, 0x0501f004, 0x90040d03, 0x90040d83, - 0x050000fe, 0x59240c00, 0x8c04050a, 0x05020004, - 0x8d0c0520, 0x050000f9, 0x0501f003, 0x8c040508, - 0x050000f6, 0x4c3c0000, 0x4d3c0000, 0x4d300000, - 0x600a78a0, 0x417a6000, 0x05ddfd77, 0x5c026000, - 0x5c027800, 0x59240206, 0x82000500, 0xfffffcff, - 0x48024a06, 0x60040800, 0x05ddff3f, 0x05020004, - 0x4a024a00, 0x00008005, 0x0501f002, 0x64164a00, - 0x5c007800, 0x05f9ffb1, 0x0502005a, 0x59a80249, - 0x82000500, 0x00000082, 0x82000d80, 0x00000082, - 0x05000050, 0x8c00050e, 0x05020052, 0x916c0583, - 0x05020050, 0x05ddff08, 0x050000cb, 0x0501f04d, - 0x05f1fa07, 0x05000047, 0x592c1214, 0x480bc857, - 0x8c080500, 0x05000043, 0x41780800, 0x8c080504, - 0x05000004, 0x592c0815, 0x82040d00, 0xff000000, - 0x592c0414, 0x4803c857, 0x8c080502, 0x05020003, - 0x82000500, 0x00001fff, 0x80040540, 0x4803c857, - 0x4802480b, 0x82001500, 0x00001fff, 0x05ddfe0a, - 0x60203000, 0x050000b0, 0x592c0414, 0x82000d00, - 0x00001fff, 0x0501fba1, 0x0500002a, 0x8c00050a, - 0x60243000, 0x050200a8, 0x412cb800, 0x05d1f853, - 0x601c3000, 0x050000a4, 0x905ca408, 0x912cac08, - 0x6040b000, 0x0531ff72, 0x592c0408, 0x84000554, - 0x48025c08, 0x81040040, 0x82000c00, 0x0010d15b, - 0x50040800, 0x405c0000, 0x803c0480, 0x05001096, - 0x812c7c00, 0x503c0000, 0x80040580, 0x44007800, - 0x80600040, 0x48025c0b, 0x4d2c0000, 0x05d1f83b, - 0x412c0800, 0x5c025800, 0x601c3000, 0x0500008a, - 0x4806480c, 0x5924000b, 0x48000802, 0x412c0800, - 0x05ddfe41, 0x601c3000, 0x05000083, 0x0501f06f, - 0x4c3c0000, 0x05ddfcb9, 0x5c007800, 0x05000085, - 0x81060800, 0x81224000, 0x8060c040, 0x05fe0767, - 0x05f9ff52, 0x05020059, 0x0501f064, 0x59240a00, - 0x8c040500, 0x0500007d, 0x05f1f9b1, 0x05000014, - 0x592c1214, 0x8c080500, 0x05000011, 0x592c1414, - 0x82081500, 0x00001fff, 0x5924000b, 0x82000500, - 0x00001fff, 0x80080580, 0x60203000, 0x05020066, - 0x8c04051e, 0x05000006, 0x4c040000, 0x05ddfe67, - 0x5c000800, 0x82040d00, 0xffff7f1f, 0x4c3c0000, - 0x4c040000, 0x82040d00, 0xffffdffc, 0x84040d44, - 0x48064a00, 0x0531ff98, 0x05000012, 0x59240200, - 0x8c00051e, 0x0500000f, 0x8400051e, 0x48024a00, - 0x600c0800, 0x05ddfeb0, 0x05000007, 0x4813c857, - 0x4817c857, 0x58100200, 0x8400055e, 0x48002200, - 0x0501f004, 0x59a80249, 0x8400050e, 0x48035249, - 0x5c000800, 0x5c007800, 0x8c640502, 0x05020016, - 0x4c3c0000, 0x59240c08, 0x05d9f96b, 0x4c5c0000, - 0x4d3c0000, 0x600a78a0, 0x4d300000, 0x417a6000, - 0x05ddfcc9, 0x5c026000, 0x5c027800, 0x497a480b, - 0x5c00b800, 0x5c007800, 0x81060800, 0x81224000, - 0x8060c040, 0x05fe071d, 0x90640589, 0x0500000f, - 0x0501f01a, 0x916c0584, 0x05fc07ea, 0x90040d03, - 0x90040d83, 0x05fe07e7, 0x4c3c0000, 0x0501f839, + 0x91224420, 0x0501f010, 0x805cb902, 0x05021009, + 0x83200400, 0x0010d8f9, 0x50024800, 0x90640580, + 0x05000011, 0x8c640506, 0x05020096, 0x0501f12b, + 0x910404a1, 0x05021004, 0x81060800, 0x81224000, + 0x05fdf7f2, 0x803c7800, 0x83200480, 0x00000100, + 0x05fc17e1, 0x61fa4001, 0x8060c1c0, 0x0502011f, + 0x0501f0f6, 0x59240a00, 0x0535fca3, 0x05000004, + 0x8c040500, 0x05020119, 0x0501f004, 0x90040d03, + 0x90040d83, 0x05000115, 0x59240c00, 0x8c04050a, + 0x05020004, 0x8d0c0520, 0x05000110, 0x0501f003, + 0x8c040508, 0x0500010d, 0x4c3c0000, 0x4d3c0000, + 0x4d300000, 0x600a78a0, 0x417a6000, 0x05ddfaf8, + 0x5c026000, 0x5c027800, 0x59240206, 0x82000500, + 0xfffffcff, 0x48024a06, 0x60040800, 0x05ddfcc2, + 0x05020004, 0x4a024a00, 0x00008005, 0x0501f002, + 0x64164a00, 0x5c007800, 0x05f9ff76, 0x0502005a, + 0x59a8024c, 0x82000500, 0x00000082, 0x82000d80, + 0x00000082, 0x05000050, 0x8c00050e, 0x05020052, + 0x916c0583, 0x05020050, 0x05ddfc8b, 0x050000e2, + 0x0501f04d, 0x05f1f888, 0x05000047, 0x592c1214, + 0x480bc857, 0x8c080500, 0x05000043, 0x41780800, + 0x8c080504, 0x05000004, 0x592c0815, 0x82040d00, + 0xff000000, 0x592c0414, 0x4803c857, 0x8c080502, + 0x05020003, 0x82000500, 0x00001fff, 0x80040540, + 0x4803c857, 0x4802480b, 0x82001500, 0x00001fff, + 0x05ddfb8c, 0x60203000, 0x050000c7, 0x592c0414, + 0x82000d00, 0x00001fff, 0x0501fc04, 0x0500002a, + 0x8c00050a, 0x60243000, 0x050200bf, 0x412cb800, + 0x05cdfd65, 0x601c3000, 0x050000bb, 0x905ca408, + 0x912cac08, 0x6040b000, 0x0535fbc8, 0x592c0408, + 0x84000554, 0x48025c08, 0x81040040, 0x82000c00, + 0x0010d8d9, 0x50040800, 0x405c0000, 0x803c0480, + 0x050010ad, 0x812c7c00, 0x503c0000, 0x80040580, + 0x44007800, 0x80600040, 0x48025c0b, 0x4d2c0000, + 0x05cdfd4d, 0x412c0800, 0x5c025800, 0x601c3000, + 0x050000a1, 0x4806480c, 0x5924000b, 0x48000802, + 0x412c0800, 0x05ddfbc3, 0x601c3000, 0x0500009a, + 0x0501f086, 0x4c3c0000, 0x05ddfa30, 0x5c007800, + 0x0500009c, 0x81060800, 0x81224000, 0x8060c040, + 0x05fe0766, 0x05f9ff17, 0x05020070, 0x0501f07b, + 0x59240a00, 0x8c040500, 0x05000094, 0x05f1f832, + 0x05000014, 0x592c1214, 0x8c080500, 0x05000011, + 0x592c1414, 0x82081500, 0x00001fff, 0x5924000b, + 0x82000500, 0x00001fff, 0x80080580, 0x60203000, + 0x0502007d, 0x8c04051e, 0x05000006, 0x4c040000, + 0x05ddfbe9, 0x5c000800, 0x82040d00, 0xffff7f1f, + 0x4c3c0000, 0x4c040000, 0x82040d00, 0xffffdffc, + 0x84040d44, 0x48064a00, 0x0535fbee, 0x05000018, + 0x59240200, 0x8c00051e, 0x05000015, 0x8400051e, + 0x48024a00, 0x600c0800, 0x05ddfc33, 0x05000007, + 0x4813c857, 0x4817c857, 0x58100200, 0x8400055e, + 0x48002200, 0x0501f00a, 0x59a8024c, 0x8400050e, + 0x4803524c, 0x60040800, 0x05ddfc27, 0x05000004, + 0x58100200, 0x8400055e, 0x48002200, 0x5c000800, + 0x5c007800, 0x8c640502, 0x05020016, 0x4c3c0000, + 0x59240c08, 0x05d5fec0, 0x4c5c0000, 0x4d3c0000, + 0x600a78a0, 0x4d300000, 0x417a6000, 0x05ddfa44, + 0x5c026000, 0x5c027800, 0x497a480b, 0x5c00b800, 0x5c007800, 0x81060800, 0x81224000, 0x8060c040, - 0x05fe070e, 0x0501f00d, 0x916c0584, 0x0500000b, - 0x05f9fef6, 0x05020007, 0x4a035041, 0x0000aaaa, - 0x64075042, 0x6006d800, 0x05f9fe73, 0x0501f003, - 0x6006d800, 0x05f1ff2a, 0x5c00b000, 0x5c00a000, + 0x05fe0716, 0x90640589, 0x05000020, 0x0501f02b, + 0x916c0584, 0x05fc07ea, 0x90040d03, 0x90040d83, + 0x05fe07e7, 0x4c3c0000, 0x0501f84a, 0x05020011, + 0x5c007800, 0x492db801, 0x483db802, 0x485db803, + 0x4861b804, 0x4865b805, 0x4905b806, 0x4921b807, + 0x4925b808, 0x5c00b000, 0x5c00a000, 0x5c00a800, + 0x5c024800, 0x5c024000, 0x5c025800, 0x0501f021, + 0x5c007800, 0x81060800, 0x81224000, 0x8060c040, + 0x05fe06f6, 0x0501f00d, 0x916c0584, 0x0500000b, + 0x05f9fea4, 0x05020007, 0x4a035044, 0x0000aaaa, + 0x64075045, 0x6006d800, 0x05f9fe1b, 0x0501f003, + 0x6006d800, 0x05f1fde5, 0x5c00b000, 0x5c00a000, 0x5c00a800, 0x5c024800, 0x5c024000, 0x5c025800, 0x497a5a0a, 0x64025c0a, 0x592c0408, 0x8c000514, - 0x05000003, 0x05cdffc5, 0x0501f002, 0x0001fb82, + 0x05000003, 0x05cdfcc0, 0x0501f002, 0x0001fba8, 0x5c020800, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x59240200, 0x82000500, 0xfffffffc, 0x48024a00, 0x0501f006, 0x60143000, 0x0501f004, @@ -6814,43 +7021,54 @@ static const uint32_t isp_2500_risc_code[] = { 0x5c024000, 0x5c025800, 0x481a5c0a, 0x05fdf7e3, 0x4923c857, 0x4d440000, 0x4d300000, 0x4d340000, 0x4c580000, 0x4d400000, 0x4d3c0000, 0x4c5c0000, - 0x60a68000, 0x600a7820, 0x61c0b00f, 0x417a8800, - 0x83440400, 0x0010d400, 0x50000000, 0x80026d40, - 0x05000005, 0x59340013, 0x80000130, 0x81200580, - 0x0500081c, 0x81468800, 0x8058b040, 0x05fe07f5, - 0x61fe89ff, 0x42026800, 0x00110210, 0x0501f815, - 0x9064058b, 0x0502000b, 0x61c2880f, 0x6040b000, - 0x5924b809, 0x505c0000, 0x80026d40, 0x0502080d, - 0x805cb800, 0x81468800, 0x8058b040, 0x05fe07fa, - 0x5c00b800, 0x5c027800, 0x5c028000, 0x5c00b000, - 0x5c026800, 0x5c026000, 0x5c028800, 0x1c01f000, - 0x4937c857, 0x4947c857, 0x050dfaf9, 0x4df00000, - 0x417a6000, 0x050df828, 0x050df92d, 0x050df976, - 0x0509fefc, 0x052dfc50, 0x83440580, 0x0000ffff, - 0x05000015, 0x59340c00, 0x82040580, 0x00000707, - 0x05000011, 0x82000580, 0x0000070b, 0x0500000e, - 0x4d300000, 0x4d380000, 0x0515f9dd, 0x05cc0bab, - 0x64066407, 0x4936600a, 0x4926601d, 0x602c0800, - 0x05f5fab9, 0x60067000, 0x0009f800, 0x5c027000, - 0x5c026000, 0x5c03e000, 0x050c0aca, 0x1c01f000, + 0x60a68000, 0x600a7820, 0x80ddb9c0, 0x0500000e, + 0x58de8809, 0x58dcb00a, 0x58dcb80b, 0x485fc857, + 0x4d2c0000, 0x40de5800, 0x05cdfc93, 0x4179b800, + 0x5c025800, 0x83440480, 0x000007fc, 0x05001004, + 0x0501f01b, 0x59a8b0ac, 0x417a8800, 0x0001fb08, + 0x05020006, 0x59340013, 0x80000130, 0x81200580, + 0x05000831, 0x05000024, 0x81468800, 0x83440580, + 0x000007f0, 0x05020002, 0x60028810, 0x8058b040, + 0x05fe07f3, 0x61fe89ff, 0x42026800, 0x001141b4, + 0x0501f825, 0x05000018, 0x9064058b, 0x0502000d, + 0x61c2880f, 0x6040b000, 0x5924b809, 0x505c0000, + 0x80026d40, 0x05000003, 0x0501f81b, 0x0500000e, + 0x805cb800, 0x81468800, 0x8058b040, 0x05fe07f8, + 0x90000541, 0x5c00b800, 0x5c027800, 0x5c028000, + 0x5c00b000, 0x5c026800, 0x5c026000, 0x5c028800, + 0x1c01f000, 0x4d2c0000, 0x05cdfc4f, 0x05cc08aa, + 0x412db800, 0x5c025800, 0x4a01b800, 0xaaaabbbb, + 0x4945b809, 0x4859b80a, 0x485db80b, 0x80000580, + 0x05fdf7ed, 0x4937c857, 0x4947c857, 0x050dfc5a, + 0x4df00000, 0x417a6000, 0x050df984, 0x050dfa8f, + 0x050dfad8, 0x050df858, 0x0531f80a, 0x83440580, + 0x0000ffff, 0x05000019, 0x59340c00, 0x82040580, + 0x00000707, 0x05000015, 0x82000580, 0x0000070b, + 0x05000012, 0x4d300000, 0x4d380000, 0x0515fb95, + 0x05cc0889, 0x64066407, 0x4936600a, 0x4926601d, + 0x602c0800, 0x05f5f96f, 0x60067000, 0x83440580, + 0x000007fe, 0x05020002, 0x497a6806, 0x0009f839, + 0x5c027000, 0x5c026000, 0x5c03e000, 0x050c0c27, + 0x90000541, 0x1c01f000, 0x5c027000, 0x5c026000, + 0x5c03e000, 0x050c0c21, 0x80000580, 0x1c01f000, 0x599c0018, 0x8c00052a, 0x05000004, 0x592c0003, 0x58000211, 0x80000540, 0x1c01f000, 0x599c0018, 0x8c00052a, 0x05000004, 0x592c0003, 0x5800040c, 0x81200580, 0x1c01f000, 0x599c0018, 0x8c000530, 0x05000004, 0x592c0003, 0x58000211, 0x80000540, - 0x1c01f000, 0x4c640000, 0x4c600000, 0x59a800d1, + 0x1c01f000, 0x4c640000, 0x4c600000, 0x59a800d6, 0x90000506, 0x050200f4, 0x05fdffe6, 0x050200f2, 0x916c0580, 0x050000f0, 0x497a5c0a, 0x592c220b, 0x8210c500, 0x000000ff, 0x80100110, 0x8200cd00, 0x000000ff, 0x050000e2, 0x90640483, 0x050210e0, 0x4d200000, 0x4d240000, 0x4d2c0000, 0x4d040000, 0x417a0800, 0x592c140b, 0x820a4500, 0x000000ff, - 0x4923c857, 0x0531fe87, 0x40580000, 0x81200480, - 0x050210d7, 0x83200400, 0x0010d17b, 0x50024800, - 0x90600583, 0x05020012, 0x59a80249, 0x8c000514, + 0x4923c857, 0x0535fa9a, 0x40580000, 0x81200480, + 0x050210d7, 0x83200400, 0x0010d8f9, 0x50024800, + 0x90600583, 0x05020012, 0x59a8024c, 0x8c000514, 0x0500000c, 0x59240200, 0x82001d00, 0x00002001, 0x820c1d80, 0x00002001, 0x05020006, 0x8c000510, - 0x05020004, 0x41781800, 0x05ddfb8c, 0x0501f0a4, + 0x05020004, 0x41781800, 0x05ddf8c0, 0x0501f0a4, 0x4803c857, 0x60183000, 0x0501f0ca, 0x90600582, 0x05000004, 0x59240200, 0x8c000500, 0x050200b6, 0x592c020c, 0x8c00050a, 0x05020004, 0x8d0c0520, @@ -6862,22 +7080,22 @@ static const uint32_t isp_2500_risc_code[] = { 0x592c0010, 0x9c0001c0, 0x48024804, 0x810609c0, 0x05000002, 0x912e5c85, 0x592c0a0b, 0x8c040500, 0x0500007b, 0x4d3c0000, 0x4d300000, 0x600a78a0, - 0x417a6000, 0x05ddfbb4, 0x5c026000, 0x5c027800, + 0x417a6000, 0x05ddf8f2, 0x5c026000, 0x5c027800, 0x59240206, 0x82000500, 0xfffffcff, 0x48024a06, - 0x60040800, 0x05ddfd7c, 0x05020004, 0x4a024a00, - 0x00008005, 0x0501f002, 0x64164a00, 0x05f9fdef, - 0x05020067, 0x05f1f852, 0x05000057, 0x592c120a, + 0x60040800, 0x05ddfabc, 0x05020004, 0x4a024a00, + 0x00008005, 0x0501f002, 0x64164a00, 0x05f9fd71, + 0x05020067, 0x05edfe90, 0x05000057, 0x592c120a, 0x8c080500, 0x05000054, 0x41780000, 0x8c080504, 0x05000005, 0x592c0017, 0x82000500, 0x0000ff00, 0x800000e0, 0x592c0a16, 0x8c080502, 0x05020003, 0x82040d00, 0x00001fff, 0x80040540, 0x4802480b, - 0x82001500, 0x00001fff, 0x05ddfc57, 0x60203000, + 0x82001500, 0x00001fff, 0x05ddf996, 0x60203000, 0x05000074, 0x592c0a16, 0x82040d00, 0x00001fff, - 0x0501f9ee, 0x0500003c, 0x8c00050a, 0x60243000, - 0x0502006c, 0x412cb800, 0x05cdfea0, 0x601c3000, + 0x0501fa0e, 0x0500003c, 0x8c00050a, 0x60243000, + 0x0502006c, 0x412cb800, 0x05cdfb6f, 0x601c3000, 0x05000068, 0x492fc857, 0x4c540000, 0x4c500000, 0x4c580000, 0x905ca408, 0x912cac08, 0x6040b000, - 0x0531fdbb, 0x5c00b000, 0x5c00a000, 0x5c00a800, + 0x0535f9ce, 0x5c00b000, 0x5c00a000, 0x5c00a800, 0x4a025c08, 0x00000400, 0x592c0a0b, 0x82040d00, 0x000000ff, 0x80640040, 0x800000d0, 0x80040540, 0x48025a0b, 0x4803c857, 0x592c140b, 0x80081110, @@ -6885,119 +7103,127 @@ static const uint32_t isp_2500_risc_code[] = { 0x8d0c0520, 0x05000044, 0x0501f003, 0x8c000508, 0x05000041, 0x48025a0c, 0x592c0012, 0x4802580d, 0x592c0013, 0x4802580e, 0x592c0014, 0x4802580f, - 0x592c0015, 0x48025810, 0x412e0800, 0x05cdfe73, + 0x592c0015, 0x48025810, 0x412e0800, 0x05cdfb42, 0x601c3000, 0x0500003b, 0x492e480c, 0x5924000b, - 0x48025802, 0x41040800, 0x05ddfc7b, 0x05000034, - 0x0501f016, 0x600c0800, 0x05ddfd1b, 0x0502000a, - 0x59a80249, 0x4803c857, 0x8c00050e, 0x05020008, - 0x916c0583, 0x05020006, 0x05ddfcef, 0x05000028, - 0x0501f003, 0x05ddfae9, 0x05000025, 0x8064c840, + 0x48025802, 0x41040800, 0x05ddf9ba, 0x05000034, + 0x0501f016, 0x600c0800, 0x05ddfa5b, 0x0502000a, + 0x59a8024c, 0x4803c857, 0x8c00050e, 0x05020008, + 0x916c0583, 0x05020006, 0x05ddfa2f, 0x05000028, + 0x0501f003, 0x05ddf81d, 0x05000025, 0x8064c840, 0x05000006, 0x592c140b, 0x80081110, 0x81060800, 0x912e5c05, 0x05fdf73d, 0x5c020800, 0x5c025800, 0x5c024800, 0x5c024000, 0x592c0408, 0x8c000514, - 0x05000003, 0x05cdfe5d, 0x0501f020, 0x05f9fd77, + 0x05000003, 0x05cdfb2c, 0x0501f020, 0x05f9fcf9, 0x0500001d, 0x592c0a0b, 0x8c040500, 0x0500001a, - 0x916c0584, 0x05000018, 0x6006d800, 0x05f1fdac, + 0x916c0584, 0x05000018, 0x6006d800, 0x05f1fc3b, 0x0501f015, 0x60043000, 0x0501f00e, 0x60083000, 0x0501f010, 0x600c3000, 0x0501f00a, 0x60103000, 0x0501f008, 0x60143000, 0x0501f00a, 0x60183000, 0x59240200, 0x82000500, 0xfffffffc, 0x48024a00, 0x5c020800, 0x5c025800, 0x5c024800, 0x5c024000, - 0x481a5c0a, 0x0001fb82, 0x5c00c000, 0x5c00c800, - 0x1c01f000, 0x4c580000, 0x0531fd9a, 0x40580000, - 0x81200480, 0x05021009, 0x83200400, 0x0010d17b, + 0x481a5c0a, 0x0001fba8, 0x5c00c000, 0x5c00c800, + 0x1c01f000, 0x4c580000, 0x0535f9ad, 0x40580000, + 0x81200480, 0x05021009, 0x83200400, 0x0010d8f9, 0x50024800, 0x59240200, 0x90000503, 0x90000583, - 0x5c00b000, 0x1c01f000, 0x4923c857, 0x4927c857, - 0x90000541, 0x05fdf7fb, 0x80140110, 0x80000040, - 0x05fe01bf, 0x599c0019, 0x8c000510, 0x0502000b, - 0x05f5ff3a, 0x05020002, 0x1c01f000, 0x49425a0a, - 0x48065811, 0x480a5812, 0x4943c857, 0x4807c857, - 0x480bc857, 0x0001f382, 0x592c040f, 0x82000500, - 0x0000e000, 0x82000580, 0x00006000, 0x05fc07f1, - 0x59a80249, 0x8c000508, 0x05fc07ee, 0x592c040d, - 0x82000500, 0x000000ff, 0x90000583, 0x05fe07e9, - 0x592c120f, 0x592c080e, 0x82040500, 0xff000000, - 0x80040d80, 0x80000110, 0x80081540, 0x05000004, - 0x4806580e, 0x0501f889, 0x05fdf7de, 0x60701000, - 0x60640800, 0x60c68000, 0x05fdf7dd, 0x80140110, - 0x80000040, 0x05fe0192, 0x05f9f860, 0x05020002, - 0x1c01f000, 0x49425a0a, 0x48065815, 0x480a5816, - 0x0001f382, 0x80140110, 0x05fc0189, 0x80000040, + 0x5c00b000, 0x1c01f000, 0x4923c857, 0x417a4800, + 0x90000541, 0x05fdf7fb, 0x492fc857, 0x80140110, + 0x80000040, 0x05fe0146, 0x599c0019, 0x8c000510, + 0x0502000d, 0x05f5fea3, 0x05020002, 0x1c01f000, + 0x49425a0a, 0x48065811, 0x480a5812, 0x480e5813, + 0x4943c857, 0x4807c857, 0x480bc857, 0x480fc857, + 0x0001f3a8, 0x592c040f, 0x82000500, 0x0000e000, + 0x82000580, 0x00006000, 0x05fc07ef, 0x59a8024c, + 0x8c000508, 0x05fc07ec, 0x592c040d, 0x82000500, + 0x000000ff, 0x90000583, 0x05fe07e7, 0x592c120f, + 0x592c080e, 0x82040500, 0xff000000, 0x80040d80, + 0x80000110, 0x80081540, 0x05000004, 0x4806580e, + 0x0501f8a6, 0x05fdf7dc, 0x60701000, 0x60640800, + 0x60c68000, 0x05fdf7db, 0x80140110, 0x80000040, + 0x05fe0117, 0x05f5ffc8, 0x05020002, 0x1c01f000, + 0x49425a0a, 0x48065815, 0x480a5816, 0x480e5813, + 0x0001f3a8, 0x80140110, 0x05fc010d, 0x80000040, 0x0502000a, 0x6006e000, 0x592c020e, 0x8c000504, - 0x00040218, 0x592c020b, 0x82000c80, 0x00001001, - 0x05fe118d, 0x0501f004, 0x4a01e007, 0x00020a18, - 0x0005f0df, 0x592c1017, 0x82080500, 0xffff0003, - 0x05fe0185, 0x600ae000, 0x42000000, 0x001102f1, + 0x00040241, 0x592c020b, 0x82000c80, 0x00001001, + 0x05fe1111, 0x0501f004, 0x4a01e007, 0x00020a41, + 0x0005f106, 0x592c1017, 0x82080500, 0xffff0003, + 0x05fe0109, 0x600ae000, 0x42000000, 0x00114295, 0x50007000, 0x592c0015, 0x592c0816, 0x592c1804, 0x480c7006, 0x48007007, 0x48047008, 0x492c700b, 0x4978700e, 0x4978700c, 0x0501f001, 0x4978700d, 0x82080480, 0x00000180, 0x05001006, 0x4800700f, 0x4a007005, 0x00000180, 0x65807004, 0x0501f005, 0x4978700f, 0x48087005, 0x80081104, 0x48087004, - 0x5838000a, 0x48007003, 0x40381000, 0x0001f021, - 0x4df00000, 0x4203e000, 0x50000000, 0x0001f817, - 0x05000003, 0x58f00004, 0x0801f800, 0x5c03e000, - 0x1c01f000, 0x05cdfd94, 0x05cc09fc, 0x4a02580a, - 0x00110290, 0x42000800, 0x001102f1, 0x452c0800, + 0x5838000a, 0x48007003, 0x40381000, 0x0001f029, + 0x4df00000, 0x4203e000, 0x50000000, 0x0001f81f, + 0x05000005, 0x58f00004, 0x0801f800, 0x5c03e000, + 0x1c01f000, 0x59980000, 0x80006d40, 0x05fc07fc, + 0x58347a08, 0x823c7d00, 0x000000ff, 0x903c6db3, + 0x05000007, 0x903c6d94, 0x05000005, 0xb03c6d92, + 0x05000003, 0x903c6da9, 0x05fe07f1, 0x58f06805, + 0x4c340000, 0x58f06806, 0x4c340000, 0x58f06804, + 0x4c340000, 0x0501f90d, 0x5c006800, 0x4835e004, + 0x5c006800, 0x4835e006, 0x5c006800, 0x4835e005, + 0x05fdf7e3, 0x05cdfa43, 0x05c80eaf, 0x4a02580a, + 0x00114234, 0x42000800, 0x00114295, 0x452c0800, 0x497a580b, 0x497a580c, 0x497a580d, 0x497a580e, - 0x497a580f, 0x4a025809, 0x00020b4f, 0x497a5810, + 0x497a580f, 0x4a025809, 0x00020b85, 0x497a5810, 0x4a025802, 0x00000100, 0x64065801, 0x1c01f000, - 0x42000800, 0x001102f2, 0x64040801, 0x4a000802, + 0x42000800, 0x00114296, 0x64040801, 0x4a000802, 0x00000100, 0x64400804, 0x65000805, 0x4a000809, - 0x00020914, 0x1c01f000, 0x0501f808, 0x05fc0410, - 0x64065a0c, 0x0531f0dc, 0x0501f804, 0x05fc0409, - 0x641a5a0c, 0x0531f0d8, 0x59a80005, 0x8c00051a, + 0x0002093b, 0x1c01f000, 0x0501f808, 0x05fc039b, + 0x64065a0c, 0x0531f4b1, 0x0501f804, 0x05fc0394, + 0x641a5a0c, 0x0531f4ad, 0x59a80005, 0x8c00051a, 0x1c01f000, 0x59a80005, 0x8c00051c, 0x1c01f000, 0x592c0208, 0x82000500, 0x000000ff, 0xb00005b5, 0x592c040c, 0x0502000a, 0x84000542, 0x48025c0c, - 0x592c0005, 0x4d2c0000, 0x80025d40, 0x05ce0d7f, + 0x592c0005, 0x4d2c0000, 0x80025d40, 0x05ce0a2e, 0x5c025800, 0x497a5805, 0x1c01f000, 0x84000502, - 0x48025c0c, 0x1c01f000, 0x59a8003d, 0x80080580, + 0x48025c0c, 0x1c01f000, 0x59a80040, 0x80080580, 0x05020002, 0x1c01f000, 0x480bc857, 0x42024800, - 0x0010e512, 0x480a4805, 0x480b503d, 0x497b8830, + 0x001124b6, 0x480a4805, 0x480b5040, 0x497b8830, 0x82080d40, 0x01000000, 0x48078832, 0x59c40002, - 0x8400054c, 0x48038802, 0x600c0800, 0x050df116, - 0x492fc857, 0x80140110, 0x90000581, 0x05fe00fc, + 0x8400054c, 0x48038802, 0x600c0800, 0x050df24c, + 0x492fc857, 0x80140110, 0x90000581, 0x05fe0064, 0x592c040c, 0x4803c857, 0x82000500, 0x000000f0, - 0x80000108, 0x0c01f001, 0x00106cc1, 0x00106c46, - 0x00106c72, 0x00106cc1, 0x00106c72, 0x00106cc1, - 0x00106cc1, 0x00106cc1, 0x00106cae, 0x00106cc1, - 0x00106cc1, 0x00106cc1, 0x00106cc1, 0x00106cc1, - 0x00106cc1, 0x00106cc1, 0x05edfed2, 0x0500006f, + 0x80000108, 0x0c01f001, 0x00107049, 0x00106fce, + 0x00106ffa, 0x00107049, 0x00106ffa, 0x00107049, + 0x00107049, 0x00107049, 0x00107036, 0x00107049, + 0x00107049, 0x00107049, 0x00107049, 0x00107049, + 0x00107049, 0x00107049, 0x05edfcf0, 0x0500006f, 0x592c0817, 0x4807c857, 0x82040580, 0x00000200, - 0x0502007b, 0x4d2c0000, 0x05cdfd23, 0x412c1000, + 0x0502007b, 0x4d2c0000, 0x05cdf9d2, 0x412c1000, 0x5c025800, 0x05000063, 0x480a5801, 0x492c100a, - 0x64001001, 0x4a001009, 0x00106c5f, 0x4a001003, - 0x00110672, 0x48041005, 0x592c0015, 0x48001007, - 0x592c0016, 0x48001008, 0x0001f021, 0x5832580a, - 0x812e59c0, 0x05cc0979, 0x49786001, 0x58300002, - 0x82000580, 0x00000100, 0x05020007, 0x59a80ccd, - 0x48065811, 0x59a808cf, 0x48065810, 0x64025a0a, - 0x0001f382, 0x4803c857, 0x4a006002, 0x00000100, - 0x600a8000, 0x0501f04c, 0x05edfea6, 0x05000043, - 0x05edfea9, 0x05020043, 0x592c020b, 0x4803c857, + 0x64001001, 0x4a001009, 0x00106fe7, 0x4a001003, + 0x00114616, 0x48041005, 0x592c0015, 0x48001007, + 0x592c0016, 0x48001008, 0x0001f029, 0x5832580a, + 0x812e59c0, 0x05c80e2c, 0x49786001, 0x58300002, + 0x82000580, 0x00000100, 0x05020007, 0x59a80cd2, + 0x48065811, 0x59a808d4, 0x48065810, 0x64025a0a, + 0x0001f3a8, 0x4803c857, 0x4a006002, 0x00000100, + 0x600a8000, 0x0501f04c, 0x05edfcc4, 0x05000043, + 0x05edfcc7, 0x05020043, 0x592c020b, 0x4803c857, 0x82000480, 0x00001000, 0x05021045, 0x592c000f, 0x4803c857, 0x800001c0, 0x05000045, 0x90000484, 0x05021043, 0x592c0814, 0x4807c857, 0x82040580, 0x00000200, 0x05020040, 0x592c040c, 0x8c00050a, 0x05000006, 0x592c0017, 0x4803c857, 0x82000580, - 0x00000200, 0x0502003a, 0x4d2c0000, 0x05cdfce2, + 0x00000200, 0x0502003a, 0x4d2c0000, 0x05cdf991, 0x412c1000, 0x5c025800, 0x05000022, 0x480a5801, 0x4978100b, 0x492c100a, 0x64041001, 0x4a001009, - 0x00106ca6, 0x4a001003, 0x001105f2, 0x592c040c, - 0x8c00050a, 0x05020003, 0x4a001003, 0x001106f2, + 0x0010702e, 0x4a001003, 0x00114596, 0x592c040c, + 0x8c00050a, 0x05020003, 0x4a001003, 0x00114696, 0x48041005, 0x592c0012, 0x48001007, 0x592c0013, - 0x48001008, 0x0001f021, 0x5832580a, 0x812e59c0, - 0x05cc0932, 0x49786001, 0x58300002, 0x82000580, - 0x00000100, 0x05fe07c0, 0x05edfe6a, 0x05000007, - 0x497a5a0a, 0x05f9f87c, 0x05020009, 0x1c01f000, + 0x48001008, 0x0001f029, 0x5832580a, 0x812e59c0, + 0x05c80de5, 0x49786001, 0x58300002, 0x82000580, + 0x00000100, 0x05fe07c0, 0x05edfc88, 0x05000007, + 0x497a5a0a, 0x05f5ffc9, 0x05020009, 0x1c01f000, 0x640a5810, 0x0501f004, 0x64c65810, 0x0501f002, 0x64ca5810, 0x60c68000, 0x0501f003, 0x48065810, - 0x480a5811, 0x49425a0a, 0x0001f382, 0x64325811, + 0x480a5811, 0x49425a0a, 0x0001f3a8, 0x64325811, 0x0501f008, 0x644a5811, 0x0501f006, 0x64725811, 0x0501f004, 0x64c25811, 0x0501f002, 0x64f25811, 0x64665810, 0x05fdf7f0, 0x4807c857, 0x4c580000, - 0x0531fc28, 0x42006000, 0x0010e512, 0x58301200, + 0x0535f81b, 0x42006000, 0x001124b6, 0x58301200, 0x8c08051e, 0x0500000b, 0x5830000b, 0x82000500, 0x00001fff, 0x80040580, 0x05020006, 0x82080500, 0x000000e0, 0x82000580, 0x000000e0, 0x0501f005, @@ -7007,432 +7233,458 @@ static const uint32_t isp_2500_risc_code[] = { 0x82140500, 0x000000ff, 0xb0006cbb, 0x05021033, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4d040000, 0x4971e410, 0x4cf00000, 0x4d700000, 0x42007800, - 0x0010dd60, 0x503de000, 0x58f0700b, 0x58f06c10, - 0x483a5804, 0x90347583, 0x05020005, 0x58f0b802, + 0x00111cfa, 0x503de000, 0x58f0700b, 0x58f06c10, + 0x483a5804, 0x90347581, 0x05000005, 0x58f0b802, 0x58f0c003, 0x58f0cc00, 0x58f20807, 0x58f07012, 0x483a5802, 0x48f25803, 0x59980801, 0x4c040000, - 0x497b3001, 0x6006e000, 0x1201f800, 0x0002083d, - 0x91700583, 0x00040a3f, 0x5c000800, 0x48073001, - 0x5c02e000, 0x5c01e000, 0x42000800, 0x0010dd60, - 0x50040800, 0x58046c10, 0x90340583, 0x05020005, + 0x497b3001, 0x6006e000, 0x1201f800, 0x00020864, + 0x91700583, 0x00040a75, 0x5c000800, 0x48073001, + 0x5c02e000, 0x5c01e000, 0x42000800, 0x00111cfa, + 0x50040800, 0x58046c10, 0x90340581, 0x05000005, 0x49040807, 0x48640c00, 0x48600803, 0x485c0802, 0x5c020800, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x5c03e000, 0x1c01f000, 0x05fdf806, 0x05fdf7fd, - 0x59c80007, 0x8c000502, 0x05000055, 0x8d0c051c, - 0x050600b2, 0x835c2c80, 0x000000ff, 0x050410af, - 0x59c82817, 0x481750d0, 0x497b9005, 0x82140500, - 0x00e00000, 0x05020046, 0x82140500, 0x000003ff, - 0x8c140516, 0x05000005, 0x90001c08, 0x42002000, - 0x001102fe, 0x0501f003, 0x90001c06, 0x41cc2000, - 0x600030c1, 0xb00c0480, 0x05001004, 0x61001000, - 0xb00c1c80, 0x0501f003, 0x400c1000, 0x41781800, - 0x54182000, 0x80102000, 0x80183000, 0x80081040, - 0x05fe07fc, 0x800c19c0, 0x05000005, 0x59c80005, - 0x80000000, 0x48039005, 0x05fdf7ee, 0x8c140516, - 0x05000003, 0x42039800, 0x00110300, 0x82140500, - 0x000003ff, 0x800018c4, 0x8c140514, 0x05000004, - 0x59cc0002, 0x90000503, 0x800c1c80, 0x480f50b6, - 0x59c40002, 0x8c00050c, 0x05020003, 0x0531fbdb, - 0x05020011, 0x82140500, 0x01f60000, 0x0502000e, - 0x0505f88e, 0x05020007, 0x4a039005, 0x00000140, - 0x82140500, 0x0e000000, 0x80000132, 0x0c01f012, - 0x800001c0, 0x0502000a, 0x4a039005, 0x00000140, - 0x0501f00b, 0x4817c857, 0x82140500, 0x00f60000, - 0x05020003, 0x0501ff76, 0x05fe07ee, 0x0505f89d, - 0x4a039005, 0x00000140, 0x0501f056, 0x4803c856, - 0x1c01f000, 0x00106d86, 0x00107139, 0x00106d81, - 0x00106d81, 0x00106d81, 0x00106d81, 0x00106d81, - 0x00106d81, 0x4803c857, 0x42000000, 0x0010e44b, - 0x0531fa58, 0x1c01f000, 0x8d0c052a, 0x05000004, - 0x4c140000, 0x05cdf954, 0x5c002800, 0x59cc0003, - 0x82000500, 0x00ff0000, 0x0502003a, 0x59cc0400, - 0x82000d00, 0x0000ff00, 0x82041500, 0x0000f000, - 0x840409c0, 0x82080580, 0x0000c000, 0x05020003, - 0x0501fd11, 0x0501f032, 0x82080580, 0x00002000, - 0x05020024, 0x916c0581, 0x05020020, 0x05f9fb0f, - 0x05020014, 0x4c040000, 0x59a8083f, 0x4807c857, - 0x90040589, 0x05000007, 0x90040583, 0x0502000b, - 0x05f9f9da, 0x59a8083f, 0x90040589, 0x05020007, - 0x81780000, 0x05c9fbee, 0x916c0582, 0x05020003, - 0x5c000800, 0x0501f00d, 0x5c000800, 0x0501f018, - 0x59cc0006, 0x82000500, 0xff000000, 0x82000580, - 0x11000000, 0x05ce08e8, 0x05020011, 0x05edfde9, - 0x0505f8af, 0x0501f00e, 0x0501f81d, 0x0501f00c, - 0x82080580, 0x00003000, 0x05020003, 0x0501fa88, - 0x0501f007, 0x82080580, 0x00008000, 0x050003e6, - 0x42000000, 0x0010e44a, 0x0531f212, 0x1c01f000, - 0x4817c857, 0x42000000, 0x0010e44a, 0x0531fa0d, - 0x916c0583, 0x05020009, 0x4c080000, 0x4c0c0000, - 0x61201100, 0x40141800, 0x80142120, 0x05edfa05, - 0x5c001800, 0x5c001000, 0x1c01f000, 0x59cc0002, - 0x82000500, 0xff000000, 0x82001580, 0x01000000, - 0x05000008, 0x82001580, 0x23000000, 0x05000005, - 0x05cdf8bd, 0x0505f85a, 0x050006c0, 0x0501f209, - 0x59a800b6, 0x90000484, 0x05001206, 0x900405a3, - 0x05020046, 0x59cc0004, 0x4803c857, 0x59cc0006, - 0x82000500, 0xff000000, 0x59cc0801, 0x82040d00, - 0x00ffffff, 0x80040540, 0x4803c857, 0x0501fca4, - 0x05cc08a9, 0x050001f7, 0x59300c07, 0x90040590, - 0x0500000a, 0x90040591, 0x05000008, 0x90040581, - 0x05000006, 0x90040584, 0x05000004, 0x90040588, - 0x05ce089d, 0x050201eb, 0x59300004, 0x82000500, - 0x80010000, 0x05000004, 0x050dfaaf, 0x05ce0896, - 0x050201e4, 0x59cc0a04, 0x48066202, 0x59cc0006, - 0x82000500, 0xffff0000, 0x82000d80, 0x02000000, - 0x05020007, 0x60567000, 0x0501fceb, 0x0501fd1d, - 0x05cc0889, 0x050001d7, 0x0009f000, 0x82000d80, - 0x02140000, 0x05fc07f8, 0x82000d80, 0x02100000, - 0x05fc07f5, 0x82000d80, 0x02100000, 0x05fc07f2, - 0x82000d80, 0x01000000, 0x05ce087b, 0x050201c9, - 0x59cc0006, 0x82000500, 0x0000ffff, 0x05ce0876, - 0x050201c4, 0x59a800b6, 0x90000488, 0x050011c1, - 0x605a7000, 0x05fdf7e5, 0x900405a2, 0x05ce086e, - 0x050201bc, 0x59cc0004, 0x4803c857, 0x59cc0006, - 0x4803c857, 0x59cc0001, 0x4803c857, 0x59a800b6, - 0x800001c0, 0x05cc0864, 0x050001b2, 0x59a80249, - 0x8c000508, 0x05000003, 0x8c000502, 0x050001ad, - 0x59a80805, 0x8c040514, 0x05000043, 0x0501f9d0, - 0x05020041, 0x59a80249, 0x8c000518, 0x0500000e, + 0x5c03e000, 0x1c01f000, 0x05f9ff6e, 0x05fdf7fd, + 0x59a80006, 0x8c000508, 0x05000006, 0x592c6c0e, + 0x5930002f, 0x80340580, 0x82000500, 0x00000800, + 0x1c01f000, 0x59c80007, 0x8c000502, 0x0500005f, + 0x8d0c051c, 0x0506013b, 0x835c2c80, 0x000000ff, + 0x05041138, 0x59c82817, 0x481750d5, 0x497b9005, + 0x82140500, 0x00e00000, 0x0502004f, 0x82140500, + 0x000003ff, 0x8c140516, 0x05000005, 0x90001c08, + 0x42002000, 0x001142a2, 0x0501f003, 0x90001c06, + 0x41cc2000, 0x600030c1, 0xb00c0480, 0x05001004, + 0x61001000, 0xb00c1c80, 0x0501f003, 0x400c1000, + 0x41781800, 0x54182000, 0x80102000, 0x80183000, + 0x80081040, 0x05fe07fc, 0x800c19c0, 0x05000005, + 0x59c80005, 0x80000000, 0x48039005, 0x05fdf7ee, + 0x8c140516, 0x05000003, 0x42039800, 0x001142a4, + 0x82140500, 0x000003ff, 0x800018c4, 0x8c140514, + 0x05000004, 0x59cc0002, 0x90000503, 0x800c1c80, + 0x480f50bb, 0x59c40002, 0x8c00050c, 0x05020003, + 0x0531ffc5, 0x0502001a, 0x82140500, 0x01f60000, + 0x05020017, 0x0505f917, 0x05020007, 0x4a039005, + 0x00000140, 0x82140500, 0x0e000000, 0x80000132, + 0x0c01f01c, 0x800001c0, 0x05000005, 0x0505f92f, + 0x4a039005, 0x00000140, 0x1c01f000, 0x42000000, + 0x00112452, 0x0531fe56, 0x60040000, 0x0501f864, + 0x4a039005, 0x00000140, 0x0501f00c, 0x4817c857, + 0x82140500, 0x00f60000, 0x05020003, 0x0501ffcc, + 0x05fe07e5, 0x0505f91d, 0x4a039005, 0x00000140, + 0x41780000, 0x0501f056, 0x4803c856, 0x1c01f000, + 0x00107121, 0x00107518, 0x0010711c, 0x0010711c, + 0x0010711c, 0x0010711c, 0x0010711c, 0x0010711c, + 0x4803c857, 0x42000000, 0x001123ef, 0x0531fe38, + 0x1c01f000, 0x8d0c052a, 0x05000004, 0x4c140000, + 0x05c9fde8, 0x5c002800, 0x59cc0003, 0x82000500, + 0x00ff0000, 0x0502003a, 0x59cc0400, 0x82000d00, + 0x0000ff00, 0x82041500, 0x0000f000, 0x840409c0, + 0x82080580, 0x0000c000, 0x05020003, 0x0501fd67, + 0x0501f032, 0x82080580, 0x00002000, 0x05020024, + 0x916c0581, 0x05020020, 0x05f9fa5e, 0x05020014, + 0x4c040000, 0x59a80842, 0x4807c857, 0x90040589, + 0x05000007, 0x90040583, 0x0502000b, 0x05f9f923, + 0x59a80842, 0x90040589, 0x05020007, 0x81780000, + 0x05c9f886, 0x916c0582, 0x05020003, 0x5c000800, + 0x0501f00d, 0x5c000800, 0x0501f018, 0x59cc0006, + 0x82000500, 0xff000000, 0x82000580, 0x11000000, + 0x05ca0d7c, 0x05020011, 0x05edfc43, 0x0505f92e, + 0x0501f00e, 0x0501f81f, 0x0501f00c, 0x82080580, + 0x00003000, 0x05020003, 0x0501fa96, 0x0501f007, + 0x82080580, 0x00008000, 0x0500042a, 0x42000000, + 0x001123ee, 0x0531f5f2, 0x1c01f000, 0x4817c857, + 0x800001c0, 0x05020004, 0x42000000, 0x001123ee, + 0x0531fdeb, 0x916c0583, 0x05020009, 0x4c080000, + 0x4c0c0000, 0x61201100, 0x40141800, 0x80142120, + 0x05edf805, 0x5c001800, 0x5c001000, 0x1c01f000, + 0x59cc0002, 0x82000500, 0xff000000, 0x82001580, + 0x01000000, 0x05000008, 0x82001580, 0x23000000, + 0x05000005, 0x05c9fd4f, 0x0505f8d7, 0x05000713, + 0x0501f210, 0x59a800bb, 0x90000484, 0x0500120d, + 0x900405a3, 0x05020046, 0x59cc0004, 0x4803c857, + 0x59cc0006, 0x82000500, 0xff000000, 0x59cc0801, + 0x82040d00, 0x00ffffff, 0x80040540, 0x4803c857, + 0x0501fcf5, 0x05c80d3b, 0x050001fe, 0x59300c07, + 0x90040590, 0x0500000a, 0x90040591, 0x05000008, + 0x90040581, 0x05000006, 0x90040584, 0x05000004, + 0x90040588, 0x05ca0d2f, 0x050201f2, 0x59300004, + 0x82000500, 0x80010000, 0x05000004, 0x050dfbd0, + 0x05ca0d28, 0x050201eb, 0x59cc0a04, 0x48066202, 0x59cc0006, 0x82000500, 0xffff0000, 0x82000d80, - 0x7f000000, 0x05020008, 0x05edfccb, 0x05020036, - 0x59cc0c07, 0x82040d00, 0x000000ff, 0x90040581, - 0x05020031, 0x0501f9d8, 0x0500002f, 0x61327000, - 0x59cc3800, 0x821c3d00, 0x00ffffff, 0x4c1c0000, - 0x05d9ffc8, 0x5c003800, 0x05000003, 0x05cdf83e, - 0x0501f18c, 0x59cc0001, 0x82000500, 0x00ffffff, - 0x0501ff20, 0x05000006, 0x61fe89ff, 0x42026800, - 0x00110210, 0x05f5ff3d, 0x481a6802, 0x599c0019, - 0x8c000510, 0x05000168, 0x59a80249, 0x8c000508, - 0x05000165, 0x59cc1006, 0x82081500, 0xffff0000, - 0x82081580, 0x03000000, 0x0502015f, 0x91641490, - 0x05001181, 0x8400054c, 0x48035249, 0x59cc1000, - 0x82081500, 0x00ffffff, 0x05fdfd98, 0x59cc0007, - 0x82000500, 0x0000ffff, 0x48038893, 0x48035040, - 0x0501f151, 0x59cc0006, 0x82000500, 0xffff0000, - 0x82000d80, 0x03000000, 0x05020032, 0x59a80249, - 0x8c000508, 0x05000020, 0x8400054c, 0x48035249, - 0x59cc0800, 0x82040d00, 0x00ffffff, 0x42024800, - 0x0010e512, 0x4807c857, 0x48064805, 0x4807503d, - 0x497b8830, 0x84040d70, 0x48078832, 0x59c40802, - 0x84040d4c, 0x48078802, 0x59cc0007, 0x82000500, - 0x0000ffff, 0x48038893, 0x48035040, 0x600c0800, - 0x59a8103d, 0x0509fe98, 0x59cc0006, 0x82000500, - 0x0000ffff, 0x05ca0ff4, 0x05020142, 0x605e7000, - 0x0501f0f3, 0x4c000000, 0x82140500, 0x0000f000, - 0x82000580, 0x00003000, 0x5c000000, 0x05fe07f3, - 0x05f9f9f6, 0x05fe07f1, 0x8c000502, 0x05fe07ef, - 0x60583002, 0x0501fdec, 0x4803c857, 0x0501f131, - 0x82000d80, 0x04000000, 0x05020013, 0x59cc0006, - 0x82000500, 0x0000ffff, 0x05ca0fdb, 0x05020129, - 0x05f9f9e6, 0x05000002, 0x0501f0d8, 0x497b50c2, - 0x42001000, 0x0010582b, 0x0501ffe7, 0x05f5fee5, - 0x59a80249, 0x84000548, 0x48035249, 0x60c27000, - 0x0501f0cf, 0x82000d80, 0x05000000, 0x05020008, - 0x59cc0006, 0x82000500, 0x0000ffff, 0x05ca0fc6, - 0x05020114, 0x60627000, 0x0501f0c5, 0x82000d80, - 0x20100000, 0x05020003, 0x60667000, 0x0501f0c0, - 0x82000d80, 0x21100000, 0x05020003, 0x606a7000, - 0x0501f0bb, 0x82000d80, 0x52000000, 0x05020008, - 0x59cc0006, 0x82000500, 0x0000ffff, 0x05ca0fb2, - 0x05020100, 0x606e7000, 0x0501f0b1, 0x82000d80, - 0x50000000, 0x05020008, 0x59cc0006, 0x82000500, - 0x0000ffff, 0x05ca0fa8, 0x050200f6, 0x60727000, - 0x0501f0a7, 0x82000d80, 0x13000000, 0x05020003, - 0x60d27000, 0x0501f0a2, 0x82000d80, 0x12000000, + 0x02000000, 0x05020007, 0x60567000, 0x0501fd3f, + 0x0501fd70, 0x05c80d1b, 0x050001de, 0x0009f039, + 0x82000d80, 0x02140000, 0x05fc07f8, 0x82000d80, + 0x02100000, 0x05fc07f5, 0x82000d80, 0x02100000, + 0x05fc07f2, 0x82000d80, 0x01000000, 0x05ca0d0d, + 0x050201d0, 0x59cc0006, 0x82000500, 0x0000ffff, + 0x05ca0d08, 0x050201cb, 0x59a800bb, 0x90000488, + 0x050011c8, 0x605a7000, 0x05fdf7e5, 0x900405a2, + 0x05ca0d00, 0x050201c3, 0x59cc0004, 0x4803c857, + 0x59cc0006, 0x4803c857, 0x59cc0001, 0x4803c857, + 0x59a800bb, 0x800001c0, 0x05c80cf6, 0x050001b9, + 0x0531feb4, 0x05000003, 0x0531feb7, 0x050001b5, + 0x59a8024c, 0x8c000508, 0x05000003, 0x8c000502, + 0x050001b0, 0x59a80805, 0x8c040514, 0x05000043, + 0x0501f9d8, 0x05020041, 0x59a8024c, 0x8c000518, + 0x0500000e, 0x59cc0006, 0x82000500, 0xffff0000, + 0x82000d80, 0x7f000000, 0x05020008, 0x05edfad0, + 0x05020036, 0x59cc0c07, 0x82040d00, 0x000000ff, + 0x90040581, 0x05020031, 0x0501f9e0, 0x0500002f, + 0x61327000, 0x59cc3800, 0x821c3d00, 0x00ffffff, + 0x4c1c0000, 0x05d9fcc3, 0x5c003800, 0x05000003, + 0x05c9fccc, 0x0501f18f, 0x59cc0001, 0x82000500, + 0x00ffffff, 0x0501ff6f, 0x05000006, 0x61fe89ff, + 0x42026800, 0x001141b4, 0x05f5fe71, 0x481a6802, + 0x599c0019, 0x8c000510, 0x0500016b, 0x59a8024c, + 0x8c000508, 0x05000168, 0x59cc1006, 0x82081500, + 0xffff0000, 0x82081580, 0x03000000, 0x05020162, + 0x91641490, 0x05001184, 0x8400054c, 0x4803524c, + 0x59cc1000, 0x82081500, 0x00ffffff, 0x05fdfd7f, + 0x59cc0007, 0x82000500, 0x0000ffff, 0x48038893, + 0x48035043, 0x0501f154, 0x59cc0006, 0x82000500, + 0xffff0000, 0x82000d80, 0x03000000, 0x05020032, + 0x59a8024c, 0x8c000508, 0x05000020, 0x8400054c, + 0x4803524c, 0x59cc0800, 0x82040d00, 0x00ffffff, + 0x42024800, 0x001124b6, 0x4807c857, 0x48064805, + 0x48075040, 0x497b8830, 0x84040d70, 0x48078832, + 0x59c40802, 0x84040d4c, 0x48078802, 0x59cc0007, + 0x82000500, 0x0000ffff, 0x48038893, 0x48035043, + 0x600c0800, 0x59a81040, 0x0509ffb5, 0x59cc0006, + 0x82000500, 0x0000ffff, 0x05ca0c82, 0x05020145, + 0x605e7000, 0x0501f0f3, 0x4c000000, 0x82140500, + 0x0000f000, 0x82000580, 0x00003000, 0x5c000000, + 0x05fe07f3, 0x05f9f93f, 0x05fe07f1, 0x8c000502, + 0x05fe07ef, 0x60583002, 0x0501fe3b, 0x4803c857, + 0x0501f134, 0x82000d80, 0x04000000, 0x05020013, + 0x59cc0006, 0x82000500, 0x0000ffff, 0x05ca0c69, + 0x0502012c, 0x05f9f92f, 0x05000002, 0x0501f0d8, + 0x497b50c7, 0x42001000, 0x00105a99, 0x0505f860, + 0x05f5fe19, 0x59a8024c, 0x84000548, 0x4803524c, + 0x60c27000, 0x0501f0cf, 0x82000d80, 0x05000000, + 0x05020008, 0x59cc0006, 0x82000500, 0x0000ffff, + 0x05ca0c54, 0x05020117, 0x60627000, 0x0501f0c5, + 0x82000d80, 0x20100000, 0x05020003, 0x60667000, + 0x0501f0c0, 0x82000d80, 0x21100000, 0x05020003, + 0x606a7000, 0x0501f0bb, 0x82000d80, 0x52000000, 0x05020008, 0x59cc0006, 0x82000500, 0x0000ffff, - 0x05ca0f99, 0x050200e7, 0x60927000, 0x0501f098, - 0x82000d00, 0xff000000, 0x82040d80, 0x24000000, - 0x05020003, 0x60b67000, 0x0501f091, 0x82000d00, - 0xff000000, 0x82040d80, 0x53000000, 0x05020003, - 0x60aa7000, 0x0501f08a, 0x82000d80, 0x0f000000, - 0x05020003, 0x60827000, 0x0501f085, 0x82000d80, - 0x61040000, 0x0502004a, 0x4c5c0000, 0x4c600000, - 0x4c640000, 0x4c580000, 0x91ccc406, 0x8060b800, - 0x50600000, 0x82000500, 0x0000ffff, 0x82001480, - 0x00000401, 0x05021037, 0x90001503, 0x05020035, - 0x59a810b6, 0x80081480, 0x05001032, 0x90000484, - 0x8000b104, 0x8058b1c0, 0x0500002e, 0x59cc3800, - 0x821c3d00, 0x00ffffff, 0x4d200000, 0x05d9feed, - 0x05000003, 0x5c024000, 0x0501f026, 0x505cc800, - 0x8264c500, 0x03000000, 0x8060c130, 0x42000000, - 0x0010e410, 0x90602580, 0x05020004, 0x42000000, - 0x0010e40d, 0x0501f00a, 0x90602581, 0x05020004, - 0x42000000, 0x0010e40e, 0x0501f005, 0x90602582, - 0x05020003, 0x42000000, 0x0010e40f, 0x0531f889, - 0x60541100, 0x82642500, 0x0000ffff, 0x80641920, - 0x41202800, 0x05edf884, 0x805cb800, 0x8058b040, - 0x05fe07e3, 0x5c024000, 0x5c00b000, 0x5c00c800, - 0x5c00c000, 0x5c00b800, 0x608e7000, 0x0501f040, - 0x5c00b000, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x42000000, 0x0010e448, 0x0531f072, 0x82000d80, - 0x60000000, 0x05020003, 0x60fe7000, 0x0501f034, - 0x82000d80, 0x78000000, 0x05020003, 0x61167000, - 0x0501f02f, 0x82000d80, 0x10000000, 0x05020003, - 0x613a7000, 0x0501f02a, 0x82000d80, 0x63000000, - 0x05020003, 0x612a7000, 0x0501f025, 0x82000d00, - 0xff000000, 0x82040d80, 0x56000000, 0x05020003, - 0x613e7000, 0x0501f01e, 0x82000d00, 0xff000000, - 0x82040d80, 0x57000000, 0x05020003, 0x61427000, - 0x0501f017, 0x82000d80, 0x7d000000, 0x05020003, - 0x615a7000, 0x0501f012, 0x59a80a49, 0x8c040518, - 0x0500000e, 0x82000d80, 0x7f000000, 0x0502000b, - 0x4803c857, 0x61667000, 0x59cc0c07, 0x82040d00, - 0x000000ff, 0x90040581, 0x05000005, 0x4803c857, - 0x61767000, 0x0501f002, 0x60767000, 0x59cc3800, - 0x821c3d00, 0x00ffffff, 0x821c0580, 0x00fffffe, - 0x59cc0001, 0x05020004, 0x40003000, 0x61fa880f, - 0x0501f009, 0x59cc3800, 0x821c3d00, 0x00ffffff, - 0x4c1c0000, 0x0501f91e, 0x5c003800, 0x05ca0eee, - 0x05020041, 0x05d9fe73, 0x0502003a, 0x83440480, - 0x000007f0, 0x05001001, 0x05edfb8f, 0x0500000f, - 0x4c180000, 0x05f5fabc, 0x5c003000, 0x0500000e, - 0x4c180000, 0x0501f856, 0x5c003000, 0x05020007, - 0x05f5fde6, 0x42026800, 0x00110210, 0x481a6802, - 0x61fe89ff, 0x0501f004, 0x05f1fd4f, 0x05ca0ed6, + 0x05ca0c40, 0x05020103, 0x606e7000, 0x0501f0b1, + 0x82000d80, 0x50000000, 0x05020008, 0x59cc0006, + 0x82000500, 0x0000ffff, 0x05ca0c36, 0x050200f9, + 0x60727000, 0x0501f0a7, 0x82000d80, 0x13000000, + 0x05020003, 0x60d27000, 0x0501f0a2, 0x82000d80, + 0x12000000, 0x05020008, 0x59cc0006, 0x82000500, + 0x0000ffff, 0x05ca0c27, 0x050200ea, 0x60927000, + 0x0501f098, 0x82000d00, 0xff000000, 0x82040d80, + 0x24000000, 0x05020003, 0x60b67000, 0x0501f091, + 0x82000d00, 0xff000000, 0x82040d80, 0x53000000, + 0x05020003, 0x60aa7000, 0x0501f08a, 0x82000d80, + 0x0f000000, 0x05020003, 0x60827000, 0x0501f085, + 0x82000d80, 0x61040000, 0x0502004a, 0x4c5c0000, + 0x4c600000, 0x4c640000, 0x4c580000, 0x91ccc406, + 0x8060b800, 0x50600000, 0x82000500, 0x0000ffff, + 0x82001480, 0x00000401, 0x05021037, 0x90001503, + 0x05020035, 0x59a810bb, 0x80081480, 0x05001032, + 0x90000484, 0x8000b104, 0x8058b1c0, 0x0500002e, + 0x59cc3800, 0x821c3d00, 0x00ffffff, 0x4d200000, + 0x05d9fbe8, 0x05000003, 0x5c024000, 0x0501f026, + 0x505cc800, 0x8264c500, 0x03000000, 0x8060c130, + 0x42000000, 0x001123b1, 0x90602580, 0x05020004, + 0x42000000, 0x001123ae, 0x0501f00a, 0x90602581, + 0x05020004, 0x42000000, 0x001123af, 0x0501f005, + 0x90602582, 0x05020003, 0x42000000, 0x001123b0, + 0x0531fc63, 0x60541100, 0x82642500, 0x0000ffff, + 0x80641920, 0x41202800, 0x05e9fe80, 0x805cb800, + 0x8058b040, 0x05fe07e3, 0x5c024000, 0x5c00b000, + 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x608e7000, + 0x0501f040, 0x5c00b000, 0x5c00c800, 0x5c00c000, + 0x5c00b800, 0x42000000, 0x001123ec, 0x0531f44c, + 0x82000d80, 0x60000000, 0x05020003, 0x60fe7000, + 0x0501f034, 0x82000d80, 0x78000000, 0x05020003, + 0x61167000, 0x0501f02f, 0x82000d80, 0x10000000, + 0x05020003, 0x613a7000, 0x0501f02a, 0x82000d80, + 0x63000000, 0x05020003, 0x612a7000, 0x0501f025, + 0x82000d00, 0xff000000, 0x82040d80, 0x56000000, + 0x05020003, 0x613e7000, 0x0501f01e, 0x82000d00, + 0xff000000, 0x82040d80, 0x57000000, 0x05020003, + 0x61427000, 0x0501f017, 0x82000d80, 0x7d000000, + 0x05020003, 0x615a7000, 0x0501f012, 0x59a80a4c, + 0x8c040518, 0x0500000e, 0x82000d80, 0x7f000000, + 0x0502000b, 0x4803c857, 0x61667000, 0x59cc0c07, + 0x82040d00, 0x000000ff, 0x90040581, 0x05000005, + 0x4803c857, 0x61767000, 0x0501f002, 0x60767000, + 0x59cc3800, 0x821c3d00, 0x00ffffff, 0x821c0580, + 0x00fffffe, 0x59cc0001, 0x05020004, 0x40003000, + 0x61fa880f, 0x0501f009, 0x59cc3800, 0x821c3d00, + 0x00ffffff, 0x4c1c0000, 0x0501f929, 0x5c003800, + 0x05ca0b7c, 0x05020044, 0x05d9fb6e, 0x0502003d, + 0x83440480, 0x000007f0, 0x05001004, 0x83440480, + 0x00000800, 0x05001011, 0x05edf9df, 0x0500000f, + 0x4c180000, 0x05f5f9e1, 0x5c003000, 0x0500000e, + 0x4c180000, 0x0501f85b, 0x5c003000, 0x05020007, + 0x05f5fd17, 0x42026800, 0x001141b4, 0x481a6802, + 0x61fe89ff, 0x0501f004, 0x05f1fbc6, 0x05ca0b61, 0x05020024, 0x59340200, 0x8c000514, 0x0500000a, 0x913805b0, 0x05000008, 0x913805bf, 0x05000006, 0x913805b4, 0x05000004, 0x913805a4, 0x05000002, - 0x61327000, 0x0511fc2a, 0x05000023, 0x4926601d, - 0x4936600a, 0x64126407, 0x83340580, 0x00110210, + 0x61327000, 0x0511fdc0, 0x05000023, 0x4926601d, + 0x4936600a, 0x64126407, 0x83340580, 0x001141b4, 0x05020005, 0x59cc0001, 0x82000500, 0x00ffffff, 0x4802602a, 0x59cc0c04, 0x48066202, 0xb138058c, - 0x05020002, 0x64466407, 0x0501fb17, 0x0501fb7a, - 0x05020003, 0x0005ffdc, 0x0501f002, 0x0009f000, - 0x598800bc, 0x4803c857, 0x80000000, 0x480310bc, - 0x1c01f000, 0x05d9fe33, 0x05fe07fa, 0x42000000, - 0x0010e3bd, 0x052dffe3, 0x42026800, 0x00110210, - 0x0501f002, 0x0501fe3d, 0x61241100, 0x59cc1806, - 0x800c1930, 0x05e9ffdb, 0x0511fc09, 0x05c80e9e, - 0x05fc07ec, 0x4926601d, 0x4936600a, 0x83340580, - 0x00110210, 0x05020005, 0x59cc0001, 0x82000500, - 0x00ffffff, 0x4802602a, 0x64126407, 0x59cc0c04, - 0x48066202, 0x64266403, 0x6426641c, 0x4a02621c, - 0x00002900, 0x64066203, 0x0509f05b, 0x59a80249, - 0x4803c857, 0x8c000508, 0x05000013, 0x599c0019, - 0x8c000510, 0x05020010, 0x59cc0006, 0x82000500, - 0xff000000, 0x82000d80, 0x03000000, 0x0500000c, - 0x82000d80, 0x20000000, 0x05000009, 0x82000d80, - 0x05000000, 0x05000006, 0x82000d80, 0x21000000, - 0x05000003, 0x80000580, 0x1c01f000, 0x90000541, - 0x05fdf7fe, 0x59cc2006, 0x82102500, 0xff000000, - 0x9c1021c0, 0x0501f807, 0x820c1c00, 0x0010dd3e, - 0x500c1800, 0x800c0500, 0x4803c857, 0x1c01f000, - 0x40100800, 0x41781800, 0x900404a0, 0x05001004, - 0x800c1800, 0x40000800, 0x05fdf7fc, 0x9004050f, - 0x82000400, 0x0010d15b, 0x50000000, 0x8c040508, - 0x05000002, 0x900001c0, 0x1c01f000, 0x4803c856, - 0x0501fd66, 0x0502000c, 0x05d9fbb6, 0x0502000a, - 0x59cc0002, 0x82000500, 0xff000000, 0x82000d80, - 0x08000000, 0x05000007, 0x42000000, 0x0010e44b, - 0x052df784, 0x42000000, 0x0010e448, 0x052df781, - 0x4803c856, 0x59cc0400, 0x82000d00, 0x0000ff00, - 0x840409c0, 0x900405b3, 0x05020029, 0x0501fa38, - 0x05000067, 0x59cc0a04, 0x48066202, 0x59a800b6, - 0x90000484, 0x05001062, 0x59cc0006, 0x4803c857, - 0x82000500, 0xffff0000, 0x82000d80, 0x02000000, - 0x0502000b, 0x59cc0006, 0x82000500, 0x0000ffff, - 0x05020057, 0x0501fabf, 0x05020003, 0x0005ffdc, - 0x0501f053, 0x60567000, 0x0009f000, 0x82000d80, - 0x01000000, 0x0502004e, 0x59cc0006, 0x82000500, - 0x0000ffff, 0x0502004a, 0x59a800b6, 0x90000488, - 0x05001047, 0x0501faaf, 0x05020003, 0x0005ffdc, - 0x0501f043, 0x605a7000, 0x0009f000, 0x900405b2, - 0x0502003f, 0x59cc0006, 0x82000500, 0xffff0000, - 0x82000d80, 0x14000000, 0x05020039, 0x59a800b6, - 0x90000490, 0x05001036, 0x60e27000, 0x59cc0001, - 0x59cc3800, 0x821c3d00, 0x00ffffff, 0x4c1c0000, - 0x0501f832, 0x5c003800, 0x0502002d, 0x05d9fd89, - 0x0502002b, 0x83440480, 0x000007f0, 0x05001001, - 0x05edfaa5, 0x0500000f, 0x4c180000, 0x05f5f9d2, - 0x5c003000, 0x0500000d, 0x4c180000, 0x05fdff6c, - 0x5c003000, 0x05020007, 0x05f5fcfc, 0x42026800, - 0x00110210, 0x481a6802, 0x61fe89ff, 0x0501f003, - 0x05f1fc60, 0x05020016, 0x0511fb4d, 0x05000d83, + 0x05020002, 0x64466407, 0x0501fb64, 0x0501fbc6, + 0x05020003, 0x0009f810, 0x0501f002, 0x0009f039, + 0x598800bf, 0x4803c857, 0x80000000, 0x480310bf, + 0x1c01f000, 0x05d9fb2b, 0x05fe07fa, 0x42000000, + 0x0011235e, 0x0531fbba, 0x42026800, 0x001141b4, + 0x0501f002, 0x0501feb3, 0x61241100, 0x59cc1806, + 0x800c1930, 0x60082800, 0x83340580, 0x001141b4, + 0x05000002, 0x60042800, 0x05e9fdd0, 0x0511fd75, + 0x05c80b24, 0x05fc07e7, 0x4926601d, 0x4936600a, + 0x83340580, 0x001141b4, 0x05020005, 0x59cc0001, + 0x82000500, 0x00ffffff, 0x4802602a, 0x64126407, + 0x59cc0c04, 0x48066202, 0x64266403, 0x6426641c, + 0x4a02621c, 0x00002900, 0x64066203, 0x0509f16b, + 0x59a8024c, 0x4803c857, 0x8c000508, 0x05000013, + 0x599c0019, 0x8c000510, 0x05020010, 0x59cc0006, + 0x82000500, 0xff000000, 0x82000d80, 0x03000000, + 0x0500000c, 0x82000d80, 0x20000000, 0x05000009, + 0x82000d80, 0x05000000, 0x05000006, 0x82000d80, + 0x21000000, 0x05000003, 0x80000580, 0x1c01f000, + 0x90000541, 0x05fdf7fe, 0x59cc2006, 0x82102500, + 0xff000000, 0x9c1021c0, 0x0501f807, 0x820c1c00, + 0x00111cc4, 0x500c1800, 0x800c0500, 0x4803c857, + 0x1c01f000, 0x40100800, 0x41781800, 0x900404a0, + 0x05001004, 0x800c1800, 0x40000800, 0x05fdf7fc, + 0x9004050f, 0x82000400, 0x0010d8d9, 0x50000000, + 0x8c040508, 0x05000002, 0x900001c0, 0x1c01f000, + 0x4803c856, 0x0501fdd7, 0x0502000c, 0x05d9f8a5, + 0x0502000a, 0x59cc0002, 0x82000500, 0xff000000, + 0x82000d80, 0x08000000, 0x05000007, 0x42000000, + 0x001123ef, 0x0531f356, 0x42000000, 0x001123ec, + 0x0531f353, 0x4803c856, 0x59cc0400, 0x82000d00, + 0x0000ff00, 0x840409c0, 0x900405b3, 0x05020029, + 0x0501fa7d, 0x0500006a, 0x59cc0a04, 0x48066202, + 0x59a800bb, 0x90000484, 0x05001065, 0x59cc0006, + 0x4803c857, 0x82000500, 0xffff0000, 0x82000d80, + 0x02000000, 0x0502000b, 0x59cc0006, 0x82000500, + 0x0000ffff, 0x0502005a, 0x0501fb06, 0x05020003, + 0x0009f810, 0x0501f056, 0x60567000, 0x0009f039, + 0x82000d80, 0x01000000, 0x05020051, 0x59cc0006, + 0x82000500, 0x0000ffff, 0x0502004d, 0x59a800bb, + 0x90000488, 0x0500104a, 0x0501faf6, 0x05020003, + 0x0009f810, 0x0501f046, 0x605a7000, 0x0009f039, + 0x900405b2, 0x05020042, 0x59cc0006, 0x82000500, + 0xffff0000, 0x82000d80, 0x14000000, 0x0502003c, + 0x59a800bb, 0x90000490, 0x05001039, 0x60e27000, + 0x59cc0001, 0x59cc3800, 0x821c3d00, 0x00ffffff, + 0x4c1c0000, 0x0501f835, 0x5c003800, 0x05020030, + 0x05d9fa7c, 0x0502002e, 0x83440480, 0x000007f0, + 0x05001004, 0x83440480, 0x00000800, 0x05001011, + 0x05edf8ed, 0x0500000f, 0x4c180000, 0x05f5f8ef, + 0x5c003000, 0x0500000d, 0x4c180000, 0x05fdff69, + 0x5c003000, 0x05020007, 0x05f5fc25, 0x42026800, + 0x001141b4, 0x481a6802, 0x61fe89ff, 0x0501f003, + 0x05f1facf, 0x05020016, 0x0511fcb6, 0x05000df1, 0x05000013, 0x4926601d, 0x4936600a, 0x83340580, - 0x00110210, 0x05020005, 0x59cc0001, 0x82000500, - 0x00ffffff, 0x4802602a, 0x051dffcd, 0x64126407, - 0x59cc0c04, 0x48066202, 0x0501fa9f, 0x05020003, - 0x0005ffdc, 0x0501f002, 0x0009f000, 0x42000000, - 0x0010e448, 0x052df70f, 0x4803c857, 0x4c580000, + 0x001141b4, 0x05020005, 0x59cc0001, 0x82000500, + 0x00ffffff, 0x4802602a, 0x0521f9b9, 0x64126407, + 0x59cc0c04, 0x48066202, 0x0501fae3, 0x05020003, + 0x0009f810, 0x0501f002, 0x0009f039, 0x42000000, + 0x001123ec, 0x0531f2de, 0x4803c857, 0x4c580000, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x82003500, 0x00ffffff, 0x821c3d00, 0x00ffffff, 0x82181500, 0x00ff0000, 0x82081580, 0x00ff0000, 0x05020013, 0x82181480, 0x00fffffc, 0x05001010, 0x82181580, - 0x00fffffd, 0x05020003, 0x61f6880f, 0x0501f050, + 0x00fffffd, 0x05020003, 0x61f6880f, 0x0501f083, 0x82181580, 0x00fffffe, 0x05020003, 0x61fa880f, - 0x0501f04b, 0x82181580, 0x00fffffc, 0x05020003, - 0x61f2880f, 0x0501f046, 0x41781000, 0x6000b800, - 0x61c0b00f, 0x41acc000, 0x50600000, 0x8000cd40, - 0x05020005, 0x800811c0, 0x05020032, 0x845c155e, - 0x0501f030, 0x58640212, 0x82000500, 0x0000ff00, - 0x05000011, 0x59a8403d, 0x82204500, 0x00ffff00, + 0x0501f07e, 0x82181580, 0x00fffffc, 0x05020003, + 0x61f2880f, 0x0501f079, 0x41781000, 0x6000b800, + 0x4200c000, 0x0010db80, 0x59a8b0ac, 0x50600000, + 0x8000cd40, 0x05020005, 0x800811c0, 0x0502005a, + 0x845c155e, 0x0501f058, 0x82000d00, 0xe0000000, + 0x0500001d, 0x8d0c0538, 0x05000065, 0x8200cd00, + 0x00ffffff, 0x82044580, 0xa0000000, 0x05000016, + 0x82044580, 0x80000000, 0x05020002, 0x0501f012, + 0x8c04053c, 0x0500000d, 0x40640000, 0x80180580, + 0x05020045, 0x4c080000, 0x4c180000, 0x405e8800, + 0x05f1fb5f, 0x4034c800, 0x5c003000, 0x5c001000, + 0x05000005, 0x0501f04e, 0x82040580, 0x20000000, + 0x05ca0951, 0x58640212, 0x82000500, 0x0000ff00, + 0x05000011, 0x59a84040, 0x82204500, 0x00ffff00, 0x82180500, 0x00ffff00, 0x05000002, 0x80200580, - 0x58640002, 0x05020023, 0x82000500, 0x000000ff, - 0x82184500, 0x000000ff, 0x80204580, 0x0502001d, + 0x58640002, 0x0502002c, 0x82000500, 0x000000ff, + 0x82184500, 0x000000ff, 0x80204580, 0x05020026, 0x0501f006, 0x58640002, 0x82000500, 0x00ffffff, - 0x80184580, 0x05020017, 0x4d200000, 0x4c080000, - 0x4c180000, 0x05d9fd13, 0x5c003000, 0x5c001000, - 0x58640813, 0x80040130, 0x81200580, 0x0502000c, - 0x82040500, 0x00ffffff, 0x59240805, 0x80040580, - 0x05000004, 0x812000f0, 0x80040d40, 0x4804c813, - 0x5c024000, 0x405e8800, 0x0501f00d, 0x5c024000, - 0x805cb800, 0x8060c000, 0x8058b040, 0x05fe07c7, - 0x800811c0, 0x05020005, 0x481bc857, 0x481fc857, - 0x90000541, 0x0501f003, 0x840a8d1e, 0x80000580, - 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x5c00b000, - 0x1c01f000, 0x59a80249, 0x8c00050e, 0x05000003, - 0x8c000502, 0x05000009, 0x59cc0003, 0x82000500, - 0x00ff0000, 0x05020005, 0x59cc0c00, 0x80040910, - 0x9004050f, 0x0c01f004, 0x42000000, 0x0010e44a, - 0x052df694, 0x00107159, 0x00107159, 0x00107159, - 0x0010747f, 0x00107159, 0x0010715d, 0x00107184, - 0x0010718a, 0x00107159, 0x00107159, 0x00107159, - 0x00107159, 0x00107159, 0x00107159, 0x00107159, - 0x00107159, 0x4803c856, 0x42000000, 0x0010e44a, - 0x052df680, 0x0501f93e, 0x05000021, 0x59a800b6, - 0x9000048c, 0x0500101e, 0x59300407, 0x90000583, - 0x0502001b, 0x59cc0001, 0x5932680a, 0x813669c0, - 0x05000017, 0x59340802, 0x80040580, 0x82000500, - 0x00ffffff, 0x05020012, 0x0501fc6d, 0x05020010, - 0x59cc0a04, 0x59300202, 0x82001580, 0x0000ffff, - 0x05000003, 0x80040580, 0x05020009, 0x48066202, - 0x59300416, 0x8c00051a, 0x05020005, 0x611a7000, - 0x0501f975, 0x05000002, 0x0009f000, 0x59cc0004, - 0x4803c857, 0x42000000, 0x0010e449, 0x052df659, - 0x59cc0004, 0x4803c857, 0x42000000, 0x0010e449, - 0x052dfe54, 0x1c01f000, 0x0501f911, 0x0500001d, - 0x59a800b6, 0x9000048c, 0x0500101a, 0x59300407, - 0x90000583, 0x05020017, 0x59cc0001, 0x82000500, - 0x00ffffff, 0x5932680a, 0x813669c0, 0x05000011, - 0x59340802, 0x82040d00, 0x00ffffff, 0x80040580, - 0x0502000c, 0x0501fc3e, 0x0502000a, 0x59cc0a04, - 0x48066202, 0x59300416, 0x8c00051a, 0x05020005, - 0x61167000, 0x0501f94c, 0x05000002, 0x0009f000, - 0x59cc0004, 0x4803c857, 0x42000000, 0x0010e449, - 0x052df630, 0x59cc0004, 0x4803c857, 0x59cc0000, - 0x82000500, 0xff000000, 0x59cc1001, 0x82081500, - 0x00ffffff, 0x80080540, 0x4803c857, 0x4817c857, - 0x0501fbfa, 0x05ca0ce8, 0x05020011, 0x05d9fa49, - 0x05ca0ce5, 0x0502000e, 0x59cc0002, 0x82000500, - 0xff000000, 0x90000580, 0x05000004, 0x0501fc7c, - 0x050002e2, 0x0501f006, 0x9004050f, 0x90000c86, - 0x05ca1cd9, 0x05021002, 0x0c01f005, 0x4803c856, - 0x42000000, 0x0010e44a, 0x052df60e, 0x001071d5, - 0x001071d9, 0x001071d5, 0x001071d5, 0x00107248, - 0x0010725e, 0x4803c856, 0x42000000, 0x0010e44a, - 0x052df604, 0x59a800b6, 0x800001c0, 0x05ca0cc6, - 0x05fe07f9, 0x59cc0802, 0x4807c857, 0x8c04052e, - 0x05020024, 0x42026000, 0x00111a70, 0x497a6416, - 0x59cc0001, 0x59cc3800, 0x05fdfee8, 0x05020015, - 0x0001fb00, 0x05020013, 0x59cc3800, 0x821c3d00, - 0x00ffffff, 0x05d9fc3b, 0x05fe07e7, 0x4926601d, - 0x051dfe9f, 0x64166407, 0x64226203, 0x4936600a, - 0x60227001, 0x0501f8fc, 0x05c80cab, 0x05fc07de, - 0x42000000, 0x0010e3b9, 0x052dfde2, 0x0009f000, - 0x4803c857, 0x61fe89ff, 0x417a6800, 0x59cc0001, - 0x82000500, 0x00ffffff, 0x4802602a, 0x05fdf7e7, - 0x59cc0001, 0x4803c857, 0x59cc3800, 0x821c3d00, - 0x00ffffff, 0x4c1c0000, 0x05fdfec4, 0x5c003800, - 0x05ca0c95, 0x05fe07c8, 0x05d9fc1a, 0x05ca0c92, - 0x05fe07c5, 0x05f1fb03, 0x05ca0c8f, 0x05fe07c2, - 0x59cc0005, 0x8c000500, 0x05020010, 0x59340200, - 0x8c00050e, 0x05ca0c88, 0x05fe07bb, 0x59a828d0, - 0x82140d00, 0x0000f000, 0x82040580, 0x00003000, - 0x05c80c81, 0x05fc07b4, 0x82040580, 0x00002000, - 0x05c80c7d, 0x05fc07b0, 0x05f5f80b, 0x05020014, - 0x0501f873, 0x05c80c78, 0x05fc07ab, 0x42026000, - 0x00111a70, 0x4926601d, 0x4936600a, 0x497a6416, - 0x051dfe5f, 0x640a6407, 0x64226203, 0x60227001, - 0x0501f8bd, 0x05c80c6c, 0x05fc079f, 0x42000000, - 0x0010e3b9, 0x052dfda3, 0x0009f000, 0x0511f9c8, - 0x05000bfe, 0x05fc0798, 0x4926601d, 0x4936600a, - 0x051dfe4f, 0x64126407, 0x59cc0c04, 0x48066202, - 0x60067000, 0x0501f8ac, 0x000407dc, 0x0009f000, - 0x59cc0802, 0x8c04052e, 0x05020004, 0x0501f84e, - 0x0500000c, 0x0501f007, 0x0501f84d, 0x0500000b, - 0x0501fb6b, 0x05020009, 0x59cc0a04, 0x48066202, - 0x60267001, 0x0501f89c, 0x05000004, 0x0009f000, - 0x0501f81f, 0x05fc07fb, 0x4933c857, 0x42000000, - 0x0010e448, 0x052df57f, 0x59cc0004, 0x4803c857, - 0x59a800b6, 0x90000484, 0x05001011, 0x59cc0802, - 0x8c04052e, 0x05020004, 0x0501f833, 0x0500000c, - 0x0501f007, 0x0501f832, 0x05000009, 0x0501fb50, - 0x05020007, 0x59cc0a04, 0x48066202, 0x602a7001, - 0x0501f881, 0x05000002, 0x0009f000, 0x4933c857, - 0x42000000, 0x0010e448, 0x052df566, 0x4933c857, - 0x59300407, 0x90000585, 0x05020005, 0x59300216, - 0x59cc0a07, 0x80040580, 0x05000019, 0x59cc1407, - 0x41526000, 0x59a80898, 0x59a80099, 0x80040480, - 0x05000013, 0x81300800, 0x41540000, 0x80040480, - 0x0502100f, 0x59300202, 0x80080580, 0x05020007, - 0x5930002a, 0x59cc1001, 0x82081500, 0x00ffffff, - 0x80080580, 0x05000006, 0x91326430, 0x41540000, - 0x81300480, 0x05fc17f4, 0x05c9fb44, 0x4933c857, - 0x1c01f000, 0x59cc0a04, 0x0501f002, 0x59cc0c04, - 0x59a804dd, 0x59a8109a, 0x80080400, 0x80040480, - 0x05021007, 0x800400ca, 0x800408c8, 0x80040c00, - 0x82066400, 0x00111b00, 0x1c01f000, 0x80000580, - 0x05fdf7fe, 0x4803c856, 0x90040507, 0x0c01f001, - 0x001072b4, 0x001072c9, 0x001072de, 0x001072ed, - 0x001072ed, 0x001072ed, 0x001072ed, 0x001072ed, - 0x59cc0802, 0x8c04052e, 0x05000010, 0x05fdffe4, - 0x05000007, 0x59cc0802, 0x90040d30, 0x90040d90, - 0x05000006, 0x61827000, 0x0009f000, 0x42000000, - 0x0010e448, 0x052df51b, 0x59300416, 0x8400055c, - 0x48026416, 0x051df50f, 0x05fdffd3, 0x05fc07f8, - 0x05fdf7f1, 0x59cc0802, 0x8c04052e, 0x05000010, - 0x05fdffcf, 0x05000007, 0x59cc0802, 0x90040d30, - 0x90040d90, 0x05000006, 0x61867000, 0x0009f000, - 0x42000000, 0x0010e448, 0x052df506, 0x59300416, - 0x8400055c, 0x48026416, 0x051df4fa, 0x05fdffbe, - 0x05fc07f8, 0x05fdf7f1, 0x82140500, 0x0000f000, - 0x82000580, 0x00002000, 0x0502000b, 0x59cc0802, - 0x8c04052e, 0x05000008, 0x05fdffb5, 0x05000006, - 0x59300416, 0x8c000510, 0x05000003, 0x618a7000, - 0x0009f000, 0x42000000, 0x0010e448, 0x052dfced, - 0x1c01f000, 0x59a828d0, 0x8c14051a, 0x0500000c, - 0x4803c856, 0x4d300000, 0x5930100a, 0x4c080000, - 0x0511f90b, 0x5c001000, 0x05000003, 0x59cc2a04, - 0x0501f910, 0x5c026000, 0x1c01f000, 0x90000541, - 0x1c01f000, 0x4803c856, 0x4c0c0000, 0x4d340000, - 0x59cc0006, 0x82000500, 0xffff0000, 0x82000580, - 0x01000000, 0x05000028, 0x5932680a, 0x59a81a49, - 0x05f5fda2, 0x05020024, 0x813669c0, 0x0500001b, - 0x83340580, 0x00110210, 0x05000018, 0x59340403, - 0x82000580, 0x000007fe, 0x05020014, 0x59cc0408, - 0x8c000518, 0x05000018, 0x5930001d, 0x82000580, - 0x0010e512, 0x05020014, 0x59a804cc, 0x8c00050a, + 0x80184580, 0x05020020, 0x50600000, 0x82004500, + 0xe0000000, 0x82204580, 0x80000000, 0x05020004, + 0x82000540, 0xa0000000, 0x4400c000, 0x4d200000, + 0x4c080000, 0x4c180000, 0x05d9f9da, 0x5c003000, + 0x5c001000, 0x58640813, 0x80040130, 0x81200580, + 0x0502000c, 0x82040500, 0x00ffffff, 0x59240805, + 0x80040580, 0x05000004, 0x812000f0, 0x80040d40, + 0x4804c813, 0x5c024000, 0x405e8800, 0x0501f017, + 0x5c024000, 0x805cb800, 0x8060c000, 0x825c4580, + 0x000007f0, 0x05020008, 0x59a800ad, 0x82000580, + 0x00000800, 0x05000006, 0x6000b810, 0x4200c000, + 0x0010e380, 0x8058b040, 0x05fe0795, 0x800811c0, + 0x05020005, 0x481bc857, 0x481fc857, 0x90000541, + 0x0501f003, 0x840a8d1e, 0x80000580, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x5c00b000, 0x1c01f000, + 0x59a8024c, 0x8c00050e, 0x05000003, 0x8c000502, + 0x05000009, 0x59cc0003, 0x82000500, 0x00ff0000, + 0x05020005, 0x59cc0c00, 0x80040910, 0x9004050f, + 0x0c01f004, 0x42000000, 0x001123ee, 0x0531f230, + 0x00107538, 0x00107538, 0x00107538, 0x0010786f, + 0x00107538, 0x0010753c, 0x00107563, 0x00107569, + 0x00107538, 0x00107538, 0x00107538, 0x00107538, + 0x00107538, 0x00107538, 0x00107538, 0x00107538, + 0x4803c856, 0x42000000, 0x001123ee, 0x0531f21c, + 0x0501f94d, 0x05000021, 0x59a800bb, 0x9000048c, + 0x0500101e, 0x59300407, 0x90000583, 0x0502001b, + 0x59cc0001, 0x5932680a, 0x813669c0, 0x05000017, + 0x59340802, 0x80040580, 0x82000500, 0x00ffffff, + 0x05020012, 0x0501fca8, 0x05020010, 0x59cc0a04, + 0x59300202, 0x82001580, 0x0000ffff, 0x05000003, + 0x80040580, 0x05020009, 0x48066202, 0x59300416, + 0x8c00051a, 0x05020005, 0x611a7000, 0x0501f987, + 0x05000002, 0x0009f039, 0x59cc0004, 0x4803c857, + 0x42000000, 0x001123ed, 0x0531f1f5, 0x59cc0004, + 0x4803c857, 0x42000000, 0x001123ed, 0x0531f9f0, + 0x1c01f000, 0x0501f920, 0x0500001d, 0x59a800bb, + 0x9000048c, 0x0500101a, 0x59300407, 0x90000583, + 0x05020017, 0x59cc0001, 0x82000500, 0x00ffffff, + 0x5932680a, 0x813669c0, 0x05000011, 0x59340802, + 0x82040d00, 0x00ffffff, 0x80040580, 0x0502000c, + 0x0501fc79, 0x0502000a, 0x59cc0a04, 0x48066202, + 0x59300416, 0x8c00051a, 0x05020005, 0x61167000, + 0x0501f95e, 0x05000002, 0x0009f039, 0x59cc0004, + 0x4803c857, 0x42000000, 0x001123ed, 0x0531f1cc, + 0x59cc0004, 0x4803c857, 0x59cc0000, 0x82000500, + 0xff000000, 0x59cc1001, 0x82081500, 0x00ffffff, + 0x80080540, 0x4803c857, 0x4817c857, 0x0501fc35, + 0x05ca0938, 0x05020011, 0x05d5ff02, 0x05ca0935, + 0x0502000e, 0x59cc0002, 0x82000500, 0xff000000, + 0x90000580, 0x05000004, 0x0501fcb7, 0x050002f3, + 0x0501f006, 0x9004050f, 0x90000c86, 0x05ca1929, + 0x05021002, 0x0c01f005, 0x4803c856, 0x42000000, + 0x001123ee, 0x0531f1aa, 0x001075b4, 0x001075b8, + 0x001075b4, 0x001075b4, 0x00107636, 0x0010764c, + 0x4803c856, 0x42000000, 0x001123ee, 0x0531f1a0, + 0x59a800bb, 0x800001c0, 0x05ca0916, 0x05fe07f9, + 0x59cc0802, 0x4807c857, 0x8c04052e, 0x05020024, + 0x42026000, 0x00115a14, 0x497a6416, 0x59cc0001, + 0x59cc3800, 0x05fdfeb5, 0x05020015, 0x0001fb08, + 0x05020013, 0x59cc3800, 0x821c3d00, 0x00ffffff, + 0x05d9f8f8, 0x05fe07e7, 0x4926601d, 0x0521f858, + 0x64166407, 0x64226203, 0x4936600a, 0x60227001, + 0x0501f90e, 0x05c808fb, 0x05fc07de, 0x42000000, + 0x0011235a, 0x0531f97e, 0x0009f039, 0x4803c857, + 0x61fe89ff, 0x417a6800, 0x59cc0001, 0x82000500, + 0x00ffffff, 0x4802602a, 0x05fdf7e7, 0x59cc0001, + 0x4803c857, 0x59cc3800, 0x821c3d00, 0x00ffffff, + 0x4c1c0000, 0x05fdfe91, 0x5c003800, 0x05ca08e5, + 0x05fe07c8, 0x05d9f8d7, 0x05ca08e2, 0x05fe07c5, + 0x05e9ff4d, 0x05000007, 0x0001fb08, 0x05000008, + 0x05f5fa8b, 0x42026800, 0x001141b4, 0x0501f004, + 0x05f1f937, 0x05ca08d7, 0x05fe07ba, 0x59cc0005, + 0x8c000500, 0x05020010, 0x59340200, 0x8c00050e, + 0x05ca08d0, 0x05fe07b3, 0x59a828d5, 0x82140d00, + 0x0000f000, 0x82040580, 0x00003000, 0x05c808c9, + 0x05fc07ac, 0x82040580, 0x00002000, 0x05c808c5, + 0x05fc07a8, 0x05f1feed, 0x05020014, 0x0501f87a, + 0x05c808c0, 0x05fc07a3, 0x42026000, 0x00115a14, + 0x4926601d, 0x4936600a, 0x497a6416, 0x0521f810, + 0x640a6407, 0x64226203, 0x60227001, 0x0501f8c7, + 0x05c808b4, 0x05fc0797, 0x42000000, 0x0011235a, + 0x0531f937, 0x0009f039, 0x0511faf6, 0x05000c31, + 0x05fc0790, 0x4926601d, 0x4936600a, 0x0521f800, + 0x64126407, 0x59cc0c04, 0x48066202, 0x60067000, + 0x0501f8b6, 0x00080010, 0x83340580, 0x001141b4, + 0x000a0039, 0x59cc0001, 0x82000500, 0x00ffffff, + 0x4802602a, 0x0009f039, 0x59cc0802, 0x8c04052e, + 0x05020004, 0x0501f84e, 0x0500000c, 0x0501f007, + 0x0501f84d, 0x0500000b, 0x0501fb97, 0x05020009, + 0x59cc0a04, 0x48066202, 0x60267001, 0x0501f89f, + 0x05000004, 0x0009f039, 0x0501f81f, 0x05fc07fb, + 0x4933c857, 0x42000000, 0x001123ec, 0x0531f10c, + 0x59cc0004, 0x4803c857, 0x59a800bb, 0x90000484, + 0x05001011, 0x59cc0802, 0x8c04052e, 0x05020004, + 0x0501f833, 0x0500000c, 0x0501f007, 0x0501f832, + 0x05000009, 0x0501fb7c, 0x05020007, 0x59cc0a04, + 0x48066202, 0x602a7001, 0x0501f884, 0x05000002, + 0x0009f039, 0x4933c857, 0x42000000, 0x001123ec, + 0x0531f0f3, 0x4933c857, 0x59300407, 0x90000585, + 0x05020005, 0x59300216, 0x59cc0a07, 0x80040580, + 0x05000019, 0x59cc1407, 0x41526000, 0x59a8089b, + 0x59a8009c, 0x80040480, 0x05000013, 0x81300800, + 0x41540000, 0x80040480, 0x0502100f, 0x59300202, + 0x80080580, 0x05020007, 0x5930002a, 0x59cc1001, + 0x82081500, 0x00ffffff, 0x80080580, 0x05000006, + 0x91326430, 0x41540000, 0x81300480, 0x05fc17f4, + 0x05c5ff91, 0x4933c857, 0x1c01f000, 0x59cc0a04, + 0x0501f002, 0x59cc0c04, 0x0531fa24, 0x59a8003d, + 0x05000002, 0x59a804e2, 0x59a8109d, 0x80080400, + 0x80040480, 0x05021007, 0x800400ca, 0x800408c8, + 0x80040c00, 0x82066400, 0x00115aa4, 0x1c01f000, + 0x80000580, 0x05fdf7fe, 0x4803c856, 0x90040507, + 0x0c01f001, 0x001076a5, 0x001076ba, 0x001076cf, + 0x001076de, 0x001076de, 0x001076de, 0x001076de, + 0x001076de, 0x59cc0802, 0x8c04052e, 0x05000010, + 0x05fdffe1, 0x05000007, 0x59cc0802, 0x90040d30, + 0x90040d90, 0x05000006, 0x61827000, 0x0009f039, + 0x42000000, 0x001123ec, 0x0531f0a5, 0x59300416, + 0x8400055c, 0x48026416, 0x051df6b6, 0x05fdffd0, + 0x05fc07f8, 0x05fdf7f1, 0x59cc0802, 0x8c04052e, + 0x05000010, 0x05fdffcc, 0x05000007, 0x59cc0802, + 0x90040d30, 0x90040d90, 0x05000006, 0x61867000, + 0x0009f039, 0x42000000, 0x001123ec, 0x0531f090, + 0x59300416, 0x8400055c, 0x48026416, 0x051df6a1, + 0x05fdffbb, 0x05fc07f8, 0x05fdf7f1, 0x82140500, + 0x0000f000, 0x82000580, 0x00002000, 0x0502000b, + 0x59cc0802, 0x8c04052e, 0x05000008, 0x05fdffb2, + 0x05000006, 0x59300416, 0x8c000510, 0x05000003, + 0x618a7000, 0x0009f039, 0x42000000, 0x001123ec, + 0x0531f877, 0x1c01f000, 0x59a828d5, 0x8c14051a, + 0x0500000c, 0x4803c856, 0x4d300000, 0x5930100a, + 0x4c080000, 0x0511fa2f, 0x5c001000, 0x05000003, + 0x59cc2a04, 0x0501f90f, 0x5c026000, 0x1c01f000, + 0x90000541, 0x1c01f000, 0x4803c856, 0x4c0c0000, + 0x4d340000, 0x59cc0006, 0x82000500, 0xffff0000, + 0x82000580, 0x01000000, 0x05000027, 0x5932680a, + 0x59a81a4c, 0x05f5fc9b, 0x05020023, 0x813669c0, + 0x0500001a, 0x83340580, 0x001141b4, 0x05000017, + 0x59340403, 0x82000580, 0x000007fe, 0x05020013, + 0x59cc0408, 0x8c000518, 0x05000017, 0x59300403, + 0x90000582, 0x05020014, 0x59a804d1, 0x8c00050a, 0x05020011, 0x59cc0207, 0x80000540, 0x05020002, - 0x60040000, 0x48038893, 0x48035040, 0x84000560, + 0x60040000, 0x48038893, 0x48035043, 0x84000560, 0x480388b3, 0x0501f008, 0x59300403, 0x90000582, 0x05000003, 0x91380597, 0x05020003, 0x8c0c0508, 0x05fe07f1, 0x5c026800, 0x5c001800, 0x1c01f000, - 0x59a828d0, 0x8c14051a, 0x05000018, 0x4803c856, - 0x4d300000, 0x4c5c0000, 0x4130b800, 0x0511f8c8, + 0x59a828d5, 0x8c14051a, 0x05000018, 0x4803c856, + 0x4d300000, 0x4c5c0000, 0x4130b800, 0x0511f9ed, 0x0500000f, 0x485e602a, 0x585c0407, 0x90000581, - 0x05020008, 0x4d300000, 0x405e6000, 0x051dfc86, + 0x05020008, 0x4d300000, 0x405e6000, 0x051dfe2e, 0x5c026000, 0x05000003, 0x4a026416, 0x00000080, 0x585c100a, 0x59cc2a04, 0x0501f8c2, 0x5c00b800, 0x5c026000, 0x1c01f000, 0x90000541, 0x1c01f000, - 0x59a828d0, 0x8c14051a, 0x05000011, 0x4803c856, + 0x59a828d5, 0x8c14051a, 0x05000011, 0x4803c856, 0x4d300000, 0x4c5c0000, 0x4130b800, 0x4a026416, - 0x00000100, 0x0511f8aa, 0x05000006, 0x485e602a, + 0x00000100, 0x0511f9cf, 0x05000006, 0x485e602a, 0x585c2c02, 0x585c100a, 0x405c2000, 0x0501f8b1, 0x5c00b800, 0x5c026000, 0x1c01f000, 0x90000541, - 0x1c01f000, 0x59a828d0, 0x8c14051a, 0x05000017, + 0x1c01f000, 0x59a828d5, 0x8c14051a, 0x05000017, 0x4803c856, 0x4d300000, 0x4c5c0000, 0x4130b800, - 0x4a026416, 0x00000100, 0x0511f895, 0x05000acb, - 0x0500000b, 0x493a6403, 0x485e602a, 0x051dfc56, + 0x4a026416, 0x00000100, 0x0511f9ba, 0x05000af5, + 0x0500000b, 0x493a6403, 0x485e602a, 0x051dfdfe, 0x05000003, 0x4a026416, 0x00000080, 0x585c2c02, 0x585c100a, 0x405c2000, 0x0501f896, 0x5c00b800, 0x5c026000, 0x1c01f000, 0x90000541, 0x1c01f000, 0x4803c856, 0x4c600000, 0x4c640000, 0x4c5c0000, - 0x4d200000, 0x4d240000, 0x4200c000, 0x00110202, + 0x4d200000, 0x4d240000, 0x4200c000, 0x001141a6, 0x5930c80a, 0x8064c9c0, 0x05020015, 0x58603800, - 0x821c3d00, 0x00ffffff, 0x4c1c0000, 0x05d9fa99, + 0x821c3d00, 0x00ffffff, 0x4c1c0000, 0x05d5ff45, 0x5c003800, 0x05020064, 0x4d340000, 0x58600001, - 0x82000500, 0x00ffffff, 0x0501f9f2, 0x05ca0a43, - 0x4936600a, 0x59341200, 0x5c026800, 0x0501fa25, + 0x82000500, 0x00ffffff, 0x0501f9f2, 0x05c60e8e, + 0x4936600a, 0x59341200, 0x5c026800, 0x0501fa4f, 0x4a026416, 0x00000100, 0x65126403, 0x58601006, 0x82081500, 0x0000f000, 0x82080480, 0x00002000, 0x05001058, 0x42002000, 0xc0000000, 0x5930100a, @@ -7442,7 +7694,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x0500000d, 0x82140580, 0x00002000, 0x05000047, 0x8064c9c0, 0x05000004, 0x58600402, 0x8c000526, 0x05000040, 0x42002000, 0xc1000000, 0x41783000, - 0x0501f002, 0x60043000, 0x4130b800, 0x0511f840, + 0x0501f002, 0x60043000, 0x4130b800, 0x0511f965, 0x05000031, 0x58601804, 0x8064c9c0, 0x05020006, 0x65126403, 0x585c0402, 0x820c1d00, 0xffff0000, 0x800c1d40, 0x58600000, 0x58600801, 0x58601003, @@ -7453,7 +7705,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x80040540, 0x90000561, 0x48026018, 0x585c0416, 0x58600802, 0x585c1407, 0x8c00051c, 0x05020023, 0x48026416, 0x4806601b, 0x480a6407, 0x643e6203, - 0x640e6006, 0x4c100000, 0x050dfd7d, 0x0505fc73, + 0x640e6006, 0x4c100000, 0x050dfe77, 0x0505fd3c, 0x5c002000, 0x82100580, 0xc2000000, 0x05000015, 0x90000541, 0x405e6000, 0x5c024800, 0x5c024000, 0x5c00b800, 0x5c00c800, 0x5c00c000, 0x1c01f000, @@ -7464,7 +7716,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x4803c856, 0x41782000, 0x0501f805, 0x1c01f000, 0x4803c856, 0x0501f802, 0x1c01f000, 0x4813c857, 0x59300416, 0x84000550, 0x48026416, 0x4816621d, - 0x480a600a, 0x82080580, 0x00110210, 0x05020002, + 0x480a600a, 0x82080580, 0x001141b4, 0x05020002, 0x41781000, 0x493a6403, 0x643e6203, 0x59cc0000, 0x82000500, 0x00ffffff, 0x48026019, 0x82000500, 0x000000ff, 0x800000e0, 0x59cc0801, 0x82040d00, @@ -7472,8 +7724,8 @@ static const uint32_t isp_2500_risc_code[] = { 0x800811c0, 0x0500000a, 0x58080a12, 0x0501f002, 0x800408d0, 0x80040540, 0x90000561, 0x4803c857, 0x4807c857, 0x48026018, 0x0501f00e, 0x4c000000, - 0x4c040000, 0x05f5fc75, 0x5c000800, 0x5c000000, - 0x05000007, 0x59a81a49, 0x8c0c0506, 0x05fc07f1, + 0x4c040000, 0x05f5fb6f, 0x5c000800, 0x5c000000, + 0x05000007, 0x59a81a4c, 0x8c0c0506, 0x05fc07f1, 0x90000561, 0x48026018, 0x0501f002, 0x64866018, 0x59cc0404, 0x4802641d, 0x59cc0002, 0x4802601b, 0x59cc0403, 0x4802641c, 0x59cc0203, 0x4802621c, @@ -7483,39 +7735,39 @@ static const uint32_t isp_2500_risc_code[] = { 0x8c000504, 0x0502001c, 0x42002800, 0xc1000000, 0x801021c0, 0x05000002, 0x64082008, 0x40142000, 0x41783000, 0x0501f003, 0x40142000, 0x60043000, - 0x050dfd07, 0x0505fbfd, 0x90000541, 0x1c01f000, + 0x050dfe01, 0x0505fcc6, 0x90000541, 0x1c01f000, 0x42002000, 0xc2000000, 0x42003000, 0x02120000, 0x0501f005, 0x42002000, 0xc2000000, 0x42003000, - 0x01050000, 0x050dfcfa, 0x0505fbf0, 0x80000580, + 0x01050000, 0x050dfdf4, 0x0505fcb9, 0x80000580, 0x05fdf7f3, 0x59cc1002, 0x82081500, 0x00003000, 0x82080580, 0x00001000, 0x05fc07e8, 0x82080580, 0x00002000, 0x05fc07eb, 0x05fdf7dc, 0x59cc0802, - 0x8c04052e, 0x0502001d, 0x05fdfe17, 0x0500001b, + 0x8c04052e, 0x0502001d, 0x05fdfe15, 0x0500001b, 0x59300407, 0x90000586, 0x05020018, 0x59cc0001, 0x82000500, 0x00ffffff, 0x5932680a, 0x813669c0, 0x05000012, 0x59340802, 0x82040d00, 0x00ffffff, - 0x80040580, 0x0502000d, 0x0501f949, 0x0502000b, - 0x59a800b6, 0x800001c0, 0x05020008, 0x61467000, + 0x80040580, 0x0502000d, 0x0501f973, 0x0502000b, + 0x59a800bb, 0x800001c0, 0x05020008, 0x61467000, 0x59300416, 0x8c00051a, 0x05020004, 0x05fdfeb5, - 0x05000002, 0x0009f000, 0x59cc0004, 0x4803c857, - 0x42000000, 0x0010e449, 0x052df33a, 0x4803c856, + 0x05000002, 0x0009f039, 0x59cc0004, 0x4803c857, + 0x42000000, 0x001123ed, 0x052df6c5, 0x4803c856, 0x60143002, 0x0501f004, 0x601c3004, 0x0501f802, 0x1c01f000, 0x481bc857, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x41ccc800, 0x4014b800, 0x4018c000, 0x0501f805, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4c580000, 0x58640400, 0x82000500, 0x0000f000, 0x82000580, 0x0000c000, - 0x05000024, 0x050dff46, 0x05000025, 0x58640001, + 0x05000024, 0x0511f86b, 0x05000025, 0x58640001, 0x58643800, 0x821c3d00, 0x00ffffff, 0x4c1c0000, - 0x05fdfc0a, 0x5c003800, 0x0502001c, 0x05d9f961, - 0x0502001a, 0x05f1f84b, 0x05020018, 0x4936600a, - 0x051dfbc3, 0x05c9fcb5, 0x05000014, 0x4926601d, + 0x05fdfbc6, 0x5c003800, 0x0502001c, 0x05d5fe0d, + 0x0502001a, 0x05edfe76, 0x05020018, 0x4936600a, + 0x051dfd6b, 0x05c9f8fc, 0x05000014, 0x4926601d, 0x492e6019, 0x497a5800, 0x497a5a08, 0x485e5c08, - 0x912cac09, 0x601cb000, 0x4064a000, 0x052dfbd0, - 0x42000000, 0x0010e3b7, 0x052dfb02, 0x4862641c, - 0x64fa6403, 0x64066407, 0x64066203, 0x0505fb92, - 0x5c00b000, 0x1c01f000, 0x0005ffdc, 0x42000000, - 0x0010e448, 0x052dfaf7, 0x05fdf7fa, 0x4803c856, + 0x912cac09, 0x601cb000, 0x4064a000, 0x052dff5b, + 0x42000000, 0x00112358, 0x052dfe8d, 0x4862641c, + 0x64fa6403, 0x64066407, 0x64066203, 0x0505fc5b, + 0x5c00b000, 0x1c01f000, 0x0009f810, 0x42000000, + 0x001123ec, 0x052dfe82, 0x05fdf7fa, 0x4803c856, 0x59cc0000, 0x82000d00, 0x00ffffff, 0x82040580, 0x00fffff0, 0x05000075, 0x59cc0400, 0x82000d00, 0x0000ff00, 0x82040500, 0x0000f000, 0x840409c0, @@ -7525,35 +7777,35 @@ static const uint32_t isp_2500_risc_code[] = { 0x82000500, 0xffff0000, 0x82000d80, 0x04000000, 0x0500005e, 0x82000d80, 0x60000000, 0x0500005b, 0x82000d80, 0x54000000, 0x05000058, 0x82000d80, - 0x03000000, 0x0502001e, 0x59a80a49, 0x8c040508, + 0x03000000, 0x0502001e, 0x59a80a4c, 0x8c040508, 0x05020052, 0x8c040502, 0x05020060, 0x82000d80, 0x03000000, 0x05020008, 0x82140d00, 0x0000f000, - 0x82040d80, 0x00003000, 0x05020003, 0x05f5fb93, - 0x05000046, 0x05f1fbbb, 0x05000046, 0x59a80046, - 0x800000d0, 0x59a8083d, 0x82040d00, 0x000000ff, + 0x82040d80, 0x00003000, 0x05020003, 0x05f5fa8d, + 0x05000046, 0x05f1fa3d, 0x05000046, 0x59a80049, + 0x800000d0, 0x59a80840, 0x82040d00, 0x000000ff, 0x80040540, 0x59cc0800, 0x82040d00, 0x00ffffff, 0x80040580, 0x05020037, 0x0501f038, 0x59c40802, 0x8c04050c, 0x0502001e, 0x82000d80, 0x52000000, 0x05fc07ed, 0x82000d80, 0x05000000, 0x05fc07ea, 0x82000d80, 0x50000000, 0x05fc07e7, 0x0501f029, - 0x900405a3, 0x05020027, 0x05fdfd61, 0x05000025, + 0x900405a3, 0x05020027, 0x05fdfd5f, 0x05000025, 0x59300c03, 0x90040582, 0x05000024, 0xb0040591, - 0x05000022, 0x0501f00a, 0x05fdfd59, 0x0500001d, + 0x05000022, 0x0501f00a, 0x05fdfd57, 0x0500001d, 0x59300403, 0x90000582, 0x0502001a, 0x59300203, - 0x9000058e, 0x05020017, 0x0501f018, 0x59a80249, - 0x8c000514, 0x05fc07f5, 0x4c580000, 0x052dfba5, + 0x9000058e, 0x05020017, 0x0501f018, 0x59a8024c, + 0x8c000514, 0x05fc07f5, 0x4c580000, 0x052dff30, 0xb0582481, 0x5c00b000, 0x0500100e, 0x59cc0800, - 0x82040d00, 0x00ffffff, 0x42001000, 0x0010e852, + 0x82040d00, 0x00ffffff, 0x42001000, 0x001127f6, 0x58080005, 0x80040580, 0x05000008, 0x801021c0, 0x05000004, 0x80102040, 0x9008140d, 0x05fdf7f9, 0x80000580, 0x0501f002, 0x90000541, 0x1c01f000, 0x59cc0006, 0x82000500, 0xffff0000, 0x82000d80, 0x03000000, 0x05000004, 0x82000d80, 0x52000000, - 0x05fe07f4, 0x59a80249, 0x90000509, 0x90000588, - 0x05fc07f2, 0x05fdf7ef, 0x59a828d0, 0x82140500, + 0x05fe07f4, 0x59a8024c, 0x90000509, 0x90000588, + 0x05fc07f2, 0x05fdf7ef, 0x59a828d5, 0x82140500, 0x0000f000, 0x82000580, 0x00003000, 0x05fe07eb, - 0x05f5fb36, 0x05fe07e9, 0x59a80046, 0x800000d0, - 0x59a8083d, 0x82040d00, 0x000000ff, 0x80040540, + 0x05f5fa30, 0x05fe07e9, 0x59a80049, 0x800000d0, + 0x59a80840, 0x82040d00, 0x000000ff, 0x80040540, 0x59cc0800, 0x82040d00, 0x00ffffff, 0x80040580, 0x05fc07de, 0x60043002, 0x05fdff23, 0x05fdf7d9, 0x4803c857, 0x4c580000, 0x40003000, 0x61c0200f, @@ -7561,253 +7813,305 @@ static const uint32_t isp_2500_risc_code[] = { 0x05000013, 0x59340002, 0x82000500, 0x00ffffff, 0x80180580, 0x0502000e, 0x59341013, 0x80080130, 0x81200580, 0x0502000a, 0x82080500, 0x00ffffff, - 0x59240805, 0x80040580, 0x05000011, 0x812000f0, - 0x80040d40, 0x48066813, 0x0501f00d, 0x80102000, + 0x59240805, 0x80040580, 0x0500003b, 0x812000f0, + 0x80040d40, 0x48066813, 0x0501f037, 0x80102000, 0x80387000, 0x8058b040, 0x05fe07e8, 0x82100480, - 0x00000800, 0x60002000, 0x61c0b00f, 0x41ac7000, - 0x05fe17e2, 0x90000541, 0x0501f002, 0x40128800, - 0x5c00b000, 0x1c01f000, 0x59a80249, 0x8c00050e, - 0x05000004, 0x8c000502, 0x05000003, 0x80000580, - 0x1c01f000, 0x90000541, 0x05fdf7fe, 0x59300c07, - 0x90040582, 0x05000002, 0x90040585, 0x1c01f000, - 0x60080800, 0x8c080508, 0x05000007, 0x8c08050c, - 0x05000004, 0x8c080504, 0x05020004, 0x90040d44, - 0x48066008, 0x1c01f000, 0x42001800, 0x00110202, - 0x580c1202, 0x82081500, 0x00003000, 0x82080580, - 0x00001000, 0x05fc07f7, 0x82080580, 0x00002000, - 0x05fc07f5, 0x05fdf7f2, 0x59c80000, 0x84000558, - 0x84000512, 0x48039000, 0x1c01f000, 0x59cc0800, - 0x59340013, 0x82000500, 0x00ffffff, 0x80040580, - 0x82000500, 0x00ffffff, 0x0502000b, 0x59a808d0, - 0x8c040516, 0x05000008, 0x42000800, 0x001102fe, - 0x50040800, 0x59340014, 0x80040580, 0x82000500, - 0x00001fff, 0x1c01f000, 0x82140500, 0x0000f000, - 0x05000006, 0x82000c80, 0x00004000, 0x0502100a, - 0x80000580, 0x1c01f000, 0x59cc0400, 0x82000500, - 0x0000ff00, 0x82000580, 0x00008100, 0x05fc07fa, - 0x0501f012, 0x4817c857, 0x82140500, 0x000003ff, - 0x05020007, 0x59cc0400, 0x82000500, 0x0000ff00, - 0x82000580, 0x00008100, 0x05020008, 0x42000000, - 0x0010e4ae, 0x052df9d3, 0x05fdfe99, 0x4803c856, - 0x90000541, 0x05fdf7e8, 0x41780000, 0x05fdf7e6, - 0x05f5fa9e, 0x0500000e, 0x59c400a4, 0x4803c857, - 0x9000050f, 0x9000058a, 0x05020009, 0x497b50b6, - 0x59c400a3, 0x82000540, 0x00080000, 0x480388a3, - 0x82000500, 0xfff7ffff, 0x480388a3, 0x4c140000, - 0x05e9faf6, 0x05020016, 0x916c0583, 0x05000014, - 0x42000000, 0x0010e4c0, 0x052df9b9, 0x59c40006, - 0x84000500, 0x48038806, 0x0509fa2b, 0x497b8880, - 0x59c400a3, 0x82000500, 0xfcf8ffff, 0x480388a3, - 0x6012d800, 0x64078805, 0x05c9f9cc, 0x05d1fed9, - 0x497b5068, 0x64075075, 0x05d5fb17, 0x5c002800, - 0x4817c856, 0x052df0e9, 0x42000000, 0x0010e3b8, - 0x052df9a0, 0x80000580, 0x1c01f000, 0x82140500, - 0x0000f000, 0x82006d80, 0x00003000, 0x05000003, - 0x82006d80, 0x00005000, 0x1c01f000, 0x4a032824, - 0x000003e8, 0x4a032802, 0x00111b00, 0x64032800, - 0x4a032808, 0x001089a9, 0x60140000, 0x91947c09, - 0x49787801, 0x4a007804, 0x00108954, 0x903c7c05, - 0x80000040, 0x05fe07fb, 0x4a032823, 0xffff0000, - 0x497b2832, 0x4a032833, 0x00103e7f, 0x0501fb54, - 0x6191d000, 0x0501f9c2, 0x4201d000, 0x000186a0, - 0x0501f1cf, 0x00000000, 0x00000005, 0x0000000a, - 0x0000000f, 0x00000014, 0x00000002, 0x00000008, - 0x00000020, 0x00000080, 0x00000200, 0x4d300000, - 0x4d2c0000, 0x4d340000, 0x4d400000, 0x4cfc0000, - 0x4d380000, 0x4d3c0000, 0x4d440000, 0x4d4c0000, - 0x4d480000, 0x4c5c0000, 0x4c600000, 0x4c640000, - 0x4d040000, 0x0005fc98, 0x5c020800, 0x5c00c800, - 0x5c00c000, 0x5c00b800, 0x5c029000, 0x5c029800, - 0x5c028800, 0x5c027800, 0x5c027000, 0x5c01f800, - 0x5c028000, 0x5c026800, 0x5c025800, 0x5c026000, - 0x1c01f000, 0x59940004, 0x80000540, 0x05020006, - 0x480b2805, 0x0501f81c, 0x48032804, 0x642b2803, - 0x80000580, 0x1c01f000, 0x59940029, 0x80000540, - 0x0502000b, 0x5994002f, 0x80040400, 0x05c41f43, - 0x5994082e, 0x80040400, 0x05c41f40, 0x48032829, - 0x480b282a, 0x64072828, 0x80000580, 0x1c01f000, - 0x5994002c, 0x80000540, 0x05020006, 0x480b282d, - 0x0501f805, 0x4803282c, 0x642b282b, 0x80000580, - 0x1c01f000, 0x4c0c0000, 0x5994182f, 0x5994002e, - 0x800c0400, 0x05c41f2d, 0x05000004, 0x4c040000, - 0x05c9f967, 0x5c000800, 0x80040400, 0x5c001800, - 0x1c01f000, 0x4c000000, 0x59940005, 0x80080580, - 0x05020003, 0x497b2804, 0x497b2805, 0x5c000000, - 0x1c01f000, 0x4c000000, 0x5994002a, 0x80080580, - 0x05020003, 0x497b2829, 0x497b282a, 0x5c000000, - 0x1c01f000, 0x4c000000, 0x5994002d, 0x80080580, - 0x05020003, 0x497b282c, 0x497b282d, 0x5c000000, - 0x1c01f000, 0x4937c857, 0x48ebc857, 0x59340203, - 0x80e80480, 0x05001002, 0x48ea6a03, 0x1c01f000, - 0x4d440000, 0x60407800, 0x59968801, 0x0001fb00, - 0x0502005e, 0x59341a03, 0x800c1840, 0x05001015, - 0x59940031, 0x800c0480, 0x05000003, 0x48026a03, - 0x05021010, 0x5934000f, 0x497a6a03, 0x80000540, - 0x05000052, 0x5934000b, 0x80001120, 0x82000500, - 0x0000ffff, 0x80080480, 0x05001003, 0x64066a03, - 0x0501f004, 0x4c3c0000, 0x0001fb0d, 0x5c007800, - 0x4d2c0000, 0x41781800, 0x5934000f, 0x80025d40, - 0x05000041, 0x592c0007, 0x80000d40, 0x05000006, - 0x59940031, 0x80040480, 0x48025807, 0x05001007, - 0x05000006, 0x412c1800, 0x592c0000, 0x80025d40, - 0x05000035, 0x05fdf7f4, 0x592c2000, 0x497a5800, - 0x800c19c0, 0x05020009, 0x59340010, 0x812c0580, - 0x05020004, 0x497a680f, 0x497a6810, 0x0501f008, - 0x4812680f, 0x0501f006, 0x48101800, 0x59340010, - 0x812c0580, 0x05020002, 0x480e6810, 0x592c0208, - 0x82000500, 0x000000ff, 0x90000592, 0x05000005, - 0xb00005a0, 0x05000003, 0x90000588, 0x05020003, - 0x642e5a0a, 0x0501f011, 0x4c0c0000, 0x4c100000, - 0x0005f9f3, 0x5c002000, 0x5c001800, 0x4c0c0000, - 0x4c100000, 0x05f9fce3, 0x5c002000, 0x5c001800, - 0x4a025a08, 0x00000103, 0x641a5a0a, 0x497a580d, - 0x4a025c0a, 0x0000ffff, 0x4c0c0000, 0x4c100000, - 0x0001fb82, 0x5c002000, 0x5c001800, 0x40100000, - 0x05fdf7cb, 0x5c025800, 0x81468800, 0x83440480, - 0x00000800, 0x05021007, 0x803c7840, 0x05fe079c, - 0x49472801, 0x5c028800, 0x5c03e000, 0x1c01f000, - 0x640b2800, 0x497b2801, 0x05fdf7fb, 0x60407800, + 0x00000800, 0x60002000, 0x61c0b00f, 0x42007000, + 0x0010db80, 0x05fe17e1, 0x8d0c0538, 0x05000028, + 0x60002010, 0x5900b400, 0x82100400, 0x0010db80, + 0x50000000, 0x80000540, 0x0500001e, 0x82000d00, + 0xe0000000, 0x82026d00, 0x00ffffff, 0x82041d80, + 0x20000000, 0x05000012, 0x82041d80, 0x80000000, + 0x0500000f, 0x82041d80, 0xa0000000, 0x0500000c, + 0x8c04053c, 0x05c40c60, 0x41340000, 0x80180580, + 0x0502000c, 0x4c100000, 0x40128800, 0x05edfe60, + 0x5c002000, 0x0502000a, 0x40366800, 0x59340002, + 0x82000500, 0x00ffffff, 0x80180580, 0x05000006, + 0x80102000, 0x8058b040, 0x05fe07dc, 0x90000541, + 0x0501f002, 0x40128800, 0x5c00b000, 0x1c01f000, + 0x59a8024c, 0x8c00050e, 0x05000004, 0x8c000502, + 0x05000003, 0x80000580, 0x1c01f000, 0x90000541, + 0x05fdf7fe, 0x59300c07, 0x90040582, 0x05000002, + 0x90040585, 0x1c01f000, 0x60080800, 0x8c080508, + 0x05000007, 0x8c08050c, 0x05000004, 0x8c080504, + 0x05020004, 0x90040d44, 0x48066008, 0x1c01f000, + 0x42001800, 0x001141a6, 0x580c1202, 0x82081500, + 0x00003000, 0x82080580, 0x00001000, 0x05fc07f7, + 0x82080580, 0x00002000, 0x05fc07f5, 0x05fdf7f2, + 0x59c80000, 0x84000558, 0x84000512, 0x48039000, + 0x1c01f000, 0x59cc0800, 0x59340013, 0x82000500, + 0x00ffffff, 0x80040580, 0x82000500, 0x00ffffff, + 0x0502000b, 0x59a808d5, 0x8c040516, 0x05000008, + 0x42000800, 0x001142a2, 0x50040800, 0x59340014, + 0x80040580, 0x82000500, 0x00001fff, 0x1c01f000, + 0x82140500, 0x0000f000, 0x05000006, 0x82000c80, + 0x00004000, 0x0502100a, 0x80000580, 0x1c01f000, + 0x59cc0400, 0x82000500, 0x0000ff00, 0x82000580, + 0x00008100, 0x05fc07fa, 0x0501f012, 0x4817c857, + 0x82140500, 0x000003ff, 0x05020007, 0x59cc0400, + 0x82000500, 0x0000ff00, 0x82000580, 0x00008100, + 0x05020008, 0x42000000, 0x00112452, 0x052dfd34, + 0x05fdfe6f, 0x4803c856, 0x90000541, 0x05fdf7e8, + 0x41780000, 0x05fdf7e6, 0x05f5f96e, 0x0500000e, + 0x59c400a4, 0x4803c857, 0x9000050f, 0x9000058a, + 0x05020009, 0x497b50bb, 0x59c400a3, 0x82000540, + 0x00080000, 0x480388a3, 0x82000500, 0xfff7ffff, + 0x480388a3, 0x4c140000, 0x05e9f882, 0x05020016, + 0x916c0583, 0x05000014, 0x42000000, 0x00112464, + 0x052dfd1a, 0x59c40006, 0x84000500, 0x48038806, + 0x0509facf, 0x497b8880, 0x59c400a3, 0x82000500, + 0xfcf8ffff, 0x480388a3, 0x6012d800, 0x64078805, + 0x05c5fde1, 0x05d1fb3f, 0x497b506b, 0x64075078, + 0x05d1ff7d, 0x5c002800, 0x4817c856, 0x052df444, + 0x42000000, 0x00112359, 0x052dfd01, 0x80000580, + 0x1c01f000, 0x82140500, 0x0000f000, 0x82006d80, + 0x00003000, 0x05000003, 0x82006d80, 0x00005000, + 0x1c01f000, 0x4a032824, 0x000003e8, 0x4a032802, + 0x00115aa4, 0x64032800, 0x4a032808, 0x00108e67, + 0x60140000, 0x91947c09, 0x49787801, 0x4a007804, + 0x00108e12, 0x903c7c05, 0x80000040, 0x05fe07fb, + 0x4a032823, 0xffff0000, 0x497b2833, 0x4a032834, + 0x00103ff5, 0x0501fbfa, 0x6191d000, 0x0501fa13, + 0x4201d000, 0x000186a0, 0x0501f220, 0x00000000, + 0x00000005, 0x0000000a, 0x0000000f, 0x00000014, + 0x00000002, 0x00000008, 0x00000020, 0x00000080, + 0x00000200, 0x4d300000, 0x4d2c0000, 0x4d340000, + 0x4d400000, 0x4cfc0000, 0x4d380000, 0x4d3c0000, + 0x4d440000, 0x4d4c0000, 0x4d480000, 0x4c5c0000, + 0x4c600000, 0x4c640000, 0x4d040000, 0x0005fcce, + 0x5c020800, 0x5c00c800, 0x5c00c000, 0x5c00b800, + 0x5c029000, 0x5c029800, 0x5c028800, 0x5c027800, + 0x5c027000, 0x5c01f800, 0x5c028000, 0x5c026800, + 0x5c025800, 0x5c026000, 0x1c01f000, 0x59940004, + 0x80000540, 0x05020006, 0x480b2805, 0x0501f81c, + 0x48032804, 0x642b2803, 0x80000580, 0x1c01f000, + 0x5994002a, 0x80000540, 0x0502000b, 0x59940030, + 0x80040400, 0x05c41b64, 0x5994082f, 0x80040400, + 0x05c41b61, 0x4803282a, 0x480b282b, 0x64072829, + 0x80000580, 0x1c01f000, 0x5994002d, 0x80000540, + 0x05020006, 0x480b282e, 0x0501f805, 0x4803282d, + 0x642b282c, 0x80000580, 0x1c01f000, 0x4c0c0000, + 0x59941830, 0x5994002f, 0x800c0400, 0x05c41b4e, + 0x05000004, 0x4c040000, 0x05c5fd7c, 0x5c000800, + 0x80040400, 0x5c001800, 0x1c01f000, 0x4c000000, + 0x59940005, 0x80080580, 0x05020003, 0x497b2804, + 0x497b2805, 0x5c000000, 0x1c01f000, 0x4c000000, + 0x5994002b, 0x80080580, 0x05020003, 0x497b282a, + 0x497b282b, 0x5c000000, 0x1c01f000, 0x4c000000, + 0x5994002e, 0x80080580, 0x05020003, 0x497b282d, + 0x497b282e, 0x5c000000, 0x1c01f000, 0x4937c857, + 0x48ebc857, 0x59340203, 0x80e80480, 0x05001002, + 0x48ea6a03, 0x1c01f000, 0x4c600000, 0x4c5c0000, + 0x4178b800, 0x4178c000, 0x4d440000, 0x60407800, + 0x59968801, 0x8d0c0538, 0x05000014, 0x83440480, + 0x00000800, 0x05001011, 0x82600400, 0x00111ccc, + 0x45780000, 0x83441c00, 0x0010db80, 0x500e6800, + 0x83340500, 0xe0000000, 0x82000580, 0x20000000, + 0x05020092, 0x400cb800, 0x83366d00, 0x00ffffff, + 0x05020004, 0x05c5fb0c, 0x0001fb08, 0x0502008b, + 0x59341a03, 0x800c1840, 0x05001015, 0x59940032, + 0x800c0480, 0x05000003, 0x48026a03, 0x05021010, + 0x5934000f, 0x497a6a03, 0x80000540, 0x0500007f, + 0x5934000b, 0x80001120, 0x82000500, 0x0000ffff, + 0x80080480, 0x05001003, 0x64066a03, 0x0501f004, + 0x4c3c0000, 0x0001fb33, 0x5c007800, 0x4d2c0000, + 0x41781800, 0x5934000f, 0x80025d40, 0x05000041, + 0x592c0007, 0x80000d40, 0x05000006, 0x59940032, + 0x80040480, 0x48025807, 0x05001007, 0x05000006, + 0x412c1800, 0x592c0000, 0x80025d40, 0x05000035, + 0x05fdf7f4, 0x592c2000, 0x497a5800, 0x800c19c0, + 0x05020009, 0x59340010, 0x812c0580, 0x05020004, + 0x497a680f, 0x497a6810, 0x0501f008, 0x4812680f, + 0x0501f006, 0x48101800, 0x59340010, 0x812c0580, + 0x05020002, 0x480e6810, 0x592c0208, 0x82000500, + 0x000000ff, 0x90000592, 0x05000005, 0xb00005a0, + 0x05000003, 0x90000588, 0x05020003, 0x642e5a0a, + 0x0501f011, 0x4c0c0000, 0x4c100000, 0x0005fa1a, + 0x5c002000, 0x5c001800, 0x4c0c0000, 0x4c100000, + 0x05f9fc38, 0x5c002000, 0x5c001800, 0x4a025a08, + 0x00000103, 0x641a5a0a, 0x497a580d, 0x4a025c0a, + 0x0000ffff, 0x4c0c0000, 0x4c100000, 0x0001fba8, + 0x5c002000, 0x5c001800, 0x40100000, 0x05fdf7cb, + 0x5c025800, 0x805cb9c0, 0x0500002c, 0x59341c15, + 0x800c1840, 0x05001029, 0x59940032, 0x800c0480, + 0x05000003, 0x48026c15, 0x05021024, 0x495fc857, + 0x835c0480, 0x000003e8, 0x0502101f, 0x5934040b, + 0x4803c857, 0x80000540, 0x0502001b, 0x5934000f, + 0x4803c857, 0x80000540, 0x05020017, 0x5934000c, + 0x4803c857, 0x80000540, 0x05020013, 0x59340215, + 0x4803c857, 0x80000540, 0x0502000f, 0x59341c00, + 0x480fc857, 0x820c0580, 0x00000707, 0x05000003, + 0x05f1f962, 0x05020008, 0x4937c857, 0x497a6c15, + 0x82600400, 0x00111ccc, 0x45340000, 0x8060c000, + 0x0501f002, 0x640a6c15, 0x81468800, 0x59a800ad, + 0x81440480, 0x0502100b, 0x803c7840, 0x05fe075a, + 0x49472801, 0x8060c1c0, 0x0502090c, 0x5c00b800, + 0x5c00c000, 0x5c028800, 0x5c03e000, 0x1c01f000, + 0x640b2800, 0x497b2801, 0x05fdf7f7, 0x60407800, 0x59966002, 0x59300205, 0x80000d40, 0x05000014, - 0x59940031, 0x80040480, 0x48026205, 0x4df00000, - 0x4c040000, 0x051df951, 0x5c000800, 0x05000009, + 0x59940032, 0x80040480, 0x48026205, 0x4df00000, + 0x4c040000, 0x051dfa85, 0x5c000800, 0x05000009, 0x59300205, 0x9000048b, 0x05021006, 0x9004048b, - 0x05001004, 0x4c3c0000, 0x051df87e, 0x5c007800, + 0x05001004, 0x4c3c0000, 0x051df9b2, 0x5c007800, 0x5c03e000, 0x05001027, 0x05000026, 0x59300006, 0x80000d40, 0x05000010, 0x4203e000, 0xb0800000, 0x4203f800, 0x0c000000, 0x40000000, 0x40000000, - 0x40000000, 0x0503b008, 0x59940031, 0x80040480, + 0x40000000, 0x0503b008, 0x59940032, 0x80040480, 0x48026006, 0x4203f800, 0x08000000, 0x05001019, 0x05000018, 0x91326430, 0x49332802, 0x41540000, 0x81300480, 0x05021005, 0x803c7840, 0x05fe07d2, - 0x5c03e000, 0x1c01f000, 0x59940030, 0x48032831, - 0x4a032802, 0x00111b00, 0x497b2830, 0x80000540, + 0x5c03e000, 0x1c01f000, 0x59940031, 0x48032832, + 0x4a032802, 0x00115aa4, 0x497b2831, 0x80000540, 0x0500000c, 0x64072800, 0x5c03e000, 0x1c01f000, - 0x4c3c0000, 0x0519ff4d, 0x5c007800, 0x05fdf7d8, - 0x4c3c0000, 0x0519fa13, 0x5c007800, 0x05fdf7e6, - 0x64032800, 0x5c03e000, 0x1c01f000, 0x59a808b5, + 0x4c3c0000, 0x051df882, 0x5c007800, 0x05fdf7d8, + 0x4c3c0000, 0x0519fb29, 0x5c007800, 0x05fdf7e6, + 0x64032800, 0x5c03e000, 0x1c01f000, 0x59a808ba, 0x8c040530, 0x05020025, 0x8c040532, 0x0500000f, - 0x59a8009b, 0x81640480, 0x05001016, 0x59a8000b, - 0x81500580, 0x05000005, 0x59a80099, 0x59a81098, + 0x59a8009e, 0x81640480, 0x05001016, 0x59a8000b, + 0x81500580, 0x05000005, 0x59a8009c, 0x59a8109b, 0x80080580, 0x0502000f, 0x900411c0, 0x82081500, 0x00007000, 0x0501f00f, 0x9004051f, 0x05000013, - 0x80040840, 0x9004051f, 0x05000003, 0x480750b5, + 0x80040840, 0x9004051f, 0x05000003, 0x480750ba, 0x0501f00e, 0x900401c0, 0x9000051f, 0x80040d40, 0x900401c0, 0x80040580, 0x82001500, 0x00007000, - 0x82040500, 0xffff8fff, 0x80080540, 0x480350b5, - 0x80081114, 0x05c9f855, 0x1c01f000, 0x4a032807, + 0x82040500, 0xffff8fff, 0x80080540, 0x480350ba, + 0x80081114, 0x05c5fc20, 0x1c01f000, 0x4a032807, 0x000007d0, 0x642b2806, 0x4a01a8e5, 0x00000c00, - 0x1c01f000, 0x60100800, 0x91180485, 0x05c61e1f, - 0x91947c09, 0x83180400, 0x00107661, 0x50000000, + 0x1c01f000, 0x60100800, 0x91180485, 0x05c619f6, + 0x91947c09, 0x83180400, 0x00107a7b, 0x50000000, 0x803c7c00, 0x4a007801, 0x000001f4, 0x48047802, - 0x64287800, 0x83180400, 0x00107666, 0x50000000, + 0x64287800, 0x83180400, 0x00107a80, 0x50000000, 0x82000540, 0x00000155, 0x4801a8e5, 0x1c01f000, - 0x91180485, 0x05c61e0d, 0x91947c09, 0x83180400, - 0x00107661, 0x50000000, 0x803c7c00, 0x583c0002, + 0x91180485, 0x05c619e4, 0x91947c09, 0x83180400, + 0x00107a7b, 0x50000000, 0x803c7c00, 0x583c0002, 0x80000040, 0x48007802, 0x05000004, 0x4a007801, 0x000001f4, 0x64287800, 0x1c01f000, 0x91180485, - 0x05c61dfe, 0x91947c09, 0x83180400, 0x00107661, + 0x05c619d5, 0x91947c09, 0x83180400, 0x00107a7b, 0x50000000, 0x803c7c00, 0x49787801, 0x83180400, - 0x00107666, 0x50000000, 0x4801a8e5, 0x1c01f000, - 0x4807c857, 0x480bc857, 0x480b2805, 0x05fdfebe, + 0x00107a80, 0x50000000, 0x4801a8e5, 0x1c01f000, + 0x4807c857, 0x480bc857, 0x480b2805, 0x05fdfe74, 0x48032804, 0x642b2803, 0x1c01f000, 0x4807c857, - 0x480bc857, 0x480b2827, 0x05fdfeb7, 0x48032826, + 0x480bc857, 0x480b2827, 0x05fdfe6d, 0x48032826, 0x642b2825, 0x1c01f000, 0x4c000000, 0x59940027, 0x80080580, 0x05020003, 0x48032826, 0x48032827, 0x5c000000, 0x1c01f000, 0x4807c857, 0x480bc857, - 0x480b282d, 0x05fdfea8, 0x4803282c, 0x642b282b, - 0x1c01f000, 0x80e9d1c0, 0x05000006, 0x0501f828, - 0x00044e27, 0x05fe57ff, 0x4203e000, 0x80000000, - 0x1c01f000, 0x42001000, 0x00106004, 0x05fdfea6, - 0x42001000, 0x00105ff7, 0x05fdffe4, 0x42001000, - 0x0010510c, 0x05fdfea0, 0x42001000, 0x00105184, - 0x05fdfe9d, 0x42001000, 0x001050eb, 0x05fdfe9a, - 0x42001000, 0x001051ae, 0x05fdf6a7, 0x4203e000, - 0x70000000, 0x4203e000, 0xb0300000, 0x40ebf800, - 0x60f00000, 0x05004004, 0x80000040, 0x05fe07fe, - 0x0501f006, 0x4203e000, 0x70000000, 0x42000000, - 0x0010e46f, 0x0529ffaf, 0x1c01f000, 0x4203e000, - 0x80000000, 0x4203e000, 0xb0400000, 0x40ebf800, - 0x60f00000, 0x05005004, 0x80000040, 0x05fe07fe, - 0x0501f006, 0x4203e000, 0x80000000, 0x42000000, - 0x0010e470, 0x0529ff9f, 0x1c01f000, 0x4c5c0000, - 0x4c640000, 0x59a8b81a, 0x585c0002, 0x82000580, - 0x00000100, 0x60100000, 0x05020067, 0x642f5427, - 0x642f542f, 0x642f5437, 0x60080800, 0x4200c800, - 0x0010dc28, 0x60041800, 0x60002080, 0x60602801, - 0x05e9fa21, 0x0500005c, 0x59a80028, 0xb000053f, + 0x480b282b, 0x05fdfe5e, 0x4803282a, 0x642b2828, + 0x1c01f000, 0x4807c857, 0x480bc857, 0x480b282e, + 0x05fdfe57, 0x4803282d, 0x642b282c, 0x1c01f000, + 0x80e9d1c0, 0x05000006, 0x0501f828, 0x00044e5d, + 0x05fe57ff, 0x4203e000, 0x80000000, 0x1c01f000, + 0x42001000, 0x001062e8, 0x05fdfe55, 0x42001000, + 0x001062db, 0x05fdffdd, 0x42001000, 0x00105303, + 0x05fdfe4f, 0x42001000, 0x0010537b, 0x05fdfe4c, + 0x42001000, 0x001052e2, 0x05fdfe49, 0x42001000, + 0x001053a5, 0x05fdf656, 0x4203e000, 0x70000000, + 0x4203e000, 0xb0300000, 0x40ebf800, 0x60f00000, + 0x05004004, 0x80000040, 0x05fe07fe, 0x0501f006, + 0x4203e000, 0x70000000, 0x42000000, 0x00112413, + 0x052dfabf, 0x1c01f000, 0x4203e000, 0x80000000, + 0x4203e000, 0xb0400000, 0x40ebf800, 0x60f00000, + 0x05005004, 0x80000040, 0x05fe07fe, 0x0501f006, + 0x4203e000, 0x80000000, 0x42000000, 0x00112414, + 0x052dfaaf, 0x1c01f000, 0x4c580000, 0x4d440000, + 0x4d340000, 0x4d300000, 0x4863c856, 0x42026000, + 0x00115aa4, 0x0521fcc5, 0x0502101b, 0x5932680a, + 0x813669c0, 0x05000013, 0x59368c03, 0x83440480, + 0x00000800, 0x0500100f, 0x6000b000, 0x82580c00, + 0x00111ccc, 0x50040000, 0x80000540, 0x05000005, + 0x81340580, 0x05020003, 0x45780800, 0x640a6c15, + 0x8058b000, 0x40600000, 0x80580580, 0x05fe07f4, + 0x91326430, 0x41580000, 0x81300480, 0x05fc17e8, + 0x0501f002, 0x41526000, 0x59a8089b, 0x59a8009c, + 0x80040480, 0x0500001b, 0x81300800, 0x41540000, + 0x80040480, 0x05021017, 0x5932680a, 0x813669c0, + 0x05fc07f6, 0x59368c03, 0x83440480, 0x00000800, + 0x05fc17f2, 0x6000b000, 0x82580c00, 0x00111ccc, + 0x50040000, 0x80000540, 0x05000005, 0x81340580, + 0x05020003, 0x45780800, 0x640a6c15, 0x8058b000, + 0x40600000, 0x80580580, 0x05fe07f4, 0x05fdf7e3, + 0x6000b000, 0x82580c00, 0x00111ccc, 0x50040000, + 0x80026d40, 0x05000005, 0x59368c03, 0x4937c857, + 0x4947c857, 0x0521fa69, 0x8058b000, 0x40600000, + 0x80580580, 0x05fe07f4, 0x5c026000, 0x5c026800, + 0x5c028800, 0x5c00b000, 0x1c01f000, 0x4c5c0000, + 0x4c640000, 0x59a8b81c, 0x585c0002, 0x82000580, + 0x00000100, 0x60100000, 0x05020067, 0x642f5429, + 0x642f5431, 0x642f5439, 0x60080800, 0x4200c800, + 0x00111baa, 0x60041800, 0x60002080, 0x60602801, + 0x05e5ff07, 0x0500005c, 0x59a8002a, 0xb000053f, 0x800001c0, 0x0500000b, 0x90002d1e, 0x05000004, - 0x59a80827, 0x84040d64, 0x48075027, 0xb0002d21, - 0x05000004, 0x59a8002f, 0x84000564, 0x4803502f, - 0x60040800, 0x4200c800, 0x0010dc28, 0x60041800, - 0x60002080, 0x60602801, 0x05e9fa0b, 0x05000046, - 0x59a80029, 0x80000000, 0x48035029, 0x60000800, - 0x4200c800, 0x0010dc30, 0x60041800, 0x60002080, - 0x60602801, 0x05e9fa00, 0x0500003b, 0x59a80031, - 0x80000000, 0x48035031, 0x60080800, 0x4200c800, - 0x0010dc38, 0x60041800, 0x60002080, 0x61602801, - 0x05e9f9f5, 0x05000030, 0x59a80038, 0xb0000521, - 0x800001c0, 0x05000004, 0x59a80037, 0x84000564, - 0x48035037, 0x60000800, 0x4200c800, 0x0010dc38, - 0x60041800, 0x60002080, 0x61602801, 0x05e9f9e6, - 0x05000021, 0x59a80039, 0x80000000, 0x48035039, - 0x600cc800, 0x42000800, 0x0010dc23, 0x42001000, - 0xffffffff, 0x601c2000, 0x05c5ff8c, 0x59a8201f, + 0x59a80829, 0x84040d64, 0x48075029, 0xb0002d21, + 0x05000004, 0x59a80031, 0x84000564, 0x48035031, + 0x60040800, 0x4200c800, 0x00111baa, 0x60041800, + 0x60002080, 0x60602801, 0x05e5fef1, 0x05000046, + 0x59a8002b, 0x80000000, 0x4803502b, 0x60000800, + 0x4200c800, 0x00111bb2, 0x60041800, 0x60002080, + 0x60602801, 0x05e5fee6, 0x0500003b, 0x59a80033, + 0x80000000, 0x48035033, 0x60080800, 0x4200c800, + 0x00111bba, 0x60041800, 0x60002080, 0x61602801, + 0x05e5fedb, 0x05000030, 0x59a8003a, 0xb0000521, + 0x800001c0, 0x05000004, 0x59a80039, 0x84000564, + 0x48035039, 0x60000800, 0x4200c800, 0x00111bba, + 0x60041800, 0x60002080, 0x61602801, 0x05e5fecc, + 0x05000021, 0x59a8003b, 0x80000000, 0x4803503b, + 0x600cc800, 0x42000800, 0x00111ba5, 0x42001000, + 0xffffffff, 0x601c2000, 0x05c5fafb, 0x59a82021, 0x80100400, 0x81780480, 0x44000800, 0x80040800, 0x8064c840, 0x05fe07f6, 0x6400b801, 0x6460b804, - 0x6580b805, 0x4a00b803, 0x0010dc23, 0x59a8001d, - 0x4800b807, 0x59a8001e, 0x4800b808, 0x405c1000, - 0x0001f821, 0x90000541, 0x5c00c800, 0x5c00b800, + 0x6580b805, 0x4a00b803, 0x00111ba5, 0x59a8001f, + 0x4800b807, 0x59a80020, 0x4800b808, 0x405c1000, + 0x0001f829, 0x90000541, 0x5c00c800, 0x5c00b800, 0x1c01f000, 0x4803c857, 0x05fdf7fc, 0x4803c857, - 0x61c01100, 0x40001800, 0x05e5ff2b, 0x1c01f000, + 0x61c01100, 0x40001800, 0x05e5fc08, 0x1c01f000, 0x4833c857, 0x58300002, 0x82000580, 0x00000100, 0x05020002, 0x1c01f000, 0x4a006002, 0x00000100, 0x60140000, 0x05fdfff2, 0x05fdf7fb, 0x4833c857, 0x4c580000, 0x58300002, 0x82000580, 0x00000100, 0x05020007, 0x0501fb33, 0x5830020b, 0x4803c857, - 0x9000349c, 0x05c61d11, 0x0c01f005, 0x4a006002, - 0x00000100, 0x60140000, 0x0501f0d9, 0x001078eb, - 0x001078f6, 0x001078fb, 0x001078fd, 0x001078fe, - 0x0010790b, 0x0010790c, 0x00107924, 0x00107925, - 0x00107929, 0x00107934, 0x00107945, 0x00107963, - 0x00107964, 0x00107965, 0x00107966, 0x0010796b, - 0x0010796f, 0x0010797d, 0x0010797e, 0x0010797f, - 0x00107993, 0x00107998, 0x0010799c, 0x001079a3, - 0x00107952, 0x0010795e, 0x001079a3, 0x6404620b, + 0x9000349c, 0x05c6188c, 0x0c01f005, 0x4a006002, + 0x00000100, 0x60140000, 0x0501f0d9, 0x00107dab, + 0x00107db6, 0x00107dbb, 0x00107dbd, 0x00107dbe, + 0x00107dcb, 0x00107dcc, 0x00107de4, 0x00107de5, + 0x00107de9, 0x00107df4, 0x00107e05, 0x00107e23, + 0x00107e24, 0x00107e25, 0x00107e26, 0x00107e2b, + 0x00107e2f, 0x00107e3d, 0x00107e3e, 0x00107e3f, + 0x00107e53, 0x00107e58, 0x00107e5c, 0x00107e63, + 0x00107e12, 0x00107e1e, 0x00107e63, 0x6404620b, 0x64006001, 0x64c46004, 0x4a006005, 0x000000c4, - 0x4a006003, 0x00107ddd, 0x59a80011, 0xb0000430, + 0x4a006003, 0x00108294, 0x59a80013, 0xb0000430, 0x0501f8b5, 0x0501f0ae, 0x6458620b, 0x40301000, 0x60040000, 0x0501fae2, 0x0501f0a9, 0x0501f996, 0x0501f0a7, 0x0501f0a8, 0x643c620b, 0x64006001, 0x4a006004, 0x000000a8, 0x4a006005, 0x000002a0, - 0x4a006003, 0x00107e0e, 0x59a80011, 0x82000400, + 0x4a006003, 0x001082c5, 0x59a80013, 0x82000400, 0x00000134, 0x0501f8a0, 0x0501f099, 0x0501f09a, 0x0501fb41, 0x05020096, 0x5830040b, 0x8c000512, 0x05020008, 0x8c000510, 0x0502000b, 0x84000552, 0x4800640b, 0x6044b000, 0x0501fafa, 0x0501f08c, - 0x84000512, 0x84000550, 0x4800640b, 0x6088b000, + 0x84000512, 0x84000550, 0x4800640b, 0x606cb000, 0x05fdf7fa, 0x84000510, 0x4800640b, 0x6454620b, 0x40301000, 0x60180000, 0x0501fab9, 0x0501f080, - 0x0501f081, 0x59a8600e, 0x6424620b, 0x0501f9d4, + 0x0501f081, 0x59a86010, 0x6424620b, 0x0501f9d4, 0x0501f07b, 0x6428620b, 0x64006001, 0x64506004, - 0x65406005, 0x4a006003, 0x00107eb8, 0x59a80011, + 0x65406005, 0x4a006003, 0x0010836f, 0x59a80013, 0x82000400, 0x0000042c, 0x0501f877, 0x0501f070, 0x642c620b, 0x64006001, 0x64086004, 0x64206005, 0x42001000, 0x7ff38009, 0x50081000, 0x4808600c, - 0x9030140c, 0x48086003, 0x4a00600d, 0x000090d5, - 0x59a80011, 0x82000400, 0x0000047c, 0x0501f866, + 0x9030140c, 0x48086003, 0x4a00600d, 0x001090d5, + 0x59a80013, 0x82000400, 0x0000047c, 0x0501f866, 0x0501f05f, 0x6464620b, 0x64006001, 0x64046004, - 0x64106005, 0x59a81092, 0x4808600c, 0x9030140c, - 0x48086003, 0x59a80011, 0x82000400, 0x00000430, + 0x64106005, 0x59a81095, 0x4808600c, 0x9030140c, + 0x48086003, 0x59a80013, 0x82000400, 0x00000430, 0x0501f859, 0x0501f052, 0x6468620b, 0x64006001, 0x64046004, 0x64106005, 0x4808600c, 0x9030140c, - 0x48086003, 0x59a80011, 0x82000400, 0x00000470, + 0x48086003, 0x59a80013, 0x82000400, 0x00000470, 0x0501f84d, 0x0501f046, 0x6410620b, 0x40301000, 0x60080000, 0x0501fa7a, 0x0501f041, 0x0501f042, 0x0501f041, 0x0501f040, 0x6440620b, 0x40301000, 0x60100000, 0x0501fa72, 0x0501f039, 0x40301000, 0x60440000, 0x0501fa25, 0x0501f035, 0x5830040b, 0x8c000518, 0x05000005, 0x40301000, 0x60000000, - 0x0501fa3e, 0x0501f02e, 0x6403500f, 0x4a035010, + 0x0501fa3e, 0x0501f02e, 0x64035011, 0x4a035012, 0x000927c0, 0x40301000, 0x606c0000, 0x0501fa37, 0x0501f027, 0x0501f028, 0x0501f027, 0x5830040b, 0x8c00051e, 0x05000008, 0x8c000514, 0x05020003, @@ -7820,64 +8124,64 @@ static const uint32_t isp_2500_risc_code[] = { 0x5830040b, 0x8c000518, 0x05fc075d, 0x40301000, 0x60000000, 0x0501fa11, 0x0501f001, 0x5c00b000, 0x1c01f000, 0x82000400, 0x00000100, 0x05fdff08, - 0x05fdf7fb, 0x48006007, 0x59a80012, 0x90000440, - 0x48006008, 0x40301000, 0x0001f021, 0x4803c856, - 0x05e9f819, 0x050200bd, 0x42001000, 0x7ff38000, + 0x05fdf7fb, 0x48006007, 0x59a80014, 0x90000440, + 0x48006008, 0x40301000, 0x0001f029, 0x4803c856, + 0x05e5fcff, 0x050200bd, 0x42001000, 0x7ff38000, 0x50081000, 0x82081580, 0x4f434453, 0x601c0000, 0x050200b7, 0x42000800, 0x7ff38000, 0x42001000, - 0xffffffff, 0x60402000, 0x05c5fe64, 0x60200000, + 0xffffffff, 0x60402000, 0x05c5f9d3, 0x60200000, 0x050200af, 0x42001000, 0x7ff38006, 0x50081000, 0x480bc857, 0x8c080500, 0x050000a0, 0x59e00802, 0x8c04051e, 0x0502009d, 0x42001000, 0x7ff38002, - 0x50081000, 0x480b501d, 0x42001000, 0x7ff38003, - 0x50081000, 0x480b501e, 0x42001000, 0x7ff38007, - 0x50081000, 0x6040084e, 0x0501fd9c, 0x4807501c, - 0x4807501b, 0x42001000, 0x7ff3800a, 0x50081000, + 0x50081000, 0x480b501f, 0x42001000, 0x7ff38003, + 0x50081000, 0x480b5020, 0x42001000, 0x7ff38007, + 0x50081000, 0x6040084e, 0x0501fd95, 0x4807501e, + 0x4807501d, 0x42001000, 0x7ff3800a, 0x50081000, 0x800800e0, 0x42001000, 0x7ff38009, 0x50081000, - 0x82081500, 0x0000ffff, 0x80080540, 0x4803501f, + 0x82081500, 0x0000ffff, 0x80080540, 0x48035021, 0x42001000, 0x7ff38012, 0x50081000, 0x800811c0, 0x05000004, 0x82080580, 0xffffffff, 0x05020002, - 0x61b81000, 0x480b5025, 0x42001000, 0x7ff3801a, + 0x61b81000, 0x480b5027, 0x42001000, 0x7ff3801a, 0x50081000, 0x800811c0, 0x05000004, 0x82080580, - 0xffffffff, 0x05020002, 0x612c1000, 0x480b502d, + 0xffffffff, 0x05020002, 0x612c1000, 0x480b502f, 0x42001000, 0x7ff38022, 0x50081000, 0x800811c0, 0x05000004, 0x82080580, 0xffffffff, 0x05020002, - 0x612c1000, 0x480b5035, 0x42001000, 0x7ff38013, + 0x612c1000, 0x480b5037, 0x42001000, 0x7ff38013, 0x50081000, 0x800811c0, 0x05000004, 0x82080580, - 0xffffffff, 0x05020002, 0x61a41000, 0x480b5026, + 0xffffffff, 0x05020002, 0x61a41000, 0x480b5028, 0x42001000, 0x7ff3801b, 0x50081000, 0x800811c0, 0x05000004, 0x82080580, 0xffffffff, 0x05020002, - 0x61181000, 0x480b502e, 0x42001000, 0x7ff38023, + 0x61181000, 0x480b5030, 0x42001000, 0x7ff38023, 0x50081000, 0x800811c0, 0x05000004, 0x82080580, - 0xffffffff, 0x05020002, 0x61181000, 0x480b5036, - 0x05e5ff98, 0x60240800, 0x42001000, 0x0010dc28, + 0xffffffff, 0x05020002, 0x61181000, 0x480b5038, + 0x05e5fc7e, 0x60240800, 0x42001000, 0x00111baa, 0x64801000, 0x60041800, 0x60002080, 0x60602801, - 0x05e5ffda, 0x05000046, 0x64075023, 0x64075024, - 0x64175227, 0x640f5427, 0x60340800, 0x42001000, - 0x0010dc25, 0x60041800, 0x60002080, 0x60602801, - 0x05e5ffce, 0x0500003a, 0x60640800, 0x42001000, - 0x0010dc25, 0x60041800, 0x60002080, 0x60602801, - 0x05e5ffc6, 0x05000032, 0x6407502b, 0x641f502c, - 0x6417522f, 0x640f542f, 0x602c0800, 0x42001000, - 0x0010dc2d, 0x60041800, 0x60002080, 0x60602801, - 0x05e5ffba, 0x05000026, 0x60800800, 0x42001000, - 0x0010dc2d, 0x60041800, 0x60002080, 0x60602801, - 0x05e5ffb2, 0x0500001e, 0x64075033, 0x641f5034, - 0x64175237, 0x640f5437, 0x60140800, 0x42001000, - 0x0010dc35, 0x60041800, 0x60002080, 0x61602801, - 0x05e5ffa6, 0x05000012, 0x60800800, 0x42001000, - 0x0010dc35, 0x60041800, 0x60002080, 0x61602801, - 0x05e5ff9e, 0x0500000a, 0x42001000, 0x7ff38006, + 0x05e5fcc0, 0x05000046, 0x64075025, 0x64075026, + 0x64175229, 0x640f5429, 0x60340800, 0x42001000, + 0x00111ba7, 0x60041800, 0x60002080, 0x60602801, + 0x05e5fcb4, 0x0500003a, 0x60640800, 0x42001000, + 0x00111ba7, 0x60041800, 0x60002080, 0x60602801, + 0x05e5fcac, 0x05000032, 0x6407502d, 0x641f502e, + 0x64175231, 0x640f5431, 0x602c0800, 0x42001000, + 0x00111baf, 0x60041800, 0x60002080, 0x60602801, + 0x05e5fca0, 0x05000026, 0x60800800, 0x42001000, + 0x00111baf, 0x60041800, 0x60002080, 0x60602801, + 0x05e5fc98, 0x0500001e, 0x64075035, 0x641f5036, + 0x64175239, 0x640f5439, 0x60140800, 0x42001000, + 0x00111bb7, 0x60041800, 0x60002080, 0x61602801, + 0x05e5fc8c, 0x05000012, 0x60800800, 0x42001000, + 0x00111bb7, 0x60041800, 0x60002080, 0x61602801, + 0x05e5fc84, 0x0500000a, 0x42001000, 0x7ff38006, 0x50081000, 0x90081503, 0x60240000, 0x05000004, 0x8c080502, 0x05020806, 0x1c01f000, 0x4803c857, - 0x05fdfe3f, 0x497b501c, 0x05fdf7fc, 0x4803c856, - 0x4c5c0000, 0x59a8b80e, 0x497b500f, 0x497b5010, + 0x05fdfe3f, 0x497b501e, 0x05fdf7fc, 0x4803c856, + 0x4c5c0000, 0x59a8b810, 0x497b5011, 0x497b5012, 0x6400ba0b, 0x4978b80b, 0x42001000, 0x7ff38004, - 0x50081000, 0x480b5011, 0x42001000, 0x7ff38005, - 0x50081000, 0x480b5012, 0x6400b801, 0x6430b804, - 0x64c0b805, 0x4a00b803, 0x00107dd1, 0x59a80011, - 0xb0000400, 0x4800b807, 0x59a80012, 0x90000440, - 0x4800b808, 0x405c1000, 0x0001f821, 0x5c00b800, + 0x50081000, 0x480b5013, 0x42001000, 0x7ff38005, + 0x50081000, 0x480b5014, 0x6400b801, 0x6430b804, + 0x64c0b805, 0x4a00b803, 0x00108288, 0x59a80013, + 0xb0000400, 0x4800b807, 0x59a80014, 0x90000440, + 0x4800b808, 0x405c1000, 0x0001f829, 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4c580000, 0x4200b800, 0x7ff48000, 0x4178c000, 0x0501f8b7, 0x8258b580, 0x00000082, @@ -7886,23 +8190,23 @@ static const uint32_t isp_2500_risc_code[] = { 0x905804a8, 0x05000004, 0x05001003, 0x60a0b000, 0x0501f003, 0x80000580, 0x6420ca0b, 0x4c000000, 0x8060c000, 0x4c640000, 0x9064cc0e, 0x0501f8c1, - 0x5c00c800, 0x42000000, 0x00107eb6, 0x50000000, - 0x4800c80c, 0x42000000, 0x00107eb7, 0x50000000, + 0x5c00c800, 0x42000000, 0x0010836d, 0x50000000, + 0x4800c80c, 0x42000000, 0x0010836e, 0x50000000, 0x4800c80d, 0x9058b40b, 0x8258b500, 0xfffffffc, 0x6400c801, 0x4858c805, 0x80580104, 0x4800c804, - 0x9064040c, 0x4800c803, 0x59a80011, 0x82000400, - 0x000003d4, 0x4800c807, 0x59a80012, 0x90000440, + 0x9064040c, 0x4800c803, 0x59a80013, 0x82000400, + 0x000003d4, 0x4800c807, 0x59a80014, 0x90000440, 0x4800c808, 0x40641000, 0x4c5c0000, 0x4c600000, - 0x0001f821, 0x5c00c000, 0x5c00b800, 0x5c000000, + 0x0001f829, 0x5c00c000, 0x5c00b800, 0x5c000000, 0x800001c0, 0x05000020, 0x9000ccb4, 0x05001002, - 0x60c00000, 0x4000b000, 0x59a8c80d, 0x4c640000, + 0x60c00000, 0x4000b000, 0x59a8c80f, 0x4c640000, 0x9064cc0c, 0x0501f897, 0x5c00c800, 0x6420ca0b, 0x4858c805, 0x80580104, 0x4800c804, 0x9058b403, 0x8258b500, 0xfffffffc, 0x6400c801, 0x4858c805, 0x80580104, 0x4800c804, 0x9064040c, 0x4800c803, - 0x59a80011, 0x82000400, 0x00000404, 0x4800c807, - 0x59a80012, 0x90000440, 0x4800c808, 0x40641000, - 0x0001f821, 0x90000541, 0x5c00b000, 0x5c00c800, + 0x59a80013, 0x82000400, 0x00000404, 0x4800c807, + 0x59a80014, 0x90000440, 0x4800c808, 0x40641000, + 0x0001f829, 0x90000541, 0x5c00b000, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4803c857, 0x05fdfdb7, 0x80000580, 0x05fdf7f8, 0x4803c856, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4c580000, @@ -7921,9 +8225,9 @@ static const uint32_t isp_2500_risc_code[] = { 0x4c640000, 0x9064cc0c, 0x0501f83e, 0x5c00c800, 0x9058b403, 0x8258b500, 0xfffffffc, 0x6400c801, 0x4858c805, 0x80580104, 0x4800c804, 0x9064040c, - 0x4800c803, 0x59a80011, 0x82000400, 0x0000041c, - 0x4800c807, 0x59a80012, 0x90000440, 0x4800c808, - 0x40641000, 0x0001f821, 0x90000541, 0x5c00b000, + 0x4800c803, 0x59a80013, 0x82000400, 0x0000041c, + 0x4800c807, 0x59a80014, 0x90000440, 0x4800c808, + 0x40641000, 0x0001f829, 0x90000541, 0x5c00b000, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4803c857, 0x05fdfd62, 0x80000580, 0x05fdf7f8, 0x485fc857, 0x4863c857, 0x505cb000, 0x40600000, @@ -7946,1180 +8250,1184 @@ static const uint32_t isp_2500_risc_code[] = { 0x4c600000, 0x5808b802, 0x825cc580, 0x00000100, 0x05020015, 0x4800120b, 0x5808040b, 0x8400055c, 0x4800140b, 0x64041001, 0x64081004, 0x64201005, - 0x9008040c, 0x48001003, 0x59a80011, 0x90000410, - 0x48001007, 0x59a80012, 0x90000440, 0x48001008, - 0x0001f821, 0x90000541, 0x5c00c000, 0x5c00b800, + 0x9008040c, 0x48001003, 0x59a80013, 0x90000410, + 0x48001007, 0x59a80014, 0x90000440, 0x48001008, + 0x0001f829, 0x90000541, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x60280000, 0x4803c857, 0x05fdfd00, 0x80000580, 0x05fdf7f9, 0x4803c857, 0x4c5c0000, 0x4c600000, 0x5808b802, 0x825cc580, 0x00000100, 0x0502001e, 0x4800120b, 0x800001c0, 0x05000003, 0x42000000, 0xffffffff, 0x4800100c, 0x800001c0, 0x05000004, 0x5808040b, 0x8400055a, 0x4800140b, - 0x64001001, 0x64081004, 0x64201005, 0x59a80013, - 0x4800100d, 0x9008040c, 0x48001003, 0x59a80011, - 0x90000410, 0x48001007, 0x59a80012, 0x90000440, - 0x48001008, 0x0001f821, 0x90000541, 0x5c00c000, + 0x64001001, 0x64081004, 0x64201005, 0x59a80015, + 0x4800100d, 0x9008040c, 0x48001003, 0x59a80013, + 0x90000410, 0x48001007, 0x59a80014, 0x90000440, + 0x48001008, 0x0001f829, 0x90000541, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x60280000, 0x4803c857, 0x05fdfcd7, 0x80000580, 0x05fdf7f9, 0x4803c857, 0x4c5c0000, 0x4c600000, 0x5808b802, 0x825cc580, 0x00000100, 0x05020012, 0x64001001, 0x64041004, 0x64101005, 0x4800100c, 0x9008040c, 0x48001003, - 0x59a80011, 0xb000042c, 0x48001007, 0x59a80012, - 0x90000440, 0x48001008, 0x0001f821, 0x90000541, + 0x59a80013, 0xb000042c, 0x48001007, 0x59a80014, + 0x90000440, 0x48001008, 0x0001f829, 0x90000541, 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x60280000, 0x4803c857, 0x05fdfcba, 0x80000580, 0x05fdf7f9, 0x4833c857, 0x5830040b, 0x84000518, 0x8c00051c, 0x0500000e, 0x82000500, 0xffff3fff, 0x5830080c, 0x82040d80, 0xffffffff, 0x05020002, 0x8400055e, 0x5830080d, 0x8c040520, 0x05000004, 0x84000558, - 0x84040d20, 0x48075013, 0x8c00051a, 0x05000003, + 0x84040d20, 0x48075015, 0x8c00051a, 0x05000003, 0x8400051a, 0x8400055e, 0x4800640b, 0x1c01f000, 0x4833c857, 0x4c5c0000, 0x4c580000, 0x4d2c0000, - 0x05c5fd6e, 0x05000032, 0x492c600a, 0x645a5800, + 0x05c5f8e5, 0x05000032, 0x492c600a, 0x645a5800, 0x4178b800, 0x912cac02, 0x0501f84c, 0x4404a800, 0x8054a800, 0x8058b000, 0x805cb800, 0x80580580, 0x0500000a, 0x912c0418, 0x80540580, 0x05fe07f7, - 0x4d2c0000, 0x05c5fd5d, 0x05000025, 0x5c000000, + 0x4d2c0000, 0x05c5f8d4, 0x05000025, 0x5c000000, 0x492c0001, 0x05fdf7ee, 0x485e5800, 0x5830000a, 0x58000000, 0x64006001, 0x48006004, 0x800000c4, 0x48006005, 0x5830000a, 0x90000402, 0x48006003, - 0x59a80011, 0x82000400, 0x00000484, 0x90580d91, - 0x0500000e, 0xb0000404, 0x90580da2, 0x05000003, - 0x82000400, 0x00000088, 0x59e00802, 0x8c04051e, - 0x05000006, 0x90580da2, 0x05020003, 0xb0000404, - 0x0501f002, 0xb000041c, 0x05fdfd63, 0x5c025800, + 0x59a80013, 0x82000400, 0x00000484, 0x90580d91, + 0x0500000e, 0xb0000404, 0x90580d9b, 0x05000002, + 0xb0000410, 0x59e00802, 0x8c04051e, 0x05000007, + 0x90580d9b, 0x05020003, 0x90000428, 0x0501f003, + 0x82000400, 0x00000080, 0x05fdfd63, 0x5c025800, 0x5c00b000, 0x5c00b800, 0x1c01f000, 0x5c025800, 0x05fdf7de, 0x4833c857, 0x4d2c0000, 0x4c3c0000, - 0x4c300000, 0x5832580a, 0x812e59c0, 0x05c40987, - 0x592c7801, 0x483c600a, 0x05c5fd3c, 0x803c79c0, + 0x4c300000, 0x5832580a, 0x812e59c0, 0x05c00d02, + 0x592c7801, 0x483c600a, 0x05c5f8b3, 0x803c79c0, 0x0500000a, 0x903c0402, 0x48006003, 0x583c0000, 0x48006004, 0x800000c4, 0x48006005, 0x40301000, - 0x0001f821, 0x90000541, 0x5c006000, 0x5c007800, + 0x0001f829, 0x90000541, 0x5c006000, 0x5c007800, 0x5c025800, 0x1c01f000, 0x485bc857, 0x4c5c0000, - 0x40580000, 0x0c01f001, 0x00107ca3, 0x00107cb7, - 0x00107cbb, 0x00107cbd, 0x00107cbf, 0x00107cc1, - 0x00107cc3, 0x00107cc5, 0x00107cc9, 0x00107ccc, - 0x00107ccf, 0x00107cd7, 0x00107ce6, 0x00107cf1, - 0x00107cfc, 0x00107d01, 0x00107d0c, 0x00107ca3, - 0x00107ca6, 0x00107d0f, 0x00107d5c, 0x00107d66, - 0x00107d68, 0x00107d6e, 0x00107d72, 0x00107d76, - 0x00107d7b, 0x00107d7d, 0x00107d7f, 0x00107d81, - 0x00107d83, 0x00107d85, 0x00107d87, 0x00107d8f, - 0x00107cad, 0x00107cb0, 0x00107d3b, 0x00107d50, - 0x00107d52, 0x00107d54, 0x00107d56, 0x00107d58, - 0x00107d5a, 0x00107d60, 0x00107d5e, 0x00107d64, - 0x00107d62, 0x00107d42, 0x00107d6c, 0x00107d6e, - 0x00107d72, 0x00107da4, 0x00107da7, 0x00107da9, - 0x00107dab, 0x00107dad, 0x00107daf, 0x42000800, - 0x44504f4c, 0x0501f10f, 0x60100800, 0x59e00002, - 0x8c00051e, 0x0500010b, 0x82040d40, 0x00000100, - 0x0501f108, 0x42000800, 0x44504f4c, 0x0501f103, - 0x60180800, 0x59e00002, 0x8c00051e, 0x050000ff, - 0x82040d40, 0x00000100, 0x0501f0fc, 0x600c0802, - 0x0501f055, 0x50040800, 0x0501f053, 0x59a80814, - 0x0501f051, 0x59a80815, 0x0501f04f, 0x59a80816, - 0x0501f04d, 0x59a80817, 0x0501f04b, 0x59a80818, - 0x0501f049, 0x59a80819, 0x0501f047, 0x302e3730, - 0x30302e33, 0x42000800, 0x00107cc7, 0x05fdf7ee, - 0x42000800, 0x00107cc8, 0x05fdf7eb, 0x42000000, - 0x7ff0000d, 0x50000000, 0x80000130, 0x0501f8e4, - 0x9c0001c0, 0x40000800, 0x0501f037, 0x42000000, - 0x7ff0000d, 0x50000000, 0x80000120, 0x0501f8dc, - 0x82000500, 0x00ffffff, 0x82000540, 0x2e000000, - 0x9c0001c0, 0x05fdf7f4, 0x32333532, 0x31303030, - 0x32333532, 0x32303030, 0x60000020, 0x50000000, - 0x82000480, 0x25320001, 0x05020004, 0x42000800, - 0x00107ce2, 0x05fdf7cc, 0x42000800, 0x00107ce4, - 0x05fdf7c9, 0x60000020, 0x50000000, 0x82000480, - 0x25320001, 0x05020004, 0x42000800, 0x00107ce3, - 0x05fdf7c1, 0x42000800, 0x00107ce5, 0x05fdf7be, - 0x60c80800, 0x61900000, 0x800000e0, 0x80040d40, - 0x0501f00d, 0x59a8005a, 0x800001c0, 0x05020002, - 0x6140000f, 0x59a8085b, 0x800409c0, 0x05020002, - 0x6140080f, 0x800408e0, 0x80040d40, 0x0501f002, - 0x41780800, 0x60440000, 0x0501f0a7, 0x60080800, - 0x916c0583, 0x0502000e, 0x59a80249, 0x8c000502, - 0x05000004, 0x82040d40, 0x00000300, 0x0501f008, - 0x8c000508, 0x05000004, 0x82040d40, 0x00000200, - 0x0501f003, 0x82040d40, 0x00000100, 0x82040d40, - 0x00080000, 0x59c40001, 0x82000500, 0x00018000, - 0x9000bd80, 0x05020004, 0x82040d40, 0x01000000, - 0x0501f08c, 0x8200bd80, 0x00008000, 0x05020004, - 0x82040d40, 0x02000000, 0x0501f086, 0x8200bd80, - 0x00010000, 0x05020004, 0x82040d40, 0x04000000, - 0x0501f080, 0x8200bd80, 0x00018000, 0x0502007d, - 0x82040d40, 0x08000000, 0x0501f07a, 0x60100800, - 0x59e00002, 0x8c00051e, 0x05000003, 0x82040d40, - 0x00010000, 0x0501f071, 0x41780800, 0x916c0583, - 0x0502006e, 0x59a80249, 0x8c000502, 0x05000003, - 0x90040d43, 0x0501f069, 0x8c000508, 0x05000003, - 0x90040d42, 0x0501f065, 0x90040d41, 0x0501f063, - 0x59a80814, 0x0501f061, 0x59a80815, 0x0501f05f, - 0x59a80816, 0x0501f05d, 0x59a80817, 0x0501f05b, - 0x59a80818, 0x0501f059, 0x59a80819, 0x0501f057, - 0x59a8083d, 0x0501f057, 0x59a80800, 0x0501f053, - 0x59a80801, 0x0501f051, 0x59a80802, 0x0501f04f, - 0x59a80803, 0x0501f04d, 0x59880823, 0x0501f04d, - 0x59880129, 0x5988092a, 0x80040c00, 0x0501f049, - 0x599c0a09, 0x0501f045, 0x59c408b1, 0x59a800a9, - 0x80040c00, 0x0501f043, 0x59c408b2, 0x59a800aa, - 0x80040c00, 0x0501f03f, 0x60040800, 0x916c0583, - 0x0502003c, 0x84040d42, 0x0501f03a, 0x59880800, - 0x0501f038, 0x59880805, 0x0501f036, 0x59880801, - 0x0501f034, 0x59880802, 0x0501f032, 0x59880803, - 0x0501f030, 0x598808c5, 0x0501f02e, 0x59880081, - 0x59880882, 0x80040c00, 0x59880083, 0x80040c00, - 0x59880084, 0x80040c00, 0x0501f026, 0x59880826, - 0x82040d00, 0x000000ff, 0x59880027, 0x82000500, - 0x000000ff, 0x800000d0, 0x80040d40, 0x4c040000, - 0x59880019, 0x5988081a, 0x80040400, 0x82000500, - 0x000000ff, 0x800000e0, 0x5c000800, 0x80040d40, - 0x59880025, 0x800000f0, 0x80040d40, 0x0501f011, - 0x0529fb5b, 0x610008f4, 0x0501f00b, 0x610408f4, - 0x0501f009, 0x610808f4, 0x0501f007, 0x611008f4, - 0x0501f005, 0x611408f4, 0x0501f003, 0x611808f4, - 0x64030000, 0x50040800, 0x60e40000, 0x0501f002, - 0x60880000, 0x5c00b800, 0x1c01f000, 0x4803c857, - 0x4c5c0000, 0x4c600000, 0x82000500, 0x000000ff, - 0x4000b800, 0x4178c000, 0x905c048a, 0x0500100c, - 0x4000b800, 0x8260c400, 0x00000100, 0x82600500, - 0x0000ff00, 0x82000580, 0x00000a00, 0x05020003, - 0x8260c400, 0x0000f600, 0x05fdf7f4, 0x805c0418, - 0x82000400, 0x30303030, 0x5c00c000, 0x5c00b800, - 0x1c01f000, 0x00000030, 0x00000000, 0x00000000, - 0x000000f4, 0x00000394, 0x00000000, 0x00000000, - 0x00000444, 0x3c000000, 0x00000505, 0x00000707, - 0x00000000, 0x44435442, 0x000d0101, 0x00006283, - 0x52504010, 0x414e444f, 0x6283454d, 0x10100100, - 0x4c524553, 0x004d554e, 0x02006283, 0x43500220, - 0x00444949, 0x62830000, 0x02200300, 0x44494350, - 0x00004449, 0x04006283, 0x43500220, 0x56535349, - 0x62834449, 0x02200500, 0x53494350, 0x44494453, - 0x06006283, 0x57463c10, 0x4e4e4142, 0x62835245, - 0x04200700, 0x4f504346, 0x00535452, 0x08006283, - 0x554e0420, 0x4e55464d, 0x62830043, 0x02200b00, - 0x50514d56, 0x54524f50, 0x0c006283, 0x4d560220, - 0x46505051, 0x62832020, 0x04201300, 0x45494350, - 0x52424e42, 0xe0006283, 0x57460420, 0x52545441, - 0x00004249, 0x00000000, 0x44504f4c, 0x00090103, - 0x12004683, 0x45441810, 0x56524456, 0x46835256, - 0x08101300, 0x46564544, 0x00525657, 0x14004683, - 0x45440810, 0x4f494256, 0x46835256, 0x08101500, - 0x48564544, 0x00525657, 0x16004684, 0x43530220, - 0x4f544953, 0x46840056, 0x02201700, 0x4f545452, - 0x00000056, 0x18004684, 0x41520220, 0x00564f54, - 0x46840000, 0x02201900, 0x4f544445, 0x00000056, - 0x1a004684, 0x52430420, 0x00564f54, 0x00000000, - 0x00000000, 0x44504f4c, 0x00150204, 0x00004883, - 0x4f500120, 0x59545452, 0x48834550, 0x01200100, - 0x54524f50, 0x54415453, 0x03004883, 0x55530120, - 0x54525050, 0x48835053, 0x01200400, 0x5250474e, - 0x44505354, 0x05004883, 0x504e0420, 0x4954524f, - 0x48830044, 0x04200d00, 0x52445852, 0x0053504f, - 0x11004883, 0x58540420, 0x4f525245, 0x48845352, - 0x04201300, 0x52465852, 0x53454d41, 0x15004884, - 0x58540420, 0x4d415246, 0x48835345, 0x04201700, - 0x4b4e494c, 0x54415453, 0x21004884, 0x494c0420, - 0x52454b4e, 0x48840052, 0x04202200, 0x45435243, - 0x00005252, 0x2d004884, 0x4f4c0420, 0x454e5953, - 0x48845252, 0x04202e00, 0x49534f4c, 0x52524547, - 0x2f004884, 0x52500420, 0x52454d49, 0x48840052, - 0x04206f00, 0x4f474f4c, 0x00564352, 0x80004884, - 0x53520420, 0x43524e43, 0x48840056, 0x01208900, - 0x52534f4e, 0x54435643, 0x8a004884, 0x4c4f0120, - 0x554f4353, 0x4884544e, 0x01208b00, 0x4f43524c, - 0x00544e55, 0x8e004884, 0x494c0120, 0x56435250, - 0x00005443, 0x00000000, 0x44504f4c, 0x000f0206, - 0x00004c83, 0x55460220, 0x5954434e, 0x4c834550, - 0x02200100, 0x434e5546, 0x00004449, 0x02004c83, - 0x55461810, 0x4556434e, 0x4c835352, 0x08200800, - 0x4e4e5757, 0x00454d41, 0x09004c83, 0x57570820, - 0x4d414e50, 0x4c830045, 0x04200b00, 0x54524f50, - 0x54415453, 0x0d004c84, 0x43460420, 0x51585245, - 0x4c845a53, 0x04201000, 0x52454346, 0x4d524658, - 0x12004c84, 0x43460420, 0x46585445, 0x4c834d52, - 0x04201600, 0x52524550, 0x00504143, 0x17004c83, - 0x45500420, 0x4e555252, 0x4c834543, 0x04201800, - 0x524f4350, 0x4b414d55, 0x19004c83, 0x45500420, - 0x45435252, 0x4c835252, 0x04201a00, 0x524f4350, - 0x4b53414d, 0x1b004c83, 0x45500420, 0x52415252, - 0x00005243, 0x00000000, 0x44435442, 0x00000001, - 0x25321077, 0x338e103c, 0x474f4c51, 0x43204349, - 0x4f50524f, 0x49544152, 0x20204e4f, 0x50534920, - 0x78783532, 0x72694620, 0x7261776d, 0x20202065, - 0x73726556, 0x206e6f69, 0x2e372020, 0x302e3330, - 0x00202030, 0x00000002, 0x00000001, 0x01000100, - 0x05e5fa53, 0x05020005, 0x4803c856, 0x05d1fa9f, - 0x05d1fadd, 0x05d1fabe, 0x1c01f000, 0x59a8083b, - 0x59a8029c, 0x80040480, 0x599c0a02, 0x800409c0, - 0x05020002, 0x80040800, 0x80041480, 0x05001002, - 0x40000800, 0x4807509a, 0x59a8103b, 0x40040000, - 0x800acc80, 0x4967503b, 0x4967509b, 0x59aaa80b, - 0x41640800, 0x60c01000, 0x0501f88c, 0x8206a400, - 0x00111b00, 0x49535097, 0x4152b000, 0x0529fa48, - 0x0500001f, 0x496752dd, 0x599c041e, 0x4803c857, - 0x59a8089a, 0x4807c857, 0x80041480, 0x05021009, - 0x497b509a, 0x49575097, 0x4152a800, 0x81640c00, - 0x4807c857, 0x480754dd, 0x80040800, 0x0501f00d, - 0x480bc857, 0x480b509a, 0x81640c00, 0x4807c857, - 0x480754dd, 0x80040800, 0x60c01000, 0x0501f86f, - 0x4807c857, 0x8206a400, 0x00111b00, 0x49535097, - 0x4953c857, 0x4a0370e4, 0x30000000, 0x42006000, - 0x00110278, 0x4a006008, 0x0000012c, 0x4a006009, - 0xda10da10, 0x6454600c, 0x4a00600d, 0x00110278, - 0x4a00600e, 0x001012a7, 0x599c0014, 0x48006015, - 0x599c0015, 0x48006016, 0x42006000, 0x00111a10, - 0x64206203, 0x64186407, 0x4a006002, 0xffff0000, - 0x4a006009, 0x00110278, 0x4a006016, 0x00110278, - 0x599c0014, 0x48006017, 0x599c0015, 0x48006018, - 0x599c0413, 0x48006019, 0x4950601a, 0x4954601b, - 0x59a8009a, 0x4800601c, 0x4a00601d, 0x0010dc97, - 0x59a802dd, 0x48006020, 0x59a804dd, 0x48006021, - 0x42000000, 0x00111ad0, 0x48006022, 0x42000000, - 0x00110228, 0x48006023, 0x4a00601e, 0x0010dc98, - 0x4a00601f, 0x0010dc99, 0x42000000, 0xb0000000, - 0x42000800, 0x00111a10, 0x0001f93a, 0x1c01f000, + 0x40580000, 0x0c01f001, 0x00108165, 0x00108179, + 0x0010817d, 0x0010817f, 0x00108181, 0x00108183, + 0x00108185, 0x00108187, 0x0010818b, 0x0010818e, + 0x00108191, 0x00108199, 0x001081a8, 0x001081b3, + 0x001081be, 0x001081c3, 0x001081ce, 0x00108165, + 0x00108168, 0x001081d1, 0x00108219, 0x0010821b, + 0x00108221, 0x00108225, 0x00108229, 0x001081ec, + 0x0010820f, 0x0010816f, 0x00108172, 0x001081ee, + 0x00108203, 0x00108205, 0x00108207, 0x00108209, + 0x0010820b, 0x0010820d, 0x00108213, 0x00108211, + 0x00108217, 0x00108215, 0x001081f5, 0x0010821f, + 0x00108221, 0x00108225, 0x00108259, 0x0010825c, + 0x0010825e, 0x00108260, 0x00108262, 0x00108264, + 0x0010822e, 0x00108230, 0x00108232, 0x00108234, + 0x00108236, 0x00108238, 0x0010823a, 0x0010823c, + 0x00108244, 0x42000800, 0x44504f4c, 0x0501f104, + 0x60100800, 0x59e00002, 0x8c00051e, 0x05000100, + 0x82040d40, 0x00000100, 0x0501f0fd, 0x42000800, + 0x44504f4c, 0x0501f0f8, 0x60180800, 0x59e00002, + 0x8c00051e, 0x050000f4, 0x82040d40, 0x00000100, + 0x0501f0f1, 0x600c0802, 0x0501f055, 0x50040800, + 0x0501f053, 0x59a80816, 0x0501f051, 0x59a80817, + 0x0501f04f, 0x59a80818, 0x0501f04d, 0x59a80819, + 0x0501f04b, 0x59a8081a, 0x0501f049, 0x59a8081b, + 0x0501f047, 0x302e3830, 0x30302e33, 0x42000800, + 0x00108189, 0x05fdf7ee, 0x42000800, 0x0010818a, + 0x05fdf7eb, 0x42000000, 0x7ff0000d, 0x50000000, + 0x80000130, 0x0501f8d9, 0x9c0001c0, 0x40000800, + 0x0501f037, 0x42000000, 0x7ff0000d, 0x50000000, + 0x80000120, 0x0501f8d1, 0x82000500, 0x00ffffff, + 0x82000540, 0x2e000000, 0x9c0001c0, 0x05fdf7f4, + 0x32333532, 0x31303030, 0x32333532, 0x32303030, + 0x60000020, 0x50000000, 0x82000480, 0x25320001, + 0x05020004, 0x42000800, 0x001081a4, 0x05fdf7cc, + 0x42000800, 0x001081a6, 0x05fdf7c9, 0x60000020, + 0x50000000, 0x82000480, 0x25320001, 0x05020004, + 0x42000800, 0x001081a5, 0x05fdf7c1, 0x42000800, + 0x001081a7, 0x05fdf7be, 0x60c80800, 0x61900000, + 0x800000e0, 0x80040d40, 0x0501f00d, 0x59a8005d, + 0x800001c0, 0x05020002, 0x6140000f, 0x59a8085e, + 0x800409c0, 0x05020002, 0x6140080f, 0x800408e0, + 0x80040d40, 0x0501f002, 0x41780800, 0x60440000, + 0x0501f09c, 0x60080800, 0x59c40001, 0x82000500, + 0x00018000, 0x9000bd80, 0x05020004, 0x82040d40, + 0x000a0000, 0x0501f092, 0x8200bd80, 0x00008000, + 0x05020004, 0x82040d40, 0x00140000, 0x0501f08c, + 0x8200bd80, 0x00010000, 0x05020004, 0x82040d40, + 0x00280000, 0x0501f086, 0x8200bd80, 0x00018000, + 0x05020083, 0x82040d40, 0x00500000, 0x0501f080, + 0x61400800, 0x0501f07e, 0x60100800, 0x59e00002, + 0x8c00051e, 0x05000003, 0x82040d40, 0x00010000, + 0x0501f075, 0x41780800, 0x916c0583, 0x05020072, + 0x59a8024c, 0x8c000502, 0x05000003, 0x90040d43, + 0x0501f06d, 0x8c000508, 0x05000003, 0x90040d42, + 0x0501f069, 0x90040d41, 0x0501f067, 0x59a80816, + 0x0501f065, 0x59a80817, 0x0501f063, 0x59a80818, + 0x0501f061, 0x59a80819, 0x0501f05f, 0x59a8081a, + 0x0501f05d, 0x59a8081b, 0x0501f05b, 0x59a80840, + 0x0501f05b, 0x59a80800, 0x0501f057, 0x59a80801, + 0x0501f055, 0x59a80802, 0x0501f053, 0x59a80803, + 0x0501f051, 0x59880823, 0x0501f051, 0x5988012c, + 0x5988092d, 0x80040c00, 0x0501f04d, 0x599c0a09, + 0x0501f049, 0x59c408b1, 0x59a800ae, 0x80040c00, + 0x0501f047, 0x59c408b2, 0x59a800af, 0x80040c00, + 0x0501f043, 0x60040800, 0x916c0583, 0x05020040, + 0x84040d42, 0x0501f03e, 0x59880800, 0x0501f03a, + 0x59880805, 0x0501f038, 0x59880801, 0x0501f036, + 0x59880802, 0x0501f034, 0x59880803, 0x0501f032, + 0x59880927, 0x0501f030, 0x598808c8, 0x0501f02e, + 0x59880081, 0x59880882, 0x80040c00, 0x59880083, + 0x80040c00, 0x59880084, 0x80040c00, 0x0501f026, + 0x59880826, 0x82040d00, 0x000000ff, 0x59880027, + 0x82000500, 0x000000ff, 0x800000d0, 0x80040d40, + 0x4c040000, 0x59880019, 0x5988081a, 0x80040400, + 0x82000500, 0x000000ff, 0x800000e0, 0x5c000800, + 0x80040d40, 0x59880025, 0x800000f0, 0x80040d40, + 0x0501f011, 0x0529fe21, 0x610008f4, 0x0501f00d, + 0x610408f4, 0x0501f00b, 0x610808f4, 0x0501f009, + 0x611008f4, 0x0501f007, 0x611408f4, 0x0501f005, + 0x611808f4, 0x50040800, 0x64030000, 0x0501f002, + 0x50040800, 0x60ec0000, 0x0501f002, 0x606c0000, + 0x5c00b800, 0x1c01f000, 0x4803c857, 0x4c5c0000, + 0x4c600000, 0x82000500, 0x000000ff, 0x4000b800, + 0x4178c000, 0x905c048a, 0x0500100c, 0x4000b800, + 0x8260c400, 0x00000100, 0x82600500, 0x0000ff00, + 0x82000580, 0x00000a00, 0x05020003, 0x8260c400, + 0x0000f600, 0x05fdf7f4, 0x805c0418, 0x82000400, + 0x30303030, 0x5c00c000, 0x5c00b800, 0x1c01f000, + 0x00000030, 0x00000000, 0x00000000, 0x000000f4, + 0x00000394, 0x00000000, 0x00000000, 0x00000444, + 0x3c000000, 0x00000505, 0x00000707, 0x00000000, + 0x44435442, 0x000d0101, 0x00006283, 0x52504010, + 0x414e444f, 0x6283454d, 0x10100100, 0x4c524553, + 0x004d554e, 0x02006283, 0x43500220, 0x00444949, + 0x62830000, 0x02200300, 0x44494350, 0x00004449, + 0x04006283, 0x43500220, 0x56535349, 0x62834449, + 0x02200500, 0x53494350, 0x44494453, 0x06006283, + 0x57463c10, 0x4e4e4142, 0x62835245, 0x04200700, + 0x454d554e, 0x54524f50, 0x08006283, 0x554e0420, + 0x4e55464d, 0x62830043, 0x02200b00, 0x50514d56, + 0x54524f50, 0x0c006283, 0x4d560220, 0x46505051, + 0x62832020, 0x04201300, 0x45494350, 0x52424e42, + 0xe0006283, 0x57460420, 0x52545441, 0x00004249, + 0x00000000, 0x44504f4c, 0x00090103, 0x12004683, + 0x45441810, 0x56524456, 0x46835256, 0x08101300, + 0x46564544, 0x00525657, 0x14004683, 0x45440810, + 0x4f494256, 0x46835256, 0x08101500, 0x48564544, + 0x00525657, 0x16004684, 0x43530220, 0x4f544953, + 0x46840056, 0x02201700, 0x4f545452, 0x00000056, + 0x18004684, 0x41520220, 0x00564f54, 0x46840000, + 0x02201900, 0x4f544445, 0x00000056, 0x1a004684, + 0x52430420, 0x00564f54, 0x00000000, 0x00000000, + 0x44504f4c, 0x00090204, 0x00004883, 0x4f500220, + 0x59545452, 0x48834550, 0x02200200, 0x54524f50, + 0x44455053, 0x06004883, 0x58520420, 0x504f5244, + 0x48830053, 0x04200e00, 0x52455854, 0x53524f52, + 0x10004884, 0x58520420, 0x4d415246, 0x48845345, + 0x04201200, 0x52465854, 0x53454d41, 0x16004883, + 0x494c0420, 0x54534b4e, 0x48835441, 0x04201a00, + 0x50505553, 0x50535452, 0x1b004883, 0x504e0420, + 0x4954524f, 0x00000044, 0x00000000, 0x44504f4c, + 0x001b0206, 0x00004c83, 0x55460220, 0x5954434e, + 0x4c834550, 0x02200100, 0x434e5546, 0x00004449, + 0x02004c83, 0x55461810, 0x4556434e, 0x4c835352, + 0x08200800, 0x4e4e5757, 0x00454d41, 0x09004c83, + 0x57570820, 0x4d414e50, 0x4c830045, 0x04200b00, + 0x54524f50, 0x54415453, 0x0d004c84, 0x43460420, + 0x51585245, 0x4c845a53, 0x04201000, 0x52454346, + 0x4d524658, 0x12004c84, 0x43460420, 0x46585445, + 0x4c834d52, 0x04201600, 0x52524550, 0x00504143, + 0x17004c83, 0x45500420, 0x4e555252, 0x4c834543, + 0x04201800, 0x524f4350, 0x4b414d55, 0x19004c83, + 0x45500420, 0x45435252, 0x4c835252, 0x04201a00, + 0x524f4350, 0x4b53414d, 0x1b004c83, 0x45500420, + 0x52415252, 0x4c845243, 0x04202500, 0x4b4e494c, + 0x00525245, 0x26004c84, 0x52430420, 0x52524543, + 0x4c840000, 0x04203100, 0x59534f4c, 0x5252454e, + 0x32004c84, 0x4f4c0420, 0x45474953, 0x4c845252, + 0x04203300, 0x4d495250, 0x00525245, 0x34004c84, + 0x49440420, 0x52455053, 0x48840052, 0x04206f00, + 0x4f474f4c, 0x00564352, 0x80004c84, 0x53520420, + 0x43524e43, 0x4c840056, 0x01208900, 0x52534f4e, + 0x54435643, 0x8a004c84, 0x4c4f0120, 0x554f4353, + 0x4c84544e, 0x01208b00, 0x4f43524c, 0x00544e55, + 0x8e004c84, 0x494c0120, 0x56435250, 0x00005443, + 0x00000000, 0x44435442, 0x00000001, 0x25321077, + 0x338e103c, 0x474f4c51, 0x43204349, 0x4f50524f, + 0x49544152, 0x20204e4f, 0x50534920, 0x78783532, + 0x72694620, 0x7261776d, 0x20202065, 0x73726556, + 0x206e6f69, 0x2e382020, 0x302e3330, 0x00202030, + 0x00000002, 0x00000001, 0x01000100, 0x05e1ff42, + 0x05020005, 0x4803c856, 0x05cdfe68, 0x05cdfea6, + 0x05cdfe87, 0x1c01f000, 0x59a8043e, 0x599c0a02, + 0x800409c0, 0x05020002, 0x80040800, 0x80041480, + 0x05001002, 0x40000800, 0x4807509d, 0x59a8103d, + 0x40040000, 0x800acc80, 0x4967503d, 0x4967509e, + 0x59a8143e, 0x80081480, 0x480b543e, 0x59aaa80b, + 0x41640800, 0x60c01000, 0x0501f88d, 0x8006a42f, + 0x4953509a, 0x4152b000, 0x0529fd0c, 0x0500001e, + 0x496752e2, 0x599c041e, 0x4803c857, 0x59a8089d, + 0x4807c857, 0x80041480, 0x05021009, 0x497b509d, + 0x4957509a, 0x4152a800, 0x81640c00, 0x4807c857, + 0x480754e2, 0x80040800, 0x0501f00c, 0x480bc857, + 0x480b509d, 0x81640c00, 0x4807c857, 0x480754e2, + 0x80040800, 0x60c01000, 0x0501f871, 0x4807c857, + 0x8006a42f, 0x4953509a, 0x4953c857, 0x4a0370e4, + 0x30000000, 0x42006000, 0x0011421c, 0x4a006008, + 0x0000012c, 0x4a006009, 0xda10da10, 0x6454600c, + 0x4a00600d, 0x0011421c, 0x4a00600e, 0x00100046, + 0x599c0014, 0x48006015, 0x599c0015, 0x48006016, + 0x42006000, 0x001159b4, 0x64206203, 0x64186407, + 0x4a006002, 0xffff0000, 0x4a006009, 0x0011421c, + 0x4a006016, 0x0011421c, 0x599c0014, 0x48006017, + 0x599c0015, 0x48006018, 0x599c0413, 0x48006019, + 0x4950601a, 0x4954601b, 0x59a8009d, 0x4800601c, + 0x59a802e2, 0x48006020, 0x59a804e2, 0x48006021, + 0x42000000, 0x00115a74, 0x48006022, 0x42000000, + 0x001141cc, 0x48006023, 0x4a00601e, 0x00111c1b, + 0x4a00601f, 0x00111c1c, 0x42000000, 0xb0000000, + 0x42000800, 0x001159b4, 0x0001f942, 0x1c01f000, 0x4807c856, 0x59240206, 0x800409c0, 0x05000003, 0x80080540, 0x0501f002, 0x80080500, 0x48024a06, - 0x1c01f000, 0x492e6017, 0x4d2c0000, 0x05c5fa33, + 0x1c01f000, 0x492e6017, 0x4d2c0000, 0x05c1fdb6, 0x0500000c, 0x4c500000, 0x4c540000, 0x4c580000, - 0x412ca800, 0x5930a017, 0x6060b000, 0x0529f950, + 0x412ca800, 0x5930a017, 0x6060b000, 0x0529fc17, 0x492e6017, 0x5c00b000, 0x5c00a800, 0x5c00a000, 0x5c025800, 0x59300202, 0x48025a10, 0x4932580d, - 0x1c01f000, 0x4803c856, 0x4c000000, 0x05f9f96b, - 0x0502000b, 0x05e9fdaf, 0x05c20e74, 0x5c000000, - 0x48026802, 0x0509fc9a, 0x05000006, 0x4936600a, - 0x64066407, 0x60067000, 0x0009f000, 0x5c000000, - 0x1c01f000, 0x05c1fe69, 0x4c0c0000, 0x4c100000, - 0x4c140000, 0x4c180000, 0x80001d80, 0x80002580, - 0x60803000, 0x90040501, 0x05000003, 0x40080000, - 0x800c1c00, 0x400c2800, 0x800c1902, 0x80102102, - 0x90140501, 0x05000003, 0x82102540, 0x80000000, - 0x80040902, 0x80183040, 0x05fe07f3, 0x40100800, - 0x400c0000, 0x5c003000, 0x5c002800, 0x5c002000, - 0x5c001800, 0x1c01f000, 0x4c0c0000, 0x4c580000, - 0x6080b000, 0x80000540, 0x05000019, 0x80041c80, - 0x05021017, 0x800810c2, 0x80040982, 0x05001006, - 0x80041c80, 0x05021005, 0x8058b040, 0x05fe07fa, - 0x0501f006, 0x80041c80, 0x400c0800, 0x80081000, - 0x8058b040, 0x05fe07f4, 0x4c000000, 0x41f00000, - 0x82000500, 0xf7ffffff, 0x4003e000, 0x5c000000, - 0x5c00b000, 0x5c001800, 0x1c01f000, 0x4c000000, - 0x41f00000, 0x82000540, 0x08000000, 0x05fdf7f7, - 0x42007000, 0x0010e060, 0x64147000, 0x64007401, - 0x4a007201, 0x00000840, 0x64147202, 0x6401a8e8, - 0x6443c82b, 0x0501f84e, 0x4a01a8e9, 0x00003a0d, - 0x4a01a8ee, 0x00080202, 0x6405a8e8, 0x640378e8, - 0x6443c821, 0x6413c823, 0x0501f879, 0x4a0378e9, - 0x00003a0d, 0x4a0378ee, 0x00080302, 0x640778e8, - 0x41780800, 0x6003a0ec, 0x42001000, 0x0010e32d, - 0x42001800, 0x0011178d, 0x600c2000, 0x6120297f, - 0x4a03a005, 0xd0000001, 0x59d00006, 0x4a03a005, - 0x90000001, 0x59d00006, 0x4a03a005, 0x60000001, - 0x59d00006, 0x4a03a005, 0x60000003, 0x59d00006, - 0x4a03a005, 0x60000005, 0x59d00006, 0x4a03a005, - 0x60000007, 0x59d00006, 0x4a03a005, 0x60000009, - 0x59d00006, 0x4a03a005, 0x6000000b, 0x64041001, - 0x4a001002, 0x00000100, 0x4a001009, 0x00020f77, - 0x480c100b, 0x4810100d, 0x4814100e, 0x4978120f, - 0x4804140f, 0x49781010, 0x820c1c00, 0x00000080, - 0x480c100c, 0x90081412, 0x801020c4, 0x80142800, - 0x91d3a420, 0x80040800, 0x90040485, 0x05fc17d7, - 0x59e00003, 0x82000500, 0xffffffe0, 0x82000540, - 0x00008000, 0x4803c003, 0x59c40006, 0x82000500, - 0xfffcffff, 0x48038806, 0x1c01f000, 0x4d900000, - 0x4d180000, 0x4c500000, 0x4c580000, 0x4c540000, - 0x4a01a8e7, 0xaaaaaaaa, 0x4a01a8e6, 0xaaaaaaaa, - 0x4a01a8e5, 0xaaaaaaaa, 0x4a01a8e4, 0xaaaaaaaa, - 0x4a01a8ee, 0x00200000, 0x4979a8ee, 0x4a01a8ce, - 0x0010d17b, 0x6000b001, 0x90d4ac00, 0x4178a000, - 0x0529f893, 0x4a01a81d, 0x001012a3, 0x4a01a81b, - 0x001012ac, 0x4a01a81c, 0x001012bc, 0x4a01a81e, - 0x0010e2ff, 0x64031800, 0x600c0800, 0x42001800, - 0x0010e302, 0x417a3000, 0x811b20c8, 0x83932400, - 0x0000b037, 0x48072000, 0x480f2001, 0x64032002, - 0x800408c4, 0x900c1c05, 0x811a3000, 0x91180485, - 0x05fc17f6, 0x5c00a800, 0x5c00b000, 0x5c00a000, - 0x5c023000, 0x5c032000, 0x1c01f000, 0x4cd80000, - 0x4d180000, 0x4a0378e7, 0xaaaaaaaa, 0x4a0378e6, - 0xaaaaaaaa, 0x4a0378e5, 0xaaaaaaaa, 0x4a03781b, - 0x001012ac, 0x4a03781c, 0x001012bc, 0x4a03781d, - 0x0010e063, 0x4a03781e, 0x0010e06a, 0x42000800, - 0x0010e302, 0x417a3000, 0x42001000, 0x0011178d, - 0x8119b0c8, 0x82d9b400, 0x0000bf32, 0x83180400, - 0x00108a67, 0x50000000, 0x4801b002, 0x4809b000, - 0x4809b001, 0x82081400, 0x00000080, 0x90040c05, - 0x811a3000, 0x91180485, 0x05fc17f2, 0x5c023000, - 0x5c01b000, 0x1c01f000, 0x4933c857, 0x42000800, - 0x8000004e, 0x59300416, 0x8c000510, 0x05000002, - 0x84040d52, 0x48066004, 0x58d400ea, 0x8c000516, - 0x05fe07fe, 0x83300400, 0x80000000, 0x4801a8e1, - 0x1c01f000, 0x4933c857, 0x59300804, 0x82040d00, - 0x00000100, 0x82040d40, 0x80000040, 0x59300416, - 0x8c000510, 0x05000002, 0x84040d52, 0x48066004, - 0x497a6000, 0x58d400ea, 0x8c000516, 0x05fe07fe, - 0x83300400, 0x60000000, 0x4801a8e1, 0x1c01f000, - 0x0501fc8f, 0x4df00000, 0x4d300000, 0x4d340000, - 0x4d2c0000, 0x4d180000, 0x4c5c0000, 0x4c600000, + 0x1c01f000, 0x4803c856, 0x4c000000, 0x05f9f863, + 0x05020010, 0x05e9fb16, 0x05c209fb, 0x5c000000, + 0x48026802, 0x0509fcfb, 0x0500000b, 0x42000000, + 0x0011247c, 0x0529fb36, 0x4936600a, 0x64066407, + 0x602c0800, 0x05e9fadb, 0x60067000, 0x0009f039, + 0x5c000000, 0x1c01f000, 0x05c1f9eb, 0x4c0c0000, + 0x4c100000, 0x4c140000, 0x4c180000, 0x80001d80, + 0x80002580, 0x60803000, 0x90040501, 0x05000003, + 0x40080000, 0x800c1c00, 0x400c2800, 0x800c1902, + 0x80102102, 0x90140501, 0x05000003, 0x82102540, + 0x80000000, 0x80040902, 0x80183040, 0x05fe07f3, + 0x40100800, 0x400c0000, 0x5c003000, 0x5c002800, + 0x5c002000, 0x5c001800, 0x1c01f000, 0x4c0c0000, + 0x4c580000, 0x6080b000, 0x80000540, 0x05000019, + 0x80041c80, 0x05021017, 0x800810c2, 0x80040982, + 0x05001006, 0x80041c80, 0x05021005, 0x8058b040, + 0x05fe07fa, 0x0501f006, 0x80041c80, 0x400c0800, + 0x80081000, 0x8058b040, 0x05fe07f4, 0x4c000000, + 0x41f00000, 0x82000500, 0xf7ffffff, 0x4003e000, + 0x5c000000, 0x5c00b000, 0x5c001800, 0x1c01f000, + 0x4c000000, 0x41f00000, 0x82000540, 0x08000000, + 0x05fdf7f7, 0x42007000, 0x00111ffa, 0x64147000, + 0x64007401, 0x4a007201, 0x00000840, 0x64147202, + 0x6401a8e8, 0x6443c82b, 0x0501f84e, 0x4a01a8e9, + 0x00003a0d, 0x4a01a8ee, 0x00080202, 0x6405a8e8, + 0x640378e8, 0x6443c821, 0x6413c823, 0x0501f879, + 0x4a0378e9, 0x00003a0d, 0x4a0378ee, 0x00080302, + 0x640778e8, 0x41780800, 0x6003a0ec, 0x42001000, + 0x001122c8, 0x42001800, 0x00115731, 0x600c2000, + 0x6120297f, 0x4a03a005, 0xd0000001, 0x59d00006, + 0x4a03a005, 0x90000001, 0x59d00006, 0x4a03a005, + 0x60000001, 0x59d00006, 0x4a03a005, 0x60000003, + 0x59d00006, 0x4a03a005, 0x60000005, 0x59d00006, + 0x4a03a005, 0x60000007, 0x59d00006, 0x4a03a005, + 0x60000009, 0x59d00006, 0x4a03a005, 0x6000000b, + 0x64041001, 0x4a001002, 0x00000100, 0x4a001009, + 0x00020fae, 0x480c100b, 0x4810100d, 0x4814100e, + 0x4978120f, 0x4804140f, 0x49781010, 0x820c1c00, + 0x00000080, 0x480c100c, 0x90081412, 0x801020c4, + 0x80142800, 0x91d3a420, 0x80040800, 0x90040485, + 0x05fc17d7, 0x59e00003, 0x82000500, 0xffffffe0, + 0x82000540, 0x00008000, 0x4803c003, 0x59c40006, + 0x82000500, 0xfffcffff, 0x48038806, 0x1c01f000, + 0x4d900000, 0x4d180000, 0x4c500000, 0x4c580000, + 0x4c540000, 0x4a01a8e7, 0xaaaaaaaa, 0x4a01a8e6, + 0xaaaaaaaa, 0x4a01a8e5, 0xaaaaaaaa, 0x4a01a8e4, + 0xaaaaaaaa, 0x4a01a8ee, 0x00200000, 0x4979a8ee, + 0x4a01a8ce, 0x0010d8f9, 0x6000b001, 0x90d4ac00, + 0x4178a000, 0x0529fb55, 0x4a01a81d, 0x00100042, + 0x4a01a81b, 0x0010004b, 0x4a01a81c, 0x0010005b, + 0x4a01a81e, 0x00112299, 0x64031800, 0x600c0800, + 0x42001800, 0x0011229c, 0x417a3000, 0x811b20c8, + 0x83932400, 0x0000b037, 0x48072000, 0x480f2001, + 0x64032002, 0x800408c4, 0x900c1c05, 0x811a3000, + 0x91180485, 0x05fc17f6, 0x5c00a800, 0x5c00b000, + 0x5c00a000, 0x5c023000, 0x5c032000, 0x1c01f000, + 0x4cd80000, 0x4d180000, 0x4a0378e7, 0xaaaaaaaa, + 0x4a0378e6, 0xaaaaaaaa, 0x4a0378e5, 0xaaaaaaaa, + 0x4a03781b, 0x0010004b, 0x4a03781c, 0x0010005b, + 0x4a03781d, 0x00111ffd, 0x4a03781e, 0x00112004, + 0x42000800, 0x0011229c, 0x417a3000, 0x42001000, + 0x00115731, 0x8119b0c8, 0x82d9b400, 0x0000bf32, + 0x83180400, 0x00108f25, 0x50000000, 0x4801b002, + 0x4809b000, 0x4809b001, 0x82081400, 0x00000080, + 0x90040c05, 0x811a3000, 0x91180485, 0x05fc17f2, + 0x5c023000, 0x5c01b000, 0x1c01f000, 0x4933c857, + 0x42000800, 0x8000004e, 0x59300416, 0x8c000510, + 0x05000002, 0x84040d52, 0x48066004, 0x58d400ea, + 0x8c000516, 0x05fe07fe, 0x83300400, 0x80000000, + 0x4801a8e1, 0x1c01f000, 0x4933c857, 0x59300804, + 0x82040d00, 0x00000100, 0x82040d40, 0x80000040, + 0x59300416, 0x8c000510, 0x05000002, 0x84040d52, + 0x48066004, 0x497a6000, 0x58d400ea, 0x8c000516, + 0x05fe07fe, 0x83300400, 0x60000000, 0x4801a8e1, + 0x1c01f000, 0x0501fc94, 0x4df00000, 0x4d300000, + 0x4d340000, 0x4d2c0000, 0x4d180000, 0x4c5c0000, + 0x4c600000, 0x4d900000, 0x4dd00000, 0x4da40000, + 0x4d140000, 0x4cd80000, 0x58d6602f, 0x813261c0, + 0x05000024, 0x41302800, 0x4178c000, 0x59300000, + 0x4c000000, 0x5932680a, 0x5930b801, 0x4c0c0000, + 0x4c140000, 0x0509f9a1, 0x5c002800, 0x5c001800, + 0x05000008, 0x0501f8d1, 0x4c0c0000, 0x4c140000, + 0x0501fb03, 0x5c002800, 0x5c001800, 0x0501f005, + 0x41301800, 0x8060c1c0, 0x05020002, 0x400cc000, + 0x805cb9c0, 0x05000003, 0x405e6000, 0x05fdf7eb, + 0x5c026000, 0x813261c0, 0x05000006, 0x8060c1c0, + 0x05000002, 0x40602800, 0x4178c000, 0x05fdf7e0, + 0x417a3000, 0x0505f9a1, 0x59926005, 0x813261c0, + 0x0500000a, 0x5932680a, 0x4c140000, 0x0509f97f, + 0x5c002800, 0x05000005, 0x0501fe8d, 0x0501fc26, + 0x0501fc2b, 0x0501fae2, 0x811a3000, 0x91180485, + 0x05fc17f1, 0x5c01b000, 0x5c022800, 0x5c034800, + 0x5c03a000, 0x5c032000, 0x5c00c000, 0x5c00b800, + 0x5c023000, 0x5c025800, 0x5c026800, 0x5c026000, + 0x5c03e000, 0x05000c35, 0x1c01f000, 0x4933c857, + 0x0501fc41, 0x4df00000, 0x4d340000, 0x4d180000, 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, - 0x4cd80000, 0x58d6602f, 0x813261c0, 0x05000024, - 0x41302800, 0x4178c000, 0x59300000, 0x4c000000, - 0x5932680a, 0x5930b801, 0x4c0c0000, 0x4c140000, - 0x0509f96a, 0x5c002800, 0x5c001800, 0x05000008, - 0x0501f8d1, 0x4c0c0000, 0x4c140000, 0x0501fafd, - 0x5c002800, 0x5c001800, 0x0501f005, 0x41301800, - 0x8060c1c0, 0x05020002, 0x400cc000, 0x805cb9c0, - 0x05000003, 0x405e6000, 0x05fdf7eb, 0x5c026000, - 0x813261c0, 0x05000006, 0x8060c1c0, 0x05000002, - 0x40602800, 0x4178c000, 0x05fdf7e0, 0x417a3000, - 0x0505f99c, 0x59926005, 0x813261c0, 0x0500000a, - 0x5932680a, 0x4c140000, 0x0509f948, 0x5c002800, - 0x05000005, 0x0501fe88, 0x0501fc21, 0x0501fc26, - 0x0501fadc, 0x811a3000, 0x91180485, 0x05fc17f1, - 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, - 0x5c032000, 0x5c00c000, 0x5c00b800, 0x5c023000, - 0x5c025800, 0x5c026800, 0x5c026000, 0x5c03e000, - 0x05000c30, 0x1c01f000, 0x4933c857, 0x0501fc3c, - 0x4df00000, 0x4d340000, 0x4d180000, 0x4d900000, - 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, - 0x5932680a, 0x58d4202f, 0x40102800, 0x801021c0, - 0x05000016, 0x41300000, 0x80100580, 0x05000011, - 0x5810000a, 0x81340580, 0x0502000b, 0x40101800, - 0x58102001, 0x41300000, 0x801021c0, 0x0500000b, - 0x80100d80, 0x05000007, 0x40101800, 0x58102001, - 0x05fdf7fa, 0x40102800, 0x58102000, 0x05fdf7ec, - 0x0501f879, 0x0501f00d, 0x417a3000, 0x0505f959, - 0x59900005, 0x81300580, 0x05000005, 0x811a3000, - 0x91180485, 0x05021010, 0x05fdf7f9, 0x0501fe46, - 0x0501fbdf, 0x0501fbe4, 0x5c01b000, 0x5c022800, + 0x4cd80000, 0x5932680a, 0x58d4202f, 0x40102800, + 0x801021c0, 0x05000016, 0x41300000, 0x80100580, + 0x05000011, 0x5810000a, 0x81340580, 0x0502000b, + 0x40101800, 0x58102001, 0x41300000, 0x801021c0, + 0x0500000b, 0x80100d80, 0x05000007, 0x40101800, + 0x58102001, 0x05fdf7fa, 0x40102800, 0x58102000, + 0x05fdf7ec, 0x0501f879, 0x0501f00d, 0x417a3000, + 0x0505f95e, 0x59900005, 0x81300580, 0x05000005, + 0x811a3000, 0x91180485, 0x05021010, 0x05fdf7f9, + 0x0501fe4b, 0x0501fbe4, 0x0501fbe9, 0x5c01b000, + 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, + 0x5c023000, 0x5c026800, 0x5c03e000, 0x05000bfb, + 0x80000580, 0x1c01f000, 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, 0x5c023000, - 0x5c026800, 0x5c03e000, 0x05000bf6, 0x80000580, - 0x1c01f000, 0x5c01b000, 0x5c022800, 0x5c034800, - 0x5c03a000, 0x5c032000, 0x5c023000, 0x5c026800, - 0x5c03e000, 0x05000beb, 0x90000541, 0x1c01f000, - 0x0501fbf7, 0x4df00000, 0x4d300000, 0x4d340000, - 0x4d180000, 0x4d2c0000, 0x4c5c0000, 0x4d900000, - 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, - 0x58d6602f, 0x813261c0, 0x05000021, 0x41302800, - 0x5930b800, 0x5932680a, 0x59340403, 0x81440580, - 0x05000006, 0x805cb9c0, 0x05000019, 0x41302800, - 0x405e6000, 0x05fdf7f7, 0x5930001d, 0x81240580, - 0x05fe07f9, 0x5930b801, 0x4c0c0000, 0x4c140000, - 0x0509f8ca, 0x5c002800, 0x5c001800, 0x05000008, - 0x0501f831, 0x4c0c0000, 0x4c140000, 0x0501fa5d, - 0x5c002800, 0x5c001800, 0x0501f002, 0x41301800, - 0x405e6000, 0x813261c0, 0x05fe07ec, 0x417a3000, - 0x0505f908, 0x59926005, 0x813261c0, 0x05000005, - 0x5932680a, 0x59340403, 0x81440580, 0x05000005, - 0x811a3000, 0x91180485, 0x05fc17f6, 0x0501f00d, - 0x5930001d, 0x81240580, 0x05fe07fa, 0x4c140000, - 0x0509f8aa, 0x5c002800, 0x05fc07f6, 0x0501fdea, - 0x0501fb83, 0x0501fb88, 0x0501fa3e, 0x05fdf7f1, - 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, - 0x5c032000, 0x5c00b800, 0x5c025800, 0x5c023000, - 0x5c026800, 0x5c026000, 0x5c03e000, 0x05000b95, - 0x1c01f000, 0x0501fb78, 0x58d4002f, 0x81300580, - 0x0502001c, 0x59300801, 0x800409c0, 0x0500000e, - 0x59300000, 0x800001c0, 0x05020005, 0x4805a82f, - 0x4805a82e, 0x497a6001, 0x1c01f000, 0x59300000, - 0x48000800, 0x4805a82f, 0x497a6000, 0x497a6001, - 0x1c01f000, 0x59300800, 0x800409c0, 0x05020005, - 0x4979a82f, 0x4979a82e, 0x497a680c, 0x1c01f000, - 0x4805a82f, 0x497a6000, 0x497a680c, 0x1c01f000, - 0x58d4002e, 0x81300580, 0x0502000c, 0x59300001, - 0x800001c0, 0x05020005, 0x4815a82e, 0x49782800, - 0x497a680c, 0x1c01f000, 0x4801a82e, 0x48002800, - 0x497a6001, 0x1c01f000, 0x59300000, 0x800001c0, - 0x05020008, 0x59300001, 0x48001801, 0x800001c0, - 0x05020002, 0x480e680c, 0x497a6001, 0x1c01f000, - 0x59300801, 0x800409c0, 0x05020006, 0x59300800, - 0x48042800, 0x497a6000, 0x497a680c, 0x1c01f000, - 0x59300000, 0x48000800, 0x48042800, 0x497a6000, - 0x497a6001, 0x1c01f000, 0x0501fb5d, 0x4df00000, - 0x0501f828, 0x050208ec, 0x05020960, 0x05020005, - 0x5c03e000, 0x05000b47, 0x80000580, 0x1c01f000, - 0x5c03e000, 0x05000b43, 0x90000541, 0x1c01f000, - 0x4d2c0000, 0x4d340000, 0x4d300000, 0x4c5c0000, - 0x4178b800, 0x598e6007, 0x813261c0, 0x0500000e, - 0x0509f83a, 0x05000009, 0x59300000, 0x4c000000, - 0x0501fa46, 0x405c3000, 0x0501f851, 0x0501f9cd, - 0x5c026000, 0x05fdf7f5, 0x4130b800, 0x59326000, - 0x05fdf7f2, 0x0509f8d3, 0x0509f8ee, 0x5c00b800, - 0x5c026000, 0x5c026800, 0x5c025800, 0x1c01f000, - 0x4933c857, 0x4c5c0000, 0x813261c0, 0x05c00bf7, - 0x41300000, 0x598cb807, 0x41783000, 0x805cb9c0, - 0x05000011, 0x805c0d80, 0x05000004, 0x405c3000, - 0x5818b800, 0x05fdf7fa, 0x0501f835, 0x598c000b, - 0x81300580, 0x0504084b, 0x59300403, 0xb0000582, - 0x05020002, 0x497a6008, 0x80000580, 0x5c00b800, - 0x1c01f000, 0x90000541, 0x5c00b800, 0x1c01f000, - 0x0501fb17, 0x4df00000, 0x4d2c0000, 0x4d340000, - 0x4d300000, 0x4c5c0000, 0x4178b800, 0x598e6007, - 0x813261c0, 0x05000015, 0x5932680a, 0x59340403, - 0x81440580, 0x0502000e, 0x5930001d, 0x81240580, - 0x0502000b, 0x0505fff9, 0x05000009, 0x59300000, - 0x4c000000, 0x0501fa05, 0x405c3000, 0x0501f810, - 0x0501f98c, 0x5c026000, 0x05fdf7ee, 0x4130b800, - 0x59326000, 0x05fdf7eb, 0x0509f846, 0x0509f8ad, + 0x5c026800, 0x5c03e000, 0x05000bf0, 0x90000541, + 0x1c01f000, 0x0501fbfc, 0x4df00000, 0x4d300000, + 0x4d340000, 0x4d180000, 0x4d2c0000, 0x4c5c0000, + 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, + 0x4cd80000, 0x58d6602f, 0x813261c0, 0x05000021, + 0x41302800, 0x5930b800, 0x5932680a, 0x59340403, + 0x81440580, 0x05000006, 0x805cb9c0, 0x05000019, + 0x41302800, 0x405e6000, 0x05fdf7f7, 0x5930001d, + 0x81240580, 0x05fe07f9, 0x5930b801, 0x4c0c0000, + 0x4c140000, 0x0509f901, 0x5c002800, 0x5c001800, + 0x05000008, 0x0501f831, 0x4c0c0000, 0x4c140000, + 0x0501fa63, 0x5c002800, 0x5c001800, 0x0501f002, + 0x41301800, 0x405e6000, 0x813261c0, 0x05fe07ec, + 0x417a3000, 0x0505f90d, 0x59926005, 0x813261c0, + 0x05000005, 0x5932680a, 0x59340403, 0x81440580, + 0x05000005, 0x811a3000, 0x91180485, 0x05fc17f6, + 0x0501f00d, 0x5930001d, 0x81240580, 0x05fe07fa, + 0x4c140000, 0x0509f8e1, 0x5c002800, 0x05fc07f6, + 0x0501fdef, 0x0501fb88, 0x0501fb8d, 0x0501fa44, + 0x05fdf7f1, 0x5c01b000, 0x5c022800, 0x5c034800, + 0x5c03a000, 0x5c032000, 0x5c00b800, 0x5c025800, + 0x5c023000, 0x5c026800, 0x5c026000, 0x5c03e000, + 0x05000b9a, 0x1c01f000, 0x0501fb7d, 0x58d4002f, + 0x81300580, 0x0502001c, 0x59300801, 0x800409c0, + 0x0500000e, 0x59300000, 0x800001c0, 0x05020005, + 0x4805a82f, 0x4805a82e, 0x497a6001, 0x1c01f000, + 0x59300000, 0x48000800, 0x4805a82f, 0x497a6000, + 0x497a6001, 0x1c01f000, 0x59300800, 0x800409c0, + 0x05020005, 0x4979a82f, 0x4979a82e, 0x497a680c, + 0x1c01f000, 0x4805a82f, 0x497a6000, 0x497a680c, + 0x1c01f000, 0x58d4002e, 0x81300580, 0x0502000c, + 0x59300001, 0x800001c0, 0x05020005, 0x4815a82e, + 0x49782800, 0x497a680c, 0x1c01f000, 0x4801a82e, + 0x48002800, 0x497a6001, 0x1c01f000, 0x59300000, + 0x800001c0, 0x05020008, 0x59300001, 0x48001801, + 0x800001c0, 0x05020002, 0x480e680c, 0x497a6001, + 0x1c01f000, 0x59300801, 0x800409c0, 0x05020006, + 0x59300800, 0x48042800, 0x497a6000, 0x497a680c, + 0x1c01f000, 0x59300000, 0x48000800, 0x48042800, + 0x497a6000, 0x497a6001, 0x1c01f000, 0x0501fb62, + 0x4df00000, 0x0501f828, 0x050208ec, 0x05020966, + 0x05020005, 0x5c03e000, 0x05000b4c, 0x80000580, + 0x1c01f000, 0x5c03e000, 0x05000b48, 0x90000541, + 0x1c01f000, 0x4d2c0000, 0x4d340000, 0x4d300000, + 0x4c5c0000, 0x4178b800, 0x598e6007, 0x813261c0, + 0x0500000e, 0x0509f871, 0x05000009, 0x59300000, + 0x4c000000, 0x0501fa4a, 0x405c3000, 0x0501f851, + 0x0501f9d3, 0x5c026000, 0x05fdf7f5, 0x4130b800, + 0x59326000, 0x05fdf7f2, 0x0509f90a, 0x0509f929, 0x5c00b800, 0x5c026000, 0x5c026800, 0x5c025800, - 0x5c03e000, 0x05000ae3, 0x1c01f000, 0x59300800, - 0x497a6000, 0x0501fac4, 0x801831c0, 0x05020009, - 0x598c0006, 0x81300580, 0x05020004, 0x48031806, - 0x48031807, 0x0501f008, 0x48071807, 0x0501f006, - 0x48043000, 0x598c0006, 0x81300580, 0x05020002, - 0x481b1806, 0x0501f2c8, 0x4d300000, 0x598e6005, - 0x813261c0, 0x05000008, 0x59300000, 0x4c000000, - 0x0501f9da, 0x0005ffdc, 0x0501fabf, 0x5c026000, - 0x05fdf7f8, 0x497b1805, 0x497b1804, 0x5c026000, - 0x1c01f000, 0x0501face, 0x4df00000, 0x4d300000, - 0x4c5c0000, 0x4c600000, 0x4130c000, 0x4178b800, - 0x598e6005, 0x813261c0, 0x05000036, 0x5930080a, - 0x800409c0, 0x0502000d, 0x4d340000, 0x0001fb00, - 0x41340800, 0x5c026800, 0x0502002b, 0x58040802, - 0x59300019, 0x80040580, 0x82000500, 0x00ffffff, - 0x05000005, 0x0501f024, 0x58040403, 0x81440580, - 0x05020021, 0x5930501a, 0x59340013, 0x82000500, - 0x00ffffff, 0x80280580, 0x0502001b, 0x5930002a, - 0x80600580, 0x05000018, 0x0501f9ac, 0x59302000, - 0x497a6000, 0x805cb9c0, 0x05020009, 0x598c0004, - 0x81300580, 0x05020004, 0x497b1805, 0x497b1804, - 0x0501f008, 0x48131805, 0x0501f006, 0x4810b800, - 0x598c0004, 0x81300580, 0x05020002, 0x485f1804, - 0x4c100000, 0x0005ffdc, 0x0501fa7f, 0x5c026000, - 0x05fdf7cd, 0x4130b800, 0x59326000, 0x05fdf7ca, - 0x5c00c000, 0x5c00b800, 0x5c026000, 0x5c03e000, - 0x05000a7c, 0x1c01f000, 0x4d2c0000, 0x4d300000, - 0x4d340000, 0x4c5c0000, 0x4178b800, 0x598e6009, - 0x813261c0, 0x0500000e, 0x0505ff74, 0x05000009, - 0x0501f982, 0x59300000, 0x4c000000, 0x405c3000, - 0x0501f855, 0x0501f907, 0x5c026000, 0x05fdf7f5, - 0x4130b800, 0x59326000, 0x05fdf7f2, 0x05e9fc6d, - 0x5c00b800, 0x5c026800, 0x5c026000, 0x5c025800, 0x1c01f000, 0x4933c857, 0x4c5c0000, 0x813261c0, - 0x05c00b32, 0x41300000, 0x598cb809, 0x41783000, - 0x805cb9c0, 0x0500000e, 0x805c0d80, 0x05000004, - 0x405c3000, 0x5818b800, 0x05fdf7fa, 0x0501f83a, - 0x598c000b, 0x81300580, 0x05000f86, 0x497a6008, - 0x80000580, 0x5c00b800, 0x1c01f000, 0x90000541, - 0x5c00b800, 0x1c01f000, 0x0501fa55, 0x4df00000, - 0x4d340000, 0x4d300000, 0x4d2c0000, 0x4c5c0000, - 0x83440480, 0x000007f0, 0x05021020, 0x0001fb00, - 0x05c20b12, 0x4178b800, 0x598e6009, 0x813261c0, - 0x05000014, 0x5930000a, 0x81340580, 0x0502000e, - 0x5930001d, 0x81240580, 0x0502000b, 0x0505ff33, - 0x05000009, 0x0501f941, 0x59300000, 0x4c000000, - 0x405c3000, 0x0501f814, 0x0501f8c6, 0x5c026000, - 0x05fdf7ef, 0x4130b800, 0x59326000, 0x05fdf7ec, - 0x8d3c0506, 0x05000004, 0x59340200, 0x8c00050e, - 0x05020002, 0x05e9fc46, 0x5c00b800, 0x5c025800, - 0x5c026000, 0x5c026800, 0x5c03e000, 0x05000a19, - 0x1c01f000, 0x59300800, 0x497a6000, 0x0501f9fa, - 0x801831c0, 0x05020009, 0x598c0008, 0x81300580, - 0x05020004, 0x48031808, 0x48031809, 0x0501f008, - 0x48071809, 0x0501f006, 0x48043000, 0x598c0008, - 0x81300580, 0x05020002, 0x481b1808, 0x0501f1fe, - 0x0501fa13, 0x4df00000, 0x4d300000, 0x4c5c0000, - 0x4178b800, 0x598e6003, 0x813261c0, 0x0500000e, - 0x0505fefe, 0x05000009, 0x0501f90c, 0x59300000, - 0x4c000000, 0x405c3000, 0x0501f86c, 0x0501f891, - 0x5c026000, 0x05fdf7f5, 0x4130b800, 0x59326000, - 0x05fdf7f2, 0x5c00b800, 0x5c026000, 0x5c03e000, - 0x050009ec, 0x1c01f000, 0x4933c857, 0x4c5c0000, - 0x4c600000, 0x813261c0, 0x05c00abc, 0x41300000, - 0x598cb803, 0x405cc000, 0x805cb9c0, 0x05000024, - 0x805c0d80, 0x05000004, 0x405cc000, 0x5860b800, - 0x05fdf7fa, 0x598c000b, 0x81300580, 0x05000f11, - 0x0501f9bd, 0x598c0003, 0x805c0580, 0x05020009, - 0x585c0000, 0x48031803, 0x4978b800, 0x598c0002, - 0x805c0580, 0x0502000d, 0x497b1802, 0x0501f00b, - 0x598c0002, 0x805c0580, 0x05020005, 0x48631802, - 0x4978b800, 0x4978c000, 0x0501f004, 0x585c0000, - 0x4800c000, 0x4978b800, 0x0501f9bb, 0x80000580, - 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x90000541, - 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4933c857, - 0x0501f9c7, 0x4df00000, 0x4d2c0000, 0x4d340000, - 0x4d300000, 0x4c5c0000, 0x4178b800, 0x598e6003, - 0x813261c0, 0x0500001e, 0x5932680a, 0x59340403, - 0x81440580, 0x05020017, 0x812649c0, 0x05000004, - 0x5930001d, 0x81240580, 0x05020012, 0x0505fea7, - 0x05000010, 0x0515f968, 0x05000006, 0x0515ffea, - 0x05020004, 0x59300403, 0xb0000583, 0x05140feb, - 0x0501f8ae, 0x59300000, 0x4c000000, 0x405c3000, - 0x0501f80e, 0x0501f833, 0x5c026000, 0x05fdf7e5, - 0x4130b800, 0x59326000, 0x05fdf7e2, 0x5c00b800, - 0x5c026000, 0x5c026800, 0x5c025800, 0x5c03e000, - 0x0500098c, 0x1c01f000, 0x59300800, 0x497a6000, - 0x0501f96d, 0x801831c0, 0x05020009, 0x598c0002, - 0x81300580, 0x05020004, 0x48031802, 0x48031803, - 0x0501f008, 0x48071803, 0x0501f006, 0x48043000, - 0x598c0002, 0x81300580, 0x05020002, 0x481b1802, - 0x0501f171, 0x4943c857, 0x0501f985, 0x4df00000, - 0x05fdfe34, 0x05fdfef9, 0x5c03e000, 0x05000971, - 0x1c01f000, 0x4947c857, 0x0501f97d, 0x4df00000, - 0x4d3c0000, 0x853e7d00, 0x05fdfe62, 0x05fdff23, - 0x5c027800, 0x5c03e000, 0x05000966, 0x1c01f000, - 0x5c000000, 0x4c000000, 0x4803c857, 0x4d340000, - 0x4d2c0000, 0x5932680a, 0x59325809, 0x59300407, - 0x90000c92, 0x05c21a31, 0x4933c857, 0x4943c857, - 0x493fc857, 0x4803c857, 0x0c01f804, 0x5c025800, - 0x5c026800, 0x1c01f000, 0x001083c4, 0x001083c5, - 0x001083cb, 0x001083ed, 0x001083c5, 0x001083d3, - 0x00108401, 0x001083c4, 0x001083c4, 0x001083c4, - 0x00108408, 0x001083c4, 0x001083c4, 0x001083c4, - 0x001083c4, 0x001083c4, 0x0010840e, 0x0010840e, - 0x05c1fa16, 0x0525fa91, 0x0515f9f5, 0x05cc0fac, - 0x0515fcbd, 0x0509fefa, 0x0509f006, 0x0515f8fe, - 0x05000006, 0x49425a0a, 0x0001fb82, 0x59300229, - 0x90000583, 0x051409d7, 0x0505f7fe, 0x83300580, - 0x00111a40, 0x05020015, 0x0515f8f3, 0x05000010, - 0x59a8009d, 0x812c0580, 0x05c20a00, 0x592c0000, - 0x4803509d, 0x800001c0, 0x05020002, 0x4803509e, - 0x592c1208, 0xb0080595, 0x05020003, 0x05c1fdaf, - 0x0501f003, 0x49425a0a, 0x0001fb82, 0x64026203, - 0x497a6009, 0x1c01f000, 0x0515f8df, 0x050407e5, - 0x05c1f9ee, 0x59300008, 0x8c000500, 0x05c60c5a, - 0x0515f8d9, 0x0500000f, 0x592c0208, 0x82000500, - 0x000000ff, 0x90000594, 0x051609b2, 0x0519faba, - 0x05f5f810, 0x4a025a08, 0x00000103, 0x49425a0a, - 0x497a580d, 0x0515fa27, 0x0521ff33, 0x0001fb82, - 0x0505f7d0, 0x59300008, 0x8c000500, 0x05c60c46, - 0x0515f8c5, 0x05220b81, 0x0519faab, 0x0505f7c9, - 0x0515f8c1, 0x05000004, 0x49425a0a, 0x497a5c0d, - 0x0001fb82, 0x0505f7c3, 0x05c9fafb, 0x0515f8ba, - 0x05000003, 0x49425a0a, 0x0001fb82, 0x59325819, - 0x05c1fd87, 0x0505f7bb, 0x598c000b, 0x81300580, - 0x05000003, 0x497a6008, 0x1c01f000, 0x59c40004, - 0x9000050c, 0x05000005, 0x64338804, 0x4a01a8e5, - 0x00000800, 0x0501f008, 0x0501fb80, 0x59300403, - 0xb0000d80, 0x05000003, 0xb0000582, 0x05020002, - 0x497a6008, 0x0501fe13, 0x80000580, 0x1c01f000, - 0x59300804, 0x8c040520, 0x05020003, 0x90000541, - 0x1c01f000, 0x4933c857, 0x59300804, 0x84040d20, - 0x48066004, 0x640a6203, 0x80000580, 0x1c01f000, - 0x4933c857, 0x4d380000, 0x59300804, 0x84040d20, - 0x48066004, 0x61267000, 0x59300203, 0x90000583, - 0x05000002, 0x604e7000, 0x0009f800, 0x80000580, - 0x5c027000, 0x1c01f000, 0x59300019, 0x81480580, - 0x05020003, 0x5930001a, 0x814c0580, 0x1c01f000, - 0x4d2c0000, 0x4d300000, 0x0501f8c5, 0x4df00000, - 0x05f9fb8b, 0x59900002, 0x90000503, 0x0c01f001, - 0x00108464, 0x00108459, 0x00108458, 0x00108458, - 0x05c1f982, 0x59926005, 0x0501f889, 0x813261c0, - 0x05000008, 0x59300004, 0x8c000516, 0x05000004, - 0x59325809, 0x497a580c, 0x497a580d, 0x0501f886, - 0x5c03e000, 0x0500089f, 0x5c026000, 0x5c025800, - 0x1c01f000, 0x5c000000, 0x4c000000, 0x4803c857, - 0x4d300000, 0x4a01a8e5, 0x00000800, 0x0501f8a4, - 0x4df00000, 0x598c0000, 0x90000507, 0x4803c857, - 0x0c01f001, 0x0010849b, 0x0010847e, 0x00108485, - 0x00108488, 0x00108494, 0x0010849b, 0x00108498, - 0x0010847d, 0x05c1f95d, 0x598c000b, 0x80026540, - 0x05000003, 0x0501f81e, 0x05c20958, 0x0501fdb9, - 0x0501f017, 0x0501f829, 0x0501fdb6, 0x0501f014, - 0x598c000b, 0x80026540, 0x05000011, 0x0501f83a, - 0x05000006, 0x0501f847, 0x05000004, 0x0501f810, - 0x05000002, 0x0501f81d, 0x0501fdaa, 0x0501f008, - 0x0501f840, 0x05c20945, 0x0501fda6, 0x0501f004, - 0x0501f82d, 0x05c20941, 0x0501fda2, 0x5c03e000, - 0x05000868, 0x5c026000, 0x1c01f000, 0x598c0007, - 0x81300580, 0x0502000c, 0x0501f85b, 0x0501f846, - 0x59300000, 0x800001c0, 0x05000004, 0x48031807, - 0x497a6000, 0x0501f003, 0x497b1807, 0x497b1806, - 0x80000580, 0x1c01f000, 0x4d2c0000, 0x59300407, - 0x90000583, 0x05020012, 0x598c0009, 0x81300580, - 0x0502000f, 0x0501f848, 0x59325809, 0x497a580c, - 0x497a580d, 0x0501f830, 0x59300000, 0x800001c0, - 0x05000004, 0x48031809, 0x497a6000, 0x0501f003, - 0x497b1808, 0x497b1809, 0x80000580, 0x5c025800, - 0x1c01f000, 0x598c0005, 0x81300580, 0x0502000c, - 0x0501f835, 0x0501f820, 0x59300000, 0x800001c0, - 0x05000004, 0x48031805, 0x497a6000, 0x0501f003, - 0x497b1805, 0x497b1804, 0x80000580, 0x1c01f000, - 0x598c0003, 0x81300580, 0x0502000c, 0x0501f826, - 0x0501f811, 0x59300000, 0x800001c0, 0x05000004, - 0x48031803, 0x497a6000, 0x0501f003, 0x497b1803, - 0x497b1802, 0x80000580, 0x1c01f000, 0x64032002, - 0x497b2005, 0x497b2006, 0x497b2007, 0x4979b003, - 0x1c01f000, 0x4c040000, 0x59300004, 0x8c000516, - 0x05020003, 0x82000500, 0xffd7ffff, 0x82000500, - 0x7ffef7ff, 0x48026004, 0x58d400e4, 0x8c000514, - 0x05000007, 0x58d40011, 0x81300580, 0x05020004, - 0x4979a811, 0x4a01a8e4, 0x00000800, 0x5c000800, - 0x1c01f000, 0x4803c856, 0x598c000a, 0x80000540, - 0x05000003, 0x80000040, 0x4803180a, 0x1c01f000, - 0x58d400ea, 0x90000507, 0x90000583, 0x05020003, - 0x4803c856, 0x6405a8e8, 0x59bc00ea, 0x90000507, - 0x90000583, 0x05020005, 0x4803c856, 0x640778e8, - 0x4a0370e4, 0x00000800, 0x1c01f000, 0x60042800, - 0x58d400ea, 0x90000507, 0x90000581, 0x0502000d, - 0x4803c856, 0x60000800, 0x0501f830, 0x60000820, + 0x05bc0f79, 0x41300000, 0x598cb807, 0x41783000, + 0x805cb9c0, 0x05000011, 0x805c0d80, 0x05000004, + 0x405c3000, 0x5818b800, 0x05fdf7fa, 0x0501f835, + 0x598c000b, 0x81300580, 0x05040850, 0x59300403, + 0xb0000582, 0x05020002, 0x497a6008, 0x80000580, + 0x5c00b800, 0x1c01f000, 0x90000541, 0x5c00b800, + 0x1c01f000, 0x0501fb1c, 0x4df00000, 0x4d2c0000, + 0x4d340000, 0x4d300000, 0x4c5c0000, 0x4178b800, + 0x598e6007, 0x813261c0, 0x05000015, 0x5932680a, + 0x59340403, 0x81440580, 0x0502000e, 0x5930001d, + 0x81240580, 0x0502000b, 0x0509f830, 0x05000009, + 0x59300000, 0x4c000000, 0x0501fa09, 0x405c3000, + 0x0501f810, 0x0501f992, 0x5c026000, 0x05fdf7ee, + 0x4130b800, 0x59326000, 0x05fdf7eb, 0x0509f87d, + 0x0509f8e8, 0x5c00b800, 0x5c026000, 0x5c026800, + 0x5c025800, 0x5c03e000, 0x05000ae8, 0x1c01f000, + 0x59300800, 0x497a6000, 0x0501fac9, 0x801831c0, + 0x05020009, 0x598c0006, 0x81300580, 0x05020004, + 0x48031806, 0x48031807, 0x0501f008, 0x48071807, + 0x0501f006, 0x48043000, 0x598c0006, 0x81300580, + 0x05020002, 0x481b1806, 0x0501f2cd, 0x4d300000, + 0x598e6005, 0x813261c0, 0x05000008, 0x59300000, + 0x4c000000, 0x0501f9de, 0x0009f810, 0x0501fac4, + 0x5c026000, 0x05fdf7f8, 0x497b1805, 0x497b1804, + 0x5c026000, 0x1c01f000, 0x0501fad3, 0x4df00000, + 0x4d300000, 0x4c5c0000, 0x4c600000, 0x4130c000, + 0x4178b800, 0x598e6005, 0x813261c0, 0x05000036, + 0x5930080a, 0x800409c0, 0x0502000d, 0x4d340000, + 0x0001fb08, 0x41340800, 0x5c026800, 0x0502002b, + 0x58040802, 0x59300019, 0x80040580, 0x82000500, + 0x00ffffff, 0x05000005, 0x0501f024, 0x58040403, + 0x81440580, 0x05020021, 0x5930501a, 0x59340013, + 0x82000500, 0x00ffffff, 0x80280580, 0x0502001b, + 0x5930002a, 0x80600580, 0x05000018, 0x0501f9b0, + 0x59302000, 0x497a6000, 0x805cb9c0, 0x05020009, + 0x598c0004, 0x81300580, 0x05020004, 0x497b1805, + 0x497b1804, 0x0501f008, 0x48131805, 0x0501f006, + 0x4810b800, 0x598c0004, 0x81300580, 0x05020002, + 0x485f1804, 0x4c100000, 0x0009f810, 0x0501fa84, + 0x5c026000, 0x05fdf7cd, 0x4130b800, 0x59326000, + 0x05fdf7ca, 0x5c00c000, 0x5c00b800, 0x5c026000, + 0x5c03e000, 0x05000a81, 0x1c01f000, 0x4d2c0000, + 0x4d300000, 0x4d340000, 0x4c5c0000, 0x4178b800, + 0x598e6009, 0x813261c0, 0x0500000e, 0x0505ffab, + 0x05000009, 0x0501f986, 0x59300000, 0x4c000000, + 0x405c3000, 0x0501f85b, 0x0501f90d, 0x5c026000, + 0x05fdf7f5, 0x4130b800, 0x59326000, 0x05fdf7f2, + 0x05e9fa1a, 0x5c00b800, 0x5c026800, 0x5c026000, + 0x5c025800, 0x1c01f000, 0x4933c857, 0x4c5c0000, + 0x813261c0, 0x05bc0eb4, 0x41300000, 0x598cb809, + 0x41783000, 0x805cb9c0, 0x0500000e, 0x805c0d80, + 0x05000004, 0x405c3000, 0x5818b800, 0x05fdf7fa, + 0x0501f840, 0x598c000b, 0x81300580, 0x05000f8b, + 0x497a6008, 0x80000580, 0x5c00b800, 0x1c01f000, + 0x90000541, 0x5c00b800, 0x1c01f000, 0x0501fa5a, + 0x4df00000, 0x4d340000, 0x4d300000, 0x4d2c0000, + 0x4c5c0000, 0x83440480, 0x000007f0, 0x05001004, + 0x83440480, 0x00000800, 0x05001023, 0x83440580, + 0x0000ffff, 0x05000020, 0x0001fb08, 0x05be0e8e, + 0x4178b800, 0x598e6009, 0x813261c0, 0x05000014, + 0x5930000a, 0x81340580, 0x0502000e, 0x5930001d, + 0x81240580, 0x0502000b, 0x0505ff64, 0x05000009, + 0x0501f93f, 0x59300000, 0x4c000000, 0x405c3000, + 0x0501f814, 0x0501f8c6, 0x5c026000, 0x05fdf7ef, + 0x4130b800, 0x59326000, 0x05fdf7ec, 0x8d3c0506, + 0x05000004, 0x59340200, 0x8c00050e, 0x05020002, + 0x05e9f9f1, 0x5c00b800, 0x5c025800, 0x5c026000, + 0x5c026800, 0x5c03e000, 0x05000a18, 0x1c01f000, + 0x59300800, 0x497a6000, 0x0501f9f9, 0x801831c0, + 0x05020009, 0x598c0008, 0x81300580, 0x05020004, + 0x48031808, 0x48031809, 0x0501f008, 0x48071809, + 0x0501f006, 0x48043000, 0x598c0008, 0x81300580, + 0x05020002, 0x481b1808, 0x0501f1fd, 0x0501fa12, + 0x4df00000, 0x4d300000, 0x4c5c0000, 0x4178b800, + 0x598e6003, 0x813261c0, 0x0500000e, 0x0505ff2f, + 0x05000009, 0x0501f90a, 0x59300000, 0x4c000000, + 0x405c3000, 0x0501f86c, 0x0501f891, 0x5c026000, + 0x05fdf7f5, 0x4130b800, 0x59326000, 0x05fdf7f2, + 0x5c00b800, 0x5c026000, 0x5c03e000, 0x050009eb, + 0x1c01f000, 0x4933c857, 0x4c5c0000, 0x4c600000, + 0x813261c0, 0x05bc0e38, 0x41300000, 0x598cb803, + 0x405cc000, 0x805cb9c0, 0x05000024, 0x805c0d80, + 0x05000004, 0x405cc000, 0x5860b800, 0x05fdf7fa, + 0x598c000b, 0x81300580, 0x05000f10, 0x0501f9bc, + 0x598c0003, 0x805c0580, 0x05020009, 0x585c0000, + 0x48031803, 0x4978b800, 0x598c0002, 0x805c0580, + 0x0502000d, 0x497b1802, 0x0501f00b, 0x598c0002, + 0x805c0580, 0x05020005, 0x48631802, 0x4978b800, + 0x4978c000, 0x0501f004, 0x585c0000, 0x4800c000, + 0x4978b800, 0x0501f9ba, 0x80000580, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x90000541, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x4933c857, 0x0501f9c6, + 0x4df00000, 0x4d2c0000, 0x4d340000, 0x4d300000, + 0x4c5c0000, 0x4178b800, 0x598e6003, 0x813261c0, + 0x0500001e, 0x5932680a, 0x59340403, 0x81440580, + 0x05020017, 0x812649c0, 0x05000004, 0x5930001d, + 0x81240580, 0x05020012, 0x0505fed8, 0x05000010, + 0x0515fa32, 0x05000006, 0x0519f8d1, 0x05020004, + 0x59300403, 0xb0000583, 0x051808d2, 0x0501f8ac, + 0x59300000, 0x4c000000, 0x405c3000, 0x0501f80e, + 0x0501f833, 0x5c026000, 0x05fdf7e5, 0x4130b800, + 0x59326000, 0x05fdf7e2, 0x5c00b800, 0x5c026000, + 0x5c026800, 0x5c025800, 0x5c03e000, 0x0500098b, + 0x1c01f000, 0x59300800, 0x497a6000, 0x0501f96c, + 0x801831c0, 0x05020009, 0x598c0002, 0x81300580, + 0x05020004, 0x48031802, 0x48031803, 0x0501f008, + 0x48071803, 0x0501f006, 0x48043000, 0x598c0002, + 0x81300580, 0x05020002, 0x481b1802, 0x0501f170, + 0x4943c857, 0x0501f984, 0x4df00000, 0x05fdfe2e, + 0x05fdfef3, 0x5c03e000, 0x05000970, 0x1c01f000, + 0x4947c857, 0x0501f97c, 0x4df00000, 0x4d3c0000, + 0x853e7d00, 0x05fdfe5c, 0x05fdff1d, 0x5c027800, + 0x5c03e000, 0x05000965, 0x1c01f000, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4d340000, 0x4d2c0000, + 0x5932680a, 0x59325809, 0x59300407, 0x90000c92, + 0x05be1dad, 0x4933c857, 0x4943c857, 0x493fc857, + 0x4803c857, 0x0c01f804, 0x5c025800, 0x5c026800, + 0x1c01f000, 0x00108883, 0x00108884, 0x0010888a, + 0x001088ac, 0x00108884, 0x00108892, 0x001088c0, + 0x00108883, 0x00108883, 0x00108883, 0x001088c7, + 0x00108883, 0x00108883, 0x00108883, 0x00108883, + 0x00108883, 0x001088cd, 0x001088cd, 0x05bdfd92, + 0x0525fd39, 0x0515facf, 0x05cc0b84, 0x0515fd96, + 0x0509ff75, 0x0509f05c, 0x0515f9c8, 0x05000006, + 0x49425a0a, 0x0001fba8, 0x59300229, 0x90000583, + 0x05140ab1, 0x0509f054, 0x83300580, 0x001159e4, + 0x05020015, 0x0515f9bd, 0x05000010, 0x59a800a0, + 0x812c0580, 0x05be0d7c, 0x592c0000, 0x480350a0, + 0x800001c0, 0x05020002, 0x480350a1, 0x592c1208, + 0xb0080595, 0x05020003, 0x05c1f927, 0x0501f003, + 0x49425a0a, 0x0001fba8, 0x64026203, 0x497a6009, + 0x1c01f000, 0x0515f9a9, 0x0508003b, 0x05bdfd6a, + 0x59300008, 0x8c000500, 0x05c60839, 0x0515f9a3, + 0x0500000f, 0x592c0208, 0x82000500, 0x000000ff, + 0x90000594, 0x05160a8c, 0x0519fba1, 0x05f1fed9, + 0x4a025a08, 0x00000103, 0x49425a0a, 0x497a580d, + 0x0515fb01, 0x0525f9be, 0x0001fba8, 0x0509f026, + 0x59300008, 0x8c000500, 0x05c60825, 0x0515f98f, + 0x05220e07, 0x0519fb92, 0x0509f01f, 0x0515f98b, + 0x05000004, 0x49425a0a, 0x497a5c0d, 0x0001fba8, + 0x0509f019, 0x05c5fead, 0x0515f984, 0x05080016, + 0x49425a0a, 0x0001fba8, 0x0509f013, 0x598c000b, + 0x81300580, 0x05000003, 0x497a6008, 0x1c01f000, + 0x59c40004, 0x9000050c, 0x05000005, 0x64338804, + 0x4a01a8e5, 0x00000800, 0x0501f008, 0x0501fb81, + 0x59300403, 0xb0000d80, 0x05000003, 0xb0000582, + 0x05020002, 0x497a6008, 0x0501fe14, 0x80000580, + 0x1c01f000, 0x59300804, 0x4807c857, 0x8c040520, + 0x05020003, 0x90000541, 0x1c01f000, 0x4933c857, + 0x59300804, 0x84040d20, 0x48066004, 0x640a6203, + 0x80000580, 0x1c01f000, 0x4933c857, 0x4d380000, + 0x59300804, 0x84040d20, 0x48066004, 0x61267000, + 0x59300203, 0x90000583, 0x05000002, 0x604e7000, + 0x0009f839, 0x80000580, 0x5c027000, 0x1c01f000, + 0x59300019, 0x81480580, 0x05020003, 0x5930001a, + 0x814c0580, 0x1c01f000, 0x4d2c0000, 0x4d300000, + 0x0501f8c5, 0x4df00000, 0x05f9fb31, 0x59900002, + 0x90000503, 0x0c01f001, 0x00108922, 0x00108917, + 0x00108916, 0x00108916, 0x05bdfcff, 0x59926005, + 0x0501f889, 0x813261c0, 0x05000008, 0x59300004, + 0x8c000516, 0x05000004, 0x59325809, 0x497a580c, + 0x497a580d, 0x0501f886, 0x5c03e000, 0x0500089f, + 0x5c026000, 0x5c025800, 0x1c01f000, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4d300000, 0x4a01a8e5, + 0x00000800, 0x0501f8a4, 0x4df00000, 0x598c0000, + 0x90000507, 0x4803c857, 0x0c01f001, 0x00108959, + 0x0010893c, 0x00108943, 0x00108946, 0x00108952, + 0x00108959, 0x00108956, 0x0010893b, 0x05bdfcda, + 0x598c000b, 0x80026540, 0x05000003, 0x0501f81e, + 0x05be0cd5, 0x0501fdb9, 0x0501f017, 0x0501f829, + 0x0501fdb6, 0x0501f014, 0x598c000b, 0x80026540, + 0x05000011, 0x0501f83a, 0x05000006, 0x0501f847, + 0x05000004, 0x0501f810, 0x05000002, 0x0501f81d, + 0x0501fdaa, 0x0501f008, 0x0501f840, 0x05be0cc2, + 0x0501fda6, 0x0501f004, 0x0501f82d, 0x05be0cbe, + 0x0501fda2, 0x5c03e000, 0x05000868, 0x5c026000, + 0x1c01f000, 0x598c0007, 0x81300580, 0x0502000c, + 0x0501f85b, 0x0501f846, 0x59300000, 0x800001c0, + 0x05000004, 0x48031807, 0x497a6000, 0x0501f003, + 0x497b1807, 0x497b1806, 0x80000580, 0x1c01f000, + 0x4d2c0000, 0x59300407, 0x90000583, 0x05020012, + 0x598c0009, 0x81300580, 0x0502000f, 0x0501f848, + 0x59325809, 0x497a580c, 0x497a580d, 0x0501f830, + 0x59300000, 0x800001c0, 0x05000004, 0x48031809, + 0x497a6000, 0x0501f003, 0x497b1808, 0x497b1809, + 0x80000580, 0x5c025800, 0x1c01f000, 0x598c0005, + 0x81300580, 0x0502000c, 0x0501f835, 0x0501f820, + 0x59300000, 0x800001c0, 0x05000004, 0x48031805, + 0x497a6000, 0x0501f003, 0x497b1805, 0x497b1804, + 0x80000580, 0x1c01f000, 0x598c0003, 0x81300580, + 0x0502000c, 0x0501f826, 0x0501f811, 0x59300000, + 0x800001c0, 0x05000004, 0x48031803, 0x497a6000, + 0x0501f003, 0x497b1803, 0x497b1802, 0x80000580, + 0x1c01f000, 0x64032002, 0x497b2005, 0x497b2006, + 0x497b2007, 0x4979b003, 0x1c01f000, 0x4c040000, + 0x59300004, 0x8c000516, 0x05020003, 0x82000500, + 0xffd7ffff, 0x82000500, 0x7ffef7ff, 0x48026004, + 0x58d400e4, 0x8c000514, 0x05000007, 0x58d40011, + 0x81300580, 0x05020004, 0x4979a811, 0x4a01a8e4, + 0x00000800, 0x5c000800, 0x1c01f000, 0x4803c856, + 0x598c000a, 0x80000540, 0x05000003, 0x80000040, + 0x4803180a, 0x1c01f000, 0x59bc00ea, 0x90000507, + 0x90000583, 0x05020003, 0x4803c856, 0x640778e8, + 0x58d400ea, 0x90000507, 0x90000583, 0x05020005, + 0x4803c856, 0x6405a8e8, 0x4a0370e4, 0x00000800, + 0x1c01f000, 0x60042800, 0x58d400ea, 0x90000507, + 0x90000581, 0x0502000f, 0x4803c856, 0x60000800, + 0x0501f830, 0x4a0370e4, 0x00000c00, 0x60000820, 0x58d400ea, 0x90000507, 0x90000583, 0x05000004, - 0x80040840, 0x05fe07fb, 0x05c1f8b8, 0x41782800, - 0x59bc00ea, 0x90000507, 0x90000581, 0x0502000f, - 0x4803c856, 0x60000800, 0x0501f80e, 0x4a0370e4, - 0x00000c00, 0x42000800, 0x00010000, 0x59bc00ea, - 0x90000507, 0x90000583, 0x05000005, 0x80040840, - 0x05fe07fb, 0x05c1f8a5, 0x801429c0, 0x1c01f000, - 0x59bc00ea, 0x90000507, 0x90000581, 0x05c2089f, - 0x59bc00ea, 0x8c000516, 0x05fe07fe, 0x480778e1, - 0x1c01f000, 0x59bc00ea, 0x8c000516, 0x05fe07fe, - 0x480778e1, 0x59bc00ea, 0x8c000516, 0x05fe07fe, - 0x480b78e1, 0x1c01f000, 0x58d400ea, 0x8c000516, - 0x05fe07fe, 0x4805a8e1, 0x1c01f000, 0x58d400ea, - 0x8c000516, 0x05fe07fe, 0x4805a8e1, 0x58d400ea, - 0x8c000516, 0x05fe07fe, 0x4809a8e1, 0x1c01f000, - 0x4a0378e4, 0x00002000, 0x42007000, 0x0010e060, - 0x58380401, 0x8c000506, 0x05020003, 0x4a01a8e4, - 0x00008000, 0x1c01f000, 0x82000d00, 0x02000018, - 0x05c2086f, 0x05c1f875, 0x001086c7, 0x001086dc, - 0x0010856d, 0x001086c6, 0x0010856c, 0x00108660, - 0x05c1f86e, 0x4d2c0000, 0x4d300000, 0x58d400ea, - 0x8c000510, 0x05fc07fe, 0x58d660e0, 0x813261c0, - 0x05c00866, 0x59300004, 0x8c000520, 0x05000010, - 0x82000500, 0xfffefeff, 0x48026004, 0x59325809, - 0x59301407, 0x90080583, 0x05000006, 0x90080586, - 0x05c2085a, 0x592c0a0a, 0x0005fe45, 0x0501f006, - 0x0001fb82, 0x0005ffdc, 0x0501f003, 0x84000510, - 0x48026004, 0x5c026000, 0x5c025800, 0x1c01f000, - 0x82000d00, 0x82000018, 0x05c20845, 0x05c1f84b, - 0x001085a0, 0x001085a0, 0x001085a0, 0x001085a1, - 0x001085c1, 0x00108642, 0x001085a0, 0x00108695, - 0x001085a0, 0x001086c6, 0x001085e0, 0x00020eff, - 0x00108623, 0x001085a0, 0x001085a0, 0x001085a0, - 0x05c1f83a, 0x4d300000, 0x4d900000, 0x4dd00000, - 0x4da40000, 0x4d140000, 0x4cd80000, 0x0501fcad, - 0x59bc00ea, 0x8c000510, 0x05fc07fe, 0x59be60e0, - 0x59300004, 0x8c000520, 0x05000010, 0x82000500, - 0xfffefeff, 0x48026004, 0x05fdff61, 0x05c5fc2f, - 0x05c5fc8e, 0x05c5fc4d, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x5c026000, - 0x642378e4, 0x05fdf747, 0x84000510, 0x48026004, - 0x05fdf7f6, 0x4d300000, 0x4d900000, 0x4dd00000, - 0x4da40000, 0x4d140000, 0x4cd80000, 0x0501fc8d, - 0x59bc00ea, 0x8c000510, 0x05fc07fe, 0x59be60e0, - 0x59300004, 0x8c000520, 0x0500000f, 0x82000500, - 0xfffefeff, 0x48026004, 0x640e6203, 0x05fdff40, - 0x05c5fbbf, 0x5c01b000, 0x5c022800, 0x5c034800, - 0x5c03a000, 0x5c032000, 0x5c026000, 0x642378e4, - 0x05fdf728, 0x84000510, 0x48026004, 0x05fdf7f6, - 0x4d300000, 0x4d2c0000, 0x4d900000, 0x4dd00000, - 0x4da40000, 0x4d140000, 0x4cd80000, 0x0501fc6d, - 0x59bc00ea, 0x8c000510, 0x05fc07fe, 0x59be60e0, - 0x59300004, 0x8c000520, 0x0500001a, 0x82000500, - 0xfffefeff, 0x48026004, 0x640e6203, 0x59325809, - 0x812e59c0, 0x05bc0fe5, 0x42000000, 0x0010e477, - 0x0525f9e4, 0x592c020c, 0x84000552, 0x48025a0c, - 0x05c5ff35, 0x05fdff16, 0x05c5fb95, 0x5c01b000, + 0x80040840, 0x05fe07fb, 0x05bdfc33, 0x41782800, + 0x59bc00ea, 0x90000507, 0x90000581, 0x0502000d, + 0x4803c856, 0x60000800, 0x0501f80c, 0x42000800, + 0x00010000, 0x59bc00ea, 0x90000507, 0x90000583, + 0x05000005, 0x80040840, 0x05fe07fb, 0x05bdfc22, + 0x801429c0, 0x1c01f000, 0x59bc00ea, 0x90000507, + 0x90000581, 0x05be0c1c, 0x59bc00ea, 0x8c000516, + 0x05fe07fe, 0x480778e1, 0x1c01f000, 0x59bc00ea, + 0x8c000516, 0x05fe07fe, 0x480778e1, 0x59bc00ea, + 0x8c000516, 0x05fe07fe, 0x480b78e1, 0x1c01f000, + 0x58d400ea, 0x8c000516, 0x05fe07fe, 0x4805a8e1, + 0x1c01f000, 0x58d400ea, 0x8c000516, 0x05fe07fe, + 0x4805a8e1, 0x58d400ea, 0x8c000516, 0x05fe07fe, + 0x4809a8e1, 0x1c01f000, 0x4a0378e4, 0x00002000, + 0x42007000, 0x00111ffa, 0x58380401, 0x8c000506, + 0x05020003, 0x4a01a8e4, 0x00008000, 0x1c01f000, + 0x82000d00, 0x02000018, 0x05be0bec, 0x05bdfbf2, + 0x00108b85, 0x00108b9a, 0x00108a2b, 0x00108b84, + 0x00108a2a, 0x00108b1e, 0x05bdfbeb, 0x4d2c0000, + 0x4d300000, 0x58d400ea, 0x8c000510, 0x05fc07fe, + 0x58d660e0, 0x813261c0, 0x05bc0be3, 0x59300004, + 0x8c000520, 0x05000010, 0x82000500, 0xfffefeff, + 0x48026004, 0x59325809, 0x59301407, 0x90080583, + 0x05000006, 0x90080586, 0x05be0bd7, 0x592c0a0a, + 0x0005fe7b, 0x0501f006, 0x0001fba8, 0x0009f810, + 0x0501f003, 0x84000510, 0x48026004, 0x5c026000, + 0x5c025800, 0x1c01f000, 0x82000d00, 0x82000018, + 0x05be0bc2, 0x05bdfbc8, 0x00108a5e, 0x00108a5e, + 0x00108a5e, 0x00108a5f, 0x00108a7f, 0x00108b00, + 0x00108a5e, 0x00108b53, 0x00108a5e, 0x00108b84, + 0x00108a9e, 0x00020f36, 0x00108ae1, 0x00108a5e, + 0x00108a5e, 0x00108a5e, 0x05bdfbb7, 0x4d300000, + 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, + 0x4cd80000, 0x0501fcad, 0x59bc00ea, 0x8c000510, + 0x05fc07fe, 0x59be60e0, 0x59300004, 0x8c000520, + 0x05000010, 0x82000500, 0xfffefeff, 0x48026004, + 0x05fdff61, 0x05c5f80d, 0x05c5f86c, 0x05c5f82b, + 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, + 0x5c032000, 0x5c026000, 0x642378e4, 0x05fdf747, + 0x84000510, 0x48026004, 0x05fdf7f6, 0x4d300000, + 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, + 0x4cd80000, 0x0501fc8d, 0x59bc00ea, 0x8c000510, + 0x05fc07fe, 0x59be60e0, 0x59300004, 0x8c000520, + 0x0500000f, 0x82000500, 0xfffefeff, 0x48026004, + 0x640e6203, 0x05fdff40, 0x05c1ffa0, 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, - 0x5c025800, 0x5c026000, 0x642378e4, 0x05fdf6fd, - 0x84000510, 0x48026004, 0x05fdf7f5, 0x42007000, - 0x000211a7, 0x58380000, 0x90000580, 0x0500000d, - 0x58d80805, 0x8c040500, 0x0500000a, 0x83180400, - 0x00020f72, 0x50006000, 0x58380001, 0x80300580, - 0x05000005, 0x4803c856, 0x05c1fcbf, 0x4979b005, - 0x1c01f000, 0x58300010, 0x4803c857, 0x6404620f, - 0x49786010, 0x49787002, 0x1c01f000, 0x4d2c0000, - 0x4d300000, 0x59bc00ea, 0x8c000510, 0x05fc07fe, - 0x59be60e0, 0x813261c0, 0x05bc0fb0, 0x59300004, - 0x8c000520, 0x05000012, 0x82000500, 0xfffefeff, - 0x48026004, 0x59301407, 0x90080583, 0x05be0fa7, - 0x05fdfb82, 0x05be0fa5, 0x59325809, 0x60040800, - 0x600a8000, 0x05e9fff2, 0x0001fb82, 0x0005ffdc, - 0x5c026000, 0x5c025800, 0x1c01f000, 0x84000510, - 0x48026004, 0x05fdf7fb, 0x4d300000, 0x4d900000, - 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, - 0x0501fc0c, 0x59bc00ea, 0x8c000510, 0x05fc07fe, - 0x59be60e0, 0x59300004, 0x8c000520, 0x0500000e, - 0x82000500, 0xfffefeff, 0x48026004, 0x05fdfec0, - 0x05c5fb82, 0x5c01b000, 0x5c022800, 0x5c034800, - 0x5c03a000, 0x5c032000, 0x5c026000, 0x642378e4, - 0x05fdf6a8, 0x84000510, 0x48026004, 0x05fdf7f6, - 0x4d300000, 0x4d2c0000, 0x4d340000, 0x4da40000, - 0x4cd00000, 0x4d240000, 0x58d400ea, 0x8c000510, - 0x05fc07fe, 0x58d660e0, 0x813261c0, 0x05bc0f6f, - 0x59300004, 0x8c000520, 0x0500001e, 0x82000500, - 0xfffefeff, 0x48026004, 0x5932680a, 0x42034800, - 0x0010e063, 0x5932481d, 0x05011000, 0x4a03c840, - 0x0010e06a, 0x644bc842, 0x05011000, 0x4a03c840, - 0x0010e07c, 0x4a03c842, 0x000000ff, 0x05011000, - 0x4a03c840, 0x0010e17b, 0x4a03c842, 0x000000ff, - 0x0501fbe8, 0x5c024800, 0x5c01a000, 0x5c034800, - 0x5c026800, 0x5c025800, 0x5c026000, 0x1c01f000, - 0x84000510, 0x48026004, 0x5c024800, 0x5c01a000, - 0x5c034800, 0x5c026800, 0x5c025800, 0x5c026000, - 0x1c01f000, 0x4d300000, 0x4d2c0000, 0x4d340000, - 0x4cd00000, 0x4d240000, 0x4d900000, 0x4dd00000, - 0x4da40000, 0x4d140000, 0x4cd80000, 0x0501fbb5, - 0x59bc00ea, 0x8c000510, 0x05fc07fe, 0x59be60e0, - 0x813261c0, 0x05bc0f35, 0x59300004, 0x8c000520, - 0x05000011, 0x82000500, 0xfffefeff, 0x48026004, - 0x5932481d, 0x0505fa76, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x5c024800, - 0x5c01a000, 0x5c026800, 0x5c025800, 0x5c026000, - 0x1c01f000, 0x84000510, 0x48026004, 0x5c01b000, + 0x5c026000, 0x642378e4, 0x05fdf728, 0x84000510, + 0x48026004, 0x05fdf7f6, 0x4d300000, 0x4d2c0000, + 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, + 0x4cd80000, 0x0501fc6d, 0x59bc00ea, 0x8c000510, + 0x05fc07fe, 0x59be60e0, 0x59300004, 0x8c000520, + 0x0500001a, 0x82000500, 0xfffefeff, 0x48026004, + 0x640e6203, 0x59325809, 0x812e59c0, 0x05bc0b62, + 0x42000000, 0x0011241b, 0x0525fca1, 0x592c020c, + 0x84000552, 0x48025a0c, 0x05c5fae9, 0x05fdff16, + 0x05c1ff76, 0x5c01b000, 0x5c022800, 0x5c034800, + 0x5c03a000, 0x5c032000, 0x5c025800, 0x5c026000, + 0x642378e4, 0x05fdf6fd, 0x84000510, 0x48026004, + 0x05fdf7f5, 0x42007000, 0x000211e8, 0x58380000, + 0x90000580, 0x0500000d, 0x58d80805, 0x8c040500, + 0x0500000a, 0x83180400, 0x00020fa9, 0x50006000, + 0x58380001, 0x80300580, 0x05000005, 0x4803c856, + 0x05c1f863, 0x4979b005, 0x1c01f000, 0x58300010, + 0x4803c857, 0x6404620f, 0x49786010, 0x49787002, + 0x1c01f000, 0x4d2c0000, 0x4d300000, 0x59bc00ea, + 0x8c000510, 0x05fc07fe, 0x59be60e0, 0x813261c0, + 0x05bc0b2d, 0x59300004, 0x8c000520, 0x05000012, + 0x82000500, 0xfffefeff, 0x48026004, 0x59301407, + 0x90080583, 0x05be0b24, 0x05fdfb7d, 0x05be0b22, + 0x59325809, 0x60040800, 0x600a8000, 0x05e9fe18, + 0x0001fba8, 0x0009f810, 0x5c026000, 0x5c025800, + 0x1c01f000, 0x84000510, 0x48026004, 0x05fdf7fb, + 0x4d300000, 0x4d900000, 0x4dd00000, 0x4da40000, + 0x4d140000, 0x4cd80000, 0x0501fc0c, 0x59bc00ea, + 0x8c000510, 0x05fc07fe, 0x59be60e0, 0x59300004, + 0x8c000520, 0x0500000e, 0x82000500, 0xfffefeff, + 0x48026004, 0x05fdfec0, 0x05c1ff63, 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, - 0x5c024800, 0x5c01a000, 0x5c026800, 0x5c025800, - 0x5c026000, 0x1c01f000, 0x05bdff14, 0x4d300000, - 0x4d380000, 0x42000000, 0x0010e4b5, 0x0525f911, - 0x05fdfe47, 0x598e600b, 0x59c40004, 0x8c000506, - 0x05000003, 0x0501f8d1, 0x64238804, 0x813261c0, - 0x05000004, 0x0501fb7a, 0x60527000, 0x0009f800, - 0x6409a8e4, 0x5c027000, 0x5c026000, 0x05fdf629, - 0x4d180000, 0x4d300000, 0x4d380000, 0x4d900000, - 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, - 0x05fdfe2f, 0x417a3000, 0x59c40804, 0x83180400, - 0x00108a14, 0x50000000, 0x80040500, 0x05000017, - 0x42000000, 0x0010e4b6, 0x0525f8ee, 0x0501fb65, - 0x59926005, 0x0501f858, 0x83180400, 0x00108a14, - 0x50000000, 0x48038804, 0x813261c0, 0x05000007, - 0x59300004, 0x8c00050c, 0x05020002, 0x640e6203, - 0x612a7000, 0x0009f800, 0x59c40004, 0x82000500, - 0x00f80000, 0x05000004, 0x811a3000, 0x91180485, - 0x05fc17e2, 0x6421a8e4, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x5c027000, - 0x5c026000, 0x5c023000, 0x05fdf5f6, 0x4d2c0000, - 0x4d340000, 0x5932680a, 0x598c0800, 0x90040586, - 0x05020004, 0x918c1405, 0x918c1c04, 0x0501f00f, - 0x90040584, 0x05020004, 0x918c1403, 0x918c1c02, - 0x0501f00a, 0x90040581, 0x05020004, 0x918c1407, - 0x918c1c06, 0x0501f005, 0x90040582, 0x05020024, - 0x918c1409, 0x918c1c08, 0x41306800, 0x58340000, - 0x80007d40, 0x0500001e, 0x583c000a, 0x81340580, - 0x05020006, 0x403c6800, 0x583c0000, 0x80007d40, - 0x05fe07fa, 0x0501f016, 0x4933c857, 0x483fc857, - 0x583c0000, 0x48006800, 0x49307800, 0x443c1000, - 0x500c0000, 0x803c0580, 0x05020002, 0x44341800, - 0x80000580, 0x4803180b, 0x4803180d, 0x598c0000, - 0x90000583, 0x05000002, 0x64031800, 0x80000580, - 0x5c026800, 0x5c025800, 0x1c01f000, 0x90000541, - 0x05fdf7fc, 0x491bc857, 0x59b400f6, 0x90000538, - 0x05fe07fe, 0x59c80840, 0x90040550, 0x48039040, - 0x59c41008, 0x4c040000, 0x4c080000, 0x82081500, - 0xffffff7f, 0x480b8808, 0x0501fa9a, 0x05020006, - 0x0501fa9e, 0x05000020, 0x48038804, 0x05c5fab6, - 0x0501f03d, 0x64238803, 0x59c40003, 0x90000503, - 0x05fc07fe, 0x8c000502, 0x05020006, 0x0501fa93, - 0x05000015, 0x48038804, 0x05c5faab, 0x0501f032, - 0x0501fa9a, 0x05020007, 0x59c80040, 0x8400056a, - 0x48039040, 0x59c80040, 0x8c00052a, 0x05fe07fe, - 0x59c40005, 0x82000500, 0xc0000000, 0x05000006, - 0x59c400a3, 0x84000540, 0x480388a3, 0x4a038805, - 0xc0000000, 0x05c5fa69, 0x4a03a005, 0x30000000, - 0x59d00006, 0x4a03a005, 0x30000000, 0x6401b006, - 0x59d00005, 0x8c000504, 0x05fe07fe, 0x05fdfe88, - 0x6403a014, 0x600008ec, 0x83180540, 0x60000000, - 0x480008a1, 0x811800dc, 0x59c80840, 0x80040540, - 0x48039040, 0x82000540, 0x00003000, 0x48039040, - 0x59c80040, 0x82000500, 0x00003000, 0x05fe07fd, - 0x05c5fa6e, 0x83180400, 0x00108a14, 0x50000000, - 0x48038804, 0x80000580, 0x4df00000, 0x05f9f840, - 0x5c03e000, 0x5c001000, 0x5c000800, 0x480b8808, - 0x48079040, 0x1c01f000, 0x4803c856, 0x59b400f6, - 0x90000538, 0x05fe07fe, 0x59c80840, 0x90040550, - 0x48039040, 0x59c41008, 0x4c040000, 0x4c080000, - 0x82081500, 0xffffff7f, 0x480b8808, 0x59c40004, - 0x90000503, 0x0502000e, 0x59c40004, 0x9000050c, - 0x05000004, 0x64338804, 0x8c000504, 0x0501f022, - 0x59c80040, 0x8400056e, 0x48039040, 0x59c80040, - 0x8c00052e, 0x05fe07fe, 0x0501f01b, 0x64238803, + 0x5c026000, 0x642378e4, 0x05fdf6a8, 0x84000510, + 0x48026004, 0x05fdf7f6, 0x4d300000, 0x4d2c0000, + 0x4d340000, 0x4da40000, 0x4cd00000, 0x4d240000, + 0x58d400ea, 0x8c000510, 0x05fc07fe, 0x58d660e0, + 0x813261c0, 0x05bc0aec, 0x59300004, 0x8c000520, + 0x0500001e, 0x82000500, 0xfffefeff, 0x48026004, + 0x5932680a, 0x42034800, 0x00111ffd, 0x5932481d, + 0x05011000, 0x4a03c840, 0x00112004, 0x644bc842, + 0x05011000, 0x4a03c840, 0x00112016, 0x4a03c842, + 0x000000ff, 0x05011000, 0x4a03c840, 0x00112115, + 0x4a03c842, 0x000000ff, 0x0501fbe8, 0x5c024800, + 0x5c01a000, 0x5c034800, 0x5c026800, 0x5c025800, + 0x5c026000, 0x1c01f000, 0x84000510, 0x48026004, + 0x5c024800, 0x5c01a000, 0x5c034800, 0x5c026800, + 0x5c025800, 0x5c026000, 0x1c01f000, 0x4d300000, + 0x4d2c0000, 0x4d340000, 0x4cd00000, 0x4d240000, + 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, + 0x4cd80000, 0x0501fbb5, 0x59bc00ea, 0x8c000510, + 0x05fc07fe, 0x59be60e0, 0x813261c0, 0x05bc0ab2, + 0x59300004, 0x8c000520, 0x05000011, 0x82000500, + 0xfffefeff, 0x48026004, 0x5932481d, 0x0505faa2, + 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, + 0x5c032000, 0x5c024800, 0x5c01a000, 0x5c026800, + 0x5c025800, 0x5c026000, 0x1c01f000, 0x84000510, + 0x48026004, 0x5c01b000, 0x5c022800, 0x5c034800, + 0x5c03a000, 0x5c032000, 0x5c024800, 0x5c01a000, + 0x5c026800, 0x5c025800, 0x5c026000, 0x1c01f000, + 0x05bdfa91, 0x4d300000, 0x4d380000, 0x42000000, + 0x00112459, 0x0525fbce, 0x05fdfe47, 0x598e600b, + 0x59c40004, 0x8c000506, 0x05000003, 0x0501f8d1, + 0x64238804, 0x813261c0, 0x05000004, 0x0501fb7a, + 0x60527000, 0x0009f839, 0x6409a8e4, 0x5c027000, + 0x5c026000, 0x05fdf629, 0x4d180000, 0x4d300000, + 0x4d380000, 0x4d900000, 0x4dd00000, 0x4da40000, + 0x4d140000, 0x4cd80000, 0x05fdfe2f, 0x417a3000, + 0x59c40804, 0x83180400, 0x00108ed2, 0x50000000, + 0x80040500, 0x05000017, 0x42000000, 0x0011245a, + 0x0525fbab, 0x0501fb65, 0x59926005, 0x0501f858, + 0x83180400, 0x00108ed2, 0x50000000, 0x48038804, + 0x813261c0, 0x05000007, 0x59300004, 0x8c00050c, + 0x05020002, 0x640e6203, 0x612a7000, 0x0009f839, + 0x59c40004, 0x82000500, 0x00f80000, 0x05000004, + 0x811a3000, 0x91180485, 0x05fc17e2, 0x6421a8e4, + 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, + 0x5c032000, 0x5c027000, 0x5c026000, 0x5c023000, + 0x05fdf5f6, 0x4d2c0000, 0x4d340000, 0x5932680a, + 0x598c0800, 0x90040586, 0x05020004, 0x918c1405, + 0x918c1c04, 0x0501f00f, 0x90040584, 0x05020004, + 0x918c1403, 0x918c1c02, 0x0501f00a, 0x90040581, + 0x05020004, 0x918c1407, 0x918c1c06, 0x0501f005, + 0x90040582, 0x05020024, 0x918c1409, 0x918c1c08, + 0x41306800, 0x58340000, 0x80007d40, 0x0500001e, + 0x583c000a, 0x81340580, 0x05020006, 0x403c6800, + 0x583c0000, 0x80007d40, 0x05fe07fa, 0x0501f016, + 0x4933c857, 0x483fc857, 0x583c0000, 0x48006800, + 0x49307800, 0x443c1000, 0x500c0000, 0x803c0580, + 0x05020002, 0x44341800, 0x80000580, 0x4803180b, + 0x4803180d, 0x598c0000, 0x90000583, 0x05000002, + 0x64031800, 0x80000580, 0x5c026800, 0x5c025800, + 0x1c01f000, 0x90000541, 0x05fdf7fc, 0x491bc857, + 0x59b400f6, 0x90000538, 0x05fe07fe, 0x59c80840, + 0x90040550, 0x48039040, 0x59c41008, 0x4c040000, + 0x4c080000, 0x82081500, 0xffffff7f, 0x480b8808, + 0x0501fa9a, 0x05020006, 0x0501fa9e, 0x05000020, + 0x48038804, 0x05c1fe94, 0x0501f03d, 0x64238803, 0x59c40003, 0x90000503, 0x05fc07fe, 0x8c000502, - 0x05020005, 0x59c40004, 0x64338804, 0x8c000504, - 0x0501f011, 0x59c80040, 0x8400056a, 0x48039040, - 0x59c80040, 0x8c00052a, 0x05fe07fe, 0x59c40005, - 0x82000500, 0xc0000000, 0x05000007, 0x59c400a3, - 0x84000540, 0x480388a3, 0x4a038805, 0xc0000000, - 0x80000580, 0x4a01a8e5, 0x00000800, 0x5c001000, + 0x05020006, 0x0501fa93, 0x05000015, 0x48038804, + 0x05c1fe89, 0x0501f032, 0x0501fa9a, 0x05020007, + 0x59c80040, 0x8400056a, 0x48039040, 0x59c80040, + 0x8c00052a, 0x05fe07fe, 0x59c40005, 0x82000500, + 0xc0000000, 0x05000006, 0x59c400a3, 0x84000540, + 0x480388a3, 0x4a038805, 0xc0000000, 0x05c1fe47, + 0x4a03a005, 0x30000000, 0x59d00006, 0x4a03a005, + 0x30000000, 0x6401b006, 0x59d00005, 0x8c000504, + 0x05fe07fe, 0x05fdfe88, 0x6403a014, 0x600008ec, + 0x83180540, 0x60000000, 0x480008a1, 0x811800dc, + 0x59c80840, 0x80040540, 0x48039040, 0x82000540, + 0x00003000, 0x48039040, 0x59c80040, 0x82000500, + 0x00003000, 0x05fe07fd, 0x05c1fe4c, 0x83180400, + 0x00108ed2, 0x50000000, 0x48038804, 0x80000580, + 0x4df00000, 0x05f5ffe6, 0x5c03e000, 0x5c001000, 0x5c000800, 0x480b8808, 0x48079040, 0x1c01f000, - 0x5c000000, 0x4c000000, 0x4803c857, 0x491bc857, - 0x4933c857, 0x4d900000, 0x4dd00000, 0x4da40000, - 0x4d140000, 0x4cd80000, 0x05fdfd29, 0x4df00000, - 0x0501fa68, 0x59900005, 0x800001c0, 0x05000012, - 0x81300580, 0x05020010, 0x59300004, 0x84000520, - 0x48026004, 0x05fdff54, 0x0502000a, 0x5c03e000, - 0x05fc0d0c, 0x80000580, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x1c01f000, - 0x05fdfc4c, 0x61267000, 0x59300004, 0x84000520, - 0x48026004, 0x8c00050c, 0x000a0800, 0x5c03e000, - 0x05fc0cfc, 0x90000541, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x1c01f000, - 0x4933c857, 0x05fdfd02, 0x4df00000, 0x598c000b, - 0x80026540, 0x0500000f, 0x59300004, 0x84000520, - 0x48026004, 0x05fdff89, 0x05000011, 0x05fdfc4e, - 0x604e7000, 0x59300004, 0x8c00050c, 0x000a0800, - 0x5c03e000, 0x05fc0ce3, 0x90000541, 0x1c01f000, - 0x916c1581, 0x05fc07fb, 0x916c1584, 0x05fc07f9, - 0x42001000, 0x0010510c, 0x05f5fe8b, 0x5c03e000, - 0x05fc0cd8, 0x80000580, 0x1c01f000, 0x4d300000, - 0x4d180000, 0x4d3c0000, 0x05fdfce1, 0x4df00000, - 0x643da8e4, 0x643f78e4, 0x0501fa06, 0x417a3000, - 0x811808c8, 0x82040c00, 0x0000b037, 0x58066005, - 0x813261c0, 0x0500000b, 0x417a7800, 0x05e9f879, - 0x05000007, 0x59300c07, 0x90040583, 0x05000003, - 0x90040586, 0x05020002, 0x600a7800, 0x050dffce, - 0x811a3000, 0x91180485, 0x05fc17ee, 0x61000800, - 0x05c5ffaa, 0x642b78e4, 0x6429a8e4, 0x5c03e000, - 0x05fc0cb4, 0x5c027800, 0x5c023000, 0x5c026000, - 0x1c01f000, 0x4803c856, 0x4d300000, 0x05fdfcbc, - 0x4df00000, 0x59c80840, 0x84040d74, 0x90040550, - 0x48039040, 0x59c41008, 0x4c040000, 0x4c080000, - 0x82081500, 0xffffff7f, 0x480b8808, 0x600c1000, - 0x0501f9d1, 0x598e600b, 0x813261c0, 0x05fe0fa9, - 0x050009d4, 0x4a01a8e5, 0x00000800, 0x0501f809, - 0x5c001000, 0x5c000800, 0x480b8808, 0x48079040, - 0x5c03e000, 0x05fc0c93, 0x5c026000, 0x1c01f000, - 0x4d380000, 0x4d180000, 0x4d300000, 0x4d900000, + 0x4803c856, 0x59b400f6, 0x90000538, 0x05fe07fe, + 0x59c80840, 0x90040550, 0x48039040, 0x59c41008, + 0x4c040000, 0x4c080000, 0x82081500, 0xffffff7f, + 0x480b8808, 0x59c40004, 0x90000503, 0x0502000e, + 0x59c40004, 0x9000050c, 0x05000004, 0x64338804, + 0x8c000504, 0x0501f022, 0x59c80040, 0x8400056e, + 0x48039040, 0x59c80040, 0x8c00052e, 0x05fe07fe, + 0x0501f01b, 0x64238803, 0x59c40003, 0x90000503, + 0x05fc07fe, 0x8c000502, 0x05020005, 0x59c40004, + 0x64338804, 0x8c000504, 0x0501f011, 0x59c80040, + 0x8400056a, 0x48039040, 0x59c80040, 0x8c00052a, + 0x05fe07fe, 0x59c40005, 0x82000500, 0xc0000000, + 0x05000007, 0x59c400a3, 0x84000540, 0x480388a3, + 0x4a038805, 0xc0000000, 0x80000580, 0x4a01a8e5, + 0x00000800, 0x5c001000, 0x5c000800, 0x480b8808, + 0x48079040, 0x1c01f000, 0x5c000000, 0x4c000000, + 0x4803c857, 0x491bc857, 0x4933c857, 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, - 0x417a3000, 0x05f5ff5e, 0x811a3000, 0x91180585, - 0x05fe07fd, 0x0501f9ab, 0x0502000a, 0x5c01b000, - 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, - 0x5c026000, 0x5c023000, 0x5c027000, 0x1c01f000, - 0x0501f9c8, 0x59926005, 0x4933c857, 0x05fdfeba, - 0x813261c0, 0x05fc07f2, 0x612a7000, 0x640e6203, - 0x0009f800, 0x05fdf7ee, 0x4d300000, 0x4d180000, - 0x4d900000, 0x05fdfc7a, 0x60001000, 0x598c0800, - 0x90040585, 0x05000998, 0x417a3000, 0x811b20c8, - 0x83932400, 0x0000b037, 0x59900002, 0x90000581, - 0x0502000a, 0x60100800, 0x59926005, 0x59300013, - 0x82000500, 0xfff00000, 0x80000540, 0x05000002, - 0x60380800, 0x05f5ff0d, 0x811a3000, 0x91180485, - 0x05fc17ef, 0x59c81040, 0x84081534, 0x480b9040, - 0x05fdfc50, 0x5c032000, 0x5c023000, 0x5c026000, - 0x1c01f000, 0x4933c857, 0x4d900000, 0x4dd00000, - 0x4da40000, 0x4d140000, 0x4cd80000, 0x4d380000, - 0x05fdfc53, 0x4df00000, 0x59300004, 0x8c00053e, - 0x05020005, 0x8c000520, 0x0500001d, 0x05fdfb71, - 0x0501f01b, 0x598c000b, 0x81300580, 0x0500000e, - 0x0511f864, 0x05020020, 0x0501f928, 0x0500001e, - 0x48038804, 0x0501f983, 0x05c5f93f, 0x05fdfb79, - 0x61267000, 0x59300004, 0x8c00050c, 0x0502000b, - 0x0501f00b, 0x59c40004, 0x8c000504, 0x05000012, - 0x64138804, 0x05fdfb8c, 0x604e7000, 0x59300004, - 0x8c00050c, 0x05000002, 0x0009f800, 0x5c03e000, - 0x05fc0c20, 0x5c027000, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x80000580, - 0x1c01f000, 0x5c03e000, 0x05fc0c16, 0x5c027000, + 0x05fdfd29, 0x4df00000, 0x0501fa68, 0x59900005, + 0x800001c0, 0x05000012, 0x81300580, 0x05020010, + 0x59300004, 0x84000520, 0x48026004, 0x05fdff54, + 0x0502000a, 0x5c03e000, 0x05fc0d0c, 0x80000580, + 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, + 0x5c032000, 0x1c01f000, 0x05fdfc4c, 0x61267000, + 0x59300004, 0x84000520, 0x48026004, 0x8c00050c, + 0x000a0839, 0x5c03e000, 0x05fc0cfc, 0x90000541, 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, - 0x5c032000, 0x90000541, 0x1c01f000, 0x59300407, - 0x90000583, 0x05020007, 0x0511fbcf, 0x05000005, - 0x59301009, 0x5808040c, 0x84000550, 0x4800140c, - 0x1c01f000, 0x4a01a8e5, 0x00000800, 0x05fdfc10, - 0x59c400af, 0x800001c0, 0x05020003, 0x05fdfbfd, - 0x05c9f10a, 0x598c000d, 0x90001482, 0x05021006, - 0x80000000, 0x4803180d, 0x80000580, 0x05f5fea4, - 0x0500000e, 0x05fdfeff, 0x0502000c, 0x05fdffe4, - 0x42000000, 0x0010e46d, 0x0521fec6, 0x05fdfdf8, - 0x05000006, 0x0501f936, 0x4d380000, 0x60527000, - 0x0009f800, 0x5c027000, 0x05fdfbe6, 0x05c9f0f3, + 0x5c032000, 0x1c01f000, 0x4933c857, 0x05fdfd02, + 0x4df00000, 0x598c000b, 0x80026540, 0x0500000f, + 0x59300004, 0x84000520, 0x48026004, 0x05fdff89, + 0x05000011, 0x05fdfc4e, 0x604e7000, 0x59300004, + 0x8c00050c, 0x000a0839, 0x5c03e000, 0x05fc0ce3, + 0x90000541, 0x1c01f000, 0x916c1581, 0x05fc07fb, + 0x916c1584, 0x05fc07f9, 0x42001000, 0x00105303, + 0x05f5fde7, 0x5c03e000, 0x05fc0cd8, 0x80000580, + 0x1c01f000, 0x4d300000, 0x4d180000, 0x4d3c0000, + 0x05fdfce1, 0x4df00000, 0x643da8e4, 0x643f78e4, + 0x0501fa06, 0x417a3000, 0x811808c8, 0x82040c00, + 0x0000b037, 0x58066005, 0x813261c0, 0x0500000b, + 0x417a7800, 0x05e5fe2d, 0x05000007, 0x59300c07, + 0x90040583, 0x05000003, 0x90040586, 0x05020002, + 0x600a7800, 0x0511f882, 0x811a3000, 0x91180485, + 0x05fc17ee, 0x61000800, 0x05c5fb5d, 0x642b78e4, + 0x6429a8e4, 0x5c03e000, 0x05fc0cb4, 0x5c027800, + 0x5c023000, 0x5c026000, 0x1c01f000, 0x4803c856, + 0x4d300000, 0x05fdfcbc, 0x4df00000, 0x59c80840, + 0x84040d74, 0x90040550, 0x48039040, 0x59c41008, + 0x4c040000, 0x4c080000, 0x82081500, 0xffffff7f, + 0x480b8808, 0x600c1000, 0x0501f9d1, 0x598e600b, + 0x813261c0, 0x05fe0fa9, 0x050009d4, 0x4a01a8e5, + 0x00000800, 0x0501f809, 0x5c001000, 0x5c000800, + 0x480b8808, 0x48079040, 0x5c03e000, 0x05fc0c93, + 0x5c026000, 0x1c01f000, 0x4d380000, 0x4d180000, + 0x4d300000, 0x4d900000, 0x4dd00000, 0x4da40000, + 0x4d140000, 0x4cd80000, 0x417a3000, 0x05f5ff04, + 0x811a3000, 0x91180585, 0x05fe07fd, 0x0501f9ab, + 0x0502000a, 0x5c01b000, 0x5c022800, 0x5c034800, + 0x5c03a000, 0x5c032000, 0x5c026000, 0x5c023000, + 0x5c027000, 0x1c01f000, 0x0501f9c8, 0x59926005, + 0x4933c857, 0x05fdfeba, 0x813261c0, 0x05fc07f2, + 0x612a7000, 0x640e6203, 0x0009f839, 0x05fdf7ee, + 0x4d300000, 0x4d180000, 0x4d900000, 0x05fdfc7a, + 0x60001000, 0x598c0800, 0x90040585, 0x05000998, + 0x417a3000, 0x811b20c8, 0x83932400, 0x0000b037, + 0x59900002, 0x90000581, 0x0502000a, 0x60100800, + 0x59926005, 0x59300013, 0x82000500, 0xfff00000, + 0x80000540, 0x05000002, 0x60380800, 0x05f5feb3, + 0x811a3000, 0x91180485, 0x05fc17ef, 0x59c81040, + 0x84081534, 0x480b9040, 0x05fdfc50, 0x5c032000, + 0x5c023000, 0x5c026000, 0x1c01f000, 0x4933c857, 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, - 0x4cd80000, 0x4d300000, 0x05f5feb5, 0x05fdfbec, - 0x59c400af, 0x800001c0, 0x05000022, 0x0501f929, - 0x59926005, 0x4933c857, 0x59300004, 0x8c000516, - 0x05000009, 0x05fdfeaf, 0x0502001a, 0x05fdfb19, - 0x05fdfbd0, 0x42000800, 0x80000804, 0x0005fe9d, - 0x0501f014, 0x60c018ea, 0x0501f8e9, 0x05020003, - 0x05f5fe7d, 0x0501f00f, 0x05fdfea2, 0x0502000d, - 0x05fdffb7, 0x42000000, 0x0010e46e, 0x0521fe99, - 0x59300004, 0x8c00050c, 0x05020002, 0x640e6203, - 0x4d380000, 0x612a7000, 0x0009f800, 0x5c027000, - 0x05fdfbb8, 0x5c026000, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x05c9f0bf, - 0x4c600000, 0x4d900000, 0x4dd00000, 0x4da40000, - 0x4d140000, 0x4cd80000, 0x4d300000, 0x4d2c0000, - 0x05fdfbb7, 0x0501f8f7, 0x59926005, 0x813261c0, - 0x05000040, 0x05e9ff4d, 0x05020005, 0x4178c000, - 0x0505fa10, 0x05000002, 0x6004c000, 0x05e9ff47, - 0x05020005, 0x8060c1c0, 0x05000003, 0x0505fa30, - 0x0501f034, 0x05f5fe5f, 0x05020032, 0x4933c857, - 0x0501f892, 0x05020015, 0x05f5fe69, 0x813261c0, - 0x0500002c, 0x59325809, 0x812e59c0, 0x05bc0c63, - 0x05e9ff36, 0x0502001c, 0x59c40093, 0x4803c857, - 0x800001c0, 0x05020009, 0x592c020c, 0x84000550, - 0x48025a0c, 0x05edf818, 0x0502001e, 0x592c020c, - 0x84000510, 0x48025a0c, 0x05f5fe33, 0x0501f019, - 0x42000000, 0x0010e46e, 0x0521fe52, 0x05fdfdbe, - 0x592c020c, 0x84000550, 0x48025a0c, 0x4d380000, - 0x612a7000, 0x640e6203, 0x0009f800, 0x5c027000, - 0x0501f00c, 0x59901007, 0x800811c0, 0x05fe07f1, - 0x59c408af, 0x82040480, 0x000003e8, 0x05fe17ed, - 0x80081000, 0x480b2007, 0x05f5fe1b, 0x05e1ff4c, - 0x5c025800, 0x5c026000, 0x5c01b000, 0x5c022800, - 0x5c034800, 0x5c03a000, 0x5c032000, 0x5c00c000, - 0x05fdf35c, 0x4d300000, 0x4d2c0000, 0x05fdfb68, - 0x598e600b, 0x4933c857, 0x813261c0, 0x0500003e, - 0x59c41004, 0x480bc857, 0x8c080500, 0x05000007, - 0x05e9fefa, 0x05020012, 0x05e9ffe3, 0x05020036, - 0x05f5fdfb, 0x0501f034, 0x82080500, 0x000001fe, - 0x05fe07fc, 0x59c8010b, 0x4803c857, 0x8c000500, - 0x05fc07f8, 0x42000000, 0x0010e4b7, 0x0521fe19, - 0x05fdfe4c, 0x05000877, 0x0501f027, 0x598c000d, - 0x80000540, 0x0502000e, 0x59c408af, 0x82040480, - 0x000003e8, 0x0502100a, 0x598c080d, 0x80040800, - 0x4807180d, 0x05f5fde2, 0x42000000, 0x0010e3a7, - 0x0521fe08, 0x05e1ff16, 0x0501f017, 0x42000000, - 0x0010e46d, 0x0521fe03, 0x05fdfdc8, 0x813261c0, - 0x05020003, 0x0501f85f, 0x0501f00f, 0x59300407, - 0x90000583, 0x05020007, 0x59325809, 0x812e59c0, - 0x05000004, 0x592c020c, 0x84000550, 0x48025a0c, - 0x0501f867, 0x4d380000, 0x60527000, 0x0009f800, - 0x5c027000, 0x5c025800, 0x5c026000, 0x05fdf315, - 0x59c40804, 0x83180400, 0x00108a0a, 0x50000000, + 0x4cd80000, 0x4d380000, 0x05fdfc53, 0x4df00000, + 0x59300004, 0x8c00053e, 0x05020005, 0x8c000520, + 0x0500001d, 0x05fdfb71, 0x0501f01b, 0x598c000b, + 0x81300580, 0x0500000e, 0x0511f920, 0x05020020, + 0x0501f928, 0x0500001e, 0x48038804, 0x0501f983, + 0x05c1fd1d, 0x05fdfb79, 0x61267000, 0x59300004, + 0x8c00050c, 0x0502000b, 0x0501f00b, 0x59c40004, + 0x8c000504, 0x05000012, 0x64138804, 0x05fdfb8c, + 0x604e7000, 0x59300004, 0x8c00050c, 0x05000002, + 0x0009f839, 0x5c03e000, 0x05fc0c20, 0x5c027000, + 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, + 0x5c032000, 0x80000580, 0x1c01f000, 0x5c03e000, + 0x05fc0c16, 0x5c027000, 0x5c01b000, 0x5c022800, + 0x5c034800, 0x5c03a000, 0x5c032000, 0x90000541, + 0x1c01f000, 0x59300407, 0x90000583, 0x05020007, + 0x0511fc9a, 0x05000005, 0x59301009, 0x5808040c, + 0x84000550, 0x4800140c, 0x1c01f000, 0x4a01a8e5, + 0x00000800, 0x05fdfc10, 0x59c400af, 0x800001c0, + 0x05020003, 0x05fdfbfd, 0x05c5f4cc, 0x598c000d, + 0x90001482, 0x05021006, 0x80000000, 0x4803180d, + 0x80000580, 0x05f5fe4a, 0x0500000e, 0x05fdfeff, + 0x0502000c, 0x05fdffe4, 0x42000000, 0x00112411, + 0x0525f983, 0x05fdfdf8, 0x05000006, 0x0501f936, + 0x4d380000, 0x60527000, 0x0009f839, 0x5c027000, + 0x05fdfbe6, 0x05c5f4b5, 0x4d900000, 0x4dd00000, + 0x4da40000, 0x4d140000, 0x4cd80000, 0x4d300000, + 0x05f5fe5b, 0x05fdfbec, 0x59c400af, 0x800001c0, + 0x05000022, 0x0501f929, 0x59926005, 0x4933c857, + 0x59300004, 0x8c000516, 0x05000009, 0x05fdfeaf, + 0x0502001a, 0x05fdfb19, 0x05fdfbd0, 0x42000800, + 0x80000804, 0x0005fed4, 0x0501f014, 0x60c018ea, + 0x0501f8e9, 0x05020003, 0x05f5fe23, 0x0501f00f, + 0x05fdfea2, 0x0502000d, 0x05fdffb7, 0x42000000, + 0x00112412, 0x0525f956, 0x59300004, 0x8c00050c, + 0x05020002, 0x640e6203, 0x4d380000, 0x612a7000, + 0x0009f839, 0x5c027000, 0x05fdfbb8, 0x5c026000, + 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, + 0x5c032000, 0x05c5f481, 0x4c600000, 0x4d900000, + 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, + 0x4d300000, 0x4d2c0000, 0x05fdfbb7, 0x0501f8f7, + 0x59926005, 0x813261c0, 0x05000040, 0x05e9fd79, + 0x05020005, 0x4178c000, 0x0505fa46, 0x05000002, + 0x6004c000, 0x05e9fd73, 0x05020005, 0x8060c1c0, + 0x05000003, 0x0505fa66, 0x0501f034, 0x05f5fe05, + 0x05020032, 0x4933c857, 0x0501f892, 0x05020015, + 0x05f5fe0f, 0x813261c0, 0x0500002c, 0x59325809, + 0x812e59c0, 0x05b80fe0, 0x05e9fd62, 0x0502001c, + 0x59c40093, 0x4803c857, 0x800001c0, 0x05020009, + 0x592c020c, 0x84000550, 0x48025a0c, 0x05e9fe44, + 0x0502001e, 0x592c020c, 0x84000510, 0x48025a0c, + 0x05f5fdd9, 0x0501f019, 0x42000000, 0x00112412, + 0x0525f90f, 0x05fdfdbe, 0x592c020c, 0x84000550, + 0x48025a0c, 0x4d380000, 0x612a7000, 0x640e6203, + 0x0009f839, 0x5c027000, 0x0501f00c, 0x59901007, + 0x800811c0, 0x05fe07f1, 0x59c408af, 0x82040480, + 0x000003e8, 0x05fe17ed, 0x80081000, 0x480b2007, + 0x05f5fdc1, 0x05e1fc85, 0x5c025800, 0x5c026000, + 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, + 0x5c032000, 0x5c00c000, 0x05fdf35c, 0x4d300000, + 0x4d2c0000, 0x05fdfb68, 0x598e600b, 0x4933c857, + 0x813261c0, 0x0500003e, 0x59c41004, 0x480bc857, + 0x8c080500, 0x05000007, 0x05e9fd26, 0x05020012, + 0x05e9fe0f, 0x05020036, 0x05f5fda1, 0x0501f034, + 0x82080500, 0x000001fe, 0x05fe07fc, 0x59c8010b, + 0x4803c857, 0x8c000500, 0x05fc07f8, 0x42000000, + 0x0011245b, 0x0525f8d6, 0x05fdfe4c, 0x05000877, + 0x0501f027, 0x598c000d, 0x80000540, 0x0502000e, + 0x59c408af, 0x82040480, 0x000003e8, 0x0502100a, + 0x598c080d, 0x80040800, 0x4807180d, 0x05f5fd88, + 0x42000000, 0x00112348, 0x0525f8c5, 0x05e1fc4f, + 0x0501f017, 0x42000000, 0x00112411, 0x0525f8c0, + 0x05fdfdc8, 0x813261c0, 0x05020003, 0x0501f85f, + 0x0501f00f, 0x59300407, 0x90000583, 0x05020007, + 0x59325809, 0x812e59c0, 0x05000004, 0x592c020c, + 0x84000550, 0x48025a0c, 0x0501f867, 0x4d380000, + 0x60527000, 0x0009f839, 0x5c027000, 0x5c025800, + 0x5c026000, 0x05fdf315, 0x59c40804, 0x83180400, + 0x00108ec8, 0x50000000, 0x80040500, 0x1c01f000, + 0x59c40804, 0x83180400, 0x00108ecd, 0x50000000, 0x80040500, 0x1c01f000, 0x59c40804, 0x83180400, - 0x00108a0f, 0x50000000, 0x80040500, 0x1c01f000, - 0x59c40804, 0x83180400, 0x00108a19, 0x50000000, - 0x80040500, 0x1c01f000, 0x59c80840, 0x82040d00, - 0x000e0000, 0x83180400, 0x00108a1e, 0x50000000, - 0x80040580, 0x1c01f000, 0x00000210, 0x00000420, - 0x00000840, 0x00001080, 0x00002100, 0x00004000, - 0x00008000, 0x00010000, 0x00020000, 0x00040000, - 0x00080000, 0x00100000, 0x00200000, 0x00400000, - 0x00800000, 0x00084000, 0x00108000, 0x00210000, - 0x00420000, 0x00840000, 0x00000000, 0x00020000, - 0x00040000, 0x00060000, 0x00080000, 0x59900007, - 0x800c0c80, 0x05021003, 0x90000541, 0x0501f004, - 0x80000000, 0x48032007, 0x80000580, 0x1c01f000, - 0x417a3000, 0x05fdffd5, 0x05000005, 0x811a3000, - 0x91180585, 0x05fe07fc, 0x1c01f000, 0x81780080, - 0x1c01f000, 0x480bc857, 0x05fdfadd, 0x4df00000, - 0x480b1800, 0x5c03e000, 0x05fc0aca, 0x1c01f000, - 0x4803c856, 0x05fdfad6, 0x4df00000, 0x497b180b, - 0x497b1801, 0x497b180c, 0x497b180d, 0x497b180e, - 0x598c0000, 0x90000583, 0x05000006, 0x916c0582, - 0x05020003, 0x64171800, 0x0501f002, 0x64031800, - 0x5c03e000, 0x05fc0ab7, 0x1c01f000, 0x59300004, - 0x8c00050c, 0x05020002, 0x64066203, 0x1c01f000, - 0x91180485, 0x05be1b85, 0x491bc857, 0x811b20c8, - 0x83932400, 0x0000b037, 0x8119b0c8, 0x82d9b400, - 0x0000bf32, 0x811ba0ca, 0x83d3a400, 0x00007600, - 0x83180400, 0x00108a67, 0x50034800, 0x811a28c2, - 0x83162c00, 0x00006100, 0x1c01f000, 0x0010e27c, - 0x0010e295, 0x0010e2ae, 0x0010e2c7, 0x0010e2e0, - 0x4933c857, 0x59300407, 0x90000c92, 0x05021015, - 0x05011000, 0x0c01f001, 0x00108a84, 0x00108b2a, - 0x00108e69, 0x00108ecb, 0x00108b2a, 0x00108e69, - 0x00108ecb, 0x00108a84, 0x00108b2a, 0x00108a84, - 0x00108a84, 0x00108a84, 0x00108a84, 0x00108a84, - 0x00108a84, 0x00108a84, 0x00108a88, 0x00108a88, - 0x4803c857, 0x05fdfa8e, 0x05fdf9e3, 0x05fdf27d, - 0x42001000, 0x0010e387, 0x50081000, 0x4930100c, - 0x58080002, 0x82000580, 0x00000100, 0x0502003d, - 0x59325809, 0x812e59c0, 0x05bc0b48, 0x492fc856, - 0x5932680a, 0x83340580, 0x00110210, 0x05000025, - 0x592c040f, 0x82000500, 0x0000e000, 0x05000003, - 0x0501fbc6, 0x0501f002, 0x0501fbb6, 0x592c040d, - 0x82000500, 0x000000ff, 0x90000583, 0x0500082a, - 0x592c0011, 0x90000503, 0x05000006, 0x90000583, - 0x80000000, 0x58d00802, 0x80040540, 0x4801a002, - 0x42001000, 0x0010e387, 0x50081000, 0x4930100b, - 0x492c100a, 0x90d00406, 0x48001003, 0x592c0004, - 0x48001006, 0x592c0011, 0x48001005, 0x592c0012, - 0x48001007, 0x592c0013, 0x48001008, 0x0001f021, - 0x592c080e, 0x48066802, 0x82040500, 0x00ffff00, - 0x05000007, 0x497a6a12, 0x59a8103d, 0x82081500, - 0x00ffff00, 0x80080580, 0x05fe07d2, 0x82040d00, - 0x000000ff, 0x800408d0, 0x48066a12, 0x05fdf7cd, - 0x1c01f000, 0x59a80249, 0x8c000508, 0x0500000c, - 0x59a8004d, 0x82000500, 0x0000ffff, 0x59c40880, - 0x80040d80, 0x05000006, 0x497b8880, 0x4c000000, - 0x05c9f837, 0x5c000000, 0x48038880, 0x1c01f000, - 0x4d2c0000, 0x4d300000, 0x4c580000, 0x4c540000, - 0x4c500000, 0x5832580a, 0x812e59c0, 0x05bc0af7, - 0x58300002, 0x82000580, 0x00000100, 0x05020021, - 0x5830000b, 0x5832600c, 0x81300d80, 0x05020011, - 0x0501f82d, 0x05020015, 0x592c0811, 0x90040c03, - 0x80040904, 0x4004b000, 0x4200a000, 0x0010e06a, - 0x0501fefa, 0x05000002, 0x9050a402, 0x4050a800, - 0x0521fdea, 0x600011b8, 0x0501fe7f, 0x0501f007, - 0x4803c857, 0x4933c857, 0x813261c0, 0x05000003, - 0x0501f819, 0x05fc0f87, 0x5c00a000, 0x5c00a800, - 0x5c00b000, 0x5c026000, 0x5c025800, 0x1c01f000, - 0x5830000b, 0x5832600c, 0x4a006002, 0x00000100, - 0x4803c857, 0x4933c857, 0x81300d80, 0x05fe07ed, - 0x0501f809, 0x05fe07f1, 0x4803c857, 0x05f9fea3, - 0x05be0ac6, 0x640a5a0a, 0x0001fb82, 0x0505f8b9, - 0x05fdf7ea, 0x05fdf9fa, 0x4df00000, 0x598c000b, - 0x81300580, 0x05020008, 0x598c0003, 0x81300580, - 0x05020005, 0x5c03e000, 0x05fc09e2, 0x80000580, - 0x1c01f000, 0x4803c857, 0x5c03e000, 0x05fc09dd, - 0x90000541, 0x1c01f000, 0x59300403, 0xb0000ca0, - 0x05be1aae, 0x83340d80, 0x00110210, 0x0502000a, - 0x5930082a, 0x48066802, 0x82041500, 0x00ffff00, - 0x05020004, 0x800408d0, 0x48066a12, 0x0501f002, - 0x497a6a12, 0x4803c857, 0x0c01f001, 0x00108c83, - 0x00108c9c, 0x00108cab, 0x00108dd2, 0x00108d99, - 0x00108d9d, 0x00108da9, 0x00108dbf, 0x00108daf, - 0x00108dbf, 0x00108df7, 0x00108dbf, 0x00108e36, - 0x00108dbf, 0x00108e41, 0x00108dbf, 0x00108daf, - 0x00108dbf, 0x00108e45, 0x00108b9b, 0x00108b9b, - 0x00108b9b, 0x00108b9b, 0x00108b9b, 0x00108b9b, - 0x00108b9b, 0x00108b9b, 0x00108b9b, 0x00108b9b, - 0x00108b9b, 0x00108ee4, 0x00108ef9, 0x00108f01, - 0x00108b9b, 0x00108f18, 0x00108da9, 0x00108b9b, - 0x00108da9, 0x00108dbf, 0x00108b9b, 0x00108cab, - 0x00108dd2, 0x00108b9b, 0x00108f60, 0x00108dbf, - 0x00108b9b, 0x00108f6e, 0x00108dbf, 0x00108b9b, - 0x00108daf, 0x00108c76, 0x00108b9c, 0x00108b9b, - 0x00108f8a, 0x00108fc0, 0x00109046, 0x00108b9b, - 0x00109054, 0x00108da7, 0x00109049, 0x00108b9b, - 0x00108f22, 0x00109089, 0x00108b9b, 0x00108b9b, - 0x00108b9b, 0x00108b9b, 0x00108baf, 0x00108c10, - 0x00108c1a, 0x00108b9b, 0x00108b9b, 0x00108b9b, - 0x00108c4c, 0x00108c54, 0x00108b9b, 0x00108b9b, - 0x00108bc0, 0x00108bea, 0x001090be, 0x001090f3, - 0x00109114, 0x00108b9b, 0x00108b9b, 0x00108b9b, - 0x001090e9, 0x0010906b, 0x00108f8a, 0x001092f9, - 0x00108b9b, 0x0010933a, 0x001092ef, 0x00109347, - 0x00108b9b, 0x00109362, 0x001092f5, 0x05bdfa3f, - 0x0501fab8, 0x59325809, 0x592c000d, 0x4801a006, - 0x592c000e, 0x4801a007, 0x592c000f, 0x4801a008, - 0x592c0010, 0x4801a009, 0x592c0011, 0x4801a00a, - 0x4979a00b, 0x592c080d, 0x82040d00, 0x00000fff, - 0x80040904, 0x600011b8, 0x0501f5cb, 0x4a026202, - 0x0000ffff, 0x0501faa3, 0x4d2c0000, 0x4a01a006, - 0x05000000, 0x59325809, 0x592c000d, 0x4801a007, - 0x592c000e, 0x4801a008, 0x592c000f, 0x4801a009, - 0x5c025800, 0x60100800, 0x600011b8, 0x0501f5ba, - 0x4c580000, 0x4c500000, 0x4c540000, 0x4d2c0000, - 0x0501fa90, 0x5930040d, 0x90000503, 0x05000006, - 0x90000583, 0x80000000, 0x58d00802, 0x80040540, - 0x4801a002, 0x59325809, 0x4200a800, 0x0010e06a, - 0x592cb209, 0x9058b403, 0x8058b104, 0x912ca40a, - 0x0521fcd3, 0x40580000, 0x8054ac00, 0x592c0001, - 0x80000540, 0x05000003, 0x40025800, 0x05fdf7f5, - 0x4200a000, 0x0010e06a, 0x4050a800, 0x5930b40d, - 0x9058b403, 0x8058b104, 0x40580800, 0x0521fcff, - 0x600011b8, 0x5c025800, 0x5c00a800, 0x5c00a000, - 0x5c00b000, 0x0501f590, 0x4c580000, 0x4c500000, - 0x4c540000, 0x4d2c0000, 0x42034800, 0x0010e063, - 0x0501fa72, 0x59325809, 0x592c0805, 0x4807c857, - 0x40041000, 0x80040904, 0x90081503, 0x05000007, - 0x80040800, 0x90081583, 0x80081000, 0x58d00002, - 0x80080540, 0x4801a002, 0x4a025809, 0x02000000, - 0x90d0ac06, 0x592cb011, 0x912ca409, 0x0521fca4, - 0x40580000, 0x8054ac00, 0x592e5801, 0x41780000, - 0x812e5d40, 0x05fe07f8, 0x600011b8, 0x5c025800, - 0x5c00a800, 0x5c00a000, 0x5c00b000, 0x0501f56a, - 0x0501fa44, 0x4a01a006, 0x78000000, 0x5930001e, - 0x840001c0, 0x4801a407, 0x4979a207, 0x60080800, - 0x600011b8, 0x0501f560, 0x4c580000, 0x4c540000, - 0x4c500000, 0x0501fa45, 0x4a01a006, 0x02000000, - 0x5932481d, 0x59240001, 0x4801a008, 0x59240002, - 0x4801a009, 0x59240003, 0x4801a00a, 0x59240004, - 0x4801a00b, 0x5930001e, 0x82000d80, 0x0000e000, - 0x0500000e, 0x82000d80, 0x0000df00, 0x05000004, - 0x6441a407, 0x60180800, 0x0501f015, 0x42001800, - 0x0010dd46, 0x05bdfceb, 0x600001be, 0x4200a000, - 0x0010dd46, 0x0501f007, 0x42001800, 0x0010dd53, - 0x05bdfce4, 0x600001c0, 0x4200a000, 0x0010dd53, - 0x90000550, 0x4801a407, 0x64d1a207, 0x6034b000, - 0x90d0ac0c, 0x0521fc62, 0x604c0800, 0x600011b8, - 0x5c00a000, 0x5c00a800, 0x5c00b000, 0x0501f52e, - 0x0501fa08, 0x4a01a006, 0x63000028, 0x5930001e, - 0x4801a007, 0x60080800, 0x600011b8, 0x0501f526, - 0x0501fa0e, 0x41780000, 0x41780800, 0x42002000, - 0x00080000, 0x0c01f80e, 0x80000000, 0x80040800, - 0x60301000, 0x82080540, 0x02000000, 0x4801a006, - 0x800408e0, 0x5930001e, 0x80040540, 0x4801a007, - 0x80080904, 0x600011b8, 0x0501f513, 0x00108c6c, - 0x00108c6e, 0x00108c70, 0x00108c72, 0x00108c74, - 0x4811a008, 0x1c01f000, 0x4811a009, 0x1c01f000, - 0x4811a00a, 0x1c01f000, 0x4811a00b, 0x1c01f000, - 0x4811a00c, 0x1c01f000, 0x4a02600a, 0x00110210, - 0x59a8003d, 0x82000500, 0x000000ff, 0x800000d0, - 0x42026800, 0x00110210, 0x48026a12, 0x0501fa3c, - 0x41780800, 0x600010b8, 0x0501f4f7, 0x0501f9d1, - 0x4a01a006, 0x52000000, 0x4979a007, 0x5932481d, - 0x59240400, 0x90000503, 0x05000005, 0x59240400, - 0x80000110, 0x05c5fe55, 0x4805a007, 0x59240001, - 0x4801a008, 0x59240002, 0x4801a009, 0x59240003, - 0x4801a00a, 0x59240004, 0x4801a00b, 0x59240005, - 0x4801a00c, 0x601c0800, 0x600011b8, 0x0501f4de, - 0x4a026202, 0x0000ffff, 0x0501f9b6, 0x4a01a006, - 0x05000000, 0x5932481d, 0x59240005, 0x4801a007, - 0x59240001, 0x59240802, 0x4801a008, 0x4805a009, - 0x60100800, 0x600011b8, 0x0501f4cf, 0x4a026202, - 0x0000ffff, 0x0501f9a7, 0x4d3c0000, 0x417a7800, - 0x05e5fc43, 0x5c027800, 0x4a01a006, 0x03000000, - 0x59340403, 0x82000580, 0x000007fe, 0x0502008e, - 0x4a01a006, 0x04000000, 0x59a80249, 0x8c000506, - 0x05000004, 0x5930081d, 0x58040408, 0x4801a001, - 0x5934000a, 0x84000500, 0x4802680a, 0x59a80249, - 0x8c000508, 0x05000010, 0x59a8004d, 0x4801a007, - 0x59a8004e, 0x82000500, 0x07deffff, 0x599c0818, - 0x8c040516, 0x05000002, 0x8400056a, 0x4801a008, - 0x4a01a009, 0x00002710, 0x59a80050, 0x4801a00a, - 0x0501f046, 0x59a8004d, 0x59a81249, 0x8c080506, - 0x05000003, 0x82000500, 0xffff0000, 0x4801a007, - 0x05e9fbd2, 0x0502000e, 0x59300c03, 0xb0041591, - 0x0500000b, 0x59a80ccc, 0x8c04050a, 0x05020008, - 0x497b8880, 0x82000500, 0x0000ffff, 0x4c000000, - 0x05c5fe27, 0x5c000000, 0x48038880, 0x59a8004e, - 0x05e9fbc2, 0x05020006, 0x82000500, 0xb7ffffff, - 0x82000540, 0x80000000, 0x0501f003, 0x82000500, - 0x3fffffff, 0x599c0818, 0x8c040516, 0x05000002, - 0x8400056a, 0x05ddfe1a, 0x05000008, 0x59a80ccc, - 0x8c040506, 0x05020005, 0x59a80a49, 0x8c080506, - 0x05020002, 0x8400057c, 0x8d0c0510, 0x05000014, - 0x59300c03, 0xb0041591, 0x05000011, 0x900415b1, - 0x0500000f, 0x4c580000, 0x4c500000, 0x4c540000, - 0x6010b000, 0x4200a000, 0x0010e50c, 0x90d0ac1f, - 0x4c000000, 0x0521fb96, 0x5c000000, 0x5c00a800, - 0x5c00a000, 0x5c00b000, 0x8400057a, 0x4801a008, - 0x4979a009, 0x4979a00a, 0x59240001, 0x59240802, - 0x4801a00b, 0x4805a00c, 0x59240003, 0x59240804, - 0x4801a00d, 0x4805a00e, 0x4979a00f, 0x4979a010, - 0x4979a011, 0x4979a012, 0x599c0018, 0x8c000510, - 0x05000011, 0x59a80006, 0x8c00050a, 0x05000004, - 0x59a80249, 0x8c000508, 0x0502000b, 0x59a80051, - 0x84000576, 0x4801a013, 0x59a80052, 0x4801a014, - 0x59a80053, 0x4801a015, 0x59a80054, 0x4801a016, - 0x0501f005, 0x4979a013, 0x4979a014, 0x4979a015, - 0x4979a016, 0x59a80055, 0x84000576, 0x4801a017, - 0x59a80056, 0x4801a018, 0x4979a019, 0x4979a01a, - 0x0501f052, 0x05fdfd88, 0x59a8004d, 0x4801a007, - 0x4c640000, 0x4d2c0000, 0x59a8c84e, 0x050dff7e, - 0x0500000d, 0x0511fe00, 0x0502000b, 0x592c020b, - 0x8c00050e, 0x05000008, 0x8264cd00, 0x0000ffff, - 0x592c000d, 0x82000500, 0xffff0000, 0x8064cd40, - 0x0501f005, 0x59a80a49, 0x90040d30, 0x05000002, - 0x8464cd36, 0x4865a008, 0x5c025800, 0x5c00c800, - 0x59a8004f, 0x4801a009, 0x59a80050, 0x4801a00a, - 0x59240001, 0x59240802, 0x4801a00b, 0x4805a00c, - 0x59240003, 0x59240804, 0x4801a00d, 0x4805a00e, - 0x4979a00f, 0x4979a010, 0x4979a011, 0x4979a012, - 0x59340200, 0x8c000508, 0x05000005, 0x59a80051, - 0x8400057e, 0x48035051, 0x0501f00b, 0x599c0018, + 0x00108ed7, 0x50000000, 0x80040500, 0x1c01f000, + 0x59c80840, 0x82040d00, 0x000e0000, 0x83180400, + 0x00108edc, 0x50000000, 0x80040580, 0x1c01f000, + 0x00000210, 0x00000420, 0x00000840, 0x00001080, + 0x00002100, 0x00004000, 0x00008000, 0x00010000, + 0x00020000, 0x00040000, 0x00080000, 0x00100000, + 0x00200000, 0x00400000, 0x00800000, 0x00084000, + 0x00108000, 0x00210000, 0x00420000, 0x00840000, + 0x00000000, 0x00020000, 0x00040000, 0x00060000, + 0x00080000, 0x59900007, 0x800c0c80, 0x05021003, + 0x90000541, 0x0501f004, 0x80000000, 0x48032007, + 0x80000580, 0x1c01f000, 0x417a3000, 0x05fdffd5, + 0x05000005, 0x811a3000, 0x91180585, 0x05fe07fc, + 0x1c01f000, 0x81780080, 0x1c01f000, 0x480bc857, + 0x05fdfadd, 0x4df00000, 0x480b1800, 0x5c03e000, + 0x05fc0aca, 0x1c01f000, 0x4803c856, 0x05fdfad6, + 0x4df00000, 0x497b180b, 0x497b1801, 0x497b180c, + 0x497b180d, 0x497b180e, 0x598c0000, 0x90000583, + 0x05000006, 0x916c0582, 0x05020003, 0x64171800, + 0x0501f002, 0x64031800, 0x5c03e000, 0x05fc0ab7, + 0x1c01f000, 0x59300004, 0x8c00050c, 0x05020002, + 0x64066203, 0x1c01f000, 0x91180485, 0x05ba1f02, + 0x491bc857, 0x811b20c8, 0x83932400, 0x0000b037, + 0x8119b0c8, 0x82d9b400, 0x0000bf32, 0x811ba0ca, + 0x83d3a400, 0x00007600, 0x83180400, 0x00108f25, + 0x50034800, 0x811a28c2, 0x83162c00, 0x00006100, + 0x1c01f000, 0x00112216, 0x0011222f, 0x00112248, + 0x00112261, 0x0011227a, 0x4933c857, 0x59300407, + 0x90000c92, 0x05021015, 0x05011000, 0x0c01f001, + 0x00108f42, 0x00108fe8, 0x00109341, 0x001093af, + 0x00108fe8, 0x00109341, 0x001093af, 0x00108f42, + 0x00108fe8, 0x00108f42, 0x00108f42, 0x00108f42, + 0x00108f42, 0x00108f42, 0x00108f42, 0x00108f42, + 0x00108f46, 0x00108f46, 0x4803c857, 0x05fdfa8e, + 0x05fdf9e3, 0x05fdf27d, 0x42001000, 0x00112322, + 0x50081000, 0x4930100c, 0x58080002, 0x82000580, + 0x00000100, 0x0502003d, 0x59325809, 0x812e59c0, + 0x05b80ec5, 0x492fc856, 0x5932680a, 0x83340580, + 0x001141b4, 0x05000025, 0x592c040f, 0x82000500, + 0x0000e000, 0x05000003, 0x0501fbe0, 0x0501f002, + 0x0501fbd0, 0x592c040d, 0x82000500, 0x000000ff, + 0x90000583, 0x0500082a, 0x592c0011, 0x90000503, + 0x05000006, 0x90000583, 0x80000000, 0x58d00802, + 0x80040540, 0x4801a002, 0x42001000, 0x00112322, + 0x50081000, 0x4930100b, 0x492c100a, 0x90d00406, + 0x48001003, 0x592c0004, 0x48001006, 0x592c0011, + 0x48001005, 0x592c0012, 0x48001007, 0x592c0013, + 0x48001008, 0x0001f029, 0x592c080e, 0x48066802, + 0x82040500, 0x00ffff00, 0x05000007, 0x497a6a12, + 0x59a81040, 0x82081500, 0x00ffff00, 0x80080580, + 0x05fe07d2, 0x82040d00, 0x000000ff, 0x800408d0, + 0x48066a12, 0x05fdf7cd, 0x1c01f000, 0x59a8024c, + 0x8c000508, 0x0500000c, 0x59a80050, 0x82000500, + 0x0000ffff, 0x59c40880, 0x80040d80, 0x05000006, + 0x497b8880, 0x4c000000, 0x05c5fbf9, 0x5c000000, + 0x48038880, 0x1c01f000, 0x4d2c0000, 0x4d300000, + 0x4c580000, 0x4c540000, 0x4c500000, 0x5832580a, + 0x812e59c0, 0x05b80e74, 0x58300002, 0x82000580, + 0x00000100, 0x05020021, 0x5830000b, 0x5832600c, + 0x81300d80, 0x05020011, 0x0501f82d, 0x05020015, + 0x592c0811, 0x90040c03, 0x80040904, 0x4004b000, + 0x4200a000, 0x00112004, 0x0501ff2c, 0x05000002, + 0x9050a402, 0x4050a800, 0x0525f8a7, 0x600011b8, + 0x0501feb1, 0x0501f007, 0x4803c857, 0x4933c857, + 0x813261c0, 0x05000003, 0x0501f819, 0x05fc0f87, + 0x5c00a000, 0x5c00a800, 0x5c00b000, 0x5c026000, + 0x5c025800, 0x1c01f000, 0x5830000b, 0x5832600c, + 0x4a006002, 0x00000100, 0x4803c857, 0x4933c857, + 0x81300d80, 0x05fe07ed, 0x0501f809, 0x05fe07f1, + 0x4803c857, 0x05f9fe9e, 0x05ba0e43, 0x640a5a0a, + 0x0001fba8, 0x0505f910, 0x05fdf7ea, 0x05fdf9fa, + 0x4df00000, 0x598c000b, 0x81300580, 0x05020008, + 0x598c0003, 0x81300580, 0x05020005, 0x5c03e000, + 0x05fc09e2, 0x80000580, 0x1c01f000, 0x4803c857, + 0x5c03e000, 0x05fc09dd, 0x90000541, 0x1c01f000, + 0x59300403, 0xb0000ca0, 0x05ba1e2b, 0x83340d80, + 0x001141b4, 0x0502000a, 0x5930082a, 0x48066802, + 0x82041500, 0x00ffff00, 0x05020004, 0x800408d0, + 0x48066a12, 0x0501f002, 0x497a6a12, 0x4803c857, + 0x0c01f001, 0x00109148, 0x00109161, 0x00109170, + 0x0010929a, 0x00109261, 0x00109265, 0x00109271, + 0x00109287, 0x00109277, 0x00109287, 0x001092c7, + 0x00109287, 0x0010930e, 0x00109287, 0x00109319, + 0x00109287, 0x00109277, 0x00109287, 0x0010931d, + 0x00109060, 0x00109060, 0x00109060, 0x00109060, + 0x00109060, 0x00109060, 0x00109060, 0x00109060, + 0x00109060, 0x00109060, 0x00109060, 0x001093c8, + 0x001093dd, 0x001093e5, 0x00109060, 0x001093fc, + 0x00109271, 0x00109060, 0x00109271, 0x00109287, + 0x00109060, 0x00109170, 0x0010929a, 0x00109060, + 0x00109444, 0x00109287, 0x00109060, 0x00109452, + 0x00109287, 0x00109060, 0x00109277, 0x0010913b, + 0x00109061, 0x00109060, 0x0010946e, 0x001094a4, + 0x00109530, 0x00109060, 0x0010953e, 0x0010926f, + 0x00109533, 0x00109060, 0x00109406, 0x00109573, + 0x00109060, 0x00109060, 0x00109060, 0x00109060, + 0x00109074, 0x001090d5, 0x001090df, 0x00109060, + 0x00109060, 0x00109060, 0x00109111, 0x00109119, + 0x00109060, 0x00109060, 0x00109085, 0x001090af, + 0x001095a8, 0x001095dd, 0x001095fe, 0x00109060, + 0x00109060, 0x00109060, 0x001095d3, 0x00109555, + 0x0010946e, 0x001097ed, 0x00109060, 0x0010982e, + 0x001097e3, 0x0010983b, 0x00109060, 0x00109856, + 0x001097e9, 0x00109060, 0x00109060, 0x00109060, + 0x00109060, 0x00109060, 0x00109060, 0x00109060, + 0x05b9fdb5, 0x0501facb, 0x59325809, 0x592c000d, + 0x4801a006, 0x592c000e, 0x4801a007, 0x592c000f, + 0x4801a008, 0x592c0010, 0x4801a009, 0x592c0011, + 0x4801a00a, 0x4979a00b, 0x592c080d, 0x82040d00, + 0x00000fff, 0x80040904, 0x600011b8, 0x0501f5f6, + 0x4a026202, 0x0000ffff, 0x0501fab6, 0x4d2c0000, + 0x4a01a006, 0x05000000, 0x59325809, 0x592c000d, + 0x4801a007, 0x592c000e, 0x4801a008, 0x592c000f, + 0x4801a009, 0x5c025800, 0x60100800, 0x600011b8, + 0x0501f5e5, 0x4c580000, 0x4c500000, 0x4c540000, + 0x4d2c0000, 0x0501faa3, 0x5930040d, 0x90000503, + 0x05000006, 0x90000583, 0x80000000, 0x58d00802, + 0x80040540, 0x4801a002, 0x59325809, 0x4200a800, + 0x00112004, 0x592cb209, 0x9058b403, 0x8058b104, + 0x912ca40a, 0x0521ff89, 0x40580000, 0x8054ac00, + 0x592c0001, 0x80000540, 0x05000003, 0x40025800, + 0x05fdf7f5, 0x4200a000, 0x00112004, 0x4050a800, + 0x5930b40d, 0x9058b403, 0x8058b104, 0x40580800, + 0x0521ffb5, 0x600011b8, 0x5c025800, 0x5c00a800, + 0x5c00a000, 0x5c00b000, 0x0501f5bb, 0x4c580000, + 0x4c500000, 0x4c540000, 0x4d2c0000, 0x42034800, + 0x00111ffd, 0x0501fa85, 0x59325809, 0x592c0805, + 0x4807c857, 0x40041000, 0x80040904, 0x90081503, + 0x05000007, 0x80040800, 0x90081583, 0x80081000, + 0x58d00002, 0x80080540, 0x4801a002, 0x4a025809, + 0x02000000, 0x90d0ac06, 0x592cb011, 0x912ca409, + 0x0521ff5a, 0x40580000, 0x8054ac00, 0x592e5801, + 0x41780000, 0x812e5d40, 0x05fe07f8, 0x600011b8, + 0x5c025800, 0x5c00a800, 0x5c00a000, 0x5c00b000, + 0x0501f595, 0x0501fa57, 0x4a01a006, 0x78000000, + 0x5930001e, 0x840001c0, 0x4801a407, 0x4979a207, + 0x60080800, 0x600011b8, 0x0501f58b, 0x4c580000, + 0x4c540000, 0x4c500000, 0x0501fa58, 0x4a01a006, + 0x02000000, 0x5932481d, 0x59240001, 0x4801a008, + 0x59240002, 0x4801a009, 0x59240003, 0x4801a00a, + 0x59240004, 0x4801a00b, 0x5930001e, 0x82000d80, + 0x0000e000, 0x0500000e, 0x82000d80, 0x0000df00, + 0x05000004, 0x6441a407, 0x60180800, 0x0501f015, + 0x42001800, 0x00111ce0, 0x05bdf85d, 0x600001be, + 0x4200a000, 0x00111ce0, 0x0501f007, 0x42001800, + 0x00111ced, 0x05bdf856, 0x600001c0, 0x4200a000, + 0x00111ced, 0x90000550, 0x4801a407, 0x64d1a207, + 0x6034b000, 0x90d0ac0c, 0x0521ff18, 0x604c0800, + 0x600011b8, 0x5c00a000, 0x5c00a800, 0x5c00b000, + 0x0501f559, 0x0501fa1b, 0x4a01a006, 0x63000028, + 0x5930001e, 0x4801a007, 0x60080800, 0x600011b8, + 0x0501f551, 0x0501fa21, 0x41780000, 0x41780800, + 0x42002000, 0x00080000, 0x0c01f80e, 0x80000000, + 0x80040800, 0x60301000, 0x82080540, 0x02000000, + 0x4801a006, 0x800408e0, 0x5930001e, 0x80040540, + 0x4801a007, 0x80080904, 0x600011b8, 0x0501f53e, + 0x00109131, 0x00109133, 0x00109135, 0x00109137, + 0x00109139, 0x4811a008, 0x1c01f000, 0x4811a009, + 0x1c01f000, 0x4811a00a, 0x1c01f000, 0x4811a00b, + 0x1c01f000, 0x4811a00c, 0x1c01f000, 0x4a02600a, + 0x001141b4, 0x59a80040, 0x82000500, 0x000000ff, + 0x800000d0, 0x42026800, 0x001141b4, 0x48026a12, + 0x0501fa5b, 0x41780800, 0x600010b8, 0x0501f522, + 0x0501f9e4, 0x4a01a006, 0x52000000, 0x4979a007, + 0x5932481d, 0x59240400, 0x90000503, 0x05000005, + 0x59240400, 0x80000110, 0x05c5fa10, 0x4805a007, + 0x59240001, 0x4801a008, 0x59240002, 0x4801a009, + 0x59240003, 0x4801a00a, 0x59240004, 0x4801a00b, + 0x59240005, 0x4801a00c, 0x601c0800, 0x600011b8, + 0x0501f509, 0x4a026202, 0x0000ffff, 0x0501f9c9, + 0x4a01a006, 0x05000000, 0x5932481d, 0x59240005, + 0x4801a007, 0x59240001, 0x59240802, 0x4801a008, + 0x4805a009, 0x60100800, 0x600011b8, 0x0501f4fa, + 0x4a026202, 0x0000ffff, 0x0501f9ba, 0x4d3c0000, + 0x417a7800, 0x05e5f9f0, 0x5c027800, 0x4a01a006, + 0x03000000, 0x59340403, 0x82000580, 0x000007fe, + 0x0502008e, 0x4a01a006, 0x04000000, 0x59a8024c, + 0x8c000506, 0x05000004, 0x5930081d, 0x58040408, + 0x4801a001, 0x5934000a, 0x84000500, 0x4802680a, + 0x59a8024c, 0x8c000508, 0x05000010, 0x59a80050, + 0x4801a007, 0x59a80051, 0x82000500, 0x07deffff, + 0x599c0818, 0x8c040516, 0x05000002, 0x8400056a, + 0x4801a008, 0x4a01a009, 0x00002710, 0x59a80053, + 0x4801a00a, 0x0501f046, 0x59a80050, 0x59a8124c, + 0x8c080506, 0x05000003, 0x82000500, 0xffff0000, + 0x4801a007, 0x05e9f9f7, 0x0502000e, 0x59300c03, + 0xb0041591, 0x0500000b, 0x59a80cd1, 0x8c04050a, + 0x05020008, 0x497b8880, 0x82000500, 0x0000ffff, + 0x4c000000, 0x05c5f9e2, 0x5c000000, 0x48038880, + 0x59a80051, 0x05e9f9e7, 0x05020006, 0x82000500, + 0xb7ffffff, 0x82000540, 0x80000000, 0x0501f003, + 0x82000500, 0x3fffffff, 0x599c0818, 0x8c040516, + 0x05000002, 0x8400056a, 0x05ddfafb, 0x05000008, + 0x59a80cd1, 0x8c040506, 0x05020005, 0x59a80a4c, + 0x8c080506, 0x05020002, 0x8400057c, 0x8d0c0510, + 0x05000014, 0x59300c03, 0xb0041591, 0x05000011, + 0x900415b1, 0x0500000f, 0x4c580000, 0x4c500000, + 0x4c540000, 0x6010b000, 0x4200a000, 0x001124b0, + 0x90d0ac1f, 0x4c000000, 0x0521fe4c, 0x5c000000, + 0x5c00a800, 0x5c00a000, 0x5c00b000, 0x8400057a, + 0x4801a008, 0x4979a009, 0x4979a00a, 0x59240001, + 0x59240802, 0x4801a00b, 0x4805a00c, 0x59240003, + 0x59240804, 0x4801a00d, 0x4805a00e, 0x4979a00f, + 0x4979a010, 0x4979a011, 0x4979a012, 0x599c0018, 0x8c000510, 0x05000011, 0x59a80006, 0x8c00050a, - 0x05000005, 0x59340c03, 0x82040480, 0x000007f0, - 0x0500100a, 0x59a80051, 0x4801a013, 0x59a80052, - 0x4801a014, 0x59a80053, 0x4801a015, 0x59a80054, + 0x05000004, 0x59a8024c, 0x8c000508, 0x0502000b, + 0x59a80054, 0x84000576, 0x4801a013, 0x59a80055, + 0x4801a014, 0x59a80056, 0x4801a015, 0x59a80057, 0x4801a016, 0x0501f005, 0x4979a013, 0x4979a014, - 0x4979a015, 0x4979a016, 0x59a80055, 0x4801a017, - 0x59a80056, 0x4801a018, 0x59a80057, 0x4801a019, - 0x59a80058, 0x4801a01a, 0x60740800, 0x600011b8, - 0x0501f3e1, 0x0501f8bb, 0x4a01a006, 0x50000000, - 0x05fdf7a9, 0x0501f8b7, 0x4a01a006, 0x21100014, + 0x4979a015, 0x4979a016, 0x59a80058, 0x84000576, + 0x4801a017, 0x59a80059, 0x4801a018, 0x4979a019, + 0x4979a01a, 0x0501f055, 0x05fdfd81, 0x59a80050, + 0x4801a007, 0x4c640000, 0x4d2c0000, 0x59a8c851, + 0x0511f842, 0x0500000d, 0x0511fee1, 0x0502000b, + 0x592c020b, 0x8c00050e, 0x05000008, 0x8264cd00, + 0x0000ffff, 0x592c000d, 0x82000500, 0xffff0000, + 0x8064cd40, 0x0501f005, 0x59a80a4c, 0x90040d30, + 0x05000002, 0x8464cd36, 0x4865a008, 0x5c025800, + 0x5c00c800, 0x59a80052, 0x4801a009, 0x59a80053, + 0x4801a00a, 0x59240001, 0x59240802, 0x4801a00b, + 0x4805a00c, 0x59240003, 0x59240804, 0x4801a00d, + 0x4805a00e, 0x4979a00f, 0x4979a010, 0x4979a011, + 0x4979a012, 0x59340200, 0x8c000508, 0x05000005, + 0x59a80054, 0x8400057e, 0x48035054, 0x0501f00e, + 0x599c0018, 0x8c000510, 0x05000014, 0x59a80006, + 0x8c00050a, 0x05000008, 0x59340c03, 0x82040480, + 0x000007f0, 0x0500100d, 0x82040480, 0x00000800, + 0x0502100a, 0x59a80054, 0x4801a013, 0x59a80055, + 0x4801a014, 0x59a80056, 0x4801a015, 0x59a80057, + 0x4801a016, 0x0501f005, 0x4979a013, 0x4979a014, + 0x4979a015, 0x4979a016, 0x59a80058, 0x4801a017, + 0x59a80059, 0x4801a018, 0x59a8005a, 0x4801a019, + 0x59a8005b, 0x4801a01a, 0x60740800, 0x600011b8, + 0x0501f409, 0x0501f8cb, 0x4a01a006, 0x50000000, + 0x05fdf7a6, 0x0501f8c7, 0x4a01a006, 0x21100014, 0x4979a007, 0x4979a008, 0x4979a009, 0x4979a00a, - 0x60140800, 0x600011b8, 0x0501f3d3, 0x0501f8b4, - 0x0501f002, 0x0501f8b9, 0x4a01a006, 0x02000000, - 0x60040800, 0x600011b8, 0x0501f3cb, 0x0501f8b3, + 0x60140800, 0x600011b8, 0x0501f3fb, 0x0501f8c4, + 0x0501f002, 0x0501f8c9, 0x4a01a006, 0x02000000, + 0x60040800, 0x600011b8, 0x0501f3f3, 0x0501f8c3, 0x4a01a006, 0x02000000, 0x59300403, 0x900005b1, - 0x05000002, 0x05fdf790, 0x0501fc38, 0x05000004, - 0x4a01a001, 0x00fffffe, 0x05fdf709, 0x81a40800, - 0x4a000801, 0x00fffffe, 0x05fdf705, 0x0501f8a3, + 0x05000002, 0x05fdf78d, 0x0501fc60, 0x05000004, + 0x4a01a001, 0x00fffffe, 0x05fdf706, 0x81a40800, + 0x4a000801, 0x00fffffe, 0x05fdf702, 0x0501f8b3, 0x4a01a006, 0x01000000, 0x5930041c, 0x80000540, 0x05000003, 0x4801a407, 0x0501f002, 0x640da407, 0x5930021c, 0x80000540, 0x05000003, 0x4801a207, 0x0501f003, 0x4a01a207, 0x00002a00, 0x60080800, - 0x600011b8, 0x0501f3a8, 0x4a026202, 0x0000ffff, - 0x0501f880, 0x4a01a406, 0x00002010, 0x6451a206, + 0x600011b8, 0x0501f3d0, 0x4a026202, 0x0000ffff, + 0x0501f890, 0x4a01a406, 0x00002010, 0x6451a206, 0x4a01a407, 0x00000800, 0x4a01a207, 0x00002000, 0x60000008, 0x59a80807, 0x8c04050c, 0x05000002, - 0x80000580, 0x5932481d, 0x59240c00, 0x8c040508, + 0x80000580, 0x59300a16, 0x8c040514, 0x05000006, + 0x5930081e, 0x90040d30, 0x05000003, 0x80040540, + 0x0501f009, 0x5932481d, 0x59240c00, 0x8c040508, 0x05000004, 0x90000560, 0x8c04050a, 0x05020002, 0x90000550, 0x90000542, 0x5934080a, 0x8c040514, 0x05000005, 0x82040d00, 0x00000380, 0x80040540, 0x0501f006, 0x599c0818, 0x8c040518, 0x05000003, - 0x82000540, 0x00000380, 0x0501f03c, 0x0501f86b, + 0x82000540, 0x00000380, 0x0501f044, 0x0501f873, 0x4a01a406, 0x00000210, 0x6451a206, 0x4a01a407, 0x00000800, 0x5934000a, 0x8c000516, 0x05000013, 0x59340c05, 0x90040530, 0x05000013, 0x59340a05, @@ -9129,76 +9437,81 @@ static const uint32_t isp_2500_risc_code[] = { 0x00000400, 0x0501f006, 0x4a01a207, 0x00000700, 0x0501f003, 0x4a01a207, 0x00000800, 0x60000008, 0x59a80807, 0x8c04050c, 0x05000002, 0x80000580, + 0x59300a16, 0x8c040510, 0x05000006, 0x5930081e, + 0x90040d30, 0x05000003, 0x80040540, 0x0501f009, 0x5932481d, 0x59240c00, 0x8c040508, 0x05000004, 0x90000560, 0x8c04050a, 0x05020002, 0x90000550, 0x90000542, 0x59340a00, 0x8c04050e, 0x0500000b, 0x84000550, 0x599c1017, 0x8c08050a, 0x05020004, 0x8c04050a, 0x05000002, 0x8400054e, 0x8c04051c, 0x05000002, 0x84000552, 0x4801a20a, 0x60140800, - 0x600011b8, 0x0501f344, 0x0501f82c, 0x4a01a006, + 0x600011b8, 0x0501f35c, 0x0501f82c, 0x4a01a006, 0x02100014, 0x4a01a007, 0x00000100, 0x4979a008, 0x4979a009, 0x4979a00a, 0x60140800, 0x600011b8, - 0x0501f339, 0x0501f821, 0x4a01a006, 0x02000000, - 0x05fdf642, 0x4933c857, 0x0501f81c, 0x4a01a006, + 0x0501f351, 0x0501f821, 0x4a01a006, 0x02000000, + 0x05fdf62f, 0x4933c857, 0x0501f81c, 0x4a01a006, 0x01000000, 0x642da407, 0x60080800, 0x600011b8, - 0x0501f32d, 0x42005000, 0x32000000, 0x42006000, - 0x08290000, 0x41786800, 0x41787800, 0x0501f2e9, + 0x0501f345, 0x42005000, 0x32000000, 0x42006000, + 0x08290000, 0x41786800, 0x41787800, 0x0501f2fb, 0x42005000, 0x22000000, 0x42006000, 0x01290000, - 0x41786800, 0x41787800, 0x0501f2e2, 0x42005000, + 0x41786800, 0x41787800, 0x0501f2f4, 0x42005000, 0x33000000, 0x42006000, 0x08980000, 0x41786800, - 0x41787800, 0x0501f2db, 0x42005000, 0x23000000, + 0x41787800, 0x0501f2ed, 0x42005000, 0x23000000, 0x42006000, 0x01980000, 0x41786800, 0x41787800, - 0x0501f2d4, 0x59300403, 0x82000c80, 0x00000085, - 0x05b81f6e, 0x82000c80, 0x00000093, 0x05ba1f6b, - 0x82000480, 0x00000085, 0x0c01f001, 0x00108e82, - 0x00108e81, 0x00108e81, 0x00108e81, 0x00108e81, - 0x00108e81, 0x00108e82, 0x00108e81, 0x00108e81, - 0x00108e81, 0x00108e81, 0x00108e81, 0x00108e81, - 0x00108e89, 0x05b9ff59, 0x4933c857, 0x42034800, - 0x0010e063, 0x0501f836, 0x41780800, 0x600010b8, - 0x0501f2f1, 0x4d2c0000, 0x59325809, 0x4933c857, - 0x492fc857, 0x812e59c0, 0x05b80f4c, 0x59340a12, - 0x82040d00, 0x0000ff00, 0x592c000e, 0x82000500, + 0x0501f2e6, 0x59300403, 0x82000c80, 0x00000085, + 0x05b81ad1, 0x82000c80, 0x00000093, 0x05ba1ace, + 0x82000480, 0x00000085, 0x0c01f001, 0x0010935a, + 0x00109359, 0x00109359, 0x00109359, 0x00109359, + 0x00109359, 0x0010935a, 0x00109359, 0x00109359, + 0x00109359, 0x00109359, 0x00109359, 0x00109359, + 0x00109361, 0x05b9fabc, 0x4933c857, 0x42034800, + 0x00111ffd, 0x0501f842, 0x41780800, 0x600010b8, + 0x0501f309, 0x4d2c0000, 0x59325809, 0x4933c857, + 0x492fc857, 0x812e59c0, 0x05b80aaf, 0x41780800, + 0x05e9f830, 0x0500000d, 0x592c180d, 0x820c0500, + 0x00ffff00, 0x05000006, 0x59a81040, 0x82081500, + 0x00ffff00, 0x80080580, 0x05020004, 0x820c0d00, + 0x000000ff, 0x800408d0, 0x592c000e, 0x82000500, 0x000000ff, 0x900001c0, 0x80040540, 0x592c0c0b, 0x82040d00, 0x0000f000, 0x82040d80, 0x00003000, 0x05020003, 0x90000570, 0x0501f002, 0x90000551, - 0x44034800, 0x81a5a000, 0x0501fb4c, 0x05020b51, + 0x44034800, 0x81a5a000, 0x0501fb58, 0x05020b5d, 0x60241000, 0x600c0800, 0x592c000d, 0x82000500, 0xff000000, 0x82001d80, 0x84000000, 0x05000006, - 0x82001d80, 0x85000000, 0x05ba0f2c, 0x601c1000, + 0x82001d80, 0x85000000, 0x05ba0a83, 0x601c1000, 0x60040800, 0x912c1c0d, 0x500c0000, 0x4401a000, 0x800c1800, 0x80d1a000, 0x80081040, 0x05fe07fb, - 0x600011b8, 0x5c025800, 0x0501f2bf, 0x42005000, + 0x600011b8, 0x5c025800, 0x0501f2cb, 0x42005000, 0x81000000, 0x42006000, 0x00090000, 0x41786800, 0x41787800, 0x59301407, 0x90081585, 0x05020003, 0x42006000, 0x00890000, 0x59301416, 0x8c08051a, - 0x05000002, 0x60047800, 0x0501f272, 0x59300403, - 0xb0000c93, 0x05ba1f0d, 0xb000048b, 0x05b81f0b, + 0x05000002, 0x60047800, 0x0501f278, 0x59300403, + 0xb0000c93, 0x05ba1a64, 0xb000048b, 0x05b81a62, 0x5932680a, 0x59368c03, 0x4803c857, 0x0c01f001, - 0x00108f39, 0x00108f41, 0x00108f49, 0x00108f51, - 0x00108edc, 0x00108edc, 0x00108edc, 0x00108f31, - 0x05b9fefe, 0x42005000, 0x06000000, 0x42006000, - 0x08290000, 0x41786800, 0x41787800, 0x0501f259, - 0x4933c857, 0x05fdff6f, 0x4a01a006, 0x12000000, + 0x0010941d, 0x00109425, 0x0010942d, 0x00109435, + 0x001093c0, 0x001093c0, 0x001093c0, 0x00109415, + 0x05b9fa55, 0x42005000, 0x06000000, 0x42006000, + 0x08290000, 0x41786800, 0x41787800, 0x0501f25f, + 0x4933c857, 0x05fdff63, 0x4a01a006, 0x12000000, 0x59300407, 0x90000584, 0x05020003, 0x59340002, 0x0501f003, 0x5932481d, 0x59240005, 0x82000500, 0x00ffffff, 0x4801a007, 0x5930041b, 0x4801a408, 0x5930021b, 0x4801a208, 0x600c0800, 0x600011b8, - 0x0501f281, 0x05fdff5b, 0x4a01a006, 0x0f000000, + 0x0501f28d, 0x05fdff4f, 0x4a01a006, 0x0f000000, 0x5930001e, 0x4801a007, 0x60080800, 0x600011b8, - 0x0501f279, 0x05fdff61, 0x4a01a006, 0x02000000, + 0x0501f285, 0x05fdff55, 0x4a01a006, 0x02000000, 0x59c40085, 0x59880804, 0x80040c00, 0x48071004, 0x497b8885, 0x59880000, 0x4801a007, 0x59880001, 0x4801a008, 0x59880002, 0x4801a009, 0x59880003, 0x4801a00a, 0x59880004, 0x4801a00b, 0x59880005, - 0x4801a00c, 0x601c0800, 0x600011b8, 0x0501f262, - 0x4a026202, 0x0000ffff, 0x05fdff3a, 0x4a01a006, + 0x4801a00c, 0x601c0800, 0x600011b8, 0x0501f26e, + 0x4a026202, 0x0000ffff, 0x05fdff2e, 0x4a01a006, 0x62000000, 0x5930001e, 0x4801a007, 0x60080800, - 0x600011b8, 0x0501f258, 0x05fdff32, 0x59300809, + 0x600011b8, 0x0501f264, 0x05fdff26, 0x59300809, 0x4c500000, 0x4c540000, 0x4c580000, 0x9004a40e, - 0x5930b01e, 0x90d0ac06, 0x0521f97d, 0x5930081e, + 0x5930b01e, 0x90d0ac06, 0x0521fc14, 0x5930081e, 0x600011b8, 0x5c00b000, 0x5c00a800, 0x5c00a000, - 0x0501f249, 0x05fdffac, 0x59300019, 0x4801a006, + 0x0501f255, 0x05fdffac, 0x59300019, 0x4801a006, 0x5930001a, 0x4801a007, 0x4a01a008, 0x00001000, 0x0501f020, 0x05fdffa4, 0x59300019, 0x4801a006, 0x5930001a, 0x4801a007, 0x4a01a008, 0x00004000, @@ -9209,157 +9522,160 @@ static const uint32_t isp_2500_risc_code[] = { 0x0501f008, 0x05fdff8c, 0x59300019, 0x4801a006, 0x5930001a, 0x4801a007, 0x4a01a008, 0x00000200, 0x4979a009, 0x4979a00a, 0x4979a00b, 0x4979a00c, - 0x4979a00d, 0x60200800, 0x600011b8, 0x0501f21a, - 0x05fdff02, 0x4a01a006, 0x02000014, 0x4979a407, - 0x4979a207, 0x59a8005f, 0x4801a008, 0x59a80060, + 0x4979a00d, 0x60200800, 0x600011b8, 0x0501f226, + 0x05fdfef6, 0x4a01a006, 0x02000014, 0x4979a407, + 0x4979a207, 0x59a80062, 0x4801a008, 0x59a80063, 0x4801a009, 0x4a01a00a, 0x00047878, 0x60140800, - 0x600011b8, 0x0501f20c, 0x05fdfef4, 0x4a01a006, + 0x600011b8, 0x0501f218, 0x05fdfee8, 0x4a01a006, 0x02140018, 0x4a01a407, 0x00000800, 0x5930001e, 0x82000d00, 0xff000000, 0x900409c0, 0x4805a207, 0x82000500, 0x00ffffff, 0x4801a00a, 0x4979a408, 0x4979a208, 0x4979a409, 0x4979a209, 0x59a80006, 0x8c000500, 0x05000005, 0x4a01a006, 0x02100014, 0x60140800, 0x0501f003, 0x4979a00b, 0x60180800, - 0x600011b8, 0x0501f1f0, 0x4933c857, 0x4937c857, - 0x4d1c0000, 0x60d40800, 0x0511f988, 0x05020025, + 0x600011b8, 0x0501f1fc, 0x4933c857, 0x4937c857, + 0x4d1c0000, 0x60d40800, 0x0511fa3c, 0x05020025, 0x59300017, 0x591c0817, 0x80040580, 0x05020021, - 0x05fdfec0, 0x4a01a006, 0x13000000, 0x5932382a, + 0x05fdfeb4, 0x4a01a006, 0x13000000, 0x5932382a, 0x59300403, 0xb0000597, 0x05000004, 0x591c0416, - 0x8c000502, 0x05b80e3d, 0x591c001b, 0x4801a005, + 0x8c000502, 0x05b80994, 0x591c001b, 0x4801a005, 0x591c0407, 0x90000583, 0x05000007, 0x5930080a, 0x58040002, 0x82000500, 0x00ffffff, 0x4801a007, 0x0501f004, 0x5932481d, 0x59240005, 0x4801a007, 0x5930041b, 0x4801a408, 0x5930021b, 0x4801a208, - 0x600c0800, 0x600011b8, 0x5c023800, 0x0501f1c6, - 0x4803c856, 0x05f9fd5e, 0x598c000b, 0x81300580, - 0x05ba0e22, 0x05f9fcb0, 0x59300403, 0xb0000597, - 0x05040b07, 0x0005ffdc, 0x5c023800, 0x05f9f545, + 0x600c0800, 0x600011b8, 0x5c023800, 0x0501f1d2, + 0x4803c856, 0x05f9fd38, 0x598c000b, 0x81300580, + 0x05ba0979, 0x05f9fc8a, 0x59300403, 0xb0000597, + 0x05040b5d, 0x0009f810, 0x5c023800, 0x05f9f51f, 0x4803c856, 0x4d2c0000, 0x4d1c0000, 0x5932382a, - 0x811e39c0, 0x05b80e15, 0x831c0580, 0xffffffff, - 0x05000044, 0x591c0c07, 0x90040586, 0x0500000a, - 0x90040583, 0x05000044, 0x64de6403, 0x640e641c, + 0x811e39c0, 0x05b8096c, 0x831c0580, 0xffffffff, + 0x0500004a, 0x591c0c07, 0x90040586, 0x0500000a, + 0x90040583, 0x0500004a, 0x64de6403, 0x640e641c, 0x4a02621c, 0x00001700, 0x5c023800, 0x5c025800, - 0x0501f072, 0x0501f856, 0x42001000, 0x40000000, - 0x591c0203, 0x591c0804, 0x8c04053e, 0x05020024, - 0x90000c91, 0x0c001002, 0x05b9fdfc, 0x00108ff0, - 0x00108fff, 0x00108ff1, 0x00108fff, 0x00108ff9, - 0x00108ff0, 0x00108fff, 0x00108fff, 0x00108fff, - 0x00108ff0, 0x00108ff0, 0x00108ff0, 0x00108ff0, - 0x00108ff0, 0x00108fff, 0x00108ff0, 0x00108fff, - 0x05b9fdea, 0x591c0416, 0x4803c857, 0x8c000518, - 0x05000003, 0x8c000512, 0x05000007, 0x80001580, - 0x0501f007, 0x80001580, 0x591c0014, 0x4803c857, - 0x0501f00e, 0x42001000, 0x20000000, 0x591c0013, - 0x4803c857, 0x8c00053c, 0x05000003, 0x80000580, - 0x0501f006, 0x591c0014, 0x4803c857, 0x800001c0, - 0x05020002, 0x591c0017, 0x4801a00a, 0x0501f01a, - 0x0501f81f, 0x42001000, 0x40000000, 0x41780000, - 0x05fdf7fa, 0x0501f81a, 0x591e5809, 0x812e59c0, - 0x05b80dc6, 0x592c1013, 0x591c0013, 0x80080480, - 0x4801a00a, 0x591c0203, 0x591c0804, 0x8c04053e, - 0x05020005, 0x90000d82, 0x05000006, 0x90000d84, - 0x05000004, 0x42001000, 0x40000000, 0x0501f002, - 0x80001580, 0x4809a00b, 0x60180800, 0x600011b8, - 0x5c023800, 0x5c025800, 0x0501f14f, 0x4803c856, - 0x05fdfe36, 0x4a01a006, 0x02000000, 0x59300c1b, - 0x4805a407, 0x59300a1b, 0x4805a207, 0x5932481d, - 0x59241005, 0x5930080a, 0x58041802, 0x820c1d00, - 0x00ffffff, 0x5930082a, 0x82040580, 0xffffffff, - 0x05000007, 0x58040407, 0x90000583, 0x05020004, - 0x4809a008, 0x480da009, 0x0501f003, 0x480da008, - 0x4809a009, 0x1c01f000, 0x4803c856, 0x05fdfe1b, - 0x0501f003, 0x4803c856, 0x05fdfe11, 0x4a01a006, - 0x01000000, 0x5930041c, 0x4801a407, 0x5930021c, - 0x4801a207, 0x60080800, 0x600011b8, 0x0501f126, - 0x4803c856, 0x4d1c0000, 0x05fdfdf7, 0x4a01a006, - 0x14000000, 0x5932382a, 0x591c001b, 0x4801a005, - 0x5930041b, 0x4801a407, 0x5930021b, 0x4801a207, - 0x59300017, 0x4801a008, 0x59300218, 0x82000500, - 0x000000ff, 0x840001c0, 0x4801a409, 0x60100800, - 0x600011b8, 0x5c023800, 0x0501f10f, 0x4803c856, - 0x05fdfdf6, 0x4a01a006, 0x02000001, 0x42001000, - 0xe8000000, 0x59c40801, 0x82040d00, 0x00018000, - 0x90040580, 0x60000100, 0x0500000e, 0x82040580, - 0x00008000, 0x60000080, 0x0500000a, 0x82040580, - 0x00010000, 0x60000040, 0x05000006, 0x82040580, - 0x00018000, 0x60000010, 0x05000002, 0x60080000, - 0x80080540, 0x4801a007, 0x60080800, 0x600011b8, - 0x0501f0f1, 0x4803c856, 0x0501f809, 0x5930041c, - 0x900001c0, 0x4801a005, 0x0501f950, 0x41780800, - 0x600010b8, 0x0501f8e8, 0x05f1f721, 0x4803c856, - 0x59300819, 0x90041c09, 0x64874800, 0x58040408, - 0x82000500, 0x0000f000, 0x82000580, 0x00003000, - 0x05000002, 0x65074800, 0x81a5a000, 0x0501f94f, - 0x05000004, 0x4c0c0000, 0x0501f952, 0x5c001800, - 0x580c0001, 0x82000d00, 0x00ffffff, 0x82040d40, - 0xc2000000, 0x4805a000, 0x580c0800, 0x82041500, - 0x00ffffff, 0x82000500, 0xff000000, 0x80080540, - 0x4801a001, 0x580c0002, 0x82000580, 0x00c00000, - 0x82000500, 0x00fd0300, 0x4801a002, 0x580c0003, - 0x4801a003, 0x580c0404, 0x4801a404, 0x580c0204, - 0x4801a204, 0x1c01f000, 0x05fdfda4, 0x5930001e, - 0x800001c0, 0x05000006, 0x4a01a006, 0x01000000, - 0x640da407, 0x60080800, 0x0501f021, 0x4a01a006, - 0x02000000, 0x41780800, 0x916c0584, 0x05020003, - 0x84040d42, 0x0501f00c, 0x05e5ffe0, 0x05020003, - 0x84040d4a, 0x0501f002, 0x84040d48, 0x59a80249, - 0x8c000506, 0x05020003, 0x8c00050a, 0x05000002, - 0x84040d46, 0x4805a207, 0x59c40085, 0x48031004, - 0x4c580000, 0x4c500000, 0x4c540000, 0x6018b000, - 0x9188a400, 0x90d0ac08, 0x051dffc5, 0x5c00a800, - 0x5c00a000, 0x5c00b000, 0x60200800, 0x600011b8, - 0x0501f091, 0x05fdfd6b, 0x4a01a006, 0x56000000, - 0x59340006, 0x4801a007, 0x59340007, 0x4801a008, - 0x600c0800, 0x600011b8, 0x0501f087, 0x4803c856, - 0x05fdfd6e, 0x5930081e, 0x800409c0, 0x0500000b, - 0x82040580, 0x0000ffff, 0x05000003, 0x90040487, - 0x05021006, 0x4a01a006, 0x01000000, 0x640da407, - 0x60080800, 0x0501f011, 0x4a01a006, 0x0200001c, - 0x6405a007, 0x42001000, 0x0010dd4b, 0x50080000, - 0x9c0001c0, 0x4801a009, 0x5932481d, 0x59240005, - 0x4801a00a, 0x59240001, 0x59240802, 0x4801a00b, - 0x4805a00c, 0x601c0800, 0x600011b8, 0x0501f066, - 0x4d2c0000, 0x05fdfd3f, 0x59325809, 0x812e59c0, - 0x05020003, 0x4979a001, 0x0501f005, 0x592c000c, - 0x82000500, 0x00ffffff, 0x4801a001, 0x4a01a006, - 0x51000000, 0x5c025800, 0x05fdf3a1, 0x4803c856, - 0x59325809, 0x5932680a, 0x59300407, 0x4803c857, - 0x90000d8a, 0x05000002, 0x05b9fcb0, 0x42005000, - 0x02000000, 0x42006000, 0x20290000, 0x41786800, - 0x41787800, 0x0501f805, 0x91180d78, 0x60801193, - 0x0501f882, 0x1c01f000, 0x6081a000, 0x59300416, - 0x8c000510, 0x05020008, 0x6001a000, 0x0501f006, - 0x60c1a000, 0x59300416, 0x8c000510, 0x05020002, - 0x6045a000, 0x59340a12, 0x82040d00, 0x0000ff00, - 0x5932481d, 0x59240408, 0x900001c0, 0x80040540, - 0x80d00540, 0x44034800, 0x81a5a000, 0x0501f8a3, - 0x050208a8, 0x59340002, 0x82000500, 0x00ffffff, - 0x59300c03, 0x90040db1, 0x05020002, 0x41780000, - 0x80280540, 0x4801a000, 0x59240005, 0x4801a001, - 0x4831a002, 0x90340540, 0x4801a003, 0x59300402, - 0x4801a404, 0x59300a02, 0x4805a204, 0x8c30052e, - 0x05000009, 0x4805a404, 0x59301416, 0x480bc857, - 0x8c08051c, 0x05000003, 0x59300216, 0x4803c857, - 0x4801a204, 0x483da005, 0x1c01f000, 0x643e6407, + 0x0501f078, 0x0501f85c, 0x42001000, 0x40000000, + 0x591c0203, 0x591c0804, 0x8c04053e, 0x05020027, + 0x90000c91, 0x0c001002, 0x05b9f953, 0x001094d4, + 0x001094e6, 0x001094d5, 0x001094e6, 0x001094dd, + 0x001094d4, 0x001094e6, 0x001094e6, 0x001094e6, + 0x001094d4, 0x001094d4, 0x001094d4, 0x001094d4, + 0x001094d4, 0x001094e6, 0x001094d4, 0x001094e6, + 0x05b9f941, 0x591c0416, 0x4803c857, 0x8c000518, + 0x05000003, 0x8c000512, 0x0500000a, 0x80001580, + 0x0501f00a, 0x80001580, 0x0521fbf8, 0x41780000, + 0x05020014, 0x591c0014, 0x4803c857, 0x0501f011, + 0x42001000, 0x20000000, 0x0521fbf0, 0x41780000, + 0x0502000c, 0x591c0013, 0x4803c857, 0x8c00053c, + 0x05000003, 0x80000580, 0x0501f006, 0x591c0014, + 0x4803c857, 0x800001c0, 0x05020002, 0x591c0017, + 0x4801a00a, 0x0501f01a, 0x0501f81f, 0x42001000, + 0x40000000, 0x41780000, 0x05fdf7fa, 0x0501f81a, + 0x591e5809, 0x812e59c0, 0x05b80917, 0x592c1013, + 0x591c0013, 0x80080480, 0x4801a00a, 0x591c0203, + 0x591c0804, 0x8c04053e, 0x05020005, 0x90000d82, + 0x05000006, 0x90000d84, 0x05000004, 0x42001000, + 0x40000000, 0x0501f002, 0x80001580, 0x4809a00b, + 0x60180800, 0x600011b8, 0x5c023800, 0x5c025800, + 0x0501f155, 0x4803c856, 0x05fdfe24, 0x4a01a006, + 0x02000000, 0x59300c1b, 0x4805a407, 0x59300a1b, + 0x4805a207, 0x5932481d, 0x59241005, 0x5930080a, + 0x58041802, 0x820c1d00, 0x00ffffff, 0x5930082a, + 0x82040580, 0xffffffff, 0x05000007, 0x58040407, + 0x90000583, 0x05020004, 0x4809a008, 0x480da009, + 0x0501f003, 0x480da008, 0x4809a009, 0x1c01f000, + 0x4803c856, 0x05fdfe09, 0x0501f003, 0x4803c856, + 0x05fdfdff, 0x4a01a006, 0x01000000, 0x5930041c, + 0x4801a407, 0x5930021c, 0x4801a207, 0x60080800, + 0x600011b8, 0x0501f12c, 0x4803c856, 0x4d1c0000, + 0x05fdfde5, 0x4a01a006, 0x14000000, 0x5932382a, + 0x591c001b, 0x4801a005, 0x5930041b, 0x4801a407, + 0x5930021b, 0x4801a207, 0x59300017, 0x4801a008, + 0x59300218, 0x82000500, 0x000000ff, 0x840001c0, + 0x4801a409, 0x60100800, 0x600011b8, 0x5c023800, + 0x0501f115, 0x4803c856, 0x05fdfde4, 0x4a01a006, + 0x02000001, 0x42001000, 0xe8000000, 0x59c40801, + 0x82040d00, 0x00018000, 0x90040580, 0x60000100, + 0x0500000e, 0x82040580, 0x00008000, 0x60000080, + 0x0500000a, 0x82040580, 0x00010000, 0x60000040, + 0x05000006, 0x82040580, 0x00018000, 0x60000010, + 0x05000002, 0x60080000, 0x80080540, 0x4801a007, + 0x60080800, 0x600011b8, 0x0501f0f7, 0x4803c856, + 0x0501f809, 0x5930041c, 0x900001c0, 0x4801a005, + 0x0501f956, 0x41780800, 0x600010b8, 0x0501f8ee, + 0x05f1f69b, 0x4803c856, 0x59300819, 0x90041c09, + 0x64874800, 0x58040408, 0x82000500, 0x0000f000, + 0x82000580, 0x00003000, 0x05000002, 0x65074800, + 0x81a5a000, 0x0501f955, 0x05000004, 0x4c0c0000, + 0x0501f958, 0x5c001800, 0x580c0001, 0x82000d00, + 0x00ffffff, 0x82040d40, 0xc2000000, 0x4805a000, + 0x580c0800, 0x82041500, 0x00ffffff, 0x82000500, + 0xff000000, 0x80080540, 0x4801a001, 0x580c0002, + 0x82000580, 0x00c00000, 0x82000500, 0x00fd0300, + 0x4801a002, 0x580c0003, 0x4801a003, 0x580c0404, + 0x4801a404, 0x580c0204, 0x4801a204, 0x1c01f000, + 0x05fdfd92, 0x5930001e, 0x800001c0, 0x05000006, + 0x4a01a006, 0x01000000, 0x640da407, 0x60080800, + 0x0501f021, 0x4a01a006, 0x02000000, 0x41780800, + 0x916c0584, 0x05020003, 0x84040d42, 0x0501f00c, + 0x05e5fde0, 0x05020003, 0x84040d4a, 0x0501f002, + 0x84040d48, 0x59a8024c, 0x8c000506, 0x05020003, + 0x8c00050a, 0x05000002, 0x84040d46, 0x4805a207, + 0x59c40085, 0x48031004, 0x4c580000, 0x4c500000, + 0x4c540000, 0x6018b000, 0x9188a400, 0x90d0ac08, + 0x0521fa56, 0x5c00a800, 0x5c00a000, 0x5c00b000, + 0x60200800, 0x600011b8, 0x0501f097, 0x05fdfd59, + 0x4a01a006, 0x56000000, 0x59340006, 0x4801a007, + 0x59340007, 0x4801a008, 0x600c0800, 0x600011b8, + 0x0501f08d, 0x4803c856, 0x05fdfd5c, 0x5930081e, + 0x800409c0, 0x0500000b, 0x82040580, 0x0000ffff, + 0x05000003, 0x90040487, 0x05021006, 0x4a01a006, + 0x01000000, 0x640da407, 0x60080800, 0x0501f011, + 0x4a01a006, 0x0200001c, 0x6405a007, 0x42001000, + 0x00111ce5, 0x50080000, 0x9c0001c0, 0x4801a009, + 0x5932481d, 0x59240005, 0x4801a00a, 0x59240001, + 0x59240802, 0x4801a00b, 0x4805a00c, 0x601c0800, + 0x600011b8, 0x0501f06c, 0x4d2c0000, 0x05fdfd2d, + 0x59325809, 0x812e59c0, 0x05020003, 0x4979a001, + 0x0501f005, 0x592c000c, 0x82000500, 0x00ffffff, + 0x4801a001, 0x4a01a006, 0x51000000, 0x5c025800, + 0x05fdf37c, 0x4803c856, 0x59325809, 0x5932680a, + 0x59300407, 0x4803c857, 0x90000d8a, 0x05000002, + 0x05b9f801, 0x42005000, 0x02000000, 0x42006000, + 0x20290000, 0x41786800, 0x41787800, 0x0501f805, + 0x91180d78, 0x60801193, 0x0501f888, 0x1c01f000, + 0x6081a000, 0x59300416, 0x8c000510, 0x05020008, + 0x6001a000, 0x0501f006, 0x60c1a000, 0x59300416, + 0x8c000510, 0x05020002, 0x6045a000, 0x59340a12, + 0x82040d00, 0x0000ff00, 0x5932481d, 0x59240408, + 0x900001c0, 0x80040540, 0x80d00540, 0x44034800, + 0x81a5a000, 0x0501f8a9, 0x050208ae, 0x59340002, + 0x82000500, 0x00ffffff, 0x59300c03, 0x90040db1, + 0x05020002, 0x41780000, 0x80280540, 0x4801a000, + 0x59240005, 0x4801a001, 0x4831a002, 0x90340540, + 0x4801a003, 0x59300402, 0x4801a404, 0x59300a02, + 0x4805a204, 0x8c30052e, 0x05000009, 0x4805a404, + 0x59301416, 0x480bc857, 0x8c08051c, 0x05000003, + 0x59300216, 0x4803c857, 0x4801a204, 0x483da005, + 0x1c01f000, 0x82100580, 0xc2000000, 0x05020004, + 0x42000000, 0x00112358, 0x0521f8fd, 0x643e6407, 0x59300819, 0x5930001a, 0x80102540, 0x48126019, 0x4806601a, 0x5930081b, 0x82040d00, 0x00fffff0, 0x82040d80, 0x00c00000, 0x4806601b, 0x481a601e, 0x1c01f000, 0x4807c857, 0x4c040000, 0x0501f857, 0x5c000800, 0x40040000, 0x80081540, 0x800000c4, - 0x82000540, 0x00002000, 0x42000800, 0x0010e06a, - 0x59a824cc, 0x8c100502, 0x05000008, 0x90040c02, + 0x82000540, 0x00002000, 0x42000800, 0x00112004, + 0x59a824d1, 0x8c100502, 0x05000008, 0x90040c02, 0x82000540, 0x00004000, 0x82081500, 0xffffc3ff, 0x82081540, 0x00002400, 0x4803910a, 0x59b400f6, - 0x90000518, 0x05fe07fe, 0x42001800, 0x0010e064, - 0x8c100502, 0x05000003, 0x42001800, 0x0010e066, + 0x90000518, 0x05fe07fe, 0x42001800, 0x00111ffe, + 0x8c100502, 0x05000003, 0x42001800, 0x00112000, 0x580c0004, 0x4803c857, 0x580c0006, 0x4803c857, 0x580c1800, 0x480fc857, 0x8d0c052a, 0x0500000c, 0x820c1d00, 0xf8000000, 0x05000009, 0x4c040000, - 0x4c080000, 0x40083800, 0x42000000, 0x0010e064, - 0x05b9fd4b, 0x5c001000, 0x5c000800, 0x4a0368f0, - 0x0010e063, 0x480768f1, 0x480b68f3, 0x59b400f6, + 0x4c080000, 0x40083800, 0x42000000, 0x00111ffe, + 0x05b9f88a, 0x5c001000, 0x5c000800, 0x4a0368f0, + 0x00111ffd, 0x480768f1, 0x480b68f3, 0x59b400f6, 0x90000538, 0x05fe07fe, 0x4203e000, 0xb0800000, - 0x600bf800, 0x05f1f5fe, 0x4807c857, 0x0501f837, + 0x600bf800, 0x05f1f572, 0x4807c857, 0x0501f837, 0x05000006, 0x82040d00, 0xffffff07, 0xb0040d48, 0x82081540, 0x00001000, 0x59300004, 0x8c000512, 0x05000002, 0x8408154c, 0x480a2800, 0x4c040000, @@ -9368,30 +9684,30 @@ static const uint32_t isp_2500_risc_code[] = { 0x90000538, 0x05fe07fe, 0x4203e000, 0xb0800000, 0x600bf800, 0x1c01f000, 0x61a07007, 0x4203e000, 0xb0800000, 0x600ff800, 0x40000000, 0x40000000, - 0x40000000, 0x0501b004, 0x80387040, 0x05b80bff, + 0x40000000, 0x0501b004, 0x80387040, 0x05b40f4a, 0x05fdf7f9, 0x1c01f000, 0x82000500, 0xffff0000, 0x82000580, 0x01050000, 0x0502000b, 0x599c0818, 0x8c040510, 0x05000008, 0x59a80806, 0x8c04050a, 0x05000005, 0x613c1100, 0x41781800, 0x41782000, - 0x05d9fdf0, 0x1c01f000, 0x05ddf92a, 0x05000004, - 0x59a804cc, 0x4803c857, 0x8c000502, 0x1c01f000, + 0x05d9fa9d, 0x1c01f000, 0x05d9fde0, 0x05000004, + 0x59a804d1, 0x4803c857, 0x8c000502, 0x1c01f000, 0x48d3c857, 0x5924100b, 0x82080500, 0x00001fff, 0x800000c2, 0x82080d00, 0x0000e000, 0x80040540, 0x82000540, 0x50000000, 0x4801a000, 0x82080500, 0xff000000, 0x4801a001, 0x90d1a402, 0x48d3c857, 0x1c01f000, 0x1c01f000, 0x4d340000, 0x59300407, 0x90006c92, 0x05021015, 0x5932680a, 0x0c01f001, - 0x0010925b, 0x00109227, 0x0010921f, 0x00109232, - 0x0010923e, 0x00109240, 0x0010924a, 0x0010925b, - 0x0010925b, 0x0010925b, 0x0010925b, 0x0010925b, - 0x0010925b, 0x0010925b, 0x0010925b, 0x00109256, - 0x0010925b, 0x0010924e, 0x05b9fbbc, 0x8d3c0500, + 0x0010974b, 0x00109717, 0x0010970f, 0x00109722, + 0x0010972e, 0x00109730, 0x0010973a, 0x0010974b, + 0x0010974b, 0x0010974b, 0x0010974b, 0x0010974b, + 0x0010974b, 0x0010974b, 0x0010974b, 0x00109746, + 0x0010974b, 0x0010973e, 0x05b5ff07, 0x8d3c0500, 0x0500003d, 0x59300229, 0x90000583, 0x05020031, - 0x05f9fa22, 0x0502002f, 0x0501f037, 0x8d3c051a, + 0x05f9f9f0, 0x0502002f, 0x0501f037, 0x8d3c051a, 0x0502002c, 0x8d3c0500, 0x0502002a, 0x8d3c0518, - 0x05020032, 0x8d3c0506, 0x0500002f, 0x050dfd9a, + 0x05020032, 0x8d3c0506, 0x0500002f, 0x050dfe42, 0x05000024, 0x0501f02c, 0x8d3c0500, 0x05000003, - 0x05f9fa12, 0x0502001f, 0x8d3c0518, 0x05020027, + 0x05f9f9e0, 0x0502001f, 0x8d3c0518, 0x05020027, 0x8d3c0506, 0x05000024, 0x59340200, 0x8c00050e, 0x05020018, 0x0501f020, 0x8d3c051a, 0x05020015, 0x8d3c0500, 0x05020013, 0x8d3c0518, 0x05000003, @@ -9402,34 +9718,35 @@ static const uint32_t isp_2500_risc_code[] = { 0x80000580, 0x0501f009, 0x833c0500, 0x00001800, 0x05fc07fc, 0x8d3c0516, 0x05fe07fa, 0x8d3c0500, 0x05fe07f8, 0x90000541, 0x5c026800, 0x1c01f000, - 0x59a8009d, 0x800001c0, 0x05000049, 0x4d2c0000, + 0x59a800a0, 0x800001c0, 0x05000049, 0x4d2c0000, 0x4d300000, 0x4c5c0000, 0x4c600000, 0x4c640000, 0x40025800, 0x4000c000, 0x4000c800, 0x42026000, - 0x00111a40, 0x592c040a, 0x81440580, 0x05020031, + 0x001159e4, 0x592c040a, 0x81440580, 0x05020031, 0x83240580, 0xffffffff, 0x05000004, 0x592c0005, 0x81240580, 0x0502002b, 0x592c0208, 0xb0000595, 0x05000005, 0x8d3c0518, 0x05000026, 0x8d3c0516, 0x05020024, 0x40640000, 0x812c0580, 0x05020014, 0x59300203, 0x90000580, 0x0500000d, 0x59300009, - 0x800001c0, 0x0500000a, 0x05f9fa8d, 0x4df00000, - 0x05f9f98e, 0x05f5ff57, 0x05020002, 0x64026203, - 0x5c03e000, 0x05f80a77, 0x497a6009, 0x592cc800, + 0x800001c0, 0x0500000a, 0x05f9fa5b, 0x4df00000, + 0x05f9f95b, 0x05f5ff20, 0x05020002, 0x64026203, + 0x5c03e000, 0x05f80a45, 0x497a6009, 0x592cc800, 0x4064c000, 0x4064b800, 0x0501f003, 0x592cb800, 0x485cc000, 0x497a5800, 0x592c0208, 0x82000580, - 0x00000155, 0x05000003, 0x05b9fef8, 0x0501f003, - 0x49425a0a, 0x0001fb82, 0x405e5800, 0x0501f003, + 0x00000155, 0x05000003, 0x05b9fa3f, 0x0501f003, + 0x49425a0a, 0x0001fba8, 0x405e5800, 0x0501f003, 0x412cc000, 0x592e5800, 0x812e59c0, 0x05fe07ca, - 0x4867509d, 0x4863509e, 0x5c00c800, 0x5c00c000, + 0x486750a0, 0x486350a1, 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x5c026000, 0x5c025800, 0x1c01f000, 0x4943c857, 0x4d440000, 0x4d340000, 0x4c580000, - 0x4d240000, 0x42024800, 0xffffffff, 0x61c0b00f, - 0x417a8800, 0x0001fb00, 0x05020002, 0x05fdffa9, - 0x81468800, 0x8058b040, 0x05fe07fb, 0x83440480, - 0x00000800, 0x05021006, 0x8d3c0502, 0x05000004, - 0x61c2880f, 0x6040b000, 0x05fdf7f3, 0x5c024800, + 0x4d240000, 0x42024800, 0xffffffff, 0x59a8b0ac, + 0x417a8800, 0x0001fb08, 0x05020002, 0x05fdffa9, + 0x81468800, 0x83440580, 0x000007f0, 0x05020002, + 0x60028810, 0x8058b040, 0x05fe07f7, 0x59a800ad, + 0x81440480, 0x05021006, 0x8d3c0502, 0x05000004, + 0x61c2880f, 0x6040b000, 0x05fdf7ef, 0x5c024800, 0x5c00b000, 0x5c026800, 0x5c028800, 0x1c01f000, - 0x4d300000, 0x59a8109d, 0x800811c0, 0x05000022, - 0x42026000, 0x00111a40, 0x59300203, 0x90000580, + 0x4d300000, 0x59a810a0, 0x800811c0, 0x05000022, + 0x42026000, 0x001159e4, 0x59300203, 0x90000580, 0x0502001d, 0x58080806, 0x58080005, 0x4802601d, 0x4806600a, 0x480a6009, 0x64166407, 0x64066203, 0x4a026403, 0x00000092, 0x41780800, 0x58080208, @@ -9437,927 +9754,947 @@ static const uint32_t isp_2500_risc_code[] = { 0x42000800, 0x80000040, 0x497a6416, 0x5808040b, 0x82000500, 0x0000f000, 0x82000580, 0x00003000, 0x05020004, 0x4a026416, 0x00000100, 0x84040d52, - 0x0005feaf, 0x5c026000, 0x1c01f000, 0x4803c856, - 0x05fdfb72, 0x0501f87a, 0x90d00482, 0x4a000000, - 0x50001ffc, 0x4803c856, 0x05fdfb6c, 0x0501f874, - 0x05fdf553, 0x4803c856, 0x4c580000, 0x4c500000, - 0x4c540000, 0x4d2c0000, 0x05fdfb56, 0x59325809, + 0x0005fee6, 0x5c026000, 0x1c01f000, 0x4803c856, + 0x05fdfb56, 0x0501f87a, 0x90d00482, 0x4a000000, + 0x50001ffc, 0x4803c856, 0x05fdfb50, 0x0501f874, + 0x05fdf549, 0x4803c856, 0x4c580000, 0x4c500000, + 0x4c540000, 0x4d2c0000, 0x05fdfb3a, 0x59325809, 0x4a01a006, 0x7f000000, 0x0501f869, 0x4a01a407, 0x00000101, 0x5930021b, 0x4801a207, 0x59a80002, 0x4801a008, 0x59a80003, 0x4801a009, 0x4a01a20a, 0x00000228, 0x4cd00000, 0x90d1a40b, 0x4a01a400, 0x00000101, 0x6411a200, 0x812e59c0, 0x05020003, - 0x59a800ce, 0x0501f002, 0x592c000f, 0x4801a001, + 0x59a800d3, 0x0501f002, 0x592c000f, 0x4801a001, 0x90d1a402, 0x4a01a400, 0x00000102, 0x6411a200, - 0x4979a401, 0x812e59c0, 0x05020003, 0x59a802cc, + 0x4979a401, 0x812e59c0, 0x05020003, 0x59a802d1, 0x0501f002, 0x592c020b, 0x4801a201, 0x90d1a402, 0x4a01a400, 0x00000103, 0x4a01a200, 0x00000200, - 0x6000b001, 0x4200a000, 0x001105f2, 0x90d0ac01, + 0x6000b001, 0x4200a000, 0x00114596, 0x90d0ac01, 0x50500000, 0x4400a800, 0x8050a000, 0x8054a800, 0x8058b040, 0x05fe07fb, 0x5c01a000, 0x60280801, 0x600011b8, 0x5c025800, 0x5c00a800, 0x5c00a000, - 0x5c00b000, 0x05fdf640, 0x4803c856, 0x4c580000, - 0x4c500000, 0x4c540000, 0x4d2c0000, 0x05fdfb23, + 0x5c00b000, 0x05fdf63c, 0x4803c856, 0x4c580000, + 0x4c500000, 0x4c540000, 0x4d2c0000, 0x05fdfb07, 0x90d00482, 0x4a000000, 0x50001ffc, 0x59325809, 0x4a01a006, 0x02000000, 0x05fdf7bc, 0x4803c856, - 0x4c580000, 0x4c500000, 0x4d2c0000, 0x05fdfb09, + 0x4c580000, 0x4c500000, 0x4d2c0000, 0x05fdfaed, 0x90d00482, 0x4a000000, 0x50001ffc, 0x59325809, 0x4a01a006, 0x7f000000, 0x0501f819, 0x4a01a407, 0x00000102, 0x5930021b, 0x4801a207, 0x59a80002, 0x4801a008, 0x59a80003, 0x4801a009, 0x6451a20a, 0x60140800, 0x600011b8, 0x5c025800, 0x5c00a000, - 0x5c00b000, 0x05fdf618, 0x4803c856, 0x4c580000, - 0x4c500000, 0x4d2c0000, 0x05fdfafc, 0x59325809, + 0x5c00b000, 0x05fdf614, 0x4803c856, 0x4c580000, + 0x4c500000, 0x4d2c0000, 0x05fdfae0, 0x59325809, 0x4a01a006, 0x02000000, 0x05fdf7e8, 0x58d00001, 0x82000500, 0xff000000, 0x800001c0, 0x05020004, 0x82000540, 0x00fffff0, 0x4801a001, 0x1c01f000, 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, 0x4d180000, 0x4803c856, 0x417a3000, - 0x05f9fed8, 0x59900805, 0x800409c0, 0x05000012, - 0x91947c09, 0x83180400, 0x00107661, 0x50000000, + 0x05f9fea2, 0x59900805, 0x800409c0, 0x05000012, + 0x91947c09, 0x83180400, 0x00107a7b, 0x50000000, 0x803c7c00, 0x583c0003, 0x811808ca, 0x82040c00, 0x00006139, 0x50040800, 0x80040580, 0x05000006, - 0x42000000, 0x0010e4b8, 0x051dfc4e, 0x90000541, + 0x42000000, 0x0011245c, 0x051dfed5, 0x90000541, 0x0501f004, 0x811a3000, 0x91180585, 0x05fe07e9, 0x5c023000, 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, 0x1c01f000, 0x4d900000, 0x4dd00000, 0x4da40000, 0x4d140000, 0x4cd80000, 0x4d180000, 0x4803c856, 0x598c080b, 0x800409c0, - 0x05000002, 0x05f1fc0e, 0x417a3000, 0x05f9fead, + 0x05000002, 0x05f1fb7e, 0x417a3000, 0x05f9fe77, 0x59900805, 0x800409c0, 0x0500000f, 0x91947c09, - 0x83180400, 0x00107661, 0x50000000, 0x803c7c00, + 0x83180400, 0x00107a7b, 0x50000000, 0x803c7c00, 0x811808ca, 0x82040c00, 0x00006139, 0x50040800, 0x48047803, 0x4a007801, 0x000001f4, 0x64287800, 0x64107802, 0x811a3000, 0x91180585, 0x05fe07ec, 0x5c023000, 0x5c01b000, 0x5c022800, 0x5c034800, 0x5c03a000, 0x5c032000, 0x1c01f000, 0x41781000, - 0x42026000, 0x00111b00, 0x59a8183b, 0x480a6402, + 0x42026000, 0x00115aa4, 0x59a8183d, 0x480a6402, 0x4a026202, 0x0000ffff, 0x80081000, 0x800c1840, 0x05000003, 0x91326430, 0x05fdf7f9, 0x1c01f000, - 0x5c036000, 0x4db00000, 0x49b3c857, 0x4933c857, - 0x813261c0, 0x0500002d, 0x59300203, 0x90000580, - 0x0500002a, 0x59300407, 0x4803c857, 0x90000d84, - 0x0500000c, 0x90000d81, 0x0500000a, 0x90000d83, - 0x05000004, 0x90000d86, 0x05020016, 0x0519ff00, - 0x5930001e, 0x800001c0, 0x05120a1c, 0x0501f011, - 0x5930000a, 0x82000580, 0x00110210, 0x0500000d, - 0x5930082a, 0x4807c857, 0x4d300000, 0x40066000, - 0x0511fab7, 0x5c026000, 0x05020006, 0x5804001e, - 0x4803c857, 0x81300580, 0x05020002, 0x4978081e, - 0x641e6407, 0x497a6009, 0x4a026004, 0x00004000, - 0x59a8005c, 0xb0000c91, 0x05001002, 0x80000102, - 0x48026006, 0x497a6205, 0x1c01f000, 0x91640490, - 0x05021007, 0x42000000, 0x0010e442, 0x051dfbd5, - 0x4967c857, 0x80026580, 0x1c01f000, 0x8166c9c0, - 0x05000018, 0x41626000, 0x41580000, 0x59300a03, - 0x90040d80, 0x05000007, 0x91326430, 0x81300c80, - 0x05fc17fb, 0x42026000, 0x00111b00, 0x05fdf7f8, + 0x83300480, 0x00115aa4, 0x0500100e, 0x05d9fccf, + 0x05b40d4d, 0x457a6000, 0x4a026202, 0x0000ffff, + 0x05011000, 0x91300403, 0x4803c840, 0x64b3c842, + 0x59a8023e, 0x80000000, 0x4803523e, 0x1c01f000, + 0x4933c857, 0x83300580, 0x001159b4, 0x0500000b, + 0x83300580, 0x001159e4, 0x05000008, 0x83300580, + 0x00115a14, 0x05000005, 0x83300580, 0x00115a74, + 0x05000002, 0x05b5fd34, 0x42000000, 0x001123ea, + 0x051df676, 0x5c036000, 0x4db00000, 0x49b3c857, + 0x4933c857, 0x813261c0, 0x0500002d, 0x59300203, + 0x90000580, 0x0500002a, 0x59300407, 0x4803c857, + 0x90000d84, 0x0500000c, 0x90000d81, 0x0500000a, + 0x90000d83, 0x05000004, 0x90000d86, 0x05020016, + 0x051df935, 0x5930001e, 0x800001c0, 0x05120aae, + 0x0501f011, 0x5930000a, 0x82000580, 0x001141b4, + 0x0500000d, 0x5930082a, 0x4807c857, 0x4d300000, + 0x40066000, 0x0511fb48, 0x5c026000, 0x05020006, + 0x5804001e, 0x4803c857, 0x81300580, 0x05020002, + 0x4978081e, 0x641e6407, 0x497a6009, 0x4a026004, + 0x00004000, 0x59a8005f, 0xb0000c91, 0x05001002, + 0x80000102, 0x48026006, 0x497a6205, 0x1c01f000, + 0x91640490, 0x05021007, 0x42000000, 0x001123e4, + 0x051dfe3b, 0x4967c857, 0x80026580, 0x1c01f000, + 0x8166c9c0, 0x05000016, 0x41626000, 0x41580000, + 0x59300a03, 0x90040d80, 0x05000006, 0x91326430, + 0x81300c80, 0x05fc17fb, 0x40be6000, 0x05fdf7f9, 0x4933c857, 0x8166c840, 0x91300c30, 0x80040480, 0x05021005, 0x4006c000, 0x64226203, 0x813261c0, - 0x1c01f000, 0x4202c000, 0x00111b00, 0x05fdf7fb, - 0x42000000, 0x0010e442, 0x051dfbb6, 0x4933c856, - 0x417a6000, 0x05fdf7f6, 0x4933c857, 0x91380593, - 0x05020008, 0x59300004, 0x8c00053e, 0x05000004, - 0x05f9f8e3, 0x05f9f838, 0x05f9f8d2, 0x1c01f000, - 0x4933c857, 0x598800bc, 0x80000000, 0x480310bc, - 0x1c01f000, 0x4933c857, 0x59300203, 0x90003491, - 0x05ba199e, 0x4d2c0000, 0x0c01f803, 0x5c025800, - 0x1c01f000, 0x00109452, 0x00109966, 0x00109af1, - 0x00109452, 0x00109b40, 0x001095ab, 0x00109452, - 0x00109452, 0x001098f9, 0x00109452, 0x00109452, - 0x00109452, 0x00109452, 0x00109452, 0x0010ae4b, - 0x00109452, 0x00109452, 0x05b9f988, 0x4933c857, - 0x59300203, 0x90003491, 0x05ba1984, 0x0c01f001, - 0x00109469, 0x0010a653, 0x00109469, 0x00109469, - 0x00109469, 0x00109469, 0x00109469, 0x00109469, - 0x0010a5f3, 0x0010a672, 0x0010a6f3, 0x0010a672, - 0x0010a6f3, 0x00109469, 0x0010ae71, 0x00109469, - 0x00109469, 0x05b9f971, 0x05b9f970, 0x4933c857, - 0x4d300000, 0x4d1c0000, 0x59300203, 0x9000058f, - 0x05ba096a, 0x91380593, 0x05020025, 0x59300c03, - 0xb0040586, 0x05000015, 0xb0040584, 0x0502000a, - 0x4d300000, 0x5932602a, 0x050dfce8, 0x5c026000, - 0x0500001c, 0x591c0416, 0x8400054a, 0x48023c16, - 0x0501f010, 0x59300019, 0x82000500, 0xff000000, - 0x82000580, 0xc2000000, 0x05020012, 0x5930001e, - 0x05fdfd56, 0x0501f00f, 0x59300416, 0x84000504, - 0x48026416, 0x5930141d, 0x050dfccb, 0x05000009, - 0x411e6000, 0x5930001c, 0x80000540, 0x05000005, - 0x497a601c, 0x0801f800, 0x0501f002, 0x05f5ffd2, - 0x5c023800, 0x5c026000, 0x0005f7dc, 0x4933c857, - 0x4d2c0000, 0x59325809, 0x59300203, 0x90003491, - 0x05ba193a, 0x0c01f803, 0x5c025800, 0x1c01f000, - 0x001094b5, 0x001094b5, 0x001094b5, 0x001094ca, - 0x00109518, 0x001094b5, 0x001094b5, 0x001094b5, - 0x001094b6, 0x001094b5, 0x001094b5, 0x001094b5, - 0x001094b5, 0x001094b5, 0x001094b5, 0x001094b5, - 0x00109502, 0x05b9f925, 0x4933c857, 0xb1380580, - 0x05ba0922, 0x4a026008, 0x00082000, 0x640e6203, - 0x493a6403, 0x64065c0c, 0x592c0011, 0x48026013, - 0x497a6015, 0x592c020c, 0x800000c2, 0x800010c4, - 0x80081400, 0x480a6006, 0x0001f98d, 0x42000800, - 0x80000060, 0x0005f69d, 0x4933c857, 0xb1380490, - 0x05ba190e, 0xb1380489, 0x05b8190c, 0x0c01f001, - 0x001094d8, 0x001094e5, 0x001094d7, 0x001094d7, - 0x001094d7, 0x001094d7, 0x001094eb, 0x05b9f903, - 0x050dfbc6, 0x05000003, 0x64426203, 0x0501f002, - 0x64126203, 0x640a5c0c, 0x592c020b, 0x48025c0d, - 0x592c020d, 0x48025a0b, 0x592c0010, 0x48025811, - 0x1c01f000, 0x05f5ff67, 0x0509ffe3, 0x05000003, - 0x641a5a0a, 0x0001fb82, 0x0005f7dc, 0x05f5ff61, - 0x4d3c0000, 0x417a7800, 0x05c5fe3e, 0x5c027800, - 0x60503000, 0x41782800, 0x60082000, 0x4d400000, - 0x4d440000, 0x59368c03, 0x60a68000, 0x0511f91c, - 0x5c028800, 0x5c028000, 0x42000000, 0x0010e454, - 0x051dfae0, 0x0509ffcc, 0x000407dc, 0x64a65a0a, - 0x0001fb82, 0x0005f7dc, 0x4933c857, 0xb13805a1, - 0x05000006, 0xb13805a0, 0x05020007, 0x59cc0002, - 0x8c000526, 0x05000005, 0xb1380589, 0x05000004, - 0x05b9f8ce, 0x05fdff27, 0x1c01f000, 0x59a8005e, - 0x48026205, 0x64126203, 0x5930001c, 0x80000540, - 0x05000003, 0x497a601c, 0x0801f800, 0x1c01f000, - 0x4933c857, 0xb1380588, 0x05000003, 0xb1380593, - 0x05ba08be, 0x592c020a, 0x90000587, 0x05000008, - 0x59300013, 0x80000540, 0x05000005, 0x592c0810, - 0x80040480, 0x48025810, 0x64565a0a, 0x592c020a, - 0x80000540, 0x05020002, 0x64025a0a, 0x0001fb82, - 0x0005f7dc, 0x4933c857, 0x4d2c0000, 0x4c500000, - 0x4c540000, 0x4c580000, 0x4c5c0000, 0x4c600000, - 0x4c640000, 0x4c100000, 0x05b9fc4c, 0x05b808a3, - 0x497a5a0a, 0x59a800d0, 0x82000500, 0x0000f000, - 0x48025c0b, 0x59a808b6, 0x90040c18, 0x48065a0b, - 0x412cb800, 0x4d2c0000, 0x41cca000, 0x6004c000, - 0x60b0c800, 0x900404ad, 0x05021004, 0x912cac0d, - 0x0509fa72, 0x0501f023, 0x40043000, 0x60b00800, - 0x912cac0d, 0x0509fa6d, 0x901834ac, 0x4c180000, - 0x05b9fc32, 0x5c003000, 0x05000012, 0x8060c000, - 0x4a025808, 0x00000110, 0x492cb801, 0x90180cbd, - 0x05021005, 0x40180800, 0x912cac09, 0x0509fa5f, - 0x0501f010, 0x9064cc3c, 0x901834bc, 0x60f00800, - 0x412cb800, 0x912cac09, 0x0509fa58, 0x05fdf7ec, - 0x5c025800, 0x592c020a, 0x8400055e, 0x48025a0a, - 0x592c040b, 0x80640540, 0x48025c0b, 0x0501f002, - 0x5c025800, 0x5c002000, 0x813669c0, 0x05000003, - 0x59343403, 0x0501f002, 0x61fc31ff, 0x4932580c, - 0x481a5c0a, 0xb0100594, 0x0502001a, 0x4a02580c, - 0xffffffff, 0x491e5817, 0x41781000, 0x831c0580, - 0xffffffff, 0x0500000e, 0x591c0009, 0x80000d40, - 0x0500000b, 0x58040208, 0x82000500, 0x000000ff, - 0x90000592, 0x05000005, 0xb00005a0, 0x05000003, - 0x90000588, 0x05020002, 0x58041009, 0x480a5809, - 0x592c040b, 0x81200540, 0x48025c0b, 0x0501f002, - 0x49225c09, 0x846001c0, 0x80100540, 0x48025808, - 0x051dfb9c, 0x05020014, 0x592c0001, 0x497a5801, - 0x4c000000, 0x42000000, 0x0010de60, 0x50000000, - 0x48025802, 0x0001fb82, 0x5c025800, 0x812e59c0, - 0x05fe07f4, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x5c00b000, 0x5c00a800, 0x5c00a000, 0x5c025800, - 0x1c01f000, 0x0519ff30, 0x05fdf7f7, 0x4933c857, - 0x91380d95, 0x05020008, 0x050dfaf0, 0x05000005, - 0x5930082a, 0x58040416, 0x8400051a, 0x48000c16, - 0x0005f7dc, 0x91380d96, 0x05ba0824, 0x0005f7dc, - 0x4933c857, 0x4d2c0000, 0x4c500000, 0x4c540000, - 0x4c580000, 0x59325809, 0x91cca406, 0x59cc1806, - 0x820c0580, 0x01000000, 0x05020003, 0x6008b000, - 0x0501f00a, 0x6020b000, 0x912cac09, 0x051dfae0, - 0x8c0c0500, 0x05000007, 0x6020b000, 0x592e5801, - 0x812e59c0, 0x05b8080d, 0x912cac09, 0x051dfad8, - 0x0501f812, 0x5c00b000, 0x5c00a800, 0x5c00a000, - 0x5c025800, 0x1c01f000, 0x4933c857, 0x4c500000, - 0x4c540000, 0x4c580000, 0x91cca406, 0x5930a809, - 0x9054ac09, 0x601cb000, 0x051dfac9, 0x5c00b000, - 0x5c00a800, 0x5c00a000, 0x4933c857, 0x0509fee6, - 0x000407dc, 0x4d2c0000, 0x050dfd67, 0x05020008, - 0x41780800, 0x4d400000, 0x60028000, 0x050dfb94, - 0x5c028000, 0x5c025800, 0x0005f7dc, 0x5931d82d, - 0x58ef400b, 0x58ee580d, 0x4a025a08, 0x00000103, - 0x58ec0009, 0x0801f800, 0x5c025800, 0x0005f7dc, - 0x4933c857, 0x59cc1806, 0x820c0580, 0x02000000, - 0x0502001f, 0x4a026802, 0x00fffffd, 0x5934000a, - 0x84000504, 0x4802680a, 0x60000000, 0x4c0c0000, - 0x0501f824, 0x5c001800, 0x000407dc, 0x59300c29, - 0x900405a1, 0x05020006, 0x05c9f80d, 0x61fc19ff, - 0x60102000, 0x60483000, 0x05d9fa3a, 0x59300809, - 0x800409c0, 0x000407dc, 0x4a000a08, 0x00000103, - 0x480c0809, 0x5931d82d, 0x58ef400b, 0x58ee580d, - 0x58ec0009, 0x0801f800, 0x0005f7dc, 0x42000000, - 0x0010e45d, 0x051df9bf, 0x60180000, 0x4c0c0000, - 0x0501f808, 0x5c001800, 0x05fc07ed, 0x4c0c0000, - 0x0501f823, 0x5c001800, 0x05fe07e9, 0x1c01f000, - 0x4933c857, 0x4d400000, 0x4d240000, 0x4d200000, - 0x5932481d, 0x40028000, 0x59300429, 0xb0000d91, - 0x05000003, 0x90000da1, 0x05020010, 0x05c5ffe4, - 0x60001802, 0x051dfae0, 0x05020004, 0x59300429, - 0x900005a1, 0x05c40d3a, 0x59300429, 0xb0000591, - 0x05020002, 0x41781800, 0x60040000, 0x05e5f811, - 0x80000580, 0x0501f002, 0x90000541, 0x5c024000, - 0x5c024800, 0x5c028000, 0x1c01f000, 0x4933c857, - 0x4d2c0000, 0x59325809, 0x812e59c0, 0x0502000b, - 0x497a6006, 0x497a6205, 0x050dfa50, 0x05000002, - 0x497a6417, 0x4d380000, 0x608a7000, 0x0501fb0f, - 0x5c027000, 0x80000580, 0x5c025800, 0x1c01f000, - 0x4933c857, 0x4d2c0000, 0x4c500000, 0x4c540000, - 0x4c580000, 0x59325809, 0x592e5801, 0x912cac09, - 0x91cca406, 0x59a808d0, 0x82040d00, 0x000003ff, - 0x9004148f, 0x05001011, 0x603cb000, 0x051dfa40, - 0x592e5801, 0x912cac09, 0x90080c8f, 0x05001008, - 0x603cb000, 0x051dfa3a, 0x592e5801, 0x912cac09, - 0x9004148f, 0x05001005, 0x603c1000, 0x4008b000, - 0x051dfa33, 0x0501f003, 0x4004b000, 0x051dfa30, - 0x5931d82d, 0x58ef400b, 0x58ee580d, 0x4a025a08, - 0x00000103, 0x592e5801, 0x58ec0009, 0x0801f800, - 0x0005ffdc, 0x5c00b000, 0x5c00a800, 0x5c00a000, - 0x5c025800, 0x1c01f000, 0x4933c857, 0x4d2c0000, - 0x4c500000, 0x4c540000, 0x4c580000, 0x59cc0006, - 0x82000d80, 0x01000000, 0x05000021, 0x59cc0007, - 0x9000b1c0, 0x8258b500, 0x000000ff, 0x8058b104, - 0x9058b402, 0x90580c87, 0x05001002, 0x6018b000, - 0x91cca406, 0x59301009, 0x800811c0, 0x05b40f3f, - 0x9008ac09, 0x051dfa0a, 0x82000d00, 0xff000000, - 0x800409c0, 0x05000014, 0x8200b500, 0x000000ff, - 0x05000011, 0x8058b104, 0x90580c8e, 0x05001002, - 0x6034b000, 0x58081001, 0x800811c0, 0x05b40f2f, - 0x9008ac09, 0x051df9fa, 0x0501f007, 0x59301009, - 0x800811c0, 0x05b40f29, 0x48001009, 0x59cc0007, - 0x4800100a, 0x05fdff2d, 0x5c00b000, 0x5c00a800, - 0x5c00a000, 0x5c025800, 0x1c01f000, 0x4933c857, + 0x1c01f000, 0x40bec000, 0x05fdf7fc, 0x42000000, + 0x001123e4, 0x051dfe1e, 0x4933c856, 0x417a6000, + 0x05fdf7f7, 0x59a80006, 0x8c000510, 0x05fc07d9, + 0x59a86a3e, 0x803469c0, 0x05000015, 0x59aa603f, + 0x59300a03, 0x90040d80, 0x0502000b, 0x64226203, + 0x80346840, 0x4837523e, 0x91300c30, 0x800404af, + 0x05001003, 0x83780d40, 0x00115aa4, 0x4807503f, + 0x1c01f000, 0x91326430, 0x81300caf, 0x05fc17f1, + 0x42026000, 0x00115aa4, 0x05fdf7ee, 0x42000000, + 0x001123e3, 0x051dfe01, 0x80026580, 0x1c01f000, + 0x4933c857, 0x91380593, 0x05020008, 0x59300004, + 0x8c00053e, 0x05000004, 0x05f9f86f, 0x05f5ffc4, + 0x05f9f85e, 0x1c01f000, 0x4933c857, 0x598800bf, + 0x80000000, 0x480310bf, 0x1c01f000, 0x4933c857, + 0x59300203, 0x90003491, 0x05b61ca7, 0x4d2c0000, + 0x0c01f803, 0x5c025800, 0x1c01f000, 0x00109984, + 0x00109ea0, 0x0010a02b, 0x00109984, 0x0010a07a, + 0x00109ae1, 0x00109984, 0x00109984, 0x00109e33, + 0x00109984, 0x00109984, 0x00109984, 0x00109984, + 0x00109984, 0x0010b3e4, 0x00109984, 0x00109984, + 0x05b5fc91, 0x4933c857, 0x59300203, 0x90003491, + 0x05b61c8d, 0x0c01f001, 0x0010999b, 0x0010abc5, + 0x0010999b, 0x0010999b, 0x0010999b, 0x0010999b, + 0x0010999b, 0x0010999b, 0x0010ab65, 0x0010abe4, + 0x0010ac65, 0x0010abe4, 0x0010ac65, 0x0010999b, + 0x0010b40a, 0x0010999b, 0x0010999b, 0x05b5fc7a, + 0x05b5fc79, 0x4933c857, 0x4d300000, 0x4d1c0000, + 0x59300203, 0x9000058f, 0x05b60c73, 0x91380593, + 0x05020025, 0x59300c03, 0xb0040586, 0x05000015, + 0xb0040584, 0x0502000a, 0x4d300000, 0x5932602a, + 0x050dfd52, 0x5c026000, 0x0500001c, 0x591c0416, + 0x8400054a, 0x48023c16, 0x0501f010, 0x59300019, + 0x82000500, 0xff000000, 0x82000580, 0xc2000000, + 0x05020012, 0x5930001e, 0x05fdfd14, 0x0501f00f, + 0x59300416, 0x84000504, 0x48026416, 0x5930141d, + 0x050dfd35, 0x05000009, 0x411e6000, 0x5930001c, + 0x80000540, 0x05000005, 0x497a601c, 0x0801f800, + 0x0501f002, 0x05f5ff5e, 0x5c023800, 0x5c026000, + 0x0009f010, 0x4933c857, 0x4d2c0000, 0x59325809, + 0x59300203, 0x90003491, 0x05b61c43, 0x0c01f803, + 0x5c025800, 0x1c01f000, 0x001099e7, 0x001099e7, + 0x001099e7, 0x001099fc, 0x00109a4a, 0x001099e7, + 0x001099e7, 0x001099e7, 0x001099e8, 0x001099e7, + 0x001099e7, 0x001099e7, 0x001099e7, 0x001099e7, + 0x001099e7, 0x001099e7, 0x00109a34, 0x05b5fc2e, + 0x4933c857, 0xb1380580, 0x05b60c2b, 0x4a026008, + 0x00082000, 0x640e6203, 0x493a6403, 0x64065c0c, + 0x592c0011, 0x48026013, 0x497a6015, 0x592c020c, + 0x800000c2, 0x800010c4, 0x80081400, 0x480a6006, + 0x0001f995, 0x42000800, 0x80000060, 0x0005f6d4, + 0x4933c857, 0xb1380490, 0x05b61c17, 0xb1380489, + 0x05b41c15, 0x0c01f001, 0x00109a0a, 0x00109a17, + 0x00109a09, 0x00109a09, 0x00109a09, 0x00109a09, + 0x00109a1d, 0x05b5fc0c, 0x050dfc2c, 0x05000003, + 0x64426203, 0x0501f002, 0x64126203, 0x640a5c0c, + 0x592c020b, 0x48025c0d, 0x592c020d, 0x48025a0b, + 0x592c0010, 0x48025811, 0x1c01f000, 0x05f5fef3, + 0x050df83a, 0x05000003, 0x641a5a0a, 0x0001fba8, + 0x0009f010, 0x05f5feed, 0x4d3c0000, 0x417a7800, + 0x05c5f9a3, 0x5c027800, 0x60503000, 0x41782800, + 0x60082000, 0x4d400000, 0x4d440000, 0x59368c03, + 0x60a68000, 0x0511f991, 0x5c028800, 0x5c028000, + 0x42000000, 0x001123f8, 0x051dfd29, 0x050df823, + 0x00080010, 0x64a65a0a, 0x0001fba8, 0x0009f010, + 0x4933c857, 0xb13805a1, 0x05000006, 0xb13805a0, + 0x05020007, 0x59cc0002, 0x8c000526, 0x05000005, + 0xb1380589, 0x05000004, 0x05b5fbd7, 0x05fdff27, + 0x1c01f000, 0x59a80061, 0x48026205, 0x64126203, + 0x5930001c, 0x80000540, 0x05000003, 0x497a601c, + 0x0801f800, 0x1c01f000, 0x4933c857, 0xb1380588, + 0x05000003, 0xb1380593, 0x05b60bc7, 0x592c020a, + 0x90000587, 0x05000008, 0x59300013, 0x80000540, + 0x05000005, 0x592c0810, 0x80040480, 0x48025810, + 0x64565a0a, 0x592c020a, 0x80000540, 0x05020002, + 0x64025a0a, 0x0001fba8, 0x0009f010, 0x4933c857, 0x4d2c0000, 0x4c500000, 0x4c540000, 0x4c580000, - 0x6008b000, 0x59cc0806, 0x82040580, 0x01000000, - 0x05000004, 0x8204b500, 0x0000ffff, 0x8058b104, - 0x91cca406, 0x59300009, 0x9000ac09, 0x051df9dc, - 0x05fdff16, 0x5c00b000, 0x5c00a800, 0x5c00a000, - 0x5c025800, 0x1c01f000, 0x4933c857, 0x4937c857, - 0x4d1c0000, 0x05edfedd, 0x05020020, 0x59cc0001, - 0x82000500, 0x00ffffff, 0x59341002, 0x82081500, - 0x00ffffff, 0x80080580, 0x05020018, 0x497a6205, - 0x60d40800, 0x050dfa35, 0x0502000f, 0x591c001e, - 0x800001c0, 0x0500000c, 0x497a381e, 0x591c0416, - 0x8c000502, 0x05b40ef1, 0x84000502, 0x48023c16, - 0x591c1407, 0x90080583, 0x05000005, 0x90080586, - 0x05000005, 0x05fdfcdf, 0x0501f004, 0x0501f805, - 0x0501f002, 0x0501f8c4, 0x5c023800, 0x1c01f000, - 0x4d2c0000, 0x591e5809, 0x4933c857, 0x491fc857, - 0x493bc857, 0x492fc857, 0x91380595, 0x050000b8, - 0x91380596, 0x050200b4, 0x4d300000, 0x411e6000, - 0x59cc0207, 0x4803c857, 0x82000d00, 0x0000ff00, - 0x82040580, 0x00001700, 0x05000004, 0x82040580, - 0x00000300, 0x05020064, 0x050df990, 0x05000006, - 0x591c0403, 0xb0000590, 0x05020003, 0x05fdfcbd, - 0x0501f09d, 0x591c0203, 0x4803c857, 0x9000058d, - 0x05000040, 0x812e59c0, 0x0500009a, 0x591c0202, - 0x4803c857, 0x82000580, 0x0000ffff, 0x05020081, - 0x050df97e, 0x05000004, 0x591c0203, 0x90000d8e, - 0x0502007c, 0x592c020e, 0x4803c857, 0x90000503, - 0x90000582, 0x05020007, 0x592c0813, 0x591c0013, - 0x4803c857, 0x4807c857, 0x80040580, 0x05020071, - 0x591c0416, 0x4803c857, 0x8c000500, 0x0502006d, - 0x42000000, 0x0010e435, 0x051df8a6, 0x41780800, - 0x591c1006, 0x60280000, 0x05f5f854, 0x592c040a, - 0x4803c857, 0x800001c0, 0x0500000a, 0x80080c80, - 0x05001003, 0x05b60e99, 0x80001040, 0x480a5c0a, - 0x800811c0, 0x05020003, 0x0509fa7b, 0x0501f06a, - 0x0509fe60, 0x591c0819, 0x591c001a, 0x4806580c, - 0x4802580d, 0x592e4414, 0x81224110, 0x59300008, - 0x8c000500, 0x05be08f8, 0x497a3809, 0x0001fab8, - 0x0502004c, 0x411e6000, 0x05fdfc7a, 0x0501f05a, - 0x05fdfcab, 0x05000015, 0x591c0006, 0x48026006, - 0x4926601d, 0x4936600a, 0x050df931, 0x640e6407, - 0x492e6009, 0x591c0819, 0x591c101a, 0x48066019, - 0x480a601a, 0x4d380000, 0x591e7403, 0x4d300000, - 0x411e6000, 0x05fdfc67, 0x5c026000, 0x0009f800, - 0x5c027000, 0x0501f044, 0x59a8005e, 0x48023a05, - 0x0501f041, 0x59cc0407, 0x9000058b, 0x05020026, - 0x59340a00, 0x84040d0e, 0x48066a00, 0x592c0a08, - 0x82040d00, 0x000000ff, 0x90040d94, 0x05000002, - 0x640e6229, 0x59300008, 0x8c000500, 0x05be08ca, - 0x4d400000, 0x497a5c0d, 0x600e8000, 0x592c0a0c, - 0x05e1fea7, 0x051df96c, 0x05020006, 0x0001fb82, - 0x59300a29, 0x90040d83, 0x05080e1e, 0x497a6009, - 0x5c028000, 0x4a026403, 0x00000085, 0x64266203, - 0x640a6407, 0x42000800, 0x80004040, 0x050dff08, - 0x0005feab, 0x4203e000, 0xb0800000, 0x6023f800, - 0x0501f019, 0x59cc0207, 0x82000580, 0x00002a00, - 0x05020004, 0x59a8005e, 0x48023a05, 0x0501f012, - 0x812e59c0, 0x05b40e39, 0x0005f9f3, 0x497a6027, - 0x05e9fc64, 0x4a025a08, 0x00000103, 0x591c0008, - 0x8c000500, 0x05be08a0, 0x591c0402, 0x48025c0a, - 0x640e5a0a, 0x497a5c0d, 0x0001fb82, 0x05fdfc21, - 0x05e1fa17, 0x5c026000, 0x0005ffdc, 0x0501f002, - 0x5c026000, 0x5c025800, 0x1c01f000, 0x0501f813, - 0x05fdf7fd, 0x4933c857, 0x91380595, 0x05020004, - 0x59a8005e, 0x48023a05, 0x0501f009, 0x91380596, - 0x05020009, 0x4d300000, 0x411e6000, 0x0519fb04, - 0x0005fe4e, 0x0005ffdc, 0x5c026000, 0x497a381e, - 0x0005ffdc, 0x1c01f000, 0x4c5c0000, 0x591c0416, - 0x84000540, 0x48023c16, 0x59ccb80b, 0x4933c857, - 0x491fc857, 0x492fc857, 0x4803c857, 0x485fc857, - 0x050df8ca, 0x05020007, 0x8c5c053c, 0x05000005, - 0x59a8005e, 0x48023a05, 0x497a381e, 0x0501f068, - 0x4d300000, 0x411e6000, 0x0509f82e, 0x5c026000, - 0x591c0407, 0x90000580, 0x05000061, 0x591c0403, - 0xb0000590, 0x0502000a, 0x4d300000, 0x411e6000, - 0x64066203, 0x42000800, 0x80000043, 0x0005feab, - 0x5c026000, 0x497a381e, 0x0501f055, 0x591c0203, - 0x9000058d, 0x0500001c, 0x812e59c0, 0x05b40de7, - 0x592c020e, 0x4803c857, 0x8c000500, 0x0502001b, - 0x8c000502, 0x05000014, 0x591c0416, 0x8c00051c, - 0x05020007, 0x591c0013, 0x4803c857, 0x800001c0, - 0x0500000d, 0x591c0014, 0x48023818, 0x4a023814, - 0x0fffffff, 0x592c020c, 0x8400051e, 0x48025a0c, - 0x42000000, 0x0010e437, 0x0519ffd2, 0x64063a16, - 0x0501f01a, 0x42000000, 0x0010e438, 0x0519ffcd, - 0x641e3a16, 0x0501f015, 0x59300017, 0x591c0817, - 0x80040580, 0x0502002e, 0x8c5c053a, 0x05fe07f6, - 0x59cc000a, 0x592c1813, 0x4803c857, 0x480fc857, - 0x800c0580, 0x05fc07f0, 0x59cc000a, 0x4803c857, - 0x48023818, 0x48023817, 0x42000000, 0x0010e436, - 0x0519ffb8, 0x64163a16, 0x050df878, 0x0500001a, - 0x591c0416, 0x8c00051a, 0x05000017, 0x4803c857, - 0x8c00051e, 0x05000016, 0x4130b800, 0x05fdfbd4, - 0x0500000f, 0x4926601d, 0x64066203, 0x647a6403, - 0x585c041b, 0x4802641b, 0x585c021b, 0x4802621b, - 0x591e680a, 0x4936600a, 0x050df855, 0x64066407, - 0x42000800, 0x80000040, 0x0005feab, 0x405e6000, - 0x0501f003, 0x5c00b800, 0x0509f70e, 0x5c00b800, - 0x0005f7dc, 0x4933c857, 0x4d1c0000, 0x05edfd6b, - 0x0502003f, 0x59cc0001, 0x59341002, 0x80080580, - 0x82000500, 0x00ffffff, 0x05020037, 0x5930141b, - 0x050df909, 0x05b40d89, 0x591c1407, 0x90080587, - 0x05000031, 0x90080582, 0x0500002f, 0x90080580, - 0x0500002d, 0x591c0202, 0x82000d80, 0x0000ffff, - 0x05000004, 0x59301a1b, 0x800c0580, 0x05020026, - 0x91380595, 0x05000022, 0x4d300000, 0x4d2c0000, - 0x411e6000, 0x59325809, 0x0509fc63, 0x05b40d73, - 0x592c0208, 0x82000500, 0x000000ff, 0x90000594, - 0x05000002, 0x640e6229, 0x497a5c0d, 0x600e8000, - 0x592c0a0c, 0x05e1fdba, 0x051df87f, 0x05020006, - 0x0001fb82, 0x59300a29, 0x90040d83, 0x05080d31, - 0x497a6009, 0x5c025800, 0x4a026403, 0x00000085, - 0x64266203, 0x640a6407, 0x42000800, 0x80004040, - 0x0005feab, 0x5c026000, 0x0501f003, 0x59a8005e, - 0x48023a05, 0x497a381e, 0x0005ffdc, 0x5c023800, - 0x1c01f000, 0x4933c857, 0x4c580000, 0x4d2c0000, - 0x59325809, 0x59342200, 0x82102500, 0xffffdffd, - 0x48126a00, 0x91383595, 0x05000009, 0x0509fc36, - 0x05000047, 0x050dfab8, 0x05020003, 0x6008b000, - 0x050dfa9f, 0x0501fa2a, 0x0501f059, 0x91cc1408, - 0x6008b000, 0x91341c06, 0x0501ffa9, 0x0502000f, - 0x91cc140a, 0x6008b000, 0x91341c08, 0x0501ffa4, - 0x0502000a, 0x05c5face, 0x59342200, 0x59cc1007, - 0x800811c0, 0x05000003, 0x480a6801, 0x84102542, - 0x48126a00, 0x0501f048, 0x4d3c0000, 0x417a7800, - 0x05c5fa7c, 0x5c027800, 0x42000000, 0x0010e454, - 0x0519ff28, 0x59340200, 0x84000558, 0x48026a00, - 0x4d300000, 0x05fdfb4a, 0x05b40d20, 0x4926601d, - 0x4936600a, 0x497a6009, 0x64066407, 0x64066403, - 0x600c3000, 0x0519fcc2, 0x05c5fd55, 0x59240400, - 0x8c00050a, 0x0502000b, 0x41782800, 0x60043000, - 0x4d400000, 0x60a68000, 0x0515fed5, 0x5c028000, - 0x64126407, 0x641e6203, 0x6406642c, 0x0501f005, - 0x64066203, 0x602c0800, 0x05ddfc1b, 0x05f1ff9e, - 0x5c026000, 0x0509fbf4, 0x0500001d, 0x050dfa76, - 0x0502001d, 0x0501f9ea, 0x0501f019, 0x42000000, - 0x0010e457, 0x0519feff, 0x4d3c0000, 0x417a7800, - 0x05c5fa4c, 0x42000000, 0x0010e454, 0x0519fef9, + 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4c100000, + 0x05b5ff51, 0x05b40bac, 0x497a5a0a, 0x59a800d5, + 0x82000500, 0x0000f000, 0x48025c0b, 0x59a808bb, + 0x90040c18, 0x48065a0b, 0x412cb800, 0x4d2c0000, + 0x41cca000, 0x6004c000, 0x60b0c800, 0x900404ad, + 0x05021004, 0x912cac0d, 0x0509fab2, 0x0501f023, + 0x40043000, 0x60b00800, 0x912cac0d, 0x0509faad, + 0x901834ac, 0x4c180000, 0x05b5ff37, 0x5c003000, + 0x05000012, 0x8060c000, 0x4a025808, 0x00000110, + 0x492cb801, 0x90180cbd, 0x05021005, 0x40180800, + 0x912cac09, 0x0509fa9f, 0x0501f010, 0x9064cc3c, + 0x901834bc, 0x60f00800, 0x412cb800, 0x912cac09, + 0x0509fa98, 0x05fdf7ec, 0x5c025800, 0x592c020a, + 0x8400055e, 0x48025a0a, 0x592c040b, 0x80640540, + 0x48025c0b, 0x0501f002, 0x5c025800, 0x5c002000, + 0x813669c0, 0x05000003, 0x59343403, 0x0501f002, + 0x61fc31ff, 0x4932580c, 0x481a5c0a, 0xb0100594, + 0x0502001a, 0x4a02580c, 0xffffffff, 0x491e5817, + 0x41781000, 0x831c0580, 0xffffffff, 0x0500000e, + 0x591c0009, 0x80000d40, 0x0500000b, 0x58040208, + 0x82000500, 0x000000ff, 0x90000592, 0x05000005, + 0xb00005a0, 0x05000003, 0x90000588, 0x05020002, + 0x58041009, 0x480a5809, 0x592c040b, 0x81200540, + 0x48025c0b, 0x0501f002, 0x49225c09, 0x846001c0, + 0x80100540, 0x48025808, 0x051dfde5, 0x05020015, + 0x592c0001, 0x497a5801, 0x4c000000, 0x42000000, + 0x00111dfa, 0x50000000, 0x48025802, 0x0001fba8, + 0x5c025800, 0x812e59c0, 0x05fe07f4, 0x80000580, + 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x5c00b000, + 0x5c00a800, 0x5c00a000, 0x5c025800, 0x1c01f000, + 0x051df95a, 0x05fc07f7, 0x05b5fef4, 0x81780000, + 0x05fdf7f4, 0x4933c857, 0x91380d95, 0x05020008, + 0x050dfb52, 0x05000005, 0x5930082a, 0x58040416, + 0x8400051a, 0x48000c16, 0x0009f010, 0x91380d96, + 0x05b60b29, 0x0009f010, 0x4933c857, 0x4d2c0000, + 0x4c500000, 0x4c540000, 0x4c580000, 0x59325809, + 0x91cca406, 0x59cc1806, 0x820c0580, 0x01000000, + 0x05020003, 0x6008b000, 0x0501f00a, 0x6020b000, + 0x912cac09, 0x051dfd25, 0x8c0c0500, 0x05000007, + 0x6020b000, 0x592e5801, 0x812e59c0, 0x05b40b12, + 0x912cac09, 0x051dfd1d, 0x0501f812, 0x5c00b000, + 0x5c00a800, 0x5c00a000, 0x5c025800, 0x1c01f000, + 0x4933c857, 0x4c500000, 0x4c540000, 0x4c580000, + 0x91cca406, 0x5930a809, 0x9054ac09, 0x601cb000, + 0x051dfd0e, 0x5c00b000, 0x5c00a800, 0x5c00a000, + 0x4933c857, 0x0509ff39, 0x00080010, 0x4d2c0000, + 0x050dfdd7, 0x05020008, 0x41780800, 0x4d400000, + 0x60028000, 0x050dfbfd, 0x5c028000, 0x5c025800, + 0x0009f010, 0x5931d82d, 0x58ef400b, 0x58ee580d, + 0x4a025a08, 0x00000103, 0x58ec0009, 0x0801f800, + 0x5c025800, 0x0009f010, 0x4933c857, 0x59cc1806, + 0x820c0580, 0x02000000, 0x0502001f, 0x4a026802, + 0x00fffffd, 0x5934000a, 0x84000504, 0x4802680a, + 0x60000000, 0x4c0c0000, 0x0501f824, 0x5c001800, + 0x00080010, 0x59300c29, 0x900405a1, 0x05020006, + 0x05c5fb73, 0x61fc19ff, 0x60102000, 0x60483000, + 0x05d5fea1, 0x59300809, 0x800409c0, 0x00080010, + 0x4a000a08, 0x00000103, 0x480c0809, 0x5931d82d, + 0x58ef400b, 0x58ee580d, 0x58ec0009, 0x0801f800, + 0x0009f010, 0x42000000, 0x00112401, 0x051dfc04, + 0x60180000, 0x4c0c0000, 0x0501f808, 0x5c001800, + 0x05fc07ed, 0x4c0c0000, 0x0501f823, 0x5c001800, + 0x05fe07e9, 0x1c01f000, 0x4933c857, 0x4d400000, + 0x4d240000, 0x4d200000, 0x5932481d, 0x40028000, + 0x59300429, 0xb0000d91, 0x05000003, 0x90000da1, + 0x05020010, 0x05c5fb4a, 0x60001802, 0x051dfd25, + 0x05020004, 0x59300429, 0x900005a1, 0x05c4089b, + 0x59300429, 0xb0000591, 0x05020002, 0x41781800, + 0x60040000, 0x05e1fdbf, 0x80000580, 0x0501f002, + 0x90000541, 0x5c024000, 0x5c024800, 0x5c028000, + 0x1c01f000, 0x4933c857, 0x4d2c0000, 0x59325809, + 0x812e59c0, 0x0502000b, 0x497a6006, 0x497a6205, + 0x050dfab2, 0x05000002, 0x497a6417, 0x4d380000, + 0x608a7000, 0x0501fb13, 0x5c027000, 0x80000580, + 0x5c025800, 0x1c01f000, 0x4933c857, 0x4d2c0000, + 0x4c500000, 0x4c540000, 0x4c580000, 0x59325809, + 0x592e5801, 0x912cac09, 0x91cca406, 0x59a808d5, + 0x82040d00, 0x000003ff, 0x9004148f, 0x05001011, + 0x603cb000, 0x051dfc85, 0x592e5801, 0x912cac09, + 0x90080c8f, 0x05001008, 0x603cb000, 0x051dfc7f, + 0x592e5801, 0x912cac09, 0x9004148f, 0x05001005, + 0x603c1000, 0x4008b000, 0x051dfc78, 0x0501f003, + 0x4004b000, 0x051dfc75, 0x5931d82d, 0x58ef400b, + 0x58ee580d, 0x4a025a08, 0x00000103, 0x592e5801, + 0x58ec0009, 0x0801f800, 0x0009f810, 0x5c00b000, + 0x5c00a800, 0x5c00a000, 0x5c025800, 0x1c01f000, + 0x4933c857, 0x4d2c0000, 0x4c500000, 0x4c540000, + 0x4c580000, 0x59cc0006, 0x82000d80, 0x01000000, + 0x05000021, 0x59cc0007, 0x9000b1c0, 0x8258b500, + 0x000000ff, 0x8058b104, 0x9058b402, 0x90580c87, + 0x05001002, 0x6018b000, 0x91cca406, 0x59301009, + 0x800811c0, 0x05b40a44, 0x9008ac09, 0x051dfc4f, + 0x82000d00, 0xff000000, 0x800409c0, 0x05000014, + 0x8200b500, 0x000000ff, 0x05000011, 0x8058b104, + 0x90580c8e, 0x05001002, 0x6034b000, 0x58081001, + 0x800811c0, 0x05b40a34, 0x9008ac09, 0x051dfc3f, + 0x0501f007, 0x59301009, 0x800811c0, 0x05b40a2e, + 0x48001009, 0x59cc0007, 0x4800100a, 0x05fdff2d, + 0x5c00b000, 0x5c00a800, 0x5c00a000, 0x5c025800, + 0x1c01f000, 0x4933c857, 0x4d2c0000, 0x4c500000, + 0x4c540000, 0x4c580000, 0x6008b000, 0x59cc0806, + 0x82040580, 0x01000000, 0x05000004, 0x8204b500, + 0x0000ffff, 0x8058b104, 0x91cca406, 0x59300009, + 0x9000ac09, 0x051dfc21, 0x05fdff16, 0x5c00b000, + 0x5c00a800, 0x5c00a000, 0x5c025800, 0x1c01f000, + 0x4933c857, 0x4937c857, 0x4d1c0000, 0x05edfdc1, + 0x05020020, 0x59cc0001, 0x82000500, 0x00ffffff, + 0x59341002, 0x82081500, 0x00ffffff, 0x80080580, + 0x05020018, 0x497a6205, 0x60d40800, 0x050dfa97, + 0x0502000f, 0x591c001e, 0x800001c0, 0x0500000c, + 0x497a381e, 0x591c0416, 0x8c000502, 0x05b409f6, + 0x84000502, 0x48023c16, 0x591c1407, 0x90080583, + 0x05000005, 0x90080586, 0x05000005, 0x05fdfcbe, + 0x0501f004, 0x0501f805, 0x0501f002, 0x0501f8c8, + 0x5c023800, 0x1c01f000, 0x4d2c0000, 0x591e5809, + 0x4933c857, 0x491fc857, 0x493bc857, 0x492fc857, + 0x91380595, 0x050000bc, 0x91380596, 0x050200b8, + 0x4d300000, 0x411e6000, 0x59cc0207, 0x4803c857, + 0x82000d00, 0x0000ff00, 0x82040580, 0x00001700, + 0x05000004, 0x82040580, 0x00000300, 0x05020068, + 0x050df9f2, 0x05000006, 0x591c0403, 0xb0000590, + 0x05020003, 0x05fdfc9c, 0x0501f0a1, 0x591c0203, + 0x4803c857, 0x9000058d, 0x05000044, 0x812e59c0, + 0x0500009e, 0x591c0202, 0x4803c857, 0x82000580, + 0x0000ffff, 0x05020085, 0x050df9e0, 0x05000004, + 0x591c0203, 0x90000d8e, 0x05020080, 0x592c020e, + 0x4803c857, 0x90000503, 0x90000582, 0x0502000b, + 0x592c0813, 0x591c0013, 0x4d300000, 0x411e6000, + 0x050dfffc, 0x5c026000, 0x4803c857, 0x4807c857, + 0x80040580, 0x05020071, 0x591c0416, 0x4803c857, + 0x8c000500, 0x0502006d, 0x42000000, 0x001123d6, + 0x051dfae7, 0x41780800, 0x591c1006, 0x60280000, + 0x05f1ffd3, 0x592c040a, 0x4803c857, 0x800001c0, + 0x0500000a, 0x80080c80, 0x05001003, 0x05b6099a, + 0x80001040, 0x480a5c0a, 0x800811c0, 0x05020003, + 0x0509fabb, 0x0501f06a, 0x0509febf, 0x591c0819, + 0x591c001a, 0x4806580c, 0x4802580d, 0x592e4414, + 0x81224110, 0x59300008, 0x8c000500, 0x05ba0c5c, + 0x497a3809, 0x0001fac0, 0x0502004c, 0x411e6000, + 0x05fdfc55, 0x0501f05a, 0x05fdfc86, 0x05000015, + 0x591c0006, 0x48026006, 0x4926601d, 0x4936600a, + 0x050df98f, 0x640e6407, 0x492e6009, 0x591c0819, + 0x591c101a, 0x48066019, 0x480a601a, 0x4d380000, + 0x591e7403, 0x4d300000, 0x411e6000, 0x05fdfc42, + 0x5c026000, 0x0009f839, 0x5c027000, 0x0501f044, + 0x59a80061, 0x48023a05, 0x0501f041, 0x59cc0407, + 0x9000058b, 0x05020026, 0x59340a00, 0x84040d0e, + 0x48066a00, 0x592c0a08, 0x82040d00, 0x000000ff, + 0x90040d94, 0x05000002, 0x640e6229, 0x59300008, + 0x8c000500, 0x05ba0c2e, 0x4d400000, 0x497a5c0d, + 0x600e8000, 0x592c0a0c, 0x05e1fc51, 0x051dfbad, + 0x05020006, 0x0001fba8, 0x59300a29, 0x90040d83, + 0x05080e7d, 0x497a6009, 0x5c028000, 0x4a026403, + 0x00000085, 0x64266203, 0x640a6407, 0x42000800, + 0x80004040, 0x050dff74, 0x0005fee2, 0x4203e000, + 0xb0800000, 0x6023f800, 0x0501f019, 0x59cc0207, + 0x82000580, 0x00002a00, 0x05020004, 0x59a80061, + 0x48023a05, 0x0501f012, 0x812e59c0, 0x05b4093a, + 0x0005fa1a, 0x497a6027, 0x05e9fab2, 0x4a025a08, + 0x00000103, 0x591c0008, 0x8c000500, 0x05ba0c04, + 0x591c0402, 0x48025c0a, 0x640e5a0a, 0x497a5c0d, + 0x0001fba8, 0x05fdfbfc, 0x05ddffa2, 0x5c026000, + 0x0009f810, 0x0501f002, 0x5c026000, 0x5c025800, + 0x1c01f000, 0x0501f813, 0x05fdf7fd, 0x4933c857, + 0x91380595, 0x05020004, 0x59a80061, 0x48023a05, + 0x0501f009, 0x91380596, 0x05020009, 0x4d300000, + 0x411e6000, 0x0519fd14, 0x0005fe84, 0x0009f810, + 0x5c026000, 0x497a381e, 0x0009f810, 0x1c01f000, + 0x4c5c0000, 0x591c0416, 0x84000540, 0x48023c16, + 0x59ccb80b, 0x4933c857, 0x491fc857, 0x492fc857, + 0x4803c857, 0x485fc857, 0x050df928, 0x05020007, + 0x8c5c053c, 0x05000005, 0x59a80061, 0x48023a05, + 0x497a381e, 0x0501f068, 0x4d300000, 0x411e6000, + 0x0509f866, 0x5c026000, 0x591c0407, 0x90000580, + 0x05000061, 0x591c0403, 0xb0000590, 0x0502000a, + 0x4d300000, 0x411e6000, 0x64066203, 0x42000800, + 0x80000043, 0x0005fee2, 0x5c026000, 0x497a381e, + 0x0501f055, 0x591c0203, 0x9000058d, 0x0500001c, + 0x812e59c0, 0x05b408e8, 0x592c020e, 0x4803c857, + 0x8c000500, 0x0502001b, 0x8c000502, 0x05000014, + 0x591c0416, 0x8c00051c, 0x05020007, 0x591c0013, + 0x4803c857, 0x800001c0, 0x0500000d, 0x591c0014, + 0x48023818, 0x4a023814, 0x0fffffff, 0x592c020c, + 0x8400051e, 0x48025a0c, 0x42000000, 0x001123d8, + 0x051dfa13, 0x64063a16, 0x0501f01a, 0x42000000, + 0x001123d9, 0x051dfa0e, 0x641e3a16, 0x0501f015, + 0x59300017, 0x591c0817, 0x80040580, 0x0502002e, + 0x8c5c053a, 0x05fe07f6, 0x59cc000a, 0x592c1813, + 0x4803c857, 0x480fc857, 0x800c0580, 0x05fc07f0, + 0x59cc000a, 0x4803c857, 0x48023818, 0x48023817, + 0x42000000, 0x001123d7, 0x051df9f9, 0x64163a16, + 0x050df8d6, 0x0500001a, 0x591c0416, 0x8c00051a, + 0x05000017, 0x4803c857, 0x8c00051e, 0x05000016, + 0x4130b800, 0x05fdfbaf, 0x0500000f, 0x4926601d, + 0x64066203, 0x647a6403, 0x585c041b, 0x4802641b, + 0x585c021b, 0x4802621b, 0x591e680a, 0x4936600a, + 0x050df8b3, 0x64066407, 0x42000800, 0x80000040, + 0x0005fee2, 0x405e6000, 0x0501f003, 0x5c00b800, + 0x0509f76d, 0x5c00b800, 0x0009f010, 0x4933c857, + 0x4d1c0000, 0x05edfc4b, 0x0502003f, 0x59cc0001, + 0x59341002, 0x80080580, 0x82000500, 0x00ffffff, + 0x05020037, 0x5930141b, 0x050df96b, 0x05b4088a, + 0x591c1407, 0x90080587, 0x05000031, 0x90080582, + 0x0500002f, 0x90080580, 0x0500002d, 0x591c0202, + 0x82000d80, 0x0000ffff, 0x05000004, 0x59301a1b, + 0x800c0580, 0x05020026, 0x91380595, 0x05000022, + 0x4d300000, 0x4d2c0000, 0x411e6000, 0x59325809, + 0x0509fcb2, 0x05b40874, 0x592c0208, 0x82000500, + 0x000000ff, 0x90000594, 0x05000002, 0x640e6229, + 0x497a5c0d, 0x600e8000, 0x592c0a0c, 0x05e1fb64, + 0x051dfac0, 0x05020006, 0x0001fba8, 0x59300a29, + 0x90040d83, 0x05080d90, 0x497a6009, 0x5c025800, + 0x4a026403, 0x00000085, 0x64266203, 0x640a6407, + 0x42000800, 0x80004040, 0x0005fee2, 0x5c026000, + 0x0501f003, 0x59a80061, 0x48023a05, 0x497a381e, + 0x0009f810, 0x5c023800, 0x1c01f000, 0x4933c857, + 0x4c580000, 0x4d2c0000, 0x59325809, 0x59342200, + 0x82102500, 0xffffdffd, 0x48126a00, 0x91383595, + 0x05000009, 0x0509fc85, 0x05000047, 0x050dfb24, + 0x05020003, 0x6008b000, 0x050dfb0b, 0x0501fa2a, + 0x0501f059, 0x91cc1408, 0x6008b000, 0x91341c06, + 0x0501ffb4, 0x0502000f, 0x91cc140a, 0x6008b000, + 0x91341c08, 0x0501ffaf, 0x0502000a, 0x05c1fe2b, + 0x59342200, 0x59cc1007, 0x800811c0, 0x05000003, + 0x480a6801, 0x84102542, 0x48126a00, 0x0501f048, + 0x4d3c0000, 0x417a7800, 0x05c1fdd9, 0x5c027800, + 0x42000000, 0x001123f8, 0x051df969, 0x59340200, + 0x84000558, 0x48026a00, 0x4d300000, 0x05fdfb25, + 0x05b40821, 0x4926601d, 0x4936600a, 0x497a6009, + 0x64066407, 0x64066403, 0x600c3000, 0x0519fee5, + 0x05c5f8b7, 0x59240400, 0x8c00050a, 0x0502000b, + 0x41782800, 0x60043000, 0x4d400000, 0x60a68000, + 0x0519f8e2, 0x5c028000, 0x64126407, 0x641e6203, + 0x6406642c, 0x0501f005, 0x64066203, 0x602c0800, + 0x05ddf8f4, 0x05f1ff1d, 0x5c026000, 0x0509fc43, + 0x0500001d, 0x050dfae2, 0x0502001d, 0x0501f9ea, + 0x0501f019, 0x42000000, 0x001123fb, 0x051df940, + 0x4d3c0000, 0x417a7800, 0x05c1fda9, 0x42000000, + 0x001123f8, 0x051df93a, 0x59340200, 0x84000558, + 0x48026a00, 0x600c3000, 0x41782800, 0x60142000, + 0x4d400000, 0x4d440000, 0x59368c03, 0x60a68000, + 0x050dfd92, 0x5c028800, 0x5c028000, 0x5c027800, + 0x05c1fdde, 0x0009f810, 0x0501f002, 0x05fdfce9, + 0x5c025800, 0x5c00b000, 0x1c01f000, 0x4933c857, + 0x41380000, 0xb13834a0, 0x05b21fdf, 0x0c01f001, + 0x00109e9c, 0x00109e99, 0x00109e9c, 0x00109e9c, + 0x00109e9c, 0x00109e9c, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e9c, + 0x00109e98, 0x00109e9c, 0x00109e9c, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e9c, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e9c, 0x00109e9c, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e9c, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e9c, + 0x00109e9c, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e9c, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e9c, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e9c, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e9c, 0x00109e98, 0x00109e9c, + 0x00109e9c, 0x00109e98, 0x00109e98, 0x00109e98, + 0x00109e98, 0x00109e98, 0x00109e98, 0x00109e98, + 0x05b1ff7d, 0x64066203, 0x493a6403, 0x05f1f68f, + 0x4933c857, 0x64066203, 0x493a6403, 0x05f1f68b, + 0x59300403, 0xb00034a0, 0x05b21f73, 0x91383593, + 0x05000087, 0x913835a7, 0x05020042, 0x4933c857, + 0x05f5fa7f, 0x0519ff14, 0x0509fcaa, 0x0500000c, + 0x0509fcb7, 0x05000039, 0x59300403, 0x90000da2, + 0x05020033, 0x60140004, 0x05fdfcac, 0x05000030, + 0x05fdfcc9, 0x05000030, 0x0501f030, 0x600c0004, + 0x05fdfca6, 0x0500002a, 0x05c1fd50, 0x601c0800, + 0x05ddf844, 0x0501f940, 0x4d440000, 0x59368c03, + 0x83440580, 0x000007fe, 0x05020007, 0x59a8124c, + 0x84081540, 0x05e1fcd3, 0x05020002, 0x8408154a, + 0x480b524c, 0x60a68000, 0x05f5f834, 0x4d3c0000, + 0x417a7800, 0x05c1fcf6, 0x5c027800, 0x916c0583, + 0x0500000b, 0x5932680a, 0x59340008, 0x800001c0, + 0x05020007, 0x59368c03, 0x4933c857, 0x4937c857, + 0x4947c857, 0x05ddf916, 0x0501f008, 0x42000000, + 0x001123f8, 0x051df87a, 0x60543000, 0x41782800, + 0x600c2000, 0x050dfcd9, 0x5c028800, 0x0509ff3a, + 0x0009f010, 0x1c01f000, 0x0501f917, 0x05fdf7fc, + 0x91380594, 0x0500000c, 0x4933c857, 0xb13805a1, + 0x05000003, 0xb13805a0, 0x05fe07f7, 0x05f5fe88, + 0x05fe0276, 0x59300203, 0x9000058e, 0x050804f1, + 0x05b1ff21, 0x4933c857, 0x05f5fa31, 0x050dff59, + 0x05020005, 0x59300009, 0x800001c0, 0x05020026, + 0x05f1f62e, 0x0519fec0, 0x60082800, 0x59300403, + 0xb0000591, 0x050c07e9, 0x4d3c0000, 0x417a7800, + 0x05c1fcbf, 0x5c027800, 0x60583000, 0x41782800, + 0x4d400000, 0x4d440000, 0x59368c03, 0x60242000, + 0x60a68000, 0x050dfcad, 0x5c028800, 0x5c028000, + 0x42000000, 0x001123f8, 0x051df845, 0x0509fc41, + 0x0502000b, 0x05c1fcf5, 0x0501f8e7, 0x59340c03, + 0x82040580, 0x000007fe, 0x05fe07c9, 0x59a80a4c, + 0x84040d40, 0x4807524c, 0x05fdf7c5, 0x0509fc44, + 0x05020003, 0x0501f8dc, 0x05fdf7c1, 0x59300403, + 0x90000db2, 0x05020003, 0x05c5fbbd, 0x05fdf7bc, + 0x90000da2, 0x050008d4, 0x05fdf7b9, 0x4933c857, + 0x4803c857, 0x0c01f001, 0x00109f8f, 0x00109f8f, + 0x00109f8f, 0x00109f8f, 0x00109f8f, 0x00109f8f, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f94, 0x00109ff5, 0x00109f8e, 0x00109ff5, + 0x00109ff5, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109ff5, 0x00109ff5, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109fa2, 0x00109ff5, 0x00109f8e, 0x00109f9d, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f9d, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109ff5, + 0x00109fa0, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109f8e, 0x00109ff5, 0x00109ff5, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109ff5, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109ff5, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109ff5, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109ff5, + 0x00109f8e, 0x00109ff5, 0x00109faa, 0x00109f8e, + 0x00109f8e, 0x00109f8e, 0x00109f8e, 0x00109f8e, + 0x00109fb0, 0x00109f8e, 0x05b1fe87, 0x640a6203, + 0x0509fea6, 0x05000002, 0x643a6203, 0x0509f434, + 0x64166203, 0x59a80061, 0x48026205, 0x0509fe9f, + 0x05000002, 0x643a6203, 0x59a8005f, 0x48026006, + 0x1c01f000, 0x5930082a, 0x49780a05, 0x0501f056, + 0x0509fe7d, 0x0009f010, 0x05c5fb41, 0x05f5fa2e, + 0x05000003, 0x05f5f982, 0x0009f010, 0x05f5f980, + 0x0009f810, 0x05f5f219, 0x4933c857, 0x640a6203, + 0x0509fe8a, 0x05000002, 0x643a6203, 0x1c01f000, + 0x4933c857, 0x4d300000, 0x4d2c0000, 0x59325809, + 0x812e59c0, 0x0500002e, 0x0509fa9c, 0x05b00e5e, + 0x59a80cd2, 0x48065811, 0x59a808d4, 0x48065810, + 0x64025a0a, 0x592c1001, 0x800811c0, 0x05b00e56, + 0x4930100b, 0x492c100a, 0x64001001, 0x4a001009, + 0x00109fd0, 0x4a001003, 0x00114616, 0x4a001005, + 0x00000200, 0x592c0015, 0x48001007, 0x592c0016, + 0x48001008, 0x5c025800, 0x5c026000, 0x0001f029, + 0x4d300000, 0x4d2c0000, 0x5832600b, 0x813261c0, + 0x05b00e41, 0x5832580a, 0x812e59c0, 0x05b00e3e, + 0x49786001, 0x58300002, 0x82000580, 0x00000100, + 0x05020014, 0x59a80cd2, 0x48065811, 0x59a808d4, + 0x48065810, 0x64025a0a, 0x0001fba8, 0x59a81cd1, + 0x840c1d46, 0x480f54d1, 0x0509fe50, 0x05000005, + 0x05fdf8fd, 0x59a8005f, 0x48026006, 0x0501f002, + 0x0009f810, 0x5c025800, 0x5c026000, 0x1c01f000, + 0x4803c857, 0x4a006002, 0x00000100, 0x600a8000, + 0x05fdf7ee, 0x4933c857, 0x640a6203, 0x0509fe3f, + 0x05000002, 0x643a6203, 0x59a8005f, 0x48026006, + 0x1c01f000, 0x4933c857, 0x0509fa54, 0x0500002b, + 0x4d2c0000, 0x050df8f2, 0x05020007, 0x4d400000, + 0x60c68000, 0x60100800, 0x0509ff18, 0x5c028000, + 0x0501f021, 0x050df8f4, 0x05020005, 0x64c65a0a, + 0x64125810, 0x0001fba8, 0x0501f01b, 0x59300c07, + 0x90040590, 0x05000003, 0x90040591, 0x05020007, + 0x64c65a0a, 0x64125811, 0x4a025812, 0x000000ff, + 0x0001fba8, 0x0501f010, 0x592c0408, 0x8c00051e, + 0x0500000d, 0x4a025a08, 0x00000103, 0x4a025809, + 0x01000000, 0x4da00000, 0x4cec0000, 0x5931d82d, + 0x58ef400b, 0x58ec0009, 0x0801f800, 0x5c01d800, + 0x5c034000, 0x5c025800, 0x1c01f000, 0x4933c857, + 0x83340580, 0x001141b4, 0x05020007, 0x91380d95, + 0x05000003, 0x91380d96, 0x05fe0134, 0x0519fd8c, + 0x0009f010, 0x59340400, 0x82000500, 0x000000ff, + 0x9000348c, 0x05b21ddc, 0x59303403, 0xb0180d8d, + 0x05080647, 0x90180db3, 0x0508060d, 0x90180da8, + 0x0508035a, 0x90180da9, 0x05080365, 0xb0180d97, + 0x050c0487, 0x90180d9f, 0x05fc02c6, 0xb0180d95, + 0x05fc02a6, 0x90180d80, 0x05fc0579, 0x90180da2, + 0x05fc02e2, 0x90180db5, 0x05fc03ba, 0x90180db9, + 0x05fc052f, 0x90180dbd, 0x05fc033c, 0xb0180d84, + 0x05fc0368, 0xb0180d89, 0x05fc039b, 0xb0180d98, + 0x050c050d, 0xb0180d83, 0x05080752, 0xb0180d91, + 0x050807ac, 0x90180d84, 0x05020002, 0x60040000, + 0x91380d95, 0x05000004, 0x91380d96, 0x05fe0103, + 0x0501f1ec, 0x4c000000, 0x0519fd59, 0x5c000000, + 0x4d2c0000, 0x4d3c0000, 0x0c01f804, 0x5c027800, + 0x5c025800, 0x1c01f000, 0x0010a081, 0x0010a085, + 0x0010a081, 0x0010a0d6, 0x0010a081, 0x0010a1d9, + 0x0010a263, 0x0010a081, 0x0010a081, 0x0010a227, + 0x0010a081, 0x0010a232, 0x4933c857, 0x497a6008, + 0x59300809, 0x58040000, 0x4a000a08, 0x00000103, + 0x0009f010, 0x4933c857, 0x40000000, 0x40000000, + 0x1c01f000, 0x4933c857, 0x05ddfa99, 0x59a800bb, + 0xb00005b4, 0x0502003d, 0x0515fcdd, 0x0502000e, + 0x0501f83d, 0x0509f9c5, 0x05000009, 0x050df864, + 0x05020007, 0x41780800, 0x4d400000, 0x60028000, + 0x0509fe8a, 0x5c028000, 0x0501f002, 0x05c1fb73, + 0x0009f010, 0x0509f9b9, 0x05000005, 0x050df858, + 0x05020003, 0x05fdff60, 0x0009f010, 0x417a7800, + 0x05c1fb23, 0x42000000, 0x001123f8, 0x0519feb4, 0x59340200, 0x84000558, 0x48026a00, 0x600c3000, - 0x41782800, 0x60142000, 0x4d400000, 0x4d440000, - 0x59368c03, 0x60a68000, 0x050dfd25, 0x5c028800, - 0x5c028000, 0x5c027800, 0x05c5fa81, 0x0005ffdc, - 0x0501f002, 0x05fdfced, 0x5c025800, 0x5c00b000, - 0x1c01f000, 0x4933c857, 0x41380000, 0xb13834a0, - 0x05b61cde, 0x0c01f001, 0x00109962, 0x0010995f, - 0x00109962, 0x00109962, 0x00109962, 0x00109962, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x00109962, 0x0010995e, 0x00109962, - 0x00109962, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x00109962, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x00109962, 0x00109962, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x00109962, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x00109962, 0x00109962, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x00109962, - 0x0010995e, 0x0010995e, 0x0010995e, 0x00109962, - 0x0010995e, 0x0010995e, 0x0010995e, 0x00109962, - 0x0010995e, 0x0010995e, 0x0010995e, 0x00109962, - 0x0010995e, 0x00109962, 0x00109962, 0x0010995e, - 0x0010995e, 0x0010995e, 0x0010995e, 0x0010995e, - 0x0010995e, 0x0010995e, 0x05b5fc7c, 0x64066203, - 0x493a6403, 0x05f1f710, 0x4933c857, 0x64066203, - 0x493a6403, 0x05f1f70c, 0x59300403, 0xb00034a0, - 0x05b61c72, 0x91383593, 0x05000087, 0x913835a7, - 0x05020042, 0x4933c857, 0x05f5fafb, 0x0519fce7, - 0x0509fc4b, 0x0500000c, 0x0509fc58, 0x05000039, - 0x59300403, 0x90000da2, 0x05020033, 0x60140004, - 0x05fdfcb0, 0x05000030, 0x05fdfccd, 0x05000030, - 0x0501f030, 0x600c0004, 0x05fdfcaa, 0x0500002a, - 0x05c5f9f3, 0x601c0800, 0x05ddfb6b, 0x0501f940, - 0x4d440000, 0x59368c03, 0x83440580, 0x000007fe, - 0x05020007, 0x59a81249, 0x84081540, 0x05e1ff23, - 0x05020002, 0x8408154a, 0x480b5249, 0x60a68000, - 0x05f5f8b5, 0x4d3c0000, 0x417a7800, 0x05c5f999, - 0x5c027800, 0x916c0583, 0x0500000b, 0x5932680a, - 0x59340008, 0x800001c0, 0x05020007, 0x59368c03, - 0x4933c857, 0x4937c857, 0x4947c857, 0x05ddfc0d, - 0x0501f008, 0x42000000, 0x0010e454, 0x0519fe39, - 0x60543000, 0x41782800, 0x600c2000, 0x050dfc6c, - 0x5c028800, 0x0509fedc, 0x0005f7dc, 0x1c01f000, - 0x0501f917, 0x05fdf7fc, 0x91380594, 0x0500000c, - 0x4933c857, 0xb13805a1, 0x05000003, 0xb13805a0, - 0x05fe07f7, 0x05f5ff04, 0x05fe027e, 0x59300203, - 0x9000058e, 0x05080492, 0x05b5fc20, 0x4933c857, - 0x05f5faad, 0x050dfee2, 0x05020005, 0x59300009, - 0x800001c0, 0x05020026, 0x05f1f6af, 0x0519fc93, - 0x60082800, 0x59300403, 0xb0000591, 0x050c0772, - 0x4d3c0000, 0x417a7800, 0x05c5f962, 0x5c027800, - 0x60583000, 0x41782800, 0x4d400000, 0x4d440000, - 0x59368c03, 0x60242000, 0x60a68000, 0x050dfc40, - 0x5c028800, 0x5c028000, 0x42000000, 0x0010e454, - 0x0519fe04, 0x0509fbe2, 0x0502000b, 0x05c5f998, - 0x0501f8e7, 0x59340c03, 0x82040580, 0x000007fe, - 0x05fe07c9, 0x59a80a49, 0x84040d40, 0x48075249, - 0x05fdf7c5, 0x0509fbe5, 0x05020003, 0x0501f8dc, - 0x05fdf7c1, 0x59300403, 0x90000db2, 0x05020003, - 0x05c9f84f, 0x05fdf7bc, 0x90000da2, 0x050008d4, - 0x05fdf7b9, 0x4933c857, 0x4803c857, 0x0c01f001, - 0x00109a55, 0x00109a55, 0x00109a55, 0x00109a55, - 0x00109a55, 0x00109a55, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a5a, 0x00109abb, - 0x00109a54, 0x00109abb, 0x00109abb, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109abb, 0x00109abb, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a68, 0x00109abb, - 0x00109a54, 0x00109a63, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a63, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109abb, 0x00109a66, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a54, 0x00109abb, - 0x00109abb, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109abb, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109abb, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109abb, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109abb, 0x00109a54, 0x00109abb, - 0x00109a70, 0x00109a54, 0x00109a54, 0x00109a54, - 0x00109a54, 0x00109a54, 0x00109a76, 0x00109a54, - 0x05b5fb86, 0x640a6203, 0x0509fe48, 0x05000002, - 0x643a6203, 0x0509f3d5, 0x64166203, 0x59a8005e, - 0x48026205, 0x0509fe41, 0x05000002, 0x643a6203, - 0x59a8005c, 0x48026006, 0x1c01f000, 0x5930082a, - 0x49780a05, 0x0501f056, 0x0509fe1f, 0x0005f7dc, - 0x05c5ffd3, 0x05f5faaa, 0x05000003, 0x05f5f9fe, - 0x0005f7dc, 0x05f5f9fc, 0x0005ffdc, 0x05f5f295, - 0x4933c857, 0x640a6203, 0x0509fe2c, 0x05000002, - 0x643a6203, 0x1c01f000, 0x4933c857, 0x4d300000, - 0x4d2c0000, 0x59325809, 0x812e59c0, 0x0500002e, - 0x0509fa4d, 0x05b40b5d, 0x59a80ccd, 0x48065811, - 0x59a808cf, 0x48065810, 0x64025a0a, 0x592c1001, - 0x800811c0, 0x05b40b55, 0x4930100b, 0x492c100a, - 0x64001001, 0x4a001009, 0x00109a96, 0x4a001003, - 0x00110672, 0x4a001005, 0x00000200, 0x592c0015, - 0x48001007, 0x592c0016, 0x48001008, 0x5c025800, - 0x5c026000, 0x0001f021, 0x4d300000, 0x4d2c0000, - 0x5832600b, 0x813261c0, 0x05b40b40, 0x5832580a, - 0x812e59c0, 0x05b40b3d, 0x49786001, 0x58300002, - 0x82000580, 0x00000100, 0x05020014, 0x59a80ccd, - 0x48065811, 0x59a808cf, 0x48065810, 0x64025a0a, - 0x0001fb82, 0x59a81ccc, 0x840c1d46, 0x480f54cc, - 0x0509fdf2, 0x05000005, 0x05fdf922, 0x59a8005c, - 0x48026006, 0x0501f002, 0x0005ffdc, 0x5c025800, - 0x5c026000, 0x1c01f000, 0x4803c857, 0x4a006002, - 0x00000100, 0x600a8000, 0x05fdf7ee, 0x4933c857, - 0x640a6203, 0x0509fde1, 0x05000002, 0x643a6203, - 0x59a8005c, 0x48026006, 0x1c01f000, 0x4933c857, - 0x0509fa05, 0x0500002b, 0x4d2c0000, 0x050df886, - 0x05020007, 0x4d400000, 0x60c68000, 0x60100800, - 0x0509feb3, 0x5c028000, 0x0501f021, 0x050df888, - 0x05020005, 0x64c65a0a, 0x64125810, 0x0001fb82, - 0x0501f01b, 0x59300c07, 0x90040590, 0x05000003, - 0x90040591, 0x05020007, 0x64c65a0a, 0x64125811, - 0x4a025812, 0x000000ff, 0x0001fb82, 0x0501f010, - 0x592c0408, 0x8c00051e, 0x0500000d, 0x4a025a08, - 0x00000103, 0x4a025809, 0x01000000, 0x4da00000, - 0x4cec0000, 0x5931d82d, 0x58ef400b, 0x58ec0009, - 0x0801f800, 0x5c01d800, 0x5c034000, 0x5c025800, - 0x1c01f000, 0x4933c857, 0x83340580, 0x00110210, - 0x05020007, 0x91380d95, 0x05000003, 0x91380d96, - 0x05fe013c, 0x0519fb5f, 0x0005f7dc, 0x59340400, - 0x82000500, 0x000000ff, 0x9000348c, 0x05b61adb, - 0x59303403, 0xb0180d8d, 0x050805e9, 0x90180db3, - 0x050805af, 0x90180da8, 0x050802fb, 0x90180da9, - 0x05080306, 0xb0180d97, 0x050c0410, 0x90180d9f, - 0x05fc02ca, 0xb0180d95, 0x05fc02aa, 0x90180d80, - 0x05fc0579, 0x90180da2, 0x05fc02e6, 0x90180db5, - 0x05fc03be, 0x90180db9, 0x05fc052f, 0x90180dbd, - 0x05fc0340, 0xb0180d84, 0x05fc036c, 0xb0180d89, - 0x05fc039f, 0xb0180d98, 0x050c0496, 0xb0180d83, - 0x050806ed, 0xb0180d91, 0x05080747, 0x90180d84, - 0x05020002, 0x60040000, 0x91380d95, 0x05000004, - 0x91380d96, 0x05fe010b, 0x0501f1ec, 0x4c000000, - 0x0519fb2c, 0x5c000000, 0x4d2c0000, 0x4d3c0000, - 0x0c01f804, 0x5c027800, 0x5c025800, 0x1c01f000, - 0x00109b47, 0x00109b4b, 0x00109b47, 0x00109b9c, - 0x00109b47, 0x00109c9f, 0x00109d29, 0x00109b47, - 0x00109b47, 0x00109ced, 0x00109b47, 0x00109cf8, - 0x4933c857, 0x497a6008, 0x59300809, 0x58040000, - 0x4a000a08, 0x00000103, 0x0005f7dc, 0x4933c857, - 0x40000000, 0x40000000, 0x1c01f000, 0x4933c857, - 0x05ddfd61, 0x59a800b6, 0xb00005b4, 0x0502003d, - 0x0515fb00, 0x0502000e, 0x0501f83d, 0x0509f976, - 0x05000009, 0x0509fff8, 0x05020007, 0x41780800, - 0x4d400000, 0x60028000, 0x0509fe25, 0x5c028000, - 0x0501f002, 0x05c5f816, 0x0005f7dc, 0x0509f96a, - 0x05000005, 0x0509ffec, 0x05020003, 0x05fdff60, - 0x0005f7dc, 0x417a7800, 0x05c1ffc6, 0x42000000, - 0x0010e454, 0x0519fc73, 0x59340200, 0x84000558, - 0x48026a00, 0x600c3000, 0x0519fa15, 0x4d300000, - 0x05fdf893, 0x05b40a69, 0x4926601d, 0x4936600a, - 0x497a6009, 0x64066407, 0x64066403, 0x59240400, - 0x8c00050a, 0x0502000b, 0x64126407, 0x641e6203, - 0x6406642c, 0x60043000, 0x4d400000, 0x60a68000, - 0x41782800, 0x0515fc1e, 0x5c028000, 0x0501f005, - 0x602c0800, 0x05ddf968, 0x64066203, 0x05f1fcea, - 0x5c026000, 0x05fdff3a, 0x05c1ffe9, 0x0005f7dc, - 0x05fdff37, 0x60040000, 0x0501f0d5, 0x4933c857, - 0x59340200, 0x8c000500, 0x05000009, 0x4d3c0000, - 0x417a7800, 0x05ddf94e, 0x5c027800, 0x8d0c0520, - 0x05000003, 0x60180800, 0x05ddf953, 0x1c01f000, - 0x4933c857, 0x59a808b6, 0xb00405b4, 0x0500000e, - 0x4807c857, 0x82040580, 0x00000100, 0x050200ac, - 0x59cc0408, 0x4803c857, 0x8c000500, 0x050000a8, - 0x59341403, 0x82080580, 0x000007fe, 0x05000006, - 0x0501f0a3, 0x59341403, 0x82080580, 0x000007fe, - 0x0502001b, 0x59a80249, 0x8c000506, 0x0500000e, - 0x59cc0000, 0x82000500, 0x000000ff, 0x59240c08, - 0x80040580, 0x05000008, 0x05c1ffb9, 0x0005ffdc, - 0x42000000, 0x0010e440, 0x0519fc1e, 0x6006d800, - 0x05d9f52b, 0x0519fd54, 0x050e05eb, 0x59a80249, - 0x8c000506, 0x05020004, 0x83240580, 0x0010e512, - 0x050e04ea, 0x0501fa74, 0x0501f03b, 0x41780800, - 0x05ddfa0a, 0x59341403, 0x82080580, 0x000007fc, - 0x05020019, 0x4a026802, 0x00fffffc, 0x0509f8f6, - 0x0500000c, 0x0509ff78, 0x0502000a, 0x0501f8a3, - 0x41780800, 0x4d400000, 0x60028000, 0x0509fda4, - 0x5c028000, 0x60100800, 0x05ddf90f, 0x0005f7dc, - 0x60100800, 0x05ddf90c, 0x05c1ff91, 0x59300c29, - 0x900405a1, 0x050c069d, 0xb0040591, 0x000607dc, - 0x050df69a, 0x59a800d1, 0x8c000502, 0x0500000d, - 0x05e1fcc2, 0x60401000, 0x05020008, 0x59340002, - 0x82000500, 0x00ff0000, 0x82000580, 0x00ff0000, - 0x05000004, 0x60201000, 0x05e1f8b9, 0x05020058, - 0x0509f8d1, 0x05000059, 0x0509ff53, 0x05020005, - 0x592c0408, 0x8c00051c, 0x05fe07d5, 0x0501f87b, - 0x60140800, 0x05ddf8ec, 0x64066203, 0x640e6403, - 0x05f1f46d, 0x59cc0408, 0x8c000518, 0x05000017, - 0x0509fc51, 0x05e1fca5, 0x05000008, 0x59cc0408, - 0x8c000516, 0x05000005, 0x59300429, 0x900005a1, - 0x05fe07c3, 0x1c01f000, 0x59a80249, 0x8400054a, - 0x48035249, 0x48035449, 0x59a8003d, 0x497b8830, - 0x84000570, 0x48038832, 0x59300429, 0x900005a1, - 0x05fe07b7, 0x1c01f000, 0x59a80249, 0xb0000510, - 0xb0000590, 0x05000009, 0x61bc1001, 0x42024800, - 0x0010e512, 0x480a4805, 0x480b503d, 0x497b8830, - 0x84081570, 0x480b8832, 0x0509fc4c, 0x59a80249, - 0x84000548, 0x48035249, 0x48035449, 0x0515fb47, - 0x05fe07a3, 0x599c0019, 0x8c000510, 0x0502002f, - 0x59a80249, 0x8400054c, 0x48035249, 0x601c0800, - 0x05ddf8b5, 0x417a7800, 0x05ddf8a9, 0x61bc3801, - 0x61a00001, 0x05e9fc91, 0x05dc08d6, 0x05b6099b, - 0x4936600a, 0x05ddfc72, 0x05020002, 0x497a6416, - 0x599c0208, 0x48026c12, 0x59340200, 0x8400051a, - 0x48026a00, 0x600c0800, 0x05ddf8a3, 0x64066407, - 0x64066203, 0x640a6403, 0x05f1f423, 0x05fdfe74, - 0x60040000, 0x0501f012, 0x599c0017, 0x8c00050a, - 0x05fc07ac, 0x60100800, 0x05ddf897, 0x493750c2, - 0x59a80249, 0x8c000508, 0x05000008, 0x599c0018, - 0x8c00051c, 0x05000005, 0x61a00807, 0x42001000, - 0x0010582b, 0x05edfb87, 0x0005f7dc, 0x4933c857, - 0x80003540, 0x05000003, 0x601c0800, 0x05ddf886, - 0x801831c0, 0x0502000f, 0x59302009, 0x801021c0, - 0x05000004, 0x58100408, 0x8c00051e, 0x05020009, - 0x59341c03, 0x60102000, 0x60483000, 0x4d200000, - 0x59364013, 0x81224130, 0x05d5fbd2, 0x5c024000, - 0x05c1fefb, 0x0005f7dc, 0x4c5c0000, 0x4d2c0000, - 0x59325809, 0x05e5fb86, 0x5c025800, 0x59cc0008, - 0x48002805, 0x59cc0009, 0x48002806, 0x49782807, - 0x49782808, 0x49782809, 0x4978280a, 0x59cc0013, - 0x8c00053e, 0x05000009, 0x59cc0414, 0x900001c0, - 0x59ccbc15, 0x805c0540, 0x48002807, 0x59cc0416, - 0x900001c0, 0x48002808, 0x59cc0017, 0x8c00053e, - 0x05000009, 0x59cc0418, 0x900001c0, 0x59ccbc19, - 0x805c0540, 0x48002809, 0x59cc041a, 0x900001c0, - 0x4800280a, 0x5c00b800, 0x1c01f000, 0x4933c857, - 0x59a800b6, 0x90000594, 0x0502003a, 0x59a800d1, - 0x8c000502, 0x05000011, 0x05e1fc08, 0x60401000, + 0x0519fc38, 0x4d300000, 0x05fdf86e, 0x05b00d6a, + 0x4926601d, 0x4936600a, 0x497a6009, 0x64066407, + 0x64066403, 0x59240400, 0x8c00050a, 0x0502000b, + 0x64126407, 0x641e6203, 0x6406642c, 0x60043000, + 0x4d400000, 0x60a68000, 0x41782800, 0x0515fe2b, + 0x5c028000, 0x0501f005, 0x602c0800, 0x05d9fe41, + 0x64066203, 0x05f1fc69, 0x5c026000, 0x05fdff3a, + 0x05c1fb46, 0x0009f010, 0x05fdff37, 0x60040000, + 0x0501f0d5, 0x4933c857, 0x59340200, 0x8c000500, + 0x05000009, 0x4d3c0000, 0x417a7800, 0x05d9fe27, + 0x5c027800, 0x8d0c0520, 0x05000003, 0x60180800, + 0x05d9fe2c, 0x1c01f000, 0x4933c857, 0x59a808bb, + 0xb00405b4, 0x0500000e, 0x4807c857, 0x82040580, + 0x00000100, 0x050200ac, 0x59cc0408, 0x4803c857, + 0x8c000500, 0x050000a8, 0x59341403, 0x82080580, + 0x000007fe, 0x05000006, 0x0501f0a3, 0x59341403, + 0x82080580, 0x000007fe, 0x0502001b, 0x59a8024c, + 0x8c000506, 0x0500000e, 0x59cc0000, 0x82000500, + 0x000000ff, 0x59240c08, 0x80040580, 0x05000008, + 0x05c1fb16, 0x0009f810, 0x42000000, 0x001123e1, + 0x0519fe5f, 0x6006d800, 0x05d9f1e8, 0x0519ff95, + 0x050e075f, 0x59a8024c, 0x8c000506, 0x05020004, + 0x83240580, 0x001124b6, 0x050e0561, 0x0501fa7d, + 0x0501f03b, 0x41780800, 0x05d9ff36, 0x59341403, + 0x82080580, 0x000007fc, 0x05020019, 0x4a026802, + 0x00fffffc, 0x0509f945, 0x0500000c, 0x0509ffe4, + 0x0502000a, 0x0501f8a3, 0x41780800, 0x4d400000, + 0x60028000, 0x0509fe09, 0x5c028000, 0x60100800, + 0x05d9fde8, 0x0009f010, 0x60100800, 0x05d9fde5, + 0x05c1faee, 0x59300c29, 0x900405a1, 0x05100019, + 0xb0040591, 0x000a0010, 0x0511f016, 0x59a800d6, + 0x8c000502, 0x0500000d, 0x05e1fa72, 0x60401000, 0x05020008, 0x59340002, 0x82000500, 0x00ff0000, - 0x82000580, 0x00ff0000, 0x05000008, 0x60201000, - 0x05ddffff, 0x05000005, 0x59a800d1, 0x8400054c, - 0x480350d1, 0x0501f027, 0x916c0583, 0x0502000c, - 0x59300009, 0x80000540, 0x05020009, 0x59341c03, - 0x60182000, 0x604c3000, 0x4d200000, 0x59364013, - 0x81224130, 0x05d5fb87, 0x5c024000, 0x05ddf988, - 0x05fdfecb, 0x0501fab8, 0x05020016, 0x59340404, - 0x80000540, 0x05000013, 0x60180800, 0x05ddf822, - 0x0505fffd, 0x0500000d, 0x0509fe7f, 0x05020007, - 0x41780800, 0x4d400000, 0x60028000, 0x0509fcac, - 0x5c028000, 0x0005f7dc, 0x4a025a08, 0x00000103, - 0x4a025809, 0x02000000, 0x05c1fe99, 0x0005f7dc, - 0x05ddff94, 0x0505ffec, 0x05000005, 0x0509fe6e, - 0x05020003, 0x05fdfde2, 0x0005f7dc, 0x05fdfde0, - 0x0519f974, 0x80000580, 0x59a800d1, 0x8c00050c, - 0x05000004, 0x8400050c, 0x480350d1, 0x90000541, - 0x05fdf777, 0x4933c857, 0x59a800b6, 0x90000594, - 0x05020006, 0x602c0800, 0x05d9fffb, 0x64066203, - 0x64066403, 0x05f1f37c, 0x60040000, 0x05fdf76c, - 0x4933c857, 0x40003000, 0x59a800b6, 0x90000584, - 0x05020018, 0x9018358b, 0x05020015, 0x5930081d, - 0x58040200, 0x8c000500, 0x050c0432, 0x58040200, - 0x8c000508, 0x0500000c, 0x84000508, 0x48000a00, - 0x600c0800, 0x05d9ffe4, 0x5930080a, 0x49780806, - 0x4a026202, 0x0000ffff, 0x64066203, 0x65466403, - 0x05f1f361, 0x601c0800, 0x05d9ffdb, 0x0005f7dc, - 0x60040000, 0x05fdf74e, 0x4803c857, 0x4d2c0000, - 0x4d3c0000, 0x0c01f804, 0x5c027800, 0x5c025800, - 0x1c01f000, 0x00109b47, 0x00109d4c, 0x00109b47, - 0x00109d8f, 0x00109b47, 0x00109df5, 0x00109d29, - 0x00109b47, 0x00109b47, 0x00109e0b, 0x00109b47, - 0x00109e16, 0x4933c857, 0x4d1c0000, 0x59301403, - 0x90080583, 0x0500001d, 0x9008159e, 0x05020019, - 0x91381595, 0x05020016, 0x4d300000, 0x5930141b, - 0x0509fc25, 0x05b408a5, 0x591c1416, 0x8c08051e, - 0x0500000b, 0x05f9feca, 0x05000009, 0x05ddfd36, - 0x4926601d, 0x59340200, 0x8c000508, 0x05000003, - 0x4a026416, 0x00000100, 0x0509fa0e, 0x82081500, - 0xffff1fff, 0x480a3c16, 0x5c026000, 0x0005ffdc, - 0x5c023800, 0x1c01f000, 0x05fdff55, 0x05fdf7fd, - 0x4933c857, 0x42000000, 0x0010e458, 0x0519fa8d, - 0x0519f908, 0x05ddfb5c, 0x0505ff77, 0x05000007, - 0x0509fdf9, 0x05020005, 0x6008b000, 0x0509fde0, - 0x05fdfd6b, 0x0005f7dc, 0x0501f8d3, 0x05020020, - 0x417a7800, 0x05d9ff86, 0x417a7800, 0x05c1fdcd, - 0x42000000, 0x0010e454, 0x0519fa7a, 0x59340200, - 0x84000558, 0x48026a00, 0x640a6403, 0x600c3000, - 0x0519f81b, 0x59240400, 0x8c00050a, 0x0502000b, - 0x4d400000, 0x41782800, 0x60143000, 0x60a68000, - 0x0515fa2f, 0x5c028000, 0x641e6203, 0x64126407, - 0x6406642c, 0x1c01f000, 0x600c0800, 0x05d9ff76, - 0x64066203, 0x05f1faf8, 0x05fdf7fb, 0x59cc0407, - 0x90000589, 0x05020009, 0x59340412, 0x82000500, - 0x000000ff, 0x0500000b, 0x80000040, 0x48026c12, - 0x642a6006, 0x05fdf7f0, 0x59cc0207, 0x82000500, - 0x0000ff00, 0x82000580, 0x00001900, 0x05fc07d3, - 0x05fdfd37, 0x80000580, 0x05fdf6d5, 0x4933c857, - 0x0505ff39, 0x0500000b, 0x0509fdbb, 0x05020009, - 0x4c580000, 0x6008b000, 0x0509fda1, 0x5c00b000, - 0x05fdfd2b, 0x601c0800, 0x05d9ff53, 0x0005f7dc, - 0x59340403, 0x82000580, 0x000007fc, 0x05020007, - 0x60100000, 0x05fdf887, 0x05020031, 0x601c0800, - 0x05d9ff49, 0x0005f7dc, 0x05fdfd1d, 0x59cc3407, - 0x82183500, 0x000000ff, 0x90180585, 0x0500001e, - 0x9018058b, 0x05000015, 0x59cc0207, 0x82000500, - 0x0000ff00, 0x05020003, 0x90180589, 0x05000016, - 0x82000580, 0x00001900, 0x0502000c, 0x90180589, - 0x05000011, 0x59340403, 0x82000580, 0x000007fe, - 0x05000023, 0x60100800, 0x05d9ff2f, 0x05c1fdb4, - 0x0519f898, 0x0005f7dc, 0x59340403, 0x82000580, - 0x000007fe, 0x0500001a, 0x0519f892, 0x60040000, - 0x05fdf69b, 0x0505ff00, 0x59325809, 0x05000008, - 0x592c0208, 0x82000580, 0x00000139, 0x05fc07f7, - 0x592c0408, 0x8c00051e, 0x05fe07f4, 0x59340412, - 0x800001c0, 0x05000006, 0x80000040, 0x48026c12, - 0x642a6006, 0x645a6403, 0x1c01f000, 0x59340403, - 0x82000580, 0x000007fe, 0x0502000b, 0x59a80249, - 0x84000540, 0x48035249, 0x8c000506, 0x05000004, - 0x4a035045, 0x0000ffff, 0x050dfcbb, 0x05d9fc0b, - 0x05fdf7de, 0x0519f86f, 0x417a7800, 0x05c1fd41, - 0x60143000, 0x0515ff96, 0x42000000, 0x0010e454, - 0x0519f9ec, 0x59300429, 0x900005a1, 0x050c048f, - 0x05fdf7d3, 0x4933c857, 0x0501f844, 0x05020006, - 0x60140800, 0x05d9fef4, 0x64066203, 0x640e6403, - 0x05f1f275, 0x60100800, 0x05d9feef, 0x0509fd4e, - 0x05020007, 0x4c580000, 0x6008b000, 0x0509fd34, - 0x5c00b000, 0x05fdfcbe, 0x0005f7dc, 0x05fdfcbc, - 0x0519f850, 0x80000580, 0x05fdf659, 0x4933c857, - 0x0501f82e, 0x05020006, 0x60240800, 0x05d9fede, - 0x64066203, 0x64166403, 0x05f1f25f, 0x0519f845, - 0x60040000, 0x05fdf64e, 0x4933c857, 0x5930081d, - 0x58040200, 0x8c000500, 0x050c031a, 0x0501f81f, - 0x05020006, 0x602c0800, 0x05d9fecf, 0x64066203, - 0x64066403, 0x05f1f250, 0x5930080a, 0x58040403, - 0x82000580, 0x000007fe, 0x05020004, 0x600c2800, - 0x050dfb11, 0x0005f7dc, 0x0519f82e, 0x60040000, - 0x05fdf637, 0x4933c857, 0x59cc0407, 0x90000583, - 0x05020009, 0x59cc0207, 0x82000500, 0x0000ff00, - 0x82000d80, 0x00002a00, 0x05000003, 0x82000d80, - 0x00001e00, 0x1c01f000, 0x4933c857, 0x90000541, - 0x1c01f000, 0x4933c857, 0x4d400000, 0x4c580000, - 0x60028000, 0x05c1ffd6, 0x59a80249, 0x90000543, - 0x48035249, 0x05d5fcce, 0x0500000c, 0x59a81ccc, - 0x8c0c0506, 0x0502000f, 0x840c1d44, 0x480f54cc, - 0x59cc0408, 0x8c00051c, 0x05000004, 0x59a81249, - 0x84081558, 0x480b5249, 0x0501f8c5, 0x05000005, - 0x4d300000, 0x4d340000, 0x4d440000, 0x0501f037, - 0x59cc0408, 0x8c00051c, 0x05000006, 0x59cc0800, - 0x82040d00, 0x00ffffff, 0x800409c0, 0x05000037, - 0x0501f8ec, 0x05000035, 0x4d300000, 0x4d340000, - 0x4d440000, 0x83240580, 0x0010e512, 0x0502002a, - 0x59cc0408, 0x8c00051e, 0x0502000c, 0x42000800, - 0x0010e512, 0x58040406, 0x8c000500, 0x05020007, - 0x59cc0408, 0x8c000518, 0x05000004, 0x59a80249, - 0x84000552, 0x48035249, 0x59240400, 0x8c00050a, - 0x05020005, 0x60aa8000, 0x61fe89ff, 0x60083000, - 0x0515ff18, 0x60aa8000, 0x4d3c0000, 0x05d5fc99, - 0x05000008, 0x600a7800, 0x5924100b, 0x82081500, - 0x00001fff, 0x41780800, 0x05c5f8bc, 0x0501f003, - 0x60027804, 0x05c1fc49, 0x5c027800, 0x42000000, - 0x0010e454, 0x0519f94f, 0x05d5fc8a, 0x05020002, - 0x05c1fe35, 0x05c5f846, 0x600a8000, 0x5c028800, - 0x5c026800, 0x5c026000, 0x050dfbb3, 0x41780800, - 0x59a804cc, 0x8c00050a, 0x05000002, 0x60040800, - 0x05d9ff3a, 0x59cc0800, 0x82040d00, 0x00ffffff, - 0x59240200, 0xb0000566, 0x48024a00, 0x59cc0408, - 0x8c00051c, 0x05000003, 0x800409c0, 0x05000019, - 0x48064805, 0x812000f0, 0x80040540, 0x48026813, - 0x812241c0, 0x0502000f, 0x59cc0408, 0x8c000518, - 0x05020007, 0x599c0019, 0x8c000510, 0x05000009, - 0x59a80249, 0x84000548, 0x48035249, 0x4c040000, - 0x60001802, 0x60040000, 0x05ddff96, 0x5c000800, - 0x4927c857, 0x83240580, 0x0010e512, 0x05020026, - 0x59a81249, 0x59cc0408, 0x8c00051a, 0x05020005, - 0x84081514, 0x4a0370e5, 0x00000800, 0x0501f004, - 0x84081554, 0x4a0370e5, 0x00000c00, 0x480b5249, - 0x4807503d, 0x80040110, 0x48035046, 0x48038881, - 0x59a80a49, 0x84040d50, 0x59cc0013, 0x8c00053e, - 0x05000003, 0x8c000536, 0x05000004, 0x59cc0017, - 0x8c000536, 0x05020002, 0x84040d10, 0x48075249, - 0x48075449, 0x5924100b, 0x82081500, 0x00001fff, - 0x8c040518, 0x05000004, 0x59a804cc, 0x8c00050a, - 0x05000026, 0x59cc0408, 0x8c000518, 0x05000023, - 0x59a80249, 0x8c000506, 0x05000012, 0x916c0583, - 0x05000004, 0x83240580, 0x0010e512, 0x0500001b, - 0x59240400, 0x8c00050c, 0x05020007, 0x4c040000, - 0x60001802, 0x60040000, 0x05ddff5a, 0x5c000800, - 0x0501f012, 0x64866429, 0x0509fc0b, 0x0501f00f, - 0x0519fa2a, 0x0502000d, 0x4c080000, 0x4c040000, - 0x050dfa18, 0x5c000800, 0x5c001000, 0x05020007, - 0x59a80249, 0x8c000514, 0x05000004, 0x4c040000, - 0x05c5f8aa, 0x5c000800, 0xb0040510, 0xb0000590, - 0x05000008, 0x05e1f9a1, 0x05000006, 0x59cc0009, - 0x4803505a, 0x59cc000a, 0x4803505b, 0x0509f946, - 0x5c00b000, 0x5c028000, 0x1c01f000, 0x4933c857, - 0x59a81449, 0x82080580, 0x0000ffff, 0x0500000f, - 0x4c080000, 0x05e1f991, 0x5c001000, 0x05020012, - 0x59cc0408, 0x8c000518, 0x05000009, 0x8c08050a, - 0x05000011, 0x8c00051c, 0x05020008, 0x8c080518, - 0x0502000d, 0x80000580, 0x1c01f000, 0x8c080508, - 0x05fe07fd, 0x0501f008, 0x8c080518, 0x05fe07fa, - 0x0501f005, 0x90080530, 0x05020003, 0x8c080506, - 0x05fe07f5, 0x4a035449, 0x0000ffff, 0x42000000, - 0x0010e39c, 0x0519f8a3, 0x60303000, 0x61fc19ff, - 0x601c2000, 0x4d200000, 0x417a4000, 0x05d5f909, - 0x5c024000, 0x4d400000, 0x4d3c0000, 0x60043000, - 0x0515fe50, 0x60aa8000, 0x60027804, 0x05c1fb8b, - 0x5c028000, 0x5c027800, 0x90000541, 0x1c01f000, - 0x4933c857, 0x4c580000, 0x59cc0408, 0x8c000518, - 0x05020006, 0x59a80449, 0x82000580, 0x0000ffff, - 0x05000027, 0x0501f011, 0x59a80046, 0x4803c857, - 0x800001c0, 0x05000022, 0x59cc1000, 0x59340013, - 0x82000500, 0x00ffffff, 0x0500001d, 0x82081500, - 0x00ffffff, 0x80080580, 0x05000004, 0x42000000, - 0x0010e432, 0x0501f014, 0x59341806, 0x480fc857, - 0x800c19c0, 0x05000012, 0x91cc140b, 0x6008b000, - 0x91341c06, 0x0501f8da, 0x05000004, 0x42000000, - 0x0010e433, 0x0501f008, 0x91cc140d, 0x6008b000, - 0x91341c08, 0x0501f8d2, 0x05000005, 0x42000000, - 0x0010e434, 0x0519f863, 0x90000541, 0x5c00b000, - 0x1c01f000, 0x4933c857, 0x59cc0206, 0x90000594, - 0x05020015, 0x59cc0407, 0x82000580, 0x00000800, - 0x05020011, 0x59cc0207, 0x8c00051a, 0x0500000d, - 0x82000500, 0x00000f00, 0x82000580, 0x00000100, - 0x05020008, 0x59cc020a, 0x8c000508, 0x05020003, - 0x8c00050a, 0x05000003, 0x80000580, 0x1c01f000, - 0x90000541, 0x1c01f000, 0x4933c857, 0x4943c857, - 0x493fc857, 0x4c5c0000, 0x4d300000, 0x4d340000, - 0x4d2c0000, 0x4d380000, 0x4130b800, 0x42026000, - 0x00111b00, 0x59a8003b, 0x81640480, 0x0502108b, - 0x8d3c0512, 0x05000004, 0x405c0000, 0x81300580, - 0x05000081, 0x05f9fa5d, 0x0500007f, 0x59300407, - 0x90000c92, 0x05021015, 0x5932680a, 0x0c01f001, - 0x0010a029, 0x00109fc3, 0x00109fcc, 0x00109fd6, - 0x00109fc3, 0x00109fcc, 0x00109ffc, 0x0010a00a, - 0x00109fc2, 0x00109fc2, 0x0010a010, 0x00109fc2, - 0x00109fc2, 0x00109fc2, 0x00109fc2, 0x0010a019, - 0x0010a01c, 0x0010a01a, 0x05b1fe18, 0x59300403, - 0xb0000583, 0x05080b8d, 0x0515fe90, 0x0505fdf4, - 0x05c00bab, 0x0505fe01, 0x05fc0af9, 0x0501f05a, - 0x59325809, 0x0505fcfc, 0x05000057, 0x49425a0a, - 0x497a5c0d, 0x0001fb82, 0x59300a29, 0x90040d83, - 0x05040dd4, 0x0501f050, 0x813669c0, 0x05b00e03, - 0x050df985, 0x59300008, 0x8c000500, 0x05000003, - 0x05b9f86d, 0x0501f004, 0x59300203, 0x90000584, - 0x05b80869, 0x59325809, 0x0505fce7, 0x05000042, - 0x592c0208, 0x82000500, 0x000000ff, 0x90000594, - 0x05060dc0, 0x0509fec8, 0x0005f9f3, 0x05e5fc1d, - 0x4a025a08, 0x00000103, 0x59300402, 0x48025c0a, - 0x592c040c, 0x8c000512, 0x05000005, 0x4d2c0000, - 0x592e580d, 0x05b5f9a6, 0x5c025800, 0x49425a0a, - 0x497a580d, 0x0509fb64, 0x0001fb82, 0x0501f02a, - 0x59300203, 0x90000584, 0x05b8084b, 0x59325809, - 0x0505fcc9, 0x05000024, 0x49425a0a, 0x813669c0, - 0x05160b2d, 0x0509feac, 0x0005f9f3, 0x0509fb56, - 0x0001fb82, 0x0501f01c, 0x59300203, 0x90000591, - 0x0502001d, 0x59300429, 0x48026203, 0x0501f01a, - 0x59300203, 0x90000584, 0x05b80837, 0x59325809, - 0x0505fcb5, 0x05000010, 0x49425a0a, 0x0001fb82, - 0x0501f00d, 0x0501f00c, 0x59325819, 0x05b5f980, - 0x59300203, 0x90000584, 0x05b8082b, 0x05b9feea, - 0x59325809, 0x0505fca8, 0x05000003, 0x49425a0a, - 0x0001fb82, 0x05f9fbab, 0x8d3c051c, 0x05000002, + 0x82000580, 0x00ff0000, 0x05000004, 0x60201000, + 0x05ddfe54, 0x05020058, 0x0509f920, 0x05000059, + 0x0509ffbf, 0x05020005, 0x592c0408, 0x8c00051c, + 0x05fe07d5, 0x0501f87b, 0x60140800, 0x05d9fdc5, + 0x64066203, 0x640e6403, 0x05f1f3ec, 0x59cc0408, + 0x8c000518, 0x05000017, 0x0509fcaf, 0x05e1fa55, + 0x05000008, 0x59cc0408, 0x8c000516, 0x05000005, + 0x59300429, 0x900005a1, 0x05fe07c3, 0x1c01f000, + 0x59a8024c, 0x8400054a, 0x4803524c, 0x4803544c, + 0x59a80040, 0x497b8830, 0x84000570, 0x48038832, + 0x59300429, 0x900005a1, 0x05fe07b7, 0x1c01f000, + 0x59a8024c, 0xb0000510, 0xb0000590, 0x05000009, + 0x61bc1001, 0x42024800, 0x001124b6, 0x480a4805, + 0x480b5040, 0x497b8830, 0x84081570, 0x480b8832, + 0x0509fcaa, 0x59a8024c, 0x84000548, 0x4803524c, + 0x4803544c, 0x0515fd52, 0x05fe07a3, 0x599c0019, + 0x8c000510, 0x0502002f, 0x59a8024c, 0x8400054c, + 0x4803524c, 0x601c0800, 0x05d9fd8e, 0x417a7800, + 0x05d9fd82, 0x61bc3801, 0x61a00001, 0x05e9fb03, + 0x05d80db7, 0x05b20c9c, 0x4936600a, 0x05ddf9aa, + 0x05020002, 0x497a6416, 0x599c0208, 0x48026c12, + 0x59340200, 0x8400051a, 0x48026a00, 0x600c0800, + 0x05d9fd7c, 0x64066407, 0x64066203, 0x640a6403, + 0x05f1f3a2, 0x05fdfe74, 0x60040000, 0x0501f012, + 0x599c0017, 0x8c00050a, 0x05fc07ac, 0x60100800, + 0x05d9fd70, 0x493750c7, 0x59a8024c, 0x8c000508, + 0x05000008, 0x599c0018, 0x8c00051c, 0x05000005, + 0x61a00807, 0x42001000, 0x00105a99, 0x05edfab1, + 0x0009f010, 0x4933c857, 0x80003540, 0x05000003, + 0x601c0800, 0x05d9fd5f, 0x801831c0, 0x0502000f, + 0x59302009, 0x801021c0, 0x05000004, 0x58100408, + 0x8c00051e, 0x05020009, 0x59341c03, 0x60102000, + 0x60483000, 0x4d200000, 0x59364013, 0x81224130, + 0x05d5f835, 0x5c024000, 0x05c1fa58, 0x0009f010, + 0x4c5c0000, 0x4d2c0000, 0x59325809, 0x05e5f95f, + 0x5c025800, 0x59cc0008, 0x48002805, 0x59cc0009, + 0x48002806, 0x49782807, 0x49782808, 0x49782809, + 0x4978280a, 0x59cc0013, 0x8c00053e, 0x05000009, + 0x59cc0414, 0x900001c0, 0x59ccbc15, 0x805c0540, + 0x48002807, 0x59cc0416, 0x900001c0, 0x48002808, + 0x59cc0017, 0x8c00053e, 0x05000009, 0x59cc0418, + 0x900001c0, 0x59ccbc19, 0x805c0540, 0x48002809, + 0x59cc041a, 0x900001c0, 0x4800280a, 0x5c00b800, + 0x1c01f000, 0x4933c857, 0x59a800bb, 0x90000594, + 0x0502003a, 0x59a800d6, 0x8c000502, 0x05000011, + 0x05e1f9b8, 0x60401000, 0x05020008, 0x59340002, + 0x82000500, 0x00ff0000, 0x82000580, 0x00ff0000, + 0x05000008, 0x60201000, 0x05ddfd9a, 0x05000005, + 0x59a800d6, 0x8400054c, 0x480350d6, 0x0501f027, + 0x916c0583, 0x0502000c, 0x59300009, 0x80000540, + 0x05020009, 0x59341c03, 0x60182000, 0x604c3000, + 0x4d200000, 0x59364013, 0x81224130, 0x05d1ffea, + 0x5c024000, 0x05d9feb4, 0x05fdfecb, 0x0501fac5, + 0x05020016, 0x59340404, 0x80000540, 0x05000013, + 0x60180800, 0x05d9fcfb, 0x0509f84c, 0x0500000d, + 0x0509feeb, 0x05020007, 0x41780800, 0x4d400000, + 0x60028000, 0x0509fd11, 0x5c028000, 0x0009f010, + 0x4a025a08, 0x00000103, 0x4a025809, 0x02000000, + 0x05c1f9f6, 0x0009f010, 0x05ddfd2f, 0x0509f83b, + 0x05000005, 0x0509feda, 0x05020003, 0x05fdfde2, + 0x0009f010, 0x05fdfde0, 0x0519fba1, 0x80000580, + 0x59a800d6, 0x8c00050c, 0x05000004, 0x8400050c, + 0x480350d6, 0x90000541, 0x05fdf777, 0x4933c857, + 0x59a800bb, 0x90000594, 0x05020006, 0x602c0800, + 0x05d9fcd4, 0x64066203, 0x64066403, 0x05f1f2fb, + 0x60040000, 0x05fdf76c, 0x4933c857, 0x40003000, + 0x59a800bb, 0x90000584, 0x05020018, 0x9018358b, + 0x05020015, 0x5930081d, 0x58040200, 0x8c000500, + 0x050c04a9, 0x58040200, 0x8c000508, 0x0500000c, + 0x84000508, 0x48000a00, 0x600c0800, 0x05d9fcbd, + 0x5930080a, 0x49780806, 0x4a026202, 0x0000ffff, + 0x64066203, 0x65466403, 0x05f1f2e0, 0x601c0800, + 0x05d9fcb4, 0x0009f010, 0x60040000, 0x05fdf74e, + 0x4803c857, 0x4d2c0000, 0x4d3c0000, 0x0c01f804, + 0x5c027800, 0x5c025800, 0x1c01f000, 0x0010a081, + 0x0010a286, 0x0010a081, 0x0010a2c9, 0x0010a081, + 0x0010a338, 0x0010a263, 0x0010a081, 0x0010a081, + 0x0010a34e, 0x0010a081, 0x0010a359, 0x4933c857, + 0x4d1c0000, 0x59301403, 0x90080583, 0x0500001d, + 0x9008159e, 0x05020019, 0x91381595, 0x05020016, + 0x4d300000, 0x5930141b, 0x0509fc87, 0x05b00ba6, + 0x591c1416, 0x8c08051e, 0x0500000b, 0x05f9fea5, + 0x05000009, 0x05ddfac5, 0x4926601d, 0x59340200, + 0x8c000508, 0x05000003, 0x4a026416, 0x00000100, + 0x0509fa6d, 0x82081500, 0xffff1fff, 0x480a3c16, + 0x5c026000, 0x0009f810, 0x5c023800, 0x1c01f000, + 0x05fdff55, 0x05fdf7fd, 0x4933c857, 0x42000000, + 0x001123fc, 0x0519fcce, 0x0519fb35, 0x05ddf894, + 0x0505ffc6, 0x05000007, 0x0509fe65, 0x05020005, + 0x6008b000, 0x0509fe4c, 0x05fdfd6b, 0x0009f010, + 0x0501f8dc, 0x05020020, 0x417a7800, 0x05d9fc5f, + 0x417a7800, 0x05c1f92a, 0x42000000, 0x001123f8, + 0x0519fcbb, 0x59340200, 0x84000558, 0x48026a00, + 0x640a6403, 0x600c3000, 0x0519fa3e, 0x59240400, + 0x8c00050a, 0x0502000b, 0x4d400000, 0x41782800, + 0x60143000, 0x60a68000, 0x0515fc3c, 0x5c028000, + 0x641e6203, 0x64126407, 0x6406642c, 0x1c01f000, + 0x600c0800, 0x05d9fc4f, 0x64066203, 0x05f1fa77, + 0x05fdf7fb, 0x59cc0407, 0x90000589, 0x05020009, + 0x59340412, 0x82000500, 0x000000ff, 0x0500000b, + 0x80000040, 0x48026c12, 0x642a6006, 0x05fdf7f0, + 0x59cc0207, 0x82000500, 0x0000ff00, 0x82000580, + 0x00001900, 0x05fc07d3, 0x05fdfd37, 0x80000580, + 0x05fdf6d5, 0x4933c857, 0x0505ff88, 0x0500000b, + 0x0509fe27, 0x05020009, 0x4c580000, 0x6008b000, + 0x0509fe0d, 0x5c00b000, 0x05fdfd2b, 0x601c0800, + 0x05d9fc2c, 0x0009f010, 0x59340403, 0x82000580, + 0x000007fc, 0x05020007, 0x60100000, 0x05fdf883, + 0x0502003a, 0x601c0800, 0x05d9fc22, 0x0009f010, + 0x05fdfd1d, 0x59340403, 0x82000580, 0x000007fe, + 0x0500001b, 0x59cc3407, 0x82183500, 0x000000ff, + 0x90180585, 0x05000023, 0x9018058b, 0x05000011, + 0x59cc0207, 0x82000500, 0x0000ff00, 0x05020003, + 0x90180d89, 0x0500001b, 0x82000580, 0x00001900, + 0x05020008, 0x90180589, 0x05000016, 0x60100800, + 0x05d9fc08, 0x05c1f911, 0x0519fac5, 0x0009f010, + 0x0519fac3, 0x60040000, 0x05fdf69f, 0x59cc3407, + 0x82183500, 0x000000ff, 0x9018058b, 0x0500001f, + 0x9018058e, 0x0500001d, 0x59cc0207, 0x82000500, + 0x0000ff00, 0x82000580, 0x00001900, 0x05000017, + 0x0505ff46, 0x59325809, 0x05000008, 0x592c0208, + 0x82000580, 0x00000139, 0x05fc07ea, 0x592c0408, + 0x8c00051e, 0x05fe07e7, 0x59340412, 0x800001c0, + 0x05000006, 0x80000040, 0x48026c12, 0x642a6006, + 0x645a6403, 0x1c01f000, 0x59340403, 0x82000580, + 0x000007fe, 0x0502000b, 0x59a8024c, 0x84000540, + 0x4803524c, 0x8c000506, 0x05000004, 0x4a035048, + 0x0000ffff, 0x050dfe2e, 0x05d9f8bf, 0x05fdf7d1, + 0x0519fa93, 0x417a7800, 0x05c1f895, 0x60143000, + 0x0519f9b0, 0x42000000, 0x001123f8, 0x0519fc24, + 0x59300429, 0x900005a1, 0x050c0602, 0x05fdf7c6, + 0x4933c857, 0x0501f844, 0x05020006, 0x60140800, + 0x05d9fbc4, 0x64066203, 0x640e6403, 0x05f1f1eb, + 0x60100800, 0x05d9fbbf, 0x0509fdb1, 0x05020007, + 0x4c580000, 0x6008b000, 0x0509fd97, 0x5c00b000, + 0x05fdfcb5, 0x0009f010, 0x05fdfcb3, 0x0519fa74, + 0x80000580, 0x05fdf650, 0x4933c857, 0x0501f82e, + 0x05020006, 0x60240800, 0x05d9fbae, 0x64066203, + 0x64166403, 0x05f1f1d5, 0x0519fa69, 0x60040000, + 0x05fdf645, 0x4933c857, 0x5930081d, 0x58040200, + 0x8c000500, 0x050c0388, 0x0501f81f, 0x05020006, + 0x602c0800, 0x05d9fb9f, 0x64066203, 0x64066403, + 0x05f1f1c6, 0x5930080a, 0x58040403, 0x82000580, + 0x000007fe, 0x05020004, 0x600c2800, 0x050dfb7f, + 0x0009f010, 0x0519fa52, 0x60040000, 0x05fdf62e, + 0x4933c857, 0x59cc0407, 0x90000583, 0x05020009, + 0x59cc0207, 0x82000500, 0x0000ff00, 0x82000d80, + 0x00002a00, 0x05000003, 0x82000d80, 0x00001e00, + 0x1c01f000, 0x4933c857, 0x90000541, 0x1c01f000, + 0x4933c857, 0x4d400000, 0x4c580000, 0x60028000, + 0x05c1fb2f, 0x59a8024c, 0x90000543, 0x4803524c, + 0x05d5f931, 0x0500000c, 0x59a81cd1, 0x8c0c0506, + 0x0502000f, 0x840c1d44, 0x480f54d1, 0x59cc0408, + 0x8c00051c, 0x05000004, 0x59a8124c, 0x84081558, + 0x480b524c, 0x0501f8c5, 0x05000005, 0x4d300000, + 0x4d340000, 0x4d440000, 0x0501f037, 0x59cc0408, + 0x8c00051c, 0x05000006, 0x59cc0800, 0x82040d00, + 0x00ffffff, 0x800409c0, 0x05000037, 0x0501f8ec, + 0x05000035, 0x4d300000, 0x4d340000, 0x4d440000, + 0x83240580, 0x001124b6, 0x0502002a, 0x59cc0408, + 0x8c00051e, 0x0502000c, 0x42000800, 0x001124b6, + 0x58040406, 0x8c000500, 0x05020007, 0x59cc0408, + 0x8c000518, 0x05000004, 0x59a8024c, 0x84000552, + 0x4803524c, 0x59240400, 0x8c00050a, 0x05020005, + 0x60aa8000, 0x61fe89ff, 0x60083000, 0x0519f932, + 0x60aa8000, 0x4d3c0000, 0x05d5f8fc, 0x05000008, + 0x600a7800, 0x5924100b, 0x82081500, 0x00001fff, + 0x41780800, 0x05c1fc20, 0x0501f003, 0x60027804, + 0x05bdff99, 0x5c027800, 0x42000000, 0x001123f8, + 0x0519fb87, 0x05d5f8ed, 0x05020002, 0x05c1f98a, + 0x05c1fbaa, 0x600a8000, 0x5c028800, 0x5c026800, + 0x5c026000, 0x050dfd23, 0x41780800, 0x59a804d1, + 0x8c00050a, 0x05000002, 0x60040800, 0x05d9fc5d, + 0x59cc0800, 0x82040d00, 0x00ffffff, 0x59240200, + 0xb0000566, 0x48024a00, 0x59cc0408, 0x8c00051c, + 0x05000003, 0x800409c0, 0x05000019, 0x48064805, + 0x812000f0, 0x80040540, 0x48026813, 0x812241c0, + 0x0502000f, 0x59cc0408, 0x8c000518, 0x05020007, + 0x599c0019, 0x8c000510, 0x05000009, 0x59a8024c, + 0x84000548, 0x4803524c, 0x4c040000, 0x60001802, + 0x60040000, 0x05ddfd37, 0x5c000800, 0x4927c857, + 0x83240580, 0x001124b6, 0x05020026, 0x59a8124c, + 0x59cc0408, 0x8c00051a, 0x05020005, 0x84081514, + 0x4a0370e5, 0x00000800, 0x0501f004, 0x84081554, + 0x4a0370e5, 0x00000c00, 0x480b524c, 0x48075040, + 0x80040110, 0x48035049, 0x48038881, 0x59a80a4c, + 0x84040d50, 0x59cc0013, 0x8c00053e, 0x05000003, + 0x8c000536, 0x05000004, 0x59cc0017, 0x8c000536, + 0x05020002, 0x84040d10, 0x4807524c, 0x4807544c, + 0x5924100b, 0x82081500, 0x00001fff, 0x8c040518, + 0x05000004, 0x59a804d1, 0x8c00050a, 0x05000026, + 0x59cc0408, 0x8c000518, 0x05000023, 0x59a8024c, + 0x8c000506, 0x05000012, 0x916c0583, 0x05000004, + 0x83240580, 0x001124b6, 0x0500001b, 0x59240400, + 0x8c00050c, 0x05020007, 0x4c040000, 0x60001802, + 0x60040000, 0x05ddfcfb, 0x5c000800, 0x0501f012, + 0x64866429, 0x0509fc6e, 0x0501f00f, 0x0519fc62, + 0x0502000d, 0x4c080000, 0x4c040000, 0x050dfa86, + 0x5c000800, 0x5c001000, 0x05020007, 0x59a8024c, + 0x8c000514, 0x05000004, 0x4c040000, 0x05c1fc0e, + 0x5c000800, 0xb0040510, 0xb0000590, 0x05000008, + 0x05ddff48, 0x05000006, 0x59cc0009, 0x4803505d, + 0x59cc000a, 0x4803505e, 0x0509f99b, 0x5c00b000, + 0x5c028000, 0x1c01f000, 0x4933c857, 0x59a8144c, + 0x82080580, 0x0000ffff, 0x0500000f, 0x4c080000, + 0x05ddff38, 0x5c001000, 0x05020012, 0x59cc0408, + 0x8c000518, 0x05000009, 0x8c08050a, 0x05000011, + 0x8c00051c, 0x05020008, 0x8c080518, 0x0502000d, + 0x80000580, 0x1c01f000, 0x8c080508, 0x05fe07fd, + 0x0501f008, 0x8c080518, 0x05fe07fa, 0x0501f005, + 0x90080530, 0x05020003, 0x8c080506, 0x05fe07f5, + 0x4a03544c, 0x0000ffff, 0x42000000, 0x0011233d, + 0x0519fadb, 0x60303000, 0x61fc19ff, 0x601c2000, + 0x4d200000, 0x417a4000, 0x05d1fd63, 0x5c024000, + 0x4d400000, 0x4d3c0000, 0x60043000, 0x0519f86a, + 0x60aa8000, 0x60027804, 0x05bdfedb, 0x5c028000, + 0x5c027800, 0x90000541, 0x1c01f000, 0x4933c857, + 0x4c580000, 0x59cc0408, 0x8c000518, 0x05020006, + 0x59a8044c, 0x82000580, 0x0000ffff, 0x0500002b, + 0x0501f015, 0x59a80049, 0x4803c857, 0x800001c0, + 0x05000026, 0x59341806, 0x480fc857, 0x800c19c0, + 0x05000022, 0x59cc1000, 0x59340013, 0x82000500, + 0x00ffffff, 0x0500001d, 0x82081500, 0x00ffffff, + 0x80080580, 0x05000004, 0x42000000, 0x001123d3, + 0x0501f014, 0x59341806, 0x480fc857, 0x800c19c0, + 0x05000012, 0x91cc140b, 0x6008b000, 0x91341c06, + 0x0501f8d8, 0x05000004, 0x42000000, 0x001123d4, + 0x0501f008, 0x91cc140d, 0x6008b000, 0x91341c08, + 0x0501f8d0, 0x05000005, 0x42000000, 0x001123d5, + 0x0519fa97, 0x90000541, 0x5c00b000, 0x1c01f000, + 0x4933c857, 0x59cc0206, 0x90000594, 0x05020015, + 0x59cc0407, 0x82000580, 0x00000800, 0x05020011, + 0x59cc0207, 0x8c00051a, 0x0500000d, 0x82000500, + 0x00000f00, 0x82000580, 0x00000100, 0x05020008, + 0x59cc020a, 0x8c000508, 0x05020003, 0x8c00050a, + 0x05000003, 0x80000580, 0x1c01f000, 0x90000541, + 0x1c01f000, 0x4933c857, 0x4943c857, 0x493fc857, + 0x4c5c0000, 0x4d300000, 0x4d340000, 0x4d2c0000, + 0x4d380000, 0x4130b800, 0x42026000, 0x00115aa4, + 0x050dfc8e, 0x05021089, 0x8d3c0512, 0x05000004, + 0x405c0000, 0x81300580, 0x0500007f, 0x05f9fa07, + 0x0500007d, 0x59300407, 0x90000c92, 0x05021015, + 0x5932680a, 0x0c01f001, 0x0010a56d, 0x0010a509, + 0x0010a512, 0x0010a51c, 0x0010a509, 0x0010a512, + 0x0010a542, 0x0010a550, 0x0010a508, 0x0010a508, + 0x0010a556, 0x0010a508, 0x0010a508, 0x0010a508, + 0x0010a508, 0x0010a55f, 0x0010a560, 0x0010a560, + 0x05b1f90d, 0x59300403, 0xb0000583, 0x05080bed, + 0x0519f8b1, 0x0505fe47, 0x05bc0efc, 0x0505fe54, + 0x05fc0aed, 0x0501f058, 0x59325809, 0x0505fd3f, + 0x05000055, 0x49425a0a, 0x497a5c0d, 0x0001fba8, + 0x59300a29, 0x90040d83, 0x05040e27, 0x0501f04e, + 0x813669c0, 0x05b008f8, 0x050df9f0, 0x59300008, + 0x8c000500, 0x05000003, 0x05b5fbc5, 0x0501f004, + 0x59300203, 0x90000584, 0x05b40bc1, 0x59325809, + 0x0505fd2a, 0x05000040, 0x592c0208, 0x82000500, + 0x000000ff, 0x90000594, 0x05060e13, 0x0509ff28, + 0x0005fa1a, 0x05e5fa5f, 0x4a025a08, 0x00000103, + 0x59300402, 0x48025c0a, 0x592c040c, 0x8c000512, + 0x05000005, 0x4d2c0000, 0x592e580d, 0x05b1fc97, + 0x5c025800, 0x49425a0a, 0x497a580d, 0x0509fbc4, + 0x0001fba8, 0x0501f028, 0x59300203, 0x90000584, + 0x05b40ba3, 0x59325809, 0x0505fd0c, 0x05000022, + 0x49425a0a, 0x813669c0, 0x05160d31, 0x0509ff0c, + 0x0005fa1a, 0x0509fbb6, 0x0001fba8, 0x0501f01a, + 0x59300203, 0x90000591, 0x0502001b, 0x59300429, + 0x48026203, 0x0501f018, 0x59300203, 0x90000584, + 0x05b40b8f, 0x59325809, 0x0505fcf8, 0x0500000e, + 0x49425a0a, 0x0001fba8, 0x0501f00b, 0x0501f00a, + 0x59300203, 0x90000584, 0x05b40b85, 0x05b9fa17, + 0x59325809, 0x0505fced, 0x05000003, 0x49425a0a, + 0x0001fba8, 0x05f9fb7c, 0x8d3c051c, 0x05000002, 0x497a600a, 0x91326430, 0x41580000, 0x81300480, - 0x05fc1778, 0x0501f002, 0x41526000, 0x8d3c0518, - 0x05000011, 0x59a80898, 0x59a80099, 0x80040480, - 0x0500000d, 0x81300800, 0x41540000, 0x80040480, - 0x05021009, 0x5930000a, 0x800001c0, 0x05fe076e, - 0x59300203, 0x90000588, 0x05fe076b, 0x0515fd6d, - 0x05fdf769, 0x5c027000, 0x5c025800, 0x5c026800, - 0x5c026000, 0x5c00b800, 0x1c01f000, 0x5c000000, - 0x4c000000, 0x4803c857, 0x480bc857, 0x480fc857, - 0x485bc857, 0x50080800, 0x500c0000, 0x80042580, - 0x05020007, 0x80081000, 0x800c1800, 0x8058b040, - 0x05fe07f9, 0x80000580, 0x1c01f000, 0x4803c857, - 0x4807c857, 0x480bc857, 0x480fc857, 0x80040480, - 0x05001004, 0x60040000, 0x90040d41, 0x1c01f000, - 0x41780000, 0x05fdf7fd, 0xb1380493, 0x05b21d77, - 0xb138048b, 0x05b01d75, 0x0c01f001, 0x0010a070, - 0x0010a070, 0x0010a070, 0x0010a070, 0x0010a06f, - 0x0010a06f, 0x0010a06f, 0x0010a070, 0x05b1fd6b, - 0x493bc857, 0x64366203, 0x493a6403, 0x42000800, - 0x80000000, 0x0005f6ab, 0x91380593, 0x0502000b, - 0x59300403, 0xb0000590, 0x05b20d60, 0x0509f823, - 0x05000005, 0x643a6203, 0x59a8005e, 0x48026205, - 0x1c01f000, 0x0005f7dc, 0x4933c857, 0x913805a7, - 0x05020027, 0x4933c857, 0x05f1fbe3, 0x4d3c0000, - 0x417a7800, 0x05c1faa3, 0x5c027800, 0x42000000, - 0x0010e454, 0x0515ff4f, 0x4d2c0000, 0x59325809, - 0x0505fc39, 0x492fc857, 0x0500000d, 0x0509fe1e, - 0x05e5fb74, 0x4a025a08, 0x00000103, 0x59300c02, - 0x48065c0a, 0x64a65a0a, 0x497a580d, 0x592c0c0c, - 0x84040d50, 0x48065c0c, 0x0001fb82, 0x5c025800, - 0x60543000, 0x41782800, 0x600c2000, 0x4d400000, - 0x4d440000, 0x59368c03, 0x60a68000, 0x0509fd6c, - 0x5c028800, 0x5c028000, 0x0005f7dc, 0x91380594, - 0x05020009, 0x59300403, 0xb0000c93, 0x05b21d2b, - 0xb0000480, 0x05b01d29, 0x4933c857, 0x4803c857, - 0x0c01f013, 0xb13805a1, 0x05000003, 0xb13805a0, - 0x05020007, 0x05f5f800, 0x05fa037a, 0x59300203, - 0x9000058e, 0x050405c3, 0x1c01f000, 0xb1380593, - 0x05000006, 0xb1380588, 0x05b20d18, 0x59300403, - 0xb0000590, 0x05b20d15, 0x1c01f000, 0x0010a0db, - 0x0010a0da, 0x0010a0da, 0x0010a0da, 0x0010a0da, - 0x0010a0da, 0x0010a0da, 0x0010a0da, 0x0010a0da, - 0x0010a0da, 0x0010a0da, 0x0010a0ed, 0x0010a0ed, - 0x0010a0ed, 0x0010a0ed, 0x0010a0da, 0x0010a0ed, - 0x0010a0da, 0x0010a0ed, 0x05b1fd00, 0x4933c857, - 0x05f1fb8d, 0x0505fbec, 0x000407dc, 0x4d2c0000, - 0x59325809, 0x0509fdd0, 0x05e5fb26, 0x4a025a08, + 0x05fc177a, 0x0501f002, 0x41526000, 0x8d3c0518, + 0x05000012, 0x59a8089b, 0x59a8009c, 0x80040480, + 0x0500000e, 0x81300800, 0x41540000, 0x80040480, + 0x0502100a, 0x5930000a, 0x800001c0, 0x05fe0770, + 0x59300203, 0x90000588, 0x05fe076d, 0x0515ff86, + 0x497a6009, 0x05fdf76a, 0x5c027000, 0x5c025800, + 0x5c026800, 0x5c026000, 0x5c00b800, 0x1c01f000, + 0x5c000000, 0x4c000000, 0x4803c857, 0x480bc857, + 0x480fc857, 0x485bc857, 0x50080800, 0x500c0000, + 0x80042580, 0x05020007, 0x80081000, 0x800c1800, + 0x8058b040, 0x05fe07f9, 0x80000580, 0x1c01f000, + 0x4803c857, 0x4807c857, 0x480bc857, 0x480fc857, + 0x80040480, 0x05001004, 0x60040000, 0x90040d41, + 0x1c01f000, 0x41780000, 0x05fdf7fd, 0xb1380493, + 0x05b2186d, 0xb138048b, 0x05b0186b, 0x0c01f001, + 0x0010a5b5, 0x0010a5b5, 0x0010a5b5, 0x0010a5b5, + 0x0010a5b4, 0x0010a5b4, 0x0010a5b4, 0x0010a5b5, + 0x05b1f861, 0x493bc857, 0x64366203, 0x493a6403, + 0x42000800, 0x80000000, 0x0005f6e2, 0x91380593, + 0x0502000b, 0x59300403, 0xb0000590, 0x05b20856, + 0x0509f876, 0x05000005, 0x643a6203, 0x59a80061, + 0x48026205, 0x1c01f000, 0x0009f010, 0x4933c857, + 0x913805a7, 0x05020027, 0x4933c857, 0x05f1fb5c, + 0x4d3c0000, 0x417a7800, 0x05bdfdf5, 0x5c027800, + 0x42000000, 0x001123f8, 0x0519f985, 0x4d2c0000, + 0x59325809, 0x0505fc7d, 0x492fc857, 0x0500000d, + 0x0509fe7f, 0x05e5f9b7, 0x4a025a08, 0x00000103, + 0x59300c02, 0x48065c0a, 0x64a65a0a, 0x497a580d, + 0x592c0c0c, 0x84040d50, 0x48065c0c, 0x0001fba8, + 0x5c025800, 0x60543000, 0x41782800, 0x600c2000, + 0x4d400000, 0x4d440000, 0x59368c03, 0x60a68000, + 0x0509fdce, 0x5c028800, 0x5c028000, 0x0009f010, + 0x91380594, 0x05020009, 0x59300403, 0xb0000c93, + 0x05b21821, 0xb0000480, 0x05b0181f, 0x4933c857, + 0x4803c857, 0x0c01f012, 0xb13805a1, 0x05000003, + 0xb13805a0, 0x05020007, 0x05f1ff79, 0x05fa0367, + 0x59300203, 0x9000058e, 0x05040617, 0x1c01f000, + 0xb1380586, 0x05000004, 0xb1380585, 0x05000002, + 0x1c01f000, 0x493bc857, 0x05f9f35c, 0x0010a61f, + 0x0010a61e, 0x0010a61e, 0x0010a61e, 0x0010a61e, + 0x0010a61e, 0x0010a61e, 0x0010a61e, 0x0010a61e, + 0x0010a61e, 0x0010a61e, 0x0010a631, 0x0010a631, + 0x0010a631, 0x0010a631, 0x0010a61e, 0x0010a631, + 0x0010a61e, 0x0010a631, 0x05adfff7, 0x4933c857, + 0x05f1fb07, 0x0505fc31, 0x00080010, 0x4d2c0000, + 0x59325809, 0x0509fe32, 0x05e5f96a, 0x4a025a08, 0x00000103, 0x59300402, 0x48025c0a, 0x641a5a0a, - 0x497a580d, 0x0001fb82, 0x5c025800, 0x0505fcbd, - 0x0005f7dc, 0x4933c857, 0x05f1fb7b, 0x0005f7dc, - 0x05b1fcea, 0x59300008, 0x8c000536, 0x05020004, - 0x5930001e, 0x800001c0, 0x050a0d0c, 0x497a6205, - 0x59300004, 0x8c00053e, 0x0502003b, 0x0509fdca, + 0x497a580d, 0x0001fba8, 0x5c025800, 0x0505fd12, + 0x0009f010, 0x4933c857, 0x05f1faf5, 0x0009f010, + 0x05adffe1, 0x59300008, 0x8c000536, 0x05020004, + 0x5930001e, 0x800001c0, 0x050a0d6f, 0x497a6205, + 0x59300004, 0x8c00053e, 0x0502003b, 0x0509fe37, 0x050200f0, 0x59325809, 0x592c0c0c, 0x59cc2808, 0x82141d00, 0x00000c00, 0x05000002, 0x59cc1809, 0x84040d58, 0x48065c0c, 0x82143500, 0x00008fff, 0x05020034, 0x59300008, 0x8c000536, 0x0500000f, 0x60303000, 0x60443800, 0x901409c0, 0x4806580d, - 0x4c5c0000, 0x592cb805, 0x0009f8b5, 0x4d2c0000, - 0x405e5800, 0x05b5f87d, 0x5c025800, 0x497a5805, + 0x4c5c0000, 0x592cb805, 0x0009f8ee, 0x4d2c0000, + 0x405e5800, 0x05b1fb70, 0x5c025800, 0x497a5805, 0x5c00b800, 0x0501f013, 0x59340200, 0x8c00050e, - 0x050200c6, 0x0009f8a5, 0x05020006, 0x64025a0a, - 0x59300013, 0x0509fd99, 0x80000d40, 0x05020a55, + 0x050200c6, 0x0009f8de, 0x05020006, 0x64025a0a, + 0x59300013, 0x0509fdfb, 0x80000d40, 0x05020a55, 0x4a025a08, 0x00000103, 0x4806580b, 0x480e580e, 0x901409c0, 0x4806580d, 0x59300c02, 0x48065c0a, - 0x0509fa31, 0x0509fa34, 0x0001fb82, 0x0509fd82, - 0x05ddf897, 0x59cc0008, 0x8c000518, 0x05060594, - 0x0005f7dc, 0x05f1ff84, 0x05fc07c5, 0x4d3c0000, - 0x600a7800, 0x0501fedc, 0x5c027800, 0x05fdf7c0, + 0x0509fa93, 0x0509fa96, 0x0001fba8, 0x0509fde4, + 0x05d9fe18, 0x59cc0008, 0x8c000518, 0x050605e9, + 0x0009f010, 0x05f1fefe, 0x05fc07c5, 0x4d3c0000, + 0x600a7800, 0x0501ff0a, 0x5c027800, 0x05fdf7c0, 0x4817c857, 0x480fc857, 0x82180500, 0x000000ff, 0x0500000d, 0x592c0208, 0x82000500, 0x000000ff, 0xb0000588, 0x05000003, 0x900005a2, 0x05020006, - 0x592c040b, 0x800001c0, 0x05000003, 0x0509fbc6, - 0x0509f3fd, 0x82180d00, 0x00000c00, 0x05000007, + 0x592c040b, 0x800001c0, 0x05000003, 0x0509fc29, + 0x0509f460, 0x82180d00, 0x00000c00, 0x05000007, 0x59300008, 0x8c000536, 0x05020004, 0x59340200, 0x8c00050e, 0x0502007c, 0x64025a0a, 0x41782000, 0x8c180510, 0x05000009, 0x59cc200b, 0x801021c0, @@ -10370,58 +10707,58 @@ static const uint32_t isp_2500_risc_code[] = { 0x05000028, 0x90183403, 0x80183104, 0x901c3c03, 0x801c3904, 0x9018340c, 0x901c3c11, 0x4c5c0000, 0x901401c0, 0x4802580d, 0x480e580e, 0x592cb805, - 0x4c040000, 0x0009f8b5, 0x5c000800, 0x4c500000, - 0x4c540000, 0x91cca40c, 0x912cac11, 0x0501fe3a, + 0x4c040000, 0x0009f8ee, 0x5c000800, 0x4c500000, + 0x4c540000, 0x91cca40c, 0x912cac11, 0x0501fe68, 0x5c00a800, 0x5c00a000, 0x4d2c0000, 0x405e5800, - 0x05b5f806, 0x5c025800, 0x497a5805, 0x5c00b800, + 0x05b1faf9, 0x5c025800, 0x497a5805, 0x5c00b800, 0x05fdf79c, 0x59300008, 0x8c000536, 0x05fc078a, 0x480e580e, 0x60303000, 0x60443800, 0x05fdf777, 0x59300008, 0x8c000536, 0x05000020, 0x05fdf7d7, - 0x4c040000, 0x4c0c0000, 0x4c140000, 0x0009f8a5, - 0x05020006, 0x64025a0a, 0x59300013, 0x0509fd17, + 0x4c040000, 0x4c0c0000, 0x4c140000, 0x0009f8de, + 0x05020006, 0x64025a0a, 0x59300013, 0x0509fd79, 0x80000d40, 0x050209d3, 0x5c002800, 0x5c001800, 0x4a025a08, 0x00000103, 0x4806580b, 0x480e580e, 0x901409c0, 0x4806580d, 0x5c000800, 0x4c500000, - 0x4c540000, 0x91cca40c, 0x912cac11, 0x0501fe0e, + 0x4c540000, 0x91cca40c, 0x912cac11, 0x0501fe3c, 0x5c00a800, 0x5c00a000, 0x59300008, 0x84000534, 0x48026008, 0x05fdf771, 0x4c040000, 0x4c0c0000, - 0x4c140000, 0x0009f8a5, 0x05020006, 0x64025a0a, - 0x59300013, 0x0509fcf9, 0x80000d40, 0x050209b5, + 0x4c140000, 0x0009f8de, 0x05020006, 0x64025a0a, + 0x59300013, 0x0509fd5b, 0x80000d40, 0x050209b5, 0x4806580b, 0x5c002800, 0x5c001800, 0x59301402, 0x480a5c0a, 0x480e580e, 0x901401c0, 0x4802580d, - 0x0509f991, 0x5c000800, 0x0501fda5, 0x0501fdd6, + 0x0509f9f3, 0x5c000800, 0x0501fdd3, 0x0501fe04, 0x05fdf75f, 0x592c020e, 0x8c000502, 0x05fc0783, 0x592c020c, 0x8c00050e, 0x05fe0780, 0x59300013, 0x800c0d80, 0x05fc077d, 0x4803c857, 0x480fc857, - 0x8c180514, 0x05040526, 0x80000540, 0x05fc0777, - 0x4807c856, 0x0505f522, 0x592c020e, 0x8c000502, + 0x8c180514, 0x0504057b, 0x80000540, 0x05fc0777, + 0x4807c856, 0x0505f577, 0x592c020e, 0x8c000502, 0x05fc0739, 0x59300013, 0x800001c0, 0x05fc0738, - 0x592c020c, 0x8c00050e, 0x05fe0735, 0x0505f518, + 0x592c020c, 0x8c00050e, 0x05fe0735, 0x0505f56d, 0x1c01f000, 0x59cc2006, 0x59cc2807, 0x0501f054, 0x0501f053, 0x1c01f000, 0x4933c857, 0x59300004, 0x8c00053e, 0x05020045, 0x59300008, 0x8c000536, - 0x05020004, 0x5930001e, 0x800001c0, 0x050a0c07, + 0x05020004, 0x5930001e, 0x800001c0, 0x050a0c6a, 0x497a6205, 0x59325809, 0x592c0c0c, 0x41782800, 0x41781800, 0x84040d58, 0x48065c0c, 0x41783000, 0x59300008, 0x8c000536, 0x0500000f, 0x901401c0, 0x4802580d, 0x60303000, 0x60443800, 0x4c5c0000, - 0x592cb805, 0x0009f8b5, 0x4d2c0000, 0x405e5800, - 0x05b1ff82, 0x5c025800, 0x497a5805, 0x5c00b800, + 0x592cb805, 0x0009f8ee, 0x4d2c0000, 0x405e5800, + 0x05b1fa75, 0x5c025800, 0x497a5805, 0x5c00b800, 0x0501f015, 0x59340200, 0x8c00050e, 0x05020018, - 0x0009f8a5, 0x05020007, 0x64025a0a, 0x59300013, - 0x0509fc9e, 0x80000d40, 0x4807c857, 0x05020959, + 0x0009f8de, 0x05020007, 0x64025a0a, 0x59300013, + 0x0509fd00, 0x80000d40, 0x4807c857, 0x05020959, 0x4a025a08, 0x00000103, 0x4806580b, 0x480e580e, 0x901409c0, 0x4806580d, 0x4933c857, 0x59300c02, - 0x48065c0a, 0x0509f934, 0x0509f937, 0x0001fb82, - 0x0509fc85, 0x05d9ff9a, 0x0005f7dc, 0x592c020e, + 0x48065c0a, 0x0509f996, 0x0509f999, 0x0001fba8, + 0x0509fce7, 0x05d9fd1b, 0x0009f010, 0x592c020e, 0x8c000502, 0x05fc07e7, 0x59300013, 0x4803c857, 0x800001c0, 0x05fc07e5, 0x592c020c, 0x8c00050e, - 0x05fe07e2, 0x0505f4ca, 0x05f1fe7f, 0x05fc07bb, + 0x05fe07e2, 0x0505f51f, 0x05f1fdf9, 0x05fc07bb, 0x4933c857, 0x1c01f000, 0x4933c857, 0x59300008, - 0x8c000536, 0x05b00b99, 0x0501f209, 0x4c5c0000, + 0x8c000536, 0x05ac0e90, 0x0501f209, 0x4c5c0000, 0x4c600000, 0x4010b800, 0x4014c000, 0x59325809, 0x59300008, 0x8c000536, 0x0502000b, 0x5930001e, - 0x800001c0, 0x4c140000, 0x050a0bb4, 0x5c002800, + 0x800001c0, 0x4c140000, 0x050a0c17, 0x5c002800, 0x592c020e, 0x8c000502, 0x05020033, 0x8c000500, 0x05000038, 0x640a6203, 0x650e6403, 0x405c0000, 0x592c0813, 0x80040c80, 0x40600000, 0x80040480, @@ -10430,99 +10767,99 @@ static const uint32_t isp_2500_risc_code[] = { 0x05000007, 0x59300a23, 0x90040503, 0x4c140000, 0x0c01f826, 0x5c002800, 0x05000018, 0x485e6015, 0x48626013, 0x497a6205, 0x5c00c000, 0x5c00b800, - 0x4c140000, 0x0505fe2d, 0x5c002800, 0x05000007, - 0x4816602a, 0x4a02601c, 0x0010a278, 0x1c01f000, - 0x5930282a, 0x497a602a, 0x05b5feaf, 0x0502000c, - 0x59300804, 0x0005f69d, 0x4c140000, 0x05f1fe3a, + 0x4c140000, 0x0505fe81, 0x5c002800, 0x05000007, + 0x4816602a, 0x4a02601c, 0x0010a7bc, 0x1c01f000, + 0x5930282a, 0x497a602a, 0x05b5fa0a, 0x0502000c, + 0x59300804, 0x0005f6d4, 0x4c140000, 0x05f1fdb4, 0x5c002800, 0x05fc07e1, 0x5c00c000, 0x5c00b800, - 0x05f9f1b0, 0x5c00c000, 0x5c00b800, 0x4933c857, + 0x05f9f19e, 0x5c00c000, 0x5c00b800, 0x4933c857, 0x1c01f000, 0x4807c857, 0x4004c000, 0x05fdf7d2, - 0x4803c857, 0x05fdf7f5, 0x0010a292, 0x0010a297, - 0x0010a29c, 0x0010a29c, 0x59300224, 0x480350d7, - 0x90000408, 0x480350d6, 0x0501f00a, 0x59300224, - 0x480350d6, 0x90000408, 0x480350d7, 0x0501f005, - 0x59300224, 0x90000408, 0x480350d6, 0x480350d7, - 0x405c1000, 0x41780800, 0x59a800d6, 0x05edfceb, + 0x4803c857, 0x05fdf7f5, 0x0010a7d6, 0x0010a7db, + 0x0010a7e0, 0x0010a7e0, 0x59300224, 0x480350dc, + 0x90000408, 0x480350db, 0x0501f00a, 0x59300224, + 0x480350db, 0x90000408, 0x480350dc, 0x0501f005, + 0x59300224, 0x90000408, 0x480350db, 0x480350dc, + 0x405c1000, 0x41780800, 0x59a800db, 0x05edfc60, 0x800409c0, 0x05020052, 0x40085000, 0x592c1001, 0x800811c0, 0x0500004e, 0x58080208, 0x82000500, 0x000000ff, 0xb000058a, 0x05020049, 0x48281005, - 0x59a800d6, 0x40601000, 0x41780800, 0x4c280000, - 0x05edfcda, 0x5c005000, 0x800409c0, 0x05020038, - 0x40041800, 0x59a800d7, 0x59300804, 0x8c040530, + 0x59a800db, 0x40601000, 0x41780800, 0x4c280000, + 0x05edfc4f, 0x5c005000, 0x800409c0, 0x05020038, + 0x40041800, 0x59a800dc, 0x59300804, 0x8c040530, 0x05000005, 0x59300827, 0x800800c6, 0x48000806, 0x59300224, 0x800c1c00, 0x80081040, 0x05fe07fe, - 0x480e602c, 0x592c4801, 0x802449c0, 0x05b00b13, + 0x480e602c, 0x592c4801, 0x802449c0, 0x05ac0e0a, 0x58240a09, 0x592c1815, 0x59303023, 0x8c180506, 0x05000003, 0x40280000, 0x80040c00, 0x800400e0, 0x80040540, 0x48026021, 0x8c18050a, 0x05020003, 0x40280000, 0x800c1c00, 0x480e601f, 0x59300804, 0x8c040530, 0x0500000e, 0x4c280000, 0x592c1001, - 0x59306827, 0x592c5a0e, 0x0005f9a1, 0x5c005000, - 0x802851c0, 0x05ba0b9e, 0x05020015, 0x59300827, + 0x59306827, 0x592c5a0e, 0x0005f9c8, 0x5c005000, + 0x802851c0, 0x05b60ecb, 0x05020015, 0x59300827, 0x58040006, 0x49780806, 0x48000810, 0x59300224, 0x59303023, 0x8c18050e, 0x05000002, 0x80000580, 0x48026424, 0x90000541, 0x1c01f000, 0x592c1813, 0x805c0418, 0x800c0580, 0x05fc07c6, 0x4933c857, 0x485fc857, 0x4863c857, 0x480fc857, 0x80000580, 0x1c01f000, 0xb1380498, 0x05021063, 0xb1380480, - 0x05001002, 0x0c01f002, 0x1c01f000, 0x0010a317, - 0x0010a317, 0x0010a317, 0x0010a317, 0x0010a317, - 0x0010a317, 0x0010a317, 0x0010a317, 0x0010a317, - 0x0010a317, 0x0010a318, 0x0010a317, 0x0010a317, - 0x0010a317, 0x0010a317, 0x0010a322, 0x0010a317, - 0x0010a317, 0x0010a317, 0x0010a317, 0x0010a34d, - 0x0010a317, 0x0010a317, 0x0010a317, 0x05b1fac3, - 0x4933c857, 0x05f1fc30, 0x640a6203, 0x59a8005e, + 0x05001002, 0x0c01f002, 0x1c01f000, 0x0010a85b, + 0x0010a85b, 0x0010a85b, 0x0010a85b, 0x0010a85b, + 0x0010a85b, 0x0010a85b, 0x0010a85b, 0x0010a85b, + 0x0010a85b, 0x0010a85c, 0x0010a85b, 0x0010a85b, + 0x0010a85b, 0x0010a85b, 0x0010a866, 0x0010a85b, + 0x0010a85b, 0x0010a85b, 0x0010a85b, 0x0010a891, + 0x0010a85b, 0x0010a85b, 0x0010a85b, 0x05adfdba, + 0x4933c857, 0x05f1fbaa, 0x640a6203, 0x59a80061, 0x48026205, 0x59300013, 0x59300817, 0x80040c80, - 0x48066017, 0x05f1f12b, 0x4933c857, 0x05f1f929, - 0x4d3c0000, 0x417a7800, 0x05c1f806, 0x5c027800, - 0x42000000, 0x0010e454, 0x0515fcb2, 0x0505f99e, - 0x05000010, 0x4d2c0000, 0x59325809, 0x0509fb82, - 0x05e5f8d8, 0x4a025a08, 0x00000103, 0x59300402, + 0x48066017, 0x05f1f0a5, 0x4933c857, 0x05f1f8a3, + 0x4d3c0000, 0x417a7800, 0x05bdfb59, 0x5c027800, + 0x42000000, 0x001123f8, 0x0515fee9, 0x0505f9e3, + 0x05000010, 0x4d2c0000, 0x59325809, 0x0509fbe4, + 0x05e1ff1c, 0x4a025a08, 0x00000103, 0x59300402, 0x48025c0a, 0x64a65a0a, 0x497a580d, 0x592c0c0c, - 0x84040d50, 0x48065c0c, 0x0001fb82, 0x5c025800, + 0x84040d50, 0x48065c0c, 0x0001fba8, 0x5c025800, 0x60503000, 0x41782800, 0x4d400000, 0x4d440000, - 0x59368c03, 0x60082000, 0x60a68000, 0x0509fad0, + 0x59368c03, 0x60082000, 0x60a68000, 0x0509fb33, 0x5c028800, 0x5c028000, 0x59300008, 0x8c000536, - 0x05000004, 0x59300004, 0x8c000516, 0x05f80085, - 0x0005f7dc, 0x4933c857, 0x59cc0a04, 0x48066202, + 0x05000004, 0x59300004, 0x8c000516, 0x05f80056, + 0x0009f010, 0x4933c857, 0x59cc0a04, 0x48066202, 0x59300809, 0x4978080d, 0x4978080e, 0x5804140c, 0x84081558, 0x48080c0c, 0x59300008, 0x8c000536, 0x05000004, 0x5804040c, 0x84000542, 0x48000c0c, - 0x1c01f000, 0xb13805a1, 0x05020014, 0x05f1f9b4, - 0x0501fdd0, 0x0502000c, 0x05f1fe9a, 0x05fc07ff, + 0x1c01f000, 0xb13805a1, 0x05020014, 0x05f1f92e, + 0x0501fe06, 0x0502000c, 0x05f1fe14, 0x05fc07ff, 0x811800ca, 0x81c80c00, 0x58040138, 0x59cc0a03, - 0x80000040, 0x80040580, 0x05020007, 0x05f1fe8b, + 0x80000040, 0x80040580, 0x05020007, 0x05f1fe05, 0x05000005, 0x59300c16, 0x84040d44, 0x48066416, - 0x497a6205, 0x05f1f193, 0xb13805a0, 0x05fe07fe, + 0x497a6205, 0x05f1f10d, 0xb13805a0, 0x05fe07fe, 0x59cc0002, 0x8c000526, 0x05fe07e9, 0x05fdf7fa, 0x4807c857, 0x8c04053e, 0x05020024, 0x497a5a0a, - 0x5930002b, 0x80000540, 0x05000019, 0x0509ff19, + 0x5930002b, 0x80000540, 0x05000019, 0x050df88b, 0x05000021, 0x497a5a0a, 0x4c040000, 0x4c080000, 0x4c0c0000, 0x4c100000, 0x4c140000, 0x40002800, 0x58141003, 0x40040000, 0x80081480, 0x48082803, - 0x40140000, 0x05b5fb83, 0x5c002800, 0x5c002000, + 0x40140000, 0x05b1fedd, 0x5c002800, 0x5c002000, 0x5c001800, 0x5c001000, 0x5c000800, 0x592c020a, 0x80000540, 0x05020008, 0x0501f005, 0x592c040c, 0x8c00051c, 0x05000002, 0x592c0806, 0x4807c857, 0x64565a0a, 0x1c01f000, 0x5930002b, 0x80000540, 0x05000007, 0x64465a0a, 0x5930002b, 0x4c040000, - 0x05b5fb6c, 0x5c000800, 0x05fdf7f7, 0x4807c856, + 0x05b1fec6, 0x5c000800, 0x05fdf7f7, 0x4807c856, 0x641e5a0a, 0x1c01f000, 0xb1380498, 0x05001006, - 0xb13805a1, 0x05000003, 0xb13805a0, 0x05b20a2b, + 0xb13805a1, 0x05000003, 0xb13805a0, 0x05ae0d22, 0x1c01f000, 0xb1380480, 0x05001004, 0x4d2c0000, - 0x0c01f803, 0x5c025800, 0x1c01f000, 0x0010a3cf, - 0x0010a3cf, 0x0010a3cf, 0x0010a3cf, 0x0010a3cf, - 0x0010a3d1, 0x0010a3d0, 0x0010a3cf, 0x0010a44b, - 0x0010a3cf, 0x0010a3cf, 0x0010a3cf, 0x0010a3cf, - 0x0010a3cf, 0x0010a3cf, 0x0010a3cf, 0x0010a3cf, - 0x0010a3cf, 0x0010a3cf, 0x0010a52b, 0x0010a55c, - 0x0010a53b, 0x0010a3d0, 0x0010a565, 0x05b1fa0b, - 0x1c01f000, 0x5930001e, 0x800001c0, 0x050a0a2f, + 0x0c01f803, 0x5c025800, 0x1c01f000, 0x0010a913, + 0x0010a913, 0x0010a913, 0x0010a913, 0x0010a913, + 0x0010a915, 0x0010a914, 0x0010a913, 0x0010a98f, + 0x0010a913, 0x0010a913, 0x0010a913, 0x0010a913, + 0x0010a913, 0x0010a913, 0x0010a913, 0x0010a913, + 0x0010a913, 0x0010a913, 0x0010aa80, 0x0010aab1, + 0x0010aa90, 0x0010a914, 0x0010aaba, 0x05adfd02, + 0x1c01f000, 0x5930001e, 0x800001c0, 0x050a0a92, 0x59300008, 0x8c00050e, 0x05000074, 0x8c000500, 0x05000066, 0x8c00051c, 0x05000008, 0x84000500, 0x48026008, 0x59325809, 0x592c3c0c, 0x841c3d58, - 0x481e5c0c, 0x0009f03f, 0x59325809, 0x592c3c0c, + 0x481e5c0c, 0x0009f078, 0x59325809, 0x592c3c0c, 0x841c3d58, 0x59300008, 0x8c00051c, 0x05fe07f4, 0x481e5c0c, 0x60140000, 0x40000000, 0x80000040, 0x05fe07fe, 0x59300008, 0x8c00051c, 0x05fe07ec, @@ -10530,751 +10867,772 @@ static const uint32_t isp_2500_risc_code[] = { 0x82000500, 0x000000ff, 0xb0000588, 0x05000003, 0x900005a2, 0x0502000a, 0x497a580f, 0x82040500, 0x000000ff, 0x05000006, 0x592c040b, 0x800001c0, - 0x05000003, 0x0509f910, 0x05b5f402, 0x900421c0, + 0x05000003, 0x0509f973, 0x05b1f75c, 0x900421c0, 0x4812580d, 0x41782000, 0x82040500, 0x00000c00, 0x05000002, 0x59cc2009, 0x82043500, 0x00000fff, 0x0502001e, 0x481e5c0c, 0x64025a0a, 0x801831c0, - 0x05b403f4, 0x41782000, 0x8c180510, 0x05000002, + 0x05b0074e, 0x41782000, 0x8c180510, 0x05000002, 0x59cc200b, 0x48125810, 0x41780000, 0x8c180512, 0x05000002, 0x59cc000a, 0x4802580f, 0x80100c00, - 0x05b019be, 0x05b403e7, 0x9004149d, 0x05021009, + 0x05ac1cb5, 0x05b00741, 0x9004149d, 0x05021009, 0x4c500000, 0x4c540000, 0x91cca40c, 0x912cac11, - 0x0501fb9d, 0x5c00a800, 0x5c00a000, 0x05b5f3dd, - 0x0501fb4b, 0x05b5f3db, 0x412c7800, 0x05b1fd57, - 0x05b009ae, 0x492c780d, 0x841c3d52, 0x481c7c0c, + 0x0501fbcb, 0x5c00a800, 0x5c00a000, 0x05b1f737, + 0x0501fb79, 0x05b1f735, 0x412c7800, 0x05b1f84a, + 0x05ac0ca5, 0x492c780d, 0x841c3d52, 0x481c7c0c, 0x4a025a08, 0x00000103, 0x4812580e, 0x900401c0, 0x4802580d, 0x583c0408, 0x583c1009, 0x583c220c, 0x48025c08, 0x480a5809, 0x48125a0c, 0x583c0002, 0x48025802, 0x05fdf7d0, 0x8c000524, 0x05fc079c, 0x59325809, 0x4c000000, 0x592c040c, 0x8c00051c, 0x5c000000, 0x05020003, 0x4a026013, 0xffffffff, - 0x84000524, 0x05fdf792, 0x1c01f000, 0x59a8005e, + 0x84000524, 0x05fdf792, 0x1c01f000, 0x59a80061, 0x48026205, 0x59325809, 0x640a6203, 0x592c240c, 0x59300808, 0x4933c857, 0x4807c857, 0x592c0208, 0x82000500, 0x000000ff, 0xb0001db5, 0x05020006, 0x592c1a0e, 0x8c0c0506, 0x05000003, 0x64025a0a, 0x0501f00a, 0xb0000588, 0x05000003, 0x900005a2, - 0x05020003, 0x8c100500, 0x050a00e7, 0x64025a0a, - 0x8c04051e, 0x05000044, 0x41780800, 0x497a580d, + 0x05020003, 0x8c100500, 0x050a014a, 0x64025a0a, + 0x8c04051e, 0x05000055, 0x41780800, 0x497a580d, 0x592c1c0d, 0x59300008, 0x8c00052c, 0x05000003, 0x4a026013, 0x7fffffff, 0x8c000536, 0x05000012, 0x41782800, 0x60303000, 0x60443800, 0x4c0c0000, - 0x4c100000, 0x4c5c0000, 0x592cb805, 0x0009f8b5, - 0x4d2c0000, 0x405e5800, 0x05b1fd18, 0x5c025800, + 0x4c100000, 0x4c5c0000, 0x592cb805, 0x0009f8ee, + 0x4d2c0000, 0x405e5800, 0x05b1f80b, 0x5c025800, 0x497a5805, 0x5c00b800, 0x5c002000, 0x5c001800, - 0x0501f017, 0x59300013, 0x59341200, 0x497a6205, - 0x8c08050e, 0x0502006e, 0x4807c857, 0x40041000, - 0x0509fa32, 0x480a580e, 0x80000d40, 0x05fe0eed, - 0x59300402, 0x48025c0a, 0x4806580b, 0x4a025a08, - 0x00000103, 0x4c040000, 0x592c0a0c, 0x8c040512, - 0x05000002, 0x64325a0a, 0x5c000800, 0x4c040000, - 0x4c0c0000, 0x4c100000, 0x0505fec3, 0x0509fa16, - 0x5c002000, 0x5c001800, 0x5c000800, 0x8c100512, - 0x05020017, 0x4c0c0000, 0x0505febf, 0x0001fb82, - 0x05d9fd23, 0x5c001800, 0x8c0c0518, 0x000407dc, - 0x0505f21f, 0x4813c857, 0x8c100518, 0x05000046, - 0x41780800, 0x592c1c0d, 0x820c0580, 0x00001000, - 0x05fc07b9, 0x8c100512, 0x05fc07b7, 0x592c780d, - 0x583c080e, 0x583c1c0d, 0x05fdf7b3, 0x4807c857, - 0x592c780d, 0x59300402, 0x592c1408, 0x8c08051e, - 0x0502000e, 0x592c120a, 0x48007c0a, 0x4804780b, - 0x48087a0a, 0x84102512, 0x48107c0c, 0x4c0c0000, - 0x4c3c0000, 0x05b1fcd6, 0x5c007800, 0x403e5800, - 0x0501fadd, 0x05fdf7db, 0x48025c0a, 0x4806580b, - 0x583c0810, 0x583c000f, 0x80040c00, 0x9004149d, - 0x05001005, 0x583c1001, 0x480a5801, 0x49787801, - 0x60700800, 0x90040c14, 0x4c0c0000, 0x4c500000, - 0x4c540000, 0x903ca40c, 0x912cac0c, 0x4c100000, - 0x4c3c0000, 0x0501fae4, 0x5c007800, 0x5c002000, - 0x5c00a800, 0x5c00a000, 0x84102512, 0x48125c0c, - 0x403e5800, 0x05b1fcb6, 0x0505fe77, 0x42034000, - 0x0010dceb, 0x59a1d806, 0x80edd9c0, 0x05b008ef, - 0x48efc857, 0x58ec0009, 0x4803c857, 0x0801f800, - 0x05fdf7b4, 0x4933c857, 0x1c01f000, 0x59301416, - 0x480bc857, 0x8c08051c, 0x0502000e, 0x80000540, - 0x4803c857, 0x05fc078d, 0x80042c80, 0x05fe178b, - 0x8c080514, 0x05020005, 0x592c0813, 0x4807c857, - 0x80040480, 0x48026018, 0x8408155c, 0x480a6416, - 0x59301008, 0x8408151e, 0x480a6008, 0x4c100000, - 0x4c3c0000, 0x4d400000, 0x592e820a, 0x64065a0a, - 0x0505fe51, 0x49425a0a, 0x5c028000, 0x5c007800, - 0x5c002000, 0x497a580d, 0x8c100512, 0x05000005, - 0x4d2c0000, 0x403e5800, 0x05b1fc85, 0x5c025800, - 0x82102500, 0xffffedff, 0x48125c0c, 0x59301006, - 0x800811c0, 0x050401e6, 0x59a8005e, 0x80080480, - 0x050611e3, 0x0509f990, 0x05e1fee6, 0x4a025a08, - 0x00000103, 0x641a5a0a, 0x497a5c0d, 0x492fc857, - 0x0001fb82, 0x05d9fc9e, 0x0005f7dc, 0x59325809, - 0x592c040c, 0x8c000518, 0x05000003, 0x412df800, - 0x05b5f2ec, 0x592c0208, 0x82000500, 0x000000ff, - 0xb0001db5, 0x05020005, 0x592c1a0e, 0x8c0c0506, - 0x05000002, 0x05fdf712, 0x1c01f000, 0x4933c857, - 0x59325809, 0x497a580d, 0x64025a0a, 0x4a025a08, - 0x00000103, 0x59300813, 0x4807c857, 0x800409c0, - 0x0502000a, 0x4806580b, 0x59300c02, 0x48065c0a, - 0x0505fe15, 0x0509f968, 0x0505fe17, 0x0001fb82, - 0x05d9fc7b, 0x0005f7dc, 0x59340200, 0x8c00050e, - 0x05020007, 0x59300013, 0x0509f968, 0x80000d40, - 0x05fdfe24, 0x4806580b, 0x05fdf7f0, 0x592c020c, - 0x8c00050e, 0x05fe07f8, 0x4933c857, 0x0505f1a8, - 0x4933c857, 0x59325809, 0x812e59c0, 0x05b0087b, - 0x592c020e, 0x8c000502, 0x05b00878, 0x640a6006, - 0x1c01f000, 0x5930001e, 0x800001c0, 0x050a089b, - 0x59300008, 0x4933c857, 0x4803c857, 0x8c00050e, - 0x05000034, 0x8c000500, 0x05000026, 0x8c00051c, - 0x05000009, 0x84000500, 0x48026008, 0x59325809, - 0x592c3c0c, 0x481fc857, 0x841c3d58, 0x481e5c0c, - 0x0009f03f, 0x59325809, 0x592c3c0c, 0x841c3d58, - 0x59300008, 0x8c00051c, 0x05fe07f3, 0x481e5c0c, - 0x60140000, 0x40000000, 0x80000040, 0x05fe07fe, - 0x59300008, 0x8c00051c, 0x05fe07eb, 0x592c0208, - 0x82000500, 0x000000ff, 0xb0000588, 0x05000003, - 0x900005a2, 0x05020003, 0x497a580f, 0x0501f002, - 0x497a580d, 0x481e5c0c, 0x64025a0a, 0x05b5f271, - 0x8c000524, 0x05fc07dc, 0x59325809, 0x4c000000, - 0x592c040c, 0x8c00051c, 0x5c000000, 0x05020003, - 0x4a026013, 0xffffffff, 0x84000524, 0x05fdf7d2, - 0x1c01f000, 0x4933c857, 0x41780800, 0xb1380498, - 0x05021009, 0xb1380480, 0x05001007, 0x4d2c0000, - 0x59325809, 0x812e59c0, 0x0c020805, 0x5c025800, - 0x0005f7dc, 0x493bc857, 0x1c01f000, 0x0010a5c7, - 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, - 0x0010a5c8, 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, - 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, - 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, - 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, 0x0010a5cb, - 0x0010a5c7, 0x0010a5c7, 0x0010a5c7, 0x05b1f813, - 0x59cc0808, 0x497a580b, 0x4807c857, 0x59300402, - 0x48025c0a, 0x4a025a08, 0x00000103, 0x900401c0, - 0x4802580d, 0x64025a0a, 0x800409c0, 0x00000382, - 0x59cc0009, 0x4802580e, 0x82042500, 0x00000100, - 0x05000002, 0x59cc200b, 0x48125810, 0x82040500, - 0x00000200, 0x05000002, 0x59cc000a, 0x4802580f, - 0x80100c00, 0x05ac1ff9, 0x00000382, 0x9004149d, - 0x05001005, 0x592c0408, 0x8c00051e, 0x0500000a, - 0x60700800, 0x4c500000, 0x4c540000, 0x91cca40c, - 0x912cac11, 0x0501f9d4, 0x5c00a800, 0x5c00a000, - 0x0001f382, 0x0501f982, 0x0501f1b3, 0x83380480, - 0x00000093, 0x05ae1fe5, 0x83380480, 0x00000085, - 0x05ac1fe2, 0x0c01f001, 0x0010a608, 0x0010a607, - 0x0010a607, 0x0010a60d, 0x0010a607, 0x0010a607, - 0x0010a607, 0x0010a607, 0x0010a607, 0x0010a607, - 0x0010a607, 0x0010a607, 0x0010a607, 0x05adffd3, - 0x64066203, 0x493a6403, 0x42000800, 0x80000040, - 0x0005f6ab, 0x83300580, 0x00111a70, 0x05ae0fcb, - 0x4933c857, 0x59cc1404, 0x0505fb47, 0x0500002c, - 0x591c0203, 0x90000580, 0x05000029, 0x591c000a, - 0x81340580, 0x05020026, 0x59cc1204, 0x82080580, - 0x0000ffff, 0x05000007, 0x591c0202, 0x82000d80, - 0x0000ffff, 0x05000003, 0x80080580, 0x0502001c, - 0x4d300000, 0x4d1c0000, 0x411e6000, 0x0501f9e5, - 0x5c023800, 0x5c026000, 0x05000013, 0x59cc0005, - 0x8c000500, 0x05020003, 0x0501f99a, 0x0501f002, - 0x640a3a03, 0x4a026403, 0x00000086, 0x59cc0005, - 0x8c000500, 0x0500000c, 0x591c0416, 0x8400055a, - 0x48023c16, 0x59300416, 0x8400055a, 0x48026416, - 0x0501f005, 0x0501f9c2, 0x05fc07ed, 0x4a026403, - 0x00000087, 0x4d2c0000, 0x0511ff81, 0x05d9fecc, - 0x5c025800, 0x59340200, 0x8c00050e, 0x0500000b, - 0x59cc1404, 0x0505fb10, 0x05000008, 0x591c0416, - 0x8c00051a, 0x05000005, 0x4d300000, 0x411e6000, - 0x0505f8c5, 0x5c026000, 0x1c01f000, 0x91380593, - 0x0502000a, 0x59300403, 0x4803c857, 0x82000d80, - 0x00000086, 0x05000015, 0x82000d80, 0x00000087, - 0x05ae0f7e, 0x0501f011, 0x913805a7, 0x05000003, - 0x91380594, 0x05ae0f79, 0x493bc857, 0x05edfe06, - 0x0501fe65, 0x05f4056b, 0x4d2c0000, 0x59325809, - 0x0001fb82, 0x59300a29, 0x90040d83, 0x05000f3d, - 0x5c025800, 0x05f5f563, 0x4933c857, 0x0505fa2f, - 0x05f60560, 0x0005f7dc, 0x91380593, 0x05020006, - 0x59300403, 0x4803c857, 0x82000480, 0x00000085, - 0x0c01f04c, 0x913805a7, 0x05020040, 0x4933c857, - 0x05edfded, 0x59300416, 0x8c00051a, 0x05020002, - 0x0005f7dc, 0x4d3c0000, 0x417a7800, 0x05bdfca9, - 0x5c027800, 0x60543000, 0x41782800, 0x600c2000, - 0x60a68000, 0x4d400000, 0x4d440000, 0x59368c03, - 0x0505ff87, 0x5c028800, 0x5c028000, 0x42000000, - 0x0010e454, 0x0515f94b, 0x0501fe37, 0x000407dc, - 0x4d2c0000, 0x59325809, 0x592c0208, 0x82000500, - 0x000000ff, 0x90000594, 0x05020f0e, 0x0509f816, - 0x05e1fd6c, 0x4a025a08, 0x00000103, 0x59300402, - 0x48025c0a, 0x497a580d, 0x49425a0a, 0x0001fb82, - 0x5c025800, 0x0005f7dc, 0xb13805a1, 0x05000009, - 0xb13805a0, 0x05000007, 0x83380580, 0x00000089, - 0x05000004, 0x83380580, 0x0000008a, 0x05f60585, - 0x05f1fa09, 0x05f60583, 0x59300a03, 0x9004058e, - 0x050007bd, 0x9004058a, 0x0500003c, 0x9004058c, - 0x0500003a, 0x05adff21, 0x91380594, 0x05fe07eb, - 0x4933c857, 0x05edfdac, 0x59300416, 0x8c00051a, - 0x05020002, 0x0005f7dc, 0x601a8000, 0x05fdf7cf, - 0x0010a6d2, 0x0010a6d1, 0x0010a6d1, 0x0010a6d1, - 0x0010a6d1, 0x0010a6d1, 0x0010a6e2, 0x0010a6d1, - 0x0010a6d1, 0x0010a6d1, 0x0010a6d1, 0x0010a6d1, - 0x0010a6d1, 0x05adff09, 0x4933c857, 0x0505f9cb, - 0x0500000a, 0x643a6203, 0x59a8005e, 0x48026205, - 0x59300416, 0x8c00051a, 0x05020003, 0x59a8005c, - 0x48026006, 0x1c01f000, 0x59a8005c, 0x48026006, - 0x642a6203, 0x1c01f000, 0x4933c857, 0x0505f9bb, - 0x0500000a, 0x643a6203, 0x59a8005e, 0x48026205, - 0x59300416, 0x8c00051a, 0x05020003, 0x59a8005c, - 0x48026006, 0x1c01f000, 0x59a8005c, 0x48026006, - 0x64326203, 0x1c01f000, 0x5932680a, 0x83380580, - 0x00000089, 0x05000007, 0x83380580, 0x0000008a, - 0x0500002c, 0x4933c857, 0x493bc857, 0x05f5f539, - 0x4933c857, 0x59325809, 0x59300416, 0x8c00051a, - 0x0500000b, 0x59300229, 0x90000583, 0x05ae0ed7, - 0x640e6407, 0x59300429, 0x48026203, 0x59340200, - 0x8c00050e, 0x0506000c, 0x1c01f000, 0x59300a29, - 0x90040583, 0x05020007, 0x0501fdbb, 0x0500000d, - 0x0001fb82, 0x05d9fab6, 0x497a6009, 0x0501f009, - 0x59300229, 0x90000581, 0x05020006, 0x59300c18, - 0x900405b9, 0x05000019, 0x900405b5, 0x05000017, - 0x59cc0c07, 0x4806641b, 0x59cc0a07, 0x4806621b, - 0x59300203, 0x48026429, 0x64466203, 0x05f5f4ad, - 0x4933c857, 0x59300416, 0x8c00051a, 0x000607dc, - 0x59300229, 0x90000581, 0x0502003f, 0x59300c18, - 0x900405b5, 0x05000005, 0x9004059e, 0x05000003, - 0x900405b9, 0x05020038, 0x4933c857, 0x4c5c0000, - 0x4c600000, 0x4d1c0000, 0x4130b800, 0x4004c000, - 0x0505f9de, 0x0502002b, 0x906005b5, 0x05020004, - 0x591c0c16, 0x8c040502, 0x05000026, 0x05f5fcc4, - 0x05000024, 0x491fc857, 0x4933c857, 0x906005b5, - 0x05000003, 0x906005b9, 0x05020002, 0x4932381e, - 0x585c081d, 0x4806601d, 0x48626403, 0x64066203, - 0x64066407, 0x585c080a, 0x4807c857, 0x4806600a, - 0x585c0c17, 0x4807c857, 0x48066417, 0x585c0a17, - 0x4807c857, 0x48066217, 0x585c0a18, 0x4807c857, - 0x48066218, 0x585c0c1b, 0x4807c857, 0x4806641b, - 0x585c0a1b, 0x4807c857, 0x4806621b, 0x491e602a, - 0x0505f92f, 0x42000800, 0x80000040, 0x0005feab, - 0x405e6000, 0x5c023800, 0x5c00c000, 0x5c00b800, - 0x0005f7dc, 0x0501fd60, 0x05000008, 0x4d2c0000, - 0x59325809, 0x0001fb82, 0x59300229, 0x90000583, - 0x05d80a57, 0x5c025800, 0x0005f7dc, 0x4803c856, - 0x4c5c0000, 0x4c600000, 0x4c640000, 0x4c500000, - 0x4c540000, 0x412cb800, 0x4d2c0000, 0x6004c000, - 0x82040480, 0x00000101, 0x05001002, 0x60000802, - 0x4004c800, 0x60700800, 0x91cca40c, 0x912cac11, - 0x0501f83d, 0x9064cc9c, 0x592e5801, 0x812e59c0, - 0x05b20a13, 0x05b1f9f9, 0x05000011, 0x8060c000, - 0x4a025808, 0x00000110, 0x492cb801, 0x90640cbd, - 0x05021005, 0x40640800, 0x912cac09, 0x0501f82e, - 0x0501f007, 0x9064ccbc, 0x60f00800, 0x412cb800, - 0x912cac09, 0x0501f828, 0x05fdf7ef, 0x5c025800, - 0x8460c1c0, 0x9060c543, 0x48625a08, 0x5c00a800, - 0x5c00a000, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x1c01f000, 0x492fc857, 0x812e59c0, 0x05000012, - 0x592c2802, 0x4d2c0000, 0x4c3c0000, 0x592c7801, - 0x803c79c0, 0x05000009, 0x497a5801, 0x4c140000, - 0x4c3c0000, 0x0001fb82, 0x5c025800, 0x5c002800, - 0x48165802, 0x05fdf7f6, 0x5c007800, 0x0001fb82, - 0x5c025800, 0x1c01f000, 0x4803c856, 0x4c580000, - 0x90040403, 0x8000b104, 0x0515f8e9, 0x5c00b000, - 0x1c01f000, 0x4803c856, 0x4c580000, 0x90040c03, - 0x8004b104, 0x0515f8e2, 0x5c00b000, 0x1c01f000, - 0x591c0c07, 0x90040583, 0x05000005, 0x90040582, - 0x05000003, 0x9004058a, 0x05020022, 0x4d300000, - 0x4d2c0000, 0x411e6000, 0x59325809, 0x0501fcf6, - 0x05000019, 0x59300c07, 0x9004058a, 0x0500001a, - 0x90040583, 0x05020007, 0x592c0a08, 0x82040d00, - 0x000000ff, 0x90040d94, 0x05000002, 0x640e6229, - 0x0501f814, 0x4d400000, 0x604e8000, 0x592c0a0c, - 0x84040d54, 0x05d9fe46, 0x5c028000, 0x0505fb76, - 0x0505fec9, 0x0001fb82, 0x59300229, 0x90000583, - 0x05000dbc, 0x05f5fbe3, 0x5c025800, 0x5c026000, - 0x1c01f000, 0x644e5a0a, 0x642a6229, 0x05fdf7f4, - 0x592c040c, 0x8c000512, 0x05000008, 0x84000512, - 0x48025c0c, 0x4d2c0000, 0x592e580d, 0x05b1f9a0, - 0x5c025800, 0x497a580d, 0x1c01f000, 0x59cc0005, - 0x8c000500, 0x0502000a, 0x591c0407, 0x90000582, - 0x05020007, 0x591c0c03, 0x82040580, 0x00000085, - 0x05000003, 0x82040580, 0x0000008b, 0x1c01f000, - 0x4933c857, 0x4d3c0000, 0x600a7800, 0x59300407, - 0x90000c92, 0x05ae1dc9, 0x0c01f808, 0x5c027800, - 0x1c01f000, 0x4933c857, 0x59300407, 0x90000c92, - 0x05ae1dc2, 0x0c01f001, 0x0010a830, 0x0010a82d, - 0x0010a82d, 0x0010a863, 0x0010a82c, 0x0010a82d, - 0x0010a842, 0x0010a82d, 0x0010a82c, 0x0010a82c, - 0x0010b73f, 0x0010a82d, 0x0010a82d, 0x0010a82c, - 0x0010a82c, 0x0010a82c, 0x0010a94b, 0x0010a82d, - 0x05adfdae, 0x4803c856, 0x80000580, 0x1c01f000, - 0x4803c856, 0x8d3c0502, 0x0502000f, 0x0501fc96, - 0x0500000b, 0x59325809, 0x0505fe7b, 0x41780800, - 0x4d400000, 0x60168000, 0x05d9fdf1, 0x5c028000, - 0x0505fb21, 0x0501fdec, 0x0001fb82, 0x05f5fb91, - 0x90000541, 0x1c01f000, 0x4933c857, 0x0501fc86, - 0x05000008, 0x59300809, 0x5804020c, 0x8c000512, - 0x05000004, 0x4d400000, 0x60328000, 0x0501f00f, - 0x05d9f86c, 0x0500000b, 0x59300416, 0x84000556, - 0x48026416, 0x0501f812, 0x4df00000, 0x59300416, - 0x84000516, 0x48026416, 0x5c03e000, 0x1c01f000, - 0x4d400000, 0x60428000, 0x050dfcc7, 0x641a6407, - 0x641e6203, 0x9140058c, 0x05020003, 0x641a6203, - 0x497a6006, 0x5c028000, 0x1c01f000, 0x4933c857, - 0x05edfcaf, 0x4df00000, 0x0501f8d5, 0x90000c91, - 0x05ae1d72, 0x0c01f001, 0x0010a87c, 0x0010a906, - 0x0010a891, 0x0010a914, 0x0010a903, 0x0010a87b, - 0x0010a87c, 0x0010a87c, 0x0010a87f, 0x0010a87c, - 0x0010a87c, 0x0010a87c, 0x0010a87c, 0x0010a891, - 0x0010a87f, 0x0010a87c, 0x0010a87f, 0x05adfd5f, - 0x5c03e000, 0x05ec0c87, 0x05fdf7af, 0x5c03e000, - 0x05ec0c84, 0x59300407, 0x90000583, 0x05fe07ad, - 0x59300203, 0x9000058d, 0x05fc07aa, 0x59300008, - 0x8c000500, 0x05b20fc0, 0x8d3c0502, 0x05fe07a5, - 0x4d340000, 0x5932680a, 0x05d9f939, 0x5c026800, - 0x05fdf7a0, 0x0509f8cc, 0x59300008, 0x8c000500, - 0x05b20fb5, 0x0505fe06, 0x59300004, 0x8400055c, - 0x48026004, 0x4203e000, 0xb0800000, 0x6023f800, - 0x05edfc68, 0x59300407, 0x90000586, 0x0500005e, - 0x8d3c0502, 0x05020060, 0x497a6229, 0x59300203, - 0x9000058d, 0x05000002, 0x640e6229, 0x0501fc22, - 0x05020004, 0x8d3c0500, 0x05000049, 0x0501f041, - 0x4d2c0000, 0x4d400000, 0x59325809, 0x0501fd7a, - 0x592c040c, 0x8c000512, 0x05000008, 0x4d2c0000, - 0x84000512, 0x48025c0c, 0x592c080d, 0x40065800, - 0x05b1f8e3, 0x5c025800, 0x4d400000, 0x60168000, - 0x592c0a0c, 0x82040500, 0x00000084, 0x0500000c, - 0x600a8000, 0x592c0208, 0x82000500, 0x000000ff, - 0xb80004b5, 0x05020009, 0x8c040504, 0x05000007, - 0x83428540, 0x00000200, 0x0501f004, 0x8c040512, - 0x05000002, 0x60328000, 0x592c0208, 0x82000500, - 0x000000ff, 0xb00005b5, 0x05020005, 0x592c020e, - 0x8c000506, 0x05000002, 0x853e7d40, 0x05d9fd54, - 0x0505fdd9, 0x5c028000, 0x0505fa83, 0x8d3c0500, - 0x05020003, 0x0515f814, 0x05020003, 0x0001fb82, - 0x497a6009, 0x5c028000, 0x5c025800, 0x8d3c0500, - 0x0500000a, 0x59300a29, 0x90040d83, 0x05020005, - 0x4d340000, 0x5932680a, 0x05d9f8dd, 0x5c026800, - 0x05f5fae4, 0x0501f010, 0x0515f803, 0x05020004, - 0x59300a29, 0x90040d83, 0x05000cb6, 0x640a6407, - 0x42000800, 0x80004040, 0x0505fda5, 0x4a026003, - 0x00850009, 0x0005feab, 0x4203e000, 0xb0800000, - 0x6023f800, 0x5c03e000, 0x05ee0c15, 0x90000541, - 0x1c01f000, 0x0505fdb0, 0x05fdf7fb, 0x05edfc01, - 0x05b1ff45, 0x05fdf78c, 0x598c000b, 0x81300580, - 0x05020003, 0x05edff07, 0x05020022, 0x05edf8ab, - 0x05020005, 0x59300c03, 0xb0040580, 0x05fc0770, - 0x05fdf781, 0x05edfb1b, 0x0500001a, 0x05adfcc7, - 0x0501f81c, 0x05020003, 0x05edfeca, 0x05020015, - 0x05e9ffbe, 0x0500000f, 0x05edfb12, 0x05000011, - 0x59300407, 0x90000583, 0x05ae0cbc, 0x59300004, - 0x9000051f, 0x90000585, 0x05ae0cb8, 0x58d400ec, - 0x82000500, 0x00000f00, 0x05fe076b, 0x05adfcb3, - 0x59300c03, 0xb0040580, 0x05fc0755, 0x05fdf766, - 0x59300203, 0x90000c91, 0x05ae1cac, 0x0c01f73b, - 0x417a3000, 0x60df2160, 0x59900005, 0x81300580, - 0x05000006, 0x91932410, 0x811a3000, 0x91180485, - 0x05fc17fa, 0x90000541, 0x1c01f000, 0x59300004, - 0x8c00053e, 0x0500000c, 0x8c00050c, 0x0502000a, - 0x8c000516, 0x05020004, 0x90000d1f, 0x90040585, - 0x05020003, 0x600c0000, 0x0501f004, 0x60040000, - 0x0501f002, 0x59300203, 0x1c01f000, 0x4933c857, - 0x05edfbc7, 0x4df00000, 0x59300203, 0x90000c91, - 0x05ae1c8a, 0x0c01f001, 0x0010a964, 0x0010a975, - 0x0010a967, 0x0010a963, 0x0010a963, 0x0010a963, - 0x0010a963, 0x0010a963, 0x0010a963, 0x0010a963, - 0x0010a963, 0x0010a963, 0x0010a963, 0x0010a963, - 0x0010a967, 0x0010a963, 0x0010a963, 0x05adfc77, - 0x5c03e000, 0x05ec0b9f, 0x05fdf6c7, 0x5c03e000, - 0x05ec0b9c, 0x4d2c0000, 0x05b5fd9f, 0x59325809, - 0x0501fb5d, 0x05ac0c6d, 0x64165a0a, 0x0001fb82, - 0x05d9fb00, 0x05f5fa5f, 0x5c025800, 0x90000541, - 0x1c01f000, 0x598c000b, 0x81300580, 0x05020014, - 0x59300004, 0x8c000520, 0x05000004, 0x84000520, - 0x48026004, 0x0501f014, 0x42001000, 0x0010e387, - 0x50081000, 0x58080002, 0x82000580, 0x00000100, - 0x05000005, 0x05b5fd84, 0x05edf830, 0x05ae0c53, - 0x05fdf7df, 0x05edfe87, 0x0502000a, 0x59300004, - 0x8c000520, 0x05000004, 0x84000520, 0x48026004, - 0x05fdf7d7, 0x05edf825, 0x05fc07d5, 0x05adfc47, - 0x59300203, 0x90000c91, 0x05ae1c44, 0x0c01f7bb, - 0x4d340000, 0x4d240000, 0x5932481d, 0x5932680a, - 0x59300407, 0x4933c857, 0x4803c857, 0x90000c92, - 0x05ae1c3a, 0x0c01f804, 0x5c024800, 0x5c026800, - 0x1c01f000, 0x0010a9ba, 0x0010aab5, 0x0010ac24, - 0x0010a9c1, 0x0010ac09, 0x0010ac20, 0x0010c515, - 0x0010aa99, 0x0010ac05, 0x0010a9b7, 0x0010ac80, - 0x0010a9b7, 0x0010a9b7, 0x0010a9b7, 0x0010a9b7, - 0x00020fdc, 0x0010b4cc, 0x0010b4cc, 0x05adfc23, - 0x0501fc12, 0x05f8010a, 0x1c01f000, 0x05edfb58, - 0x05edfaad, 0x05edfb47, 0x0005f7dc, 0x64066006, - 0x1c01f000, 0x42000000, 0x0010e463, 0x0511fe19, - 0x4d2c0000, 0x4d400000, 0x417a5800, 0x0501fb02, - 0x05000007, 0x0505ff94, 0x59325809, 0x592c020c, - 0x8400054c, 0x48025a0c, 0x601a8000, 0x05edfb44, - 0x05fdff6b, 0x4803c857, 0x90000c91, 0x05ae1c07, - 0x0c01f805, 0x05edfb2f, 0x5c028000, 0x5c025800, - 0x1c01f000, 0x0010aa98, 0x0010a9eb, 0x0010a9f7, - 0x0010aa3a, 0x0010aa68, 0x0010a9ea, 0x0010a9ba, - 0x0010a9ba, 0x0010a9ba, 0x0010a9ea, 0x0010a9ea, - 0x0010a9ea, 0x0010a9ea, 0x0010a9f7, 0x0010a9eb, - 0x0010a9ea, 0x0010aa3a, 0x05adfbf0, 0x598c000b, - 0x4803c857, 0x81300580, 0x05020003, 0x05edfe21, - 0x0502005a, 0x05e9ffc5, 0x0500005d, 0x4803c856, - 0x05edfa38, 0x05000055, 0x05adfbe4, 0x497a6229, - 0x812e59c0, 0x05ac0be1, 0x592c0a08, 0x4807c857, - 0x82040d00, 0x000000ff, 0x90040594, 0x05000018, - 0xb00405b5, 0x05020014, 0x59300008, 0x8c000500, - 0x05020064, 0x592c0a0e, 0x8c040506, 0x0500000e, - 0x592c0c0c, 0x4c040000, 0x592c0a0c, 0x05d9fc20, + 0x0501f019, 0x59300013, 0x0509fa9a, 0x59341200, + 0x497a6205, 0x8c08050e, 0x0502007e, 0x4807c857, + 0x4806580e, 0x80000d40, 0x05fe0eee, 0x592c020a, + 0x90000595, 0x0500001e, 0x59300402, 0x48025c0a, + 0x4806580b, 0x4a025a08, 0x00000103, 0x4c040000, + 0x592c0a0c, 0x8c040512, 0x05000002, 0x64325a0a, + 0x5c000800, 0x4c040000, 0x4c0c0000, 0x4c100000, + 0x0505ff23, 0x0509fa76, 0x5c002000, 0x5c001800, + 0x5c000800, 0x8c100512, 0x05020026, 0x4c0c0000, + 0x0505ff1f, 0x0001fba8, 0x05d9faa2, 0x5c001800, + 0x8c0c0518, 0x00080010, 0x0505f272, 0x0501f907, + 0x05fe07e2, 0x8c100512, 0x05020006, 0x59300221, + 0x48025a0d, 0x84102556, 0x48125c0c, 0x05fdf7db, + 0x592c000d, 0x80006d40, 0x05fc07d8, 0x59300221, + 0x48006a0d, 0x05fdf7f8, 0x4813c857, 0x8c100518, + 0x05000046, 0x41780800, 0x592c1c0d, 0x820c0580, + 0x00001000, 0x05fc07a8, 0x8c100512, 0x05fc07a6, + 0x592c780d, 0x583c080e, 0x583c1c0d, 0x05fdf7a2, + 0x4807c857, 0x592c780d, 0x59300402, 0x592c1408, + 0x8c08051e, 0x0502000e, 0x592c120a, 0x48007c0a, + 0x4804780b, 0x48087a0a, 0x84102512, 0x48107c0c, + 0x4c0c0000, 0x4c3c0000, 0x05adffb8, 0x5c007800, + 0x403e5800, 0x0501fafa, 0x05fdf7cc, 0x48025c0a, + 0x4806580b, 0x583c0810, 0x583c000f, 0x80040c00, + 0x9004149d, 0x05001005, 0x583c1001, 0x480a5801, + 0x49787801, 0x60700800, 0x90040c14, 0x4c0c0000, + 0x4c500000, 0x4c540000, 0x903ca40c, 0x912cac0c, + 0x4c100000, 0x4c3c0000, 0x0501fb01, 0x5c007800, + 0x5c002000, 0x5c00a800, 0x5c00a000, 0x84102512, + 0x48125c0c, 0x403e5800, 0x05adff98, 0x0505fec8, + 0x42034000, 0x00111c71, 0x59a1d806, 0x80edd9c0, + 0x05ac0bd5, 0x48efc857, 0x58ec0009, 0x4803c857, + 0x0801f800, 0x05fdf7a5, 0x4933c857, 0x1c01f000, + 0x59301416, 0x480bc857, 0x8c08051c, 0x0502000e, + 0x80000540, 0x4803c857, 0x05fc077d, 0x80042c80, + 0x05fe177b, 0x8c080514, 0x05020005, 0x592c0813, + 0x4807c857, 0x80040480, 0x48026018, 0x8408155c, + 0x480a6416, 0x59301008, 0x8408151e, 0x480a6008, + 0x4c100000, 0x4c3c0000, 0x4d400000, 0x592e820a, + 0x64065a0a, 0x0505fea2, 0x49425a0a, 0x5c028000, + 0x5c007800, 0x5c002000, 0x497a580d, 0x8c100512, + 0x05000005, 0x4d2c0000, 0x403e5800, 0x05adff67, + 0x5c025800, 0x82102500, 0xffffedff, 0x48125c0c, + 0x59301006, 0x800811c0, 0x0504022a, 0x59a80061, + 0x80080480, 0x05061227, 0x0509f9e1, 0x05e1fd19, + 0x4a025a08, 0x00000103, 0x641a5a0a, 0x497a5c0d, + 0x492fc857, 0x0001fba8, 0x05d9fa0e, 0x0009f010, + 0x59325809, 0x592c040c, 0x8c000518, 0x05000003, + 0x412df800, 0x05b1f635, 0x592c0208, 0x82000500, + 0x000000ff, 0xb0001db5, 0x05020005, 0x592c1a0e, + 0x8c0c0506, 0x05000002, 0x05fdf701, 0x1c01f000, + 0x4933c857, 0x59325809, 0x497a580d, 0x64025a0a, + 0x4a025a08, 0x00000103, 0x59300813, 0x4807c857, + 0x800409c0, 0x0502000a, 0x4806580b, 0x59300c02, + 0x48065c0a, 0x0505fe66, 0x0509f9b9, 0x0505fe68, + 0x0001fba8, 0x05d9f9eb, 0x0009f010, 0x59340200, + 0x8c00050e, 0x05020007, 0x59300013, 0x0509f9b9, + 0x80000d40, 0x05fdfe13, 0x4806580b, 0x05fdf7f0, + 0x592c020c, 0x8c00050e, 0x05fe07f8, 0x4933c857, + 0x0505f1ec, 0x4933c857, 0x59325809, 0x812e59c0, + 0x05ac0b61, 0x592c020e, 0x8c000502, 0x05ac0b5e, + 0x640a6006, 0x1c01f000, 0x5930001e, 0x800001c0, + 0x050a08ed, 0x59300008, 0x4933c857, 0x4803c857, + 0x8c00050e, 0x05000034, 0x8c000500, 0x05000026, + 0x8c00051c, 0x05000009, 0x84000500, 0x48026008, + 0x59325809, 0x592c3c0c, 0x481fc857, 0x841c3d58, + 0x481e5c0c, 0x0009f078, 0x59325809, 0x592c3c0c, + 0x841c3d58, 0x59300008, 0x8c00051c, 0x05fe07f3, + 0x481e5c0c, 0x60140000, 0x40000000, 0x80000040, + 0x05fe07fe, 0x59300008, 0x8c00051c, 0x05fe07eb, + 0x592c0208, 0x82000500, 0x000000ff, 0xb0000588, + 0x05000003, 0x900005a2, 0x05020003, 0x497a580f, + 0x0501f002, 0x497a580d, 0x481e5c0c, 0x64025a0a, + 0x05b1f5ba, 0x8c000524, 0x05fc07dc, 0x59325809, + 0x4c000000, 0x592c040c, 0x8c00051c, 0x5c000000, + 0x05020003, 0x4a026013, 0xffffffff, 0x84000524, + 0x05fdf7d2, 0x1c01f000, 0x59a80007, 0x8c00050a, + 0x05000019, 0x59300008, 0x82000500, 0x04800800, + 0x82000580, 0x00000800, 0x05020013, 0x59300014, + 0x80000540, 0x05000010, 0x59300009, 0x80006d40, + 0x0500000d, 0x58340001, 0x80006d40, 0x0500000a, + 0x58340208, 0x82000500, 0x000000ff, 0xb000058a, + 0x05020005, 0x58340409, 0x90000503, 0x90000580, + 0x1c01f000, 0x90000541, 0x05fdf7fe, 0x4933c857, + 0x41780800, 0xb1380498, 0x05021009, 0xb1380480, + 0x05001007, 0x4d2c0000, 0x59325809, 0x812e59c0, + 0x0c020805, 0x5c025800, 0x0009f010, 0x493bc857, + 0x1c01f000, 0x0010ab39, 0x0010ab39, 0x0010ab39, + 0x0010ab39, 0x0010ab39, 0x0010ab3a, 0x0010ab39, + 0x0010ab39, 0x0010ab39, 0x0010ab39, 0x0010ab39, + 0x0010ab39, 0x0010ab39, 0x0010ab39, 0x0010ab39, + 0x0010ab39, 0x0010ab39, 0x0010ab39, 0x0010ab39, + 0x0010ab39, 0x0010ab3d, 0x0010ab39, 0x0010ab39, + 0x0010ab39, 0x05adfadc, 0x59cc0808, 0x497a580b, + 0x4807c857, 0x59300402, 0x48025c0a, 0x4a025a08, + 0x00000103, 0x900401c0, 0x4802580d, 0x64025a0a, + 0x800409c0, 0x000003a8, 0x59cc0009, 0x4802580e, + 0x82042500, 0x00000100, 0x05000002, 0x59cc200b, + 0x48125810, 0x82040500, 0x00000200, 0x05000002, + 0x59cc000a, 0x4802580f, 0x80100c00, 0x05ac1ac2, + 0x000003a8, 0x9004149d, 0x05001005, 0x592c0408, + 0x8c00051e, 0x0500000a, 0x60700800, 0x4c500000, + 0x4c540000, 0x91cca40c, 0x912cac11, 0x0501f9d4, + 0x5c00a800, 0x5c00a000, 0x0001f3a8, 0x0501f982, + 0x0501f1b3, 0x83380480, 0x00000093, 0x05ae1aae, + 0x83380480, 0x00000085, 0x05ac1aab, 0x0c01f001, + 0x0010ab7a, 0x0010ab79, 0x0010ab79, 0x0010ab7f, + 0x0010ab79, 0x0010ab79, 0x0010ab79, 0x0010ab79, + 0x0010ab79, 0x0010ab79, 0x0010ab79, 0x0010ab79, + 0x0010ab79, 0x05adfa9c, 0x64066203, 0x493a6403, + 0x42000800, 0x80000040, 0x0005f6e2, 0x83300580, + 0x00115a14, 0x05ae0a94, 0x4933c857, 0x59cc1404, + 0x0505fb71, 0x0500002c, 0x591c0203, 0x90000580, + 0x05000029, 0x591c000a, 0x81340580, 0x05020026, + 0x59cc1204, 0x82080580, 0x0000ffff, 0x05000007, + 0x591c0202, 0x82000d80, 0x0000ffff, 0x05000003, + 0x80080580, 0x0502001c, 0x4d300000, 0x4d1c0000, + 0x411e6000, 0x0501f9e5, 0x5c023800, 0x5c026000, + 0x05000013, 0x59cc0005, 0x8c000500, 0x05020003, + 0x0501f99a, 0x0501f002, 0x640a3a03, 0x4a026403, + 0x00000086, 0x59cc0005, 0x8c000500, 0x0500000c, + 0x591c0416, 0x8400055a, 0x48023c16, 0x59300416, + 0x8400055a, 0x48026416, 0x0501f005, 0x0501f9c2, + 0x05fc07ed, 0x4a026403, 0x00000087, 0x4d2c0000, + 0x0515f96e, 0x05d9fc2f, 0x5c025800, 0x59340200, + 0x8c00050e, 0x0500000b, 0x59cc1404, 0x0505fb3a, + 0x05000008, 0x591c0416, 0x8c00051a, 0x05000005, + 0x4d300000, 0x411e6000, 0x0505f8ec, 0x5c026000, + 0x1c01f000, 0x91380593, 0x0502000a, 0x59300403, + 0x4803c857, 0x82000d80, 0x00000086, 0x05000015, + 0x82000d80, 0x00000087, 0x05ae0a47, 0x0501f011, + 0x913805a7, 0x05000003, 0x91380594, 0x05ae0a42, + 0x493bc857, 0x05edfd52, 0x0501fe7c, 0x05f4050e, + 0x4d2c0000, 0x59325809, 0x0001fba8, 0x59300a29, + 0x90040d83, 0x05000f64, 0x5c025800, 0x05f5f506, + 0x4933c857, 0x0505fa55, 0x05f60503, 0x0009f010, + 0x91380593, 0x05020006, 0x59300403, 0x4803c857, + 0x82000480, 0x00000085, 0x0c01f04c, 0x913805a7, + 0x05020040, 0x4933c857, 0x05edfd39, 0x59300416, + 0x8c00051a, 0x05020002, 0x0009f010, 0x4d3c0000, + 0x417a7800, 0x05b9ffce, 0x5c027800, 0x60543000, + 0x41782800, 0x600c2000, 0x60a68000, 0x4d400000, + 0x4d440000, 0x59368c03, 0x0505ffbc, 0x5c028800, + 0x5c028000, 0x42000000, 0x001123f8, 0x0515fb54, + 0x0501fe4e, 0x00080010, 0x4d2c0000, 0x59325809, + 0x592c0208, 0x82000500, 0x000000ff, 0x90000594, + 0x05020f35, 0x0509f84a, 0x05e1fb82, 0x4a025a08, + 0x00000103, 0x59300402, 0x48025c0a, 0x497a580d, + 0x49425a0a, 0x0001fba8, 0x5c025800, 0x0009f010, + 0xb13805a1, 0x05000009, 0xb13805a0, 0x05000007, + 0x83380580, 0x00000089, 0x05000004, 0x83380580, + 0x0000008a, 0x05f60545, 0x05f1f955, 0x05f60543, + 0x59300a03, 0x9004058e, 0x050007e4, 0x9004058a, + 0x0500003c, 0x9004058c, 0x0500003a, 0x05adf9ea, + 0x91380594, 0x05fe07eb, 0x4933c857, 0x05edfcf8, + 0x59300416, 0x8c00051a, 0x05020002, 0x0009f010, + 0x601a8000, 0x05fdf7cf, 0x0010ac44, 0x0010ac43, + 0x0010ac43, 0x0010ac43, 0x0010ac43, 0x0010ac43, + 0x0010ac54, 0x0010ac43, 0x0010ac43, 0x0010ac43, + 0x0010ac43, 0x0010ac43, 0x0010ac43, 0x05adf9d2, + 0x4933c857, 0x0505f9f1, 0x0500000a, 0x643a6203, + 0x59a80061, 0x48026205, 0x59300416, 0x8c00051a, + 0x05020003, 0x59a8005f, 0x48026006, 0x1c01f000, + 0x59a8005f, 0x48026006, 0x642a6203, 0x1c01f000, + 0x4933c857, 0x0505f9e1, 0x0500000a, 0x643a6203, + 0x59a80061, 0x48026205, 0x59300416, 0x8c00051a, + 0x05020003, 0x59a8005f, 0x48026006, 0x1c01f000, + 0x59a8005f, 0x48026006, 0x64326203, 0x1c01f000, + 0x5932680a, 0x83380580, 0x00000089, 0x05000007, + 0x83380580, 0x0000008a, 0x0500002c, 0x4933c857, + 0x493bc857, 0x05f5f4f9, 0x4933c857, 0x59325809, + 0x59300416, 0x8c00051a, 0x0500000b, 0x59300229, + 0x90000583, 0x05ae09a0, 0x640e6407, 0x59300429, + 0x48026203, 0x59340200, 0x8c00050e, 0x05060033, + 0x1c01f000, 0x59300a29, 0x90040583, 0x05020007, + 0x0501fdd2, 0x0500000d, 0x0001fba8, 0x05d9f809, + 0x497a6009, 0x0501f009, 0x59300229, 0x90000581, + 0x05020006, 0x59300c18, 0x900405b9, 0x05000019, + 0x900405b5, 0x05000017, 0x59cc0c07, 0x4806641b, + 0x59cc0a07, 0x4806621b, 0x59300203, 0x48026429, + 0x64466203, 0x05f5f450, 0x4933c857, 0x59300416, + 0x8c00051a, 0x000a0010, 0x59300229, 0x90000581, + 0x0502003f, 0x59300c18, 0x900405b5, 0x05000005, + 0x9004059e, 0x05000003, 0x900405b9, 0x05020038, + 0x4933c857, 0x4c5c0000, 0x4c600000, 0x4d1c0000, + 0x4130b800, 0x4004c000, 0x0505fa04, 0x0502002b, + 0x906005b5, 0x05020004, 0x591c0c16, 0x8c040502, + 0x05000026, 0x05f5fc67, 0x05000024, 0x491fc857, + 0x4933c857, 0x906005b5, 0x05000003, 0x906005b9, + 0x05020002, 0x4932381e, 0x585c081d, 0x4806601d, + 0x48626403, 0x64066203, 0x64066407, 0x585c080a, + 0x4807c857, 0x4806600a, 0x585c0c17, 0x4807c857, + 0x48066417, 0x585c0a17, 0x4807c857, 0x48066217, + 0x585c0a18, 0x4807c857, 0x48066218, 0x585c0c1b, + 0x4807c857, 0x4806641b, 0x585c0a1b, 0x4807c857, + 0x4806621b, 0x491e602a, 0x0505f955, 0x42000800, + 0x80000040, 0x0005fee2, 0x405e6000, 0x5c023800, + 0x5c00c000, 0x5c00b800, 0x0009f010, 0x0501fd77, + 0x05000008, 0x4d2c0000, 0x59325809, 0x0001fba8, + 0x59300229, 0x90000583, 0x05d40faa, 0x5c025800, + 0x0009f010, 0x4803c856, 0x4c5c0000, 0x4c600000, + 0x4c640000, 0x4c500000, 0x4c540000, 0x412cb800, + 0x4d2c0000, 0x6004c000, 0x82040480, 0x00000101, + 0x05001002, 0x60000802, 0x4004c800, 0x60700800, + 0x91cca40c, 0x912cac11, 0x0501f83d, 0x9064cc9c, + 0x592e5801, 0x812e59c0, 0x05ae0cd8, 0x05adfcbe, + 0x05000011, 0x8060c000, 0x4a025808, 0x00000110, + 0x492cb801, 0x90640cbd, 0x05021005, 0x40640800, + 0x912cac09, 0x0501f82e, 0x0501f007, 0x9064ccbc, + 0x60f00800, 0x412cb800, 0x912cac09, 0x0501f828, + 0x05fdf7ef, 0x5c025800, 0x8460c1c0, 0x9060c543, + 0x48625a08, 0x5c00a800, 0x5c00a000, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x492fc857, + 0x812e59c0, 0x05000012, 0x592c2802, 0x4d2c0000, + 0x4c3c0000, 0x592c7801, 0x803c79c0, 0x05000009, + 0x497a5801, 0x4c140000, 0x4c3c0000, 0x0001fba8, + 0x5c025800, 0x5c002800, 0x48165802, 0x05fdf7f6, + 0x5c007800, 0x0001fba8, 0x5c025800, 0x1c01f000, + 0x4803c856, 0x4c580000, 0x90040403, 0x8000b104, + 0x0515faf2, 0x5c00b000, 0x1c01f000, 0x4803c856, + 0x4c580000, 0x90040c03, 0x8004b104, 0x0009f9cf, + 0x5c00b000, 0x1c01f000, 0x591c0c07, 0x90040583, + 0x05000005, 0x90040582, 0x05000003, 0x9004058a, + 0x05020022, 0x4d300000, 0x4d2c0000, 0x411e6000, + 0x59325809, 0x0501fd0d, 0x05000019, 0x59300c07, + 0x9004058a, 0x0500001a, 0x90040583, 0x05020007, + 0x592c0a08, 0x82040d00, 0x000000ff, 0x90040d94, + 0x05000002, 0x640e6229, 0x0501f814, 0x4d400000, + 0x604e8000, 0x592c0a0c, 0x84040d54, 0x05d9fbb8, + 0x5c028000, 0x0505fbaa, 0x0505fefd, 0x0001fba8, + 0x59300229, 0x90000583, 0x05000de3, 0x05f5fb86, + 0x5c025800, 0x5c026000, 0x1c01f000, 0x644e5a0a, + 0x642a6229, 0x05fdf7f4, 0x592c040c, 0x8c000512, + 0x05000008, 0x84000512, 0x48025c0c, 0x4d2c0000, + 0x592e580d, 0x05adfc65, 0x5c025800, 0x497a580d, + 0x1c01f000, 0x59cc0005, 0x8c000500, 0x0502000a, + 0x591c0407, 0x90000582, 0x05020007, 0x591c0c03, + 0x82040580, 0x00000085, 0x05000003, 0x82040580, + 0x0000008b, 0x1c01f000, 0x4933c857, 0x4d3c0000, + 0x600a7800, 0x59300407, 0x90000c92, 0x05ae1892, + 0x0c01f808, 0x5c027800, 0x1c01f000, 0x4933c857, + 0x59300407, 0x90000c92, 0x05ae188b, 0x0c01f001, + 0x0010ada2, 0x0010ad9f, 0x0010ad9f, 0x0010add5, + 0x0010ad9f, 0x0010ad9f, 0x0010adb4, 0x0010ad9f, + 0x0010ad9e, 0x0010ad9e, 0x0010bcf0, 0x0010ad9f, + 0x0010ad9f, 0x0010ad9e, 0x0010ad9e, 0x0010ad9e, + 0x0010aec5, 0x0010ad9f, 0x05adf877, 0x4803c856, + 0x80000580, 0x1c01f000, 0x4803c856, 0x8d3c0502, + 0x0502000f, 0x0501fcad, 0x0500000b, 0x59325809, + 0x0505feaf, 0x41780800, 0x4d400000, 0x60168000, + 0x05d9fb63, 0x5c028000, 0x0505fb55, 0x0501fe13, + 0x0001fba8, 0x05f5fb34, 0x90000541, 0x1c01f000, + 0x4933c857, 0x0501fc9d, 0x05000008, 0x59300809, + 0x5804020c, 0x8c000512, 0x05000004, 0x4d400000, + 0x60328000, 0x0501f00f, 0x05d5fd6c, 0x0500000b, + 0x59300416, 0x84000556, 0x48026416, 0x0501f812, + 0x4df00000, 0x59300416, 0x84000516, 0x48026416, + 0x5c03e000, 0x1c01f000, 0x4d400000, 0x60428000, + 0x050dfe52, 0x641a6407, 0x641e6203, 0x9140058c, + 0x05020003, 0x641a6203, 0x497a6006, 0x5c028000, + 0x1c01f000, 0x4933c857, 0x05edfbfb, 0x4df00000, + 0x0501f8dd, 0x90000c91, 0x05ae183b, 0x0c01f001, + 0x0010adee, 0x0010ae78, 0x0010ae03, 0x0010ae86, + 0x0010ae75, 0x0010aded, 0x0010adee, 0x0010adee, + 0x0010adf1, 0x0010adee, 0x0010adee, 0x0010adee, + 0x0010adee, 0x0010ae03, 0x0010adf1, 0x0010adee, + 0x0010adf1, 0x05adf828, 0x5c03e000, 0x05ec0bd3, + 0x05fdf7af, 0x5c03e000, 0x05ec0bd0, 0x59300407, + 0x90000583, 0x05fe07ad, 0x59300203, 0x9000058d, + 0x05fc07aa, 0x59300008, 0x8c000500, 0x05b20aec, + 0x8d3c0502, 0x05fe07a5, 0x4d340000, 0x5932680a, + 0x05d5fe8c, 0x5c026800, 0x05fdf7a0, 0x0509f90b, + 0x59300008, 0x8c000500, 0x05b20ae1, 0x0505fe3a, + 0x59300004, 0x8400055c, 0x48026004, 0x4203e000, + 0xb0800000, 0x6023f800, 0x05edfbb4, 0x8d3c0502, + 0x05020063, 0x59300407, 0x90000586, 0x0500005c, + 0x497a6229, 0x59300203, 0x9000058d, 0x05000002, + 0x640e6229, 0x0501fc39, 0x05020004, 0x8d3c0500, + 0x05000049, 0x0501f041, 0x4d2c0000, 0x4d400000, + 0x59325809, 0x0501fda1, 0x592c040c, 0x8c000512, + 0x05000008, 0x4d2c0000, 0x84000512, 0x48025c0c, + 0x592c080d, 0x40065800, 0x05adfba8, 0x5c025800, + 0x4d400000, 0x60168000, 0x592c0a0c, 0x82040500, + 0x00000084, 0x0500000c, 0x600a8000, 0x592c0208, + 0x82000500, 0x000000ff, 0xb80004b5, 0x05020009, + 0x8c040504, 0x05000007, 0x83428540, 0x00000200, + 0x0501f004, 0x8c040512, 0x05000002, 0x60328000, + 0x592c0208, 0x82000500, 0x000000ff, 0xb00005b5, + 0x05020005, 0x592c020e, 0x8c000506, 0x05000002, + 0x853e7d40, 0x05d9fac6, 0x0505fe0d, 0x5c028000, + 0x0505fab7, 0x8d3c0500, 0x05020003, 0x0515fa1d, + 0x05020003, 0x0001fba8, 0x497a6009, 0x5c028000, + 0x5c025800, 0x8d3c0500, 0x0500000a, 0x59300a29, + 0x90040d83, 0x05020005, 0x4d340000, 0x5932680a, + 0x05d5fe30, 0x5c026800, 0x05f5fa87, 0x0501f010, + 0x0515fa0c, 0x05020004, 0x59300a29, 0x90040d83, + 0x05000cdd, 0x640a6407, 0x42000800, 0x80004040, + 0x0505fdd9, 0x4a026003, 0x00850009, 0x0005fee2, + 0x4203e000, 0xb0800000, 0x6023f800, 0x5c03e000, + 0x05ee0b61, 0x90000541, 0x1c01f000, 0x640a6203, + 0x05fdf7fb, 0x05edfb4d, 0x05b1fa71, 0x05fdf78c, + 0x598c000b, 0x81300580, 0x05020003, 0x05edfe53, + 0x0502002a, 0x05e9fff2, 0x05020005, 0x59300c03, + 0xb0040580, 0x05fc0770, 0x05fdf781, 0x05edfa66, + 0x05000022, 0x05a9ff90, 0x0501f824, 0x05020003, + 0x05edfe16, 0x0502001d, 0x05e9ff05, 0x05000017, + 0x05edfa5d, 0x05000019, 0x59300407, 0x90000583, + 0x05aa0f85, 0x59300004, 0x9000051f, 0x90000585, + 0x05aa0f81, 0x58d400ec, 0x82000500, 0x00000f00, + 0x05fe076b, 0x58d400ec, 0x4803c857, 0x59300000, + 0x4803c857, 0x59300003, 0x4803c857, 0x59300004, + 0x4803c857, 0x05fdf762, 0x59300c03, 0xb0040580, + 0x05fc074d, 0x05fdf75e, 0x59300203, 0x90000c91, + 0x05aa1f6d, 0x0c01f733, 0x417a3000, 0x60df2160, + 0x59900005, 0x81300580, 0x05000006, 0x91932410, + 0x811a3000, 0x91180485, 0x05fc17fa, 0x90000541, + 0x1c01f000, 0x59300004, 0x8c00053e, 0x0500000c, + 0x8c00050c, 0x0502000a, 0x8c000516, 0x05020004, + 0x90000d1f, 0x90040585, 0x05020003, 0x600c0000, + 0x0501f004, 0x60040000, 0x0501f002, 0x59300203, + 0x1c01f000, 0x4933c857, 0x05edfb0b, 0x4df00000, + 0x59300203, 0x90000c91, 0x05aa1f4b, 0x0c01f001, + 0x0010aede, 0x0010aeef, 0x0010aee1, 0x0010aedd, + 0x0010aedd, 0x0010aedd, 0x0010aedd, 0x0010aedd, + 0x0010aedd, 0x0010aedd, 0x0010aedd, 0x0010aedd, + 0x0010aedd, 0x0010aedd, 0x0010aee1, 0x0010aedd, + 0x0010aedd, 0x05a9ff38, 0x5c03e000, 0x05ec0ae3, + 0x05fdf6bf, 0x5c03e000, 0x05ec0ae0, 0x4d2c0000, + 0x05b5f896, 0x59325809, 0x0501fb6c, 0x05a80f2e, + 0x64165a0a, 0x0001fba8, 0x05d9f85b, 0x05f5f9fa, + 0x5c025800, 0x90000541, 0x1c01f000, 0x598c000b, + 0x81300580, 0x05020014, 0x59300004, 0x8c000520, + 0x05000004, 0x84000520, 0x48026004, 0x0501f014, + 0x42001000, 0x00112322, 0x50081000, 0x58080002, + 0x82000580, 0x00000100, 0x05000005, 0x05b5f87b, + 0x05e9ff6f, 0x05aa0f14, 0x05fdf7df, 0x05edfdcb, + 0x0502000a, 0x59300004, 0x8c000520, 0x05000004, + 0x84000520, 0x48026004, 0x05fdf7d7, 0x05e9ff64, + 0x05fc07d5, 0x05a9ff08, 0x59300203, 0x90000c91, + 0x05aa1f05, 0x0c01f7bb, 0x4d340000, 0x4d240000, + 0x5932481d, 0x5932680a, 0x59300407, 0x4933c857, + 0x4803c857, 0x90000c92, 0x05aa1efb, 0x0c01f804, + 0x5c024800, 0x5c026800, 0x1c01f000, 0x0010af34, + 0x0010b032, 0x0010b1ad, 0x0010af3b, 0x0010b192, + 0x0010b1a9, 0x0010cc12, 0x0010b016, 0x0010b18e, + 0x0010af31, 0x0010b209, 0x0010af31, 0x0010af31, + 0x0010af31, 0x0010af31, 0x00021010, 0x0010ba73, + 0x0010ba73, 0x05a9fee4, 0x0501fc31, 0x05f800ca, + 0x1c01f000, 0x05edfa9c, 0x05edf9f1, 0x05edfa8b, + 0x0009f010, 0x64066006, 0x1c01f000, 0x42000000, + 0x00112407, 0x0515f81a, 0x5930001e, 0x800001c0, + 0x05060c69, 0x4d2c0000, 0x4d400000, 0x417a5800, + 0x0501fb0e, 0x05000007, 0x0505ffc8, 0x59325809, + 0x592c020c, 0x8400054c, 0x48025a0c, 0x601a8000, + 0x05edfa85, 0x05fdff68, 0x4803c857, 0x90000c91, + 0x05aa1ec5, 0x0c01f805, 0x05edfa70, 0x5c028000, + 0x5c025800, 0x1c01f000, 0x0010b015, 0x0010af68, + 0x0010af74, 0x0010afb7, 0x0010afe5, 0x0010af67, + 0x0010af34, 0x0010af34, 0x0010af34, 0x0010af67, + 0x0010af67, 0x0010af67, 0x0010af67, 0x0010af74, + 0x0010af68, 0x0010af67, 0x0010afb7, 0x05a9feae, + 0x598c000b, 0x4803c857, 0x81300580, 0x05020003, + 0x05edfd62, 0x0502005a, 0x05e9ff01, 0x0500005d, + 0x4803c856, 0x05edf978, 0x05000055, 0x05a9fea2, + 0x497a6229, 0x812e59c0, 0x05a80e9f, 0x592c0a08, + 0x4807c857, 0x82040d00, 0x000000ff, 0x90040594, + 0x05000018, 0xb00405b5, 0x05020014, 0x59300008, + 0x8c000500, 0x05020064, 0x592c0a0e, 0x8c040506, + 0x0500000e, 0x592c0c0c, 0x4c040000, 0x592c0a0c, + 0x05d9f987, 0x5c000800, 0x8c040510, 0x05000003, + 0x4a025c0c, 0x00000100, 0x0001fba8, 0x0501fbb2, + 0x497a6009, 0x05f5f154, 0x640e6229, 0x0505fcc4, + 0x592c0c0c, 0x4c040000, 0x592c0a0c, 0x05d9f978, 0x5c000800, 0x8c040510, 0x05000003, 0x4a025c0c, - 0x00000100, 0x0001fb82, 0x0501fb96, 0x497a6009, - 0x05f5f1bc, 0x640e6229, 0x0505fc9b, 0x592c0c0c, - 0x4c040000, 0x592c0a0c, 0x05d9fc11, 0x5c000800, - 0x8c040510, 0x05000003, 0x4a025c0c, 0x00000100, - 0x0505f93d, 0x0511fed0, 0x05020006, 0x0001fb82, - 0x59300a29, 0x90040d83, 0x05000b82, 0x497a6009, - 0x4a026403, 0x00000085, 0x64266203, 0x640a6407, - 0x59300804, 0x82040d00, 0x00000100, 0x0505fc6c, - 0x82040d40, 0x80004040, 0x48066004, 0x4203e000, - 0xb0800000, 0x6023f800, 0x05edface, 0x42000800, - 0x80004040, 0x0005f6ab, 0x05fdfef6, 0x05020003, - 0x05edfda4, 0x0502000d, 0x05e9fe98, 0x05000006, - 0x05edf9ec, 0x05000009, 0x59300004, 0x4803c857, - 0x05fdf7b3, 0x59300c03, 0x4807c857, 0xb0040580, - 0x05000007, 0x05fdf7ae, 0x59300203, 0x4803c857, - 0x90000c91, 0x05ae1b8d, 0x0c01f78b, 0x05edfab5, - 0x812e59c0, 0x05000015, 0x0505fc5f, 0x592c0c0c, - 0x4c040000, 0x592c0a0c, 0x05d9fbd5, 0x5c000800, - 0x8c040510, 0x05000003, 0x4a025c0c, 0x00000100, - 0x0505f901, 0x0001fb82, 0x59300203, 0x9000058d, - 0x05000006, 0x05edfaa3, 0x4d340000, 0x5932680a, - 0x05d5ff63, 0x5c026800, 0x05f5f96a, 0x0501f031, - 0x812e59c0, 0x05ac0b71, 0x0501fee9, 0x05020003, - 0x05b1fddd, 0x05fdf78a, 0x05edfa96, 0x592c020c, - 0x8400050c, 0x48025a0c, 0x592c040a, 0x800000c2, - 0x800008c4, 0x80040c00, 0x48066006, 0x42000000, - 0x10000000, 0x41300800, 0x05b1fab8, 0x05000013, - 0x592c020c, 0x8c00051c, 0x05020005, 0x8400055c, - 0x48025a0c, 0x640a6006, 0x0501f016, 0x59c80001, - 0x80000540, 0x05020006, 0x42000000, 0x40000000, - 0x41300800, 0x05b1faa9, 0x0501f004, 0x4d300000, - 0x05b5fd38, 0x5c026000, 0x59300008, 0x8c000536, - 0x05020004, 0x59300203, 0x90000584, 0x05020005, - 0x4d380000, 0x61227000, 0x0009f800, 0x5c027000, - 0x1c01f000, 0x4d340000, 0x4c5c0000, 0x59300203, - 0x90000591, 0x05020014, 0x5932680a, 0x4130b800, - 0x0005ffbf, 0x0500000f, 0x64066203, 0x647a6403, - 0x585c041b, 0x4802641b, 0x585c021b, 0x4802621b, - 0x4936600a, 0x585c001d, 0x4802601d, 0x0501fde4, - 0x64066407, 0x42000800, 0x80000040, 0x0005feab, - 0x405e6000, 0x0005ffdc, 0x5c00b800, 0x5c026800, - 0x1c01f000, 0x42000000, 0x0010e45f, 0x0511fd25, - 0x0511fb9c, 0x59300203, 0x90000c91, 0x05ae1b1f, - 0x4803c857, 0x0c01f001, 0x0010aacf, 0x0010a9bf, - 0x0010aad0, 0x0010aacf, 0x0010aad0, 0x0010aad0, - 0x0010a9bb, 0x0010aacf, 0x0010a9b8, 0x0010aacf, - 0x0010aacf, 0x0010aacf, 0x0010aacf, 0x0010aacf, - 0x0010aad0, 0x0010aacf, 0x0010aacf, 0x05adfb0b, - 0x83340580, 0x00110210, 0x05f400fe, 0x4d2c0000, - 0x59340400, 0x82000500, 0x000000ff, 0x90000c8c, - 0x05ae1b02, 0x4c000000, 0x0505fdc5, 0x5c000000, - 0x0502000a, 0x59300009, 0x800001c0, 0x05020004, - 0x05f5f8f0, 0x0505fdc5, 0x0501f010, 0x05f5ffe0, - 0x05f5f8ec, 0x0501f00d, 0x59303403, 0xb0180d91, - 0x0500000c, 0x90180d84, 0x05020003, 0x60040000, - 0x0501f004, 0x90180d80, 0x05020002, 0x60040000, - 0x4803c857, 0x0c01f823, 0x5c025800, 0x1c01f000, - 0x42000000, 0x0010e45b, 0x0511fce6, 0x05bdfb20, - 0x59340412, 0x82000500, 0x000000ff, 0x05000016, - 0x80000040, 0x48026c12, 0x4d300000, 0x05f5f904, - 0x5c000000, 0x0500000f, 0x641c0407, 0x4a000006, - 0x00000398, 0x49238830, 0x4a038832, 0xffffffff, - 0x4926601d, 0x497a6009, 0x4936600a, 0x64066407, - 0x64066203, 0x65466403, 0x5c025800, 0x05e9f562, - 0x40026000, 0x5c025800, 0x60042800, 0x0505f626, - 0x0010ab20, 0x0010abba, 0x0010ab21, 0x0010ab57, - 0x0010ab21, 0x0010abcf, 0x0010ab21, 0x0010ab28, - 0x0010ab20, 0x0010abcf, 0x0010ab20, 0x0010ab33, - 0x05adfaba, 0x59300403, 0x90000d96, 0x05000032, - 0x90000d84, 0x05000030, 0x90000d82, 0x0500002e, - 0x0501faa2, 0x0500002c, 0x59300403, 0x90000da2, - 0x050000a5, 0x90000db9, 0x050000ac, 0x90000db5, - 0x050000aa, 0x90000d9e, 0x05000024, 0x0501f996, - 0x05000005, 0x0505f818, 0x05020003, 0x05d5ff19, - 0x0501f01d, 0x59300403, 0x90000d81, 0x0502000f, - 0x5930081d, 0x58040200, 0x8c000500, 0x050405f5, - 0x5930080a, 0x58040403, 0x82000580, 0x000007fe, - 0x05020004, 0x60042800, 0x0505fdf3, 0x0005f7dc, - 0x05d5fedd, 0x0500000c, 0x59340403, 0x82000480, - 0x000007f0, 0x05021009, 0x4d3c0000, 0x417a7800, - 0x05b9ffdc, 0x5c027800, 0x42000000, 0x0010e454, - 0x0511fc88, 0x05f5ff6e, 0x05f5f07a, 0x0501f972, - 0x05000003, 0x0501fff4, 0x05000091, 0x59300c03, - 0x90040596, 0x05000058, 0x90040582, 0x05020034, - 0x59a80249, 0x8c000502, 0x0502000f, 0x05d9fd4b, - 0x0502000d, 0x59a80006, 0x8c000506, 0x0502000a, - 0x05d9fd58, 0x05020004, 0x60040000, 0x05d9fd1c, - 0x0501f07f, 0x64075042, 0x6006d800, 0x05d9fcc2, - 0x0501f07b, 0x59340200, 0x8c000508, 0x05000007, - 0x84000508, 0x48026a00, 0x59300416, 0x84000510, - 0x48026416, 0x0501f014, 0x59340412, 0x82000500, + 0x00000100, 0x0505f966, 0x0515f8ce, 0x05020006, + 0x0001fba8, 0x59300a29, 0x90040d83, 0x05000b9e, + 0x497a6009, 0x4a026403, 0x00000085, 0x64266203, + 0x640a6407, 0x59300804, 0x82040d00, 0x00000100, + 0x0505fc95, 0x82040d40, 0x80004040, 0x48066004, + 0x4203e000, 0xb0800000, 0x6023f800, 0x05edfa0f, + 0x42000800, 0x80004040, 0x0005f6e2, 0x05fdfef3, + 0x05020003, 0x05edfce5, 0x0502000d, 0x05e9fdd4, + 0x05000006, 0x05edf92c, 0x05000009, 0x59300004, + 0x4803c857, 0x05fdf7b3, 0x59300c03, 0x4807c857, + 0xb0040580, 0x05000007, 0x05fdf7ae, 0x59300203, + 0x4803c857, 0x90000c91, 0x05aa1e4b, 0x0c01f78b, + 0x05edf9f6, 0x812e59c0, 0x05000015, 0x0505fc88, + 0x592c0c0c, 0x4c040000, 0x592c0a0c, 0x05d9f93c, + 0x5c000800, 0x8c040510, 0x05000003, 0x4a025c0c, + 0x00000100, 0x0505f92a, 0x0001fba8, 0x59300203, + 0x9000058d, 0x05000006, 0x05edf9e4, 0x4d340000, + 0x5932680a, 0x05d5fcab, 0x5c026800, 0x05f5f902, + 0x0501f031, 0x812e59c0, 0x05a80e2f, 0x0501ff08, + 0x05020003, 0x05b1f8fe, 0x05fdf78a, 0x05edf9d7, + 0x592c020c, 0x8400050c, 0x48025a0c, 0x592c040a, + 0x800000c2, 0x800008c4, 0x80040c00, 0x48066006, + 0x42000000, 0x10000000, 0x41300800, 0x05adfdd7, + 0x05000013, 0x592c020c, 0x8c00051c, 0x05020005, + 0x8400055c, 0x48025a0c, 0x640a6006, 0x0501f016, + 0x59c80001, 0x80000540, 0x05020006, 0x42000000, + 0x40000000, 0x41300800, 0x05adfdc8, 0x0501f004, + 0x4d300000, 0x05b5f82c, 0x5c026000, 0x59300008, + 0x8c000536, 0x05020004, 0x59300203, 0x90000584, + 0x05020005, 0x4d380000, 0x61227000, 0x0009f839, + 0x5c027000, 0x1c01f000, 0x4d340000, 0x4c5c0000, + 0x59300203, 0x90000591, 0x05020014, 0x5932680a, + 0x4130b800, 0x0005fff6, 0x0500000f, 0x64066203, + 0x647a6403, 0x585c041b, 0x4802641b, 0x585c021b, + 0x4802621b, 0x4936600a, 0x585c001d, 0x4802601d, + 0x0501fdff, 0x64066407, 0x42000800, 0x80000040, + 0x0005fee2, 0x405e6000, 0x0009f810, 0x5c00b800, + 0x5c026800, 0x1c01f000, 0x42000000, 0x00112403, + 0x0511ff23, 0x0511fd86, 0x59300203, 0x90000c91, + 0x05aa1ddd, 0x4803c857, 0x0c01f001, 0x0010b04c, + 0x0010af39, 0x0010b04d, 0x0010b04c, 0x0010b04d, + 0x0010b04d, 0x0010af35, 0x0010b04c, 0x0010af32, + 0x0010b04c, 0x0010b04c, 0x0010b04c, 0x0010b04c, + 0x0010b04c, 0x0010b04d, 0x0010b04c, 0x0010b04c, + 0x05a9fdc9, 0x83340580, 0x001141b4, 0x05f40096, + 0x4d2c0000, 0x59340400, 0x82000500, 0x000000ff, + 0x90000c8c, 0x05aa1dc0, 0x4c000000, 0x0505fdf9, + 0x5c000000, 0x0502000a, 0x59300009, 0x800001c0, + 0x05020004, 0x05f5f888, 0x0505fdf9, 0x0501f010, + 0x05f5ff9d, 0x05f5f884, 0x0501f00d, 0x59303403, + 0xb0180d91, 0x0500000c, 0x90180d84, 0x05020003, + 0x60040000, 0x0501f004, 0x90180d80, 0x05020002, + 0x60040000, 0x4803c857, 0x0c01f828, 0x5c025800, + 0x1c01f000, 0x42000000, 0x001123ff, 0x0511fee4, + 0x05b9fe3f, 0x600c0800, 0x05bdf867, 0x05020003, + 0x0509f8e4, 0x0501f017, 0x59340412, 0x82000500, 0x000000ff, 0x05000016, 0x80000040, 0x48026c12, - 0x5932481d, 0x59300c29, 0x4c040000, 0x497a6205, - 0x4d300000, 0x05f5f87e, 0x5c000000, 0x5c000800, - 0x0500000a, 0x49780009, 0x641c0407, 0x4a000006, - 0x00000398, 0x4926601d, 0x48066429, 0x4936600a, - 0x64066407, 0x0501f024, 0x40026000, 0x59300403, - 0x90000d82, 0x05020013, 0x59340403, 0x82000580, - 0x000007fe, 0x0502000c, 0x59a80249, 0x84000540, - 0x48035249, 0x05d9fd11, 0x05fc07ca, 0x4a035045, - 0x0000ffff, 0x0505ff00, 0x05d1fe66, 0x05f5ff20, - 0x0501f00f, 0x600c0002, 0x05f5fa82, 0x05f40029, - 0x05f5ff1b, 0x4d3c0000, 0x417a7800, 0x05b9ff81, - 0x5c027800, 0x42000000, 0x0010e454, 0x0511fc2d, - 0x59300429, 0x900005a1, 0x050406d0, 0x05b9ffc0, - 0x05f5f01c, 0x600c0800, 0x05d5f937, 0x64066203, - 0x640a6403, 0x05e9f4b8, 0x0501f90f, 0x05fe079a, - 0x05b9ffb7, 0x4d3c0000, 0x417a7800, 0x05b9ff6d, - 0x5c027800, 0x42000000, 0x0010e454, 0x0511fc19, - 0x60603000, 0x41782800, 0x60002000, 0x4d400000, - 0x4d440000, 0x59368c03, 0x60a68000, 0x0505fa48, - 0x5c028800, 0x5c028000, 0x05f5f002, 0x05d5fe81, - 0x05fdf7d8, 0x42000000, 0x0010e45e, 0x0511fc09, - 0x60140002, 0x05f5fa53, 0x05fc07d2, 0x05f5fa70, - 0x05fe07d0, 0x1c01f000, 0x59300c03, 0x0501fd3b, - 0x000607dc, 0x916c0583, 0x05000003, 0x640a6006, - 0x1c01f000, 0x59300403, 0x48026418, 0x64066229, - 0x4a026403, 0x00000085, 0x64266203, 0x640a6407, - 0x42000800, 0x80000040, 0x0005f6ab, 0x0511fd40, - 0x0500000b, 0x4d400000, 0x4d200000, 0x05bdfa28, - 0x60068000, 0x60001802, 0x60042800, 0x60040000, - 0x05d9fa5c, 0x5c024000, 0x5c028000, 0x05f5fecc, - 0x4d3c0000, 0x417a7800, 0x05b9ff32, 0x5c027800, - 0x42000000, 0x0010e454, 0x0511fbde, 0x497a6009, - 0x641e6407, 0x4a026006, 0x00000398, 0x497a6205, - 0x1c01f000, 0x42000000, 0x0010e465, 0x0511fbd5, - 0x05fdf6ad, 0x59300403, 0x900005b6, 0x05020005, - 0x64066203, 0x42000800, 0x80000040, 0x0005f6ab, - 0x42000000, 0x0010e460, 0x0511fbca, 0x0511fa97, - 0x0502000a, 0x59300009, 0x800001c0, 0x05020004, - 0x05f1ffb8, 0x0505fc8d, 0x0501f003, 0x05f5fea8, - 0x05f1ffb4, 0x1c01f000, 0x0511fa36, 0x05f1f7b1, - 0x42000000, 0x0010e462, 0x0511fbba, 0x1c01f000, - 0x42000000, 0x0010e461, 0x0511fbb6, 0x59300203, - 0x90000c91, 0x05ae19b1, 0x4803c857, 0x0c01f001, - 0x0010ac3d, 0x0010a9bf, 0x0010ac3d, 0x0010ac3d, - 0x0010ac3d, 0x0010ac3d, 0x0010ac3d, 0x0010ac3d, - 0x0010ac3d, 0x0010a9bf, 0x0010ac3e, 0x0010a9bf, - 0x0010ac48, 0x0010ac3d, 0x0010ac3e, 0x0010ac3d, - 0x0010ac3d, 0x05adf99d, 0x59300403, 0x82000580, - 0x0000008b, 0x05000007, 0x4a026403, 0x0000008b, - 0x642e6203, 0x42000800, 0x80004040, 0x0005f6ab, - 0x59300a29, 0x0501f880, 0x0500000b, 0x4d2c0000, - 0x59325809, 0x641a5a0a, 0x497a5c0d, 0x0001fb82, - 0x59300a29, 0x90040d83, 0x05d40d75, 0x5c025800, - 0x497a6009, 0x4d3c0000, 0x417a7800, 0x05b9fed5, - 0x5c027800, 0x60443000, 0x0511f929, 0x42000000, - 0x0010e454, 0x0511fb7f, 0x4c5c0000, 0x4130b800, - 0x05f1ffa3, 0x05000009, 0x4936600a, 0x4926601d, - 0x0501fc2b, 0x4d300000, 0x405e6000, 0x05f1ff69, - 0x5c026000, 0x0501f002, 0x405e6000, 0x5c00b800, - 0x497a6009, 0x64066407, 0x64066403, 0x59240400, - 0x8c00050a, 0x0502000b, 0x64126407, 0x641e6203, - 0x6406642c, 0x60103000, 0x4d400000, 0x60a68000, - 0x41782800, 0x050dfb26, 0x5c028000, 0x1c01f000, - 0x602c0800, 0x05d5f870, 0x64066203, 0x05e9f3f2, - 0x42000000, 0x0010e467, 0x0511fb5a, 0x59300203, - 0x90000c91, 0x05ae1955, 0x4803c857, 0x0c01f001, - 0x0010aca9, 0x0010ac99, 0x0010ac9b, 0x0010acaa, - 0x0010ac9a, 0x0010ac99, 0x0010ac99, 0x0010ac99, - 0x0010ac99, 0x0010ac99, 0x0010ac99, 0x0010ac99, - 0x0010ac99, 0x0010ac99, 0x0010ac99, 0x0010ac99, - 0x0010ac99, 0x05adf941, 0x05b1fbaf, 0x4d2c0000, - 0x59325809, 0x641a5a0a, 0x0001fb82, 0x5c025800, - 0x497a6009, 0x642a6229, 0x4a026403, 0x00000085, - 0x64266203, 0x640a6407, 0x42000800, 0x80004040, - 0x0005f6ab, 0x1c01f000, 0x05edf869, 0x4df00000, - 0x05fdfc84, 0x05020003, 0x05edfb32, 0x05020008, - 0x05e9fc26, 0x05020004, 0x5c03e000, 0x05edf851, - 0x05fdf7e7, 0x05e9ff77, 0x05ae0924, 0x5c03e000, - 0x05edf84c, 0x59300203, 0x90000d83, 0x05ac091f, - 0x90000c91, 0x05ae191d, 0x0c01f7ca, 0x59a8003b, - 0x59a8089a, 0x80040400, 0x80080480, 0x05021003, - 0x90000541, 0x1c01f000, 0x480bc857, 0x80000580, - 0x1c01f000, 0x4c040000, 0x59300809, 0x59a8000c, - 0x80040480, 0x05001007, 0x59a8000a, 0x80040480, - 0x05021004, 0x800409c0, 0x5c000800, 0x1c01f000, - 0x800409c0, 0x05ae0905, 0x4803c856, 0x05fdf7fb, - 0x4803c856, 0x4d300000, 0x0005ffbf, 0x05000007, - 0x0501f825, 0x4d380000, 0x612e7000, 0x0009f800, - 0x5c027000, 0x90000541, 0x5c026000, 0x1c01f000, - 0x4803c856, 0x4d300000, 0x05f1ff1d, 0x05000016, - 0x0501f819, 0x4d300000, 0x05edf829, 0x4df00000, - 0x05e9fd59, 0x4d3c0000, 0x60027840, 0x05e9fea6, - 0x05e9fc2c, 0x050df980, 0x5c027800, 0x5c03e000, - 0x05ec0810, 0x5c026000, 0x8d3c053e, 0x05020008, - 0x4d380000, 0x61327000, 0x0009f800, 0x5c027000, - 0x90000541, 0x5c026000, 0x1c01f000, 0x0005ffdc, - 0x05fdf7fc, 0x592c040b, 0x497a580c, 0x497a580d, - 0x494a6019, 0x494e601a, 0x4936600a, 0x492e6009, - 0x640e6407, 0x59340802, 0x4806600b, 0x800000c2, - 0x800008c4, 0x80040400, 0x48026006, 0x05d5fd62, - 0x4926601d, 0x0501f37e, 0x493bc857, 0x4d300000, - 0x0005ffbf, 0x0500000a, 0x05fdffeb, 0x4d400000, - 0x60168000, 0x0501f80a, 0x5c028000, 0x8d3c053e, - 0x05020005, 0x0009f800, 0x90000541, 0x5c026000, - 0x1c01f000, 0x0005ffdc, 0x05fdf7fc, 0x4803c856, - 0x05e9ffef, 0x4df00000, 0x4d3c0000, 0x4d440000, - 0x59368c03, 0x60067840, 0x05e9fd94, 0x05e9fcd1, - 0x05e9fbf0, 0x050df944, 0x5c028800, 0x5c027800, - 0x5c03e000, 0x05e807d3, 0x1c01f000, 0x4803c856, - 0x4d300000, 0x05f1fece, 0x0500000e, 0x481a601e, - 0x48ee602d, 0x4936600a, 0x05d5fd37, 0x4926601d, - 0x0501fb53, 0x64066407, 0x492e6009, 0x4d380000, - 0x607e7000, 0x0009f800, 0x5c027000, 0x90000541, - 0x5c026000, 0x1c01f000, 0x4803c856, 0x4d300000, - 0x05f1febb, 0x0500000d, 0x48ee602d, 0x4936600a, - 0x05d5fd25, 0x4926601d, 0x0501fb41, 0x64066407, - 0x492e6009, 0x4d380000, 0x61567000, 0x0009f800, + 0x4d300000, 0x05f5f897, 0x5c000000, 0x0500000f, + 0x641c0407, 0x4a000006, 0x00000398, 0x49238830, + 0x4a038832, 0xffffffff, 0x4926601d, 0x497a6009, + 0x4936600a, 0x64066407, 0x64066203, 0x65466403, + 0x5c025800, 0x05e9f499, 0x40026000, 0x5c025800, + 0x60042800, 0x0505f655, 0x0010b0a2, 0x0010b143, + 0x0010b0a3, 0x0010b0dc, 0x0010b0a3, 0x0010b158, + 0x0010b0a3, 0x0010b0aa, 0x0010b0a2, 0x0010b158, + 0x0010b0a2, 0x0010b0b5, 0x05a9fd73, 0x59300403, + 0x90000d96, 0x05000035, 0x90000d84, 0x05000033, + 0x90000d82, 0x05000031, 0x0501fab9, 0x0500002f, + 0x59300403, 0x90000da2, 0x050000ac, 0x90000db9, + 0x050000b3, 0x90000db5, 0x050000b1, 0x90000d9e, + 0x05000027, 0x0501f99d, 0x05000005, 0x0505f83c, + 0x05020003, 0x05d5fc60, 0x0501f020, 0x59300403, + 0x90000d81, 0x0502000f, 0x5930081d, 0x58040200, + 0x8c000500, 0x05040624, 0x5930080a, 0x58040403, + 0x82000580, 0x000007fe, 0x05020004, 0x60042800, + 0x0505fe22, 0x0009f010, 0x05d5fc24, 0x0500000f, + 0x59340403, 0x82000c80, 0x000007f0, 0x05001004, + 0x82000c80, 0x00000800, 0x05001009, 0x4d3c0000, + 0x417a7800, 0x05b9faee, 0x5c027800, 0x42000000, + 0x001123f8, 0x0511fe7e, 0x05f5ff23, 0x05f5f00a, + 0x0501f976, 0x05000003, 0x0505f815, 0x05000095, + 0x59300c03, 0x90040596, 0x05000058, 0x90040582, + 0x05020034, 0x59a8024c, 0x8c000502, 0x0502000f, + 0x05d9fab0, 0x0502000d, 0x59a80006, 0x8c000506, + 0x0502000a, 0x05d9fabd, 0x05020004, 0x60040000, + 0x05d9fa7b, 0x0501f083, 0x64075045, 0x6006d800, + 0x05d9fa21, 0x0501f07f, 0x59340200, 0x8c000508, + 0x05000007, 0x84000508, 0x48026a00, 0x59300416, + 0x84000510, 0x48026416, 0x0501f014, 0x59340412, + 0x82000500, 0x000000ff, 0x05000016, 0x80000040, + 0x48026c12, 0x5932481d, 0x59300c29, 0x4c040000, + 0x497a6205, 0x4d300000, 0x05f5f80e, 0x5c000000, + 0x5c000800, 0x0500000a, 0x49780009, 0x641c0407, + 0x4a000006, 0x00000398, 0x4926601d, 0x48066429, + 0x4936600a, 0x64066407, 0x0501f024, 0x40026000, + 0x59300403, 0x90000d82, 0x05020013, 0x59340403, + 0x82000580, 0x000007fe, 0x0502000c, 0x59a8024c, + 0x84000540, 0x4803524c, 0x05d9fa76, 0x05fc07ca, + 0x4a035048, 0x0000ffff, 0x0509f831, 0x05d1fad8, + 0x05f5fed5, 0x0501f00f, 0x600c0002, 0x05f5fa33, + 0x05f007b9, 0x05f5fed0, 0x4d3c0000, 0x417a7800, + 0x05b9fa93, 0x5c027800, 0x42000000, 0x001123f8, + 0x0511fe23, 0x59300429, 0x900005a1, 0x05080001, + 0x05b9fad2, 0x05f1f7ac, 0x600c0800, 0x05d1fdc5, + 0x64066203, 0x640a6403, 0x59300418, 0xb0000591, + 0x05020002, 0x65466403, 0x05e9f3e8, 0x0501f90f, + 0x05fe0796, 0x05b9fac5, 0x4d3c0000, 0x417a7800, + 0x05b9fa7b, 0x5c027800, 0x42000000, 0x001123f8, + 0x0511fe0b, 0x60603000, 0x41782800, 0x60002000, + 0x4d400000, 0x4d440000, 0x59368c03, 0x60a68000, + 0x0505fa66, 0x5c028800, 0x5c028000, 0x05f1f78e, + 0x05d5fbc1, 0x05fdf7d4, 0x42000000, 0x00112402, + 0x0511fdfb, 0x60140002, 0x05f5fa00, 0x05fc07ce, + 0x05f5fa1d, 0x05fe07cc, 0x1c01f000, 0x59300c03, + 0x0501fd4a, 0x000a0010, 0x916c0583, 0x05000003, + 0x640a6006, 0x1c01f000, 0x59300403, 0x48026418, + 0x64066229, 0x4a026403, 0x00000085, 0x64266203, + 0x640a6407, 0x42000800, 0x80000040, 0x0005f6e2, + 0x0511ff32, 0x0500000b, 0x4d400000, 0x4d200000, + 0x05b9fd3b, 0x60068000, 0x60001802, 0x60042800, + 0x60040000, 0x05d5ffb7, 0x5c024000, 0x5c028000, + 0x05f5fe7d, 0x4d3c0000, 0x417a7800, 0x05b9fa40, + 0x5c027800, 0x42000000, 0x001123f8, 0x0511fdd0, + 0x497a6009, 0x641e6407, 0x4a026006, 0x00000398, + 0x497a6205, 0x1c01f000, 0x42000000, 0x00112409, + 0x0511fdc7, 0x05fdf6a1, 0x59300403, 0x900005b6, + 0x05020005, 0x64066203, 0x42000800, 0x80000040, + 0x0005f6e2, 0x42000000, 0x00112404, 0x0511fdbc, + 0x0511fc75, 0x0502000a, 0x59300009, 0x800001c0, + 0x05020004, 0x05f1ff44, 0x0505fcb5, 0x0501f003, + 0x05f5fe59, 0x05f1ff40, 0x1c01f000, 0x0511fc14, + 0x05f1f73d, 0x42000000, 0x00112406, 0x0511fdac, + 0x1c01f000, 0x42000000, 0x00112405, 0x0511fda8, + 0x59300203, 0x90000c91, 0x05aa1c63, 0x4803c857, + 0x0c01f001, 0x0010b1c6, 0x0010af39, 0x0010b1c6, + 0x0010b1c6, 0x0010b1c6, 0x0010b1c6, 0x0010b1c6, + 0x0010b1c6, 0x0010b1c6, 0x0010af39, 0x0010b1c7, + 0x0010af39, 0x0010b1d1, 0x0010b1c6, 0x0010b1c7, + 0x0010b1c6, 0x0010b1c6, 0x05a9fc4f, 0x59300403, + 0x82000580, 0x0000008b, 0x05000007, 0x4a026403, + 0x0000008b, 0x642e6203, 0x42000800, 0x80004040, + 0x0005f6e2, 0x59300a29, 0x0501f880, 0x0500000b, + 0x4d2c0000, 0x59325809, 0x641a5a0a, 0x497a5c0d, + 0x0001fba8, 0x59300a29, 0x90040d83, 0x05d40ab1, + 0x5c025800, 0x497a6009, 0x4d3c0000, 0x417a7800, + 0x05b9f9e3, 0x5c027800, 0x60443000, 0x0511fafd, + 0x42000000, 0x001123f8, 0x0511fd71, 0x4c5c0000, + 0x4130b800, 0x05f1ff2f, 0x05000009, 0x4936600a, + 0x4926601d, 0x0501fc3a, 0x4d300000, 0x405e6000, + 0x05f1fef5, 0x5c026000, 0x0501f002, 0x405e6000, + 0x5c00b800, 0x497a6009, 0x64066407, 0x64066403, + 0x59240400, 0x8c00050a, 0x0502000b, 0x64126407, + 0x641e6203, 0x6406642c, 0x60103000, 0x4d400000, + 0x60a68000, 0x41782800, 0x050dfce4, 0x5c028000, + 0x1c01f000, 0x602c0800, 0x05d1fcfa, 0x64066203, + 0x05e9f322, 0x42000000, 0x0011240b, 0x0511fd4c, + 0x59300203, 0x90000c91, 0x05aa1c07, 0x4803c857, + 0x0c01f001, 0x0010b232, 0x0010b222, 0x0010b224, + 0x0010b233, 0x0010b223, 0x0010b222, 0x0010b222, + 0x0010b222, 0x0010b222, 0x0010b222, 0x0010b222, + 0x0010b222, 0x0010b222, 0x0010b222, 0x0010b222, + 0x0010b222, 0x0010b222, 0x05a9fbf3, 0x05adfec4, + 0x4d2c0000, 0x59325809, 0x641a5a0a, 0x0001fba8, + 0x5c025800, 0x497a6009, 0x642a6229, 0x4a026403, + 0x00000085, 0x64266203, 0x640a6407, 0x42000800, + 0x80004040, 0x0005f6e2, 0x1c01f000, 0x05e9ff9e, + 0x4df00000, 0x05fdfc75, 0x05020003, 0x05edfa67, + 0x05020008, 0x05e9fb56, 0x05020004, 0x5c03e000, + 0x05e9ff86, 0x05fdf7e7, 0x05e9feab, 0x05aa0bd6, + 0x5c03e000, 0x05e9ff81, 0x59300203, 0x90000d83, + 0x05a80bd1, 0x90000c91, 0x05aa1bcf, 0x0c01f7ca, + 0x59a8003d, 0x59a8089d, 0x80040400, 0x80080480, + 0x05021003, 0x90000541, 0x1c01f000, 0x480bc857, + 0x80000580, 0x1c01f000, 0x4c040000, 0x59300809, + 0x59a8000c, 0x80040480, 0x05021006, 0x4d2c0000, + 0x40065800, 0x0501f80d, 0x5c025800, 0x05000007, + 0x59a8000a, 0x80040480, 0x05021004, 0x800409c0, + 0x5c000800, 0x1c01f000, 0x800409c0, 0x05aa0bb2, + 0x4803c856, 0x05fdf7fb, 0x59a8000d, 0x812c0480, + 0x05001004, 0x832c0480, 0x00111b80, 0x05001004, + 0x492fc857, 0x80000580, 0x1c01f000, 0x812e59c0, + 0x1c01f000, 0x4803c856, 0x4d300000, 0x0005fff6, + 0x05000007, 0x0501f825, 0x4d380000, 0x612e7000, + 0x0009f839, 0x5c027000, 0x90000541, 0x5c026000, + 0x1c01f000, 0x4803c856, 0x4d300000, 0x05f1fe99, + 0x05000016, 0x0501f819, 0x4d300000, 0x05e9ff4e, + 0x4df00000, 0x05e9fc79, 0x4d3c0000, 0x60027840, + 0x05e9fdcc, 0x05e9fb4c, 0x050dfafe, 0x5c027800, + 0x5c03e000, 0x05e80f35, 0x5c026000, 0x8d3c053e, + 0x05020008, 0x4d380000, 0x61327000, 0x0009f839, 0x5c027000, 0x90000541, 0x5c026000, 0x1c01f000, - 0x4803c856, 0x4d300000, 0x05f1fea9, 0x0500000e, - 0x481a601e, 0x48ee602d, 0x4936600a, 0x05d5fd12, - 0x4926601d, 0x0501fb2e, 0x64066407, 0x492e6009, - 0x4d380000, 0x60f67000, 0x0009f800, 0x5c027000, + 0x0009f810, 0x05fdf7fc, 0x592c040b, 0x497a580c, + 0x497a580d, 0x494a6019, 0x494e601a, 0x4936600a, + 0x492e6009, 0x640e6407, 0x59340802, 0x4806600b, + 0x800000c2, 0x800008c4, 0x80040400, 0x48026006, + 0x05d5fa92, 0x4926601d, 0x0501f37d, 0x493bc857, + 0x4d300000, 0x0005fff6, 0x0500000a, 0x05fdffeb, + 0x4d400000, 0x60168000, 0x0501f80a, 0x5c028000, + 0x8d3c053e, 0x05020005, 0x0009f839, 0x90000541, + 0x5c026000, 0x1c01f000, 0x0009f810, 0x05fdf7fc, + 0x4803c856, 0x05e9ff14, 0x4df00000, 0x4d3c0000, + 0x4d440000, 0x59368c03, 0x60067840, 0x05e9fcb4, + 0x05e9fbf1, 0x05e9fb10, 0x050dfac2, 0x5c028800, + 0x5c027800, 0x5c03e000, 0x05e806f8, 0x1c01f000, + 0x4803c856, 0x4d300000, 0x05f1fe4a, 0x0500000e, + 0x481a601e, 0x48ee602d, 0x4936600a, 0x05d5fa67, + 0x4926601d, 0x0501fb52, 0x64066407, 0x492e6009, + 0x4d380000, 0x607e7000, 0x0009f839, 0x5c027000, 0x90000541, 0x5c026000, 0x1c01f000, 0x4803c856, - 0x4d300000, 0x05f1fe96, 0x05000012, 0x4926601d, - 0x4936600a, 0x0501fb1e, 0x492fc857, 0x4933c857, - 0x592c0408, 0x8c00051e, 0x05000003, 0x48efc857, - 0x48ee602d, 0x64066407, 0x492e6009, 0x4d380000, - 0x60027000, 0x0009f800, 0x5c027000, 0x90000541, - 0x5c026000, 0x1c01f000, 0x4803c856, 0x4d300000, - 0x05f1fe7f, 0x0500000e, 0x48ee602d, 0x481a601e, - 0x4936600a, 0x05d5fce8, 0x4926601d, 0x0501fb04, - 0x64066407, 0x492e6009, 0x4d380000, 0x61127000, - 0x0009f800, 0x5c027000, 0x90000541, 0x5c026000, - 0x1c01f000, 0x4803c856, 0x4d300000, 0x05f1fe6c, + 0x4d300000, 0x05f1fe37, 0x0500000d, 0x48ee602d, + 0x4936600a, 0x05d5fa55, 0x4926601d, 0x0501fb40, + 0x64066407, 0x492e6009, 0x4d380000, 0x61567000, + 0x0009f839, 0x5c027000, 0x90000541, 0x5c026000, + 0x1c01f000, 0x4803c856, 0x4d300000, 0x05f1fe25, 0x0500000e, 0x481a601e, 0x48ee602d, 0x4936600a, - 0x05d5fcd5, 0x4926601d, 0x0501faf1, 0x64066407, - 0x492e6009, 0x4d380000, 0x61267000, 0x0009f800, + 0x05d5fa42, 0x4926601d, 0x0501fb2d, 0x64066407, + 0x492e6009, 0x4d380000, 0x60f67000, 0x0009f839, 0x5c027000, 0x90000541, 0x5c026000, 0x1c01f000, - 0x5930000a, 0x80001540, 0x05ac0830, 0x8d0c0512, - 0x05020007, 0x5808040b, 0x4803c856, 0x80000040, - 0x05001003, 0x4800140b, 0x05020008, 0x58080010, - 0x80000540, 0x05000005, 0x58080203, 0x80000540, - 0x05020002, 0x64041203, 0x1c01f000, 0x4803c856, - 0x59300403, 0x90000d82, 0x0500000b, 0x90000d83, - 0x05000009, 0x90000d84, 0x05000007, 0x599c0819, - 0x8c04050e, 0x05000003, 0x90000d80, 0x05000002, - 0x90000541, 0x1c01f000, 0x4803c856, 0x4c000000, - 0x4d2c0000, 0x59300407, 0x90000584, 0x05000019, - 0x59300009, 0x80025d40, 0x800001c0, 0x05000015, - 0x0501fd79, 0x05000011, 0x0501fd81, 0x0500000f, - 0x59300407, 0x90004590, 0x0500000c, 0x90004591, - 0x0500000a, 0x90004583, 0x0500000a, 0x90004582, - 0x05000008, 0x9000458a, 0x05000006, 0x592c0408, - 0x8c00051e, 0x05000003, 0x80000580, 0x0501f002, - 0x90000541, 0x5c025800, 0x5c000000, 0x1c01f000, - 0x4803c856, 0x4d300000, 0x05f1fe15, 0x05000010, - 0x4926601d, 0x4936600a, 0x0501fa9d, 0x48ee602d, - 0x64066407, 0x492e6009, 0x4d3c0000, 0x417a7800, - 0x05b9fd34, 0x5c027800, 0x4d380000, 0x60a27000, - 0x0009f800, 0x5c027000, 0x90000541, 0x5c026000, - 0x1c01f000, 0x4803c856, 0x91380595, 0x05020009, - 0x59a800b6, 0xb00005b4, 0x05020006, 0x41780800, - 0x05d1ffce, 0x64066203, 0x64a66403, 0x05e9f266, - 0x05f5fcb7, 0x0005f7dc, 0x4803c856, 0x91380596, - 0x05020004, 0x60100800, 0x05d1fedb, 0x05f1f7cf, - 0x91380595, 0x0502000d, 0x59a800b6, 0x90000594, - 0x0502000a, 0x05d5f832, 0x05f9f963, 0x05020007, - 0x59340404, 0x80000540, 0x05000004, 0x60180800, - 0x05d1fecd, 0x05f1f7c1, 0x05f5fca1, 0x0005f7dc, - 0x4803c856, 0x592c020a, 0x90000585, 0x05000002, - 0x1c01f000, 0x4803c856, 0x592c020c, 0x8400054a, - 0x48025a0c, 0x1c01f000, 0x59300809, 0x800409c0, - 0x05000008, 0x58040208, 0x82000580, 0x00000152, - 0x05020004, 0x59a8085c, 0x48066006, 0x1c01f000, - 0x599c0416, 0x800001c0, 0x05000007, 0x90000c84, - 0x05001005, 0x800000c2, 0x800008c4, 0x80040c00, - 0x05fdf7f6, 0x59300403, 0x90000582, 0x05fe07f2, - 0x5930080a, 0x58040403, 0x82000580, 0x000007fe, - 0x05fe07ed, 0x60a00800, 0x05fdf7ec, 0x4803c856, - 0x59300c03, 0xb13805a1, 0x05000019, 0xb13805a0, - 0x05000017, 0xb13805a2, 0x0502001e, 0x497a6205, - 0x90040582, 0x05000006, 0x9004059e, 0x0500000e, - 0x90040584, 0x05020017, 0x0501f003, 0x600c0800, - 0x05d1fe91, 0x59340200, 0x84000508, 0x48026a00, - 0x59300416, 0x84000510, 0x48026416, 0x64066203, - 0x05e9f20d, 0x64166203, 0x0501f00a, 0x59340200, - 0x8c00050e, 0x05020002, 0x497a6205, 0x640a6203, - 0x90040486, 0x05fc17c1, 0x59a8005c, 0x48026006, + 0x4803c856, 0x4d300000, 0x05f1fe12, 0x05000012, + 0x4926601d, 0x4936600a, 0x0501fb1d, 0x492fc857, + 0x4933c857, 0x592c0408, 0x8c00051e, 0x05000003, + 0x48efc857, 0x48ee602d, 0x64066407, 0x492e6009, + 0x4d380000, 0x60027000, 0x0009f839, 0x5c027000, + 0x90000541, 0x5c026000, 0x1c01f000, 0x4803c856, + 0x4d300000, 0x05f1fdfb, 0x0500000e, 0x48ee602d, + 0x481a601e, 0x4936600a, 0x05d5fa18, 0x4926601d, + 0x0501fb03, 0x64066407, 0x492e6009, 0x4d380000, + 0x61127000, 0x0009f839, 0x5c027000, 0x90000541, + 0x5c026000, 0x1c01f000, 0x4803c856, 0x4d300000, + 0x05f1fde8, 0x0500000e, 0x481a601e, 0x48ee602d, + 0x4936600a, 0x05d5fa05, 0x4926601d, 0x0501faf0, + 0x64066407, 0x492e6009, 0x4d380000, 0x61267000, + 0x0009f839, 0x5c027000, 0x90000541, 0x5c026000, + 0x1c01f000, 0x5930000a, 0x80001540, 0x05a80ad2, + 0x8d0c0512, 0x05020007, 0x5808040b, 0x4803c856, + 0x80000040, 0x05001003, 0x4800140b, 0x05020008, + 0x58080010, 0x80000540, 0x05000005, 0x58080203, + 0x80000540, 0x05020002, 0x64041203, 0x1c01f000, + 0x4803c856, 0x59300403, 0x90000d82, 0x0500000b, + 0x90000d83, 0x05000009, 0x90000d84, 0x05000007, + 0x599c0819, 0x8c04050e, 0x05000003, 0x90000d80, + 0x05000002, 0x90000541, 0x1c01f000, 0x4803c856, + 0x4c000000, 0x4d2c0000, 0x59300407, 0x90000584, + 0x05000019, 0x59300009, 0x80025d40, 0x800001c0, + 0x05000015, 0x0501fd86, 0x05000011, 0x0501fd8e, + 0x0500000f, 0x59300407, 0x90004590, 0x0500000c, + 0x90004591, 0x0500000a, 0x90004583, 0x0500000a, + 0x90004582, 0x05000008, 0x9000458a, 0x05000006, + 0x592c0408, 0x8c00051e, 0x05000003, 0x80000580, + 0x0501f002, 0x90000541, 0x5c025800, 0x5c000000, + 0x1c01f000, 0x4803c856, 0x4d300000, 0x05f1fd91, + 0x05000010, 0x4926601d, 0x4936600a, 0x0501fa9c, + 0x48ee602d, 0x64066407, 0x492e6009, 0x4d3c0000, + 0x417a7800, 0x05b9f832, 0x5c027800, 0x4d380000, + 0x60a27000, 0x0009f839, 0x5c027000, 0x90000541, + 0x5c026000, 0x1c01f000, 0x4803c856, 0x91380595, + 0x05020009, 0x59a800bb, 0xb00005b4, 0x05020006, + 0x41780800, 0x05d1fc9b, 0x64066203, 0x64a66403, + 0x05e9f186, 0x05f5fc58, 0x0009f010, 0x4803c856, + 0x91380596, 0x05020004, 0x60100800, 0x05d1fb55, + 0x05f1f76c, 0x91380595, 0x0502000d, 0x59a800bb, + 0x90000594, 0x0502000a, 0x05d1fcff, 0x05f9f911, + 0x05020007, 0x59340404, 0x80000540, 0x05000004, + 0x60180800, 0x05d1fb47, 0x05f1f75e, 0x05f5fc42, + 0x0009f010, 0x4803c856, 0x592c020a, 0x90000585, + 0x05000002, 0x1c01f000, 0x4803c856, 0x592c020c, + 0x8400054a, 0x48025a0c, 0x1c01f000, 0x59300809, + 0x800409c0, 0x05000008, 0x58040208, 0x82000580, + 0x00000152, 0x05020004, 0x59a8085f, 0x48066006, + 0x1c01f000, 0x599c0416, 0x800001c0, 0x05000007, + 0x90000c84, 0x05001005, 0x800000c2, 0x800008c4, + 0x80040c00, 0x05fdf7f6, 0x59300403, 0x90000582, + 0x05fe07f2, 0x5930080a, 0x58040403, 0x82000580, + 0x000007fe, 0x05fe07ed, 0x60a00800, 0x05fdf7ec, + 0x4803c856, 0x59300c03, 0xb13805a1, 0x05000019, + 0xb13805a0, 0x05000017, 0xb13805a2, 0x0502001e, + 0x497a6205, 0x90040582, 0x05000006, 0x9004059e, + 0x0500000e, 0x90040584, 0x05020017, 0x0501f003, + 0x600c0800, 0x05d1fb0b, 0x59340200, 0x84000508, + 0x48026a00, 0x59300416, 0x84000510, 0x48026416, + 0x64066203, 0x05e9f12d, 0x64166203, 0x0501f00a, + 0x59340200, 0x8c00050e, 0x05020002, 0x497a6205, + 0x640a6203, 0x90040486, 0x05fc17c1, 0x59a8005f, + 0x48026006, 0x1c01f000, 0x4803c856, 0xb13805a1, + 0x05000003, 0xb13805a0, 0x0502000a, 0x59303403, + 0x82180580, 0x00000086, 0x05f004d3, 0x82180580, + 0x00000087, 0x05f004d0, 0x497a6205, 0x642a6203, 0x1c01f000, 0x4803c856, 0xb13805a1, 0x05000003, - 0xb13805a0, 0x0502000a, 0x59303403, 0x82180580, - 0x00000086, 0x05f00557, 0x82180580, 0x00000087, - 0x05f00554, 0x497a6205, 0x642a6203, 0x1c01f000, - 0x4803c856, 0xb13805a1, 0x05000003, 0xb13805a0, - 0x05020007, 0x59300403, 0xb0000c91, 0x05aa1f53, - 0xb0000480, 0x05a81f51, 0x0c01f002, 0x1c01f000, - 0x0010ae9e, 0x0010ae9d, 0x0010ae9d, 0x0010aeaa, - 0x0010ae9d, 0x0010ae9d, 0x0010ae9d, 0x0010ae9d, - 0x0010ae9d, 0x0010aeaa, 0x0010ae9d, 0x0010aeab, - 0x0010aeab, 0x0010aeab, 0x0010aeab, 0x0010ae9d, - 0x0010aeae, 0x05a9ff3d, 0x59340200, 0x8c00050e, - 0x05020002, 0x497a6205, 0x59300809, 0x5804020e, - 0x8c000502, 0x05000003, 0x64126203, 0x1c01f000, - 0x640a6203, 0x1c01f000, 0x1c01f000, 0x497a6205, - 0x64366203, 0x1c01f000, 0x0005f7dc, 0x4803c856, - 0xb13805a1, 0x05000006, 0xb13805a0, 0x05020009, - 0x59cc0002, 0x8c000526, 0x05000007, 0x59300403, - 0xb0000d83, 0x05000005, 0xb0000d89, 0x05000003, - 0x05f1fd78, 0x1c01f000, 0x59a8005e, 0x48026205, - 0x640a6203, 0x5930001c, 0x80000540, 0x05000003, - 0x497a601c, 0x0801f800, 0x1c01f000, 0x497a6205, - 0x497a6009, 0x64066203, 0x65426403, 0x42000800, - 0x80000043, 0x0005f6ab, 0x4933c857, 0x4d340000, - 0x5932680a, 0x59340200, 0x8c00050e, 0x05000005, - 0x59300407, 0x90000c92, 0x05021004, 0x0c01f805, - 0x5c026800, 0x1c01f000, 0x05fdfae0, 0x05fdf7fd, - 0x0010a9ba, 0x0010aeee, 0x0010aef2, 0x0010aef5, - 0x0010c96b, 0x0010c983, 0x0010c987, 0x0010a9ba, - 0x0010a9ba, 0x0010a9ba, 0x0010a9ba, 0x0010a9ba, - 0x0010a9ba, 0x0010a9ba, 0x0010a9ba, 0x0010a9ba, - 0x0010a9ba, 0x0010a9ba, 0x4803c856, 0x40000000, - 0x40000000, 0x1c01f000, 0x40000000, 0x40000000, - 0x1c01f000, 0x59300008, 0x8c000536, 0x0502000b, - 0x5930001e, 0x4803c857, 0x59300416, 0x4933c857, - 0x4803c857, 0x8c000502, 0x05000005, 0x4803c857, - 0x84000540, 0x48026416, 0x1c01f000, 0x42000000, - 0xd0000000, 0x41300800, 0x05adfe2c, 0x0501f80e, - 0x0502000c, 0x59300c16, 0x59300403, 0xb0000580, - 0x05000003, 0x84040d40, 0x0501f004, 0x59a8005c, - 0x9000040a, 0x48026205, 0x84040d42, 0x48066416, - 0x1c01f000, 0x4933c857, 0x4d340000, 0x5932680a, - 0x59340a00, 0x8c04050e, 0x05a80ec0, 0x5930001e, - 0x80000540, 0x05020031, 0x59300403, 0x4803c857, - 0xb0000580, 0x05000003, 0x8d0c050e, 0x05020029, - 0x4d1c0000, 0x41323800, 0x05f1fcdd, 0x05000023, - 0x4932381e, 0x591c0416, 0x84000542, 0x48023c16, - 0x4936600a, 0x05d5fb44, 0x4926601d, 0x0501f960, - 0x591c0407, 0x90000583, 0x05000006, 0x591c0202, - 0x4802641b, 0x591c0402, 0x4802621b, 0x0501f005, - 0x591c0202, 0x4802621b, 0x591c0402, 0x4802641b, - 0x591c0017, 0x48026017, 0x491e602a, 0x64066407, - 0x64d66403, 0x64066203, 0x42000800, 0x80000040, - 0x0005feab, 0x411e6000, 0x5c023800, 0x80000580, - 0x5c026800, 0x1c01f000, 0x411e6000, 0x5c023800, - 0x59a8005e, 0x48026205, 0x90000541, 0x05fdf7f9, - 0x4933c857, 0x4d2c0000, 0x4932381e, 0x4a026202, - 0x0000ffff, 0x591e5809, 0x591c0008, 0x8c00051e, - 0x05000005, 0x8400051e, 0x48023808, 0x497a580d, - 0x0501f016, 0x592c040c, 0x8c000518, 0x05000013, - 0x84000518, 0x48025c0c, 0x4d400000, 0x592e820a, - 0x64065a0a, 0x0501fbf8, 0x49425a0a, 0x5c028000, - 0x497a580d, 0x592c040c, 0x8c000512, 0x05000007, - 0x4d2c0000, 0x84000512, 0x48025c0c, 0x592e580d, - 0x05adfa2b, 0x5c025800, 0x59a8005e, 0x48026205, - 0x591c0216, 0x48026218, 0x90000d81, 0x05000006, - 0x640a3a03, 0x90000585, 0x05000007, 0x497a6017, - 0x0501f01c, 0x591c0008, 0x84000540, 0x48023808, - 0x64123a03, 0x591c0416, 0x4803c857, 0x8400051c, - 0x84000554, 0x48023c16, 0x592c0013, 0x40001000, - 0x591c0818, 0x80040480, 0x05fe17f1, 0x591c0018, - 0x82000500, 0xfffffffc, 0x48026017, 0x48023818, + 0xb13805a0, 0x05020007, 0x59300403, 0xb0000c91, + 0x05aa19f5, 0xb0000480, 0x05a819f3, 0x0c01f002, + 0x1c01f000, 0x0010b437, 0x0010b436, 0x0010b436, + 0x0010b443, 0x0010b436, 0x0010b436, 0x0010b436, + 0x0010b436, 0x0010b436, 0x0010b443, 0x0010b436, + 0x0010b444, 0x0010b444, 0x0010b444, 0x0010b444, + 0x0010b436, 0x0010b447, 0x05a9f9df, 0x59340200, + 0x8c00050e, 0x05020002, 0x497a6205, 0x59300809, + 0x5804020e, 0x8c000502, 0x05000003, 0x64126203, + 0x1c01f000, 0x640a6203, 0x1c01f000, 0x1c01f000, + 0x497a6205, 0x64366203, 0x1c01f000, 0x0009f010, + 0x4803c856, 0xb13805a1, 0x05000006, 0xb13805a0, + 0x05020009, 0x59cc0002, 0x8c000526, 0x05000007, + 0x59300403, 0xb0000d83, 0x05000005, 0xb0000d89, + 0x05000003, 0x05f1fd11, 0x1c01f000, 0x59a80061, + 0x48026205, 0x640a6203, 0x5930001c, 0x80000540, + 0x05000003, 0x497a601c, 0x0801f800, 0x1c01f000, + 0x497a6205, 0x497a6009, 0x4a026003, 0x00500001, + 0x42000800, 0x80000043, 0x0005f6e2, 0x4933c857, + 0x4d340000, 0x5932680a, 0x59340200, 0x8c00050e, + 0x05000005, 0x59300407, 0x90000c92, 0x05021004, + 0x0c01f805, 0x5c026800, 0x1c01f000, 0x05fdfac1, + 0x05fdf7fd, 0x0010af34, 0x0010b487, 0x0010b48b, + 0x0010b48e, 0x0010d0b5, 0x0010d0cd, 0x0010d0d1, + 0x0010af34, 0x0010af34, 0x0010af34, 0x0010af34, + 0x0010af34, 0x0010af34, 0x0010af34, 0x0010af34, + 0x0010af34, 0x0010af34, 0x0010af34, 0x4803c856, + 0x40000000, 0x40000000, 0x1c01f000, 0x40000000, + 0x40000000, 0x1c01f000, 0x59300008, 0x8c000536, + 0x0502000b, 0x5930001e, 0x4803c857, 0x59300416, + 0x4933c857, 0x4803c857, 0x8c000502, 0x05000005, + 0x4803c857, 0x84000540, 0x48026416, 0x1c01f000, + 0x42000000, 0xd0000000, 0x41300800, 0x05adf92f, + 0x0501f80e, 0x0502000c, 0x59300c16, 0x59300403, + 0xb0000580, 0x05000003, 0x84040d40, 0x0501f004, + 0x59a8005f, 0x9000040a, 0x48026205, 0x84040d42, + 0x48066416, 0x1c01f000, 0x4933c857, 0x4d340000, + 0x5932680a, 0x59340a00, 0x8c04050e, 0x05a80962, + 0x5930001e, 0x80000540, 0x05020031, 0x59300403, + 0x4803c857, 0xb0000580, 0x05000003, 0x8d0c050e, + 0x05020029, 0x4d1c0000, 0x41323800, 0x05f1fc59, + 0x05000023, 0x4932381e, 0x591c0416, 0x84000542, + 0x48023c16, 0x4936600a, 0x05d5f874, 0x4926601d, + 0x0501f95f, 0x591c0407, 0x90000583, 0x05000006, + 0x591c0202, 0x4802641b, 0x591c0402, 0x4802621b, + 0x0501f005, 0x591c0202, 0x4802621b, 0x591c0402, + 0x4802641b, 0x591c0017, 0x48026017, 0x491e602a, + 0x64066407, 0x64d66403, 0x64066203, 0x42000800, + 0x80000040, 0x0005fee2, 0x411e6000, 0x5c023800, + 0x80000580, 0x5c026800, 0x1c01f000, 0x411e6000, + 0x5c023800, 0x59a80061, 0x48026205, 0x90000541, + 0x05fdf7f9, 0x4933c857, 0x4d2c0000, 0x4932381e, + 0x4a026202, 0x0000ffff, 0x591e5809, 0x591c0008, + 0x8c00051e, 0x05000005, 0x8400051e, 0x48023808, + 0x497a580d, 0x0501f016, 0x592c040c, 0x8c000518, + 0x05000013, 0x84000518, 0x48025c0c, 0x4d400000, + 0x592e820a, 0x64065a0a, 0x0501fc05, 0x49425a0a, + 0x5c028000, 0x497a580d, 0x592c040c, 0x8c000512, + 0x05000007, 0x4d2c0000, 0x84000512, 0x48025c0c, + 0x592e580d, 0x05a9fcc9, 0x5c025800, 0x59a80061, + 0x48026205, 0x591c0216, 0x48026218, 0x90000d81, + 0x05000006, 0x640a3a03, 0x90000585, 0x05000007, + 0x497a6017, 0x0501f01b, 0x591c0008, 0x84000540, + 0x48023808, 0x64123a03, 0x591c0416, 0x4803c857, + 0x8400051c, 0x84000554, 0x48023c16, 0x592c0013, + 0x40001000, 0x591c0818, 0x80040480, 0x05fe17f1, + 0x82040500, 0xfffffffc, 0x48026017, 0x48023818, 0x591c0a16, 0x4807c857, 0x90040d85, 0x05020005, 0x480bc857, 0x4803c857, 0x4a023814, 0xffffffff, 0x591c0402, 0x4802641b, 0x591c0202, 0x4802621b, 0x591e680a, 0x4936600a, 0x64066407, 0x64e66403, - 0x64066203, 0x42000800, 0x80000040, 0x0005feab, + 0x64066203, 0x42000800, 0x80000040, 0x0005fee2, 0x5c025800, 0x1c01f000, 0x4933c857, 0x59300416, 0x8c000514, 0x05000015, 0x8c00051c, 0x05020012, 0x59300018, 0x80100480, 0x05001006, 0x05000005, @@ -11287,89 +11645,89 @@ static const uint32_t isp_2500_risc_code[] = { 0x1c01f000, 0x59300c03, 0x4933c857, 0x4807c857, 0x900404b4, 0x05001005, 0x900404bc, 0x05021003, 0x80000580, 0x1c01f000, 0x90000541, 0x05fdf7fe, - 0x42000000, 0x0010e3b6, 0x0511f806, 0x4d340000, + 0x42000000, 0x00112357, 0x0511f9e9, 0x4d340000, 0x4d240000, 0x5932481d, 0x5932680a, 0x59300407, 0x90000c92, 0x05021003, 0x4803c857, 0x0c01f804, - 0x5c024800, 0x5c026800, 0x1c01f000, 0x0010aff5, - 0x0010aff7, 0x0010affa, 0x0010b035, 0x0010c948, - 0x0010c915, 0x0010c94c, 0x0010aff6, 0x0010aff5, - 0x0010aff6, 0x0010aff6, 0x0010aff6, 0x0010aff6, - 0x0010aff6, 0x0010aff6, 0x0010aff6, 0x0010aff6, - 0x0010aff6, 0x05a9fde5, 0x1c01f000, 0x40000000, + 0x5c024800, 0x5c026800, 0x1c01f000, 0x0010b58d, + 0x0010b58f, 0x0010b592, 0x0010b5cd, 0x0010d092, + 0x0010d05f, 0x0010d096, 0x0010b58e, 0x0010b58d, + 0x0010b58e, 0x0010b58e, 0x0010b58e, 0x0010b58e, + 0x0010b58e, 0x0010b58e, 0x0010b58e, 0x0010b58e, + 0x0010b58e, 0x05a9f888, 0x1c01f000, 0x40000000, 0x40000000, 0x1c01f000, 0x59300403, 0x82000d80, 0x00000085, 0x05020007, 0x4a026403, 0x0000008b, - 0x642e6203, 0x42000800, 0x80004040, 0x0005f6ab, + 0x642e6203, 0x42000800, 0x80004040, 0x0005f6e2, 0x82000d80, 0x0000008b, 0x0502002e, 0x4d3c0000, - 0x417a7800, 0x05b9fb23, 0x5c027800, 0x42000000, - 0x0010e454, 0x050dffcf, 0x05fdfcbb, 0x0500000e, + 0x417a7800, 0x05b5fe22, 0x5c027800, 0x42000000, + 0x001123f8, 0x0511f9b2, 0x05fdfcac, 0x0500000e, 0x4d2c0000, 0x59325809, 0x4a025a08, 0x00000103, 0x59300402, 0x48025c0a, 0x641a5a0a, 0x497a580d, - 0x0001fb82, 0x59300a29, 0x90040d83, 0x05fc0d8d, - 0x5c025800, 0x60443000, 0x050dfd65, 0x64066403, - 0x497a6009, 0x05b9fdf6, 0x59240400, 0x8c00050a, + 0x0001fba8, 0x59300a29, 0x90040d83, 0x05fc0d8e, + 0x5c025800, 0x60443000, 0x050dff2a, 0x64066403, + 0x497a6009, 0x05b9f8fa, 0x59240400, 0x8c00050a, 0x0502000b, 0x41782800, 0x60103000, 0x4d400000, - 0x60a68000, 0x0509ff76, 0x5c028000, 0x64126407, + 0x60a68000, 0x050df925, 0x5c028000, 0x64126407, 0x641e6203, 0x6406642c, 0x1c01f000, 0x602c0800, - 0x05d1fcbd, 0x64066407, 0x64066203, 0x05e9f03e, + 0x05d1f938, 0x64066407, 0x64066203, 0x05e5f75f, 0x1c01f000, 0x59300416, 0x8c00051a, 0x05020021, 0x5930080a, 0x58040200, 0x8c00050e, 0x05000006, 0x59300a03, 0x90040590, 0x05000003, 0x90040583, - 0x05020018, 0x05f9ffcb, 0x59300203, 0x90000d89, + 0x05020018, 0x05f9ffa5, 0x59300203, 0x90000d89, 0x0500000b, 0x48026429, 0x4a026403, 0x00000085, 0x59300416, 0x8400055a, 0x8400055e, 0x48026416, - 0x64266203, 0x640a6407, 0x640e6229, 0x59a8005d, - 0x48026205, 0x42000800, 0x80004040, 0x0501fe48, - 0x0005feab, 0x4203e000, 0xb0800000, 0x6023f800, - 0x1c01f000, 0x41780800, 0x59a8105a, 0x60c80000, - 0x05e5ff32, 0x800811c0, 0x05020002, 0x60501000, - 0x480b505c, 0x59a8105b, 0x480b5050, 0x41780800, - 0x61900000, 0x05e5ff29, 0x800811c0, 0x05020002, - 0x60501000, 0x480b505d, 0x9008140a, 0x480b505e, - 0x60040800, 0x05e9fce2, 0x42000000, 0x30000000, - 0x40080800, 0x0001f93a, 0x600c0800, 0x59a8103d, - 0x05e9fccd, 0x05d5f088, 0x64a3505c, 0x6453505d, - 0x4a035050, 0x000007d0, 0x60781000, 0x480b505e, - 0x60040800, 0x05e9fcd2, 0x42000000, 0x30000000, - 0x40080800, 0x0001f93a, 0x600c0800, 0x59a8103d, - 0x05e9f4bd, 0x4933c857, 0x4d2c0000, 0x59300403, + 0x64266203, 0x640a6407, 0x640e6229, 0x59a80060, + 0x48026205, 0x42000800, 0x80004040, 0x0501fe56, + 0x0005fee2, 0x4203e000, 0xb0800000, 0x6023f800, + 0x1c01f000, 0x41780800, 0x59a8105d, 0x60c80000, + 0x05e5fe53, 0x800811c0, 0x05020002, 0x60501000, + 0x480b505f, 0x59a8105e, 0x480b5053, 0x41780800, + 0x61900000, 0x05e5fe4a, 0x800811c0, 0x05020002, + 0x60501000, 0x480b5060, 0x9008140a, 0x480b5061, + 0x60040800, 0x05e9fc08, 0x42000000, 0x30000000, + 0x40080800, 0x0001f942, 0x600c0800, 0x59a81040, + 0x05e9fbf3, 0x05d1f562, 0x64a3505f, 0x64535060, + 0x4a035053, 0x000007d0, 0x60781000, 0x480b5061, + 0x60040800, 0x05e9fbf8, 0x42000000, 0x30000000, + 0x40080800, 0x0001f942, 0x600c0800, 0x59a81040, + 0x05e9f3e3, 0x4933c857, 0x4d2c0000, 0x59300403, 0x900005be, 0x05020004, 0x59325819, 0x812e59c0, - 0x05ae0906, 0x5c025800, 0x1c01f000, 0x4933c857, + 0x05aa0ba5, 0x5c025800, 0x1c01f000, 0x4933c857, 0x813669c0, 0x0500000c, 0x59340200, 0x8c000508, 0x05000009, 0x4a026416, 0x00000100, 0x8c00050c, 0x59300008, 0x05000002, 0x84000544, 0x84000542, 0x48026008, 0x1c01f000, 0x59300416, 0x8c000510, - 0x1c01f000, 0x4937c857, 0x4d300000, 0x05f1fb60, + 0x1c01f000, 0x4937c857, 0x4d300000, 0x05f1fadd, 0x0500000d, 0x4926601d, 0x4936600a, 0x05fdffe8, - 0x64066407, 0x492e6009, 0x60240800, 0x05d1fc42, - 0x4d380000, 0x60ce7000, 0x0009f800, 0x5c027000, + 0x64066407, 0x492e6009, 0x60240800, 0x05d1f8bd, + 0x4d380000, 0x60ce7000, 0x0009f839, 0x5c027000, 0x90000541, 0x5c026000, 0x1c01f000, 0x4933c857, 0x4d2c0000, 0x4c580000, 0x4d3c0000, 0x59325809, - 0x91380595, 0x0502001d, 0x59a8b0b6, 0x90580c99, - 0x05001002, 0x6060b000, 0x8058b104, 0x0501fa5b, - 0x80000580, 0x0501fa6a, 0x912cac0d, 0x91cca406, - 0x050dffe3, 0x4c600000, 0x6004c000, 0x592c100e, + 0x91380595, 0x0502001d, 0x59a8b0bb, 0x90580c99, + 0x05001002, 0x6060b000, 0x8058b104, 0x0501fa69, + 0x80000580, 0x0501fa78, 0x912cac0d, 0x91cca406, + 0x0511f9c6, 0x4c600000, 0x6004c000, 0x592c100e, 0x8c080518, 0x05020006, 0x59240005, 0x592c1011, 0x80080580, 0x05020006, 0x4178c000, 0x5930100a, - 0x58081403, 0x417a7800, 0x05b9fad2, 0x5c00c000, - 0x05f1fd0e, 0x0501f005, 0x6008b000, 0x0501fa60, - 0x05f5f9eb, 0x0005ffdc, 0x5c027800, 0x5c00b000, + 0x58081403, 0x417a7800, 0x05b5fdd1, 0x5c00c000, + 0x05f1fcac, 0x0501f005, 0x6008b000, 0x0501fa6e, + 0x05f5f98d, 0x0009f810, 0x5c027800, 0x5c00b000, 0x5c025800, 0x1c01f000, 0x4933c856, 0x4a02601d, - 0x0010e512, 0x4936600a, 0x05fdffad, 0x64066407, - 0x492e6009, 0x4d380000, 0x61367000, 0x0009f800, + 0x001124b6, 0x4936600a, 0x05fdffad, 0x64066407, + 0x492e6009, 0x4d380000, 0x61367000, 0x0009f839, 0x5c027000, 0x90000541, 0x1c01f000, 0x4803c856, - 0x4d2c0000, 0x91380595, 0x05020025, 0x59a808b6, + 0x4d2c0000, 0x91380595, 0x05020025, 0x59a808bb, 0x59325809, 0x5930040d, 0x80040580, 0x05020020, 0x4c500000, 0x4c540000, 0x4c580000, 0x91cca406, 0x4050a800, 0x5930b40d, 0x9058b403, 0x8058b104, - 0x050dffe6, 0x91cca406, 0x592cb209, 0x9058b403, - 0x8058b104, 0x912cac0a, 0x050dffa5, 0x592e5801, + 0x0511f9c9, 0x91cca406, 0x592cb209, 0x9058b403, + 0x8058b104, 0x912cac0a, 0x0511f988, 0x592e5801, 0x812e59c0, 0x05fe07f9, 0x5931d82d, 0x58ef400b, 0x58ee580d, 0x4a025a08, 0x00000103, 0x58ec0009, 0x0801f800, 0x59300402, 0x5c00b000, 0x5c00a800, - 0x5c00a000, 0x5c025800, 0x1c01f000, 0x05f5f9b0, + 0x5c00a000, 0x5c025800, 0x1c01f000, 0x05f5f952, 0x5c025800, 0x1c01f000, 0x4933c857, 0x90040db5, - 0x05000005, 0x5930141b, 0x0501f83f, 0x05000025, - 0x0501f006, 0x4d300000, 0x5932602a, 0x0501f843, + 0x05000005, 0x5930141b, 0x0501f843, 0x05000025, + 0x0501f006, 0x4d300000, 0x5932602a, 0x0501f847, 0x5c026000, 0x0500001e, 0x591c0c07, 0x90040583, 0x05000003, 0x90040586, 0x0502001b, 0x591c0c02, 0x5930041b, 0x80040580, 0x05000009, 0x5930021b, @@ -11378,3242 +11736,3378 @@ static const uint32_t isp_2500_risc_code[] = { 0x82040580, 0x0000ffff, 0x05000005, 0x591c0202, 0x59300a1b, 0x80040580, 0x05020007, 0x591c000a, 0x5930080a, 0x80040580, 0x1c01f000, 0x417a3800, - 0x90000541, 0x1c01f000, 0x4803c856, 0x4203e000, - 0xb0800000, 0x600009fe, 0x4203f800, 0x30000000, - 0x40000000, 0x80040840, 0x05a80c90, 0x05ffb7fb, + 0x90000541, 0x1c01f000, 0x59a80c9f, 0x8c040502, + 0x0502000c, 0x4803c856, 0x4203e000, 0xb0800000, + 0x600009fe, 0x4203f800, 0x30000000, 0x40000000, + 0x80040840, 0x05a40f30, 0x05ffb7fb, 0x80040d81, 0x1c01f000, 0x4803c856, 0x4203e000, 0xb0800000, 0x4203f800, 0x20000000, 0x1c01f000, 0x59300808, 0x8c04051e, 0x592c0c0c, 0x05020002, 0x8c040518, - 0x1c01f000, 0x05fdfb66, 0x05000007, 0x800800ca, - 0x800808c8, 0x80040c00, 0x82063c00, 0x00111b00, - 0x491fc857, 0x1c01f000, 0x0501fd45, 0x05020007, + 0x1c01f000, 0x05fdfb53, 0x05000007, 0x800800ca, + 0x800808c8, 0x80040c00, 0x82063c00, 0x00115aa4, + 0x491fc857, 0x1c01f000, 0x0501fd4f, 0x05020007, 0x59301402, 0x05fdfff4, 0x05000007, 0x411c0000, 0x81300580, 0x05000003, 0x81780500, 0x0501f002, 0x81300540, 0x1c01f000, 0x4d300000, 0x83440480, - 0x000007f0, 0x05001003, 0x05d5f907, 0x0501f002, - 0x0001fb00, 0x05020008, 0x4936600a, 0x05d5f8fa, - 0x4926601d, 0x05b9f9b3, 0x80000580, 0x5c026000, - 0x1c01f000, 0x90000541, 0x05fdf7fd, 0x4933c857, - 0x05fdfb49, 0x05a80c59, 0x4d2c0000, 0x4d340000, - 0x4d440000, 0x4c580000, 0x59325809, 0x5932680a, - 0x49425a0a, 0x05d9fe7a, 0x592e8c0a, 0x592c420b, - 0x9020050f, 0x0c01f806, 0x5c00b000, 0x5c028800, - 0x5c026800, 0x5c025800, 0x1c01f000, 0x0010b1a5, - 0x0010b1c6, 0x0010b1cc, 0x0010b1cf, 0x0010b1d7, - 0x0010b1a3, 0x0010b1a3, 0x0010b1a3, 0x0010b1da, - 0x0010b1e6, 0x0010b1e6, 0x0010b1a3, 0x0010b1a3, - 0x0010b1a3, 0x0010b1a3, 0x0010b1a3, 0x4803c857, - 0x05a9fc36, 0x814281c0, 0x05020011, 0x41785800, - 0x592c0408, 0x8c00051c, 0x05020002, 0x59345c05, - 0x442c2800, 0x59340008, 0x48002802, 0x59340009, - 0x48002801, 0x59340006, 0x48002804, 0x59340007, - 0x48002803, 0x602cb000, 0x0501f032, 0x592c020b, - 0x8c00051e, 0x6008b000, 0x0502002e, 0x9004b540, - 0x0500002c, 0x44042800, 0x5932680a, 0x59340400, - 0x48002801, 0x59340200, 0x90000501, 0x48002802, - 0x600cb000, 0x0501f023, 0x814281c0, 0x05fe07f0, - 0x59345c05, 0x442c2800, 0x6004b000, 0x0501f01d, - 0x9140b540, 0x0500001b, 0x0501f024, 0x814281c0, - 0x05020022, 0x59340200, 0x44002800, 0x59340001, - 0x48002801, 0x6008b000, 0x0501f012, 0x9140b540, - 0x0502001a, 0x0501f00f, 0x9140b540, 0x0500000d, - 0x8c20051c, 0x05020015, 0x05d5f880, 0x05000013, - 0x8c20050e, 0x05000002, 0x497a600a, 0x4178b000, - 0x497a5a0a, 0x0501f003, 0x9140b540, 0x0502000b, - 0x592c0408, 0x8400051c, 0x48025c08, 0x592c020b, - 0x82000500, 0x00003fff, 0x48025a0b, 0x0501f92b, - 0x497a6009, 0x0001f382, 0x592c020b, 0x8c00051e, - 0x6008b000, 0x05fe07f3, 0x9004b540, 0x05fc07f1, - 0x44042800, 0x6004b000, 0x05fdf7ee, 0x4937c857, - 0x4d300000, 0x05f1fa06, 0x0500000d, 0x4926601d, - 0x4936600a, 0x05fdfe8e, 0x64066407, 0x492e6009, - 0x602c0800, 0x05d1fae8, 0x4d380000, 0x610e7000, - 0x0009f800, 0x5c027000, 0x90000541, 0x5c026000, - 0x1c01f000, 0x4937c857, 0x4d2c0000, 0x4d200000, - 0x59340013, 0x80024130, 0x59325809, 0x91380595, - 0x05020022, 0x59a800b6, 0x90000584, 0x0502001f, - 0x59240005, 0x592c100d, 0x80080580, 0x05020011, - 0x4d440000, 0x592e8c0a, 0x592c020b, 0x4803c856, - 0x82000500, 0x00000080, 0x84000548, 0x4d3c0000, - 0x60027820, 0x8c00050e, 0x05000002, 0x853e7d5c, - 0x05d1ffb7, 0x5c027800, 0x5c028800, 0x0501f003, - 0x4803c856, 0x05d5f831, 0x05fdfa9b, 0x05000011, - 0x4d400000, 0x60028000, 0x41780800, 0x05fdff4c, - 0x5c028000, 0x0501f00a, 0x05d5f828, 0x05fe07f7, - 0x05fdfa91, 0x05000007, 0x4c580000, 0x6008b000, - 0x0501f8fb, 0x5c00b000, 0x05f5f885, 0x0005ffdc, - 0x5c024000, 0x5c025800, 0x1c01f000, 0x4937c857, - 0x4d300000, 0x05f1f9be, 0x0500000f, 0x4926601d, - 0x4936600a, 0x05fdfe46, 0x64066407, 0x4d3c0000, - 0x4d380000, 0x417a7800, 0x05d1fa95, 0x492e6009, - 0x60127000, 0x0009f800, 0x5c027000, 0x5c027800, - 0x90000541, 0x5c026000, 0x1c01f000, 0x4937c857, - 0x4d300000, 0x05f1f9aa, 0x0500000d, 0x4926601d, - 0x4936600a, 0x05fdfe32, 0x600c0800, 0x05d1fa8e, - 0x64066407, 0x492e6009, 0x4d380000, 0x61467000, - 0x0009f800, 0x5c027000, 0x90000541, 0x5c026000, - 0x1c01f000, 0x4933c857, 0x4c580000, 0x4d240000, - 0x4d200000, 0x4d400000, 0x4d440000, 0x4d3c0000, - 0x5932481d, 0x59240a00, 0x8c040500, 0x0500008b, - 0x05b9fba3, 0x59325809, 0x91383595, 0x05020056, - 0x60100800, 0x05d1fa74, 0x60040800, 0x05d1fb5b, - 0x812e59c0, 0x05020043, 0x59a800bb, 0x80000040, - 0x480350bb, 0x050dfea5, 0x05000004, 0x59240200, - 0x8400051a, 0x48024a00, 0x417a8000, 0x59cc0000, - 0x82000500, 0x00ffffff, 0x59240805, 0x4803c857, - 0x4807c857, 0x800409c0, 0x05000016, 0x80041580, - 0x05000014, 0x4c000000, 0x60aa8000, 0x59240400, + 0x000007f0, 0x05001006, 0x83440480, 0x00000800, + 0x05021003, 0x05d1fe31, 0x0501f002, 0x0001fb08, + 0x05020008, 0x4936600a, 0x05d1fe24, 0x4926601d, + 0x05b5fcab, 0x80000580, 0x5c026000, 0x1c01f000, + 0x90000541, 0x05fdf7fd, 0x4933c857, 0x05fdfb33, + 0x05a40ef5, 0x4d2c0000, 0x4d340000, 0x4d440000, + 0x4c580000, 0x59325809, 0x5932680a, 0x49425a0a, + 0x05d9fbee, 0x592e8c0a, 0x592c420b, 0x9020050f, + 0x0c01f806, 0x5c00b000, 0x5c028800, 0x5c026800, + 0x5c025800, 0x1c01f000, 0x0010b744, 0x0010b765, + 0x0010b76b, 0x0010b76e, 0x0010b776, 0x0010b742, + 0x0010b742, 0x0010b742, 0x0010b779, 0x0010b785, + 0x0010b785, 0x0010b742, 0x0010b742, 0x0010b742, + 0x0010b742, 0x0010b742, 0x4803c857, 0x05a5fed2, + 0x814281c0, 0x05020011, 0x41785800, 0x592c0408, + 0x8c00051c, 0x05020002, 0x59345c05, 0x442c2800, + 0x59340008, 0x48002802, 0x59340009, 0x48002801, + 0x59340006, 0x48002804, 0x59340007, 0x48002803, + 0x602cb000, 0x0501f032, 0x592c020b, 0x8c00051e, + 0x6008b000, 0x0502002e, 0x9004b540, 0x0500002c, + 0x44042800, 0x5932680a, 0x59340400, 0x48002801, + 0x59340200, 0x90000501, 0x48002802, 0x600cb000, + 0x0501f023, 0x814281c0, 0x05fe07f0, 0x59345c05, + 0x442c2800, 0x6004b000, 0x0501f01d, 0x9140b540, + 0x0500001b, 0x0501f024, 0x814281c0, 0x05020022, + 0x59340200, 0x44002800, 0x59340001, 0x48002801, + 0x6008b000, 0x0501f012, 0x9140b540, 0x0502001a, + 0x0501f00f, 0x9140b540, 0x0500000d, 0x8c20051c, + 0x05020015, 0x05d1fdaa, 0x05000013, 0x8c20050e, + 0x05000002, 0x497a600a, 0x4178b000, 0x497a5a0a, + 0x0501f003, 0x9140b540, 0x0502000b, 0x592c0408, + 0x8400051c, 0x48025c08, 0x592c020b, 0x82000500, + 0x00003fff, 0x48025a0b, 0x0501f932, 0x497a6009, + 0x0001f3a8, 0x592c020b, 0x8c00051e, 0x6008b000, + 0x05fe07f3, 0x9004b540, 0x05fc07f1, 0x44042800, + 0x6004b000, 0x05fdf7ee, 0x4937c857, 0x4d300000, + 0x05f1f97c, 0x0500000d, 0x4926601d, 0x4936600a, + 0x05fdfe87, 0x64066407, 0x492e6009, 0x602c0800, + 0x05cdff5c, 0x4d380000, 0x610e7000, 0x0009f839, + 0x5c027000, 0x90000541, 0x5c026000, 0x1c01f000, + 0x4937c857, 0x4d2c0000, 0x4d200000, 0x59340013, + 0x80024130, 0x59325809, 0x91380595, 0x05020022, + 0x59a800bb, 0x90000584, 0x0502001f, 0x59240005, + 0x592c100d, 0x80080580, 0x05020011, 0x4d440000, + 0x592e8c0a, 0x592c020b, 0x4803c856, 0x82000500, + 0x00000080, 0x84000548, 0x4d3c0000, 0x60027820, + 0x8c00050e, 0x05000002, 0x853e7d5c, 0x05d1fcdd, + 0x5c027800, 0x5c028800, 0x0501f003, 0x4803c856, + 0x05d1fd5b, 0x05fdfa85, 0x05000011, 0x4d400000, + 0x60028000, 0x41780800, 0x05fdff4c, 0x5c028000, + 0x0501f00a, 0x05d1fd52, 0x05fe07f7, 0x05fdfa7b, + 0x05000007, 0x4c580000, 0x6008b000, 0x0501f902, + 0x5c00b000, 0x05f5f820, 0x0009f810, 0x5c024000, + 0x5c025800, 0x1c01f000, 0x4937c857, 0x4d300000, + 0x05f1f934, 0x0500000f, 0x4926601d, 0x4936600a, + 0x05fdfe3f, 0x64066407, 0x4d3c0000, 0x4d380000, + 0x417a7800, 0x05cdff09, 0x492e6009, 0x60127000, + 0x0009f839, 0x5c027000, 0x5c027800, 0x90000541, + 0x5c026000, 0x1c01f000, 0x4937c857, 0x4d300000, + 0x05f1f920, 0x0500000d, 0x4926601d, 0x4936600a, + 0x05fdfe2b, 0x600c0800, 0x05cdff02, 0x64066407, + 0x492e6009, 0x4d380000, 0x61467000, 0x0009f839, + 0x5c027000, 0x90000541, 0x5c026000, 0x1c01f000, + 0x4933c857, 0x4c580000, 0x4d240000, 0x4d200000, + 0x4d400000, 0x4d440000, 0x4d3c0000, 0x5932481d, + 0x59240a00, 0x8c040500, 0x05000092, 0x05b5fea0, + 0x59325809, 0x91383595, 0x05020051, 0x60100800, + 0x05cdfee8, 0x812e59c0, 0x0502003e, 0x59a800c0, + 0x80000040, 0x480350c0, 0x0511f883, 0x05000004, + 0x59240200, 0x8400051a, 0x48024a00, 0x417a8000, + 0x05f5fc6b, 0x05000012, 0x60aa8000, 0x59240400, 0x8c00050a, 0x05020004, 0x60083000, 0x61fe89ff, - 0x0509fd0e, 0x417a7800, 0x05b9fbcb, 0x05b9fc3c, + 0x0509fec1, 0x417a7800, 0x05b5fedd, 0x05b5ff4f, 0x600a8000, 0x59cc0c08, 0x8c04051e, 0x05020004, - 0x59240a00, 0x84040d56, 0x48064a00, 0x5c000000, + 0x59240a00, 0x84040d56, 0x48064a00, 0x60040800, + 0x05d1f804, 0x59cc0000, 0x82000500, 0x00ffffff, 0x48024805, 0x40000800, 0x812000f0, 0x80040540, 0x48026813, 0x40040000, 0xb1200c80, 0x05021004, 0x49238830, 0x84000570, 0x48038832, 0x59240200, 0x8400051e, 0x82000540, 0x00000206, 0x48024a00, 0x59240400, 0x8c00050c, 0x05000004, 0x65466429, - 0x0501f84d, 0x0501f045, 0x60040000, 0x41781800, - 0x05d5fb94, 0x0501ff8c, 0x0005ffdc, 0x0501f03f, - 0x592c000c, 0x82000500, 0x00ffffff, 0x05020008, - 0x05d9fd3f, 0x59cc0000, 0x82000500, 0x00ffffff, - 0x44002800, 0x6004b000, 0x0501f850, 0x05f1fb17, - 0x0501f032, 0x812e59c0, 0x0502002d, 0x59340412, - 0x800001c0, 0x05000027, 0x80000040, 0x48026c12, - 0x59cc0c07, 0x82043500, 0x000000ff, 0x481bc857, - 0x90180583, 0x05020017, 0x59cc0207, 0x4803c857, + 0x0501f85b, 0x0501f053, 0x60040000, 0x41781800, + 0x05d5f8e0, 0x0505f8a7, 0x0009f810, 0x0501f04d, + 0x60040800, 0x05cdffe3, 0x592c000c, 0x82000500, + 0x00ffffff, 0x05020008, 0x05d9fab8, 0x59cc0000, + 0x82000500, 0x00ffffff, 0x44002800, 0x6004b000, + 0x0501f85c, 0x05f1fab3, 0x0501f03e, 0x812e59c0, + 0x05020039, 0x600c0800, 0x05b9f873, 0x05020003, + 0x0505f8f0, 0x0501f037, 0x59340412, 0x800001c0, + 0x0500002e, 0x80000040, 0x48026c12, 0x59cc0c07, + 0x82043500, 0x000000ff, 0x481bc857, 0x90180585, + 0x05000020, 0x90180583, 0x05020016, 0x59cc0207, 0x82000d00, 0x0000ff00, 0x4807c857, 0x82040580, 0x00000d00, 0x0502000f, 0x59240805, 0x82040d00, 0x00ffffff, 0x0500000b, 0x59240a00, 0x84040d48, - 0x48064a00, 0x602c0800, 0x05d1fa03, 0x64066407, - 0x64066203, 0x64066403, 0x05e5fd83, 0x0501f00f, - 0x600c0800, 0x05d1f9fc, 0x4a026202, 0x0000ffff, - 0x64066203, 0x65466403, 0x05e5fd7b, 0x0501f007, - 0x600c2800, 0x0501fe40, 0x0501f004, 0x6008b000, - 0x0501f83b, 0x05f1ffc6, 0x5c027800, 0x5c028800, - 0x5c028000, 0x5c024000, 0x5c024800, 0x5c00b000, - 0x1c01f000, 0x4933c857, 0x61f2880f, 0x42003000, - 0x00fffffc, 0x05d1fa0b, 0x05aa0ad0, 0x4936600a, - 0x05fdfd83, 0x417a7800, 0x05d1f9d5, 0x600c0800, - 0x05d1f9dd, 0x497a6c12, 0x59300429, 0x900005a1, - 0x05020003, 0x599c0208, 0x48026c12, 0x64066203, - 0x640a6403, 0x05e5f558, 0x492fc857, 0x4c580000, - 0x4c000000, 0x8058b1c0, 0x0500000a, 0x82580500, - 0xfffffff0, 0x05aa0ab9, 0x8058b0d0, 0x592c040c, - 0x82000500, 0xfffff0ff, 0x80580540, 0x48025c0c, - 0x5c000000, 0x5c00b000, 0x1c01f000, 0x492fc857, - 0x4c000000, 0x4c040000, 0x800000d8, 0x592c0c0c, - 0x82040d00, 0xffff0fff, 0x80040540, 0x48025c0c, - 0x5c000800, 0x5c000000, 0x1c01f000, 0x4933c857, - 0x4d2c0000, 0x59325809, 0x592c020b, 0x8400055e, - 0x48025a0b, 0x4c500000, 0x4c540000, 0x4c580000, - 0x05fdffda, 0x05d9fcc2, 0x64602800, 0x80142800, - 0x8058b040, 0x91cca407, 0x4014a800, 0x050dfd60, - 0x5c00b000, 0x5c00a800, 0x5c00a000, 0x5c025800, - 0x1c01f000, 0x59325809, 0x592c0208, 0x82000580, - 0x00000152, 0x1c01f000, 0x59325809, 0x592c020b, - 0x8400055c, 0x48025a0b, 0x1c01f000, 0x59300809, - 0x58040208, 0x82000500, 0x000000ff, 0xb00005b9, - 0x1c01f000, 0x5930002b, 0x80000540, 0x05ae0bb1, - 0x1c01f000, 0x59300008, 0x82000500, 0x04000800, - 0x82000580, 0x04000800, 0x05020003, 0x59300221, - 0x48025c13, 0x1c01f000, 0x592c040b, 0x82000500, - 0x0000f000, 0x82000580, 0x00003000, 0x05020003, - 0x4a026416, 0x00000100, 0x1c01f000, 0x4d2c0000, - 0x59325809, 0x59300203, 0x4933c857, 0x492fc857, - 0x493bc857, 0x4803c857, 0x90003491, 0x05aa1a5f, - 0x0c01f803, 0x5c025800, 0x1c01f000, 0x0010b390, - 0x0010b396, 0x0010b3ce, 0x0010b390, 0x0010b390, - 0x0010b390, 0x0010b390, 0x0010b390, 0x0010b391, - 0x0010b390, 0x0010b390, 0x0010b390, 0x0010b390, - 0x0010b390, 0x0010b4a6, 0x0010b390, 0x0010b390, - 0x05a9fa4a, 0xb13834a0, 0x05aa1a48, 0x493a6403, - 0x64066203, 0x05e5f4dc, 0x91380593, 0x05020010, - 0x492fc857, 0x05fdfd05, 0x05000003, 0x643a6203, - 0x0501f005, 0x592c0010, 0x800001c0, 0x05000005, - 0x640a6203, 0x59a8005c, 0x48026006, 0x1c01f000, - 0x64025a0a, 0x0001fb82, 0x0005f7dc, 0x913805a7, - 0x0500001e, 0x91380594, 0x05000018, 0x05fdfcf3, - 0x0500000c, 0xb13805a1, 0x05000004, 0xb13805a0, - 0x05fe07f3, 0x4937c857, 0x05e9fd07, 0x05f20081, - 0x59300203, 0x9000058e, 0x050000f0, 0x05a9fa23, - 0x91380595, 0x05000003, 0x91380596, 0x05aa0a1f, - 0x05e9fcfd, 0x05f20077, 0x59300203, 0x90000582, - 0x05aa0a1a, 0x0501f00d, 0x4937c857, 0x05e9f8a6, - 0x64465812, 0x0501f004, 0x4937c857, 0x05e9f8a2, - 0x64425812, 0x64c65a0a, 0x64125811, 0x0001fb82, - 0x05d5f8a4, 0x05f1f003, 0x59341400, 0x82081d00, - 0x000000ff, 0x59300c03, 0x480bc857, 0x4807c857, - 0xb0040593, 0x05000020, 0x90040582, 0x0500000f, - 0x90040581, 0x05000010, 0x90040583, 0x05000013, - 0x90040585, 0x05000014, 0x900405b3, 0x05000012, - 0x90040580, 0x05000013, 0x90040584, 0x05aa09f7, - 0x0501f8a6, 0x0501f010, 0x900c0583, 0x05000868, - 0x0501f00d, 0x900c058b, 0x0502000b, 0x601c0800, - 0x05d1f901, 0x0501f008, 0x900c0585, 0x0500087b, - 0x0501f005, 0x900c0589, 0x05000896, 0x0501f002, - 0x0501f89b, 0x654a6403, 0x59a810b6, 0x592c040f, - 0x8c000500, 0x05000002, 0x60201000, 0x592c040f, - 0x8c000516, 0x05000002, 0x90081418, 0x592c0010, - 0x497a5811, 0x497a5812, 0x80080c80, 0x05000007, - 0x05001004, 0x641e5a0a, 0x40001000, 0x0501f004, - 0x64565a0a, 0x0501f002, 0x64025a0a, 0x480a5810, - 0x4d2c0000, 0x05a9fd64, 0x0500003c, 0x5c001000, - 0x41cc0800, 0x5808040f, 0x8c000516, 0x05020002, - 0x91cc0c06, 0x58081810, 0x58082015, 0x58082816, - 0x58080004, 0x48025806, 0x48065803, 0x480a580a, - 0x480e5805, 0x48125807, 0x48165808, 0x64025801, - 0x4a025809, 0x0010150e, 0x900c1c03, 0x800c1904, - 0x50040000, 0x9c0001c0, 0x44000800, 0x80040800, - 0x800c1840, 0x05fe07fb, 0x5808040f, 0x8c000500, - 0x0500000b, 0x41cc0800, 0x8c000516, 0x05000002, - 0x91cc0c06, 0x64040800, 0x80040800, 0x46000800, - 0x00000900, 0x84000500, 0x4800140f, 0x42007000, - 0x000211a7, 0x58380000, 0x90000580, 0x0502000b, - 0x58380807, 0x58380005, 0x80040540, 0x05020007, - 0x412c1000, 0x0001f821, 0x59dc0806, 0x8c04053e, - 0x05fc07fe, 0x0001f066, 0x412c1000, 0x0001f821, - 0x850e1d5c, 0x05e1f18d, 0x5c025800, 0x64b25a0a, - 0x497a5810, 0x0001fb82, 0x0005f7dc, 0x91380595, - 0x05020008, 0x59a800d1, 0x8c000502, 0x05020007, - 0x41780800, 0x05d1f981, 0x60100800, 0x05d1f096, - 0x601c0800, 0x05d1f094, 0x05d5fc54, 0x60401000, - 0x05020008, 0x59340002, 0x82000500, 0x00ff0000, - 0x82000580, 0x00ff0000, 0x05fc07f2, 0x60201000, - 0x05d5f84b, 0x05fc07ef, 0x592c040f, 0x84000540, - 0x48025c0f, 0x05fdf7ef, 0x91380595, 0x0502000b, - 0x59a800d1, 0x8c000502, 0x0502000a, 0x05d1f9dc, - 0x4d3c0000, 0x417a7800, 0x05d1f871, 0x5c027800, - 0x60180800, 0x05d1f078, 0x60100800, 0x05d1f076, - 0x05d5fc36, 0x60401000, 0x05020008, 0x59340002, - 0x82000500, 0x00ff0000, 0x82000580, 0x00ff0000, - 0x05fc07ef, 0x60201000, 0x05d5f82d, 0x05fc07ec, - 0x592c040f, 0x84000540, 0x48025c0f, 0x05fdf7ef, - 0x60100800, 0x05d1f064, 0x91380595, 0x05020003, - 0x0509f9c4, 0x05d00c20, 0x1c01f000, 0x91380595, - 0x05020015, 0x4c580000, 0x91cc1408, 0x6008b000, - 0x91341c06, 0x05f5fbb2, 0x0502000e, 0x91cc140a, - 0x6008b000, 0x91341c08, 0x05f5fbad, 0x05020009, - 0x59342200, 0x59cc1007, 0x800811c0, 0x05000003, - 0x480a6801, 0x84102542, 0x8410251a, 0x48126a00, - 0x5c00b000, 0x1c01f000, 0x4803c856, 0xb13805a1, - 0x05000019, 0xb13805a0, 0x05000017, 0xb13805a2, - 0x05020003, 0x644a5812, 0x0501f004, 0xb13805a3, - 0x0502001b, 0x644e5812, 0x64c65a0a, 0x64125811, - 0x59cc0001, 0x48025813, 0x59cc0002, 0x48025814, - 0x59cc0003, 0x48025815, 0x59cc0004, 0x48025816, - 0x59cc0005, 0x48025817, 0x0001fb82, 0x05d1ffb1, - 0x0005f7dc, 0x592c0010, 0x800001c0, 0x05000005, - 0x59a8005c, 0x48026006, 0x640a6203, 0x1c01f000, - 0x64025a0a, 0x0001fb82, 0x0005ffdc, 0x1c01f000, - 0x42000000, 0x0010e46c, 0x050dfb0e, 0x05e9f844, - 0x59300203, 0x4933c857, 0x4803c857, 0x90000c91, - 0x05aa1906, 0x0c01f802, 0x05e9f02e, 0x0010b4e9, - 0x0010b4f2, 0x0010b4ea, 0x0010b4e8, 0x0010b4e8, - 0x0010b4e8, 0x0010b4e8, 0x0010b4e8, 0x0010b4e8, - 0x0010b4e8, 0x0010b4e8, 0x0010b4e8, 0x0010b4e8, - 0x0010b4e8, 0x0010b4ea, 0x0010b4e8, 0x0010b4e8, - 0x05a9f8f2, 0x1c01f000, 0x59300403, 0xb0000592, - 0x05f804d3, 0x05d1ff83, 0x59325809, 0x641a5a0a, - 0x0001fb82, 0x05edf6df, 0x59301804, 0x840c0520, - 0x48026004, 0x598c000b, 0x81300580, 0x0502000f, - 0x8c0c0520, 0x0502000f, 0x42001000, 0x0010e387, - 0x50081000, 0x58080002, 0x82000580, 0x00000100, - 0x0500000b, 0x5808000c, 0x81300580, 0x05aa08d7, - 0x4978100c, 0x0501f003, 0x8c0c0520, 0x05fe07e3, - 0x05e5fcae, 0x05fc07e1, 0x05a9f8d0, 0x05e9fb05, - 0x05fc07fc, 0x59300203, 0x90000c91, 0x05aa18cb, - 0x0c01f7c7, 0x4933c857, 0x4c500000, 0x4c540000, - 0x4c580000, 0x592c0c0b, 0x48065817, 0x59cc0809, - 0x4806580b, 0x59cc0808, 0x4806580f, 0x59a808d0, - 0x82040500, 0x000003ff, 0x800010c4, 0x8c040514, - 0x05000004, 0x59cc0002, 0x90000503, 0x80081480, - 0x480a621c, 0x412c0800, 0x05a9fc4b, 0x05a808b3, - 0x492c080d, 0x5804040c, 0x84000552, 0x84000540, - 0x48000c0c, 0x90081403, 0x80081104, 0x91cca406, - 0x912cac08, 0x60400800, 0x90080490, 0x05021003, - 0x40080800, 0x80000580, 0x4004b000, 0x4c000000, - 0x050dfbaa, 0x5c000000, 0x800001c0, 0x0500000a, - 0x412c1000, 0x4c000000, 0x05a9fc33, 0x05a8089b, - 0x492c1001, 0x912cac08, 0x5c000000, 0x40001000, - 0x05fdf7ee, 0x5c00b000, 0x5c00a800, 0x5c00a000, - 0x1c01f000, 0x4933c857, 0x4d2c0000, 0x4c380000, - 0x59325809, 0x5930021c, 0x48025a0c, 0x59301013, - 0x640a6203, 0x592c020e, 0x8c000500, 0x05000004, - 0x59300017, 0x592c1013, 0x80081480, 0x40080000, - 0x0501f962, 0x80001540, 0x05020007, 0x64025a0a, - 0x592c000f, 0x82000500, 0x00000c00, 0x05000009, - 0x0501f009, 0x8c08053e, 0x05000005, 0x641e5a0a, - 0x80081080, 0x80081000, 0x0501f002, 0x64565a0a, - 0x480a580b, 0x42000000, 0x001102f0, 0x50007000, - 0x5838000b, 0x80000540, 0x05020007, 0x4930700c, - 0x4930700b, 0x58380002, 0x90000580, 0x05020808, - 0x0501f004, 0x90001400, 0x45301000, 0x4930700b, - 0x5c007000, 0x5c025800, 0x1c01f000, 0x4933c857, - 0x592c000d, 0x40001000, 0x4800700a, 0x90080408, - 0x48007003, 0x592c0011, 0x592c1012, 0x592c1804, - 0x480c7006, 0x48007007, 0x48087008, 0x592c0017, - 0x592c120c, 0x80080c80, 0x05001002, 0x40001000, - 0x90081403, 0x80081104, 0x90080490, 0x05021003, - 0x80000580, 0x0501f002, 0x60401000, 0x4800700d, - 0x48087004, 0x800810c4, 0x48087005, 0x40381000, - 0x0001f021, 0x4d2c0000, 0x05a9fbd7, 0x05a8083f, - 0x42000800, 0x001102f0, 0x452c0800, 0x497a580b, - 0x497a580c, 0x497a580d, 0x4a025809, 0x0010b5a9, - 0x4a025802, 0x00000100, 0x64025801, 0x5c025800, - 0x1c01f000, 0x4833c857, 0x4d300000, 0x4d2c0000, - 0x4c5c0000, 0x4030b800, 0x585c000a, 0x80025d40, - 0x05020004, 0x585c000c, 0x4c000000, 0x0501f03b, - 0x585c0002, 0x82000580, 0x00000100, 0x0502001c, - 0x592c0801, 0x4c040000, 0x05a9fbd8, 0x5c000800, - 0x800409c0, 0x05000017, 0x4804b80a, 0x585c100d, - 0x800811c0, 0x05020004, 0x40065800, 0x05a9fbd8, - 0x0501f010, 0x90080490, 0x05021003, 0x80000580, - 0x0501f002, 0x60401000, 0x4800b80d, 0x4808b804, - 0x800810c4, 0x4808b805, 0x90040408, 0x4800b803, - 0x405c1000, 0x0001f821, 0x0501f022, 0x0501f825, - 0x585c000c, 0x80026540, 0x59300000, 0x80000d40, - 0x05020002, 0x4800b80b, 0x4800b80c, 0x497a6000, - 0x4c000000, 0x4978b80a, 0x59325809, 0x4a025a08, - 0x00000103, 0x59300402, 0x48025c0a, 0x592c100f, - 0x4c080000, 0x0001fb82, 0x0501f8cb, 0x05f9ffc1, - 0x5c001000, 0x8c080518, 0x05000003, 0x05fdf8dc, - 0x0501f002, 0x0005ffdc, 0x405c7000, 0x5c000000, - 0x80026540, 0x05000003, 0x59325809, 0x05fdff88, - 0x5c00b800, 0x5c025800, 0x5c026000, 0x1c01f000, - 0x483bc857, 0x5838000a, 0x40025800, 0x05a9fba0, - 0x5838000c, 0x80026540, 0x59300009, 0x80025d40, - 0x640a5a0a, 0x1c01f000, 0x4803c857, 0x4933c857, - 0x4d1c0000, 0x497a601e, 0x41323800, 0x40026000, - 0x4d3c0000, 0x60167800, 0x0501f838, 0x5c027800, - 0x411e6000, 0x4933c857, 0x59300416, 0x84000502, - 0x48026416, 0x5c023800, 0x1c01f000, 0x481bc857, - 0x4933c857, 0x4c5c0000, 0x4c600000, 0x4010b800, - 0x4014c000, 0x0509ff6a, 0x05b5fffd, 0x59240400, - 0x8c00050a, 0x05020006, 0x40602800, 0x405c3000, - 0x0509f986, 0x90000541, 0x0501f002, 0x80000580, - 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x4803c856, - 0x4d300000, 0x42026000, 0x00111b00, 0x59a8003b, - 0x81640580, 0x05000013, 0x59300c07, 0x90040581, - 0x05000009, 0x90040584, 0x05000004, 0x90040590, - 0x05f80b17, 0x0501f007, 0x59300203, 0x90000d87, - 0x05000004, 0x4807c857, 0x05fdf98f, 0x05020807, - 0x91326430, 0x41580000, 0x81300480, 0x05fc17ec, - 0x5c026000, 0x1c01f000, 0x4933c857, 0x59300403, - 0x4803c857, 0x05e5fece, 0x4df00000, 0x59301407, - 0x59300203, 0x4803c857, 0x90080d82, 0x05000016, - 0x90080d81, 0x0500000b, 0x90080d84, 0x05000005, - 0x4933c856, 0x5c03e000, 0x05e40eb2, 0x0501f03e, - 0x90000d88, 0x0500002e, 0x90000d87, 0x0500002c, - 0x90000d81, 0x05000013, 0x90000d82, 0x05000028, - 0x90000d85, 0x05000026, 0x90000d8e, 0x05000024, - 0x05a5ff7a, 0x90000d89, 0x0500000a, 0x90000d8b, - 0x05000008, 0x90000d8a, 0x0500001d, 0x90000d8c, - 0x0500001b, 0x90000d8e, 0x05000019, 0x05a5ff6f, - 0x598c000b, 0x81300580, 0x05020003, 0x05e9f9a1, - 0x05020013, 0x59300004, 0x4803c857, 0x8c000520, - 0x05000004, 0x84000520, 0x48026004, 0x0501f00c, - 0x05e5fb3e, 0x05a60f61, 0x5c03e000, 0x05e40e89, - 0x59300407, 0x90000d82, 0x05000013, 0x05d1fdf1, - 0x05f9ff4a, 0x05f00c42, 0x0501f00f, 0x5c03e000, - 0x05e40e80, 0x59300407, 0x90000d82, 0x0500000a, - 0x5930081d, 0x58040200, 0x8c000500, 0x050002a9, - 0x05d1fde4, 0x05f9ff3d, 0x05f00c35, 0x8d3c0500, - 0x05000003, 0x0509ffc5, 0x05edf53e, 0x64066229, - 0x4a026403, 0x00000085, 0x64266203, 0x640a6407, - 0x42000800, 0x80000040, 0x0005f6ab, 0x60007040, - 0x4203e000, 0xb0800000, 0x6033f800, 0x40000000, - 0x40000000, 0x40000000, 0x0501b004, 0x80387040, - 0x05a40f36, 0x05fdf7f9, 0x1c01f000, 0x83300480, - 0x00111a40, 0x05001006, 0x41540000, 0x81300480, - 0x05021003, 0x80000580, 0x1c01f000, 0x81780080, - 0x1c01f000, 0x59300027, 0x80000540, 0x05000006, - 0x4d2c0000, 0x40025800, 0x05a9fadc, 0x497a6027, - 0x5c025800, 0x1c01f000, 0x592c720e, 0x8c380500, - 0x05020008, 0x59307008, 0x8c380516, 0x05000005, - 0x59307009, 0x58387013, 0x59300014, 0x80380480, - 0x1c01f000, 0x59a808b6, 0x59cc2808, 0x4c5c0000, - 0x4178b800, 0x8c14051e, 0x05000002, 0x805cb800, - 0x82140500, 0x00000c00, 0x05000004, 0x905c0410, - 0x80040480, 0x05001018, 0x80001580, 0x8c140512, - 0x05000005, 0x905c0414, 0x80040480, 0x05001012, - 0x59cc100a, 0x80000580, 0x8c140510, 0x05000005, - 0x905c0418, 0x80040480, 0x0500100b, 0x59cc000b, - 0x80080400, 0x05001008, 0x05000005, 0x905c0418, - 0x80040480, 0x05001004, 0x80000580, 0x5c00b800, - 0x1c01f000, 0x42000000, 0x0010e449, 0x050df8f1, - 0x90000541, 0x05fdf7fa, 0x4933c857, 0x4937c857, - 0x4923c857, 0x4927c857, 0x492fc857, 0x48efc857, - 0x4d1c0000, 0x4d300000, 0x41323800, 0x05edfd0c, - 0x0500001f, 0x48ee602d, 0x4926601d, 0x4936600a, - 0x05fdf993, 0x591c0407, 0x90000583, 0x05000008, - 0x591c0202, 0x4803c857, 0x4802641b, 0x591c0402, - 0x4802621b, 0x4803c857, 0x0501f009, 0x591c0017, - 0x48026017, 0x591c0202, 0x4803c857, 0x4802621b, - 0x591c0402, 0x4802641b, 0x4803c857, 0x491e602a, - 0x64066407, 0x492e6009, 0x4d380000, 0x615e7000, - 0x0009f800, 0x5c027000, 0x90000541, 0x5c026000, - 0x5c023800, 0x1c01f000, 0x4933c857, 0x493bc857, - 0x4937c857, 0x4d2c0000, 0x4c500000, 0x4c540000, - 0x4c580000, 0x59325809, 0x05f9fda7, 0x05000017, - 0x91cca406, 0x912cac0a, 0x91380596, 0x05020007, - 0x59a800b6, 0x90000588, 0x0502000e, 0x492fc857, - 0x6008b000, 0x0501f008, 0x91380595, 0x05020009, - 0x492fc857, 0x59a800b6, 0x90000598, 0x05020005, - 0x6018b000, 0x050df972, 0x05edfeac, 0x0501f003, - 0x05f1fb8b, 0x0005ffdc, 0x5c00b000, 0x5c00a800, - 0x5c00a000, 0x5c025800, 0x1c01f000, 0x4933c857, - 0x05e5fdd3, 0x4df00000, 0x59300203, 0x90000c91, - 0x05a61e96, 0x0c01f001, 0x0010b758, 0x0010b757, - 0x0010b75d, 0x0010b775, 0x0010b75c, 0x0010b757, - 0x0010b757, 0x0010b757, 0x0010b757, 0x0010b757, - 0x0010b757, 0x0010b757, 0x0010b757, 0x0010b757, - 0x0010b757, 0x0010b757, 0x0010b75d, 0x05a5fe83, - 0x5c03e000, 0x05e40dab, 0x80000580, 0x1c01f000, - 0x05adf8ed, 0x5c03e000, 0x05e40da6, 0x8d3c0502, - 0x05020011, 0x4d2c0000, 0x59325809, 0x64165a0a, - 0x0001fb82, 0x5c025800, 0x497a6009, 0x8d3c0500, - 0x0502000b, 0x642a6229, 0x4a026403, 0x00000085, - 0x64266203, 0x640a6407, 0x42000800, 0x80004040, - 0x0005feab, 0x81780080, 0x1c01f000, 0x05edfc5d, - 0x05fdf7fd, 0x05f9f9bb, 0x05020003, 0x05e9f869, - 0x05020005, 0x05e5f95d, 0x05fc07e3, 0x05e5fcb1, - 0x05a60e5e, 0x59300203, 0x90000d83, 0x05a40e5b, - 0x90000c91, 0x05a61e59, 0x0c01f7c4, 0x4803c856, - 0x05edfc7f, 0x0500002e, 0x59300402, 0x4802621b, - 0x59a804cc, 0x84000540, 0x84000502, 0x480354cc, - 0x812e59c0, 0x05000011, 0x82600580, 0x00003000, - 0x05020003, 0x4a026416, 0x00000100, 0x592c020b, - 0x480352cd, 0x480352cc, 0x592c000f, 0x480350ce, - 0x592c020c, 0x800000c2, 0x800008c4, 0x80040400, - 0x48026006, 0x0501f00a, 0x640b50ce, 0x59a8005c, - 0x800000c4, 0x48026006, 0x417a4000, 0x61fa880f, - 0x42003000, 0x00fffffe, 0x05cdfd6e, 0x4926601d, - 0x599c0208, 0x48026c12, 0x59340002, 0x4802600b, - 0x497a641b, 0x4936600a, 0x492e6009, 0x64066407, - 0x61627000, 0x0009f800, 0x90000541, 0x1c01f000, - 0x4d2c0000, 0x4c5c0000, 0x4c600000, 0x4c640000, - 0x4803c856, 0x59325809, 0x91380595, 0x050200b8, - 0x812e59c0, 0x05000003, 0x05f9fd0b, 0x05a40e1b, - 0x59a800b6, 0x82000580, 0x00000228, 0x050200ab, - 0x59cc0c07, 0x82040580, 0x00000101, 0x050200b7, - 0x59cc0a07, 0x59300402, 0x80040580, 0x050200b5, - 0x59cc0a0a, 0x82040580, 0x00000228, 0x050200b3, - 0x91ccbc0b, 0x585c0c00, 0x82040580, 0x00000101, - 0x050200b0, 0x585c0a00, 0x90040584, 0x050200af, - 0x91ccc40d, 0x58600c00, 0x82040580, 0x00000102, - 0x050200ac, 0x58600a00, 0x90040584, 0x050200ab, - 0x91cccc0f, 0x58640c00, 0x82040580, 0x00000103, - 0x05000004, 0x82040580, 0x00000203, 0x050200a5, - 0x58640a00, 0x82040580, 0x00000200, 0x050200a3, - 0x585c0801, 0x800409c0, 0x050000a2, 0x90040484, - 0x050210a0, 0x480750cf, 0x58600201, 0x800001c0, - 0x0500009f, 0x82001480, 0x00000fff, 0x0502109c, - 0x480354cd, 0x480352cc, 0x4c500000, 0x4c540000, - 0x4c580000, 0x6000b001, 0x4200a800, 0x00110672, - 0x91cca410, 0x5450a800, 0x8050a000, 0x8054a800, - 0x8058b040, 0x05fe07fc, 0x5c00b000, 0x5c00a800, - 0x5c00a000, 0x40001000, 0x4c040000, 0x05b5ff22, - 0x5c000800, 0x05020005, 0x59a804cc, 0x8400054c, - 0x480354cc, 0x4803c857, 0x90040582, 0x05000055, - 0x90040583, 0x05000002, 0x0501f004, 0x59a800ce, - 0x90000582, 0x05000052, 0x812e59c0, 0x0500002b, - 0x592c1001, 0x800811c0, 0x05a40dbc, 0x4930100b, - 0x492c100a, 0x64001001, 0x4a001009, 0x0010b831, - 0x4a001003, 0x00110672, 0x4a001005, 0x00000200, - 0x592c0015, 0x48001007, 0x592c0016, 0x48001008, - 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x5c025800, - 0x0001f021, 0x4d2c0000, 0x4c5c0000, 0x4c600000, - 0x4c640000, 0x5832600b, 0x813261c0, 0x05a40da3, - 0x5832580a, 0x812e59c0, 0x05a40da0, 0x49786001, - 0x58300002, 0x82000580, 0x00000100, 0x0502005a, - 0x59a80ccd, 0x48065811, 0x59a808cf, 0x48065810, - 0x64ca5a0a, 0x0001fb82, 0x0005ffdc, 0x58600a01, - 0x59a802cd, 0x80040580, 0x0502004c, 0x59a81ccc, - 0x820c1d00, 0xffffffbc, 0x840c1d46, 0x480f54cc, - 0x0501f01e, 0x59cc3407, 0x82183500, 0x000000ff, - 0x90180585, 0x0502000c, 0x59340412, 0x800001c0, - 0x05000009, 0x80000040, 0x48026c12, 0x4d2c0000, - 0x59325809, 0x0005ffdc, 0x05fdff25, 0x5c025800, - 0x0501f00e, 0x05f1fed4, 0x59a80249, 0x84000518, - 0x48035249, 0x48035449, 0x0005ffdc, 0x05fdf7e4, - 0x59a800ce, 0x90000581, 0x05fc07b0, 0x5930041b, - 0x84000548, 0x4802641b, 0x5c00c800, 0x5c00c000, - 0x5c00b800, 0x5c025800, 0x1c01f000, 0x4803c856, - 0x812e59c0, 0x05fc07dc, 0x05f9fc53, 0x05a40d63, - 0x64c65a0a, 0x64625810, 0x59cc0007, 0x48025811, - 0x0001fb82, 0x05fdf7e4, 0x4807c857, 0x05fdf7ef, - 0x4807c857, 0x05fdf7ed, 0x4807c857, 0x05fdf7eb, - 0x4807c857, 0x05fdf7e9, 0x4807c857, 0x05fdf7e7, - 0x4807c857, 0x05fdf7e5, 0x4807c857, 0x05fdf7e3, - 0x4807c857, 0x05fdf7e1, 0x4807c857, 0x05fdf7df, - 0x4807c857, 0x05a5fd49, 0x05fdf7dc, 0x4803c857, - 0x05a5fd46, 0x05fdf7d9, 0x4807c857, 0x0501f80f, - 0x05fdf7d6, 0x4803c857, 0x4a006002, 0x00000100, - 0x640a5a0a, 0x0001fb82, 0x05fdf7a8, 0x59300403, - 0xb0000d98, 0x05000004, 0xb0000d9e, 0x05000002, - 0xb0000d9f, 0x1c01f000, 0x59a804cc, 0x82000500, - 0xfffffffc, 0x480354cc, 0x05d5f804, 0x05020006, - 0x05d5f814, 0x05000004, 0x64075042, 0x6006d800, - 0x05d1ff81, 0x1c01f000, 0x4933c857, 0x4d400000, - 0x60028000, 0x05b5fd62, 0x05f1fe96, 0x0500001f, - 0x59cc0408, 0x8c00051e, 0x05020009, 0x42000800, - 0x0010e512, 0x58040406, 0x8c000500, 0x05020004, - 0x59240200, 0x84000556, 0x48024a00, 0x60aa8000, - 0x59240400, 0x8c00050a, 0x05020004, 0x61fe89ff, - 0x60083000, 0x0505fedd, 0x4d3c0000, 0x600a7800, - 0x5924100b, 0x82081500, 0x00001fff, 0x41780800, - 0x05b5fe72, 0x5c027800, 0x42000000, 0x0010e454, - 0x0509ff08, 0x600a8000, 0x60100800, 0x05cdfc16, - 0x60040800, 0x05cdfcfd, 0x59cc0800, 0x82040d00, - 0x00ffffff, 0x5924100c, 0x48041001, 0x59cc0009, - 0x48024a0a, 0x48001200, 0x59cc000a, 0x48024c0a, - 0x48001400, 0x59240200, 0xb0000566, 0x48024a00, - 0x48064805, 0x49238830, 0x84040570, 0x48038832, - 0x812000f0, 0x80040540, 0x48026813, 0x60040000, - 0x05d1fd60, 0x5c028000, 0x59301009, 0x800811c0, - 0x05020009, 0x0501f823, 0x5924100b, 0x82081500, - 0x00001fff, 0x05b5feb9, 0x0501f81e, 0x0502001c, - 0x0501f018, 0x4d2c0000, 0x400a5800, 0x592c1208, - 0x82080500, 0x000000ff, 0x900005b0, 0x05020009, - 0x592c040b, 0x82000500, 0x000000ff, 0x05020003, - 0x05a9f88a, 0x0501f00a, 0x05d5ff81, 0x0501f008, - 0x592c020b, 0x80000110, 0x800001c0, 0x05020003, - 0x05a9f882, 0x0501f002, 0x05d9f93f, 0x5c025800, - 0x59300429, 0x900005a1, 0x000607dc, 0x1c01f000, - 0x4933c857, 0x4d340000, 0x4d240000, 0x4d200000, - 0x916c0583, 0x05020015, 0x599c0018, 0x8c000516, - 0x05000003, 0x05c5ff7f, 0x0501f010, 0x60100800, - 0x05cdfbc9, 0x59300429, 0x900005a1, 0x05000005, + 0x48064a00, 0x602c0800, 0x05cdfe76, 0x64066407, + 0x64066203, 0x64066403, 0x05e5fc9c, 0x0501f015, + 0x600c0800, 0x05cdfe6f, 0x4a026202, 0x0000ffff, + 0x64066203, 0x65466403, 0x05e5fc94, 0x0501f00d, + 0x64126006, 0x645a6403, 0x65466418, 0x4a026202, + 0x0000ffff, 0x0501f007, 0x600c2800, 0x0501fe4b, + 0x0501f004, 0x6008b000, 0x0501f83b, 0x05f1ff5a, + 0x5c027800, 0x5c028800, 0x5c028000, 0x5c024000, + 0x5c024800, 0x5c00b000, 0x1c01f000, 0x4933c857, + 0x61f2880f, 0x42003000, 0x00fffffc, 0x05cdfe80, + 0x05a60d65, 0x4936600a, 0x05fdfd75, 0x417a7800, + 0x05cdfe42, 0x600c0800, 0x05cdfe4a, 0x497a6c12, + 0x59300429, 0x900005a1, 0x05020003, 0x599c0208, + 0x48026c12, 0x64066203, 0x640a6403, 0x05e5f46b, + 0x492fc857, 0x4c580000, 0x4c000000, 0x8058b1c0, + 0x0500000a, 0x82580500, 0xfffffff0, 0x05a60d4e, + 0x8058b0d0, 0x592c040c, 0x82000500, 0xfffff0ff, + 0x80580540, 0x48025c0c, 0x5c000000, 0x5c00b000, + 0x1c01f000, 0x492fc857, 0x4c000000, 0x4c040000, + 0x800000d8, 0x592c0c0c, 0x82040d00, 0xffff0fff, + 0x80040540, 0x48025c0c, 0x5c000800, 0x5c000000, + 0x1c01f000, 0x4933c857, 0x4d2c0000, 0x59325809, + 0x592c020b, 0x8400055e, 0x48025a0b, 0x4c500000, + 0x4c540000, 0x4c580000, 0x05fdffda, 0x05d9fa2f, + 0x64602800, 0x80142800, 0x8058b040, 0x91cca407, + 0x4014a800, 0x050dff35, 0x5c00b000, 0x5c00a800, + 0x5c00a000, 0x5c025800, 0x1c01f000, 0x59325809, + 0x592c0208, 0x82000580, 0x00000152, 0x1c01f000, + 0x59325809, 0x592c020b, 0x8400055c, 0x48025a0b, + 0x1c01f000, 0x59300809, 0x58040208, 0x82000500, + 0x000000ff, 0xb00005b9, 0x1c01f000, 0x5930002b, + 0x80000540, 0x05aa0ea9, 0x1c01f000, 0x59300008, + 0x82000500, 0x04000800, 0x82000580, 0x04000800, + 0x05020003, 0x59300221, 0x48025c13, 0x1c01f000, + 0x592c040b, 0x82000500, 0x0000f000, 0x82000580, + 0x00003000, 0x05020003, 0x4a026416, 0x00000100, + 0x1c01f000, 0x4d2c0000, 0x59325809, 0x59300203, + 0x4933c857, 0x492fc857, 0x493bc857, 0x4803c857, + 0x90003491, 0x05a61cf4, 0x0c01f803, 0x5c025800, + 0x1c01f000, 0x0010b936, 0x0010b93c, 0x0010b974, + 0x0010b936, 0x0010b936, 0x0010b936, 0x0010b936, + 0x0010b936, 0x0010b937, 0x0010b936, 0x0010b936, + 0x0010b936, 0x0010b936, 0x0010b936, 0x0010ba4d, + 0x0010b936, 0x0010b936, 0x05a5fcdf, 0xb13834a0, + 0x05a61cdd, 0x493a6403, 0x64066203, 0x05e5f3ef, + 0x91380593, 0x05020010, 0x492fc857, 0x05fdfcf7, + 0x05000003, 0x643a6203, 0x0501f005, 0x592c0010, + 0x800001c0, 0x05000005, 0x640a6203, 0x59a8005f, + 0x48026006, 0x1c01f000, 0x64025a0a, 0x0001fba8, + 0x0009f010, 0x913805a7, 0x0500001e, 0x91380594, + 0x05000018, 0x05fdfce5, 0x0500000c, 0xb13805a1, + 0x05000004, 0xb13805a0, 0x05fe07f3, 0x4937c857, + 0x05e9fc1f, 0x05f2000d, 0x59300203, 0x9000058e, + 0x050000f1, 0x05a5fcb8, 0x91380595, 0x05000003, + 0x91380596, 0x05a60cb4, 0x05e9fc15, 0x05f20003, + 0x59300203, 0x90000582, 0x05a60caf, 0x0501f00d, + 0x4937c857, 0x05e5ffbe, 0x64465812, 0x0501f004, + 0x4937c857, 0x05e5ffba, 0x64425812, 0x64c65a0a, + 0x64125811, 0x0001fba8, 0x05d1fdd3, 0x05edf772, + 0x59341400, 0x82081d00, 0x000000ff, 0x59300c03, + 0x480bc857, 0x4807c857, 0xb0040593, 0x05000020, + 0x90040582, 0x0500000f, 0x90040581, 0x05000010, + 0x90040583, 0x05000013, 0x90040585, 0x05000014, + 0x900405b3, 0x05000012, 0x90040580, 0x05000013, + 0x90040584, 0x05a60c8c, 0x0501f8a7, 0x0501f010, + 0x900c0583, 0x05000869, 0x0501f00d, 0x900c058b, + 0x0502000b, 0x601c0800, 0x05cdfd6e, 0x0501f008, + 0x900c0585, 0x0500087c, 0x0501f005, 0x900c0589, + 0x05000897, 0x0501f002, 0x0501f89c, 0x654a6403, + 0x59a810bb, 0x592c040f, 0x8c000500, 0x05000002, + 0x60201000, 0x592c040f, 0x8c000516, 0x05000002, + 0x90081418, 0x592c0010, 0x497a5811, 0x497a5812, + 0x80080c80, 0x05000008, 0x05001005, 0x641e5a0a, + 0x48065811, 0x40001000, 0x0501f004, 0x64565a0a, + 0x0501f002, 0x64025a0a, 0x480a5810, 0x4d2c0000, + 0x05a9f805, 0x0500003c, 0x5c001000, 0x41cc0800, + 0x5808040f, 0x8c000516, 0x05020002, 0x91cc0c06, + 0x58081810, 0x58082015, 0x58082816, 0x58080004, + 0x48025806, 0x48065803, 0x480a580a, 0x480e5805, + 0x48125807, 0x48165808, 0x64025801, 0x4a025809, + 0x00101580, 0x900c1c03, 0x800c1904, 0x50040000, + 0x9c0001c0, 0x44000800, 0x80040800, 0x800c1840, + 0x05fe07fb, 0x5808040f, 0x8c000500, 0x0500000b, + 0x41cc0800, 0x8c000516, 0x05000002, 0x91cc0c06, + 0x64040800, 0x80040800, 0x46000800, 0x00000900, + 0x84000500, 0x4800140f, 0x42007000, 0x000211e8, + 0x58380000, 0x90000580, 0x0502000b, 0x58380807, + 0x58380005, 0x80040540, 0x05020007, 0x412c1000, + 0x0001f829, 0x59dc0806, 0x8c04053e, 0x05fc07fe, + 0x0001f06e, 0x412c1000, 0x0001f829, 0x850e1d5c, + 0x05e1f000, 0x5c025800, 0x64b25a0a, 0x497a5810, + 0x0001fba8, 0x0009f010, 0x91380595, 0x05020008, + 0x59a800d6, 0x8c000502, 0x05020007, 0x41780800, + 0x05cdfe40, 0x60100800, 0x05cdf502, 0x601c0800, + 0x05cdf500, 0x05d5f997, 0x60401000, 0x05020008, + 0x59340002, 0x82000500, 0x00ff0000, 0x82000580, + 0x00ff0000, 0x05fc07f2, 0x60201000, 0x05d1fd79, + 0x05fc07ef, 0x592c040f, 0x84000540, 0x48025c0f, + 0x05fdf7ef, 0x91380595, 0x0502000b, 0x59a800d6, + 0x8c000502, 0x0502000a, 0x05cdfe9b, 0x4d3c0000, + 0x417a7800, 0x05cdfcdd, 0x5c027800, 0x60180800, + 0x05cdf4e4, 0x60100800, 0x05cdf4e2, 0x05d5f979, + 0x60401000, 0x05020008, 0x59340002, 0x82000500, + 0x00ff0000, 0x82000580, 0x00ff0000, 0x05fc07ef, + 0x60201000, 0x05d1fd5b, 0x05fc07ec, 0x592c040f, + 0x84000540, 0x48025c0f, 0x05fdf7ef, 0x60100800, + 0x05cdf4d0, 0x91380595, 0x05020003, 0x0509fb34, + 0x05d008eb, 0x1c01f000, 0x91380595, 0x05020015, + 0x4c580000, 0x91cc1408, 0x6008b000, 0x91341c06, + 0x05f5fb50, 0x0502000e, 0x91cc140a, 0x6008b000, + 0x91341c08, 0x05f5fb4b, 0x05020009, 0x59342200, + 0x59cc1007, 0x800811c0, 0x05000003, 0x480a6801, + 0x84102542, 0x8410251a, 0x48126a00, 0x5c00b000, + 0x1c01f000, 0x4803c856, 0xb13805a1, 0x05000019, + 0xb13805a0, 0x05000017, 0xb13805a2, 0x05020003, + 0x644a5812, 0x0501f004, 0xb13805a3, 0x0502001b, + 0x644e5812, 0x64c65a0a, 0x64125811, 0x59cc0001, + 0x48025813, 0x59cc0002, 0x48025814, 0x59cc0003, + 0x48025815, 0x59cc0004, 0x48025816, 0x59cc0005, + 0x48025817, 0x0001fba8, 0x05d1fcdf, 0x0009f010, + 0x592c0010, 0x800001c0, 0x05000005, 0x59a8005f, + 0x48026006, 0x640a6203, 0x1c01f000, 0x64025a0a, + 0x0001fba8, 0x0009f810, 0x1c01f000, 0x42000000, + 0x00112410, 0x050dfce2, 0x05e5ff5b, 0x59300203, + 0x4933c857, 0x4803c857, 0x90000c91, 0x05a61b9a, + 0x0c01f802, 0x05e5f745, 0x0010ba90, 0x0010ba99, + 0x0010ba91, 0x0010ba8f, 0x0010ba8f, 0x0010ba8f, + 0x0010ba8f, 0x0010ba8f, 0x0010ba8f, 0x0010ba8f, + 0x0010ba8f, 0x0010ba8f, 0x0010ba8f, 0x0010ba8f, + 0x0010ba91, 0x0010ba8f, 0x0010ba8f, 0x05a5fb86, + 0x1c01f000, 0x59300403, 0xb0000592, 0x05f804a6, + 0x05d1fcb1, 0x59325809, 0x641a5a0a, 0x0001fba8, + 0x05edf64d, 0x59301804, 0x840c0520, 0x48026004, + 0x598c000b, 0x81300580, 0x0502000f, 0x8c0c0520, + 0x0502000f, 0x42001000, 0x00112322, 0x50081000, + 0x58080002, 0x82000580, 0x00000100, 0x0500000b, + 0x5808000c, 0x81300580, 0x05a60b6b, 0x4978100c, + 0x0501f003, 0x8c0c0520, 0x05fe07e3, 0x05e5fbc0, + 0x05fc07e1, 0x05a5fb64, 0x05e9fa1c, 0x05fc07fc, + 0x59300203, 0x90000c91, 0x05a61b5f, 0x0c01f7c7, + 0x4933c857, 0x4c500000, 0x4c540000, 0x4c580000, + 0x592c0c0b, 0x48065817, 0x59cc0809, 0x4806580b, + 0x59cc0808, 0x4806580f, 0x59a808d5, 0x82040500, + 0x000003ff, 0x800010c4, 0x8c040514, 0x05000004, + 0x59cc0002, 0x90000503, 0x80081480, 0x480a621c, + 0x412c0800, 0x05a5feec, 0x05a40b47, 0x492c080d, + 0x5804040c, 0x84000552, 0x84000540, 0x48000c0c, + 0x90081403, 0x80081104, 0x91cca406, 0x912cac08, + 0x60400800, 0x90080490, 0x05021003, 0x40080800, + 0x80000580, 0x4004b000, 0x4c000000, 0x050dfd7e, + 0x5c000000, 0x800001c0, 0x0500000a, 0x412c1000, + 0x4c000000, 0x05a5fed4, 0x05a40b2f, 0x492c1001, + 0x912cac08, 0x5c000000, 0x40001000, 0x05fdf7ee, + 0x5c00b000, 0x5c00a800, 0x5c00a000, 0x1c01f000, + 0x4933c857, 0x4d2c0000, 0x4c380000, 0x59325809, + 0x5930021c, 0x48025a0c, 0x59301013, 0x640a6203, + 0x592c020e, 0x8c000500, 0x05000004, 0x59300017, + 0x592c1013, 0x80081480, 0x40080000, 0x0501f961, + 0x80001540, 0x05020007, 0x64025a0a, 0x592c000f, + 0x82000500, 0x00000c00, 0x05000009, 0x0501f009, + 0x8c08053e, 0x05000005, 0x641e5a0a, 0x80081080, + 0x80081000, 0x0501f002, 0x64565a0a, 0x480a580b, + 0x42000000, 0x00114294, 0x50007000, 0x5838000b, + 0x80000540, 0x05020007, 0x4930700c, 0x4930700b, + 0x58380002, 0x90000580, 0x05020808, 0x0501f004, + 0x90001400, 0x45301000, 0x4930700b, 0x5c007000, + 0x5c025800, 0x1c01f000, 0x4933c857, 0x592c000d, + 0x40001000, 0x4800700a, 0x90080408, 0x48007003, + 0x592c0011, 0x592c1012, 0x592c1804, 0x480c7006, + 0x48007007, 0x48087008, 0x592c0017, 0x592c120c, + 0x80080c80, 0x05001002, 0x40001000, 0x90081403, + 0x80081104, 0x90080490, 0x05021003, 0x80000580, + 0x0501f002, 0x60401000, 0x4800700d, 0x48087004, + 0x800810c4, 0x48087005, 0x40381000, 0x0001f029, + 0x4d2c0000, 0x05a5fe67, 0x05a40ad3, 0x42000800, + 0x00114294, 0x452c0800, 0x497a580b, 0x497a580c, + 0x497a580d, 0x4a025809, 0x0010bb50, 0x4a025802, + 0x00000100, 0x64025801, 0x5c025800, 0x1c01f000, + 0x4833c857, 0x4d300000, 0x4d2c0000, 0x4c5c0000, + 0x4030b800, 0x585c000a, 0x80025d40, 0x05020004, + 0x585c000c, 0x4c000000, 0x0501f03b, 0x585c0002, + 0x82000580, 0x00000100, 0x0502001c, 0x592c0801, + 0x4c040000, 0x05a5fe68, 0x5c000800, 0x800409c0, + 0x05000017, 0x4804b80a, 0x585c100d, 0x800811c0, + 0x05020004, 0x40065800, 0x05a5fe68, 0x0501f010, + 0x90080490, 0x05021003, 0x80000580, 0x0501f002, + 0x60401000, 0x4800b80d, 0x4808b804, 0x800810c4, + 0x4808b805, 0x90040408, 0x4800b803, 0x405c1000, + 0x0001f829, 0x0501f022, 0x0501f825, 0x585c000c, + 0x80026540, 0x59300000, 0x80000d40, 0x05020002, + 0x4800b80b, 0x4800b80c, 0x497a6000, 0x4c000000, + 0x4978b80a, 0x59325809, 0x4a025a08, 0x00000103, + 0x59300402, 0x48025c0a, 0x592c100f, 0x4c080000, + 0x0001fba8, 0x0501f8ca, 0x05f9ffb3, 0x5c001000, + 0x8c080518, 0x05000003, 0x05fdf8ce, 0x0501f002, + 0x0009f810, 0x405c7000, 0x5c000000, 0x80026540, + 0x05000003, 0x59325809, 0x05fdff88, 0x5c00b800, + 0x5c025800, 0x5c026000, 0x1c01f000, 0x483bc857, + 0x5838000a, 0x40025800, 0x05a5fe30, 0x5838000c, + 0x80026540, 0x59300009, 0x80025d40, 0x640a5a0a, + 0x1c01f000, 0x4803c857, 0x4933c857, 0x4d1c0000, + 0x497a601e, 0x41323800, 0x40026000, 0x4d3c0000, + 0x60167800, 0x0501f837, 0x5c027800, 0x411e6000, + 0x4933c857, 0x59300416, 0x84000502, 0x48026416, + 0x5c023800, 0x1c01f000, 0x481bc857, 0x4933c857, + 0x4c5c0000, 0x4c600000, 0x4010b800, 0x4014c000, + 0x050df920, 0x05b5faf2, 0x59240400, 0x8c00050a, + 0x05020006, 0x40602800, 0x405c3000, 0x0509fb26, + 0x90000541, 0x0501f002, 0x80000580, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x4803c856, 0x4d300000, + 0x42026000, 0x00115aa4, 0x0501fda4, 0x05021013, + 0x59300c07, 0x90040581, 0x05000009, 0x90040584, + 0x05000004, 0x90040590, 0x05f80aeb, 0x0501f007, + 0x59300203, 0x90000d87, 0x05000004, 0x4807c857, + 0x05fdf981, 0x05020807, 0x91326430, 0x41580000, + 0x81300480, 0x05fc17ef, 0x5c026000, 0x1c01f000, + 0x4933c857, 0x59300403, 0x4803c857, 0x05e5fde6, + 0x4df00000, 0x59301407, 0x59300203, 0x4803c857, + 0x90080d82, 0x05000016, 0x90080d81, 0x0500000b, + 0x90080d84, 0x05000005, 0x4933c856, 0x5c03e000, + 0x05e40dca, 0x0501f03e, 0x90000d88, 0x0500002e, + 0x90000d87, 0x0500002c, 0x90000d81, 0x05000013, + 0x90000d82, 0x05000028, 0x90000d85, 0x05000026, + 0x90000d8e, 0x05000024, 0x05a5fa0f, 0x90000d89, + 0x0500000a, 0x90000d8b, 0x05000008, 0x90000d8a, + 0x0500001d, 0x90000d8c, 0x0500001b, 0x90000d8e, + 0x05000019, 0x05a5fa04, 0x598c000b, 0x81300580, + 0x05020003, 0x05e9f8b9, 0x05020013, 0x59300004, + 0x4803c857, 0x8c000520, 0x05000004, 0x84000520, + 0x48026004, 0x0501f00c, 0x05e5fa51, 0x05a609f6, + 0x5c03e000, 0x05e40da1, 0x59300407, 0x90000d82, + 0x05000013, 0x05d1fb20, 0x05f9ff3d, 0x05f00bd6, + 0x0501f00f, 0x5c03e000, 0x05e40d98, 0x59300407, + 0x90000d82, 0x0500000a, 0x5930081d, 0x58040200, + 0x8c000500, 0x050002b4, 0x05d1fb13, 0x05f9ff30, + 0x05f00bc9, 0x8d3c0500, 0x05000003, 0x050df986, + 0x05edf4ad, 0x64066229, 0x4a026403, 0x00000085, + 0x64266203, 0x640a6407, 0x42000800, 0x80000040, + 0x0005f6e2, 0x60007040, 0x4203e000, 0xb0800000, + 0x6033f800, 0x40000000, 0x40000000, 0x40000000, + 0x0501b004, 0x80387040, 0x05a409cb, 0x05fdf7f9, + 0x1c01f000, 0x83300480, 0x001159e4, 0x05001006, + 0x41540000, 0x81300480, 0x05021003, 0x80000580, + 0x1c01f000, 0x81780080, 0x1c01f000, 0x59300027, + 0x80000540, 0x05000006, 0x4d2c0000, 0x40025800, + 0x05a5fd6d, 0x497a6027, 0x5c025800, 0x1c01f000, + 0x592c720e, 0x8c380500, 0x05020009, 0x59307008, + 0x8c380516, 0x05000006, 0x59307009, 0x58387013, + 0x59300014, 0x80380480, 0x05001002, 0x1c01f000, + 0x59300416, 0x8c000514, 0x05000005, 0x59300018, + 0x4803c857, 0x80380480, 0x05fe17f9, 0x59300013, + 0x4803c857, 0x05fdf7f6, 0x59a808bb, 0x59cc2808, + 0x4c5c0000, 0x4178b800, 0x8c14051e, 0x05000002, + 0x805cb800, 0x82140500, 0x00000c00, 0x05000004, + 0x905c0410, 0x80040480, 0x05001018, 0x80001580, + 0x8c140512, 0x05000005, 0x905c0414, 0x80040480, + 0x05001012, 0x59cc100a, 0x80000580, 0x8c140510, + 0x05000005, 0x905c0418, 0x80040480, 0x0500100b, + 0x59cc000b, 0x80080400, 0x05001008, 0x05000005, + 0x905c0418, 0x80040480, 0x05001004, 0x80000580, + 0x5c00b800, 0x1c01f000, 0x42000000, 0x001123ed, + 0x050dfabb, 0x90000541, 0x05fdf7fa, 0x4933c857, + 0x4937c857, 0x4923c857, 0x4927c857, 0x492fc857, + 0x48efc857, 0x4d1c0000, 0x4d300000, 0x41323800, + 0x05edfc70, 0x0500001f, 0x48ee602d, 0x4926601d, + 0x4936600a, 0x05fdf97a, 0x591c0407, 0x90000583, + 0x05000008, 0x591c0202, 0x4803c857, 0x4802641b, + 0x591c0402, 0x4802621b, 0x4803c857, 0x0501f009, + 0x591c0017, 0x48026017, 0x591c0202, 0x4803c857, + 0x4802621b, 0x591c0402, 0x4802641b, 0x4803c857, + 0x491e602a, 0x64066407, 0x492e6009, 0x4d380000, + 0x615e7000, 0x0009f839, 0x5c027000, 0x90000541, + 0x5c026000, 0x5c023800, 0x1c01f000, 0x4933c857, + 0x493bc857, 0x4937c857, 0x4d2c0000, 0x4c500000, + 0x4c540000, 0x4c580000, 0x59325809, 0x05f9fd7f, + 0x05000017, 0x91cca406, 0x912cac0a, 0x91380596, + 0x05020007, 0x59a800bb, 0x90000588, 0x0502000e, + 0x492fc857, 0x6008b000, 0x0501f008, 0x91380595, + 0x05020009, 0x492fc857, 0x59a800bb, 0x90000598, + 0x05020005, 0x6018b000, 0x050dfb3c, 0x05edfe31, + 0x0501f003, 0x05f1fb14, 0x0009f810, 0x5c00b000, + 0x5c00a800, 0x5c00a000, 0x5c025800, 0x1c01f000, + 0x4933c857, 0x05e5fce0, 0x4df00000, 0x59300203, + 0x90000c91, 0x05a61920, 0x0c01f001, 0x0010bd09, + 0x0010bd08, 0x0010bd0e, 0x0010bd26, 0x0010bd0d, + 0x0010bd08, 0x0010bd08, 0x0010bd08, 0x0010bd08, + 0x0010bd08, 0x0010bd08, 0x0010bd08, 0x0010bd08, + 0x0010bd08, 0x0010bd08, 0x0010bd08, 0x0010bd0e, + 0x05a5f90d, 0x5c03e000, 0x05e40cb8, 0x80000580, + 0x1c01f000, 0x05a9fbda, 0x5c03e000, 0x05e40cb3, + 0x8d3c0502, 0x05020011, 0x4d2c0000, 0x59325809, + 0x64165a0a, 0x0001fba8, 0x5c025800, 0x497a6009, + 0x8d3c0500, 0x0502000b, 0x642a6229, 0x4a026403, + 0x00000085, 0x64266203, 0x640a6407, 0x42000800, + 0x80004040, 0x0005fee2, 0x81780080, 0x1c01f000, + 0x05edfbc1, 0x05fdf7fd, 0x05f9f984, 0x05020003, + 0x05e5ff76, 0x05020005, 0x05e5f865, 0x05fc07e3, + 0x05e5fbbd, 0x05a608e8, 0x59300203, 0x90000d83, + 0x05a408e5, 0x90000c91, 0x05a618e3, 0x0c01f7c4, + 0x4803c856, 0x05edfbe3, 0x0500002e, 0x59300402, + 0x4802621b, 0x59a804d1, 0x84000540, 0x84000502, + 0x480354d1, 0x812e59c0, 0x05000011, 0x82600580, + 0x00003000, 0x05020003, 0x4a026416, 0x00000100, + 0x592c020b, 0x480352d2, 0x480352d1, 0x592c000f, + 0x480350d3, 0x592c020c, 0x800000c2, 0x800008c4, + 0x80040400, 0x48026006, 0x0501f00a, 0x640b50d3, + 0x59a8005f, 0x800000c4, 0x48026006, 0x417a4000, + 0x61fa880f, 0x42003000, 0x00fffffe, 0x05cdf9d8, + 0x4926601d, 0x599c0208, 0x48026c12, 0x59340002, + 0x4802600b, 0x497a641b, 0x4936600a, 0x492e6009, + 0x64066407, 0x61627000, 0x0009f839, 0x90000541, + 0x1c01f000, 0x4d2c0000, 0x4c5c0000, 0x4c600000, + 0x4c640000, 0x4803c856, 0x59325809, 0x91380595, + 0x050200b8, 0x812e59c0, 0x05000003, 0x05f9fce3, + 0x05a408a5, 0x59a800bb, 0x82000580, 0x00000228, + 0x050200ab, 0x59cc0c07, 0x82040580, 0x00000101, + 0x050200b7, 0x59cc0a07, 0x59300402, 0x80040580, + 0x050200b5, 0x59cc0a0a, 0x82040580, 0x00000228, + 0x050200b3, 0x91ccbc0b, 0x585c0c00, 0x82040580, + 0x00000101, 0x050200b0, 0x585c0a00, 0x90040584, + 0x050200af, 0x91ccc40d, 0x58600c00, 0x82040580, + 0x00000102, 0x050200ac, 0x58600a00, 0x90040584, + 0x050200ab, 0x91cccc0f, 0x58640c00, 0x82040580, + 0x00000103, 0x05000004, 0x82040580, 0x00000203, + 0x050200a5, 0x58640a00, 0x82040580, 0x00000200, + 0x050200a3, 0x585c0801, 0x800409c0, 0x050000a2, + 0x90040484, 0x050210a0, 0x480750d4, 0x58600201, + 0x800001c0, 0x0500009f, 0x82001480, 0x00000fff, + 0x0502109c, 0x480354d2, 0x480352d1, 0x4c500000, + 0x4c540000, 0x4c580000, 0x6000b001, 0x4200a800, + 0x00114616, 0x91cca410, 0x5450a800, 0x8050a000, + 0x8054a800, 0x8058b040, 0x05fe07fc, 0x5c00b000, + 0x5c00a800, 0x5c00a000, 0x40001000, 0x4c040000, + 0x05b5fa18, 0x5c000800, 0x05020005, 0x59a804d1, + 0x8400054c, 0x480354d1, 0x4803c857, 0x90040582, + 0x05000055, 0x90040583, 0x05000002, 0x0501f004, + 0x59a800d3, 0x90000582, 0x05000052, 0x812e59c0, + 0x0500002b, 0x592c1001, 0x800811c0, 0x05a40846, + 0x4930100b, 0x492c100a, 0x64001001, 0x4a001009, + 0x0010bde2, 0x4a001003, 0x00114616, 0x4a001005, + 0x00000200, 0x592c0015, 0x48001007, 0x592c0016, + 0x48001008, 0x5c00c800, 0x5c00c000, 0x5c00b800, + 0x5c025800, 0x0001f029, 0x4d2c0000, 0x4c5c0000, + 0x4c600000, 0x4c640000, 0x5832600b, 0x813261c0, + 0x05a4082d, 0x5832580a, 0x812e59c0, 0x05a4082a, + 0x49786001, 0x58300002, 0x82000580, 0x00000100, + 0x0502005a, 0x59a80cd2, 0x48065811, 0x59a808d4, + 0x48065810, 0x64ca5a0a, 0x0001fba8, 0x0009f810, + 0x58600a01, 0x59a802d2, 0x80040580, 0x0502004c, + 0x59a81cd1, 0x820c1d00, 0xffffffbc, 0x840c1d46, + 0x480f54d1, 0x0501f01e, 0x59cc3407, 0x82183500, + 0x000000ff, 0x90180585, 0x0502000c, 0x59340412, + 0x800001c0, 0x05000009, 0x80000040, 0x48026c12, + 0x4d2c0000, 0x59325809, 0x0009f810, 0x05fdff25, + 0x5c025800, 0x0501f00e, 0x05f1fe66, 0x59a8024c, + 0x84000518, 0x4803524c, 0x4803544c, 0x0009f810, + 0x05fdf7e4, 0x59a800d3, 0x90000581, 0x05fc07b0, + 0x5930041b, 0x84000548, 0x4802641b, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x5c025800, 0x1c01f000, + 0x4803c856, 0x812e59c0, 0x05fc07dc, 0x05f9fc2b, + 0x05a00fed, 0x64c65a0a, 0x64625810, 0x59cc0007, + 0x48025811, 0x0001fba8, 0x05fdf7e4, 0x4807c857, + 0x05fdf7ef, 0x4807c857, 0x05fdf7ed, 0x4807c857, + 0x05fdf7eb, 0x4807c857, 0x05fdf7e9, 0x4807c857, + 0x05fdf7e7, 0x4807c857, 0x05fdf7e5, 0x4807c857, + 0x05fdf7e3, 0x4807c857, 0x05fdf7e1, 0x4807c857, + 0x05fdf7df, 0x4807c857, 0x05a1ffd3, 0x05fdf7dc, + 0x4803c857, 0x05a1ffd0, 0x05fdf7d9, 0x4807c857, + 0x0501f80f, 0x05fdf7d6, 0x4803c857, 0x4a006002, + 0x00000100, 0x640a5a0a, 0x0001fba8, 0x05fdf7a8, + 0x59300403, 0xb0000d98, 0x05000004, 0xb0000d9e, + 0x05000002, 0xb0000d9f, 0x1c01f000, 0x59a804d1, + 0x82000500, 0xfffffffc, 0x480354d1, 0x05d1fd3d, + 0x05020006, 0x05d1fd4d, 0x05000004, 0x64075045, + 0x6006d800, 0x05d1fcb4, 0x1c01f000, 0x4933c857, + 0x4d400000, 0x60028000, 0x05b5f84d, 0x05f1fe28, + 0x0500001f, 0x59cc0408, 0x8c00051e, 0x05020009, + 0x42000800, 0x001124b6, 0x58040406, 0x8c000500, + 0x05020004, 0x59240200, 0x84000556, 0x48024a00, + 0x60aa8000, 0x59240400, 0x8c00050a, 0x05020004, + 0x61fe89ff, 0x60083000, 0x0509f873, 0x4d3c0000, + 0x600a7800, 0x5924100b, 0x82081500, 0x00001fff, + 0x41780800, 0x05b5f968, 0x5c027800, 0x42000000, + 0x001123f8, 0x050df8d2, 0x600a8000, 0x60100800, + 0x05cdf878, 0x60040800, 0x05cdf9b2, 0x59cc0800, + 0x82040d00, 0x00ffffff, 0x5924100c, 0x48041001, + 0x59cc0009, 0x48024a0a, 0x48001200, 0x59cc000a, + 0x48024c0a, 0x48001400, 0x59240200, 0xb0000566, + 0x48024a00, 0x48064805, 0x49238830, 0x84040570, + 0x48038832, 0x812000f0, 0x80040540, 0x48026813, + 0x60040000, 0x05d1fa93, 0x5c028000, 0x59301009, + 0x800811c0, 0x05020009, 0x0501f823, 0x5924100b, + 0x82081500, 0x00001fff, 0x05b5f9af, 0x0501f81e, + 0x0502001c, 0x0501f018, 0x4d2c0000, 0x400a5800, + 0x592c1208, 0x82080500, 0x000000ff, 0x900005b0, + 0x05020009, 0x592c040b, 0x82000500, 0x000000ff, + 0x05020003, 0x05a5fb10, 0x0501f00a, 0x05d5fce6, + 0x0501f008, 0x592c020b, 0x80000110, 0x800001c0, + 0x05020003, 0x05a5fb08, 0x0501f002, 0x05d5fef6, + 0x5c025800, 0x59300429, 0x900005a1, 0x000a0010, + 0x1c01f000, 0x4933c857, 0x4d340000, 0x4d240000, + 0x4d200000, 0x916c0583, 0x05020015, 0x599c0018, + 0x8c000516, 0x05000003, 0x05c5fb71, 0x0501f010, + 0x60100800, 0x05cdf82b, 0x59300429, 0x900005a1, + 0x05000005, 0x59240400, 0x8c00050c, 0x05000004, + 0x64866429, 0x05fdf9ce, 0x90000541, 0x5c024000, + 0x5c024800, 0x5c026800, 0x1c01f000, 0x80000580, + 0x05fdf7fb, 0x4d340000, 0x5932680a, 0x05cdfe78, + 0x5c026800, 0x0009f010, 0x4803c856, 0x4c5c0000, + 0x4d200000, 0x4014b800, 0x05b1ffc5, 0x59a800c0, + 0x80000040, 0x480350c0, 0x916c0582, 0x05020004, + 0x59240200, 0x8400051a, 0x48024a00, 0x59240200, + 0x82000500, 0xfffffeef, 0x84000546, 0x48024a00, + 0x497a4805, 0x4d400000, 0x60068000, 0x41781800, + 0x405c2800, 0x60040000, 0x05d1fa32, 0x60aa8000, + 0x4d3c0000, 0x600a7800, 0x05b5f805, 0x5c027800, + 0x5c028000, 0x5c024000, 0x5c00b800, 0x813261c0, + 0x05ee01d9, 0x1c01f000, 0x59303009, 0x58181a08, + 0x820c1d00, 0x000000ff, 0xb00c0588, 0x05000003, + 0xb00c05aa, 0x05020048, 0x59300004, 0x8c000516, + 0x05020045, 0x5818040c, 0x8c000500, 0x05000042, + 0x42000000, 0x00114294, 0x50006000, 0x41781800, + 0x5830200c, 0x41300000, 0x80100580, 0x05000006, + 0x40101800, 0x580c2000, 0x801021c0, 0x05fe07fa, + 0x0501f035, 0x4933c857, 0x59302000, 0x497a6000, + 0x800c19c0, 0x0502001e, 0x4933c856, 0x42007000, + 0x000211e8, 0x5830000a, 0x800001c0, 0x05000018, + 0x4978600a, 0x58380001, 0x80300580, 0x05020008, + 0x4933c856, 0x49787002, 0x4810600c, 0x801021c0, + 0x0502001d, 0x4978600b, 0x0501f01b, 0x4933c856, + 0x4810600c, 0x801021c0, 0x05020002, 0x4978600b, + 0x4c180000, 0x4c300000, 0x05a5fbf5, 0x5c006000, + 0x05fdfc08, 0x5c003000, 0x0501f00f, 0x4933c856, + 0x800c19c0, 0x05020008, 0x801021c0, 0x05000003, + 0x4810600c, 0x0501f008, 0x4978600c, 0x4978600b, + 0x0501f005, 0x48101800, 0x801021c0, 0x05020002, + 0x480c600b, 0x5818040c, 0x84000500, 0x4800340c, + 0x4978320c, 0x1c01f000, 0x42001000, 0x00112325, + 0x58080000, 0x4937c857, 0x4803c857, 0x90000580, + 0x0500001b, 0x58080005, 0x49341005, 0x80000540, + 0x05020003, 0x49341004, 0x1c01f000, 0x4803c857, + 0x49340016, 0x1c01f000, 0x42001000, 0x00112325, + 0x58080000, 0x4937c857, 0x4947c857, 0x4803c857, + 0x90000580, 0x0500001a, 0x58080003, 0x49341003, + 0x80000540, 0x05020003, 0x49341002, 0x1c01f000, + 0x4803c857, 0x49340016, 0x1c01f000, 0x4937c857, + 0x0501f83c, 0x05a00e94, 0x42001000, 0x00112325, + 0x64081000, 0x4c080000, 0x0501f8c1, 0x5c001000, + 0x05a20e8d, 0x58081001, 0x64001001, 0x4a001009, + 0x0010bffb, 0x49341003, 0x0501f010, 0x4937c857, + 0x0501f816, 0x05a00e84, 0x42001000, 0x00112325, + 0x64041000, 0x58081001, 0x64041001, 0x4a001009, + 0x0010bfd3, 0x49341003, 0x4c080000, 0x0501f8ac, + 0x5c001000, 0x05a20e78, 0x40100000, 0x800c0540, + 0x05a00e75, 0x4934100b, 0x65701005, 0x480c1007, + 0x48101008, 0x0001f029, 0x4c5c0000, 0x4c600000, + 0x4937c857, 0x8344bc00, 0x0010db80, 0x505c0000, + 0x8200c580, 0x40000000, 0x82600500, 0xe0000000, + 0x05020007, 0x82600540, 0x60000000, 0x4400b800, + 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x8260c580, + 0x40000000, 0x4863c857, 0x80000580, 0x05fdf7f9, + 0x4c5c0000, 0x4c600000, 0x4937c857, 0x59368c03, + 0x8344bc00, 0x0010db80, 0x505c0000, 0x8200c580, + 0x20000000, 0x82600500, 0xe0000000, 0x05020007, + 0x82600540, 0x80000000, 0x4400b800, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x8260c580, 0x20000000, + 0x4863c857, 0x80000580, 0x05fdf7f9, 0x4d340000, + 0x4d440000, 0x4c5c0000, 0x49786009, 0x58300002, + 0x82000580, 0x00000100, 0x05020012, 0x5830000b, + 0x80026d40, 0x4937c857, 0x0500000a, 0x59368c03, + 0x8344bc00, 0x0010db80, 0x83340540, 0x20000000, + 0x4400b800, 0x4a026815, 0x00020000, 0x497a6816, + 0x5c00b800, 0x5c028800, 0x5c026800, 0x0501f041, + 0x5830000b, 0x80026d40, 0x4803c857, 0x05fc07f9, + 0x59368c03, 0x8344bc00, 0x0010db80, 0x505c0000, + 0x82000500, 0x00ffffff, 0x82000540, 0x40000000, + 0x84000578, 0x4400b800, 0x05fdf7ee, 0x4d340000, + 0x4d2c0000, 0x4d440000, 0x4c5c0000, 0x49786009, + 0x58300002, 0x82000580, 0x00000100, 0x05020025, + 0x5830000b, 0x80026d40, 0x4937c857, 0x0500001c, + 0x59368c03, 0x8344bc00, 0x0010db80, 0x505c0000, + 0x4947c857, 0x4803c857, 0x82000d00, 0xe0000000, + 0x82000500, 0x00ffffff, 0x82041580, 0xa0000000, + 0x05020008, 0x4a026815, 0x00020000, 0x497a6816, + 0x82000540, 0x20000000, 0x4400b800, 0x0501f008, + 0x42000800, 0x40000000, 0x59340002, 0x80040540, + 0x4400b800, 0x41365800, 0x05a5f9a7, 0x5c00b800, + 0x5c028800, 0x5c025800, 0x5c026800, 0x0501f005, + 0x5830000b, 0x80026d40, 0x4937c857, 0x05fdf7f8, + 0x4d340000, 0x42001000, 0x00112325, 0x58080002, + 0x80026d40, 0x05000009, 0x4937c857, 0x59340016, + 0x48001002, 0x80000540, 0x05020002, 0x48001003, + 0x05fdff57, 0x0501f00c, 0x58080004, 0x80026d40, + 0x05000008, 0x59340016, 0x48001004, 0x80000540, + 0x05020002, 0x48001005, 0x05fdff3d, 0x0501f002, + 0x64001000, 0x5c026800, 0x1c01f000, 0x4937c857, + 0x83440c80, 0x00000800, 0x0500100c, 0x61701000, + 0x05e1fbdf, 0x59001801, 0x4c000000, 0x40040000, + 0x800c1c00, 0x5c000000, 0x59002002, 0x80102440, + 0x80000580, 0x1c01f000, 0x4947c857, 0x41781800, + 0x41782000, 0x90000541, 0x05fdf7fb, 0x4933c857, + 0x4927c857, 0x59a8024c, 0x90000543, 0x4803524c, + 0x4c5c0000, 0x4d400000, 0x59ccb800, 0x825cbd00, + 0x00ffffff, 0x60028000, 0x05b1fe4d, 0x05f1fc28, + 0x485f5040, 0x0500001d, 0x4d3c0000, 0x60aa8000, + 0x59240400, 0x8c00050a, 0x05020006, 0x59240200, + 0x84000556, 0x48024a00, 0x60083000, 0x0505fe73, + 0x600a7800, 0x05b1fe96, 0x42000000, 0x001123f8, + 0x0509fedf, 0x59cc0408, 0x8c00051e, 0x05020009, + 0x42000800, 0x001124b6, 0x58040406, 0x8c000500, + 0x05020004, 0x59a8024c, 0x84000552, 0x4803524c, + 0x600a8000, 0x5c027800, 0x41780800, 0x05c9ffb5, + 0x59240200, 0x4803c857, 0x4927c857, 0xb0000566, + 0x48024a00, 0x485e4805, 0x812000f0, 0x805c0540, + 0x48026813, 0x49238830, 0x84000570, 0x48038832, + 0x59a8124c, 0x59cc0408, 0x8c00051a, 0x05020005, + 0x84081514, 0x4a0370e5, 0x00000800, 0x0501f004, + 0x84081554, 0x4a0370e5, 0x00000c00, 0x84081548, + 0x480b524c, 0x480b524c, 0x05f9fd4f, 0x59cc0408, + 0x8c000518, 0x0500000a, 0x59a8024c, 0x84000508, + 0x8400054a, 0x4803524c, 0x49238830, 0x845c0570, + 0x48038832, 0x60100800, 0x05c9fe52, 0x59a80a4c, + 0x84040d50, 0x59cc0013, 0x8c00053e, 0x05000003, + 0x8c000536, 0x05000004, 0x59cc0017, 0x8c000536, + 0x05020002, 0x84040d10, 0x4807524c, 0x4807544c, + 0x42001800, 0x001142a2, 0x8c040508, 0x05020007, 0x59240400, 0x8c00050c, 0x05000004, 0x64866429, - 0x05fdf9d9, 0x90000541, 0x5c024000, 0x5c024800, - 0x5c026800, 0x1c01f000, 0x80000580, 0x05fdf7fb, - 0x4d340000, 0x5932680a, 0x05d1f95a, 0x5c026800, - 0x0005f7dc, 0x4803c856, 0x4c5c0000, 0x4d200000, - 0x4014b800, 0x05b5fcda, 0x59a800bb, 0x80000040, - 0x480350bb, 0x916c0582, 0x05020004, 0x59240200, - 0x8400051a, 0x48024a00, 0x59240200, 0x82000500, - 0xfffffeef, 0x84000546, 0x48024a00, 0x497a4805, - 0x4d400000, 0x60068000, 0x41781800, 0x405c2800, - 0x60040000, 0x05d1fcff, 0x60aa8000, 0x4d3c0000, - 0x600a7800, 0x05b5fd10, 0x5c027800, 0x5c028000, - 0x5c024000, 0x5c00b800, 0x813261c0, 0x05ee0275, - 0x1c01f000, 0x59303009, 0x58181a08, 0x820c1d00, - 0x000000ff, 0xb00c0588, 0x05000003, 0xb00c05aa, - 0x05020048, 0x59300004, 0x8c000516, 0x05020045, - 0x5818040c, 0x8c000500, 0x05000042, 0x42000000, - 0x001102f0, 0x50006000, 0x41781800, 0x5830200c, - 0x41300000, 0x80100580, 0x05000006, 0x40101800, - 0x580c2000, 0x801021c0, 0x05fe07fa, 0x0501f035, - 0x4933c857, 0x59302000, 0x497a6000, 0x800c19c0, - 0x0502001e, 0x4933c856, 0x42007000, 0x000211a7, - 0x5830000a, 0x800001c0, 0x05000018, 0x4978600a, - 0x58380001, 0x80300580, 0x05020008, 0x4933c856, - 0x49787002, 0x4810600c, 0x801021c0, 0x0502001d, - 0x4978600b, 0x0501f01b, 0x4933c856, 0x4810600c, - 0x801021c0, 0x05020002, 0x4978600b, 0x4c180000, - 0x4c300000, 0x05a9f944, 0x5c006000, 0x05fdfc12, - 0x5c003000, 0x0501f00f, 0x4933c856, 0x800c19c0, - 0x05020008, 0x801021c0, 0x05000003, 0x4810600c, - 0x0501f008, 0x4978600c, 0x4978600b, 0x0501f005, - 0x48101800, 0x801021c0, 0x05020002, 0x480c600b, - 0x5818040c, 0x84000500, 0x4800340c, 0x4978320c, - 0x1c01f000, 0x4933c857, 0x4927c857, 0x59a80249, - 0x90000543, 0x48035249, 0x4c5c0000, 0x4d400000, - 0x59ccb800, 0x825cbd00, 0x00ffffff, 0x60028000, - 0x05b5fc5f, 0x05f1fd93, 0x485f503d, 0x0500001d, - 0x4d3c0000, 0x60aa8000, 0x59240400, 0x8c00050a, - 0x05020006, 0x59240200, 0x84000556, 0x48024a00, - 0x60083000, 0x0505fdda, 0x600a7800, 0x05b5fc9e, - 0x42000000, 0x0010e454, 0x0509fe12, 0x59cc0408, - 0x8c00051e, 0x05020009, 0x42000800, 0x0010e512, - 0x58040406, 0x8c000500, 0x05020004, 0x59a80249, - 0x84000552, 0x48035249, 0x600a8000, 0x5c027800, - 0x41780800, 0x05cdfbfd, 0x59240200, 0x4803c857, - 0x4927c857, 0xb0000566, 0x48024a00, 0x485e4805, - 0x812000f0, 0x805c0540, 0x48026813, 0x49238830, - 0x84000570, 0x48038832, 0x59a81249, 0x59cc0408, - 0x8c00051a, 0x05020005, 0x84081514, 0x4a0370e5, - 0x00000800, 0x0501f004, 0x84081554, 0x4a0370e5, - 0x00000c00, 0x480b5249, 0x05f9fe67, 0x59cc0408, - 0x8c000518, 0x05000009, 0x59a80249, 0x8400054a, - 0x48035249, 0x49238830, 0x845c0570, 0x48038832, - 0x60100800, 0x05cdfaf0, 0x59a80a49, 0x84040d50, - 0x59cc0013, 0x8c00053e, 0x05000003, 0x8c000536, - 0x05000004, 0x59cc0017, 0x8c000536, 0x05020002, - 0x84040d10, 0x48075249, 0x48075449, 0x42001800, - 0x001102fe, 0x59240400, 0x8c00050c, 0x05000004, - 0x64866429, 0x05fdf8f4, 0x0501f009, 0x405c0800, - 0x41781000, 0x60001802, 0x60040000, 0x60028000, - 0x05d1fc38, 0x0501f830, 0x0005ffdc, 0x59a80249, - 0x4803c857, 0x8c000506, 0x05020006, 0x41781800, - 0x0509ff06, 0x05000002, 0x60401800, 0x05b5fb93, - 0x805c0110, 0x48035046, 0x48038881, 0x59a80044, - 0x80000040, 0x4803c857, 0x05001003, 0x48035044, - 0x0502001a, 0x59a80249, 0x8c000506, 0x05000004, - 0x8400050a, 0x48035249, 0x48035449, 0x42001800, - 0x0010dd46, 0x05a5feeb, 0x42001800, 0x0010dd53, - 0x05a5fee8, 0x4a035045, 0x0000ffff, 0x05e5fe5b, - 0x4a01a8e4, 0x00000080, 0x0509ff09, 0x05000004, - 0x4a038802, 0x0000ffbf, 0x0501f003, 0x4a038802, - 0x0000ffff, 0x850e1d02, 0x5c028000, 0x5c00b800, - 0x1c01f000, 0x4d440000, 0x4d340000, 0x61f2880f, - 0x05d1f82d, 0x05020003, 0x4a026c00, 0x00000707, - 0x5c026800, 0x5c028800, 0x1c01f000, 0x05f9feef, - 0x59a80098, 0x40002800, 0x59a81899, 0x800c0480, - 0x05000006, 0x59a8089a, 0x05001023, 0x80040480, - 0x0500001a, 0x05001019, 0x59aa6097, 0x41302000, - 0x59300a03, 0x90040d80, 0x0502000b, 0x64226203, - 0x800c1800, 0x480f5099, 0x91301430, 0xa0080495, - 0x0502100c, 0x480b5097, 0x05f9fee3, 0x81300540, - 0x1c01f000, 0x91326430, 0xa1300c95, 0x05001002, - 0x41526000, 0x81300584, 0x05000004, 0x05fdf7ed, - 0x49535097, 0x05fdf7f5, 0x42000000, 0x0010e443, - 0x0509fd64, 0x480fc857, 0x05f9fed3, 0x80026580, - 0x05fdf7f0, 0x8c14053e, 0x05fe07dd, 0x80000080, - 0x80000000, 0x05fdf7da, 0x4933c857, 0x4d340000, - 0x4d200000, 0x05b5fb92, 0x61f6880f, 0x42003000, - 0x00fffffd, 0x05cdfa8b, 0x05a60b50, 0x4936600a, - 0x497a6c12, 0x59300429, 0x900005a1, 0x05020003, - 0x599c0208, 0x48026c12, 0x5c024000, 0x5c026800, - 0x640e601e, 0x64066203, 0x648a6403, 0x05e1f5da, - 0x5930002b, 0x80000540, 0x05000006, 0x82000580, - 0xffffffff, 0x05000003, 0x82000580, 0xffffffff, - 0x1c01f000, 0x4927c857, 0x59240200, 0xb0000542, - 0x48024a00, 0x1c01f000, 0x4933c857, 0x59368c03, - 0x4c180000, 0x59300203, 0x90003491, 0x05a61b2f, - 0x0c01f803, 0x5c003000, 0x1c01f000, 0x0010bac0, - 0x0010c01b, 0x0010c1e5, 0x0010bac0, 0x0010bac0, - 0x0010bac0, 0x0010bac0, 0x0010bac0, 0x0010bae0, - 0x0010bac0, 0x0010bac0, 0x0010bac0, 0x0010bac0, - 0x0010bac0, 0x0010c8ad, 0x0010bac0, 0x0010bac0, - 0x05a5fb1a, 0x4933c857, 0x61fe89ff, 0x813669c0, - 0x05000002, 0x59368c03, 0x4c180000, 0x59300203, - 0x90003491, 0x05a61b11, 0x0c01f803, 0x5c003000, - 0x1c01f000, 0x0010bade, 0x0010c49f, 0x0010bade, - 0x0010bade, 0x0010bade, 0x0010bade, 0x0010bade, - 0x0010bade, 0x0010c3dd, 0x0010c9fc, 0x0010ca31, - 0x0010c9fc, 0x0010ca31, 0x0010bade, 0x0010c8be, - 0x0010bade, 0x0010bade, 0x05a5fafc, 0x05a5fafb, - 0xb13834a0, 0x05a61af9, 0x41380000, 0x493bc857, - 0x4d1c0000, 0x4d400000, 0x0c01f804, 0x5c028000, - 0x5c023800, 0x1c01f000, 0x0010bb4a, 0x0010bdc5, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bdcb, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bb4a, 0x0010bc52, 0x0010bc91, 0x0010bca3, - 0x0010bd04, 0x0010bd48, 0x0010bd7c, 0x0010bd9e, - 0x0010bb4a, 0x0010bb4a, 0x0010bdd0, 0x0010bb4a, - 0x0010bb4a, 0x0010bdd9, 0x0010bdde, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010be6d, 0x0010bb4a, 0x0010bb4a, 0x0010bd31, - 0x0010bb4a, 0x0010bb4a, 0x0010be43, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010be78, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bec0, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bb4a, 0x0010bf15, 0x0010bb4a, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bc32, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bc3c, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bf3e, 0x0010bf43, 0x0010bf5b, 0x0010bb4a, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, - 0x0010bc48, 0x0010bb4a, 0x0010bb4a, 0x0010bb4b, - 0x0010bb4a, 0x0010bb4a, 0x0010bb4a, 0x0010bbc5, - 0x0010bb4a, 0x0010bb4a, 0x05a5fa90, 0x4933c857, - 0x59cc0801, 0x82040580, 0x00fffffe, 0x05020416, - 0x0505ff3b, 0x05020414, 0x05b5f8b2, 0x05020412, - 0x59a804cc, 0x8c000504, 0x05000254, 0x4c5c0000, - 0x59a808b6, 0x82040580, 0x00000228, 0x050200b5, - 0x59cc0800, 0x82040d00, 0x00ffffff, 0x82040580, - 0x00fffff0, 0x050200b1, 0x59cc0801, 0x82040d00, - 0x00ffffff, 0x82040580, 0x00fffffe, 0x050200ad, - 0x59cc0c07, 0x80040910, 0x90040581, 0x050200ab, - 0x59cc0a0a, 0x82040580, 0x00000228, 0x050200af, - 0x4c600000, 0x4c640000, 0x91ccbc0b, 0x585c0c00, - 0x82040580, 0x00000101, 0x0502003f, 0x585c0a00, - 0x90040584, 0x0502003e, 0x91ccc40d, 0x58600c00, - 0x82040580, 0x00000102, 0x0502003b, 0x58600a00, - 0x90040584, 0x0502003a, 0x91cccc0f, 0x58640c00, - 0x82040580, 0x00000103, 0x05000004, 0x82040580, - 0x00000203, 0x05020036, 0x58640a00, 0x82040580, - 0x00000200, 0x05020034, 0x585c0801, 0x90040484, - 0x05021033, 0x59cc0a07, 0x4807c857, 0x4806621b, - 0x58600201, 0x4803c857, 0x800001c0, 0x05000026, - 0x82000c80, 0x00000fff, 0x05021023, 0x480354cd, - 0x480352cc, 0x60643000, 0x61fc19ff, 0x60182000, - 0x4d200000, 0x417a4000, 0x05c5fca6, 0x5c024000, - 0x585cc801, 0x5860ba01, 0x91ccc410, 0x497a641b, - 0x0509fb09, 0x59cc0c04, 0x48066202, 0x656a6403, - 0x64066203, 0x05e1fcc4, 0x59a804cc, 0x84000542, - 0x480354cc, 0x5c00c800, 0x5c00c000, 0x5c00b800, - 0x1c01f000, 0x4807c857, 0x05fdf7fb, 0x4807c857, - 0x05fdf7f9, 0x4807c857, 0x05fdf7f7, 0x4807c857, - 0x05fdf7f5, 0x4803c857, 0x05fdf7f3, 0x4807c857, - 0x05fdf7f1, 0x4807c857, 0x05fdf7ef, 0x4807c857, - 0x05fdf7ed, 0x4933c857, 0x59cc0801, 0x82040580, - 0x00fffffe, 0x0502039c, 0x0505fec1, 0x0502039a, - 0x05b5f838, 0x05020398, 0x0501fbcd, 0x050201db, - 0x4c5c0000, 0x59a808b6, 0x90040594, 0x0502003d, - 0x59cc0800, 0x82040d00, 0x00ffffff, 0x82040580, - 0x00fffff0, 0x05020039, 0x59cc0801, 0x82040d00, - 0x00ffffff, 0x82040580, 0x00fffffe, 0x05020035, - 0x59cc0c07, 0x80040910, 0x90040581, 0x05020033, - 0x59cc0a0a, 0x90040594, 0x05020038, 0x59cc0c07, - 0x82040d00, 0x000000ff, 0x90040582, 0x0502002d, - 0x59cc0a07, 0x4807c857, 0x4d300000, 0x05d9fead, - 0x4130b800, 0x5c026000, 0x0500002e, 0x485fc857, - 0x585c0c07, 0x90040581, 0x0502002d, 0x585c0a03, - 0x90040582, 0x0502002d, 0x585c0c03, 0xb0040598, - 0x0502002d, 0x5930000a, 0x585c080a, 0x80040580, - 0x0502002c, 0x585c041b, 0x8c000508, 0x0500002c, - 0x59a804cc, 0x84000542, 0x480354cc, 0x59cc0c04, - 0x4804ba02, 0x6578bc03, 0x6404ba03, 0x0005ffdc, - 0x405e6000, 0x05e1fc64, 0x5c00b800, 0x1c01f000, - 0x4807c857, 0x05fdf7fd, 0x4807c857, 0x05fdf7fb, - 0x4807c857, 0x05fdf7f9, 0x4807c857, 0x0501f002, - 0x4807c857, 0x641e641c, 0x657e6403, 0x6402621c, - 0x5c00b800, 0x0501f1ac, 0x4807c857, 0x05fdf7fa, - 0x4807c857, 0x640e641c, 0x05fdf7f8, 0x4807c857, - 0x640e641c, 0x05fdf7f5, 0x4807c857, 0x640e641c, - 0x05fdf7f2, 0x4807c857, 0x640e641c, 0x05fdf7ef, - 0x4807c857, 0x640e641c, 0x05fdf7ec, 0x4807c857, - 0x640e641c, 0x05fdf7e9, 0x4933c857, 0x0505fe58, - 0x05020331, 0x05b1ffcf, 0x0502032f, 0x59cc0407, - 0x4802601e, 0x65166403, 0x64066203, 0x05e1f436, - 0x4933c857, 0x0505fe4e, 0x05020327, 0x05b1ffc5, - 0x05020325, 0x0501fb5a, 0x05020168, 0x59cc0007, - 0x4802601e, 0x652a6403, 0x64066203, 0x05e1f42a, - 0x4933c857, 0x0505fe42, 0x0502031b, 0x05b1ffb9, - 0x05020319, 0x0501fb4e, 0x0502015c, 0x655a6403, - 0x64066203, 0x05e1f420, 0x4933c857, 0x05b1ffb1, - 0x05020009, 0x05cdfc75, 0x05020007, 0x5932481d, - 0x59240200, 0x90000503, 0x90000583, 0x05000006, - 0x0501f309, 0x64266403, 0x6426641c, 0x6402621c, - 0x0501f169, 0x05cdfde6, 0x05000025, 0x59340200, - 0x8c00051a, 0x05000004, 0x5934000a, 0x84000560, - 0x4802680a, 0x0505f982, 0x05020024, 0x0509fceb, - 0x05020006, 0x60a68000, 0x4d3c0000, 0x417a7800, - 0x05b1febc, 0x5c027800, 0x42000000, 0x0010e456, - 0x0509fb68, 0x41780800, 0x05cdf960, 0x64226403, - 0x600c3000, 0x59240400, 0x8c00050a, 0x0502014e, - 0x59cc400b, 0x59cc380c, 0x59cc180d, 0x59cc080e, - 0x9c2041c0, 0x9c1c39c0, 0x9c0c19c0, 0x9c0409c0, - 0x641e6203, 0x41782800, 0x0501f13c, 0x0505faef, - 0x05fe07e1, 0x64266403, 0x643a641c, 0x4a02621c, - 0x00001900, 0x0501f13c, 0x64266403, 0x640e641c, - 0x0501f139, 0x4933c857, 0x05b1ff72, 0x050202d2, - 0x05cdfc36, 0x050202d0, 0x493a6403, 0x0505f8e7, - 0x05020007, 0x641a6403, 0x59240400, 0x8c00050a, - 0x0502012d, 0x641e6203, 0x0509f10a, 0x641e6403, - 0x6426641c, 0x6402621c, 0x0501f127, 0x4933c857, - 0x05cdfc26, 0x050202c0, 0x5934000a, 0x82000500, - 0x00010000, 0x82000580, 0x00010000, 0x05060de0, - 0x05b00f58, 0x050202b8, 0x59cc0001, 0x82000500, - 0x00ffff00, 0x82000580, 0x00fffc00, 0x05020007, - 0x59a80006, 0x8c00050e, 0x05000004, 0x59240400, - 0x8c00050a, 0x05020036, 0x05cdfd8d, 0x05020003, - 0x60067800, 0x05cdf826, 0x05cdfd7c, 0x05000004, - 0x82000580, 0x00000703, 0x05020032, 0x59cc0206, - 0x90003503, 0x05020034, 0x90003494, 0x05001032, - 0x59a830b6, 0x80183480, 0x0500102f, 0x5934300a, - 0x84183516, 0x90000594, 0x05020002, 0x84183556, - 0x481a680a, 0x59cc0406, 0x90000503, 0x05020026, - 0x0505f962, 0x0502002b, 0x05cdfd4f, 0x05020006, - 0x4c600000, 0x4178c000, 0x417a7800, 0x05b1fec9, - 0x5c00c000, 0x916c0583, 0x05020006, 0x60183000, - 0x0509f89c, 0x42000000, 0x0010e455, 0x0509faf9, - 0x05cdf967, 0x642a6403, 0x60803000, 0x59cc1a0a, - 0x41780800, 0x41784000, 0x41783800, 0x59240400, - 0x8c00050a, 0x050200dc, 0x05fdf796, 0x642e6403, - 0x642e641c, 0x4a02621c, 0x00002c00, 0x0501f0d6, - 0x642e6403, 0x6426641c, 0x4a02621c, 0x00001e00, - 0x0501f0d1, 0x42000000, 0x0010e3ab, 0x0509fae1, - 0x642e6403, 0x641e641c, 0x6402621c, 0x0501f0ca, - 0x642e6403, 0x640e641c, 0x6402621c, 0x0501f0c6, - 0x4933c857, 0x05cdfbc5, 0x0502025f, 0x0505fd84, - 0x0502025d, 0x05b1fefb, 0x0502025b, 0x59cc0206, - 0x90003503, 0x0502001b, 0x90003494, 0x05001019, - 0x59a830b6, 0x80180480, 0x05001016, 0x59cc0406, - 0x90000503, 0x05020013, 0x59340400, 0x82000580, - 0x00000707, 0x05000013, 0x417a7800, 0x4c600000, - 0x4178c000, 0x05b1fe87, 0x5c00c000, 0x60283000, - 0x0509f85c, 0x42000000, 0x0010e452, 0x0509fab9, - 0x64326403, 0x41782800, 0x60843000, 0x05fdf7c4, - 0x64366403, 0x641e641c, 0x6402621c, 0x0501f09e, + 0x05f9ffe7, 0x0501f009, 0x405c0800, 0x41781000, + 0x60001802, 0x60040000, 0x60028000, 0x05d1f869, + 0x0501f830, 0x0009f810, 0x59a8024c, 0x4803c857, + 0x8c000506, 0x05020006, 0x41781800, 0x0509ffce, + 0x05000002, 0x60401800, 0x05b1fd7c, 0x805c0110, + 0x48035049, 0x48038881, 0x59a80047, 0x80000040, + 0x4803c857, 0x05001003, 0x48035047, 0x0502001a, + 0x59a8024c, 0x8c000506, 0x05000004, 0x8400050a, + 0x4803524c, 0x4803544c, 0x42001800, 0x00111ce0, + 0x05a5f86f, 0x42001800, 0x00111ced, 0x05a5f86c, + 0x4a035048, 0x0000ffff, 0x05e5fc66, 0x4a01a8e4, + 0x00000080, 0x0509ffd1, 0x05000004, 0x4a038802, + 0x0000ffbf, 0x0501f003, 0x4a038802, 0x0000ffff, + 0x850e1d02, 0x5c028000, 0x5c00b800, 0x1c01f000, + 0x4d440000, 0x4d340000, 0x61f2880f, 0x05cdfc43, + 0x05020003, 0x4a026c00, 0x00000707, 0x5c026800, + 0x5c028800, 0x1c01f000, 0x05f9fdd4, 0x59a8009b, + 0x40002800, 0x59a8189c, 0x800c0480, 0x05000006, + 0x59a8089d, 0x05001026, 0x80040480, 0x0500001d, + 0x0500101c, 0x59aa609a, 0x41302000, 0x59300a03, + 0x90040d80, 0x0502000e, 0x5930002f, 0x84000516, + 0x4802602f, 0x64226203, 0x800c1800, 0x480f509c, + 0x91301430, 0xa0080495, 0x0502100c, 0x480b509a, + 0x05f9fdc9, 0x81300540, 0x1c01f000, 0x91326430, + 0xa1300c95, 0x05001002, 0x41526000, 0x81300584, + 0x05000004, 0x05fdf7ea, 0x4953509a, 0x05fdf7f5, + 0x42000000, 0x001123e5, 0x0509fe29, 0x480fc857, + 0x05f9fdb9, 0x80026580, 0x05fdf7f0, 0x8c14053e, + 0x05fe07da, 0x80000080, 0x80000000, 0x05fdf7d7, + 0x4933c857, 0x4d340000, 0x4d200000, 0x05b1fd78, + 0x61f6880f, 0x42003000, 0x00fffffd, 0x05c9fdf0, + 0x05a20cd5, 0x4936600a, 0x497a6c12, 0x59300429, + 0x900005a1, 0x05020003, 0x599c0208, 0x48026c12, + 0x5c024000, 0x5c026800, 0x640e601e, 0x64066203, + 0x648a6403, 0x05e1f3dd, 0x5930002b, 0x80000540, + 0x05000006, 0x82000580, 0xffffffff, 0x05000003, + 0x82000580, 0xffffffff, 0x1c01f000, 0x4927c857, + 0x59240200, 0xb0000542, 0x48024a00, 0x1c01f000, + 0x4927c857, 0x4a024a00, 0x00008085, 0x599c0208, + 0x48026c12, 0x4d300000, 0x05e9ffb6, 0x5c000000, + 0x05000005, 0x641c0407, 0x4a000006, 0x00000398, + 0x0501f002, 0x40026000, 0x4936600a, 0x600c0800, + 0x05c9fd94, 0x49238830, 0x4a038832, 0xffffffff, + 0x4926601d, 0x497a6009, 0x64066407, 0x64066203, + 0x640a6403, 0x05e1f3b5, 0x82bc0580, 0x00115aa4, + 0x05000008, 0x59a8003d, 0x59a8729f, 0x80380400, + 0x59a8723e, 0x8164740e, 0x80380480, 0x0501f003, + 0x59a8003d, 0x81640480, 0x1c01f000, 0x4933c857, + 0x59368c03, 0x4c180000, 0x59300203, 0x90003491, + 0x05a21c8d, 0x0c01f803, 0x5c003000, 0x1c01f000, + 0x0010c19d, 0x0010c70d, 0x0010c8e8, 0x0010c19d, + 0x0010c19d, 0x0010c19d, 0x0010c19d, 0x0010c19d, + 0x0010c1bd, 0x0010c19d, 0x0010c19d, 0x0010c19d, + 0x0010c19d, 0x0010c19d, 0x0010cff7, 0x0010c19d, + 0x0010c19d, 0x05a1fc78, 0x4933c857, 0x61fe89ff, + 0x813669c0, 0x05000002, 0x59368c03, 0x4c180000, + 0x59300203, 0x90003491, 0x05a21c6f, 0x0c01f803, + 0x5c003000, 0x1c01f000, 0x0010c1bb, 0x0010cb9c, + 0x0010c1bb, 0x0010c1bb, 0x0010c1bb, 0x0010c1bb, + 0x0010c1bb, 0x0010c1bb, 0x0010cae0, 0x0010d146, + 0x0010d17b, 0x0010d146, 0x0010d17b, 0x0010c1bb, + 0x0010d008, 0x0010c1bb, 0x0010c1bb, 0x05a1fc5a, + 0x05a1fc59, 0xb13834a0, 0x05a21c57, 0x41380000, + 0x493bc857, 0x4d1c0000, 0x4d400000, 0x0c01f804, + 0x5c028000, 0x5c023800, 0x1c01f000, 0x0010c22b, + 0x0010c4b4, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c4ba, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c22b, 0x0010c333, 0x0010c372, + 0x0010c384, 0x0010c3e5, 0x0010c429, 0x0010c45d, + 0x0010c47f, 0x0010c22b, 0x0010c22b, 0x0010c4bf, + 0x0010c22b, 0x0010c22b, 0x0010c4c8, 0x0010c4cd, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c55f, 0x0010c22b, 0x0010c22b, + 0x0010c412, 0x0010c22b, 0x0010c22b, 0x0010c52f, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c56a, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c5b2, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c22b, 0x0010c607, 0x0010c22b, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c313, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c31d, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c630, 0x0010c635, 0x0010c64d, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c329, 0x0010c22b, 0x0010c22b, + 0x0010c22c, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c2a6, 0x0010c22b, 0x0010c22b, 0x0010c22b, + 0x0010c22b, 0x0010c22b, 0x0010c22b, 0x05a1fbea, + 0x4933c857, 0x59cc0801, 0x82040580, 0x00fffffe, + 0x05020427, 0x0505ffa4, 0x05020425, 0x05b1fa69, + 0x05020423, 0x59a804d1, 0x8c000504, 0x05000262, + 0x4c5c0000, 0x59a808bb, 0x82040580, 0x00000228, + 0x050200b5, 0x59cc0800, 0x82040d00, 0x00ffffff, + 0x82040580, 0x00fffff0, 0x050200b1, 0x59cc0801, + 0x82040d00, 0x00ffffff, 0x82040580, 0x00fffffe, + 0x050200ad, 0x59cc0c07, 0x80040910, 0x90040581, + 0x050200ab, 0x59cc0a0a, 0x82040580, 0x00000228, + 0x050200af, 0x4c600000, 0x4c640000, 0x91ccbc0b, + 0x585c0c00, 0x82040580, 0x00000101, 0x0502003f, + 0x585c0a00, 0x90040584, 0x0502003e, 0x91ccc40d, + 0x58600c00, 0x82040580, 0x00000102, 0x0502003b, + 0x58600a00, 0x90040584, 0x0502003a, 0x91cccc0f, + 0x58640c00, 0x82040580, 0x00000103, 0x05000004, + 0x82040580, 0x00000203, 0x05020036, 0x58640a00, + 0x82040580, 0x00000200, 0x05020034, 0x585c0801, + 0x90040484, 0x05021033, 0x59cc0a07, 0x4807c857, + 0x4806621b, 0x58600201, 0x4803c857, 0x800001c0, + 0x05000026, 0x82000c80, 0x00000fff, 0x05021023, + 0x480354d2, 0x480352d1, 0x60643000, 0x61fc19ff, + 0x60182000, 0x4d200000, 0x417a4000, 0x05c1ff62, + 0x5c024000, 0x585cc801, 0x5860ba01, 0x91ccc410, + 0x497a641b, 0x0509fb8f, 0x59cc0c04, 0x48066202, + 0x656a6403, 0x64066203, 0x05e1fa9c, 0x59a804d1, + 0x84000542, 0x480354d1, 0x5c00c800, 0x5c00c000, + 0x5c00b800, 0x1c01f000, 0x4807c857, 0x05fdf7fb, + 0x4807c857, 0x05fdf7f9, 0x4807c857, 0x05fdf7f7, + 0x4807c857, 0x05fdf7f5, 0x4803c857, 0x05fdf7f3, + 0x4807c857, 0x05fdf7f1, 0x4807c857, 0x05fdf7ef, + 0x4807c857, 0x05fdf7ed, 0x4933c857, 0x59cc0801, + 0x82040580, 0x00fffffe, 0x050203ad, 0x0505ff2a, + 0x050203ab, 0x05b1f9ef, 0x050203a9, 0x0501fbde, + 0x050201e9, 0x4c5c0000, 0x59a808bb, 0x90040594, + 0x0502003d, 0x59cc0800, 0x82040d00, 0x00ffffff, + 0x82040580, 0x00fffff0, 0x05020039, 0x59cc0801, + 0x82040d00, 0x00ffffff, 0x82040580, 0x00fffffe, + 0x05020035, 0x59cc0c07, 0x80040910, 0x90040581, + 0x05020033, 0x59cc0a0a, 0x90040594, 0x05020038, + 0x59cc0c07, 0x82040d00, 0x000000ff, 0x90040582, + 0x0502002d, 0x59cc0a07, 0x4807c857, 0x4d300000, + 0x05d9fbba, 0x4130b800, 0x5c026000, 0x0500002e, + 0x485fc857, 0x585c0c07, 0x90040581, 0x0502002d, + 0x585c0a03, 0x90040582, 0x0502002d, 0x585c0c03, + 0xb0040598, 0x0502002d, 0x5930000a, 0x585c080a, + 0x80040580, 0x0502002c, 0x585c041b, 0x8c000508, + 0x0500002c, 0x59a804d1, 0x84000542, 0x480354d1, + 0x59cc0c04, 0x4804ba02, 0x6578bc03, 0x6404ba03, + 0x0009f810, 0x405e6000, 0x05e1fa3c, 0x5c00b800, + 0x1c01f000, 0x4807c857, 0x05fdf7fd, 0x4807c857, + 0x05fdf7fb, 0x4807c857, 0x05fdf7f9, 0x4807c857, + 0x0501f002, 0x4807c857, 0x641e641c, 0x657e6403, + 0x6402621c, 0x5c00b800, 0x0501f1ba, 0x4807c857, + 0x05fdf7fa, 0x4807c857, 0x640e641c, 0x05fdf7f8, + 0x4807c857, 0x640e641c, 0x05fdf7f5, 0x4807c857, + 0x640e641c, 0x05fdf7f2, 0x4807c857, 0x640e641c, + 0x05fdf7ef, 0x4807c857, 0x640e641c, 0x05fdf7ec, + 0x4807c857, 0x640e641c, 0x05fdf7e9, 0x4933c857, + 0x0505fec1, 0x05020342, 0x05b1f986, 0x05020340, + 0x59cc0407, 0x4802601e, 0x65166403, 0x64066203, + 0x05e1f20e, 0x4933c857, 0x0505feb7, 0x05020338, + 0x05b1f97c, 0x05020336, 0x0501fb6b, 0x05020176, + 0x59cc0007, 0x4802601e, 0x652a6403, 0x64066203, + 0x05e1f202, 0x4933c857, 0x0505feab, 0x0502032c, + 0x05b1f970, 0x0502032a, 0x0501fb5f, 0x0502016a, + 0x655a6403, 0x64066203, 0x05e1f1f8, 0x4933c857, + 0x05b1f968, 0x05020009, 0x05cdf806, 0x05020007, + 0x5932481d, 0x59240200, 0x90000503, 0x90000583, + 0x05000006, 0x0501f31a, 0x64266403, 0x6426641c, + 0x6402621c, 0x0501f177, 0x05cdf9ce, 0x05000025, + 0x59340200, 0x8c00051a, 0x05000004, 0x5934000a, + 0x84000560, 0x4802680a, 0x0505f9b5, 0x05020024, + 0x0509fd85, 0x05020006, 0x60a68000, 0x4d3c0000, + 0x417a7800, 0x05b1f872, 0x5c027800, 0x42000000, + 0x001123fa, 0x0509fc02, 0x41780800, 0x05c9fce5, + 0x64226403, 0x600c3000, 0x59240400, 0x8c00050a, + 0x0502015c, 0x59cc400b, 0x59cc380c, 0x59cc180d, + 0x59cc080e, 0x9c2041c0, 0x9c1c39c0, 0x9c0c19c0, + 0x9c0409c0, 0x641e6203, 0x41782800, 0x0501f14a, + 0x0505fb53, 0x05fe07e1, 0x64266403, 0x643a641c, + 0x4a02621c, 0x00001900, 0x0501f14a, 0x64266403, + 0x640e641c, 0x0501f147, 0x4933c857, 0x05b1f929, + 0x050202e3, 0x05c9ffc7, 0x050202e1, 0x493a6403, + 0x0505f90d, 0x05020007, 0x641a6403, 0x59240400, + 0x8c00050a, 0x0502013b, 0x641e6203, 0x0509f186, + 0x641e6403, 0x6426641c, 0x6402621c, 0x0501f135, + 0x4933c857, 0x05c9ffb7, 0x050202d1, 0x5934000a, + 0x82000500, 0x00010000, 0x82000580, 0x00010000, + 0x05060e49, 0x05b0090f, 0x050202c9, 0x59cc0001, + 0x82000500, 0x00ffff00, 0x82000580, 0x00fffc00, + 0x05020007, 0x59a80006, 0x8c00050e, 0x05000004, + 0x59240400, 0x8c00050a, 0x05020036, 0x05cdf975, + 0x05020003, 0x60067800, 0x05c9fb58, 0x05cdf964, + 0x05000004, 0x82000580, 0x00000703, 0x05020032, + 0x59cc0206, 0x90003503, 0x05020034, 0x90003494, + 0x05001032, 0x59a830bb, 0x80183480, 0x0500102f, + 0x5934300a, 0x84183516, 0x90000594, 0x05020002, + 0x84183556, 0x481a680a, 0x59cc0406, 0x90000503, + 0x05020026, 0x0505f998, 0x0502002b, 0x05cdf937, + 0x05020006, 0x4c600000, 0x4178c000, 0x417a7800, + 0x05b1f87f, 0x5c00c000, 0x916c0583, 0x05020006, + 0x60183000, 0x0509f918, 0x42000000, 0x001123f9, + 0x0509fb93, 0x05c9fcec, 0x642a6403, 0x60803000, + 0x59cc1a0a, 0x41780800, 0x41784000, 0x41783800, + 0x59240400, 0x8c00050a, 0x050200ea, 0x05fdf796, + 0x642e6403, 0x642e641c, 0x4a02621c, 0x00002c00, + 0x0501f0e4, 0x642e6403, 0x6426641c, 0x4a02621c, + 0x00001e00, 0x0501f0df, 0x42000000, 0x0011234c, + 0x0509fb7b, 0x642e6403, 0x641e641c, 0x6402621c, + 0x0501f0d8, 0x642e6403, 0x640e641c, 0x6402621c, + 0x0501f0d4, 0x4933c857, 0x05c9ff56, 0x05020270, + 0x0505fded, 0x0502026e, 0x05b1f8b2, 0x0502026c, + 0x59cc0206, 0x90003503, 0x0502001b, 0x90003494, + 0x05001019, 0x59a830bb, 0x80180480, 0x05001016, + 0x59cc0406, 0x90000503, 0x05020013, 0x59340400, + 0x82000580, 0x00000707, 0x05000013, 0x417a7800, + 0x4c600000, 0x4178c000, 0x05b1f83d, 0x5c00c000, + 0x60283000, 0x0509f8d8, 0x42000000, 0x001123f6, + 0x0509fb53, 0x64326403, 0x41782800, 0x60843000, + 0x05fdf7c4, 0x64366403, 0x641e641c, 0x6402621c, + 0x0501f0ac, 0x64366403, 0x6426641c, 0x4a02621c, + 0x00001e00, 0x0501f0a7, 0x4933c857, 0x05c9ff29, + 0x05020243, 0x0505fdc0, 0x05020241, 0x05b1f885, + 0x0502023f, 0x0501fa74, 0x0502000a, 0x493a6403, + 0x0501fa7a, 0x05020003, 0x64ba6403, 0x05fdf75c, + 0x64366403, 0x641e641c, 0x6402621c, 0x0501f095, 0x64366403, 0x6426641c, 0x4a02621c, 0x00001e00, - 0x0501f099, 0x4933c857, 0x05cdfb98, 0x05020232, - 0x0505fd57, 0x05020230, 0x05b1fece, 0x0502022e, - 0x0501fa63, 0x0502000a, 0x493a6403, 0x0501fa69, - 0x05020003, 0x64ba6403, 0x05fdf75c, 0x64366403, - 0x641e641c, 0x6402621c, 0x0501f087, 0x64366403, - 0x6426641c, 0x4a02621c, 0x00001e00, 0x0501f082, - 0x4933c857, 0x05cdfb81, 0x05fe0713, 0x59240200, - 0x90000503, 0x90000583, 0x05020217, 0x05cdfceb, - 0x05020027, 0x0505f8ec, 0x0502000b, 0x643a6403, - 0x59240400, 0x8c00050a, 0x05020073, 0x61483000, - 0x59cc4008, 0x59cc3809, 0x59cc180a, 0x59cc080b, - 0x05fdf724, 0x4933c857, 0x600c3000, 0x0509f824, - 0x4d3c0000, 0x417a7800, 0x05b1fdca, 0x5c027800, - 0x42000000, 0x0010e454, 0x0509fa76, 0x59340200, - 0x84000558, 0x48026a00, 0x602c0800, 0x05c9ff82, - 0x59240400, 0x8c00050a, 0x05020057, 0x601c3000, - 0x0501f04c, 0x4933c857, 0x643e6403, 0x640e641c, - 0x4a02621c, 0x00001e00, 0x0501f053, 0x59340400, - 0x82000580, 0x00000703, 0x05fc07f7, 0x0501f02f, - 0x4933c857, 0x05cdfb4d, 0x050201e7, 0x5932481d, - 0x59240200, 0x90000503, 0x90000583, 0x050201e2, - 0x05cdfcad, 0x05020021, 0x0505f8ca, 0x05040864, - 0x05020004, 0x64426403, 0x61403000, 0x05fdf6ee, - 0x4d3c0000, 0x417a7800, 0x05b1fd9e, 0x5c027800, - 0x600c3000, 0x0505fff2, 0x42000000, 0x0010e454, - 0x0509fa48, 0x59340200, 0x84000558, 0x48026a00, - 0x05fdf7d4, 0x64466403, 0x640e641c, 0x4a02621c, - 0x00001e00, 0x0501f02c, 0x4933c857, 0x05b1fe65, - 0x05040ceb, 0x050201c4, 0x0501f9f9, 0x05020007, - 0x644a6403, 0x0501f024, 0x59340400, 0x82000580, - 0x00000703, 0x05fc07f0, 0x83340580, 0x00110210, - 0x05000008, 0x4d3c0000, 0x417a7800, 0x60a68000, - 0x05b1fd7c, 0x5c027800, 0x605c3000, 0x0505ffd0, - 0x42000000, 0x0010e454, 0x0509fa26, 0x05b5f860, - 0x59240400, 0x8c00050a, 0x0502000b, 0x60183000, - 0x60a68000, 0x4933c857, 0x64066403, 0x641e6203, - 0x41782800, 0x0501f002, 0x611a8000, 0x0505f9dc, - 0x0505f7e4, 0x4933c857, 0x64066403, 0x602c0800, - 0x05c9ff25, 0x64066203, 0x05e1f2a7, 0x4933c857, - 0x60240800, 0x05c9ff20, 0x64166403, 0x05fdf7fa, - 0x0505fcbb, 0x05020194, 0x05b1fe32, 0x05020192, - 0x0501f9c7, 0x05fe07d5, 0x64826403, 0x64066203, - 0x05e1f299, 0x05b1fe2b, 0x0502018b, 0x648e6403, - 0x64066203, 0x05e1f294, 0x0505fcad, 0x05b00e25, - 0x05020185, 0x0501f9ba, 0x05fe07c8, 0x59cc0807, - 0x82040500, 0x00ffff00, 0x0502000a, 0x59340212, - 0x82000500, 0x0000ff00, 0x05000006, 0x5932481d, - 0x59240005, 0x82000500, 0x000000ff, 0x0501f003, - 0x5932481d, 0x59240005, 0x82040d00, 0x00ffffff, - 0x80040580, 0x05020015, 0x59cc1408, 0x05f9fb62, - 0x0500002f, 0x591c0202, 0x82001580, 0x0000ffff, - 0x05000004, 0x59cc1208, 0x80080580, 0x05020028, - 0x591c000a, 0x81340580, 0x05020025, 0x591c0416, - 0x8c00051a, 0x05020018, 0x591c0407, 0x90000587, - 0x0502001f, 0x0501f02f, 0x59cc1208, 0x82080580, - 0x0000ffff, 0x05000015, 0x05f9fb4b, 0x05000018, - 0x59cc1408, 0x591c0202, 0x80080580, 0x0502002b, - 0x831c0580, 0xffffffff, 0x05000026, 0x591c000a, + 0x0501f090, 0x4933c857, 0x05c9ff12, 0x05fe0713, + 0x59240200, 0x90000503, 0x90000583, 0x05020228, + 0x05cdf8d3, 0x05020027, 0x0505f922, 0x0502000b, + 0x643a6403, 0x59240400, 0x8c00050a, 0x05020081, + 0x61483000, 0x59cc4008, 0x59cc3809, 0x59cc180a, + 0x59cc080b, 0x05fdf724, 0x4933c857, 0x600c3000, + 0x0509f8a0, 0x4d3c0000, 0x417a7800, 0x05adff80, + 0x5c027800, 0x42000000, 0x001123f8, 0x0509fb10, + 0x59340200, 0x84000558, 0x48026a00, 0x602c0800, + 0x05c9fab4, 0x59240400, 0x8c00050a, 0x05020065, + 0x601c3000, 0x0501f05a, 0x4933c857, 0x643e6403, + 0x640e641c, 0x4a02621c, 0x00001e00, 0x0501f061, + 0x59340400, 0x82000580, 0x00000703, 0x05fc07f7, + 0x0501f03d, 0x4933c857, 0x05c9fede, 0x050201f8, + 0x5932481d, 0x59240200, 0x90000503, 0x90000583, + 0x050201f3, 0x05cdf895, 0x0502002f, 0x0505f900, + 0x05040897, 0x05020004, 0x64426403, 0x61403000, + 0x05fdf6ee, 0x4d3c0000, 0x417a7800, 0x05adff54, + 0x5c027800, 0x600c3000, 0x0509f86e, 0x42000000, + 0x001123f8, 0x0509fae2, 0x59340200, 0x84000558, + 0x48026a00, 0x05fdf7d4, 0x64466403, 0x640e641c, + 0x4a02621c, 0x00001e00, 0x0501f03a, 0x4933c857, + 0x05b1f81c, 0x05040d54, 0x050201d5, 0x59cc0006, + 0x82000500, 0xff000000, 0x82000d80, 0x18000000, + 0x05020006, 0x6426641c, 0x4a02621c, 0x00002c00, + 0x64266403, 0x0501f02b, 0x82000d80, 0x81000000, + 0x05000003, 0x0501f9fc, 0x05020007, 0x644a6403, + 0x0501f024, 0x59340400, 0x82000580, 0x00000703, + 0x05fc07e2, 0x83340580, 0x001141b4, 0x05000008, + 0x4d3c0000, 0x417a7800, 0x60a68000, 0x05adff24, + 0x5c027800, 0x605c3000, 0x0509f83e, 0x42000000, + 0x001123f8, 0x0509fab2, 0x05b1fa0d, 0x59240400, + 0x8c00050a, 0x0502000b, 0x60183000, 0x60a68000, + 0x4933c857, 0x64066403, 0x641e6203, 0x41782800, + 0x0501f002, 0x611a8000, 0x0505fa34, 0x0509f052, + 0x4933c857, 0x64066403, 0x602c0800, 0x05c9fa49, + 0x64066203, 0x05e1f071, 0x4933c857, 0x60240800, + 0x05c9fa44, 0x64166403, 0x05fdf7fa, 0x0505fd16, + 0x05020197, 0x05adffdb, 0x05020195, 0x0501f9ca, + 0x05fe07d5, 0x64826403, 0x64066203, 0x05e1f063, + 0x05adffd4, 0x0502018e, 0x648e6403, 0x64066203, + 0x05e1f05e, 0x0505fd08, 0x05ac0fce, 0x05020188, + 0x0501f9bd, 0x05fe07c8, 0x59cc0807, 0x82040500, + 0x00ffff00, 0x0502000a, 0x59340212, 0x82000500, + 0x0000ff00, 0x05000006, 0x5932481d, 0x59240005, + 0x82000500, 0x000000ff, 0x0501f003, 0x5932481d, + 0x59240005, 0x82040d00, 0x00ffffff, 0x80040580, + 0x05020015, 0x59cc1408, 0x05f9fa0f, 0x0500002f, + 0x591c0202, 0x82001580, 0x0000ffff, 0x05000004, + 0x59cc1208, 0x80080580, 0x05020028, 0x591c000a, 0x81340580, 0x05020025, 0x591c0416, 0x8c00051a, - 0x05000013, 0x82000500, 0xffff1fff, 0x48023c16, - 0x491e602a, 0x0501f01b, 0x59cc1408, 0x41780000, - 0x0501fe2a, 0x05fe07ef, 0x0501f016, 0x649a6403, - 0x4a02621c, 0x00001700, 0x59cc1208, 0x82081580, - 0x0000ffff, 0x05fe079c, 0x0501f00e, 0xa11c0494, - 0x05000002, 0x0500100b, 0x591c0407, 0x90000587, - 0x05fe07f3, 0x591c0403, 0x900005a4, 0x05020005, - 0x4d300000, 0x411e6000, 0x0005ffdc, 0x5c026000, - 0x64966403, 0x05fdf78c, 0x59cc1408, 0x41780000, - 0x0501fe0e, 0x05fe07e6, 0x05fdf7fa, 0x4933c857, - 0x4d3c0000, 0x60067800, 0x05c9fe9d, 0x5c027800, - 0x4c580000, 0x6008b000, 0x91a81c02, 0x91cc140b, - 0x05f1f9fb, 0x5c00b000, 0x05000003, 0x64c66403, - 0x05fdf779, 0x0005ffdc, 0x6008b000, 0x91a81c00, - 0x91cc140d, 0x05f1f9f2, 0x0502000c, 0x05d9fc44, + 0x05020018, 0x591c0407, 0x90000587, 0x0502001f, + 0x0501f02c, 0x59cc1208, 0x82080580, 0x0000ffff, + 0x05000015, 0x05f9f9f8, 0x05000018, 0x59cc1408, + 0x591c0202, 0x80080580, 0x05020028, 0x831c0580, + 0xffffffff, 0x05000023, 0x591c000a, 0x81340580, + 0x05020022, 0x591c0416, 0x8c00051a, 0x05000013, + 0x82000500, 0xffff1fff, 0x48023c16, 0x491e602a, + 0x0501f018, 0x59cc1408, 0x41780000, 0x0501fe38, + 0x05fe07ef, 0x0501f013, 0x649a6403, 0x4a02621c, + 0x00001700, 0x59cc1208, 0x82081580, 0x0000ffff, + 0x05fe079c, 0x0501f00b, 0x591c0407, 0x90000587, + 0x05fe07f6, 0x591c0403, 0x900005a4, 0x05020005, + 0x4d300000, 0x411e6000, 0x0009f810, 0x5c026000, + 0x64966403, 0x05fdf78f, 0x59cc1408, 0x41780000, + 0x0501fe1f, 0x05fe07e9, 0x05fdf7fa, 0x4933c857, + 0x4d3c0000, 0x60067800, 0x05c9f9c4, 0x5c027800, + 0x4c580000, 0x6008b000, 0x91241c01, 0x91cc140b, + 0x05f1f854, 0x5c00b000, 0x05000003, 0x64c66403, + 0x05fdf77c, 0x0009f810, 0x6008b000, 0x91241c03, + 0x91cc140d, 0x05f1f84b, 0x0502000c, 0x05d9f946, 0x0500000a, 0x59300407, 0x90000581, 0x05020007, 0x59300403, 0x90000582, 0x05020004, 0x5930000a, - 0x81340580, 0x00040fdc, 0x05d1fa4c, 0x05020009, - 0x05d1fa56, 0x05020005, 0x64075042, 0x6006d800, - 0x05d1f9c9, 0x0501f003, 0x60040000, 0x05d1fa1c, - 0x1c01f000, 0x05b1fd97, 0x050200f7, 0x0501f92c, - 0x05fe073a, 0x493a6403, 0x0501f986, 0x05020003, - 0x64ae6403, 0x05fdf754, 0x64b26403, 0x05fdf752, - 0x4933c857, 0x05d9ff39, 0x050200eb, 0x05b1fd89, - 0x050200e9, 0x05cdfba8, 0x05fe072c, 0x59cc0408, - 0x4802641b, 0x59cc0208, 0x4802621b, 0x59cc0807, - 0x59340002, 0x82000500, 0x00ffffff, 0x80040580, - 0x0500001d, 0x5932481d, 0x59240005, 0x80040580, - 0x05020029, 0x59cc1408, 0x05f9facb, 0x0500002b, - 0x831c0580, 0xffffffff, 0x05000005, 0x0505fb01, - 0x05000026, 0x0505fed1, 0x05000024, 0x491e602a, - 0x64da6403, 0x59340200, 0x8c00050e, 0x05000009, - 0x831c0580, 0xffffffff, 0x050000c3, 0x591c0203, - 0x90001584, 0x05020003, 0x64066006, 0x1c01f000, - 0x0501f0bd, 0x59cc1208, 0x82080580, 0x0000ffff, - 0x05000008, 0x05f9fab0, 0x05000010, 0x591c0202, - 0x59cc0c08, 0x80040580, 0x0502000c, 0x05fdf7e1, - 0x59cc1408, 0x60040000, 0x0501fd9c, 0x05000007, - 0x05fdf7dc, 0x4803c856, 0x6426641c, 0x4a02621c, - 0x00001500, 0x0501f005, 0x4803c856, 0x640e641c, - 0x4a02621c, 0x00001700, 0x64de6403, 0x0501f0a2, - 0x4933c857, 0x05d9fef1, 0x050200a3, 0x05b1fd41, - 0x050200a1, 0x05cdfb60, 0x05fe06e4, 0x05cdf9f1, - 0x05000045, 0x59cc0407, 0x4802641b, 0x59cc1207, - 0x480a621b, 0x82080580, 0x0000ffff, 0x05000004, - 0x05f9fa89, 0x05000036, 0x0501f008, 0x59cc1407, - 0x60040000, 0x0501fd79, 0x05000031, 0x831c0580, - 0xffffffff, 0x0500002e, 0x59cc0c07, 0x591c0202, - 0x80040580, 0x0502002a, 0x0505fe88, 0x05000028, - 0x591c0416, 0x8c000516, 0x0502002f, 0x4d300000, - 0x411e6000, 0x05f5f927, 0x5c026000, 0x641e3a03, - 0x59cc0c09, 0x82040d00, 0x0000ff00, 0x840409c0, - 0x90040581, 0x05000009, 0x90040585, 0x0500000b, - 0x90040587, 0x05020011, 0x42000000, 0x0010e43c, - 0x0509f8e8, 0x0501f008, 0x42000000, 0x0010e43b, - 0x0509f8e4, 0x0501f007, 0x42000000, 0x0010e43a, - 0x0509f8e0, 0x591c0009, 0x80000540, 0x05000003, - 0x59cc2808, 0x0505f2a5, 0x4803c856, 0x6426641c, - 0x4a02621c, 0x00002a00, 0x0501f005, 0x4803c856, - 0x640e641c, 0x4a02621c, 0x00000300, 0x64ee6403, - 0x0501f055, 0x4803c856, 0x642e641c, 0x6402621c, - 0x05fdf7fb, 0x4803c856, 0x641e641c, 0x6402621c, - 0x05fdf7f7, 0x59cc0001, 0x82000580, 0x00fffffe, - 0x0502004d, 0x4c080000, 0x05cdf9b0, 0x05000021, - 0x05cdf991, 0x0505fbf6, 0x0502001c, 0x5932481d, - 0x59240200, 0x82000540, 0x000000e0, 0x48024a00, - 0x59a80249, 0x90000543, 0x48035249, 0x59a80046, - 0x800000d0, 0x59a8083d, 0x82040d00, 0x000000ff, - 0x80041540, 0x480b503d, 0x600c0800, 0x05e1fe12, - 0x497b504b, 0x8d0c0520, 0x05000004, 0x4a032804, - 0x000007d0, 0x0501f001, 0x0005ffdc, 0x05b1fd8e, - 0x5c001000, 0x1c01f000, 0x0505fbf3, 0x05fdf7fd, - 0x5c001000, 0x0005f7dc, 0x0501f82c, 0x05000026, - 0x653a6403, 0x64066203, 0x05e1f12f, 0x05cdfaee, - 0x05fe0666, 0x653e6403, 0x497a601e, 0x59cc0a06, - 0x82040d00, 0x000000ff, 0x800409c0, 0x05fc067e, - 0x90040581, 0x05020005, 0x59cc0808, 0x59a80005, - 0x80040580, 0x05fc0678, 0x90040582, 0x05020006, - 0x91cc140b, 0x6008b000, 0x91341c06, 0x05f1f8f0, - 0x05fc0671, 0x6406601e, 0x05fdf66f, 0x05cdfad6, - 0x05fe064e, 0x65426403, 0x59cc0207, 0x4802601e, - 0x05fdf669, 0x64066203, 0x42000800, 0x80000040, - 0x0005f6ab, 0x4803c857, 0x42000000, 0x0010e448, - 0x0509f874, 0x0005f7dc, 0x4d2c0000, 0x4c500000, - 0x4c580000, 0x4c540000, 0x59a800b6, 0x82000c80, - 0x00000841, 0x05021021, 0x05a5f9ff, 0x0500001f, - 0x492e6009, 0x59a800b6, 0x48025805, 0x90000403, - 0x80000104, 0x91cca406, 0x90000c87, 0x05001010, - 0x641e5811, 0x601cb000, 0x912c0409, 0x4000a800, - 0x0509f927, 0x412c7000, 0x800409c0, 0x05020003, - 0x49787001, 0x0501f00b, 0x05a5f9eb, 0x0500000b, - 0x492c7001, 0x40040000, 0x05fdf7f0, 0x48025811, - 0x4000b000, 0x912c0409, 0x4000a800, 0x0509f918, - 0x90000541, 0x0501f005, 0x497b50b6, 0x59325809, - 0x05a5fa07, 0x80000580, 0x5c00a800, 0x5c00b000, - 0x5c00a000, 0x5c025800, 0x1c01f000, 0x4d340000, - 0x5932680a, 0x59343400, 0x4933c857, 0x4937c857, - 0x481bc857, 0x05cdfa90, 0x5c026800, 0x1c01f000, - 0x4933c857, 0x4c600000, 0x4d3c0000, 0x4d440000, - 0x4d340000, 0x0501f858, 0x05020046, 0x59cc0207, - 0x82000d00, 0x0000ff00, 0x900411c0, 0x59cc000a, - 0x82000500, 0x00ffffff, 0x80081540, 0x480a601e, - 0x8c040518, 0x05000011, 0x60203000, 0x0505fdbf, - 0x42000000, 0x0010e453, 0x0509f822, 0x59240400, - 0x8c00050a, 0x05020005, 0x60082800, 0x60903000, - 0x611a8000, 0x0501ffde, 0x6004c000, 0x417a7800, - 0x05b1fbe0, 0x0501f02d, 0x8c04051a, 0x05000029, - 0x59cc000a, 0x59cc3800, 0x821c3d00, 0x00ffffff, - 0x05d9f902, 0x05cc0aac, 0x05020022, 0x5930001d, - 0x4c000000, 0x05cdfaa0, 0x4926601d, 0x5930000a, - 0x4c000000, 0x59240c00, 0x8c04050a, 0x0502000b, - 0x59340c03, 0x59341802, 0x820c1d00, 0x00ffffff, - 0x58002403, 0x60102800, 0x60903000, 0x611a8000, - 0x41301000, 0x0501ffca, 0x4936600a, 0x60243000, - 0x0505fd98, 0x42000000, 0x0010e453, 0x0505fff5, - 0x417a7800, 0x4178c000, 0x05b1fbba, 0x5c000000, - 0x4802600a, 0x5c000000, 0x4802601d, 0x0501f003, - 0x90000541, 0x0501f002, 0x80000580, 0x5c026800, - 0x5c028800, 0x5c027800, 0x5c00c000, 0x1c01f000, - 0x4933c857, 0x59cc0206, 0x90000490, 0x05021004, - 0x6402621c, 0x90000541, 0x0501f002, 0x80000580, - 0x1c01f000, 0x4933c857, 0x6402621c, 0x59cc0407, - 0x82000500, 0x0000ff00, 0x82000580, 0x00000800, - 0x0502000d, 0x59cc0206, 0x59a808b6, 0x80040480, - 0x0500100a, 0x59cc0006, 0x82000500, 0x00ff0000, - 0x82000d80, 0x00140000, 0x05000003, 0x82000d80, - 0x00100000, 0x1c01f000, 0x42000000, 0x0010e448, - 0x0505ffc4, 0x90000541, 0x05fdf7fb, 0x59300403, - 0xb00034a0, 0x05a21dbd, 0x91383593, 0x05020006, - 0x4803c857, 0x4c000000, 0x0505fe36, 0x5c000000, - 0x0c01f029, 0x4933c857, 0x493bc857, 0x913835a7, - 0x0500000d, 0x91383594, 0x0500000b, 0xb13805a1, - 0x05000003, 0xb13805a0, 0x05a20dac, 0x05e5f88a, - 0x05ea0404, 0x59300203, 0x9000058e, 0x05f40618, - 0x05a1fda6, 0x493bc857, 0x4937c857, 0x0505fe1f, - 0x05cdf875, 0x601c0800, 0x05c9fcb3, 0x05e1fc2e, - 0x4d2c0000, 0x0505fe6d, 0x0502000d, 0x59325809, - 0x812e59c0, 0x05020003, 0x5c025800, 0x05e1f02e, - 0x05f5fc85, 0x05a00d95, 0x05f9fb11, 0x05a20d93, - 0x64c65a0a, 0x64125810, 0x0001fb82, 0x5c025800, - 0x05e9f384, 0x0010c0ad, 0x0010c0ee, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ee, 0x0010c0ff, - 0x0010c1d1, 0x0010c152, 0x0010c1d1, 0x0010c16b, - 0x0010c1d1, 0x0010c170, 0x0010c1d1, 0x0010c173, - 0x0010c1d1, 0x0010c173, 0x0010c1d1, 0x0010c1d1, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0ee, - 0x0010c0ad, 0x0010c1d1, 0x0010c0ad, 0x0010c0ad, - 0x0010c1d1, 0x0010c0ad, 0x0010c1b7, 0x0010c1d1, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, - 0x0010c1d1, 0x0010c1d1, 0x0010c0ad, 0x0010c1d1, - 0x0010c1d1, 0x0010c0ad, 0x0010c0fa, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c175, - 0x0010c1d1, 0x0010c0ad, 0x0010c0ad, 0x0010c19d, - 0x0010c1d1, 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0e1, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0e1, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0e1, - 0x0010c0e1, 0x0010c0e1, 0x0010c0ad, 0x0010c0ad, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0e1, - 0x0010c0ad, 0x0010c0ad, 0x0010c0ad, 0x0010c0bc, - 0x0010c0d7, 0x0010c0ae, 0x0010c0ad, 0x0010c0ad, - 0x0010c1d1, 0x05a1fd2d, 0x4933c857, 0x05f5ffef, - 0x05000007, 0x4a02601c, 0x0010c0b7, 0x59a8005e, - 0x48026205, 0x643a6203, 0x1c01f000, 0x640a6203, - 0x59a8005c, 0x800000c4, 0x48026006, 0x1c01f000, - 0x4933c857, 0x05f5ffe1, 0x05000007, 0x4a02601c, - 0x0010c0c5, 0x59a8005e, 0x48026205, 0x643a6203, - 0x1c01f000, 0x916c0583, 0x0502000a, 0x5930041b, - 0x4803c857, 0x9000050f, 0x0500000a, 0x9000050c, - 0x05000004, 0x4803c857, 0x05f9ffd8, 0x0501f005, - 0x4803c857, 0x65726403, 0x64066203, 0x05ddf79e, - 0x4933c857, 0x0005ffdc, 0x1c01f000, 0x4933c857, - 0x05f5fbf1, 0x050000f8, 0x4d2c0000, 0x59325809, - 0x64025a0a, 0x0001fb82, 0x5c025800, 0x497a6009, - 0x0501f0f1, 0x05f5ffbd, 0x05000007, 0x59a8005e, - 0x48026205, 0x643a6203, 0x59a8005c, 0x48026006, - 0x1c01f000, 0x4d2c0000, 0x59325809, 0x05a5f8b0, - 0x5c025800, 0x0005f7dc, 0x59a8005c, 0x48026006, - 0x05f5ffae, 0x05000007, 0x4a02601c, 0x0010c0f8, - 0x59a8005e, 0x48026205, 0x643a6203, 0x1c01f000, - 0x640a6203, 0x1c01f000, 0x4d3c0000, 0x417a7800, - 0x05c9fbe7, 0x5c027800, 0x0501f0d3, 0x05cdf93b, - 0x050000d1, 0x59a80249, 0x8c000508, 0x0500000e, - 0x5932680a, 0x4c580000, 0x6008b000, 0x91a81c02, - 0x91341406, 0x05edff3e, 0x80000540, 0x5c00b000, - 0x050200c5, 0x59340200, 0x8400051a, 0x48026a00, - 0x0501f037, 0x599c0017, 0x8c00050a, 0x05020007, - 0x4d3c0000, 0x417a7800, 0x05c9fbcd, 0x5c027800, - 0x601c0800, 0x05c9fbd4, 0x59340212, 0x82000500, - 0x0000ff00, 0x0502001e, 0x83440d80, 0x000007fe, - 0x050200b1, 0x05b1fcf6, 0x05c5f9f6, 0x05000009, - 0x59240200, 0x8c00051e, 0x05000010, 0x59300809, - 0x4d300000, 0x05b1fe68, 0x5c026000, 0x0501f0a6, - 0x59a80249, 0x8c000514, 0x050000a3, 0x83240580, - 0x0010e512, 0x05020005, 0x4d300000, 0x05b1fb6d, - 0x5c026000, 0x0501f09c, 0x59a82249, 0x8c100514, - 0x05000099, 0x05b1fcd5, 0x0501f097, 0x599c0017, - 0x8c00050a, 0x05020094, 0x599c0019, 0x8c00050e, - 0x05020091, 0x416c0000, 0x90000582, 0x05020004, - 0x59a80044, 0x80000000, 0x48035044, 0x600c0800, - 0x05c9fba5, 0x64066407, 0x64066203, 0x640a6403, - 0x05ddff25, 0x4ce80000, 0x6005d000, 0x05d9fd7e, - 0x5c01d000, 0x1c01f000, 0x59340200, 0x8400051a, - 0x48026a00, 0x05cdf8dc, 0x0500007b, 0x60100800, - 0x05c9fb95, 0x0505fc46, 0x05020077, 0x05f5ff43, - 0x05000009, 0x59a8005e, 0x48026205, 0x643a6203, - 0x59a8005c, 0x48026006, 0x4a02601c, 0x0010c165, - 0x1c01f000, 0x60140800, 0x05c9fb87, 0x64066407, - 0x64066203, 0x640e6403, 0x05ddf707, 0x05cdf8cf, - 0x05020065, 0x60180800, 0x0501f86c, 0x0501f062, - 0x60100800, 0x05c9fb7c, 0x05fdf78f, 0x05c9ff3a, - 0x0501f05d, 0x4d300000, 0x05f5ff28, 0x0500000c, - 0x5930082a, 0x40066000, 0x59300416, 0x8c00051e, - 0x05020003, 0x5c026000, 0x0501f055, 0x5c026000, - 0x4a02601c, 0x0010c185, 0x0501f051, 0x5c026000, - 0x0005f7dc, 0x4c340000, 0x41306800, 0x05e9fa7c, - 0x05000012, 0x64066203, 0x647a6403, 0x58340c1b, - 0x4806641b, 0x58340a1b, 0x4806621b, 0x5834002a, - 0x4802602a, 0x5834080a, 0x4806600a, 0x5834081d, - 0x4806601d, 0x05f5fefa, 0x64126407, 0x42000800, - 0x80000040, 0x0005feab, 0x40366000, 0x5c006800, - 0x0005f7dc, 0x5930082a, 0x4807c857, 0x800409c0, - 0x05000031, 0x5804001e, 0x81300580, 0x0502002e, - 0x4978081e, 0x58041416, 0x8c080516, 0x0500002a, - 0x8c080514, 0x05000028, 0x84081516, 0x48080c16, - 0x58065809, 0x812e59c0, 0x05000023, 0x492fc857, - 0x4d300000, 0x40066000, 0x641e6203, 0x417a7800, - 0x0005fe2d, 0x5c026000, 0x0501f01b, 0x05f5fee7, - 0x000407dc, 0x5930002a, 0x80000540, 0x05000018, - 0x4c340000, 0x40006800, 0x58340407, 0x5c006800, - 0x90000583, 0x000607dc, 0x4a02601c, 0x0010c1c5, - 0x0501f00f, 0x4d300000, 0x4d1c0000, 0x5932382a, - 0x05e9fa3b, 0x05000004, 0x4a026416, 0x00000100, - 0x05f5fd84, 0x5c023800, 0x5c026000, 0x0005f7dc, - 0x05c9fb1d, 0x05f5fecd, 0x000407dc, 0x497a601c, - 0x59a8005e, 0x48026205, 0x643a6203, 0x59a8005c, - 0x48026006, 0x1c01f000, 0x4933c857, 0x4807c857, - 0x05c9fb11, 0x4d3c0000, 0x417a7800, 0x05c9fb04, - 0x5c027800, 0x5934000a, 0x84000520, 0x4802680a, - 0x05c9f6c9, 0x59340400, 0x4803c857, 0x80000110, - 0x9000348c, 0x05a21bf1, 0x91383595, 0x05020002, - 0x0c01f004, 0x91383596, 0x05a20bec, 0x0c01f00d, - 0x00109b47, 0x00109b47, 0x00109b47, 0x00109b47, - 0x0010ce6d, 0x00109b47, 0x0010c22a, 0x0010c208, - 0x00109b47, 0x00109b47, 0x00109b47, 0x00109b47, - 0x00109b47, 0x00109b47, 0x00109b47, 0x00109b47, - 0x0010ce6d, 0x00109b47, 0x0010c22a, 0x0010c23b, - 0x00109b47, 0x00109b47, 0x00109b47, 0x00109b47, - 0x4933c857, 0x5932481d, 0x59240400, 0x8c000508, - 0x05000014, 0x813669c0, 0x05000012, 0x59340212, - 0x82000500, 0x0000ff00, 0x0500000e, 0x599c0019, - 0x8c00050e, 0x0502000b, 0x4d3c0000, 0x417a7800, - 0x05c9facb, 0x5c027800, 0x600c0800, 0x05c9fad2, - 0x64066407, 0x64066203, 0x640a6403, 0x05ddf652, - 0x59cc0001, 0x59340802, 0x80040580, 0x82000500, - 0x00ffffff, 0x000607dc, 0x59345002, 0x05c9f861, - 0x482a6802, 0x0005f7dc, 0x4933c857, 0x59303403, - 0x9018359e, 0x0502000d, 0x91383595, 0x000607dc, - 0x4c340000, 0x5930682a, 0x803469c0, 0x05000005, - 0x58343416, 0x82183500, 0xffff1fff, 0x48186c16, - 0x5c006800, 0x0005f7dc, 0x1c01f000, 0x4933c857, - 0x05edfbfe, 0x000607dc, 0x64066203, 0x64066403, - 0x05ddf631, 0x493bc857, 0xb1380591, 0x05020007, - 0x05e1fe75, 0x05ea01ef, 0x59300203, 0x90000582, - 0x05000062, 0x05a1fb91, 0x913805a7, 0x05000015, - 0xb1380588, 0x0500000d, 0x91380594, 0x05000011, - 0xb13805a1, 0x05000003, 0xb13805a0, 0x05a20b87, - 0x05e1fe65, 0x05ea01df, 0x59300203, 0x9000058e, - 0x05000675, 0x05a1fb81, 0x05e1fe5f, 0x05ea01d9, - 0x59300203, 0x90000584, 0x0008014a, 0x05a1fb7b, - 0x4933c857, 0x59300403, 0xb0000c84, 0x05a21b77, - 0xb0000480, 0x05a01b75, 0x40027000, 0x4803c857, - 0x0c01f001, 0x0010c26d, 0x0010c26e, 0x0010c26e, - 0x0010c284, 0x05a1fb6d, 0x05e1f9fb, 0x59325809, - 0x812e59c0, 0x05000012, 0x832c0500, 0x00ff0000, - 0x0500000f, 0x640a6203, 0x5932680a, 0x59340200, - 0x8c00050e, 0x0502000a, 0x60128000, 0x0501fd0b, - 0x497a6009, 0x59300006, 0x80000540, 0x05020003, - 0x59a8005d, 0x48026006, 0x641e6203, 0x1c01f000, - 0x05e1f9e5, 0x05f5fa44, 0x05e8014a, 0x59325809, - 0x05a1ff0a, 0x05e9f147, 0x05a1fb50, 0x05f5fe13, - 0x05000005, 0x59a8005e, 0x48026205, 0x643a6203, - 0x0501f009, 0x59325809, 0x592c040e, 0x8c000502, - 0x05000004, 0x641e6203, 0x610e7000, 0x0009f000, - 0x64126203, 0x1c01f000, 0x0501fff6, 0x00080148, - 0x1c01f000, 0x05f5fe01, 0x05000007, 0x4a02601c, - 0x0010c2a5, 0x59a8005e, 0x48026205, 0x643a6203, - 0x1c01f000, 0x64066203, 0x65066403, 0x42027800, - 0x80002042, 0x0005f6ab, 0xb1380498, 0x05001008, - 0xb13805a1, 0x05000004, 0xb13805a0, 0x05000002, - 0x05a1fb2a, 0x4933c857, 0x1c01f000, 0xb1380591, - 0x05000004, 0xb1380581, 0x05a20b24, 0x1c01f000, - 0x0005fe4e, 0x0505f80e, 0x0005f7dc, 0xb1380498, - 0x05f210a1, 0xb1380492, 0x05a21b1c, 0xb1380489, - 0x05a01b1a, 0x0c01f001, 0x0010c2cc, 0x0010c2fa, - 0x0010c2cb, 0x0010c2cb, 0x0010c2cb, 0x0010c2cb, - 0x0010c2fa, 0x0010c2cb, 0x0010c318, 0x05a1fb0f, - 0x05f5fdd2, 0x0500000b, 0x59300416, 0x8c000504, - 0x05020008, 0x4a02601c, 0x0010c2d8, 0x59a8005e, - 0x48026205, 0x64426203, 0x65266403, 0x1c01f000, - 0x59325809, 0x592c040e, 0x8c00051e, 0x05000010, - 0x82000d00, 0x000000c0, 0x82040d80, 0x00000080, - 0x05000011, 0x59300804, 0x8c040518, 0x0502000e, - 0x59300416, 0x8c000516, 0x05000003, 0x641e6203, - 0x0501f011, 0x61067000, 0x0009f178, 0x641e6203, - 0x497a6006, 0x59300416, 0x8c000516, 0x0502000a, - 0x0005f64e, 0x59325809, 0x592c0c0e, 0x8c04051a, - 0x05020003, 0x0005fe4e, 0x0005f7dc, 0x0501ff99, - 0x05fc07fd, 0x1c01f000, 0x05e1f952, 0x59325809, - 0x5932680a, 0x59340200, 0x8c00050e, 0x0500000d, - 0x592c040e, 0x82000500, 0x000000c0, 0x82000580, - 0x00000080, 0x05000005, 0x592c0013, 0x59301817, - 0x800c1c80, 0x480e6017, 0x640a6203, 0x0501f00c, - 0x60128000, 0x0501fc79, 0x05f9fba3, 0x59300006, - 0x80000540, 0x05020004, 0x59a8005d, 0x800000c2, - 0x48026006, 0x497a6009, 0x641e6203, 0x1c01f000, - 0x4933c857, 0x05e1fda0, 0x05a20ac0, 0x59300203, - 0x90000582, 0x05fc078d, 0x05a1fabc, 0x641e6203, - 0x497a6006, 0x0005f64e, 0x641e6203, 0x497a6006, - 0x0005f645, 0x59300416, 0x8c00051c, 0x000a0167, - 0x59325809, 0x592c2013, 0x40080000, 0x80102480, - 0x59300017, 0x80102400, 0x48126017, 0x0009f167, - 0x8c04050e, 0x05020007, 0x641a6203, 0x0501f822, - 0x5930002b, 0x80000540, 0x05a60c01, 0x0005f645, - 0x640a6203, 0x1c01f000, 0x60040800, 0x05a5fbfc, - 0x90040581, 0x0008016c, 0x05fdf7e4, 0x83300580, - 0x00111ad0, 0x05000004, 0x59300416, 0x8c00051c, - 0x05000006, 0x59300008, 0x8c000522, 0x05a609ce, - 0x00080157, 0x1c01f000, 0x59300013, 0x80000540, - 0x00080157, 0x59325809, 0x592c040b, 0x8c000510, - 0x05000004, 0x497a6013, 0x05a5f9c3, 0x00080157, - 0x1c01f000, 0x492fc857, 0x480bc857, 0x8c08053e, - 0x05000005, 0x80081080, 0x80081000, 0x60240800, - 0x0501f002, 0x60540800, 0x480a580f, 0x1c01f000, - 0x1c01f000, 0x91380593, 0x05000003, 0x91380594, - 0x05a20a76, 0x59300416, 0x8c000516, 0x05a00a73, - 0x1c01f000, 0x05a1fa71, 0x59300009, 0x80000540, - 0x05a20a6e, 0x1c01f000, 0x59300416, 0x8c000516, - 0x05a00a6a, 0x1c01f000, 0x64126203, 0x493a6403, - 0x42000800, 0x80002001, 0x0005f6ab, 0x640e6203, - 0x493a6403, 0x05f5fd25, 0x05000007, 0x59300416, - 0x8c00050a, 0x05020004, 0x4a02601c, 0x0010c381, - 0x1c01f000, 0x0001f996, 0x59325809, 0x592c040e, - 0x8c00051e, 0x05000011, 0x82000500, 0x000000c0, - 0x82000580, 0x00000080, 0x0500000f, 0x59300416, - 0x8c000512, 0x05020009, 0x8c000510, 0x05020007, - 0x592c0410, 0x80000540, 0x05020004, 0x82080d40, - 0x80003065, 0x0005f69d, 0x82080d40, 0x80002065, - 0x0005f69d, 0x82080d40, 0x80002042, 0x0005f69d, - 0x4933c857, 0x493bc857, 0xb1380484, 0x05a21a3b, - 0xb1380481, 0x05a01a39, 0x0c01f001, 0x0010c3a6, - 0x0010c3b4, 0x0010c3c6, 0x59325809, 0x592c040e, - 0x8c00051e, 0x05000019, 0x82001d00, 0x000000c0, - 0x820c1d80, 0x000000c0, 0x05000014, 0x64066203, - 0x493a6403, 0x42000800, 0x80002042, 0x0005f6ab, - 0x59325809, 0x592c040e, 0x8c00051e, 0x0500000b, - 0x82001d00, 0x000000c0, 0x820c1d80, 0x000000c0, - 0x05000006, 0x64066203, 0x493a6403, 0x42000800, - 0x80002001, 0x0005f6ab, 0x497a6009, 0x497a6006, - 0x60128000, 0x0501f3c1, 0x59325809, 0x592c040e, - 0x8c00051e, 0x05fc07f9, 0x82001d00, 0x000000c0, - 0x820c1d80, 0x000000c0, 0x05fc07f4, 0x640e6203, - 0x493a6403, 0x05f5fccd, 0x05000007, 0x59300416, - 0x8c00050a, 0x05020004, 0x4a02601c, 0x0010c3d9, - 0x1c01f000, 0x0001f996, 0x82080d40, 0x80002065, - 0x0005f69d, 0x4933c857, 0x493bc857, 0x83380580, - 0x00000085, 0x05000005, 0x83380580, 0x00000088, - 0x05000007, 0x05a1f9f5, 0x64266203, 0x493a6403, - 0x42000800, 0x80000040, 0x0005f6ab, 0x83300580, - 0x00111a70, 0x05a209ed, 0x4d1c0000, 0x813669c0, - 0x05000003, 0x0501fe9a, 0x0502005a, 0x59cc1404, - 0x41780000, 0x0501f859, 0x05000028, 0x831c0580, - 0xffffffff, 0x05000025, 0x59cc0204, 0x82001580, - 0x0000ffff, 0x05000004, 0x591c1402, 0x80080580, - 0x0502001e, 0x05f5fc9d, 0x05000010, 0x59cc0005, - 0x8c000500, 0x0500000d, 0x4d300000, 0x411e6000, - 0x05f1fc04, 0x5c026000, 0x0500002a, 0x591c0416, - 0x8400055a, 0x48023c16, 0x59300416, 0x8400055a, - 0x48026416, 0x0501f029, 0x591c0407, 0x9000051f, - 0x90002586, 0x05000005, 0x90002584, 0x0500002a, - 0x90002591, 0x05020005, 0x497a3a05, 0x61502000, - 0x05e9f911, 0x0501f02f, 0x59240400, 0x8c00050a, - 0x05020004, 0x42023800, 0xffffffff, 0x05fdf7f8, - 0x813669c0, 0x0502000f, 0x59cc0001, 0x59cc3800, - 0x821c3d00, 0x00ffffff, 0x4c1c0000, 0x05d5fca3, - 0x5c003800, 0x0502001f, 0x05b1f9fa, 0x0502001d, - 0x05c9f8e4, 0x0502001b, 0x4926601d, 0x4936600a, - 0x4a026403, 0x00000087, 0x59cc1204, 0x82081580, - 0x0000ffff, 0x05020003, 0x4a026403, 0x00000086, - 0x4d2c0000, 0x0505f986, 0x05cdf8d1, 0x5c025800, - 0x0501f00c, 0x591c0403, 0x900005b8, 0x05fc07d8, - 0x591c0203, 0x90000587, 0x05fe07d8, 0x4d300000, - 0x411e6000, 0x05e5ff87, 0x5c026000, 0x05fdf7d3, - 0x5c023800, 0x1c01f000, 0x4933c857, 0x480bc857, - 0x4c5c0000, 0x4000b800, 0x42002800, 0x00111b00, - 0x41300000, 0x80140580, 0x0500001c, 0x58140203, - 0x90000580, 0x05000019, 0x58140202, 0x80080580, - 0x05020016, 0x58140203, 0x9000058f, 0x05000013, - 0x58141c07, 0x900c0585, 0x05000010, 0x8c5c0500, - 0x05000003, 0x900c0587, 0x0500000c, 0x5930200a, - 0x5814000a, 0x800001c0, 0x0500000d, 0x82001d80, - 0x00110210, 0x0500000a, 0x801021c0, 0x05000003, - 0x80100580, 0x05000011, 0x90142c30, 0x41540000, - 0x80140480, 0x05021020, 0x05fdf7de, 0x5814002a, - 0x801021c0, 0x05000005, 0x58102002, 0x82102500, - 0x00ffffff, 0x05fdf7f3, 0x8c5c0500, 0x05fe07f3, - 0x5930202a, 0x05fdf7ef, 0x40163800, 0x8c5c0500, - 0x05000007, 0x4c080000, 0x4c140000, 0x0505f8df, - 0x5c002800, 0x5c001000, 0x05fc07e8, 0x831c0580, - 0xffffffff, 0x05000006, 0x591c000a, 0x800001c0, - 0x05020003, 0x5930000a, 0x4802380a, 0x81300540, - 0x0501f009, 0x8c5c0500, 0x05000007, 0x40080800, - 0x42023800, 0xffffffff, 0x05cdf87e, 0x05fc07f0, - 0x80000580, 0x5c00b800, 0x1c01f000, 0x4933c857, - 0x83300580, 0x00111a40, 0x05020037, 0x64026203, - 0x91380593, 0x0502002c, 0x59300403, 0x82000580, - 0x00000092, 0x05a20931, 0x59a8009d, 0x59325809, - 0x812e59c0, 0x05000005, 0x812c0580, 0x05a2092b, - 0x592c0000, 0x497a5800, 0x800001c0, 0x05000004, - 0x4803509d, 0x05e5fe13, 0x0501f003, 0x497b509d, - 0x497b509e, 0x812e59c0, 0x0500001e, 0x592c0208, - 0xb0000595, 0x05a004d5, 0x91380593, 0x0502000d, - 0x592c0817, 0x82040580, 0xffffffff, 0x05000007, - 0xa0040494, 0x05021005, 0x05000004, 0x64180c07, - 0x64000c07, 0x49780806, 0x64025a0a, 0x0001f382, - 0x64c65a0a, 0x64125815, 0x4a025816, 0x000000ff, - 0x0001f382, 0x913805a7, 0x05000003, 0x91380594, - 0x05a20906, 0x493bc857, 0x05ddff93, 0x05fdf7cf, - 0x1c01f000, 0x4933c857, 0x91380593, 0x0502000c, - 0x59300403, 0x4803c857, 0x82000c80, 0x00000085, - 0x05a018fa, 0x82000c80, 0x00000093, 0x05a218f7, - 0x82000480, 0x00000085, 0x0c01f01c, 0x913805a7, - 0x0500000f, 0x91380594, 0x0500000d, 0x493bc857, - 0xb13805a1, 0x05000003, 0xb13805a0, 0x05020007, - 0x05e1fbc9, 0x05e60743, 0x59300203, 0x9000058e, - 0x050003ca, 0x05a1f8e5, 0x05e5f73e, 0x493bc857, - 0x05ddff71, 0x59325809, 0x812e59c0, 0x05e406d5, - 0x64c65a0a, 0x64125815, 0x4a025816, 0x000000ff, - 0x0001fb82, 0x05e5f6cf, 0x0010c510, 0x0010c514, - 0x0010c514, 0x0010c510, 0x0010c510, 0x0010c510, - 0x0010c510, 0x0010c510, 0x0010c510, 0x0010c510, - 0x0010c510, 0x0010c510, 0x0010c510, 0x0010c511, - 0x05a1f8ca, 0x59325809, 0x64025a0a, 0x0001fb82, - 0x0005f7dc, 0x4933c857, 0x42000000, 0x0010e464, - 0x0505fac4, 0x0501fdae, 0x497a6205, 0x602e8000, - 0x0501f805, 0x641a6407, 0x641e6203, 0x497a6006, - 0x1c01f000, 0x4933c857, 0x4943c857, 0x59300407, - 0x90000587, 0x05020002, 0x1c01f000, 0x05ddffec, - 0x4df00000, 0x05f1ffa0, 0x0500000c, 0x9140058c, + 0x81340580, 0x00080810, 0x05cdfe4a, 0x0502000f, + 0x59a80807, 0x8c04050e, 0x05000004, 0x41202000, + 0x60401101, 0x05c1fc24, 0x05cdfe4e, 0x05020005, + 0x64075045, 0x6006d800, 0x05cdfdbb, 0x0501f003, + 0x60040000, 0x05cdfe0e, 0x1c01f000, 0x05adff3d, + 0x050200f7, 0x0501f92c, 0x05fe0737, 0x493a6403, + 0x0501f986, 0x05020003, 0x64ae6403, 0x05fdf751, + 0x64b26403, 0x05fdf74f, 0x4933c857, 0x05d9fc61, + 0x050200eb, 0x05adff2f, 0x050200e9, 0x05c9ff7f, + 0x05fe0729, 0x59cc0408, 0x4802641b, 0x59cc0208, + 0x4802621b, 0x59cc0807, 0x59340002, 0x82000500, + 0x00ffffff, 0x80040580, 0x0500001d, 0x5932481d, + 0x59240005, 0x80040580, 0x05020029, 0x59cc1408, + 0x05f9f975, 0x0500002b, 0x831c0580, 0xffffffff, + 0x05000005, 0x0505fb59, 0x05000026, 0x0505ff3c, + 0x05000024, 0x491e602a, 0x64da6403, 0x59340200, + 0x8c00050e, 0x05000009, 0x831c0580, 0xffffffff, + 0x050000c3, 0x591c0203, 0x90001584, 0x05020003, + 0x64066006, 0x1c01f000, 0x0501f0bd, 0x59cc1208, + 0x82080580, 0x0000ffff, 0x05000008, 0x05f9f95a, + 0x05000010, 0x591c0202, 0x59cc0c08, 0x80040580, + 0x0502000c, 0x05fdf7e1, 0x59cc1408, 0x60040000, + 0x0501fda7, 0x05000007, 0x05fdf7dc, 0x4803c856, + 0x6426641c, 0x4a02621c, 0x00001500, 0x0501f005, + 0x4803c856, 0x640e641c, 0x4a02621c, 0x00001700, + 0x64de6403, 0x0501f0a2, 0x4933c857, 0x05d9fc19, + 0x050200a3, 0x05adfee7, 0x050200a1, 0x05c9ff37, + 0x05fe06e1, 0x05c9fd71, 0x05000045, 0x59cc0407, + 0x4802641b, 0x59cc1207, 0x480a621b, 0x82080580, + 0x0000ffff, 0x05000004, 0x05f9f933, 0x05000036, + 0x0501f008, 0x59cc1407, 0x60040000, 0x0501fd84, + 0x05000031, 0x831c0580, 0xffffffff, 0x0500002e, + 0x59cc0c07, 0x591c0202, 0x80040580, 0x0502002a, + 0x0505fef3, 0x05000028, 0x591c0416, 0x8c000516, + 0x0502002f, 0x4d300000, 0x411e6000, 0x05f1ffa7, + 0x5c026000, 0x641e3a03, 0x59cc0c09, 0x82040d00, + 0x0000ff00, 0x840409c0, 0x90040581, 0x05000009, + 0x90040585, 0x0500000b, 0x90040587, 0x05020011, + 0x42000000, 0x001123dd, 0x0509f971, 0x0501f008, + 0x42000000, 0x001123dc, 0x0509f96d, 0x0501f007, + 0x42000000, 0x001123db, 0x0509f969, 0x591c0009, + 0x80000540, 0x05000003, 0x59cc2808, 0x0505f2fd, + 0x4803c856, 0x6426641c, 0x4a02621c, 0x00002a00, + 0x0501f005, 0x4803c856, 0x640e641c, 0x4a02621c, + 0x00000300, 0x64ee6403, 0x0501f055, 0x4803c856, + 0x642e641c, 0x6402621c, 0x05fdf7fb, 0x4803c856, + 0x641e641c, 0x6402621c, 0x05fdf7f7, 0x59cc0001, + 0x82000580, 0x00fffffe, 0x0502004d, 0x4c080000, + 0x05c9fd30, 0x05000021, 0x05c9fd11, 0x0505fc4e, + 0x0502001c, 0x5932481d, 0x59240200, 0x82000540, + 0x000000e2, 0x48024a00, 0x59a8024c, 0x90000543, + 0x4803524c, 0x59a80049, 0x800000d0, 0x59a80840, + 0x82040d00, 0x000000ff, 0x80041540, 0x480b5040, + 0x600c0800, 0x05e1fbde, 0x497b504e, 0x8d0c0520, + 0x05000004, 0x4a032804, 0x000007d0, 0x0501f001, + 0x0009f810, 0x05adff34, 0x5c001000, 0x1c01f000, + 0x0505fc4b, 0x05fdf7fd, 0x5c001000, 0x0009f010, + 0x0501f82c, 0x05000026, 0x653a6403, 0x64066203, + 0x05ddf6f6, 0x05c9fec5, 0x05fe0663, 0x653e6403, + 0x497a601e, 0x59cc0a06, 0x82040d00, 0x000000ff, + 0x800409c0, 0x05fc067b, 0x90040581, 0x05020005, + 0x59cc0808, 0x59a80005, 0x80040580, 0x05fc0675, + 0x90040582, 0x05020006, 0x91cc140b, 0x6008b000, + 0x91341c06, 0x05edff43, 0x05fc066e, 0x6406601e, + 0x05fdf66c, 0x05c9fead, 0x05fe064b, 0x65426403, + 0x59cc0207, 0x4802601e, 0x05fdf666, 0x64066203, + 0x42000800, 0x80000040, 0x0005f6e2, 0x4803c857, + 0x42000000, 0x001123ec, 0x0509f8fd, 0x0009f010, + 0x4d2c0000, 0x4c500000, 0x4c580000, 0x4c540000, + 0x59a800bb, 0x82000c80, 0x00000841, 0x05021021, + 0x05a1fb44, 0x0500001f, 0x492e6009, 0x59a800bb, + 0x48025805, 0x90000403, 0x80000104, 0x91cca406, + 0x90000c87, 0x05001010, 0x641e5811, 0x601cb000, + 0x912c0409, 0x4000a800, 0x0509f9b0, 0x412c7000, + 0x800409c0, 0x05020003, 0x49787001, 0x0501f00b, + 0x05a1fb30, 0x0500000b, 0x492c7001, 0x40040000, + 0x05fdf7f0, 0x48025811, 0x4000b000, 0x912c0409, + 0x4000a800, 0x0509f9a1, 0x90000541, 0x0501f005, + 0x497b50bb, 0x59325809, 0x05a1fb4c, 0x80000580, + 0x5c00a800, 0x5c00b000, 0x5c00a000, 0x5c025800, + 0x1c01f000, 0x4d340000, 0x5932680a, 0x59343400, + 0x4933c857, 0x4937c857, 0x481bc857, 0x05c9fe67, + 0x5c026800, 0x1c01f000, 0x4933c857, 0x4c600000, + 0x4d3c0000, 0x4d440000, 0x4d340000, 0x0501f858, + 0x05020046, 0x59cc0207, 0x82000d00, 0x0000ff00, + 0x900411c0, 0x59cc000a, 0x82000500, 0x00ffffff, + 0x80081540, 0x480a601e, 0x8c040518, 0x05000011, + 0x60203000, 0x0505fe2a, 0x42000000, 0x001123f7, + 0x0509f8ab, 0x59240400, 0x8c00050a, 0x05020005, + 0x60082800, 0x60903000, 0x611a8000, 0x0505f833, + 0x6004c000, 0x417a7800, 0x05adfd85, 0x0501f02d, + 0x8c04051a, 0x05000029, 0x59cc000a, 0x59cc3800, + 0x821c3d00, 0x00ffffff, 0x05d5fdbc, 0x05c80e83, + 0x05020022, 0x5930001d, 0x4c000000, 0x05c9fe77, + 0x4926601d, 0x5930000a, 0x4c000000, 0x59240c00, + 0x8c04050a, 0x0502000b, 0x59340c03, 0x59341802, + 0x820c1d00, 0x00ffffff, 0x58002403, 0x60102800, + 0x60903000, 0x611a8000, 0x41301000, 0x0505f81f, + 0x4936600a, 0x60243000, 0x0505fe03, 0x42000000, + 0x001123f7, 0x0509f87e, 0x417a7800, 0x4178c000, + 0x05adfd5f, 0x5c000000, 0x4802600a, 0x5c000000, + 0x4802601d, 0x0501f003, 0x90000541, 0x0501f002, + 0x80000580, 0x5c026800, 0x5c028800, 0x5c027800, + 0x5c00c000, 0x1c01f000, 0x4933c857, 0x59cc0206, + 0x90000490, 0x05021004, 0x6402621c, 0x90000541, + 0x0501f002, 0x80000580, 0x1c01f000, 0x4933c857, + 0x6402621c, 0x59cc0407, 0x82000500, 0x0000ff00, + 0x82000580, 0x00000800, 0x0502000d, 0x59cc0206, + 0x59a808bb, 0x80040480, 0x0500100a, 0x59cc0006, + 0x82000500, 0x00ff0000, 0x82000d80, 0x00140000, + 0x05000003, 0x82000d80, 0x00100000, 0x1c01f000, + 0x42000000, 0x001123ec, 0x0509f84d, 0x90000541, + 0x05fdf7fb, 0x59300403, 0xb00034a0, 0x059e1f06, + 0x91383593, 0x05020006, 0x4803c857, 0x4c000000, + 0x0505feab, 0x5c000000, 0x0c01f029, 0x4933c857, + 0x493bc857, 0x913835a7, 0x0500000d, 0x91383594, + 0x0500000b, 0xb13805a1, 0x05000003, 0xb13805a0, + 0x059e0ef5, 0x05e1fe56, 0x05ea0244, 0x59300203, + 0x9000058e, 0x05f404bf, 0x059dfeef, 0x493bc857, + 0x4937c857, 0x0505fe94, 0x05c9fbf5, 0x601c0800, + 0x05c5ffd4, 0x05e1f9fa, 0x4d2c0000, 0x0505fee2, + 0x0502000d, 0x59325809, 0x812e59c0, 0x05020003, + 0x5c025800, 0x05ddf5f5, 0x05f5fb1c, 0x059c0ede, + 0x05f9f9c5, 0x059e0edc, 0x64c65a0a, 0x64125810, + 0x0001fba8, 0x5c025800, 0x05e9f1a7, 0x0010c79f, + 0x0010c7e0, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c7e0, 0x0010c7f1, 0x0010c8d4, 0x0010c855, + 0x0010c8d4, 0x0010c86e, 0x0010c8d4, 0x0010c873, + 0x0010c8d4, 0x0010c876, 0x0010c8d4, 0x0010c876, + 0x0010c8d4, 0x0010c8d4, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c7e0, 0x0010c79f, 0x0010c8d4, + 0x0010c79f, 0x0010c79f, 0x0010c8d4, 0x0010c79f, + 0x0010c8ba, 0x0010c8d4, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c79f, 0x0010c8d4, 0x0010c8d4, + 0x0010c79f, 0x0010c8d4, 0x0010c8d4, 0x0010c79f, + 0x0010c7ec, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c878, 0x0010c8d4, 0x0010c79f, + 0x0010c79f, 0x0010c8a0, 0x0010c8d4, 0x0010c79f, + 0x0010c79f, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c7d3, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c7d3, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c7d3, 0x0010c7d3, 0x0010c7d3, + 0x0010c79f, 0x0010c79f, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c7d3, 0x0010c79f, 0x0010c79f, + 0x0010c79f, 0x0010c7ae, 0x0010c7c9, 0x0010c7a0, + 0x0010c79f, 0x0010c79f, 0x0010c8d4, 0x059dfe76, + 0x4933c857, 0x05f5fe95, 0x05000007, 0x4a02601c, + 0x0010c7a9, 0x59a80061, 0x48026205, 0x643a6203, + 0x1c01f000, 0x640a6203, 0x59a8005f, 0x800000c4, + 0x48026006, 0x1c01f000, 0x4933c857, 0x05f5fe87, + 0x05000007, 0x4a02601c, 0x0010c7b7, 0x59a80061, + 0x48026205, 0x643a6203, 0x1c01f000, 0x916c0583, + 0x0502000a, 0x5930041b, 0x4803c857, 0x9000050f, + 0x0500000a, 0x9000050c, 0x05000004, 0x4803c857, + 0x05f9fe97, 0x0501f005, 0x4803c857, 0x65726403, + 0x64066203, 0x05ddf565, 0x4933c857, 0x0009f810, + 0x1c01f000, 0x4933c857, 0x05f5fa88, 0x05000109, + 0x4d2c0000, 0x59325809, 0x64025a0a, 0x0001fba8, + 0x5c025800, 0x497a6009, 0x0501f102, 0x05f5fe63, + 0x05000007, 0x59a80061, 0x48026205, 0x643a6203, + 0x59a8005f, 0x48026006, 0x1c01f000, 0x4d2c0000, + 0x59325809, 0x05a1f9f5, 0x5c025800, 0x0009f010, + 0x59a8005f, 0x48026006, 0x05f5fe54, 0x05000007, + 0x4a02601c, 0x0010c7ea, 0x59a80061, 0x48026205, + 0x643a6203, 0x1c01f000, 0x640a6203, 0x1c01f000, + 0x4d3c0000, 0x417a7800, 0x05c5ff08, 0x5c027800, + 0x0501f0e4, 0x05c9fd12, 0x050000e2, 0x59a8024c, + 0x8c000508, 0x0500000e, 0x5932680a, 0x4c580000, + 0x6008b000, 0x91241c01, 0x91341406, 0x05edfd91, + 0x80000540, 0x5c00b000, 0x050200d6, 0x59340200, + 0x8400051a, 0x48026a00, 0x0501f048, 0x599c0017, + 0x8c00050a, 0x0502000b, 0x4d3c0000, 0x417a7800, + 0x05c5feee, 0x5c027800, 0x59340212, 0x82000500, + 0x0000ff00, 0x0502001c, 0x601c0800, 0x05c5fef1, + 0x83440d80, 0x000007fe, 0x050200c2, 0x05adfea0, + 0x05c1fcaa, 0x05000009, 0x59240200, 0x8c00051e, + 0x0500000c, 0x59300809, 0x4d300000, 0x05b1f81d, + 0x5c026000, 0x0501f0b7, 0x05b1f8bf, 0x05020005, + 0x4d300000, 0x05adfd17, 0x5c026000, 0x0501f0b1, + 0x59a8224c, 0x8c100514, 0x050000ae, 0x05adfe83, + 0x0501f0ac, 0x599c0019, 0x8c00050e, 0x05000004, + 0x601c0800, 0x05c5fed3, 0x0501f0a6, 0x050200a5, + 0x59340c00, 0x82040d00, 0x000000ff, 0x4937c857, + 0x4807c857, 0x90040486, 0x0502100f, 0x4d3c0000, + 0x4d400000, 0x60a68000, 0x417a7800, 0x916c0583, + 0x05020006, 0x602c3000, 0x0505fca2, 0x42000000, + 0x001123f5, 0x0505ff16, 0x05adfb81, 0x5c028000, + 0x5c027800, 0x916c0582, 0x05020004, 0x59a80047, + 0x80000000, 0x48035047, 0x600c0800, 0x05c5feb5, + 0x64066407, 0x64066203, 0x640a6403, 0x05ddfcdb, + 0x4ce80000, 0x6005d000, 0x05d9fa95, 0x5c01d000, + 0x1c01f000, 0x59340200, 0x8400051a, 0x48026a00, + 0x05c9fca2, 0x0500007b, 0x60100800, 0x05c5fea5, + 0x0505fca0, 0x05020077, 0x05f5fdd8, 0x05000009, + 0x59a80061, 0x48026205, 0x643a6203, 0x59a8005f, + 0x48026006, 0x4a02601c, 0x0010c868, 0x1c01f000, + 0x60140800, 0x05c5fe97, 0x64066407, 0x64066203, + 0x640e6403, 0x05ddf4bd, 0x05c9fc95, 0x05020065, + 0x60180800, 0x0501f86c, 0x0501f062, 0x60100800, + 0x05c5fe8c, 0x05fdf77e, 0x05c9faa9, 0x0501f05d, + 0x4d300000, 0x05f5fdbd, 0x0500000c, 0x5930082a, + 0x40066000, 0x59300416, 0x8c00051e, 0x05020003, + 0x5c026000, 0x0501f055, 0x5c026000, 0x4a02601c, + 0x0010c888, 0x0501f051, 0x5c026000, 0x0009f010, + 0x4c340000, 0x41306800, 0x05e9f88e, 0x05000012, + 0x64066203, 0x647a6403, 0x58340c1b, 0x4806641b, + 0x58340a1b, 0x4806621b, 0x5834002a, 0x4802602a, + 0x5834080a, 0x4806600a, 0x5834081d, 0x4806601d, + 0x05f5fd8f, 0x64126407, 0x42000800, 0x80000040, + 0x0005fee2, 0x40366000, 0x5c006800, 0x0009f010, + 0x5930082a, 0x4807c857, 0x800409c0, 0x05000031, + 0x5804001e, 0x81300580, 0x0502002e, 0x4978081e, + 0x58041416, 0x8c080516, 0x0500002a, 0x8c080514, + 0x05000028, 0x84081516, 0x48080c16, 0x58065809, + 0x812e59c0, 0x05000023, 0x492fc857, 0x4d300000, + 0x40066000, 0x641e6203, 0x417a7800, 0x0005fe63, + 0x5c026000, 0x0501f01b, 0x05f5fd7c, 0x00080010, + 0x5930002a, 0x80000540, 0x05000018, 0x4c340000, + 0x40006800, 0x58340407, 0x5c006800, 0x90000583, + 0x000a0010, 0x4a02601c, 0x0010c8c8, 0x0501f00f, + 0x4d300000, 0x4d1c0000, 0x5932382a, 0x05e9f84d, + 0x05000004, 0x4a026416, 0x00000100, 0x05f5fc1a, + 0x5c023800, 0x5c026000, 0x0009f010, 0x05c5fe2d, + 0x05f5fd62, 0x00080010, 0x497a601c, 0x59a80061, + 0x48026205, 0x643a6203, 0x59a8005f, 0x48026006, + 0x1c01f000, 0x4933c857, 0x4807c857, 0x05c5fe21, + 0x4d3c0000, 0x417a7800, 0x05c5fe14, 0x5c027800, + 0x5934000a, 0x84000520, 0x4802680a, 0x05c9f238, + 0x59340400, 0x4803c857, 0x80000110, 0x9000348c, + 0x059e1d29, 0x91383595, 0x05020002, 0x0c01f004, + 0x91383596, 0x059e0d24, 0x0c01f00d, 0x0010a081, + 0x0010a081, 0x0010a081, 0x0010a081, 0x0010d5d4, + 0x0010a081, 0x0010c92d, 0x0010c90b, 0x0010a081, + 0x0010a081, 0x0010a081, 0x0010a081, 0x0010a081, + 0x0010a081, 0x0010a081, 0x0010a081, 0x0010d5d4, + 0x0010a081, 0x0010c92d, 0x0010c93e, 0x0010a081, + 0x0010a081, 0x0010a081, 0x0010a081, 0x4933c857, + 0x5932481d, 0x59240400, 0x8c000508, 0x05000014, + 0x813669c0, 0x05000012, 0x59340212, 0x82000500, + 0x0000ff00, 0x0500000e, 0x599c0019, 0x8c00050e, + 0x0502000b, 0x4d3c0000, 0x417a7800, 0x05c5fddb, + 0x5c027800, 0x600c0800, 0x05c5fde2, 0x64066407, + 0x64066203, 0x640a6403, 0x05ddf408, 0x59cc0001, + 0x59340802, 0x80040580, 0x82000500, 0x00ffffff, + 0x000a0010, 0x59345002, 0x05c5fb55, 0x482a6802, + 0x0009f010, 0x4933c857, 0x59303403, 0x9018359e, + 0x0502000d, 0x91383595, 0x000a0010, 0x4c340000, + 0x5930682a, 0x803469c0, 0x05000005, 0x58343416, + 0x82183500, 0xffff1fff, 0x48186c16, 0x5c006800, + 0x0009f010, 0x1c01f000, 0x4933c857, 0x05edfa3e, + 0x000a0010, 0x64066203, 0x64066403, 0x05ddf3e7, + 0x493bc857, 0xb1380591, 0x05020007, 0x05e1fc30, + 0x05ea001e, 0x59300203, 0x90000582, 0x05000062, + 0x059dfcc9, 0x913805a7, 0x05000015, 0xb1380588, + 0x0500000d, 0x91380594, 0x05000011, 0xb13805a1, + 0x05000003, 0xb13805a0, 0x059e0cbf, 0x05e1fc20, + 0x05ea000e, 0x59300203, 0x9000058e, 0x050006bc, + 0x059dfcb9, 0x05e1fc1a, 0x05ea0008, 0x59300203, + 0x90000584, 0x00080183, 0x059dfcb3, 0x4933c857, + 0x59300403, 0xb0000c84, 0x059e1caf, 0xb0000480, + 0x059c1cad, 0x40027000, 0x4803c857, 0x0c01f001, + 0x0010c970, 0x0010c971, 0x0010c971, 0x0010c987, + 0x059dfca5, 0x05ddffb6, 0x59325809, 0x812e59c0, + 0x05000012, 0x832c0500, 0x00ff0000, 0x0500000f, + 0x640a6203, 0x5932680a, 0x59340200, 0x8c00050e, + 0x0502000a, 0x60128000, 0x0501fd4d, 0x497a6009, + 0x59300006, 0x80000540, 0x05020003, 0x59a80060, + 0x48026006, 0x641e6203, 0x1c01f000, 0x05ddffa0, + 0x05f5f8ca, 0x05e4075c, 0x59325809, 0x05a1f83e, + 0x05e5f759, 0x059dfc88, 0x05f5fca8, 0x05000005, + 0x59a80061, 0x48026205, 0x643a6203, 0x0501f009, + 0x59325809, 0x592c040e, 0x8c000502, 0x05000004, + 0x641e6203, 0x610e7000, 0x0009f039, 0x64126203, + 0x1c01f000, 0x0505f83d, 0x00080181, 0x1c01f000, + 0x05f5fc96, 0x05000007, 0x4a02601c, 0x0010c9a8, + 0x59a80061, 0x48026205, 0x643a6203, 0x1c01f000, + 0x64066203, 0x65066403, 0x42027800, 0x80002042, + 0x0005f6e2, 0xb1380498, 0x05001008, 0xb13805a1, + 0x05000004, 0xb13805a0, 0x05000002, 0x059dfc62, + 0x4933c857, 0x1c01f000, 0xb1380591, 0x05000004, + 0xb1380581, 0x059e0c5c, 0x1c01f000, 0x0005fe84, + 0x0505f855, 0x0009f010, 0xb1380498, 0x05ee16e2, + 0xb1380492, 0x059e1c54, 0xb1380489, 0x059c1c52, + 0x0c01f001, 0x0010c9cf, 0x0010c9fd, 0x0010c9ce, + 0x0010c9ce, 0x0010c9ce, 0x0010c9ce, 0x0010c9fd, + 0x0010c9ce, 0x0010ca1b, 0x059dfc47, 0x05f5fc67, + 0x0500000b, 0x59300416, 0x8c000504, 0x05020008, + 0x4a02601c, 0x0010c9db, 0x59a80061, 0x48026205, + 0x64426203, 0x65266403, 0x1c01f000, 0x59325809, + 0x592c040e, 0x8c00051e, 0x05000010, 0x82000d00, + 0x000000c0, 0x82040d80, 0x00000080, 0x05000011, + 0x59300804, 0x8c040518, 0x0502000e, 0x59300416, + 0x8c000516, 0x05000003, 0x641e6203, 0x0501f011, + 0x61067000, 0x0009f1b1, 0x641e6203, 0x497a6006, + 0x59300416, 0x8c000516, 0x0502000a, 0x0005f684, + 0x59325809, 0x592c0c0e, 0x8c04051a, 0x05020003, + 0x0005fe84, 0x0009f010, 0x0501ffe0, 0x05fc07fd, + 0x1c01f000, 0x05ddff0d, 0x59325809, 0x5932680a, + 0x59340200, 0x8c00050e, 0x0500000d, 0x592c040e, + 0x82000500, 0x000000c0, 0x82000580, 0x00000080, + 0x05000005, 0x592c0013, 0x59301817, 0x800c1c80, + 0x480e6017, 0x640a6203, 0x0501f00c, 0x60128000, + 0x0501fcbb, 0x05f9fa46, 0x59300006, 0x80000540, + 0x05020004, 0x59a80060, 0x800000c2, 0x48026006, + 0x497a6009, 0x641e6203, 0x1c01f000, 0x4933c857, + 0x05e1fb5b, 0x059e0bf8, 0x59300203, 0x90000582, + 0x05fc078d, 0x059dfbf4, 0x641e6203, 0x497a6006, + 0x0005f684, 0x641e6203, 0x497a6006, 0x0005f67b, + 0x59300416, 0x8c00051c, 0x000a01a0, 0x59325809, + 0x592c2013, 0x40080000, 0x80102480, 0x59300017, + 0x80102400, 0x48126017, 0x0009f1a0, 0x8c04050e, + 0x05020007, 0x641a6203, 0x0501f822, 0x5930002b, + 0x80000540, 0x05a20d9c, 0x0005f67b, 0x640a6203, + 0x1c01f000, 0x60040800, 0x05a1fd97, 0x90040581, + 0x000801a5, 0x05fdf7e4, 0x83300580, 0x00115a74, + 0x05000004, 0x59300416, 0x8c00051c, 0x05000006, + 0x59300008, 0x8c000522, 0x05a20b67, 0x00080190, + 0x1c01f000, 0x59300013, 0x80000540, 0x00080190, + 0x59325809, 0x592c040b, 0x8c000510, 0x05000004, + 0x497a6013, 0x05a1fb5c, 0x00080190, 0x1c01f000, + 0x492fc857, 0x480bc857, 0x8c08053e, 0x05000005, + 0x80081080, 0x80081000, 0x60240800, 0x0501f002, + 0x60540800, 0x480a580f, 0x1c01f000, 0x1c01f000, + 0x91380593, 0x05000003, 0x91380594, 0x059e0bae, + 0x59300416, 0x8c000516, 0x059c0bab, 0x1c01f000, + 0x059dfba9, 0x59300009, 0x80000540, 0x059e0ba6, + 0x1c01f000, 0x59300416, 0x8c000516, 0x059c0ba2, + 0x1c01f000, 0x64126203, 0x493a6403, 0x42000800, + 0x80002001, 0x0005f6e2, 0x640e6203, 0x493a6403, + 0x05f5fbba, 0x05000007, 0x59300416, 0x8c00050a, + 0x05020004, 0x4a02601c, 0x0010ca84, 0x1c01f000, + 0x0001f99e, 0x59325809, 0x592c040e, 0x8c00051e, + 0x05000011, 0x82000500, 0x000000c0, 0x82000580, + 0x00000080, 0x0500000f, 0x59300416, 0x8c000512, + 0x05020009, 0x8c000510, 0x05020007, 0x592c0410, + 0x80000540, 0x05020004, 0x82080d40, 0x80003065, + 0x0005f6d4, 0x82080d40, 0x80002065, 0x0005f6d4, + 0x82080d40, 0x80002042, 0x0005f6d4, 0x4933c857, + 0x493bc857, 0xb1380484, 0x059e1b73, 0xb1380481, + 0x059c1b71, 0x0c01f001, 0x0010caa9, 0x0010cab7, + 0x0010cac9, 0x59325809, 0x592c040e, 0x8c00051e, + 0x05000019, 0x82001d00, 0x000000c0, 0x820c1d80, + 0x000000c0, 0x05000014, 0x64066203, 0x493a6403, + 0x42000800, 0x80002042, 0x0005f6e2, 0x59325809, + 0x592c040e, 0x8c00051e, 0x0500000b, 0x82001d00, + 0x000000c0, 0x820c1d80, 0x000000c0, 0x05000006, + 0x64066203, 0x493a6403, 0x42000800, 0x80002001, + 0x0005f6e2, 0x497a6009, 0x497a6006, 0x60128000, + 0x0501f403, 0x59325809, 0x592c040e, 0x8c00051e, + 0x05fc07f9, 0x82001d00, 0x000000c0, 0x820c1d80, + 0x000000c0, 0x05fc07f4, 0x640e6203, 0x493a6403, + 0x05f5fb62, 0x05000007, 0x59300416, 0x8c00050a, + 0x05020004, 0x4a02601c, 0x0010cadc, 0x1c01f000, + 0x0001f99e, 0x82080d40, 0x80002065, 0x0005f6d4, + 0x4933c857, 0x493bc857, 0x83380580, 0x00000085, + 0x05000005, 0x83380580, 0x00000088, 0x05000007, + 0x059dfb2d, 0x64266203, 0x493a6403, 0x42000800, + 0x80000040, 0x0005f6e2, 0x83300580, 0x00115a14, + 0x059e0b25, 0x4d1c0000, 0x813669c0, 0x05000003, + 0x0501fee1, 0x05020054, 0x59cc1404, 0x41780000, + 0x0501f853, 0x0500002c, 0x831c0580, 0xffffffff, + 0x05000029, 0x59cc0204, 0x82001580, 0x0000ffff, + 0x05000004, 0x591c1402, 0x80080580, 0x05020022, + 0x05f5fb32, 0x05000010, 0x59cc0005, 0x8c000500, + 0x0500000d, 0x4d300000, 0x411e6000, 0x05f1fa73, + 0x5c026000, 0x05000024, 0x591c0416, 0x8400055a, + 0x48023c16, 0x59300416, 0x8400055a, 0x48026416, + 0x0501f023, 0x591c0407, 0x9000051f, 0x90002586, + 0x05000005, 0x90002584, 0x05000024, 0x90002591, + 0x05020009, 0x497a3a05, 0x61502000, 0x05e5ff40, + 0x05000029, 0x42000000, 0x001123ec, 0x0505fc34, + 0x0501f025, 0x59240400, 0x8c00050a, 0x05020004, + 0x42023800, 0xffffffff, 0x05fdf7f4, 0x813669c0, + 0x05020005, 0x4926601d, 0x42026800, 0x001141b4, + 0x4936600a, 0x4a026403, 0x00000087, 0x59cc1204, + 0x82081580, 0x0000ffff, 0x05020003, 0x4a026403, + 0x00000086, 0x4d2c0000, 0x0505f9e8, 0x05c9fca9, + 0x5c025800, 0x0501f00c, 0x591c0403, 0x900005b8, + 0x05fc07de, 0x591c0203, 0x90000587, 0x05fe07e2, + 0x4d300000, 0x411e6000, 0x05e5fd9f, 0x5c026000, + 0x05fdf7dd, 0x5c023800, 0x1c01f000, 0x4933c857, + 0x480bc857, 0x4c5c0000, 0x4000b800, 0x42002800, + 0x00115aa4, 0x41300000, 0x80140580, 0x0500001c, + 0x58140203, 0x90000580, 0x05000019, 0x58140202, + 0x80080580, 0x05020016, 0x58140203, 0x9000058f, + 0x05000013, 0x58141c07, 0x900c0585, 0x05000010, + 0x8c5c0500, 0x05000003, 0x900c0587, 0x0500000c, + 0x5930200a, 0x5814000a, 0x800001c0, 0x0500000d, + 0x82001d80, 0x001141b4, 0x0500000a, 0x801021c0, + 0x05000003, 0x80100580, 0x05000011, 0x90142c30, + 0x41540000, 0x80140480, 0x05021020, 0x05fdf7de, + 0x5814002a, 0x801021c0, 0x05000005, 0x58102002, + 0x82102500, 0x00ffffff, 0x05fdf7f3, 0x8c5c0500, + 0x05fe07f3, 0x5930202a, 0x05fdf7ef, 0x40163800, + 0x8c5c0500, 0x05000007, 0x4c080000, 0x4c140000, + 0x0505f93f, 0x5c002800, 0x5c001000, 0x05fc07e8, + 0x831c0580, 0xffffffff, 0x05000006, 0x591c000a, + 0x800001c0, 0x05020003, 0x5930000a, 0x4802380a, + 0x81300540, 0x0501f009, 0x8c5c0500, 0x05000007, + 0x40080800, 0x42023800, 0xffffffff, 0x05c9fc56, + 0x05fc07f0, 0x80000580, 0x5c00b800, 0x1c01f000, + 0x4933c857, 0x83300580, 0x001159e4, 0x05020037, + 0x64026203, 0x91380593, 0x0502002c, 0x59300403, + 0x82000580, 0x00000092, 0x059e0a6f, 0x59a800a0, + 0x59325809, 0x812e59c0, 0x05000005, 0x812c0580, + 0x059e0a69, 0x592c0000, 0x497a5800, 0x800001c0, + 0x05000004, 0x480350a0, 0x05e5fc0a, 0x0501f003, + 0x497b50a0, 0x497b50a1, 0x812e59c0, 0x0500001e, + 0x592c0208, 0xb0000595, 0x059c060f, 0x91380593, + 0x0502000d, 0x592c0817, 0x82040580, 0xffffffff, + 0x05000007, 0xa0040494, 0x05021005, 0x05000004, + 0x64180c07, 0x64000c07, 0x49780806, 0x64025a0a, + 0x0001f3a8, 0x64c65a0a, 0x64125815, 0x4a025816, + 0x000000ff, 0x0001f3a8, 0x913805a7, 0x05000003, + 0x91380594, 0x059e0a44, 0x493bc857, 0x05ddfd54, + 0x05fdf7cf, 0x1c01f000, 0x4933c857, 0x91380593, + 0x0502000c, 0x59300403, 0x4803c857, 0x82000c80, + 0x00000085, 0x059c1a38, 0x82000c80, 0x00000093, + 0x059e1a35, 0x82000480, 0x00000085, 0x0c01f01c, + 0x913805a7, 0x0500000f, 0x91380594, 0x0500000d, + 0x493bc857, 0xb13805a1, 0x05000003, 0xb13805a0, + 0x05020007, 0x05e1f98a, 0x05e60578, 0x59300203, + 0x9000058e, 0x05000417, 0x059dfa23, 0x05e5f573, + 0x493bc857, 0x05ddfd32, 0x59325809, 0x812e59c0, + 0x05e404ed, 0x64c65a0a, 0x64125815, 0x4a025816, + 0x000000ff, 0x0001fba8, 0x05e5f4e7, 0x0010cc0d, + 0x0010cc11, 0x0010cc11, 0x0010cc0d, 0x0010cc0d, + 0x0010cc0d, 0x0010cc0d, 0x0010cc0d, 0x0010cc0d, + 0x0010cc0d, 0x0010cc0d, 0x0010cc0d, 0x0010cc0d, + 0x0010cc0e, 0x059dfa08, 0x59325809, 0x64025a0a, + 0x0001fba8, 0x0009f010, 0x4933c857, 0x42000000, + 0x00112408, 0x0505fb42, 0x0501fdfb, 0x497a6205, + 0x602e8000, 0x0501f805, 0x641a6407, 0x641e6203, + 0x497a6006, 0x1c01f000, 0x4933c857, 0x4943c857, + 0x59300407, 0x90000587, 0x05020002, 0x1c01f000, + 0x05ddfdad, 0x4df00000, 0x59300407, 0x90000586, + 0x05020005, 0x59300203, 0x90000588, 0x05020002, + 0x497a6009, 0x05f1fe25, 0x0500000c, 0x9140058c, 0x0500000a, 0x59300809, 0x58040000, 0x80001540, 0x05000006, 0x49780800, 0x4d2c0000, 0x400a5800, - 0x0501fa52, 0x5c025800, 0x05f1fc05, 0x90000c91, - 0x05a218a2, 0x0c01f001, 0x0010c563, 0x0010c566, - 0x0010c54b, 0x0010c570, 0x0010c57c, 0x0010c54b, - 0x0010c54b, 0x0010c54b, 0x0010c54b, 0x0010c54b, - 0x0010c54b, 0x0010c54b, 0x0010c54b, 0x0010c54b, - 0x0010c54b, 0x0010c54b, 0x0010c54b, 0x05f9f966, - 0x4d400000, 0x5930002b, 0x80000540, 0x05000004, - 0x41400800, 0x05a5f9e6, 0x40068000, 0x4d2c0000, - 0x59325809, 0x05f1ff74, 0x05000006, 0x592c040b, - 0x8c000510, 0x05000002, 0x05ddf9f3, 0x0501fa2b, - 0x4c5c0000, 0x5930b80a, 0x05e5fe72, 0x485e600a, - 0x5c00b800, 0x5c025800, 0x5c028000, 0x5c03e000, - 0x05dc07a0, 0x1c01f000, 0x598c000b, 0x81300580, - 0x05020003, 0x05e1faa7, 0x0502000e, 0x05ddfc4b, - 0x05fc07df, 0x05ddfebf, 0x0500000a, 0x05a1f86b, - 0x05f1fbc0, 0x05020003, 0x05e1fa6e, 0x05020005, - 0x05ddfb62, 0x05fc07d6, 0x05ddfeb6, 0x05a20863, - 0x59300203, 0x90000c91, 0x05a21860, 0x0c01f7bf, - 0x05a5facd, 0x05fdf7ce, 0x4933c857, 0x4d240000, - 0x4c5c0000, 0x4d440000, 0x4d340000, 0x4c580000, - 0x59cc3800, 0x821c3d00, 0x00ffffff, 0x59cc0007, - 0x4c000000, 0x59cc0001, 0x82000500, 0x00ffffff, - 0x82000d80, 0x00fffffe, 0x5c000000, 0x05020005, - 0x801c0d80, 0x05020054, 0x42000000, 0x00fffffe, - 0x05d5fb3a, 0x05c80ce4, 0x0502004f, 0x4178b800, - 0x91cc1408, 0x6008b000, 0x91341c06, 0x05edfaac, - 0x05000002, 0x6004b800, 0x5930001d, 0x4c000000, - 0x05c9fcd1, 0x4926601d, 0x5930000a, 0x4c000000, - 0x59242c00, 0x8c14050a, 0x05020011, 0x81342d80, - 0x05000002, 0x60102800, 0x58002403, 0x59340c03, - 0x59341802, 0x820c1d00, 0x00ffffff, 0x60143000, - 0x59cc4008, 0x59cc3809, 0x9c2041c0, 0x9c1c39c0, - 0x611a8000, 0x41301000, 0x0501f9f5, 0x8c5c0500, - 0x0502001f, 0x4936600a, 0x83440d80, 0x000007fe, - 0x0502000f, 0x60683000, 0x0501ffc5, 0x42000000, - 0x0010e451, 0x0505fa1b, 0x4d3c0000, 0x4d400000, - 0x60a68000, 0x05b1f852, 0x602a7800, 0x05b1f89e, + 0x0501fa93, 0x5c025800, 0x5930001e, 0x800001c0, + 0x05f60f6d, 0x05f1fa78, 0x90000c91, 0x059e19d6, + 0x0c01f001, 0x0010cc6a, 0x0010cc6d, 0x0010cc52, + 0x0010cc77, 0x0010cc83, 0x0010cc52, 0x0010cc52, + 0x0010cc52, 0x0010cc52, 0x0010cc52, 0x0010cc52, + 0x0010cc52, 0x0010cc52, 0x0010cc52, 0x0010cc52, + 0x0010cc52, 0x0010cc52, 0x05f9f805, 0x4d400000, + 0x5930002b, 0x80000540, 0x05000004, 0x41400800, + 0x05a1fb7d, 0x40068000, 0x4d2c0000, 0x59325809, + 0x05f1fdf6, 0x05000006, 0x592c040b, 0x8c000510, + 0x05000002, 0x05d9ffa0, 0x0501fa69, 0x4c5c0000, + 0x5930b80a, 0x05e5fc80, 0x485e600a, 0x5c00b800, + 0x5c025800, 0x5c028000, 0x5c03e000, 0x05dc0557, + 0x1c01f000, 0x598c000b, 0x81300580, 0x05020003, + 0x05e1f85e, 0x0502000e, 0x05ddf9fd, 0x05fc07df, + 0x05ddfc75, 0x0500000a, 0x059df99f, 0x05f1fa33, + 0x05020003, 0x05e1f825, 0x05020005, 0x05ddf914, + 0x05fc07d6, 0x05ddfc6c, 0x059e0997, 0x59300203, + 0x90000c91, 0x059e1994, 0x0c01f7bf, 0x05a1fc64, + 0x05fdf7ce, 0x4933c857, 0x4d240000, 0x4c5c0000, + 0x4d440000, 0x4d340000, 0x4c580000, 0x59cc3800, + 0x821c3d00, 0x00ffffff, 0x59cc0007, 0x4c000000, + 0x59cc0001, 0x82000500, 0x00ffffff, 0x82000d80, + 0x00fffffe, 0x5c000000, 0x05020005, 0x801c0d80, + 0x05020061, 0x42000000, 0x00fffffe, 0x05d1ffdf, + 0x05c808a6, 0x0502005c, 0x4178b800, 0x83440580, + 0x000007fe, 0x05000007, 0x91cc1408, 0x6008b000, + 0x91341c06, 0x05edf8e7, 0x05000002, 0x6004b800, + 0x5930001d, 0x4c000000, 0x05c9f890, 0x4926601d, + 0x5930000a, 0x4c000000, 0x59242c00, 0x8c14050a, + 0x05020018, 0x81342d80, 0x05000002, 0x60102800, + 0x58002403, 0x59340c03, 0x59341802, 0x820c1d00, + 0x00ffffff, 0x60143000, 0x59cc4008, 0x59cc3809, + 0x9c2041c0, 0x9c1c39c0, 0x611a8000, 0x82100580, + 0x000007fe, 0x05020005, 0x59240200, 0x82000500, + 0xfffffe7f, 0x48024a00, 0x41301000, 0x0501fa2b, + 0x8c5c0500, 0x05020022, 0x4936600a, 0x83440d80, + 0x000007fe, 0x05020012, 0x60683000, 0x0505f811, + 0x42000000, 0x001123f5, 0x0505fa85, 0x4d3c0000, + 0x4d400000, 0x60a68000, 0x59240a00, 0x84040d02, + 0x48064a00, 0x05adf9da, 0x602a7800, 0x05adfa30, 0x5c028000, 0x5c027800, 0x0501f00d, 0x602c3000, - 0x0501ffb7, 0x42000000, 0x0010e451, 0x0505fa0d, + 0x0505f800, 0x42000000, 0x001123f5, 0x0505fa74, 0x4d3c0000, 0x4d400000, 0x60a68000, 0x417a7800, - 0x05adfd58, 0x5c028000, 0x5c027800, 0x5c000000, + 0x05a9fedb, 0x5c028000, 0x5c027800, 0x5c000000, 0x4802600a, 0x5c000000, 0x4802601d, 0x59cc0007, 0x83440d80, 0x000007fe, 0x05020005, 0x42000000, 0x00fffffe, 0x4a026c00, 0x00000707, 0x48026802, 0x80000580, 0x5c00b000, 0x5c026800, 0x5c028800, 0x5c00b800, 0x5c024800, 0x1c01f000, 0x4933c857, - 0x4c040000, 0x59a800b6, 0xb00005b4, 0x05020040, - 0x59cc0a08, 0x82040480, 0x00000100, 0x05001033, - 0x59cc0c08, 0x82040500, 0x00008000, 0x05000035, - 0x59a80041, 0x80000540, 0x05020009, 0x5930100a, + 0x4c040000, 0x59a800bb, 0xb00005b4, 0x05020043, + 0x59cc0a08, 0x82040480, 0x00000100, 0x05001036, + 0x59cc0c08, 0x82040500, 0x00008000, 0x05000038, + 0x59a80044, 0x80000540, 0x05020009, 0x5930100a, 0x58080212, 0x82000500, 0x0000ff00, 0x05000004, - 0x82040500, 0x00000800, 0x0500002a, 0x59cc0c09, - 0x80040840, 0x05001024, 0x59a80a49, 0x8c040506, - 0x05000004, 0x59cc0c0f, 0x8c04051e, 0x05020012, - 0x59cc0a17, 0x800409c0, 0x05020012, 0x59cc0a18, - 0x82040480, 0x00000100, 0x05001014, 0x59cc0c18, - 0x800409c0, 0x0502000e, 0x59cc0c19, 0x80040840, - 0x05001011, 0x59cc0c1a, 0x80040840, 0x05001011, - 0x0501f017, 0x4a02621c, 0x00000100, 0x0501f012, - 0x4a02621c, 0x00000300, 0x0501f00f, 0x4a02621c, - 0x00000500, 0x0501f00c, 0x4a02621c, 0x00000700, - 0x0501f009, 0x4a02621c, 0x00000900, 0x0501f006, - 0x4a02621c, 0x00000f00, 0x0501f003, 0x4a02621c, - 0x00002d00, 0x90000541, 0x0501f002, 0x80000580, - 0x5c000800, 0x1c01f000, 0x59cc0407, 0x4803c857, - 0x82000580, 0x00000800, 0x05000002, 0x6402621c, - 0x1c01f000, 0x4933c857, 0x4c580000, 0x59cc000c, - 0x59340802, 0x82040d00, 0x00ffffff, 0x80040580, - 0x0502000a, 0x91cc1408, 0x6008b000, 0x91341c06, - 0x05edf9ff, 0x05020005, 0x91cc140a, 0x6008b000, - 0x91341c08, 0x05edf9fa, 0x5c00b000, 0x1c01f000, - 0x4933c857, 0x4c580000, 0x91cc140b, 0x6008b000, - 0x91341c06, 0x05edf9f2, 0x05020008, 0x91cc140d, - 0x6008b000, 0x91341c08, 0x05edf9ed, 0x05000014, - 0x4933c856, 0x4933c856, 0x4933c857, 0x59340009, - 0x4803c857, 0x5934000e, 0x4803c857, 0x59340008, - 0x4803c857, 0x5934000d, 0x4803c857, 0x59340007, - 0x4803c857, 0x5934000c, 0x4803c857, 0x59340006, - 0x4803c857, 0x5934000b, 0x4803c857, 0x5c00b000, - 0x1c01f000, 0x4933c857, 0x4947c857, 0x4943c857, - 0x4c600000, 0x05ddfe9e, 0x4df00000, 0x4d2c0000, - 0x4d300000, 0x4d340000, 0x4c580000, 0x0501f8d3, - 0x4130c000, 0x42026000, 0x00111b00, 0x59a8003b, - 0x8060c1c0, 0x05000005, 0x82601580, 0x00111a70, - 0x05000002, 0x80000040, 0x81640480, 0x05021092, - 0x40600000, 0x81300580, 0x0500008a, 0x0501fa1a, - 0x05020088, 0x812649c0, 0x05000004, 0x5930001d, - 0x81240580, 0x05020083, 0x5932680a, 0x05e5fb73, - 0x05000080, 0x59300407, 0x90000c92, 0x059e1f43, - 0x0c01f001, 0x0010c714, 0x0010c6ac, 0x0010c6ba, - 0x0010c6c4, 0x0010c6ac, 0x0010c6ba, 0x0010c6ec, - 0x0010c6f9, 0x0010c6ab, 0x0010c6ab, 0x0010c6ff, - 0x0010c6ab, 0x0010c6ab, 0x0010c6ab, 0x0010c6ab, - 0x0010c710, 0x0010c70a, 0x0010c708, 0x059dff2f, - 0x59300403, 0xb0000583, 0x05f40ca4, 0x0501ffa7, - 0x05f1ff0b, 0x05000005, 0x05f1ff18, 0x0502005d, - 0x05e9fc0f, 0x0501f05b, 0x05adfcbd, 0x05f1ff13, - 0x05e80c0b, 0x0501f057, 0x59325809, 0x05f1fe0e, - 0x05000054, 0x49425a0a, 0x497a5c0d, 0x0001fb82, - 0x59300229, 0x90000583, 0x05f00ee6, 0x0501f04d, - 0x05f9fa99, 0x59300008, 0x8c000500, 0x05000003, - 0x05a5f981, 0x0501f007, 0x59300203, 0x90000584, - 0x05a4097d, 0x59300203, 0x90000584, 0x05a4097a, - 0x59325809, 0x05f1fdf8, 0x0500003e, 0x592c0208, - 0x82000500, 0x000000ff, 0x90000594, 0x05f20ed1, - 0x05f5ffd9, 0x0005f9f3, 0x05d1fd2e, 0x4a025a08, - 0x00000103, 0x592c040c, 0x8c000512, 0x05000006, - 0x4d2c0000, 0x592c000d, 0x40025800, 0x05a1fab8, - 0x5c025800, 0x49425a0a, 0x497a580d, 0x0501fc4a, - 0x05f5fc75, 0x05f1ff3b, 0x0001fb82, 0x0501f025, - 0x59300203, 0x90000584, 0x05a4095b, 0x59325809, - 0x05f1fdd9, 0x0500001f, 0x49425a0a, 0x0501fc3e, - 0x05f5ffbd, 0x0005f9f3, 0x05f5fc67, 0x0001fb82, - 0x0501f018, 0x59300203, 0x90000591, 0x05020019, - 0x59300429, 0x48026203, 0x0501f016, 0x59300203, - 0x90000584, 0x05a40948, 0x59325809, 0x05f1fdc6, - 0x0500000c, 0x49425a0a, 0x0001fb82, 0x0501f009, - 0x59325819, 0x05a1fa92, 0x05a5ffff, 0x59325809, - 0x05f1fdbd, 0x05000003, 0x49425a0a, 0x0001fb82, - 0x05e5fcc0, 0x8d3c051c, 0x05000002, 0x497a600a, - 0x91326430, 0x41580000, 0x81300480, 0x05fc1771, - 0x0501f002, 0x41526000, 0x8d3c0518, 0x0500002b, - 0x59a80898, 0x59a80099, 0x80040480, 0x05000027, - 0x81300800, 0x41540000, 0x80040480, 0x05021023, - 0x5930000a, 0x800001c0, 0x05fe0765, 0x0001fb00, - 0x05fe07ec, 0x59340802, 0x82040d00, 0x00ffffff, - 0x5930002a, 0x80040580, 0x05fe07e6, 0x59340813, - 0x59301029, 0x80040582, 0x82000500, 0x00ffffff, - 0x0500000c, 0x0505f9bf, 0x42000800, 0x0010e512, - 0x58040005, 0x80080580, 0x82000500, 0x00ffffff, - 0x05fc07d8, 0x90040c0d, 0x8058b040, 0x05fe07f9, - 0x59300203, 0x90000588, 0x05020002, 0x0501fe69, - 0x4936600a, 0x05fdf74e, 0x5c00b000, 0x5c026800, - 0x5c026000, 0x5c025800, 0x5c03e000, 0x05dc0db9, - 0x5c00c000, 0x1c01f000, 0x4933c857, 0x813261c0, - 0x05000025, 0x83300d80, 0x00111a70, 0x05000022, - 0x8d3c0506, 0x05020020, 0x59300c07, 0x90040581, - 0x05000008, 0x90040582, 0x0502001b, 0x59300229, - 0x90000581, 0x05020018, 0x59300c18, 0x0501f002, - 0x59300c03, 0x900405b9, 0x05000003, 0x900405b5, - 0x05020011, 0x4d300000, 0x4d1c0000, 0x5932602a, - 0x4933c857, 0x05f5f9f9, 0x059c0e70, 0x591c001e, - 0x497a381e, 0x591c0c16, 0x84040d02, 0x48063c16, - 0x5c023800, 0x5c026000, 0x81300580, 0x059e0e67, - 0x497a602a, 0x1c01f000, 0x5c000000, 0x4c000000, - 0x4803c857, 0x4d3c0000, 0x60067800, 0x05c5fd68, - 0x5c027800, 0x4c580000, 0x6008b000, 0x5930181d, - 0x900c1c01, 0x91cc140b, 0x05edf8c5, 0x5c00b000, - 0x80000540, 0x1c01f000, 0x492fc857, 0x4943c857, - 0x59a8000c, 0x812c0480, 0x05001014, 0x59a8000a, - 0x812c0480, 0x05021011, 0x4d400000, 0x592c0000, - 0x80005d40, 0x0500000a, 0x497a5800, 0x49425a0a, - 0x4c2c0000, 0x0001fb82, 0x5c025800, 0x9140058c, - 0x05fe07f7, 0x60128000, 0x05fdf7f5, 0x49425a0a, - 0x5c028000, 0x0001f382, 0x1c01f000, 0x61fc21ff, - 0x5930100a, 0x800811c0, 0x05000002, 0x58082403, - 0x41301000, 0x0501f006, 0x41781000, 0x41442000, - 0x0501f003, 0x41781000, 0x61fc21ff, 0x5c000000, - 0x4c000000, 0x4803c857, 0x480bc857, 0x4813c857, - 0x492fc857, 0x4943c857, 0x4d2c0000, 0x4c040000, - 0x4c080000, 0x4c0c0000, 0x4c100000, 0x4c140000, - 0x4c180000, 0x4c1c0000, 0x4c200000, 0x05a1f9c7, - 0x059c0e1e, 0x5c004000, 0x5c003800, 0x5c003000, - 0x5c002800, 0x5c002000, 0x5c001800, 0x5c001000, - 0x5c000800, 0x05011000, 0x912c0408, 0x4803c840, + 0x82040500, 0x00000800, 0x0500002d, 0x59cc0c09, + 0x80040840, 0x05001027, 0x59a80a4c, 0x8c040506, + 0x05000004, 0x59cc0c0f, 0x8c04051e, 0x05020015, + 0x59cc0a17, 0x800409c0, 0x05020015, 0x59cc0a18, + 0x82040480, 0x00000100, 0x05001017, 0x59a80807, + 0x8c040508, 0x05020004, 0x59cc0c18, 0x800409c0, + 0x0502000e, 0x59cc0c19, 0x80040840, 0x05001011, + 0x59cc0c1a, 0x80040840, 0x05001011, 0x0501f017, + 0x4a02621c, 0x00000100, 0x0501f012, 0x4a02621c, + 0x00000300, 0x0501f00f, 0x4a02621c, 0x00000500, + 0x0501f00c, 0x4a02621c, 0x00000700, 0x0501f009, + 0x4a02621c, 0x00000900, 0x0501f006, 0x4a02621c, + 0x00000f00, 0x0501f003, 0x4a02621c, 0x00002d00, + 0x90000541, 0x0501f002, 0x80000580, 0x5c000800, + 0x1c01f000, 0x59cc0407, 0x4803c857, 0x82000580, + 0x00000800, 0x05000002, 0x6402621c, 0x1c01f000, + 0x4933c857, 0x4c580000, 0x59cc000c, 0x59340802, + 0x82040d00, 0x00ffffff, 0x80040580, 0x0502000a, + 0x91cc1408, 0x6008b000, 0x91341c06, 0x05edf82d, + 0x05020005, 0x91cc140a, 0x6008b000, 0x91341c08, + 0x05edf828, 0x5c00b000, 0x1c01f000, 0x4933c857, + 0x4c580000, 0x91cc140b, 0x6008b000, 0x91341c06, + 0x05edf820, 0x05020008, 0x91cc140d, 0x6008b000, + 0x91341c08, 0x05edf81b, 0x05000014, 0x4933c856, + 0x4933c856, 0x4933c857, 0x59340009, 0x4803c857, + 0x5934000e, 0x4803c857, 0x59340008, 0x4803c857, + 0x5934000d, 0x4803c857, 0x59340007, 0x4803c857, + 0x5934000c, 0x4803c857, 0x59340006, 0x4803c857, + 0x5934000b, 0x4803c857, 0x5c00b000, 0x1c01f000, + 0x4933c857, 0x4947c857, 0x4943c857, 0x4c600000, + 0x05ddfc45, 0x4df00000, 0x4d2c0000, 0x4d300000, + 0x4d340000, 0x4c580000, 0x0501f901, 0x4130c000, + 0x40be6000, 0x59a8003d, 0x8060c1c0, 0x05000004, + 0x80bc1498, 0x05001002, 0x80000040, 0x81640480, + 0x05021090, 0x40600000, 0x81300580, 0x05000088, + 0x0501fa4f, 0x05020086, 0x812649c0, 0x05000004, + 0x5930001d, 0x81240580, 0x05020081, 0x5932680a, + 0x05e5f94e, 0x0500007e, 0x59300407, 0x90000c92, + 0x059e1869, 0x0c01f001, 0x0010ce27, 0x0010cdc1, + 0x0010cdcf, 0x0010cdd9, 0x0010cdc1, 0x0010cdcf, + 0x0010ce01, 0x0010ce0e, 0x0010cdc0, 0x0010cdc0, + 0x0010ce14, 0x0010cdc0, 0x0010cdc0, 0x0010cdc0, + 0x0010cdc0, 0x0010ce23, 0x0010ce1d, 0x0010ce1d, + 0x059df855, 0x59300403, 0xb0000583, 0x05f40b35, + 0x0501fff9, 0x05f1fd8f, 0x05000005, 0x05f1fd9c, + 0x0502005b, 0x05e9fa34, 0x0501f059, 0x05a9fe3f, + 0x05f1fd97, 0x05e80a30, 0x0501f055, 0x59325809, + 0x05f1fc82, 0x05000052, 0x49425a0a, 0x497a5c0d, + 0x0001fba8, 0x59300229, 0x90000583, 0x05f00d6a, + 0x0501f04b, 0x05f9f935, 0x59300008, 0x8c000500, + 0x05000003, 0x05a1fb0a, 0x0501f007, 0x59300203, + 0x90000584, 0x05a00b06, 0x59300203, 0x90000584, + 0x05a00b03, 0x59325809, 0x05f1fc6c, 0x0500003c, + 0x592c0208, 0x82000500, 0x000000ff, 0x90000594, + 0x05f20d55, 0x05f5fe6a, 0x0005fa1a, 0x05d1f9a1, + 0x4a025a08, 0x00000103, 0x592c040c, 0x8c000512, + 0x05000006, 0x4d2c0000, 0x592c000d, 0x40025800, + 0x059dfbda, 0x5c025800, 0x49425a0a, 0x497a580d, + 0x0501fc7f, 0x05f5fb06, 0x05f1fdbf, 0x0001fba8, + 0x0501f023, 0x59300203, 0x90000584, 0x05a00ae4, + 0x59325809, 0x05f1fc4d, 0x0500001d, 0x49425a0a, + 0x0501fc73, 0x05f5fe4e, 0x0005fa1a, 0x05f5faf8, + 0x0001fba8, 0x0501f016, 0x59300203, 0x90000591, + 0x05020017, 0x59300429, 0x48026203, 0x0501f014, + 0x59300203, 0x90000584, 0x05a00ad1, 0x59325809, + 0x05f1fc3a, 0x0500000a, 0x49425a0a, 0x0001fba8, + 0x0501f007, 0x05a5f95d, 0x59325809, 0x05f1fc33, + 0x05000003, 0x49425a0a, 0x0001fba8, 0x05e5fac2, + 0x8d3c051c, 0x05000002, 0x497a600a, 0x91326430, + 0x41580000, 0x81300480, 0x05fc1773, 0x0501f002, + 0x41526000, 0x8d3c0518, 0x0500002c, 0x59a8089b, + 0x59a8009c, 0x80040480, 0x05000028, 0x81300800, + 0x41540000, 0x80040480, 0x05021024, 0x5930000a, + 0x800001c0, 0x05fe0767, 0x0001fb08, 0x05fe07ec, + 0x59340802, 0x82040d00, 0x00ffffff, 0x5930002a, + 0x80040580, 0x05fe07e6, 0x59340013, 0x59301029, + 0x80080580, 0x82000500, 0x00ffffff, 0x0500000c, + 0x0505fa27, 0x42000800, 0x001124b6, 0x58040005, + 0x80080580, 0x82000500, 0x00ffffff, 0x05fc07d8, + 0x90040c0d, 0x8058b040, 0x05fe07f9, 0x59300203, + 0x90000588, 0x05020003, 0x0501feb3, 0x497a6009, + 0x4936600a, 0x05fdf74f, 0x82bc0580, 0x00115aa4, + 0x0500002f, 0x42026000, 0x00115aa4, 0x59a8029f, + 0x8060c1c0, 0x05000007, 0x806014af, 0x05021005, + 0x82601580, 0x00115a14, 0x05000002, 0x80000040, + 0x59a8123e, 0x80080480, 0x05021021, 0x81300598, + 0x0500001c, 0x0501f982, 0x0502001a, 0x812649c0, + 0x05000004, 0x5930001d, 0x81240580, 0x05020015, + 0x5932680a, 0x05e5f881, 0x05000012, 0x59300407, + 0x90000d84, 0x05020003, 0x0501ff43, 0x0501f009, + 0x90000d91, 0x0502000b, 0x05a5f8fc, 0x59325809, + 0x05f1fbd2, 0x05000003, 0x49425a0a, 0x0001fba8, + 0x05e5fa61, 0x8d3c051c, 0x05000002, 0x497a600a, + 0x91326430, 0x813004af, 0x05fc17e1, 0x5c00b000, + 0x5c026800, 0x5c026000, 0x5c025800, 0x5c03e000, + 0x05dc0b32, 0x5c00c000, 0x1c01f000, 0x4933c857, + 0x813261c0, 0x05000025, 0x83300d80, 0x00115a14, + 0x05000022, 0x8d3c0506, 0x05020020, 0x59300c07, + 0x90040581, 0x05000008, 0x90040582, 0x0502001b, + 0x59300229, 0x90000581, 0x05020018, 0x59300c18, + 0x0501f002, 0x59300c03, 0x900405b9, 0x05000003, + 0x900405b5, 0x05020011, 0x4d300000, 0x4d1c0000, + 0x5932602a, 0x4933c857, 0x05f5f850, 0x05980f66, + 0x591c001e, 0x497a381e, 0x591c0c16, 0x84040d02, + 0x48063c16, 0x5c023800, 0x5c026000, 0x81300580, + 0x059a0f5d, 0x497a602a, 0x1c01f000, 0x5c000000, + 0x4c000000, 0x4803c857, 0x4d3c0000, 0x60067800, + 0x05c5f836, 0x5c027800, 0x4c580000, 0x6008b000, + 0x5930181d, 0x900c1c01, 0x91cc140b, 0x05e9fec5, + 0x5c00b000, 0x80000540, 0x1c01f000, 0x492fc857, + 0x4943c857, 0x59a8000c, 0x812c0480, 0x05021003, + 0x05f1fb96, 0x05000014, 0x59a8000a, 0x812c0480, + 0x05021011, 0x4d400000, 0x592c0000, 0x80005d40, + 0x0500000a, 0x497a5800, 0x49425a0a, 0x4c2c0000, + 0x0001fba8, 0x5c025800, 0x9140058c, 0x05fe07f7, + 0x60128000, 0x05fdf7f5, 0x49425a0a, 0x5c028000, + 0x0001f3a8, 0x1c01f000, 0x61fc21ff, 0x5930100a, + 0x800811c0, 0x05000002, 0x58082403, 0x41301000, + 0x0501f006, 0x41781000, 0x41442000, 0x0501f003, + 0x41781000, 0x61fc21ff, 0x5c000000, 0x4c000000, + 0x4803c857, 0x480bc857, 0x4813c857, 0x492fc857, + 0x4943c857, 0x4d2c0000, 0x4c040000, 0x4c080000, + 0x4c0c0000, 0x4c100000, 0x4c140000, 0x4c180000, + 0x4c1c0000, 0x4c200000, 0x059dfab7, 0x05980f12, + 0x5c004000, 0x5c003800, 0x5c003000, 0x5c002800, + 0x5c002000, 0x5c001800, 0x5c001000, 0x5c000800, + 0x05011000, 0x912c0408, 0x4803c840, 0x6443c842, + 0x40000000, 0x05fd17ff, 0x4a025808, 0x0000010d, + 0x800811c0, 0x05000019, 0x914005a9, 0x05020013, + 0x90180582, 0x05000009, 0x90180583, 0x05000007, + 0x90180588, 0x05000005, 0x90180586, 0x05000006, + 0x90180589, 0x05020009, 0x4a02580d, 0xffffffff, + 0x0501f007, 0x5808280a, 0x58140002, 0x82000500, + 0x00ffffff, 0x48025816, 0x480a580d, 0x58080202, + 0x48025c17, 0x0501f005, 0x4a02580d, 0xffffffff, + 0x4a025c17, 0x0000ffff, 0xb1400586, 0x05000002, + 0x41782800, 0x480e5810, 0x48065811, 0x48225812, + 0x481e5813, 0x481a5c0c, 0xb1400586, 0x05020007, + 0x901805a0, 0x05020005, 0x59a8024c, 0x8c000508, + 0x05000002, 0x84142d46, 0x49425a0c, 0x48125a0a, + 0x82100580, 0x0000ffff, 0x05000029, 0x4d440000, + 0x4d340000, 0x4c140000, 0x4c180000, 0x40128800, + 0x83440480, 0x000007f0, 0x05001006, 0x83440480, + 0x00000800, 0x05021003, 0x05c5fdf0, 0x0501f002, + 0x0001fb08, 0x059a0ec0, 0x59340002, 0x82000500, + 0x00ffffff, 0x48025816, 0x5c003000, 0x5c002800, + 0xb1400586, 0x05020010, 0x901805a0, 0x0502000e, + 0x84142d48, 0x59344006, 0x59343807, 0x59341808, + 0x59340809, 0x9c2041c0, 0x9c1c39c0, 0x9c0c19c0, + 0x9c0409c0, 0x480e580e, 0x4806580f, 0x48225812, + 0x481e5813, 0x5c026800, 0x5c028800, 0x48165a0b, + 0x497a5800, 0x497a5c08, 0x812000d0, 0x48025c14, + 0x0501fcc2, 0x5c025800, 0x1c01f000, 0x5c000000, + 0x4c000000, 0x4803c857, 0x480bc857, 0x480fc857, + 0x4813c857, 0x4817c857, 0x4d2c0000, 0x4c080000, + 0x4c0c0000, 0x4c100000, 0x4c140000, 0x059dfa36, + 0x05980e91, 0x5c002800, 0x5c002000, 0x5c001800, + 0x5c001000, 0x05011000, 0x912c0408, 0x4803c840, 0x6443c842, 0x40000000, 0x05fd17ff, 0x4a025808, - 0x0000010d, 0x800811c0, 0x05000019, 0x914005a9, - 0x05020013, 0x90180582, 0x05000009, 0x90180583, - 0x05000007, 0x90180588, 0x05000005, 0x90180586, - 0x05000006, 0x90180589, 0x05020009, 0x4a02580d, - 0xffffffff, 0x0501f007, 0x5808280a, 0x58140002, - 0x82000500, 0x00ffffff, 0x48025816, 0x480a580d, - 0x58080202, 0x48025c17, 0x0501f005, 0x4a02580d, - 0xffffffff, 0x4a025c17, 0x0000ffff, 0xb1400586, - 0x05000002, 0x41782800, 0x480e5810, 0x48065811, - 0x48225812, 0x481e5813, 0x481a5c0c, 0xb1400586, - 0x05020007, 0x901805a0, 0x05020005, 0x59a80249, - 0x8c000508, 0x05000002, 0x84142d46, 0x49425a0c, - 0x48125a0a, 0x82100580, 0x0000ffff, 0x05000026, - 0x4d440000, 0x4d340000, 0x4c140000, 0x4c180000, - 0x40128800, 0x83440480, 0x000007f0, 0x05001003, - 0x05c9fa71, 0x0501f002, 0x0001fb00, 0x059e0dcf, - 0x59340002, 0x82000500, 0x00ffffff, 0x48025816, - 0x5c003000, 0x5c002800, 0xb1400586, 0x05020010, - 0x901805a0, 0x0502000e, 0x84142d48, 0x59344006, - 0x59343807, 0x59341808, 0x59340809, 0x9c2041c0, - 0x9c1c39c0, 0x9c0c19c0, 0x9c0409c0, 0x480e580e, - 0x4806580f, 0x48225812, 0x481e5813, 0x5c026800, - 0x5c028800, 0x48165a0b, 0x497a5800, 0x497a5c08, - 0x812000d0, 0x48025c14, 0x0501fcaf, 0x5c025800, - 0x1c01f000, 0x5c000000, 0x4c000000, 0x4803c857, - 0x480bc857, 0x480fc857, 0x4813c857, 0x4817c857, - 0x4d2c0000, 0x4c080000, 0x4c0c0000, 0x4c100000, - 0x4c140000, 0x05a1f949, 0x059c0da0, 0x5c002800, - 0x5c002000, 0x5c001800, 0x5c001000, 0x05011000, - 0x912c0408, 0x4803c840, 0x6443c842, 0x40000000, - 0x05fd17ff, 0x4a025808, 0x0000010d, 0x65265a0c, - 0x480a5a0e, 0x480e5c0e, 0x48125a0f, 0x48165c0f, - 0x82080580, 0x00008014, 0x05020054, 0x820c0580, - 0x0000ffff, 0x05020051, 0x90100586, 0x0502004f, - 0x4d240000, 0x42024800, 0x0010e512, 0x59240005, - 0x5c024800, 0x05cdf855, 0x05000009, 0x82000d00, - 0x00ffff00, 0x05020006, 0x82000c00, 0x00102853, - 0x50040800, 0x80040910, 0x48065a10, 0x82000d00, - 0x0000ffff, 0x48065c10, 0x80000120, 0x48025a11, - 0x59a80249, 0x82001500, 0x00003500, 0x480a5a12, - 0x8c000502, 0x05000016, 0x8c000506, 0x05000006, - 0x90000d0a, 0x90040d8a, 0x05020003, 0x64065c11, - 0x0501f018, 0x8c00050a, 0x05000006, 0x90000d22, - 0x90040da2, 0x05020003, 0x640e5c11, 0x0501f011, - 0x8c000508, 0x05000006, 0x90000d12, 0x90040d92, - 0x05020003, 0x640a5c11, 0x0501f00a, 0x05cdf82b, - 0x05020003, 0x64125c11, 0x0501f006, 0x8c000506, - 0x05000003, 0x64165c11, 0x0501f002, 0x64025c11, - 0x59a8005c, 0x48025c12, 0x59a8005d, 0x48025a13, - 0x59c40801, 0x82040d00, 0x00018000, 0x90040580, - 0x05020003, 0x64025c13, 0x0501f00c, 0x82040580, - 0x00008000, 0x05020003, 0x64065c13, 0x0501f007, - 0x82040580, 0x00010000, 0x05020003, 0x640e5c13, - 0x0501f002, 0x64125c13, 0x0501fc37, 0x5c025800, - 0x1c01f000, 0x5930080a, 0x800409c0, 0x05000004, - 0x58040403, 0x81440580, 0x1c01f000, 0x90000541, - 0x05fdf7fe, 0x4933c857, 0xb13805a1, 0x05000003, - 0xb13805a0, 0x0502000c, 0x5932680a, 0x59340200, - 0x8c00050e, 0x05020002, 0x497a6205, 0x5930001c, - 0x80000540, 0x000407dc, 0x497a601c, 0x0801f800, - 0x1c01f000, 0x1c01f000, 0x4933c857, 0xb13805a1, - 0x05000003, 0xb13805a0, 0x05e60372, 0x59303403, - 0x82180580, 0x00000086, 0x05e4030a, 0x82180580, - 0x00000087, 0x05e40307, 0x497a6205, 0x642a6203, - 0x1c01f000, 0x4933c857, 0xb13805a1, 0x05000003, - 0xb13805a0, 0x05020008, 0x59300c03, 0x4807c857, - 0xb004048a, 0x059e1d05, 0xb0040481, 0x059c1d03, - 0x0c01f002, 0x1c01f000, 0x0010c8e7, 0x0010c8e4, - 0x0010c8f4, 0x0010c8e3, 0x0010c8e3, 0x0010c8e3, - 0x0010c8e3, 0x0010c8e3, 0x0010c8f4, 0x059dfcf7, - 0x497a6205, 0x64126203, 0x1c01f000, 0x497a6205, - 0x59325809, 0x832c0500, 0x00ff0000, 0x05000004, - 0x592c0c0e, 0x8c04051a, 0x05020003, 0x0005fe4e, - 0x0005f7dc, 0x0501f99f, 0x05fc07fd, 0x1c01f000, - 0x497a6205, 0x59cc0002, 0x90000530, 0x90000590, - 0x05f006dc, 0x5930001c, 0x80000540, 0x05000004, + 0x0000010d, 0x65265a0c, 0x480a5a0e, 0x480e5c0e, + 0x48125a0f, 0x48165c0f, 0x82080580, 0x00008014, + 0x05020054, 0x820c0580, 0x0000ffff, 0x05020051, + 0x90100586, 0x0502004f, 0x4d240000, 0x42024800, + 0x001124b6, 0x59240005, 0x5c024800, 0x05c9fbf5, + 0x05000009, 0x82000d00, 0x00ffff00, 0x05020006, + 0x82000c00, 0x001028fb, 0x50040800, 0x80040910, + 0x48065a10, 0x82000d00, 0x0000ffff, 0x48065c10, + 0x80000120, 0x48025a11, 0x59a8024c, 0x82001500, + 0x00003500, 0x480a5a12, 0x8c000502, 0x05000016, + 0x8c000506, 0x05000006, 0x90000d0a, 0x90040d8a, + 0x05020003, 0x64065c11, 0x0501f018, 0x8c00050a, + 0x05000006, 0x90000d22, 0x90040da2, 0x05020003, + 0x640e5c11, 0x0501f011, 0x8c000508, 0x05000006, + 0x90000d12, 0x90040d92, 0x05020003, 0x640a5c11, + 0x0501f00a, 0x05c9fbcb, 0x05020003, 0x64125c11, + 0x0501f006, 0x8c000506, 0x05000003, 0x64165c11, + 0x0501f002, 0x64025c11, 0x59a8005f, 0x48025c12, + 0x59a80060, 0x48025a13, 0x59c40801, 0x82040d00, + 0x00018000, 0x90040580, 0x05020003, 0x64025c13, + 0x0501f00c, 0x82040580, 0x00008000, 0x05020003, + 0x64065c13, 0x0501f007, 0x82040580, 0x00010000, + 0x05020003, 0x640e5c13, 0x0501f002, 0x64125c13, + 0x0501fc4a, 0x5c025800, 0x1c01f000, 0x5930080a, + 0x800409c0, 0x05000004, 0x58040403, 0x81440580, + 0x1c01f000, 0x90000541, 0x05fdf7fe, 0x4933c857, + 0xb13805a1, 0x05000003, 0xb13805a0, 0x0502000c, + 0x5932680a, 0x59340200, 0x8c00050e, 0x05020002, + 0x497a6205, 0x5930001c, 0x80000540, 0x00080010, 0x497a601c, 0x0801f800, 0x1c01f000, 0x1c01f000, - 0x4933c857, 0x493bc857, 0xb13805a1, 0x05000006, - 0xb13805a0, 0x05e6032f, 0x59cc0002, 0x8c000526, - 0x0500000c, 0x59300403, 0x4803c857, 0xb0000589, - 0x059e0cce, 0x497a6205, 0x5930001c, 0x80000540, - 0x05000004, 0x497a601c, 0x0801f800, 0x1c01f000, - 0x1c01f000, 0x4933c857, 0x59300403, 0x82000d80, - 0x00000085, 0x05020007, 0x4a026403, 0x0000008b, - 0x642e6203, 0x42000800, 0x80000040, 0x0005f6ab, - 0x82000d80, 0x0000008b, 0x05020025, 0x4d3c0000, - 0x417a7800, 0x05adfa07, 0x5c027800, 0x42000000, - 0x0010e454, 0x0501feb3, 0x59325809, 0x812e59c0, - 0x05000006, 0x832c0500, 0x00ff0000, 0x05000003, - 0x60128000, 0x05fdfe55, 0x60443000, 0x0501fc50, - 0x05adfce3, 0x59240400, 0x8c00050a, 0x0502000a, - 0x41782800, 0x60103000, 0x60a68000, 0x05fdfe64, - 0x6406642c, 0x64126407, 0x64066403, 0x641e6203, - 0x1c01f000, 0x602c0800, 0x05c5fbab, 0x64066407, - 0x64066403, 0x64066203, 0x05d9f72b, 0x1c01f000, - 0x4933c857, 0x40000000, 0x40000000, 0x1c01f000, - 0x4933c857, 0x59300a03, 0x9004058e, 0x05000003, - 0x90040590, 0x05020019, 0x0501f975, 0x05edfeb9, - 0x59300203, 0x90000d89, 0x0500000b, 0x48026429, - 0x4a026403, 0x00000085, 0x59300416, 0x8400055a, - 0x8400055e, 0x48026416, 0x64266203, 0x64166407, - 0x641a6229, 0x5932680a, 0x59340200, 0x8c00050e, - 0x05020003, 0x59a8005d, 0x48026006, 0x42000800, - 0x80000040, 0x0005feab, 0x1c01f000, 0x4933c857, - 0x4c040000, 0x59300403, 0x90000d9e, 0x05020012, - 0x800000d0, 0x59300a18, 0x82040d00, 0x000000ff, - 0x80040540, 0x4803c857, 0x48026418, 0x4a026403, - 0x00000085, 0x64266203, 0x64166407, 0x64126229, - 0x59a8005d, 0x48026006, 0x42000800, 0x80000040, - 0x0005feab, 0x5c000800, 0x1c01f000, 0x4933c857, - 0x40000000, 0x40000000, 0x1c01f000, 0x59300416, - 0x8c00050c, 0x0502000a, 0x4933c857, 0x4803c857, - 0x8c000518, 0x05000006, 0x8c000512, 0x05f20586, - 0x0501f937, 0x0005fe4e, 0x0005ffdc, 0x1c01f000, - 0x591c0407, 0x4803c857, 0x90000c89, 0x0502100b, - 0x0c01f001, 0x0010c9a2, 0x0010c9a2, 0x0010c9a2, - 0x0010c9a4, 0x0010c9a2, 0x0010c9a4, 0x0010c9a4, - 0x0010c9a2, 0x0010c9a4, 0x80000580, 0x1c01f000, - 0x90000541, 0x1c01f000, 0x591c0407, 0x9000051f, - 0x90000586, 0x0500000a, 0x4803c857, 0x64ee6403, - 0x6426641c, 0x4a02621c, 0x00002a00, 0x64066203, - 0x42000800, 0x80000040, 0x0005f6ab, 0x4803c856, - 0x4c040000, 0x4c140000, 0x4d300000, 0x411e6000, - 0x0501f90f, 0x497a6205, 0x59300416, 0x4803c857, - 0x82000500, 0xffffadff, 0x48026416, 0x497a6405, - 0x5c026000, 0x059dffc1, 0x059c0c18, 0x5c002800, - 0x5c000800, 0x05011000, 0x912c0408, 0x4803c840, - 0x6443c842, 0x40000000, 0x05fd17ff, 0x4a025808, - 0x0000010d, 0x497a5800, 0x65165a0c, 0x491e580d, - 0x59300402, 0x48025c0b, 0x5930041b, 0x48025c0f, - 0x591c0416, 0x84000556, 0x48023c16, 0x591c180a, - 0x580c0403, 0x48025a0a, 0x580c0002, 0x82000500, - 0x00ffffff, 0x48025816, 0x59cc0404, 0x48025c17, - 0x497a5a0b, 0x4816580e, 0x48065a0f, 0x580c0013, - 0x82000500, 0xff000000, 0x80000120, 0x48025c14, - 0x0501faf1, 0x493a6403, 0x4d400000, 0x61168000, - 0x591c0202, 0x4c000000, 0x4d300000, 0x411e6000, - 0x05fdfb31, 0x5c026000, 0x5c000000, 0x48023a02, - 0x5c028000, 0x491e602a, 0x4932381e, 0x641a3c07, - 0x641e3a03, 0x497a3806, 0x497a3a05, 0x1c01f000, - 0x4933c857, 0x91380593, 0x0502000a, 0x59300403, - 0x4803c857, 0x82000d80, 0x00000085, 0x05000026, - 0x82000d80, 0x0000008b, 0x05000023, 0x059dfbd3, - 0x913805a7, 0x0502000a, 0x05ddfa5f, 0x4d2c0000, - 0x4d400000, 0x59325809, 0x60128000, 0x05fdfd77, - 0x5c028000, 0x5c025800, 0x1c01f000, 0x91380594, - 0x05fc07f6, 0xb13805a1, 0x05000009, 0xb13805a0, - 0x05000007, 0x83380580, 0x00000089, 0x05000004, - 0x83380580, 0x0000008a, 0x05e60216, 0x05ddfe9a, - 0x05e60214, 0x59300a03, 0x9004058e, 0x05fc069b, - 0x9004058a, 0x0500000c, 0x9004058c, 0x0500000a, - 0x059dfbb2, 0x05f1fe75, 0x05000005, 0x643a6203, - 0x59a8005e, 0x48026205, 0x1c01f000, 0x642a6203, - 0x1c01f000, 0x83380480, 0x00000093, 0x0502100b, - 0x83380480, 0x00000085, 0x05001008, 0x83380580, - 0x00000089, 0x05000008, 0x83380580, 0x0000008a, - 0x05000031, 0x059dfb9d, 0x493bc857, 0x4933c857, - 0x05e5f1f4, 0x4933c857, 0x4c340000, 0x05f1fe5b, - 0x0500000b, 0x59300416, 0x8c00051a, 0x05000008, - 0x641a6407, 0x59300429, 0x90000d8e, 0x05020002, - 0x60080000, 0x48026203, 0x0501f01d, 0x59300c16, - 0x4c040000, 0x41306800, 0x05e5f9b1, 0x5c000800, - 0x05000015, 0x48066416, 0x64066203, 0x647a6403, - 0x59cc0c07, 0x4806641b, 0x59cc0a07, 0x4806621b, + 0x4933c857, 0xb13805a1, 0x05000003, 0xb13805a0, + 0x05e6015a, 0x59303403, 0x82180580, 0x00000086, + 0x05e400d5, 0x82180580, 0x00000087, 0x05e400d2, + 0x497a6205, 0x642a6203, 0x1c01f000, 0x4933c857, + 0xb13805a1, 0x05000003, 0xb13805a0, 0x05020008, + 0x59300c03, 0x4807c857, 0xb004048a, 0x059a1df6, + 0xb0040481, 0x05981df4, 0x0c01f002, 0x1c01f000, + 0x0010d031, 0x0010d02e, 0x0010d03e, 0x0010d02d, + 0x0010d02d, 0x0010d02d, 0x0010d02d, 0x0010d02d, + 0x0010d03e, 0x0599fde8, 0x497a6205, 0x64126203, + 0x1c01f000, 0x497a6205, 0x59325809, 0x832c0500, + 0x00ff0000, 0x05000004, 0x592c0c0e, 0x8c04051a, + 0x05020003, 0x0005fe84, 0x0009f010, 0x0501f99f, + 0x05fc07fd, 0x1c01f000, 0x497a6205, 0x59cc0002, + 0x90000530, 0x90000590, 0x05f0052a, 0x5930001c, + 0x80000540, 0x05000004, 0x497a601c, 0x0801f800, + 0x1c01f000, 0x1c01f000, 0x4933c857, 0x493bc857, + 0xb13805a1, 0x05000006, 0xb13805a0, 0x05e60117, + 0x59cc0002, 0x8c000526, 0x0500000c, 0x59300403, + 0x4803c857, 0xb0000589, 0x059a0dbf, 0x497a6205, + 0x5930001c, 0x80000540, 0x05000004, 0x497a601c, + 0x0801f800, 0x1c01f000, 0x1c01f000, 0x4933c857, + 0x59300403, 0x82000d80, 0x00000085, 0x05020007, + 0x4a026403, 0x0000008b, 0x642e6203, 0x42000800, + 0x80000040, 0x0005f6e2, 0x82000d80, 0x0000008b, + 0x05020025, 0x4d3c0000, 0x417a7800, 0x05a9fb54, + 0x5c027800, 0x42000000, 0x001123f8, 0x0501fee4, + 0x59325809, 0x812e59c0, 0x05000006, 0x832c0500, + 0x00ff0000, 0x05000003, 0x60128000, 0x05fdfe50, + 0x60443000, 0x0501fc63, 0x05a9fe35, 0x59240400, + 0x8c00050a, 0x0502000a, 0x41782800, 0x60103000, + 0x60a68000, 0x05fdfe61, 0x6406642c, 0x64126407, + 0x64066403, 0x641e6203, 0x1c01f000, 0x602c0800, + 0x05c1fe74, 0x64066407, 0x64066403, 0x64066203, + 0x05d9f49a, 0x1c01f000, 0x4933c857, 0x40000000, + 0x40000000, 0x1c01f000, 0x4933c857, 0x59300a03, + 0x9004058e, 0x05000003, 0x90040590, 0x05020019, + 0x0501f975, 0x05edfce1, 0x59300203, 0x90000d89, + 0x0500000b, 0x48026429, 0x4a026403, 0x00000085, + 0x59300416, 0x8400055a, 0x8400055e, 0x48026416, + 0x64266203, 0x64166407, 0x641a6229, 0x5932680a, + 0x59340200, 0x8c00050e, 0x05020003, 0x59a80060, + 0x48026006, 0x42000800, 0x80000040, 0x0005fee2, + 0x1c01f000, 0x4933c857, 0x4c040000, 0x59300403, + 0x90000d9e, 0x05020012, 0x800000d0, 0x59300a18, + 0x82040d00, 0x000000ff, 0x80040540, 0x4803c857, + 0x48026418, 0x4a026403, 0x00000085, 0x64266203, + 0x64166407, 0x64126229, 0x59a80060, 0x48026006, + 0x42000800, 0x80000040, 0x0005fee2, 0x5c000800, + 0x1c01f000, 0x4933c857, 0x40000000, 0x40000000, + 0x1c01f000, 0x59300416, 0x8c00050c, 0x0502000a, + 0x4933c857, 0x4803c857, 0x8c000518, 0x05000006, + 0x8c000512, 0x05f203d5, 0x0501f937, 0x0005fe84, + 0x0009f810, 0x1c01f000, 0x591c0407, 0x4803c857, + 0x90000c89, 0x0502100b, 0x0c01f001, 0x0010d0ec, + 0x0010d0ec, 0x0010d0ec, 0x0010d0ee, 0x0010d0ec, + 0x0010d0ee, 0x0010d0ee, 0x0010d0ec, 0x0010d0ee, + 0x80000580, 0x1c01f000, 0x90000541, 0x1c01f000, + 0x591c0407, 0x9000051f, 0x90000586, 0x0500000a, + 0x4803c857, 0x64ee6403, 0x6426641c, 0x4a02621c, + 0x00002a00, 0x64066203, 0x42000800, 0x80000040, + 0x0005f6e2, 0x4803c856, 0x4c040000, 0x4c140000, + 0x4d300000, 0x411e6000, 0x0501f90f, 0x497a6205, + 0x59300416, 0x4803c857, 0x82000500, 0xffffadff, + 0x48026416, 0x497a6405, 0x5c026000, 0x059df8ae, + 0x05980d09, 0x5c002800, 0x5c000800, 0x05011000, + 0x912c0408, 0x4803c840, 0x6443c842, 0x40000000, + 0x05fd17ff, 0x4a025808, 0x0000010d, 0x497a5800, + 0x65165a0c, 0x491e580d, 0x59300402, 0x48025c0b, + 0x5930041b, 0x48025c0f, 0x591c0416, 0x84000556, + 0x48023c16, 0x591c180a, 0x580c0403, 0x48025a0a, + 0x580c0002, 0x82000500, 0x00ffffff, 0x48025816, + 0x59cc0404, 0x48025c17, 0x497a5a0b, 0x4816580e, + 0x48065a0f, 0x580c0013, 0x82000500, 0xff000000, + 0x80000120, 0x48025c14, 0x0501fb04, 0x493a6403, + 0x4d400000, 0x61168000, 0x591c0202, 0x4c000000, + 0x4d300000, 0x411e6000, 0x05fdfae4, 0x5c026000, + 0x5c000000, 0x48023a02, 0x5c028000, 0x491e602a, + 0x4932381e, 0x641a3c07, 0x641e3a03, 0x497a3806, + 0x497a3a05, 0x1c01f000, 0x4933c857, 0x91380593, + 0x0502000a, 0x59300403, 0x4803c857, 0x82000d80, + 0x00000085, 0x05000026, 0x82000d80, 0x0000008b, + 0x05000023, 0x0599fcc4, 0x913805a7, 0x0502000a, + 0x05d9ffd3, 0x4d2c0000, 0x4d400000, 0x59325809, + 0x60128000, 0x05fdfd72, 0x5c028000, 0x5c025800, + 0x1c01f000, 0x91380594, 0x05fc07f6, 0xb13805a1, + 0x05000009, 0xb13805a0, 0x05000007, 0x83380580, + 0x00000089, 0x05000004, 0x83380580, 0x0000008a, + 0x05e207fe, 0x05ddfc0e, 0x05e207fc, 0x59300a03, + 0x9004058e, 0x05fc069b, 0x9004058a, 0x0500000c, + 0x9004058c, 0x0500000a, 0x0599fca3, 0x05f1fcc3, + 0x05000005, 0x643a6203, 0x59a80061, 0x48026205, + 0x1c01f000, 0x642a6203, 0x1c01f000, 0x83380480, + 0x00000093, 0x0502100b, 0x83380480, 0x00000085, + 0x05001008, 0x83380580, 0x00000089, 0x05000008, + 0x83380580, 0x0000008a, 0x05000031, 0x0599fc8e, + 0x493bc857, 0x4933c857, 0x05e1f7dc, 0x4933c857, + 0x4c340000, 0x05f1fca9, 0x0500000b, 0x59300416, + 0x8c00051a, 0x05000008, 0x641a6407, 0x59300429, + 0x90000d8e, 0x05020002, 0x60080000, 0x48026203, + 0x0501f01d, 0x59300c16, 0x4c040000, 0x41306800, + 0x05e1ff7c, 0x5c000800, 0x05000015, 0x48066416, + 0x64066203, 0x647a6403, 0x59cc0c07, 0x4806641b, + 0x59cc0a07, 0x4806621b, 0x5834080a, 0x4806600a, + 0x5834081d, 0x4806601d, 0x05f1fc8c, 0x05000004, + 0x59300416, 0x84000550, 0x48026416, 0x64126407, + 0x42000800, 0x80000040, 0x0005fee2, 0x40366000, + 0x0009f810, 0x5c006800, 0x1c01f000, 0x4933c857, + 0x59300416, 0x8c00051a, 0x0502001a, 0x59300418, + 0x82000d00, 0x0000ff00, 0x900409c0, 0x9004059e, + 0x05020014, 0x4c340000, 0x41306800, 0x05e1ff55, + 0x0500000e, 0x493a6403, 0x64066203, 0x64126407, + 0x5834041b, 0x4802641b, 0x5834021b, 0x4802621b, 0x5834080a, 0x4806600a, 0x5834081d, 0x4806601d, - 0x05f1fe3e, 0x05000004, 0x59300416, 0x84000550, - 0x48026416, 0x64126407, 0x42000800, 0x80000040, - 0x0005feab, 0x40366000, 0x0005ffdc, 0x5c006800, - 0x1c01f000, 0x4933c857, 0x59300416, 0x8c00051a, - 0x0502001a, 0x59300418, 0x82000d00, 0x0000ff00, - 0x900409c0, 0x9004059e, 0x05020014, 0x4c340000, - 0x41306800, 0x05e5f98a, 0x0500000e, 0x493a6403, - 0x64066203, 0x64126407, 0x5834041b, 0x4802641b, - 0x5834021b, 0x4802621b, 0x5834080a, 0x4806600a, - 0x5834081d, 0x4806601d, 0x05f1fe09, 0x05d9fdea, - 0x40366000, 0x5c006800, 0x0005f7dc, 0x5930080a, - 0x58040200, 0x8c00051a, 0x059e0c13, 0x1c01f000, - 0x05c5fe2e, 0x05000019, 0x640a6203, 0x59300416, - 0x84000558, 0x48026416, 0x8c000512, 0x05000004, - 0x59a8005e, 0x48026205, 0x0501f006, 0x59a8085e, - 0x59a8005c, 0x80040400, 0x9000041e, 0x48026205, - 0x5930000a, 0x90000c11, 0x50040000, 0x80000540, - 0x05000003, 0x90000c00, 0x05fdf7fc, 0x45300800, - 0x497a6000, 0x90000541, 0x1c01f000, 0x82100500, - 0xfffffeef, 0x05020017, 0x4d2c0000, 0x4937c857, - 0x59340811, 0x91341411, 0x800409c0, 0x0500000c, - 0x40040000, 0x81300580, 0x05000004, 0x90041400, - 0x58040800, 0x05fdf7f9, 0x59300800, 0x497a6000, - 0x44041000, 0x0005fe4e, 0x0501f002, 0x4933c857, - 0x5c025800, 0x492e6009, 0x0005fe4e, 0x0005f7dc, - 0x492fc857, 0x641a5a0a, 0x0001f382, 0x4c340000, - 0x5930000a, 0x800001c0, 0x0500000f, 0x90006c11, - 0x50340000, 0x80000540, 0x05000009, 0x81300580, - 0x05000004, 0x50340000, 0x90006c00, 0x05fdf7f9, - 0x59300000, 0x44006800, 0x497a6000, 0x5c006800, - 0x1c01f000, 0x59300c07, 0x90040585, 0x05fc07fc, - 0x90040591, 0x05fc07fa, 0x90040586, 0x05fc07f8, - 0x90040581, 0x05fc07f6, 0x059dfaf8, 0x4c340000, - 0x0501f81a, 0x0502000f, 0x90006c11, 0x50340000, - 0x80000540, 0x05000009, 0x81300580, 0x05000004, - 0x50340000, 0x90006c00, 0x05fdf7f9, 0x59300000, - 0x44006800, 0x497a6000, 0x5c006800, 0x1c01f000, - 0x59300c07, 0x90040585, 0x05fc07fc, 0x90040591, - 0x05fc07fa, 0x90040586, 0x05fc07f8, 0x90040581, - 0x05fc07f6, 0x059dfadd, 0x4c5c0000, 0x4c600000, - 0x5930000a, 0x800001c0, 0x0500000c, 0x5800bc03, - 0x825cbc00, 0x0010d400, 0x505cb800, 0x805cb9c0, - 0x05000006, 0x805cc580, 0x05020004, 0x5c00c000, - 0x5c00b800, 0x1c01f000, 0x4933c857, 0x4803c857, - 0x485fc857, 0x905cbd41, 0x05fdf7f9, 0x4933c857, - 0x4c080000, 0x4c0c0000, 0x4c580000, 0x59a81046, - 0x59cc1807, 0x820c1d00, 0x00ffffff, 0x800c0110, - 0x80083580, 0x0502000c, 0x91cc1408, 0x6008b000, - 0x5930000a, 0x90001c06, 0x05e9fd25, 0x05020006, - 0x91cc140a, 0x6008b000, 0x5930000a, 0x90001c08, - 0x05e9fd1f, 0x5c00b000, 0x5c001800, 0x5c001000, - 0x1c01f000, 0x4933c856, 0x493a6403, 0x05c1feaa, - 0x05adf195, 0x4933c857, 0x492fc857, 0x5930080a, - 0x58040200, 0x8c00051e, 0x05000004, 0x592c020c, - 0x84000558, 0x48025a0c, 0x1c01f000, 0x59e0180f, - 0x599c0413, 0x800c1000, 0x80080580, 0x05020002, - 0x41781000, 0x59e00010, 0x59e00810, 0x80040d80, - 0x05fe07fd, 0x80080580, 0x05000018, 0x4c080000, - 0x80102040, 0x0500000e, 0x599c0413, 0x80081000, + 0x05f1fc57, 0x05d9fb59, 0x40366000, 0x5c006800, + 0x0009f010, 0x5930080a, 0x58040200, 0x8c00051a, + 0x059a0cf8, 0x1c01f000, 0x05c5f956, 0x05000019, + 0x640a6203, 0x59300416, 0x84000558, 0x48026416, + 0x8c000512, 0x05000004, 0x59a80061, 0x48026205, + 0x0501f006, 0x59a80861, 0x59a8005f, 0x80040400, + 0x9000041e, 0x48026205, 0x5930000a, 0x90000c11, + 0x50040000, 0x80000540, 0x05000003, 0x90000c00, + 0x05fdf7fc, 0x45300800, 0x497a6000, 0x90000541, + 0x1c01f000, 0x82100500, 0xfffffeef, 0x05020017, + 0x4d2c0000, 0x4937c857, 0x59340811, 0x91341411, + 0x800409c0, 0x0500000c, 0x40040000, 0x81300580, + 0x05000004, 0x90041400, 0x58040800, 0x05fdf7f9, + 0x59300800, 0x497a6000, 0x44041000, 0x0005fe84, + 0x0501f002, 0x4933c857, 0x5c025800, 0x492e6009, + 0x0005fe84, 0x0009f010, 0x492fc857, 0x641a5a0a, + 0x0001f3a8, 0x4c340000, 0x5930000a, 0x800001c0, + 0x0500000f, 0x90006c11, 0x50340000, 0x80000540, + 0x05000009, 0x81300580, 0x05000004, 0x50340000, + 0x90006c00, 0x05fdf7f9, 0x59300000, 0x44006800, + 0x497a6000, 0x5c006800, 0x1c01f000, 0x59300c07, + 0x90040585, 0x05fc07fc, 0x90040591, 0x05fc07fa, + 0x90040586, 0x05fc07f8, 0x90040581, 0x05fc07f6, + 0x0599fbe9, 0x4c340000, 0x0501f81a, 0x0502000f, + 0x90006c11, 0x50340000, 0x80000540, 0x05000009, + 0x81300580, 0x05000004, 0x50340000, 0x90006c00, + 0x05fdf7f9, 0x59300000, 0x44006800, 0x497a6000, + 0x5c006800, 0x1c01f000, 0x59300c07, 0x90040585, + 0x05fc07fc, 0x90040591, 0x05fc07fa, 0x90040586, + 0x05fc07f8, 0x90040581, 0x05fc07f6, 0x0599fbce, + 0x4c5c0000, 0x4c600000, 0x5930000a, 0x800001c0, + 0x0500000c, 0x5800bc03, 0x825cbc00, 0x0010db80, + 0x505cb800, 0x805cb9c0, 0x05000006, 0x805cc580, + 0x05020004, 0x5c00c000, 0x5c00b800, 0x1c01f000, + 0x4933c857, 0x4803c857, 0x485fc857, 0x905cbd41, + 0x05fdf7f9, 0x4933c857, 0x4c080000, 0x4c0c0000, + 0x4c580000, 0x59a81049, 0x59cc1807, 0x820c1d00, + 0x00ffffff, 0x800c0110, 0x80083580, 0x0502000c, + 0x91cc1408, 0x6008b000, 0x5930000a, 0x90001c06, + 0x05e9fb20, 0x05020006, 0x91cc140a, 0x6008b000, + 0x5930000a, 0x90001c08, 0x05e9fb1a, 0x5c00b000, + 0x5c001800, 0x5c001000, 0x1c01f000, 0x4933c856, + 0x493a6403, 0x05c1f957, 0x05a9f2e3, 0x4933c857, + 0x492fc857, 0x5930080a, 0x58040200, 0x8c00051e, + 0x05000004, 0x592c020c, 0x84000558, 0x48025a0c, + 0x1c01f000, 0x59e0180f, 0x599c0413, 0x800c1000, 0x80080580, 0x05020002, 0x41781000, 0x59e00010, 0x59e00810, 0x80040d80, 0x05fe07fd, 0x80080580, - 0x05fe07f4, 0x5c001000, 0x0501f008, 0x599c0814, - 0x599c1015, 0x800c00cc, 0x80040c00, 0x90081440, - 0x5c001800, 0x90000541, 0x4803c857, 0x1c01f000, - 0x59300203, 0x4933c857, 0x4937c857, 0x493bc857, - 0x4803c857, 0x90003491, 0x059e1a74, 0x0c01f001, - 0x0010cb79, 0x0010cc6e, 0x0010cb79, 0x0010cb79, - 0x0010cb79, 0x0010cb79, 0x0010cb79, 0x0010cbe2, - 0x0010cb7a, 0x0010cb79, 0x0010cb79, 0x0010cb79, - 0x0010cb79, 0x0010cb79, 0x0010cccb, 0x0010cb79, - 0x0010cb79, 0x059dfa61, 0xb138058c, 0x059e0a5f, - 0x05c5fd4e, 0x05020020, 0x59a80a49, 0x5932481d, - 0x59240200, 0x82000500, 0x000000e0, 0x82000580, - 0x00000080, 0x05000018, 0x8c040512, 0x05000028, - 0x59cc0806, 0x82040d00, 0xff000000, 0x82040580, - 0x03000000, 0x0500001c, 0x82040580, 0x50000000, - 0x05000004, 0x82040580, 0x52000000, 0x000607dc, - 0x83340580, 0x00110210, 0x05000005, 0x4d3c0000, - 0x417a7800, 0x05a9ff93, 0x5c027800, 0x64066403, - 0x0501f010, 0x59cc0806, 0x82040d00, 0xff000000, - 0x82040580, 0x03000000, 0x05000007, 0x82040580, - 0x50000000, 0x05000004, 0x82040580, 0x52000000, - 0x000607dc, 0x64266403, 0x6426641c, 0x6402621c, - 0x64126407, 0x64066203, 0x05d9f4c3, 0x59240400, - 0x8c00050a, 0x05020020, 0x0501fd7e, 0x0502001e, - 0x59cc0806, 0x4807c857, 0x82040d00, 0xff000000, - 0x82040580, 0x03000000, 0x05000013, 0x82040580, - 0x20000000, 0x05000010, 0x82040580, 0x21000000, - 0x0500000d, 0x82040580, 0x24000000, 0x0500000a, - 0x82040580, 0x50000000, 0x05000007, 0x82040580, - 0x52000000, 0x05000004, 0x82040580, 0x05000000, - 0x05020007, 0x9c0431c0, 0x611a8000, 0x60042800, - 0x05fdfbcf, 0x0501f913, 0x059c0a08, 0x61442000, - 0x05e5f959, 0x59cc0000, 0x82000500, 0x00ffffff, - 0x82000580, 0x00ffffff, 0x05000004, 0x641e6203, - 0x493a6403, 0x1c01f000, 0x59325819, 0x812e59c0, - 0x059e0dbb, 0x0005f7dc, 0x4d2c0000, 0x4c580000, - 0x4c500000, 0x4c540000, 0x4dcc0000, 0x41385000, - 0xb13805a0, 0x0500007f, 0xb13805a1, 0x0500007d, - 0xb1380594, 0x059e09ed, 0x59325809, 0x592c0c0f, - 0x82040d00, 0x0000e000, 0x82040580, 0x00002000, - 0x05020066, 0x59300819, 0x800409c0, 0x05000015, - 0x58041408, 0x42039800, 0x00111772, 0x9008049c, - 0x05001002, 0x606c1000, 0x41cca800, 0x9004a409, - 0x90080490, 0x05021004, 0x4008b000, 0x0501fca4, - 0x0501f008, 0x80001000, 0x603cb000, 0x0501fca0, - 0x58040801, 0x800409c0, 0x05fe07f5, 0x059df9cf, - 0x83340580, 0x00110210, 0x0500004c, 0x59344c00, + 0x05000018, 0x4c080000, 0x80102040, 0x0500000e, + 0x599c0413, 0x80081000, 0x80080580, 0x05020002, + 0x41781000, 0x59e00010, 0x59e00810, 0x80040d80, + 0x05fe07fd, 0x80080580, 0x05fe07f4, 0x5c001000, + 0x0501f008, 0x599c0814, 0x599c1015, 0x800c00cc, + 0x80040c00, 0x90081440, 0x5c001800, 0x90000541, + 0x4803c857, 0x1c01f000, 0x59300203, 0x4933c857, + 0x4937c857, 0x493bc857, 0x4803c857, 0x90003491, + 0x059a1b65, 0x0c01f001, 0x0010d2c3, 0x0010d3cb, + 0x0010d2c3, 0x0010d2c3, 0x0010d2c3, 0x0010d2c3, + 0x0010d2c3, 0x0010d32d, 0x0010d2c4, 0x0010d2c3, + 0x0010d2c3, 0x0010d2c3, 0x0010d2c3, 0x0010d2c3, + 0x0010d428, 0x0010d2c3, 0x0010d2c3, 0x0599fb52, + 0xb138058c, 0x059a0b50, 0x05c5f876, 0x05020020, + 0x59a80a4c, 0x5932481d, 0x59240200, 0x82000500, + 0x000000e0, 0x82000580, 0x00000080, 0x05000018, + 0x8c040512, 0x05000028, 0x59cc0806, 0x82040d00, + 0xff000000, 0x82040580, 0x03000000, 0x0500001c, + 0x82040580, 0x50000000, 0x05000004, 0x82040580, + 0x52000000, 0x000a0010, 0x83340580, 0x001141b4, + 0x05000005, 0x4d3c0000, 0x417a7800, 0x05a9f8e0, + 0x5c027800, 0x64066403, 0x0501f010, 0x59cc0806, + 0x82040d00, 0xff000000, 0x82040580, 0x03000000, + 0x05000007, 0x82040580, 0x50000000, 0x05000004, + 0x82040580, 0x52000000, 0x000a0010, 0x64266403, + 0x6426641c, 0x6402621c, 0x64126407, 0x64066203, + 0x05d9f232, 0x59240400, 0x8c00050a, 0x05020020, + 0x0501fdaf, 0x0502001e, 0x59cc0806, 0x4807c857, + 0x82040d00, 0xff000000, 0x82040580, 0x03000000, + 0x05000013, 0x82040580, 0x20000000, 0x05000010, + 0x82040580, 0x21000000, 0x0500000d, 0x82040580, + 0x24000000, 0x0500000a, 0x82040580, 0x50000000, + 0x05000007, 0x82040580, 0x52000000, 0x05000004, + 0x82040580, 0x05000000, 0x05020007, 0x9c0431c0, + 0x611a8000, 0x60042800, 0x05fdfbcc, 0x0501f92a, + 0x05980af9, 0x61442000, 0x05e1ff41, 0x0502000a, + 0x59cc0000, 0x82000500, 0x00ffffff, 0x82000580, + 0x00ffffff, 0x00080010, 0x641e6203, 0x493a6403, + 0x1c01f000, 0x42000000, 0x001123ec, 0x0501fc2c, + 0x0009f010, 0x4d2c0000, 0x4c580000, 0x4c500000, + 0x4c540000, 0x4dcc0000, 0x41385000, 0xb13805a0, + 0x05000091, 0xb13805a1, 0x0500008f, 0xb1380594, + 0x059a0add, 0x59325809, 0x592c0c0f, 0x82040d00, + 0x0000e000, 0x82040580, 0x00002000, 0x0502007d, + 0x83340580, 0x001141b4, 0x0500007a, 0x59344c00, 0x592c0c0d, 0x4807c857, 0x4827c857, 0x82040d00, 0x000000ff, 0x90040583, 0x0500001d, 0x90040585, - 0x05000021, 0x900405a0, 0x0500002c, 0xb0040592, - 0x05000036, 0xb0040590, 0x05000036, 0x900405a1, - 0x05000003, 0x900405a4, 0x05020038, 0x82240500, + 0x05000042, 0x900405a0, 0x0500004b, 0xb0040592, + 0x05000064, 0xb0040590, 0x05000064, 0x900405a1, + 0x05000003, 0x900405a4, 0x05020066, 0x82240500, 0x0000ff00, 0x82000580, 0x00000700, 0x05000005, - 0x60240800, 0x05c5f8c4, 0x60305000, 0x0501f02f, + 0x60240800, 0x05c1fba3, 0x60305000, 0x0501f05d, 0x64c65a0a, 0x64265811, 0x59340400, 0x48025812, - 0x0001fb82, 0x05e1ff9f, 0x0501f036, 0x41780800, - 0x05c5f9a2, 0x600c0800, 0x05c5f8b7, 0x60205000, - 0x0501f022, 0x59cc3800, 0x821c3d00, 0x00ffffff, - 0x4c1c0000, 0x05adf9eb, 0x5c003800, 0x0502001b, - 0x59cc0007, 0x05d5f947, 0x05020018, 0x4a026c00, - 0x00000707, 0x0501f015, 0x82240500, 0x0000ff00, - 0x82000580, 0x00000700, 0x05fc07e2, 0x82240500, - 0x000000ff, 0x90000589, 0x05fc07de, 0x05c5f9fc, - 0x60285000, 0x0501f009, 0x60385000, 0x0501f002, - 0x60405000, 0x82240500, 0x0000ff00, 0x82000580, - 0x00000700, 0x05fc07d3, 0x482a6403, 0x64066203, - 0x592c0011, 0x48026013, 0x497a6015, 0x59a8005d, - 0x48026006, 0x417a7800, 0x05d9fc0f, 0x59325819, - 0x812e59c0, 0x05000003, 0x059dfd35, 0x497a6019, - 0x5c039800, 0x5c00a800, 0x5c00a000, 0x5c00b000, - 0x5c025800, 0x1c01f000, 0x4d2c0000, 0x59325809, - 0x91380593, 0x05020038, 0x492fc857, 0x59300c03, - 0xb0040594, 0x0500002a, 0x90040590, 0x05000025, - 0x9004058e, 0x05000023, 0x59341400, 0x82081d00, - 0x0000ff00, 0x82081500, 0x000000ff, 0x90040588, - 0x0500000d, 0x9004058c, 0x05000014, 0x9004058a, - 0x059e0956, 0x820c0580, 0x00000700, 0x05000018, - 0x90080589, 0x05000016, 0x60180800, 0x05c5f862, - 0x0501f013, 0x592c0c0f, 0x8c040514, 0x05000005, - 0x90080583, 0x0502000e, 0x05c5fa00, 0x05fdf7f7, - 0x600c0000, 0x0501f002, 0x60240000, 0x80080580, - 0x05020007, 0x60100800, 0x05c5f853, 0x0501f004, - 0x59340200, 0x8400051a, 0x48026a00, 0x05f1fbff, - 0x05000005, 0x59a8005e, 0x48026006, 0x643a6203, - 0x0501f025, 0x64025a0a, 0x0001fb82, 0x0005ffdc, - 0x0501f021, 0xb13805a1, 0x05000003, 0xb13805a0, - 0x05020008, 0x5c025800, 0x05ddfc0b, 0x05e20785, - 0x59300203, 0x9000058e, 0x05000019, 0x059df927, - 0x913805a7, 0x05000009, 0x91380594, 0x059e0923, - 0x492fc857, 0x05d9ffb0, 0x60c68000, 0x60100800, - 0x61fc1001, 0x0501f006, 0x492fc857, 0x05d9ffaa, - 0x60c68000, 0x60100800, 0x60401000, 0x49425a0a, - 0x48065811, 0x480a5812, 0x0001fb82, 0x05c5ffa9, - 0x05e1ff08, 0x5c025800, 0x1c01f000, 0x4933c857, - 0xb13805a1, 0x05000003, 0xb13805a0, 0x05020009, - 0x4d2c0000, 0x59325809, 0x812e59c0, 0x05000003, - 0x64025a0a, 0x0001fb82, 0x0005ffdc, 0x5c025800, - 0x1c01f000, 0x492fc857, 0x42007000, 0x000211a7, - 0x58380806, 0x492c7006, 0x800409c0, 0x05020003, - 0x492c7007, 0x0001f030, 0x492c0800, 0x1c01f000, - 0x4d2c0000, 0x4c580000, 0x4c500000, 0x4c540000, - 0x4933c857, 0x4937c857, 0x59cc0806, 0x4807c857, - 0x82040d00, 0xff000000, 0x82040580, 0x03000000, - 0x0500000d, 0x82040580, 0x05000000, 0x0500000a, - 0x82040580, 0x21000000, 0x05000027, 0x82040580, - 0x24000000, 0x05000024, 0x82040580, 0x20000000, - 0x05020025, 0x059dfc85, 0x05000023, 0x492fc857, - 0x492e6019, 0x59a8b0b6, 0x9058b41b, 0x8258b500, - 0xfffffffc, 0x8058b104, 0x485a5c08, 0x412c7800, - 0x41cca000, 0x90580490, 0x05021004, 0x912cac09, - 0x0501fb9b, 0x0501f010, 0x40580800, 0x603cb000, - 0x912cac09, 0x0501fb96, 0x9004b48f, 0x059dfc6f, - 0x05000004, 0x492c7801, 0x412c7800, 0x05fdf7f2, - 0x59325819, 0x059dfc82, 0x497a6019, 0x80000580, - 0x0501f005, 0x59340200, 0x84000554, 0x48026a00, - 0x90000541, 0x5c00a800, 0x5c00a000, 0x5c00b000, - 0x5c025800, 0x1c01f000, 0x4933c857, 0x492fc857, - 0x4d2c0000, 0x59300a03, 0x90040587, 0x05020006, - 0x59325819, 0x812e59c0, 0x059e0c6d, 0x0005ffdc, - 0x0501f02d, 0x9004058e, 0x05000023, 0x90040581, - 0x059e08a6, 0x05d9ffde, 0x4df00000, 0x598c000b, + 0x0001fba8, 0x05e1fd80, 0x0501f05f, 0x05011000, + 0x4a03c840, 0x00115716, 0x646fc842, 0x42039800, + 0x00115716, 0x05011000, 0x5930081a, 0x5930120c, + 0x59301c0c, 0x5930200d, 0x48079801, 0x480b9a07, + 0x480f9a09, 0x48139808, 0x5930000e, 0x5930080f, + 0x59301010, 0x59301811, 0x59302012, 0x4803980a, + 0x4807980b, 0x480b980c, 0x480f980d, 0x4813980e, + 0x59300013, 0x59300814, 0x59301015, 0x59301a16, + 0x48039813, 0x48079814, 0x480b9817, 0x480f9a18, + 0x41780800, 0x05c1fcb3, 0x600c0800, 0x05c1fb75, + 0x60205000, 0x0501f02f, 0x59303819, 0x4c1c0000, + 0x05a9fb34, 0x5c003800, 0x0502002a, 0x5930000c, + 0x05d1fde4, 0x05020027, 0x4a026c00, 0x00000707, + 0x0501f024, 0x82240500, 0x0000ff00, 0x82000580, + 0x00000700, 0x05fc07c3, 0x82240500, 0x000000ff, + 0x90000589, 0x05fc07bf, 0x05011000, 0x4a03c840, + 0x00115716, 0x642fc842, 0x42039800, 0x00115716, + 0x05011000, 0x5930081a, 0x5930100c, 0x59301a0d, + 0x5930240d, 0x48079801, 0x480b9806, 0x480f9a07, + 0x48139a0a, 0x05c1fd00, 0x60285000, 0x0501f009, + 0x60385000, 0x0501f002, 0x60405000, 0x82240500, + 0x0000ff00, 0x82000580, 0x00000700, 0x05fc07a5, + 0x482a6403, 0x64066203, 0x592c0011, 0x48026013, + 0x497a6015, 0x59a80060, 0x48026006, 0x417a7800, + 0x05d9f966, 0x5c039800, 0x5c00a800, 0x5c00a000, + 0x5c00b000, 0x5c025800, 0x1c01f000, 0x4d2c0000, + 0x59325809, 0x91380593, 0x05020038, 0x492fc857, + 0x59300c03, 0xb0040594, 0x0500002a, 0x90040590, + 0x05000025, 0x9004058e, 0x05000023, 0x59341400, + 0x82081d00, 0x0000ff00, 0x82081500, 0x000000ff, + 0x90040588, 0x0500000d, 0x9004058c, 0x05000014, + 0x9004058a, 0x059a0a34, 0x820c0580, 0x00000700, + 0x05000018, 0x90080589, 0x05000016, 0x60180800, + 0x05c1fb18, 0x0501f013, 0x592c0c0f, 0x8c040514, + 0x05000005, 0x90080583, 0x0502000e, 0x05c1fd09, + 0x05fdf7f7, 0x600c0000, 0x0501f002, 0x60240000, + 0x80080580, 0x05020007, 0x60100800, 0x05c1fb09, + 0x0501f004, 0x59340200, 0x8400051a, 0x48026a00, + 0x05f1fa3a, 0x05000005, 0x59a80061, 0x48026006, + 0x643a6203, 0x0501f025, 0x64025a0a, 0x0001fba8, + 0x0009f810, 0x0501f021, 0xb13805a1, 0x05000003, + 0xb13805a0, 0x05020008, 0x5c025800, 0x05ddf96c, + 0x05e2055a, 0x59300203, 0x9000058e, 0x05000019, + 0x0599fa05, 0x913805a7, 0x05000009, 0x91380594, + 0x059a0a01, 0x492fc857, 0x05d9fd11, 0x60c68000, + 0x60100800, 0x61fc1001, 0x0501f006, 0x492fc857, + 0x05d9fd0b, 0x60c68000, 0x60100800, 0x60401000, + 0x49425a0a, 0x48065811, 0x480a5812, 0x0001fba8, + 0x05c5fb21, 0x05e1fcc0, 0x5c025800, 0x1c01f000, + 0x4933c857, 0xb13805a1, 0x05000003, 0xb13805a0, + 0x05020009, 0x4d2c0000, 0x59325809, 0x812e59c0, + 0x05000003, 0x64025a0a, 0x0001fba8, 0x0009f810, + 0x5c025800, 0x1c01f000, 0x492fc857, 0x0501fa52, + 0x0502000c, 0x42007000, 0x000211e8, 0x58380806, + 0x492c7006, 0x800409c0, 0x05020004, 0x492c7007, + 0x0001f838, 0x0501f002, 0x492c0800, 0x80000580, + 0x1c01f000, 0x4933c857, 0x4937c857, 0x59cc0000, + 0x82000500, 0x00ffffff, 0x48026019, 0x59cc0001, + 0x82000500, 0x00ffffff, 0x4802601a, 0x59cc0806, + 0x4807c857, 0x82040d00, 0xff000000, 0x82040580, + 0x03000000, 0x05000014, 0x82040580, 0x05000000, + 0x0500002a, 0x82040580, 0x21000000, 0x05000029, + 0x82040580, 0x24000000, 0x05000026, 0x82040580, + 0x20000000, 0x05020027, 0x59cc0006, 0x59cc0a07, + 0x59cc120a, 0x4802600c, 0x4806620d, 0x480a640d, + 0x0501f01c, 0x59cc0207, 0x59cc0a09, 0x59cc1008, + 0x4802620c, 0x4806640c, 0x480a600d, 0x59cc000a, + 0x59cc080b, 0x59cc100c, 0x4802600e, 0x4806600f, + 0x480a6010, 0x59cc000d, 0x59cc080e, 0x59cc1013, + 0x48026011, 0x48066012, 0x480a6013, 0x59cc0014, + 0x59cc0817, 0x59cc1218, 0x48026014, 0x48066015, + 0x480a6216, 0x0501f003, 0x59cc0007, 0x4802600c, + 0x59340200, 0x84000554, 0x48026a00, 0x90000541, + 0x1c01f000, 0x4933c857, 0x492fc857, 0x4d2c0000, + 0x59300a03, 0x90040587, 0x05020003, 0x0009f810, + 0x0501f02a, 0x9004058e, 0x05000023, 0x90040581, + 0x059a0981, 0x05d9fd3c, 0x4df00000, 0x598c000b, 0x81300580, 0x05020010, 0x59300004, 0x8c000520, 0x05000004, 0x84000520, 0x48026004, 0x0501f011, - 0x42001000, 0x0010e387, 0x50081000, 0x58080002, - 0x82000580, 0x00000100, 0x05020009, 0x05ddfac9, - 0x05020018, 0x59300004, 0x8c000520, 0x05000005, - 0x84000520, 0x48026004, 0x0501f003, 0x05a5f9ba, - 0x05d9fc66, 0x5c03e000, 0x05d80fb2, 0x05edff76, - 0x059c0886, 0x59325809, 0x64165a0a, 0x0001fb82, - 0x05c5ff18, 0x59325819, 0x812e59c0, 0x059e0c40, - 0x05e1fe74, 0x80000580, 0x5c025800, 0x1c01f000, - 0x5c03e000, 0x05d80fa3, 0x59300c07, 0x90040591, - 0x05fc07c5, 0x05fdf7f9, 0x4c040000, 0x59340200, - 0x4803c857, 0x8c00051c, 0x05000009, 0x59cc0805, - 0x591c001b, 0x4803c857, 0x80040580, 0x05000004, - 0x80000580, 0x4803c856, 0x0501f002, 0x90000541, - 0x5c000800, 0x1c01f000, 0x4c000000, 0x4c0c0000, - 0x4c100000, 0x61fc19ff, 0x60102000, 0x0501f010, + 0x42001000, 0x00112322, 0x50081000, 0x58080002, + 0x82000580, 0x00000100, 0x05020009, 0x05ddf827, + 0x05020015, 0x59300004, 0x8c000520, 0x05000005, + 0x84000520, 0x48026004, 0x0501f003, 0x05a1facb, + 0x05d9f9bf, 0x5c03e000, 0x05d80d10, 0x05edfd9f, + 0x05980961, 0x59325809, 0x64165a0a, 0x0001fba8, + 0x05c5fa8d, 0x05e1fc2c, 0x80000580, 0x5c025800, + 0x1c01f000, 0x5c03e000, 0x05d80d04, 0x59300c07, + 0x90040591, 0x05fc07cb, 0x05fdf7f9, 0x4c040000, + 0x59340200, 0x4803c857, 0x8c00051c, 0x05000009, + 0x59cc0805, 0x591c001b, 0x4803c857, 0x80040580, + 0x05000004, 0x80000580, 0x4803c856, 0x0501f002, + 0x90000541, 0x5c000800, 0x1c01f000, 0x4c000000, + 0x4c0c0000, 0x4c100000, 0x61fc19ff, 0x60102000, + 0x0501f010, 0x4c000000, 0x4c0c0000, 0x4c100000, + 0x5930200a, 0x58101c03, 0x60102000, 0x0501f009, 0x4c000000, 0x4c0c0000, 0x4c100000, 0x5930200a, - 0x58101c03, 0x60102000, 0x0501f009, 0x4c000000, - 0x4c0c0000, 0x4c100000, 0x5930200a, 0x801021c0, - 0x059c0852, 0x58101c03, 0x601c2000, 0x480fc857, - 0x4813c857, 0x481bc857, 0x05adf889, 0x05bdfab9, - 0x5c002000, 0x5c001800, 0x5c000000, 0x1c01f000, - 0x8d0c0520, 0x05000009, 0x4d400000, 0x4d200000, - 0x61fe4001, 0x850e1d44, 0x60aa8000, 0x05fdfa0e, - 0x5c024000, 0x5c028000, 0x1c01f000, 0x59a80249, - 0x8c000508, 0x05000005, 0x599c0017, 0x8c00050a, - 0x05020002, 0x1c01f000, 0x90000541, 0x1c01f000, - 0x5930042c, 0x84000540, 0x4802642c, 0x1c01f000, - 0x4c640000, 0x05f1fb95, 0x59300203, 0x90000588, - 0x05020010, 0x60c8c800, 0x42000000, 0x20000000, - 0x41300800, 0x059dff7d, 0x0500000a, 0x59300203, - 0x90000588, 0x05020007, 0x60780000, 0x80000040, - 0x05fe07ff, 0x8064c840, 0x05fe07f4, 0x059df81b, - 0x05f1fb8d, 0x5c00c800, 0x1c01f000, 0x059dfbbf, - 0x059c0816, 0x59340403, 0x49265805, 0x49365806, - 0x65565a08, 0x48025c0a, 0x4a025c0b, 0x00001000, - 0x05f1fad2, 0x05000003, 0x4a025c0b, 0x00003000, - 0x59340802, 0x82040d00, 0x00ffffff, 0x59300403, - 0x82000580, 0x00000086, 0x42000000, 0x85000000, - 0x05020003, 0x42000000, 0x84000000, 0x80040540, - 0x4802580d, 0x59240005, 0x4802580e, 0x42000000, - 0x00990000, 0x59300c07, 0x90040d85, 0x05000002, - 0x8400052e, 0x59300c16, 0x8c04051a, 0x05000002, - 0x84000528, 0x4802580f, 0x497a5810, 0x59cc0004, - 0x48025811, 0x497a5812, 0x42000800, 0x00030300, - 0x59300403, 0x82000580, 0x00000086, 0x05020006, - 0x59cc0004, 0x48025814, 0x4a025815, 0x0000ffff, - 0x41780800, 0x48065813, 0x1c01f000, 0x492fc857, - 0x59a8289d, 0x801429c0, 0x05000055, 0x4c5c0000, - 0x4c600000, 0x4c640000, 0x4d2c0000, 0x4d300000, - 0x42026000, 0x00111a40, 0x592c0c0a, 0x592c100d, - 0x82081500, 0x00ffffff, 0x592c180e, 0x592c2011, - 0x40165800, 0x4014c000, 0x4014c800, 0x592c0208, - 0x82000580, 0x00000155, 0x05020035, 0x592c040a, - 0x80040580, 0x05020032, 0x592c000d, 0x82000500, - 0x00ffffff, 0x80080580, 0x0502002d, 0x592c000e, - 0x82000500, 0x00ffffff, 0x800c0580, 0x05020028, - 0x592c0011, 0x80100580, 0x05020025, 0x4c040000, - 0x4c080000, 0x4c0c0000, 0x4c100000, 0x40640000, - 0x812c0580, 0x05020014, 0x59300203, 0x90000580, - 0x0500000d, 0x59300009, 0x800001c0, 0x0500000a, - 0x05d9fee3, 0x4df00000, 0x05d9fde4, 0x05d9fbad, - 0x05020002, 0x64026203, 0x5c03e000, 0x05d80ecd, - 0x497a6009, 0x592cc800, 0x4064c000, 0x4064b800, - 0x0501f003, 0x592cb800, 0x485cc000, 0x64165a0a, - 0x0001fb82, 0x405e5800, 0x5c002000, 0x5c001800, - 0x5c001000, 0x5c000800, 0x0501f003, 0x412cc000, - 0x592e5800, 0x812e59c0, 0x05fe07c5, 0x4867509d, - 0x4863509e, 0x05e1fc7b, 0x5c026000, 0x5c025800, - 0x5c00c800, 0x5c00c000, 0x5c00b800, 0x1c01f000, - 0x602c0800, 0x0501f004, 0x60100800, 0x0501f002, - 0x60040800, 0x4d2c0000, 0x59325809, 0x812e59c0, - 0x0500000f, 0x592c0208, 0x82000500, 0x000000ff, - 0x9000058e, 0x0502000a, 0x592c0000, 0x48026009, - 0x497a5800, 0x48065a0c, 0x05cdfd9c, 0x05000003, - 0x05fdfe71, 0x0501f002, 0x0001fb82, 0x5c025800, - 0x1c01f000, 0x4d2c0000, 0x4803c856, 0x0501f83b, - 0x05020038, 0x91380595, 0x05020027, 0x59a800b6, - 0x90000594, 0x05020022, 0x59cc0c07, 0x82040580, - 0x00000102, 0x05020029, 0x59cc0a07, 0x5930021b, - 0x80040580, 0x05020027, 0x59cc0a0a, 0x90040594, - 0x05020026, 0x916c0583, 0x05020002, 0x05adf86c, - 0x05edfe45, 0x0500000d, 0x59325809, 0x59a80ccd, - 0x48065a0b, 0x59a808cf, 0x4806580f, 0x64025a0a, - 0x59a804cc, 0x90000503, 0x90000583, 0x05000002, - 0x64ca5a0a, 0x0001fb82, 0x59a804cc, 0x8400050c, - 0x480354cc, 0x4803c857, 0x0005ffdc, 0x5c025800, - 0x1c01f000, 0x4803c856, 0x05edfe2f, 0x05fc07f7, - 0x59325809, 0x64c65a0a, 0x64625810, 0x59cc0007, - 0x48025811, 0x05fdf7f0, 0x4807c857, 0x05fdf7f4, - 0x4807c857, 0x05fdf7f2, 0x4807c857, 0x05fdf7f0, - 0x4803c857, 0x05fdf7ee, 0x59300403, 0xb0000d9a, - 0x05000004, 0xb0000d9b, 0x05000002, 0xb0000d9c, - 0x1c01f000, 0x4933c857, 0x4867c857, 0x485fc857, - 0x4863c857, 0x4c500000, 0x4c540000, 0x4c580000, - 0x4d3c0000, 0x59327c1b, 0x5924100b, 0x82081500, - 0x00001fff, 0x405c0000, 0x80080580, 0x0500002b, - 0x480bc857, 0x4d400000, 0x4d3c0000, 0x4c080000, - 0x60aa8000, 0x600a7800, 0x41780800, 0x05adf87b, - 0x5c001000, 0x5c027800, 0x5c028000, 0x59a802cc, - 0x40000800, 0x82000540, 0x0f000000, 0x4802480b, - 0x853e7d40, 0x4c580000, 0x0501fa22, 0x42001800, - 0x0010e51f, 0x8058b040, 0x05000013, 0x580c200b, - 0x82100500, 0x00001fff, 0x80080580, 0x0502000c, - 0x580c0200, 0x82000500, 0x00008001, 0x82000580, - 0x00008001, 0x05000006, 0x82102500, 0xffffe000, - 0x80100541, 0x4800180b, 0x4803c857, 0x900c1c0d, - 0x05fdf7ed, 0x5c00b000, 0x6000b001, 0x4060a000, - 0x4200a800, 0x00110672, 0x50500000, 0x50540800, - 0x80040580, 0x05000002, 0x853e7d42, 0x5450a800, - 0x8050a000, 0x8054a800, 0x8058b040, 0x05fe07f7, - 0x59a800cf, 0x80640580, 0x0500001f, 0x59a814cc, - 0x480bc857, 0x90081503, 0x90081583, 0x05020009, - 0x90640582, 0x05000018, 0x90640583, 0x05020011, - 0x59a800ce, 0x90000582, 0x05000013, 0x0501f00d, - 0x90640581, 0x05000010, 0x90640582, 0x05020005, - 0x59a800ce, 0x90000582, 0x0502000b, 0x0501f008, - 0x59a800ce, 0x90000581, 0x05000007, 0x0501f004, - 0x4803c856, 0x853e7d46, 0x0501f003, 0x4803c856, - 0x853e7d44, 0x4867c857, 0x493fc857, 0x486750cf, - 0x493e641b, 0x5c027800, 0x5c00b000, 0x5c00a800, - 0x5c00a000, 0x1c01f000, 0x4817c857, 0x4c000000, - 0x4c040000, 0x8c14052a, 0x05000004, 0x59880123, - 0x80000000, 0x48031123, 0x8c14052e, 0x05000004, - 0x59880124, 0x80000000, 0x48031124, 0x8c14052c, - 0x05000013, 0x40140000, 0x82000500, 0x00070000, - 0x82000d80, 0x00030000, 0x0500000d, 0x82000d80, - 0x00040000, 0x0500000a, 0x82000d80, 0x00050000, - 0x05000007, 0x59880005, 0x80000000, 0x48031005, - 0x59880125, 0x80000000, 0x48031125, 0x5c000800, - 0x5c000000, 0x1c01f000, 0x4817c857, 0x4c000000, - 0x4c040000, 0x8c14052a, 0x05000004, 0x59880126, - 0x80000000, 0x48031126, 0x8c14052e, 0x05000004, - 0x59880127, 0x80000000, 0x48031127, 0x8c14052c, - 0x05000013, 0x40140000, 0x82000500, 0x00070000, - 0x82000d80, 0x00030000, 0x0500000d, 0x82000d80, - 0x00040000, 0x0500000a, 0x82000d80, 0x00050000, + 0x801021c0, 0x05980930, 0x58101c03, 0x601c2000, + 0x480fc857, 0x4813c857, 0x481bc857, 0x05a9f9c8, + 0x05b9fcf9, 0x5c002000, 0x5c001800, 0x5c000000, + 0x1c01f000, 0x8d0c0520, 0x05000009, 0x4d400000, + 0x4d200000, 0x61fe4001, 0x850e1d44, 0x60aa8000, + 0x05fdf9f8, 0x5c024000, 0x5c028000, 0x1c01f000, + 0x59a8024c, 0x8c000508, 0x05000005, 0x599c0017, + 0x8c00050a, 0x05020002, 0x1c01f000, 0x90000541, + 0x1c01f000, 0x5930042c, 0x84000540, 0x4802642c, + 0x1c01f000, 0x4c640000, 0x05f1f9d0, 0x4df00000, + 0x59300203, 0x90000588, 0x05020010, 0x60c8c800, + 0x42000000, 0x20000000, 0x41300800, 0x059df8bb, + 0x0500000a, 0x59300203, 0x90000588, 0x05020007, + 0x60780000, 0x80000040, 0x05fe07ff, 0x8064c840, + 0x05fe07f4, 0x0599f8f8, 0x5c03e000, 0x05f009ca, + 0x5c00c800, 0x1c01f000, 0x0599fc97, 0x059808f2, + 0x61fc01ff, 0x83340d80, 0x001141b4, 0x05000002, + 0x59340403, 0x49265805, 0x49365806, 0x65565a08, + 0x48025c0a, 0x4a025c0b, 0x00001000, 0x59a808d5, + 0x82040d00, 0x0000f000, 0x82040480, 0x00002000, + 0x05001003, 0x4a025c0b, 0x00003000, 0x59cc0801, + 0x82040d00, 0x00ffffff, 0x59300403, 0x82000580, + 0x00000086, 0x42000000, 0x85000000, 0x05020003, + 0x42000000, 0x84000000, 0x80040540, 0x4802580d, + 0x59240005, 0x4802580e, 0x42000000, 0x00990000, + 0x59300c07, 0x90040d85, 0x05000002, 0x8400052e, + 0x59300c16, 0x8c04051a, 0x05000002, 0x84000528, + 0x4802580f, 0x497a5810, 0x59cc0004, 0x48025811, + 0x497a5812, 0x42000800, 0x00030300, 0x59300403, + 0x82000580, 0x00000086, 0x05020006, 0x59cc0004, + 0x48025814, 0x4a025815, 0x0000ffff, 0x41780800, + 0x48065813, 0x1c01f000, 0x492fc857, 0x59a828a0, + 0x801429c0, 0x05000055, 0x4c5c0000, 0x4c600000, + 0x4c640000, 0x4d2c0000, 0x4d300000, 0x42026000, + 0x001159e4, 0x592c0c0a, 0x592c100d, 0x82081500, + 0x00ffffff, 0x592c180e, 0x592c2011, 0x40165800, + 0x4014c000, 0x4014c800, 0x592c0208, 0x82000580, + 0x00000155, 0x05020035, 0x592c040a, 0x80040580, + 0x05020032, 0x592c000d, 0x82000500, 0x00ffffff, + 0x80080580, 0x0502002d, 0x592c000e, 0x82000500, + 0x00ffffff, 0x800c0580, 0x05020028, 0x592c0011, + 0x80100580, 0x05020025, 0x4c040000, 0x4c080000, + 0x4c0c0000, 0x4c100000, 0x40640000, 0x812c0580, + 0x05020014, 0x59300203, 0x90000580, 0x0500000d, + 0x59300009, 0x800001c0, 0x0500000a, 0x05d9fc3a, + 0x4df00000, 0x05d9fb3a, 0x05d9f8ff, 0x05020002, + 0x64026203, 0x5c03e000, 0x05d80c24, 0x497a6009, + 0x592cc800, 0x4064c000, 0x4064b800, 0x0501f003, + 0x592cb800, 0x485cc000, 0x64165a0a, 0x0001fba8, + 0x405e5800, 0x5c002000, 0x5c001800, 0x5c001000, + 0x5c000800, 0x0501f003, 0x412cc000, 0x592e5800, + 0x812e59c0, 0x05fe07c5, 0x486750a0, 0x486350a1, + 0x05e1fa08, 0x5c026000, 0x5c025800, 0x5c00c800, + 0x5c00c000, 0x5c00b800, 0x1c01f000, 0x602c0800, + 0x0501f004, 0x60100800, 0x0501f002, 0x60040800, + 0x4d2c0000, 0x59325809, 0x812e59c0, 0x0500000f, + 0x592c0208, 0x82000500, 0x000000ff, 0x9000058e, + 0x0502000a, 0x592c0000, 0x48026009, 0x497a5800, + 0x48065a0c, 0x05cdf9bd, 0x05000003, 0x05fdfe67, + 0x0501f002, 0x0001fba8, 0x5c025800, 0x1c01f000, + 0x4d2c0000, 0x4803c856, 0x0501f83b, 0x05020038, + 0x91380595, 0x05020027, 0x59a800bb, 0x90000594, + 0x05020022, 0x59cc0c07, 0x82040580, 0x00000102, + 0x05020029, 0x59cc0a07, 0x5930021b, 0x80040580, + 0x05020027, 0x59cc0a0a, 0x90040594, 0x05020026, + 0x916c0583, 0x05020002, 0x05a9f9ac, 0x05edfc67, + 0x0500000d, 0x59325809, 0x59a80cd2, 0x48065a0b, + 0x59a808d4, 0x4806580f, 0x64025a0a, 0x59a804d1, + 0x90000503, 0x90000583, 0x05000002, 0x64ca5a0a, + 0x0001fba8, 0x59a804d1, 0x8400050c, 0x480354d1, + 0x4803c857, 0x0009f810, 0x5c025800, 0x1c01f000, + 0x4803c856, 0x05edfc51, 0x05fc07f7, 0x59325809, + 0x64c65a0a, 0x64625810, 0x59cc0007, 0x48025811, + 0x05fdf7f0, 0x4807c857, 0x05fdf7f4, 0x4807c857, + 0x05fdf7f2, 0x4807c857, 0x05fdf7f0, 0x4803c857, + 0x05fdf7ee, 0x59300403, 0xb0000d9a, 0x05000004, + 0xb0000d9b, 0x05000002, 0xb0000d9c, 0x1c01f000, + 0x4933c857, 0x4867c857, 0x485fc857, 0x4863c857, + 0x4c500000, 0x4c540000, 0x4c580000, 0x4d3c0000, + 0x59327c1b, 0x5924100b, 0x82081500, 0x00001fff, + 0x405c0000, 0x80080580, 0x0500002b, 0x480bc857, + 0x4d400000, 0x4d3c0000, 0x4c080000, 0x60aa8000, + 0x600a7800, 0x41780800, 0x05a9f9bb, 0x5c001000, + 0x5c027800, 0x5c028000, 0x59a802d1, 0x40000800, + 0x82000540, 0x0f000000, 0x4802480b, 0x853e7d40, + 0x4c580000, 0x0501fa36, 0x42001800, 0x001124c3, + 0x8058b040, 0x05000013, 0x580c200b, 0x82100500, + 0x00001fff, 0x80080580, 0x0502000c, 0x580c0200, + 0x82000500, 0x00008001, 0x82000580, 0x00008001, + 0x05000006, 0x82102500, 0xffffe000, 0x80100541, + 0x4800180b, 0x4803c857, 0x900c1c0d, 0x05fdf7ed, + 0x5c00b000, 0x6000b001, 0x4060a000, 0x4200a800, + 0x00114616, 0x50500000, 0x50540800, 0x80040580, + 0x05000002, 0x853e7d42, 0x5450a800, 0x8050a000, + 0x8054a800, 0x8058b040, 0x05fe07f7, 0x59a800d4, + 0x80640580, 0x0500001f, 0x59a814d1, 0x480bc857, + 0x90081503, 0x90081583, 0x05020009, 0x90640582, + 0x05000018, 0x90640583, 0x05020011, 0x59a800d3, + 0x90000582, 0x05000013, 0x0501f00d, 0x90640581, + 0x05000010, 0x90640582, 0x05020005, 0x59a800d3, + 0x90000582, 0x0502000b, 0x0501f008, 0x59a800d3, + 0x90000581, 0x05000007, 0x0501f004, 0x4803c856, + 0x853e7d46, 0x0501f003, 0x4803c856, 0x853e7d44, + 0x4867c857, 0x493fc857, 0x486750d4, 0x493e641b, + 0x5c027800, 0x5c00b000, 0x5c00a800, 0x5c00a000, + 0x1c01f000, 0x412c7800, 0x60047000, 0x583c7801, + 0x803c79c0, 0x05000003, 0x80387000, 0x05fdf7fc, + 0x599c0413, 0x80380480, 0x05021003, 0x80000580, + 0x1c01f000, 0x81780000, 0x1c01f000, 0x4817c857, + 0x4c000000, 0x4c040000, 0x8c14052a, 0x05000004, + 0x59880126, 0x80000000, 0x48031126, 0x8c14052e, + 0x05000004, 0x59880127, 0x80000000, 0x48031127, + 0x82140500, 0x00070000, 0x82000d80, 0x00050000, + 0x05020005, 0x42000000, 0x0011235f, 0x0501f8ac, + 0x0501f00f, 0x8c14052c, 0x0500000d, 0x82000d80, + 0x00030000, 0x0500000a, 0x82000d80, 0x00040000, 0x05000007, 0x59880005, 0x80000000, 0x48031005, 0x59880128, 0x80000000, 0x48031128, 0x5c000800, - 0x5c000000, 0x1c01f000, 0x4807c857, 0x4c000000, - 0x8c04052c, 0x05000004, 0x59880111, 0x80000000, - 0x48031111, 0x8c04052a, 0x05000004, 0x59880112, - 0x80000000, 0x48031112, 0x8c040528, 0x05000004, - 0x59880113, 0x80000000, 0x48031113, 0x8c040526, + 0x5c000000, 0x1c01f000, 0x4817c857, 0x4c000000, + 0x4c040000, 0x8c14052a, 0x05000004, 0x59880129, + 0x80000000, 0x48031129, 0x8c14052e, 0x05000004, + 0x5988012a, 0x80000000, 0x4803112a, 0x82140500, + 0x00070000, 0x82000d80, 0x00050000, 0x05020005, + 0x42000000, 0x0011235f, 0x0501f885, 0x0501f00f, + 0x8c14052c, 0x0500000d, 0x82000d80, 0x00030000, + 0x0500000a, 0x82000d80, 0x00040000, 0x05000007, + 0x59880005, 0x80000000, 0x48031005, 0x5988012b, + 0x80000000, 0x4803112b, 0x5c000800, 0x5c000000, + 0x1c01f000, 0x4807c857, 0x4c000000, 0x8c04052c, 0x05000004, 0x59880114, 0x80000000, 0x48031114, - 0x8c040524, 0x05000004, 0x59880115, 0x80000000, - 0x48031115, 0x8c040522, 0x05000004, 0x59880116, - 0x80000000, 0x48031116, 0x8c040520, 0x05000004, - 0x59880117, 0x80000000, 0x48031117, 0x5c000000, - 0x1c01f000, 0x4807c857, 0x4c000000, 0x59880118, - 0x80000000, 0x48031118, 0x5c000000, 0x1c01f000, - 0x4807c857, 0x4c000000, 0x8c04051c, 0x05000004, - 0x59880119, 0x80000000, 0x48031119, 0x8c04051a, - 0x05000004, 0x5988011a, 0x80000000, 0x4803111a, - 0x5c000000, 0x1c01f000, 0x4807c857, 0x4c000000, - 0x8c040518, 0x05000004, 0x5988011b, 0x80000000, - 0x4803111b, 0x8c040516, 0x05000004, 0x5988011c, - 0x80000000, 0x4803111c, 0x8c040514, 0x05000004, + 0x8c04052a, 0x05000004, 0x59880115, 0x80000000, + 0x48031115, 0x8c040528, 0x05000004, 0x59880116, + 0x80000000, 0x48031116, 0x8c040526, 0x05000004, + 0x59880117, 0x80000000, 0x48031117, 0x8c040524, + 0x05000004, 0x59880118, 0x80000000, 0x48031118, + 0x8c040522, 0x05000004, 0x59880119, 0x80000000, + 0x48031119, 0x8c040520, 0x05000004, 0x5988011a, + 0x80000000, 0x4803111a, 0x5c000000, 0x1c01f000, + 0x4807c857, 0x4c000000, 0x5988011b, 0x80000000, + 0x4803111b, 0x5c000000, 0x1c01f000, 0x4807c857, + 0x4c000000, 0x8c04051c, 0x05000004, 0x5988011c, + 0x80000000, 0x4803111c, 0x8c04051a, 0x05000004, 0x5988011d, 0x80000000, 0x4803111d, 0x5c000000, - 0x1c01f000, 0x4807c857, 0x4c000000, 0x8c040510, + 0x1c01f000, 0x4807c857, 0x4c000000, 0x8c040518, 0x05000004, 0x5988011e, 0x80000000, 0x4803111e, - 0x8c04050c, 0x05000004, 0x5988011f, 0x80000000, - 0x4803111f, 0x5c000000, 0x1c01f000, 0x4807c857, - 0x4c000000, 0x8c040508, 0x05000004, 0x59880120, - 0x80000000, 0x48031120, 0x8c040504, 0x05000004, - 0x59880121, 0x80000000, 0x48031121, 0x5c000000, - 0x1c01f000, 0x4807c856, 0x4c000000, 0x598800ea, - 0x80000000, 0x480310ea, 0x5c000000, 0x1c01f000, - 0x5c036000, 0x4db00000, 0x49b3c857, 0x4c040000, - 0x50000800, 0x80040800, 0x05001002, 0x44040000, - 0x5c000800, 0x1c01f000, 0x480fc857, 0x4c000000, - 0x900c0580, 0x05020004, 0x42000000, 0x0010e411, - 0x0501f012, 0x820c0580, 0x00001001, 0x05020004, - 0x42000000, 0x0010e412, 0x0501f00c, 0x820c0580, - 0x00001002, 0x05020004, 0x42000000, 0x0010e413, - 0x0501f006, 0x820c0c80, 0x0000201c, 0x059a1ddf, - 0x900c051f, 0x0c01f804, 0x05fdffde, 0x5c000000, - 0x1c01f000, 0x0010d01d, 0x0010d020, 0x0010d023, - 0x0010d026, 0x0010d029, 0x0010d02c, 0x0010d02f, - 0x0010d032, 0x0010d035, 0x0010d038, 0x0010d03b, - 0x0010d03e, 0x0010d041, 0x0010d044, 0x0010d047, - 0x0010d04a, 0x0010d04d, 0x0010d050, 0x0010d053, - 0x0010d056, 0x0010d059, 0x0010d05c, 0x0010d05f, - 0x0010d062, 0x0010d065, 0x0010d068, 0x0010d06b, - 0x0010d06e, 0x42000000, 0x0010e414, 0x1c01f000, - 0x42000000, 0x0010e415, 0x1c01f000, 0x42000000, - 0x0010e416, 0x1c01f000, 0x42000000, 0x0010e417, - 0x1c01f000, 0x42000000, 0x0010e418, 0x1c01f000, - 0x42000000, 0x0010e419, 0x1c01f000, 0x42000000, - 0x0010e41a, 0x1c01f000, 0x42000000, 0x0010e41b, - 0x1c01f000, 0x42000000, 0x0010e41c, 0x1c01f000, - 0x42000000, 0x0010e41d, 0x1c01f000, 0x42000000, - 0x0010e41e, 0x1c01f000, 0x42000000, 0x0010e41f, - 0x1c01f000, 0x42000000, 0x0010e420, 0x1c01f000, - 0x42000000, 0x0010e421, 0x1c01f000, 0x42000000, - 0x0010e422, 0x1c01f000, 0x42000000, 0x0010e423, - 0x1c01f000, 0x42000000, 0x0010e424, 0x1c01f000, - 0x42000000, 0x0010e425, 0x1c01f000, 0x42000000, - 0x0010e426, 0x1c01f000, 0x42000000, 0x0010e427, - 0x1c01f000, 0x42000000, 0x0010e428, 0x1c01f000, - 0x42000000, 0x0010e429, 0x1c01f000, 0x42000000, - 0x0010e42a, 0x1c01f000, 0x42000000, 0x0010e42b, - 0x1c01f000, 0x42000000, 0x0010e42c, 0x1c01f000, - 0x42000000, 0x0010e42d, 0x1c01f000, 0x42000000, - 0x0010e42e, 0x1c01f000, 0x42000000, 0x0010e42f, - 0x1c01f000, 0x480fc857, 0x4c000000, 0x900c0581, - 0x05020004, 0x42000000, 0x0010e394, 0x0501f00f, - 0x900c0582, 0x05020004, 0x42000000, 0x0010e395, - 0x0501f00a, 0x900c0583, 0x05020004, 0x42000000, - 0x0010e396, 0x0501f005, 0x900c0584, 0x05020004, - 0x42000000, 0x0010e397, 0x05fdff56, 0x5c000000, - 0x1c01f000, 0x4c000000, 0x59a80249, 0x4803c857, - 0x59240a00, 0x8c04050a, 0x05000010, 0x8c000506, - 0x05000004, 0x42000000, 0x0010e39f, 0x0501f011, - 0x8c00050a, 0x05000004, 0x42000000, 0x0010e39e, - 0x0501f00c, 0x8c000508, 0x05000004, 0x42000000, - 0x0010e3a1, 0x0501f007, 0x05c9f810, 0x05000006, - 0x8c000506, 0x05020004, 0x42000000, 0x0010e3a0, - 0x05fdff38, 0x5c000000, 0x1c01f000, 0x8058b1c0, - 0x05980d32, 0x5450a800, 0x8050a000, 0x8054a800, - 0x8058b040, 0x05fe07fc, 0x1c01f000, 0x8058b1c0, - 0x05980d2a, 0x4450a800, 0x8054a800, 0x8058b040, - 0x05fe07fd, 0x1c01f000, 0x4813c857, 0x4817c857, - 0x40140000, 0x80100480, 0x059a1d20, 0x497bc841, - 0x41787000, 0x42006800, 0x00140000, 0x59a800ca, - 0x8c000500, 0x05000003, 0x42006800, 0x0013a000, - 0x4837c857, 0x8010048d, 0x05021005, 0x8014048d, - 0x05001003, 0x40147000, 0x80342840, 0x61fc7801, - 0x40100000, 0x80140480, 0x82006d00, 0xffffff00, - 0x05020002, 0x40007800, 0x4813c840, 0x483fc842, - 0x05011000, 0x40100000, 0x803c2400, 0x40100000, - 0x80140580, 0x05fe07f3, 0x45782800, 0x803871c0, - 0x05000005, 0x40382800, 0x41787000, 0x80102000, - 0x05fdf7eb, 0x1c01f000, 0x8058b1c0, 0x05980cf7, - 0x50500000, 0x9c0001c0, 0x4400a800, 0x8050a000, - 0x8054a800, 0x8058b040, 0x05fe07fa, 0x1c01f000, - 0x4c000000, 0x59a80007, 0x8c00051c, 0x5c000000, - 0x1c01f000, 0x59a80007, 0x8c000518, 0x1c01f000, - 0x4200b000, 0x0010e511, 0x5058b000, 0x1c01f000, - 0x42006800, 0x0010e512, 0x58340406, 0x8c000502, - 0x05fc07f8, 0x6004b000, 0x1c01f000, 0x61906800, - 0x80346840, 0x05000006, 0x64070000, 0x40000000, - 0x59807000, 0x8c380500, 0x05fc07fa, 0x1c01f000, - 0x4c040000, 0x05fdfff6, 0x05020003, 0x80040840, - 0x05fe07fd, 0x5c000800, 0x1c01f000, 0x640f0000, - 0x40000000, 0x59800000, 0x8c000500, 0x05fc07fc, - 0x1c01f000, 0x42006800, 0x0010e512, 0x58340406, - 0x8c000504, 0x1c01f000, 0x42006800, 0x0010e511, - 0x50346800, 0x42007000, 0x0010e512, 0x58380200, - 0x8c000500, 0x05020004, 0x9038740d, 0x80346840, - 0x05fe07fb, 0x1c01f000, 0x42006800, 0x0010e512, - 0x58340406, 0x8c000508, 0x1c01f000, 0x42006800, - 0x0010e512, 0x58340406, 0x8c00050a, 0x1c01f000, - 0x59a80006, 0x8c000516, 0x1c01f000, 0x599c0017, - 0x8c00051e, 0x1c01f000, 0x42006800, 0x0010e511, - 0x50346800, 0x59cc7000, 0x42007800, 0x0010e512, - 0x583c0005, 0x80380580, 0x82000500, 0x00ffffff, - 0x05000006, 0x80346840, 0x05000003, 0x903c7c0d, - 0x05fdf7f8, 0x90000541, 0x1c01f000, 0x59a86a49, - 0x8c34050a, 0x0500000a, 0x8c340514, 0x05000008, - 0x42006800, 0x0010e511, 0x50346800, 0xb0340481, - 0x05001004, 0x599c0017, 0x8c00050a, 0x1c01f000, - 0x80000580, 0x05fdf7fe, 0x59a80006, 0x8c000518, - 0x05000002, 0x8d0c0520, 0x1c01f000, 0x00000001, - 0x00000002, 0x00000004, 0x00000008, 0x00000010, - 0x00000020, 0x00000040, 0x00000080, 0x00000100, - 0x00000200, 0x00000400, 0x00000800, 0x00001000, - 0x00002000, 0x00004000, 0x00008000, 0x00010000, - 0x00020000, 0x00040000, 0x00080000, 0x00100000, - 0x00200000, 0x00400000, 0x00800000, 0x01000000, - 0x02000000, 0x04000000, 0x08000000, 0x10000000, - 0x20000000, 0x40000000, 0x80000000, 0x0010e512, - 0x0010e51f, 0x0010e52c, 0x0010e539, 0x0010e546, - 0x0010e553, 0x0010e560, 0x0010e56d, 0x0010e57a, - 0x0010e587, 0x0010e594, 0x0010e5a1, 0x0010e5ae, - 0x0010e5bb, 0x0010e5c8, 0x0010e5d5, 0x0010e5e2, - 0x0010e5ef, 0x0010e5fc, 0x0010e609, 0x0010e616, - 0x0010e623, 0x0010e630, 0x0010e63d, 0x0010e64a, - 0x0010e657, 0x0010e664, 0x0010e671, 0x0010e67e, - 0x0010e68b, 0x0010e698, 0x0010e6a5, 0x0010e6b2, - 0x0010e6bf, 0x0010e6cc, 0x0010e6d9, 0x0010e6e6, - 0x0010e6f3, 0x0010e700, 0x0010e70d, 0x0010e71a, - 0x0010e727, 0x0010e734, 0x0010e741, 0x0010e74e, - 0x0010e75b, 0x0010e768, 0x0010e775, 0x0010e782, - 0x0010e78f, 0x0010e79c, 0x0010e7a9, 0x0010e7b6, - 0x0010e7c3, 0x0010e7d0, 0x0010e7dd, 0x0010e7ea, - 0x0010e7f7, 0x0010e804, 0x0010e811, 0x0010e81e, - 0x0010e82b, 0x0010e838, 0x0010e845, 0x0010e852, - 0x0010e85f, 0x0010e86c, 0x0010e879, 0x0010e886, - 0x0010e893, 0x0010e8a0, 0x0010e8ad, 0x0010e8ba, - 0x0010e8c7, 0x0010e8d4, 0x0010e8e1, 0x0010e8ee, - 0x0010e8fb, 0x0010e908, 0x0010e915, 0x0010e922, - 0x0010e92f, 0x0010e93c, 0x0010e949, 0x0010e956, - 0x0010e963, 0x0010e970, 0x0010e97d, 0x0010e98a, - 0x0010e997, 0x0010e9a4, 0x0010e9b1, 0x0010e9be, - 0x0010e9cb, 0x0010e9d8, 0x0010e9e5, 0x0010e9f2, - 0x0010e9ff, 0x0010ea0c, 0x0010ea19, 0x0010ea26, - 0x0010ea33, 0x0010ea40, 0x0010ea4d, 0x0010ea5a, - 0x0010ea67, 0x0010ea74, 0x0010ea81, 0x0010ea8e, - 0x0010ea9b, 0x0010eaa8, 0x0010eab5, 0x0010eac2, - 0x0010eacf, 0x0010eadc, 0x0010eae9, 0x0010eaf6, - 0x0010eb03, 0x0010eb10, 0x0010eb1d, 0x0010eb2a, - 0x0010eb37, 0x0010eb44, 0x0010eb51, 0x0010eb5e, - 0x0010eb6b, 0x0010eb78, 0x0010eb85, 0x0010eb92, - 0x0010eb9f, 0x0010ebac, 0x0010ebb9, 0x0010ebc6, - 0x0010ebd3, 0x0010ebe0, 0x0010ebed, 0x0010ebfa, - 0x0010ec07, 0x0010ec14, 0x0010ec21, 0x0010ec2e, - 0x0010ec3b, 0x0010ec48, 0x0010ec55, 0x0010ec62, - 0x0010ec6f, 0x0010ec7c, 0x0010ec89, 0x0010ec96, - 0x0010eca3, 0x0010ecb0, 0x0010ecbd, 0x0010ecca, - 0x0010ecd7, 0x0010ece4, 0x0010ecf1, 0x0010ecfe, - 0x0010ed0b, 0x0010ed18, 0x0010ed25, 0x0010ed32, - 0x0010ed3f, 0x0010ed4c, 0x0010ed59, 0x0010ed66, - 0x0010ed73, 0x0010ed80, 0x0010ed8d, 0x0010ed9a, - 0x0010eda7, 0x0010edb4, 0x0010edc1, 0x0010edce, - 0x0010eddb, 0x0010ede8, 0x0010edf5, 0x0010ee02, - 0x0010ee0f, 0x0010ee1c, 0x0010ee29, 0x0010ee36, - 0x0010ee43, 0x0010ee50, 0x0010ee5d, 0x0010ee6a, - 0x0010ee77, 0x0010ee84, 0x0010ee91, 0x0010ee9e, - 0x0010eeab, 0x0010eeb8, 0x0010eec5, 0x0010eed2, - 0x0010eedf, 0x0010eeec, 0x0010eef9, 0x0010ef06, - 0x0010ef13, 0x0010ef20, 0x0010ef2d, 0x0010ef3a, - 0x0010ef47, 0x0010ef54, 0x0010ef61, 0x0010ef6e, - 0x0010ef7b, 0x0010ef88, 0x0010ef95, 0x0010efa2, - 0x0010efaf, 0x0010efbc, 0x0010efc9, 0x0010efd6, - 0x0010efe3, 0x0010eff0, 0x0010effd, 0x0010f00a, - 0x0010f017, 0x0010f024, 0x0010f031, 0x0010f03e, - 0x0010f04b, 0x0010f058, 0x0010f065, 0x0010f072, - 0x0010f07f, 0x0010f08c, 0x0010f099, 0x0010f0a6, - 0x0010f0b3, 0x0010f0c0, 0x0010f0cd, 0x0010f0da, - 0x0010f0e7, 0x0010f0f4, 0x0010f101, 0x0010f10e, - 0x0010f11b, 0x0010f128, 0x0010f135, 0x0010f142, - 0x0010f14f, 0x0010f15c, 0x0010f169, 0x0010f176, - 0x0010f183, 0x0010f190, 0x0010f19d, 0x0010f1aa, - 0x0010f1b7, 0x0010f1c4, 0x0010f1d1, 0x0010f1de, - 0x0010f1eb, 0x0010f1f8, 0x0010f205, 0x40000000, - 0x600070e0, 0x60007820, 0x4a007016, 0x00010001, - 0x58380016, 0x8c000500, 0x05fc07fc, 0x600c4000, - 0x60003002, 0x64807808, 0x583c2808, 0x8c14053e, - 0x05000004, 0x80183040, 0x05fe07fc, 0x0501f00d, - 0x583c2808, 0x82140500, 0x20000400, 0x82000580, - 0x00000400, 0x05020005, 0x82140500, 0x00000300, - 0x90000580, 0x05000007, 0x80204040, 0x05fe07ee, - 0x4a007016, 0x00010000, 0x90000541, 0x0501f040, - 0x650c7808, 0x583c0009, 0x8c000500, 0x05000005, - 0x60002000, 0x4a007016, 0x00010000, 0x0501f037, - 0x65007808, 0x583c5809, 0x65047808, 0x583c6009, - 0x65087808, 0x583c6809, 0x4a007016, 0x00010000, - 0x82102d00, 0xf0000000, 0x90140580, 0x05000002, - 0x0501f020, 0x60202800, 0x60003000, 0x803000c8, - 0x40003800, 0x8030010a, 0x801c3d80, 0x40300000, - 0x80180580, 0x80100400, 0x801c0400, 0x802c5c00, - 0x803400c8, 0x40003800, 0x8034010a, 0x801c3d80, - 0x40340000, 0x80180580, 0x801c0400, 0x80306400, - 0x802c00c8, 0x40003800, 0x802c010a, 0x801c3d80, - 0x402c0000, 0x80180580, 0x801c0400, 0x80346c00, - 0x82183400, 0x9e3779b9, 0x80142840, 0x05fe07e4, - 0x0502000b, 0x402c0000, 0x80040580, 0x05fe07c7, - 0x40300000, 0x80080580, 0x05fe07c4, 0x40340000, - 0x800c0580, 0x05fe07c1, 0x80000580, 0x1c01f000, - 0x1c01f000, 0x42005000, 0x7ff4c000, 0x58280800, - 0x58281001, 0x58281802, 0x58282003, 0x05fdff98, - 0x05020807, 0x82101d00, 0x0fffffff, 0x480fc021, - 0x900c01c0, 0x4803c022, 0x1c01f000, 0x497bc021, - 0x497bc022, 0x4a03c020, 0x00004020, 0x4a03c011, - 0x40200011, 0x6016d800, 0x05027011, 0x59e00020, - 0x90000582, 0x0502000e, 0x05006000, 0x4203e000, - 0x40000000, 0x59e00017, 0x60000800, 0x8c00050a, - 0x05a20bd4, 0x8d0c0530, 0x05a20bc7, 0x05a20bc9, - 0x6403c017, 0x4203e000, 0x30000001, 0x0599fcb5, - 0x05fdf7ff, 0x59a808d1, 0x8c100502, 0x05000003, - 0x84040d42, 0x0501f007, 0x8c100504, 0x05000003, - 0x84040d44, 0x0501f003, 0x8c100500, 0x84040d40, - 0x480750d1, 0x1c01f000, 0x59a800d1, 0x8c000502, - 0x05000009, 0x4a0350d2, 0x0000008b, 0x4a0350d3, - 0x0000008b, 0x4a0350d4, 0x0000008b, 0x641350d5, - 0x0501f00c, 0x8c000504, 0x05000006, 0x65bf50d2, - 0x65bf50d3, 0x65df50d4, 0x640350d5, 0x0501f005, - 0x64cf50d2, 0x64cf50d3, 0x649750d4, 0x640350d5, - 0x1c01f000, 0x9d56cdac, 0x00000000, 0x00000000, - 0x00112000, 0x0000317e, 0x00000000, 0x00000000, - 0x00020000, 0x000011a6, 0x916c0583, 0x01020177, - 0x42000000, 0x0010dd03, 0x50000000, 0x800001c0, - 0x05020a3e, 0x0501f9fb, 0x0501ffd5, 0x0501fb93, - 0x8d0c0516, 0x05000f50, 0x8d0c0516, 0x05000e06, - 0x59a800a2, 0x80000540, 0x01060ac5, 0x0505fc83, - 0x05fdf7ee, 0x835c0480, 0x00000104, 0x010411a5, - 0x416a5800, 0x592ed000, 0x497a5800, 0x497a5801, - 0x815eb840, 0x812e59c0, 0x1c01f000, 0x42007000, - 0x000211a7, 0x58380004, 0x49781000, 0x64001002, - 0x48087004, 0x80000d40, 0x05020006, 0x48087005, - 0x58380000, 0x80000540, 0x0500000a, 0x1c01f000, - 0x48080800, 0x05fdf7fb, 0x42007000, 0x000211a7, - 0x58380000, 0x80000540, 0x05000002, 0x1c01f000, - 0x58380807, 0x800409c0, 0x01060234, 0x58380005, - 0x80006d40, 0x05020002, 0x1c01f000, 0x58340000, - 0x48347001, 0x80000540, 0x05020002, 0x48007004, - 0x48007005, 0x4a03b805, 0x30000002, 0x58340007, - 0x59dc0806, 0x4803b800, 0x58340008, 0x4803b801, - 0x58340806, 0x4807b81f, 0x58340805, 0x58341003, - 0x58340001, 0x48047002, 0x48087003, 0x480bb803, - 0x8c000500, 0x05020004, 0x64087000, 0x6407c824, - 0x0501f004, 0x64047000, 0x6503c824, 0x0105f25b, - 0x58380802, 0x600011fe, 0x82040480, 0x0000ff00, - 0x05021003, 0x40041000, 0x80000580, 0x48007002, - 0x480bb802, 0x4a03b805, 0x10000002, 0x1c01f000, - 0x59dc0806, 0x4a03b805, 0x20000000, 0x8c04053e, - 0x05000009, 0x8c040508, 0x01020dda, 0x42007000, - 0x000211a7, 0x58380000, 0x90001484, 0x0c001003, - 0x0101fdda, 0x1c01f000, 0x00020036, 0x00020078, - 0x0002007f, 0x001014e8, 0x82040d00, 0x43200f80, - 0x01060268, 0x58380002, 0x80000540, 0x05000008, - 0x0105f25b, 0x82040d00, 0x43200f80, 0x01060268, - 0x58380002, 0x80000540, 0x05fe07d6, 0x58386001, - 0x58300009, 0x4a006002, 0x00000100, 0x64007000, - 0x80001540, 0x05fc07ab, 0x59dc0000, 0x48006007, - 0x59dc0001, 0x48006008, 0x0809f800, 0x05fdf79f, - 0x84040d1e, 0x59e00017, 0x8c00050c, 0x05020007, - 0x59a818a0, 0x800400c4, 0x800c1c00, 0x580c0003, - 0x8c000500, 0x05000008, 0x59a800a2, 0x4c000000, - 0x0105fab6, 0x5c000000, 0x80000540, 0x01060280, - 0x1c01f000, 0x4d2c0000, 0x4c040000, 0x4c0c0000, - 0x05fdff71, 0x5c001800, 0x5c000800, 0x05000014, - 0x82040400, 0x0010df60, 0x50000000, 0x48025806, - 0x64025801, 0x64125805, 0x64065804, 0x900c0402, - 0x48025803, 0x580c0000, 0x48025807, 0x580c0001, - 0x48025808, 0x4a025809, 0x000200bf, 0x4806580a, - 0x412c1000, 0x5c025800, 0x05fdf765, 0x5c025800, - 0x0105f2b6, 0x58300802, 0x82040580, 0x00000100, - 0x01060275, 0x4d2c0000, 0x40325800, 0x0105f993, - 0x5c025800, 0x0105f280, 0x59b800ea, 0x82000d00, - 0xf2000038, 0x010603f7, 0x8c000510, 0x010403f6, - 0x59ba60e0, 0x81300182, 0x0502104c, 0x05002030, - 0x8532653e, 0x59300407, 0x90000583, 0x0502002a, - 0x59300203, 0x90000584, 0x05020027, 0x59325809, - 0x59300004, 0x4a025a08, 0x00000103, 0x497a580d, - 0x8c00053e, 0x0502001a, 0x59300008, 0x82000500, - 0x04000800, 0x82000580, 0x04000800, 0x05000017, - 0x0501fa9c, 0x59325827, 0x812e59c0, 0x01060993, - 0x5932680a, 0x0505fef1, 0x5934000f, 0x8d0c0512, - 0x05020005, 0x5934140b, 0x80081040, 0x05001002, - 0x480a6c0b, 0x80000540, 0x05020a19, 0x59b800ea, - 0x8c000510, 0x05fe07d7, 0x1c01f000, 0x0145f8b9, - 0x05fc07e6, 0x0105f3ef, 0x59300221, 0x48025c13, - 0x05fdf7e8, 0x61567000, 0x0501f024, 0x83326500, - 0x3fffffff, 0x59300407, 0x90000583, 0x05020015, - 0x59325809, 0x5932680a, 0x4a025a08, 0x00000103, - 0x497a580d, 0x0501fa77, 0x59325827, 0x812e59c0, - 0x01060992, 0x0505fecd, 0x5934000f, 0x8d0c0512, - 0x05020005, 0x5934140b, 0x80081040, 0x05001002, - 0x480a6c0b, 0x80000540, 0x050209f5, 0x05fdf7dc, - 0x61527000, 0x0501f009, 0x83300500, 0x60000000, - 0x05000013, 0x81326580, 0x8000013a, 0x82000400, - 0x00100bfb, 0x50027000, 0x59300c07, 0x90040580, - 0x010403ef, 0x90040582, 0x010403ef, 0x59300004, - 0x8c00053e, 0x05020003, 0x0505fed4, 0x05fdf7c8, - 0x0145f8b9, 0x05fc07fd, 0x0105f3ef, 0x83300500, - 0x1f000000, 0x010403f1, 0x81326580, 0x80000130, - 0x90000c97, 0x01021dda, 0x1201f000, 0x00100bff, - 0x82000500, 0xf0000000, 0x82040d00, 0x0fffffff, - 0x80040d40, 0x4807c857, 0x59b800ea, 0x8c000516, - 0x0106051a, 0x480770e1, 0x1c01f000, 0x59325809, - 0x412c7000, 0x58380a08, 0x82040d00, 0x000000ff, - 0xb00405a8, 0x01040786, 0xb00405aa, 0x01040786, - 0xb00405ba, 0x0104079f, 0xb00405b2, 0x0104079f, - 0x58380a08, 0x9004050f, 0x82000c00, 0x001012ac, - 0x50044000, 0x0c01f001, 0x00100f85, 0x00100f85, - 0x00020168, 0x00100f85, 0x00100f85, 0x00100f85, - 0x00100f85, 0x00100f85, 0x00020176, 0x00100fa5, - 0x00100f85, 0x00100f85, 0x00100f85, 0x00100f85, - 0x00100f85, 0x00100f85, 0x5838040e, 0x8c000500, - 0x01000dda, 0x50200000, 0x80387c00, 0x583c1002, - 0x583c2800, 0x583c2001, 0x58380a0b, 0x58383013, - 0x59303808, 0x58380011, 0x48026014, 0x0501f00e, - 0x5838020e, 0x8c000502, 0x01040785, 0x50200000, - 0x80387c00, 0x583c2800, 0x583c2001, 0x583c1002, - 0x592c0a0b, 0x592c3013, 0x59303808, 0x497a6014, - 0x497a6015, 0x48166010, 0x48126011, 0x480a6012, - 0x481a6013, 0x80040840, 0x4806600f, 0x010607cc, - 0x841c3d40, 0x481e6008, 0x1c01f000, 0x4d2c0000, - 0x59325809, 0x592c0a08, 0x4807c857, 0x82040d00, - 0x000000ff, 0x9004050f, 0x1201f000, 0x001010f0, - 0x41787800, 0x59325809, 0x592c0c0e, 0x8c040502, - 0x01080120, 0x592c0011, 0x592c1013, 0x592c0a08, - 0x480a6013, 0x48026014, 0x48026015, 0x82040d00, - 0x000000ff, 0xb00405b2, 0x01080126, 0xb00405ba, - 0x01080126, 0x412c3000, 0x9004050f, 0x82000400, - 0x001012ac, 0x50003800, 0x8c3c050e, 0x05000002, - 0x801c3800, 0x501c0000, 0x592c1a0b, 0x4802600c, - 0x481a600d, 0x481e600e, 0x480e600f, 0x843c7d4a, - 0x403c1000, 0x1c01f000, 0x59e00004, 0x8c00050e, - 0x05fe06ac, 0x1c01f000, 0x42001000, 0x001105e7, - 0x5808000a, 0x80000540, 0x010a06ac, 0x4a001003, - 0x001105f1, 0x4c080000, 0x0501f812, 0x5c001000, - 0x4814100a, 0x480c1007, 0x48101008, 0x64001001, - 0x64101005, 0x64041004, 0x05fdf655, 0x58300802, - 0x82040580, 0x00000100, 0x010a06bb, 0x82300580, - 0x001105e7, 0x010a06b6, 0x4978600a, 0x1c01f000, - 0x61901800, 0x800c1840, 0x05000006, 0x64070000, - 0x40000000, 0x59800000, 0x8c000500, 0x05fc07fa, - 0x01080706, 0x600028f4, 0x58142024, 0x58141823, - 0x58142825, 0x64030000, 0x1c01f000, 0x4c000000, - 0x4df00000, 0x4203e000, 0xb0100000, 0x41f00000, - 0x81fe1500, 0x8d080512, 0x010e092d, 0x8d08051c, - 0x05060ccd, 0x8d080518, 0x05060d00, 0x8d08051a, - 0x05fe0ed6, 0x83080500, 0x00000d00, 0x05020804, - 0x5c03e000, 0x5c000000, 0x1801f000, 0x8d080516, - 0x010a0f6d, 0x8d080514, 0x05fe0fbc, 0x8d080508, - 0x010a0b68, 0x8d080500, 0x05060c27, 0x8d08050c, - 0x010e0830, 0x8d08050a, 0x010a049f, 0x1c01f000, - 0x42000000, 0x0010dd09, 0x50000000, 0x8c000504, - 0x05000013, 0x8c000508, 0x05020004, 0x8c000502, - 0x05020002, 0x1c01f000, 0x4df00000, 0x4203e000, - 0x50000000, 0x42034000, 0x0010dceb, 0x59a0001e, - 0x59a1d806, 0x84000502, 0x4803401e, 0x58ec0009, - 0x0801f800, 0x5c03e000, 0x1c01f000, 0x05027002, - 0x05026002, 0x1c01f000, 0x4df00000, 0x4203e000, - 0x50000000, 0x59e00020, 0xb0000d85, 0x05000003, - 0xb0000d84, 0x05020007, 0x4803c857, 0x42000800, - 0x000211a7, 0x58040800, 0x90040d80, 0x05020019, - 0x0105f982, 0x05000017, 0x412dd800, 0x48efc857, - 0x0125f8b5, 0x42034000, 0x0010dceb, 0x49a1d80b, - 0x48ef4006, 0x59a0001e, 0x84000544, 0x4803401e, - 0x59e00020, 0x4803c857, 0x59e00021, 0x4803c857, - 0x59e00022, 0x4803c857, 0x59e00023, 0x4803c857, - 0x59e00024, 0x4803c857, 0x0115f957, 0x0115f96f, - 0x5c03e000, 0x1c01f000, 0x4c5c0000, 0x4da00000, - 0x4df00000, 0x4203e000, 0x50000000, 0x05006062, - 0x42034000, 0x0010dceb, 0x59a01018, 0x59a01819, - 0x800c19c0, 0x05020009, 0x59a0381c, 0x801c39c0, - 0x01000dda, 0x49a3c857, 0x481fc857, 0x59a0041d, - 0x801c3c00, 0x0501f00a, 0x59a0041a, 0x90000402, - 0x4803441a, 0x90000c97, 0x05001003, 0x497b441a, - 0x41780000, 0x59a03817, 0x801c3c00, 0x401cb800, - 0x80081040, 0x480b4018, 0x581c0200, 0x4803c021, - 0x581c0401, 0x4803c022, 0x581c0201, 0x4803c023, - 0x581c0400, 0x4803c020, 0x900001c0, 0x90000552, - 0x4803c011, 0x8d0c0530, 0x0500000f, 0x4c080000, - 0x4c0c0000, 0x4c1c0000, 0x59e00017, 0x8c00050a, - 0x05000004, 0x60000800, 0x05fdfe16, 0x0501f003, - 0x8c000500, 0x05fe0f3d, 0x5c003800, 0x5c001800, - 0x5c001000, 0x6403c017, 0x4203e000, 0x30000001, - 0x800c19c0, 0x05000007, 0x800c1840, 0x480f4019, - 0x0502001b, 0x497b441a, 0x497b421a, 0x0501f018, - 0x800811c0, 0x0502000a, 0x4d2c0000, 0x59a2581c, - 0x0105f992, 0x5c025800, 0x497b401c, 0x497b401b, - 0x497b441d, 0x497b421d, 0x0501f00d, 0x59a0041d, - 0x90000402, 0x90000c96, 0x4803441d, 0x05001008, - 0x4d2c0000, 0x59a2581c, 0x592c3817, 0x481f401c, - 0x497b441d, 0x0105f992, 0x5c025800, 0x8d0c052a, - 0x05000009, 0x60083800, 0x42000800, 0x25000000, - 0x585c1800, 0x585c3001, 0x900c19c0, 0x901831c0, - 0x0101fea6, 0x5c03e000, 0x5c034000, 0x5c00b800, - 0x1c01f000, 0x8d0c0520, 0x05000003, 0x59a80005, - 0x8c000516, 0x1c01f000, 0x910c0503, 0x012a02dd, - 0x59340400, 0x82000580, 0x00000606, 0x012a02b7, - 0x5934000d, 0x80027d40, 0x012a02e6, 0x592c1003, - 0x5808020a, 0x8c000500, 0x05000005, 0x592c1813, - 0x5808000d, 0x800c0400, 0x4800100d, 0x5934000f, - 0x59341203, 0x80080540, 0x05020021, 0x8d0c0512, - 0x05000010, 0x0505fcf0, 0x05000017, 0x59a800d2, - 0x80000040, 0x05fe07ff, 0x492e6009, 0x4936600a, - 0x58d400ea, 0x8c000516, 0x05fe07fe, 0x83300400, - 0x20000000, 0x4801a8e1, 0x80000580, 0x1c01f000, - 0x5934000b, 0x80001920, 0x82000500, 0x0000ffff, - 0x800c0480, 0x0502100a, 0x800c1800, 0x480e6c0b, - 0x05fdf7e9, 0x8d0c0512, 0x05020005, 0x59341c0b, - 0x800c1840, 0x480e6c0b, 0x59341203, 0x0501f803, - 0x80000580, 0x1c01f000, 0x800811c0, 0x05020002, - 0x64066a03, 0x59340010, 0x492e6810, 0x80000d40, - 0x05020008, 0x492e680f, 0x592c040a, 0x800000c2, - 0x800018c4, 0x800c0400, 0x48025807, 0x1c01f000, - 0x492c0800, 0x05fdf7f9, 0x83440c80, 0x00000800, - 0x05021009, 0x83440400, 0x0010d400, 0x50000000, - 0x80000540, 0x05000004, 0x40026800, 0x80000580, - 0x1c01f000, 0x90000541, 0x1c01f000, 0x59340203, - 0x80000540, 0x05020036, 0x4d300000, 0x4d2c0000, - 0x5934000f, 0x80025d40, 0x0500002f, 0x0505fcaa, - 0x05000021, 0x592c0000, 0x4802680f, 0x80000540, - 0x05020002, 0x48026810, 0x592c2a08, 0x4936600a, - 0x4c080000, 0x012dfdc8, 0x5c001000, 0x05000025, - 0x492e6009, 0x8d0c0512, 0x05000010, 0x58d400ea, - 0x8c000516, 0x05fe07fe, 0x83300400, 0x20000000, - 0x4801a8e1, 0x8d0c0512, 0x05fe07e6, 0x5934000b, - 0x80001120, 0x82000500, 0x0000ffff, 0x80080480, - 0x05fc17e0, 0x0501f010, 0x80081000, 0x480a6c0b, - 0x05fdf7ef, 0x4c080000, 0x012dfdc8, 0x05020008, - 0x42000000, 0x0010e444, 0x0165ffdc, 0x015dfa53, - 0x05000003, 0x5c001000, 0x05fdf7d7, 0x5c001000, - 0x64066a03, 0x5c025800, 0x5c026000, 0x1c01f000, - 0x497a5800, 0x4932580d, 0x4a026007, 0x00068000, - 0x641e6203, 0x0501f802, 0x05fdf7df, 0x592e440b, - 0x83224500, 0x000000ff, 0x83200400, 0x0010d17b, - 0x50024800, 0x4926601d, 0x592c0210, 0x48026202, - 0x59240206, 0x8c000510, 0x012a070a, 0x8d0c050e, - 0x012a0708, 0x59240200, 0x8c000516, 0x012a0706, - 0x59340200, 0x8c000518, 0x012a0704, 0x64025a0a, - 0x8c000508, 0x012a0702, 0x492e6009, 0x4d3c0000, - 0x417a7800, 0x0505fac6, 0x5c027800, 0x1c01f000, - 0x58040001, 0x49680800, 0x49780801, 0x815eb800, - 0x4006d000, 0x80000d40, 0x05fe07fa, 0x497a5801, - 0x59c80000, 0x82000540, 0x00001200, 0x48039000, - 0x1c01f000, 0x59980005, 0x48032823, 0x59d8010b, - 0x48033006, 0x1c01f000, 0x59980005, 0x59747408, - 0x58387100, 0x483aec02, 0x4802e803, 0x1c01f000, - 0x592c0408, 0x8c00051e, 0x012e0618, 0x497a5800, - 0x8d0c0516, 0x05020003, 0x0501fa49, 0x0501f011, - 0x8d0c0526, 0x0502000d, 0x0502d007, 0x592c0001, - 0x492fb107, 0x80000d40, 0x05fe0fda, 0x0500e1c4, - 0x1c01f000, 0x0500e9c2, 0x05fcd7f9, 0x42000000, - 0x0010e3a8, 0x0165ffdf, 0x0501fa39, 0x0500da49, - 0x0500e1bb, 0x59d80105, 0x82000d00, 0x01238780, - 0x05020257, 0x1c01f000, 0x59980003, 0x0c01f001, - 0x000203a8, 0x000203a9, 0x00020421, 0x00020461, - 0x000203b7, 0x000204de, 0x1c01f000, 0x4df00000, - 0x4203e000, 0x50000000, 0x05026a8e, 0x05006003, - 0x8d0c0520, 0x05020b35, 0x830c0580, 0x00080800, - 0x82000500, 0x00080800, 0x05000a2e, 0x5c03e000, + 0x8c040516, 0x05000004, 0x5988011f, 0x80000000, + 0x4803111f, 0x8c040514, 0x05000004, 0x59880120, + 0x80000000, 0x48031120, 0x5c000000, 0x1c01f000, + 0x4807c857, 0x4c000000, 0x8c040510, 0x05000004, + 0x59880121, 0x80000000, 0x48031121, 0x8c04050c, + 0x05000004, 0x59880122, 0x80000000, 0x48031122, + 0x5c000000, 0x1c01f000, 0x4807c857, 0x4c000000, + 0x8c040508, 0x05000004, 0x59880123, 0x80000000, + 0x48031123, 0x8c040504, 0x05000004, 0x59880124, + 0x80000000, 0x48031124, 0x5c000000, 0x1c01f000, + 0x4807c856, 0x4c000000, 0x598800ed, 0x80000000, + 0x480310ed, 0x5c000000, 0x1c01f000, 0x5c036000, + 0x4db00000, 0x49b3c857, 0x4c040000, 0x50000800, + 0x80040800, 0x05001002, 0x44040000, 0x5c000800, + 0x1c01f000, 0x480fc857, 0x4c000000, 0x900c0580, + 0x05020004, 0x42000000, 0x001123b2, 0x0501f012, + 0x820c0580, 0x00001001, 0x05020004, 0x42000000, + 0x001123b3, 0x0501f00c, 0x820c0580, 0x00001002, + 0x05020004, 0x42000000, 0x001123b4, 0x0501f006, + 0x820c0c80, 0x0000201c, 0x05961e9f, 0x900c051f, + 0x0c01f804, 0x05fdffde, 0x5c000000, 0x1c01f000, + 0x0010d798, 0x0010d79b, 0x0010d79e, 0x0010d7a1, + 0x0010d7a4, 0x0010d7a7, 0x0010d7aa, 0x0010d7ad, + 0x0010d7b0, 0x0010d7b3, 0x0010d7b6, 0x0010d7b9, + 0x0010d7bc, 0x0010d7bf, 0x0010d7c2, 0x0010d7c5, + 0x0010d7c8, 0x0010d7cb, 0x0010d7ce, 0x0010d7d1, + 0x0010d7d4, 0x0010d7d7, 0x0010d7da, 0x0010d7dd, + 0x0010d7e0, 0x0010d7e3, 0x0010d7e6, 0x0010d7e9, + 0x42000000, 0x001123b5, 0x1c01f000, 0x42000000, + 0x001123b6, 0x1c01f000, 0x42000000, 0x001123b7, + 0x1c01f000, 0x42000000, 0x001123b8, 0x1c01f000, + 0x42000000, 0x001123b9, 0x1c01f000, 0x42000000, + 0x001123ba, 0x1c01f000, 0x42000000, 0x001123bb, + 0x1c01f000, 0x42000000, 0x001123bc, 0x1c01f000, + 0x42000000, 0x001123bd, 0x1c01f000, 0x42000000, + 0x001123be, 0x1c01f000, 0x42000000, 0x001123bf, + 0x1c01f000, 0x42000000, 0x001123c0, 0x1c01f000, + 0x42000000, 0x001123c1, 0x1c01f000, 0x42000000, + 0x001123c2, 0x1c01f000, 0x42000000, 0x001123c3, + 0x1c01f000, 0x42000000, 0x001123c4, 0x1c01f000, + 0x42000000, 0x001123c5, 0x1c01f000, 0x42000000, + 0x001123c6, 0x1c01f000, 0x42000000, 0x001123c7, + 0x1c01f000, 0x42000000, 0x001123c8, 0x1c01f000, + 0x42000000, 0x001123c9, 0x1c01f000, 0x42000000, + 0x001123ca, 0x1c01f000, 0x42000000, 0x001123cb, + 0x1c01f000, 0x42000000, 0x001123cc, 0x1c01f000, + 0x42000000, 0x001123cd, 0x1c01f000, 0x42000000, + 0x001123ce, 0x1c01f000, 0x42000000, 0x001123cf, + 0x1c01f000, 0x42000000, 0x001123d0, 0x1c01f000, + 0x480fc857, 0x4c000000, 0x900c0585, 0x05020004, + 0x42000000, 0x00112335, 0x0501f00f, 0x900c0582, + 0x05020004, 0x42000000, 0x00112336, 0x0501f00a, + 0x900c0583, 0x05020004, 0x42000000, 0x00112337, + 0x0501f005, 0x900c0584, 0x05020004, 0x42000000, + 0x00112338, 0x05fdff56, 0x5c000000, 0x1c01f000, + 0x4c000000, 0x59a8024c, 0x4803c857, 0x59240a00, + 0x8c04050a, 0x05000010, 0x8c000506, 0x05000004, + 0x42000000, 0x00112340, 0x0501f011, 0x8c00050a, + 0x05000004, 0x42000000, 0x0011233f, 0x0501f00c, + 0x8c000508, 0x05000004, 0x42000000, 0x00112342, + 0x0501f007, 0x05c5fb7f, 0x05000006, 0x8c000506, + 0x05020004, 0x42000000, 0x00112341, 0x05fdff38, + 0x5c000000, 0x1c01f000, 0x8058b1c0, 0x05940df2, + 0x5450a800, 0x8050a000, 0x8054a800, 0x8058b040, + 0x05fe07fc, 0x1c01f000, 0x8058b1c0, 0x05940dea, + 0x4450a800, 0x8054a800, 0x8058b040, 0x05fe07fd, + 0x1c01f000, 0x4813c857, 0x4817c857, 0x40140000, + 0x80100480, 0x05961de0, 0x497bc841, 0x41787000, + 0x42006800, 0x00140000, 0x59a800cf, 0x8c000500, + 0x05000003, 0x42006800, 0x0013a000, 0x4837c857, + 0x8010048d, 0x05021005, 0x8014048d, 0x05001003, + 0x40147000, 0x80342840, 0x61fc7801, 0x40100000, + 0x80140480, 0x82006d00, 0xffffff00, 0x05020002, + 0x40007800, 0x4813c840, 0x483fc842, 0x05011000, + 0x40100000, 0x803c2400, 0x40100000, 0x80140580, + 0x05fe07f3, 0x45782800, 0x803871c0, 0x05000005, + 0x40382800, 0x41787000, 0x80102000, 0x05fdf7eb, + 0x1c01f000, 0x8058b1c0, 0x05940db7, 0x50500000, + 0x9c0001c0, 0x4400a800, 0x8050a000, 0x8054a800, + 0x8058b040, 0x05fe07fa, 0x1c01f000, 0x4c000000, + 0x59a80007, 0x8c00051c, 0x5c000000, 0x1c01f000, + 0x59a80007, 0x8c000518, 0x1c01f000, 0x4200b000, + 0x001124b5, 0x5058b000, 0x1c01f000, 0x42006800, + 0x001124b6, 0x58340406, 0x8c000502, 0x05fc07f8, + 0x6004b000, 0x1c01f000, 0x61906800, 0x80346840, + 0x05000006, 0x64070000, 0x40000000, 0x59807000, + 0x8c380500, 0x05fc07fa, 0x1c01f000, 0x4c040000, + 0x05fdfff6, 0x05020003, 0x80040840, 0x05fe07fd, + 0x5c000800, 0x1c01f000, 0x640f0000, 0x40000000, + 0x59800000, 0x8c000500, 0x05fc07fc, 0x1c01f000, + 0x42006800, 0x001124b6, 0x58340406, 0x8c000504, + 0x1c01f000, 0x42006800, 0x001124b5, 0x50346800, + 0x42007000, 0x001124b6, 0x58380200, 0x8c000500, + 0x05020004, 0x9038740d, 0x80346840, 0x05fe07fb, + 0x1c01f000, 0x42006800, 0x001124b6, 0x58340406, + 0x8c000508, 0x1c01f000, 0x42006800, 0x001124b6, + 0x58340406, 0x8c00050a, 0x1c01f000, 0x59a80006, + 0x8c000516, 0x1c01f000, 0x599c0017, 0x8c00051e, + 0x1c01f000, 0x42006800, 0x001124b5, 0x50346800, + 0x59cc7000, 0x42007800, 0x001124b6, 0x583c0005, + 0x80380580, 0x82000500, 0x00ffffff, 0x05000006, + 0x80346840, 0x05000003, 0x903c7c0d, 0x05fdf7f8, + 0x90000541, 0x1c01f000, 0x59a86a4c, 0x8c34050a, + 0x0500000a, 0x8c340514, 0x05000008, 0x42006800, + 0x001124b5, 0x50346800, 0xb0340481, 0x05001004, + 0x599c0017, 0x8c00050a, 0x1c01f000, 0x80000580, + 0x05fdf7fe, 0x59a80006, 0x8c000518, 0x05000002, + 0x8d0c0520, 0x1c01f000, 0x599c0019, 0x8c00050c, + 0x1c01f000, 0x00000001, 0x00000002, 0x00000004, + 0x00000008, 0x00000010, 0x00000020, 0x00000040, + 0x00000080, 0x00000100, 0x00000200, 0x00000400, + 0x00000800, 0x00001000, 0x00002000, 0x00004000, + 0x00008000, 0x00010000, 0x00020000, 0x00040000, + 0x00080000, 0x00100000, 0x00200000, 0x00400000, + 0x00800000, 0x01000000, 0x02000000, 0x04000000, + 0x08000000, 0x10000000, 0x20000000, 0x40000000, + 0x80000000, 0x001124b6, 0x001124c3, 0x001124d0, + 0x001124dd, 0x001124ea, 0x001124f7, 0x00112504, + 0x00112511, 0x0011251e, 0x0011252b, 0x00112538, + 0x00112545, 0x00112552, 0x0011255f, 0x0011256c, + 0x00112579, 0x00112586, 0x00112593, 0x001125a0, + 0x001125ad, 0x001125ba, 0x001125c7, 0x001125d4, + 0x001125e1, 0x001125ee, 0x001125fb, 0x00112608, + 0x00112615, 0x00112622, 0x0011262f, 0x0011263c, + 0x00112649, 0x00112656, 0x00112663, 0x00112670, + 0x0011267d, 0x0011268a, 0x00112697, 0x001126a4, + 0x001126b1, 0x001126be, 0x001126cb, 0x001126d8, + 0x001126e5, 0x001126f2, 0x001126ff, 0x0011270c, + 0x00112719, 0x00112726, 0x00112733, 0x00112740, + 0x0011274d, 0x0011275a, 0x00112767, 0x00112774, + 0x00112781, 0x0011278e, 0x0011279b, 0x001127a8, + 0x001127b5, 0x001127c2, 0x001127cf, 0x001127dc, + 0x001127e9, 0x001127f6, 0x00112803, 0x00112810, + 0x0011281d, 0x0011282a, 0x00112837, 0x00112844, + 0x00112851, 0x0011285e, 0x0011286b, 0x00112878, + 0x00112885, 0x00112892, 0x0011289f, 0x001128ac, + 0x001128b9, 0x001128c6, 0x001128d3, 0x001128e0, + 0x001128ed, 0x001128fa, 0x00112907, 0x00112914, + 0x00112921, 0x0011292e, 0x0011293b, 0x00112948, + 0x00112955, 0x00112962, 0x0011296f, 0x0011297c, + 0x00112989, 0x00112996, 0x001129a3, 0x001129b0, + 0x001129bd, 0x001129ca, 0x001129d7, 0x001129e4, + 0x001129f1, 0x001129fe, 0x00112a0b, 0x00112a18, + 0x00112a25, 0x00112a32, 0x00112a3f, 0x00112a4c, + 0x00112a59, 0x00112a66, 0x00112a73, 0x00112a80, + 0x00112a8d, 0x00112a9a, 0x00112aa7, 0x00112ab4, + 0x00112ac1, 0x00112ace, 0x00112adb, 0x00112ae8, + 0x00112af5, 0x00112b02, 0x00112b0f, 0x00112b1c, + 0x00112b29, 0x00112b36, 0x00112b43, 0x00112b50, + 0x00112b5d, 0x00112b6a, 0x00112b77, 0x00112b84, + 0x00112b91, 0x00112b9e, 0x00112bab, 0x00112bb8, + 0x00112bc5, 0x00112bd2, 0x00112bdf, 0x00112bec, + 0x00112bf9, 0x00112c06, 0x00112c13, 0x00112c20, + 0x00112c2d, 0x00112c3a, 0x00112c47, 0x00112c54, + 0x00112c61, 0x00112c6e, 0x00112c7b, 0x00112c88, + 0x00112c95, 0x00112ca2, 0x00112caf, 0x00112cbc, + 0x00112cc9, 0x00112cd6, 0x00112ce3, 0x00112cf0, + 0x00112cfd, 0x00112d0a, 0x00112d17, 0x00112d24, + 0x00112d31, 0x00112d3e, 0x00112d4b, 0x00112d58, + 0x00112d65, 0x00112d72, 0x00112d7f, 0x00112d8c, + 0x00112d99, 0x00112da6, 0x00112db3, 0x00112dc0, + 0x00112dcd, 0x00112dda, 0x00112de7, 0x00112df4, + 0x00112e01, 0x00112e0e, 0x00112e1b, 0x00112e28, + 0x00112e35, 0x00112e42, 0x00112e4f, 0x00112e5c, + 0x00112e69, 0x00112e76, 0x00112e83, 0x00112e90, + 0x00112e9d, 0x00112eaa, 0x00112eb7, 0x00112ec4, + 0x00112ed1, 0x00112ede, 0x00112eeb, 0x00112ef8, + 0x00112f05, 0x00112f12, 0x00112f1f, 0x00112f2c, + 0x00112f39, 0x00112f46, 0x00112f53, 0x00112f60, + 0x00112f6d, 0x00112f7a, 0x00112f87, 0x00112f94, + 0x00112fa1, 0x00112fae, 0x00112fbb, 0x00112fc8, + 0x00112fd5, 0x00112fe2, 0x00112fef, 0x00112ffc, + 0x00113009, 0x00113016, 0x00113023, 0x00113030, + 0x0011303d, 0x0011304a, 0x00113057, 0x00113064, + 0x00113071, 0x0011307e, 0x0011308b, 0x00113098, + 0x001130a5, 0x001130b2, 0x001130bf, 0x001130cc, + 0x001130d9, 0x001130e6, 0x001130f3, 0x00113100, + 0x0011310d, 0x0011311a, 0x00113127, 0x00113134, + 0x00113141, 0x0011314e, 0x0011315b, 0x00113168, + 0x00113175, 0x00113182, 0x0011318f, 0x0011319c, + 0x001131a9, 0x40000000, 0x600070e0, 0x60007820, + 0x4a007016, 0x00010001, 0x58380016, 0x8c000500, + 0x05fc07fc, 0x600c4000, 0x60003002, 0x64807808, + 0x583c2808, 0x8c14053e, 0x05000004, 0x80183040, + 0x05fe07fc, 0x0501f00d, 0x583c2808, 0x82140500, + 0x20000400, 0x82000580, 0x00000400, 0x05020005, + 0x82140500, 0x00000300, 0x90000580, 0x05000007, + 0x80204040, 0x05fe07ee, 0x4a007016, 0x00010000, + 0x90000541, 0x0501f040, 0x650c7808, 0x583c0009, + 0x8c000500, 0x05000005, 0x60002000, 0x4a007016, + 0x00010000, 0x0501f037, 0x65007808, 0x583c5809, + 0x65047808, 0x583c6009, 0x65087808, 0x583c6809, + 0x4a007016, 0x00010000, 0x82102d00, 0xf0000000, + 0x90140580, 0x05000002, 0x0501f020, 0x60202800, + 0x60003000, 0x803000c8, 0x40003800, 0x8030010a, + 0x801c3d80, 0x40300000, 0x80180580, 0x80100400, + 0x801c0400, 0x802c5c00, 0x803400c8, 0x40003800, + 0x8034010a, 0x801c3d80, 0x40340000, 0x80180580, + 0x801c0400, 0x80306400, 0x802c00c8, 0x40003800, + 0x802c010a, 0x801c3d80, 0x402c0000, 0x80180580, + 0x801c0400, 0x80346c00, 0x82183400, 0x9e3779b9, + 0x80142840, 0x05fe07e4, 0x0502000b, 0x402c0000, + 0x80040580, 0x05fe07c7, 0x40300000, 0x80080580, + 0x05fe07c4, 0x40340000, 0x800c0580, 0x05fe07c1, + 0x80000580, 0x1c01f000, 0x1c01f000, 0x42005000, + 0x7ff4c000, 0x58280800, 0x58281001, 0x58281802, + 0x58282003, 0x481350ec, 0x05fdff97, 0x05020807, + 0x82101d00, 0x0fffffff, 0x480fc021, 0x900c01c0, + 0x4803c022, 0x1c01f000, 0x497bc021, 0x497bc022, + 0x4a03c020, 0x00004020, 0x4a03c011, 0x40200011, + 0x6016d800, 0x05027011, 0x59e00020, 0x90000582, + 0x0502000e, 0x05006000, 0x4203e000, 0x40000000, + 0x59e00017, 0x60000800, 0x8c00050a, 0x059e0cc6, + 0x8d0c0530, 0x059e0cb9, 0x059e0cbb, 0x6403c017, + 0x4203e000, 0x30000001, 0x0595fd65, 0x05fdf7ff, + 0x59a808d6, 0x8c100502, 0x05000003, 0x84040d42, + 0x0501f007, 0x8c100504, 0x05000003, 0x84040d44, + 0x0501f003, 0x8c100500, 0x84040d40, 0x480750d6, + 0x1c01f000, 0x59a800d6, 0x8c000502, 0x05000009, + 0x4a0350d7, 0x0000008b, 0x4a0350d8, 0x0000008b, + 0x4a0350d9, 0x0000008b, 0x641350da, 0x0501f00c, + 0x8c000504, 0x05000006, 0x65bf50d7, 0x65bf50d8, + 0x65df50d9, 0x640350da, 0x0501f005, 0x64cf50d7, + 0x64cf50d8, 0x649750d9, 0x640350da, 0x1c01f000, + 0x909963d2, 0x00000000, 0x00000000, 0x00116000, + 0x0000320d, 0x00000000, 0x00000000, 0x00020000, + 0x000011e7, 0x916c0583, 0x010201aa, 0x42000000, + 0x00111c89, 0x50000000, 0x800001c0, 0x05020a46, + 0x0501fa03, 0x0501fffc, 0x0501fbb9, 0x8d0c0516, + 0x05000f77, 0x8d0c0516, 0x05000e2c, 0x59a800a5, + 0x80000540, 0x01060b27, 0x0505fcb9, 0x80ddb9c0, + 0x05000007, 0x4df00000, 0x4203e000, 0x50000000, + 0x58de5801, 0x0135fba1, 0x5c03e000, 0x05fdf7e6, + 0x835c0480, 0x00000104, 0x010411dc, 0x416a5800, + 0x592ed000, 0x497a5800, 0x497a5801, 0x815eb840, + 0x812e59c0, 0x1c01f000, 0x42007000, 0x000211e8, + 0x58380004, 0x49781000, 0x64001002, 0x48087004, + 0x80000d40, 0x05020006, 0x48087005, 0x58380000, + 0x80000540, 0x0500000a, 0x1c01f000, 0x48080800, + 0x05fdf7fb, 0x42007000, 0x000211e8, 0x58380000, + 0x80000540, 0x05000002, 0x1c01f000, 0x58380807, + 0x800409c0, 0x01060291, 0x58380005, 0x80006d40, + 0x05020002, 0x1c01f000, 0x58340000, 0x48347001, + 0x80000540, 0x05020002, 0x48007004, 0x48007005, + 0x4a03b805, 0x30000002, 0x58340007, 0x59dc0806, + 0x4803b800, 0x58340008, 0x4803b801, 0x58340806, + 0x4807b81f, 0x58340805, 0x58341003, 0x58340001, + 0x48047002, 0x48087003, 0x480bb803, 0x8c000500, + 0x05020004, 0x64087000, 0x6407c824, 0x0501f004, + 0x64047000, 0x6503c824, 0x0105f2bd, 0x58380802, + 0x600011fe, 0x82040480, 0x0000ff00, 0x05021003, + 0x40041000, 0x80000580, 0x48007002, 0x480bb802, + 0x4a03b805, 0x10000002, 0x1c01f000, 0x59dc0806, + 0x4a03b805, 0x20000000, 0x8c04053e, 0x05000009, + 0x8c040508, 0x01020e15, 0x42007000, 0x000211e8, + 0x58380000, 0x90001484, 0x0c001003, 0x0101fe15, + 0x1c01f000, 0x0002003e, 0x00020080, 0x00020087, + 0x00101557, 0x82040d00, 0x43200f80, 0x010602ca, + 0x58380002, 0x80000540, 0x05000008, 0x0105f2bd, + 0x82040d00, 0x43200f80, 0x010602ca, 0x58380002, + 0x80000540, 0x05fe07d6, 0x58386001, 0x58300009, + 0x4a006002, 0x00000100, 0x64007000, 0x80001540, + 0x05fc07ab, 0x59dc0000, 0x48006007, 0x59dc0001, + 0x48006008, 0x0809f800, 0x05fdf79f, 0x84040d1e, + 0x59e00017, 0x8c00050c, 0x05020007, 0x59a818a3, + 0x800400c4, 0x800c1c00, 0x580c0003, 0x8c000500, + 0x05000008, 0x59a800a5, 0x4c000000, 0x0105fb18, + 0x5c000000, 0x80000540, 0x010602e2, 0x1c01f000, + 0x4d2c0000, 0x4c040000, 0x4c0c0000, 0x05fdff71, + 0x5c001800, 0x5c000800, 0x05000014, 0x82040400, + 0x00111efa, 0x50000000, 0x48025806, 0x64025801, + 0x64125805, 0x64065804, 0x900c0402, 0x48025803, + 0x580c0000, 0x48025807, 0x580c0001, 0x48025808, + 0x4a025809, 0x000200c7, 0x4806580a, 0x412c1000, + 0x5c025800, 0x05fdf765, 0x5c025800, 0x0105f318, + 0x58300802, 0x82040580, 0x00000100, 0x010602d7, + 0x4d2c0000, 0x40325800, 0x0105f9ca, 0x5c025800, + 0x0105f2e2, 0x59b800ea, 0x82000d00, 0xf2000038, + 0x0106048a, 0x8c000510, 0x01040489, 0x59ba60e0, + 0x81300182, 0x0502104c, 0x05002030, 0x8532653e, + 0x59300407, 0x90000583, 0x0502002a, 0x59300203, + 0x90000584, 0x05020027, 0x59325809, 0x59300004, + 0x4a025a08, 0x00000103, 0x497a580d, 0x8c00053e, + 0x0502001a, 0x59300008, 0x82000500, 0x04000800, + 0x82000580, 0x04000800, 0x05000017, 0x0501faba, + 0x59325827, 0x812e59c0, 0x010609ca, 0x5932680a, + 0x0505ff1d, 0x5934000f, 0x8d0c0512, 0x05020005, + 0x5934140b, 0x80081040, 0x05001002, 0x480a6c0b, + 0x80000540, 0x05020a37, 0x59b800ea, 0x8c000510, + 0x05fe07d7, 0x1c01f000, 0x0145fd77, 0x05fc07e6, + 0x0105f482, 0x59300221, 0x48025c13, 0x05fdf7e8, + 0x61567000, 0x0501f024, 0x83326500, 0x3fffffff, + 0x59300407, 0x90000583, 0x05020015, 0x59325809, + 0x5932680a, 0x4a025a08, 0x00000103, 0x497a580d, + 0x0501fa95, 0x59325827, 0x812e59c0, 0x010609c9, + 0x0505fef9, 0x5934000f, 0x8d0c0512, 0x05020005, + 0x5934140b, 0x80081040, 0x05001002, 0x480a6c0b, + 0x80000540, 0x05020a13, 0x05fdf7dc, 0x61527000, + 0x0501f009, 0x83300500, 0x60000000, 0x05000013, + 0x81326580, 0x8000013a, 0x82000400, 0x00100c8e, + 0x50027000, 0x59300c07, 0x90040580, 0x01040482, + 0x90040582, 0x01040482, 0x59300004, 0x8c00053e, + 0x05020003, 0x0505ff05, 0x05fdf7c8, 0x0145fd77, + 0x05fc07fd, 0x0105f482, 0x83300500, 0x1f000000, + 0x01040484, 0x81326580, 0x80000130, 0x90000c9b, + 0x01021e15, 0x1201f000, 0x00100c92, 0x82000500, + 0xf0000000, 0x82040d00, 0x0fffffff, 0x80040d40, + 0x4807c857, 0x59b800ea, 0x8c000516, 0x010605b6, + 0x480770e1, 0x1c01f000, 0x59325809, 0x412c7000, + 0x58380a08, 0x82040d00, 0x000000ff, 0xb00405a8, + 0x01080024, 0xb00405aa, 0x01080024, 0xb00405ba, + 0x0108003d, 0xb00405b2, 0x0108003d, 0x58380a08, + 0x9004050f, 0x82000c00, 0x0010004b, 0x50044000, + 0x0c01f001, 0x00101023, 0x00101023, 0x00020170, + 0x00101023, 0x00101023, 0x00101023, 0x00101023, + 0x00101023, 0x0002017e, 0x00101043, 0x00101023, + 0x00101023, 0x00101023, 0x00101023, 0x00101023, + 0x00101023, 0x5838040e, 0x8c000500, 0x01000e15, + 0x50200000, 0x80387c00, 0x583c1002, 0x583c2800, + 0x583c2001, 0x58380a0b, 0x58383013, 0x59303808, + 0x58380011, 0x48026014, 0x0501f00e, 0x5838020e, + 0x8c000502, 0x01080023, 0x50200000, 0x80387c00, + 0x583c2800, 0x583c2001, 0x583c1002, 0x592c0a0b, + 0x592c3013, 0x59303808, 0x497a6014, 0x497a6015, + 0x48166010, 0x48126011, 0x480a6012, 0x481a6013, + 0x80040840, 0x4806600f, 0x010a006a, 0x841c3d40, + 0x481e6008, 0x1c01f000, 0x4d2c0000, 0x59325809, + 0x592c0a08, 0x4807c857, 0x82040d00, 0x000000ff, + 0x9004050f, 0x1201f000, 0x0010118f, 0x41787800, + 0x59325809, 0x592c0c0e, 0x8c040502, 0x010801bf, + 0x592c0011, 0x592c1013, 0x592c0a08, 0x480a6013, + 0x48026014, 0x48026015, 0x82040d00, 0x000000ff, + 0xb00405b2, 0x010801c5, 0xb00405ba, 0x010801c5, + 0x412c3000, 0x9004050f, 0x82000400, 0x0010004b, + 0x50003800, 0x8c3c050e, 0x05000002, 0x801c3800, + 0x501c0000, 0x592c1a0b, 0x4802600c, 0x481a600d, + 0x481e600e, 0x480e600f, 0x843c7d4a, 0x403c1000, + 0x1c01f000, 0x59e00004, 0x8c00050e, 0x05fe06ac, + 0x1c01f000, 0x42001000, 0x0011458b, 0x5808000a, + 0x80000540, 0x010a071d, 0x4a001003, 0x00114595, + 0x4c080000, 0x0501f812, 0x5c001000, 0x4814100a, + 0x480c1007, 0x48101008, 0x64001001, 0x64101005, + 0x64041004, 0x05fdf655, 0x58300802, 0x82040580, + 0x00000100, 0x010a072c, 0x82300580, 0x0011458b, + 0x010a0727, 0x4978600a, 0x1c01f000, 0x61901800, + 0x800c1840, 0x05000006, 0x64070000, 0x40000000, + 0x59800000, 0x8c000500, 0x05fc07fa, 0x01080777, + 0x600028f4, 0x58142024, 0x58141823, 0x58142825, + 0x64030000, 0x1c01f000, 0x4c000000, 0x4df00000, + 0x4203e000, 0xb0100000, 0x41f00000, 0x81fe1500, + 0x8d080512, 0x010e09a4, 0x8d08051c, 0x05060cfc, + 0x8d080518, 0x05060d2f, 0x8d08051a, 0x05fe0ed6, + 0x83080500, 0x00000d00, 0x05020804, 0x5c03e000, + 0x5c000000, 0x1801f000, 0x8d080516, 0x010a0fde, + 0x8d080514, 0x05fe0fbc, 0x8d080508, 0x010a0bdb, + 0x8d080500, 0x05060c55, 0x8d08050c, 0x010e08a1, + 0x8d08050a, 0x010a050e, 0x1c01f000, 0x42000000, + 0x00111c8f, 0x50000000, 0x8c000504, 0x05000013, + 0x8c000508, 0x05020004, 0x8c000502, 0x05020002, 0x1c01f000, 0x4df00000, 0x4203e000, 0x50000000, - 0x59d8110a, 0x59d8010a, 0x80080580, 0x05fe07fd, - 0x59742c08, 0x59740003, 0x480aec09, 0x48082800, - 0x80000540, 0x05002011, 0x05000007, 0x59980004, - 0x90000585, 0x0500000d, 0x59a8009b, 0x81640580, - 0x0502000a, 0x58140100, 0x80080d80, 0x0500001f, - 0x59740c02, 0x80040d80, 0x0500000e, 0x59980805, - 0x4802ec02, 0x4806e803, 0x0500ead1, 0x8d0c0524, - 0x05020003, 0x5c03e000, 0x1c01f000, 0x59d8010b, - 0x59d8110a, 0x80080580, 0x05000010, 0x05fc67fa, - 0x05006013, 0x59740a09, 0x59e00017, 0x8c00050a, - 0x05020012, 0x8c04051e, 0x05020005, 0x59741202, - 0x800810e0, 0x90081554, 0x480bc011, 0x4807c017, - 0x4203e000, 0x30000001, 0x4a02e803, 0xffff0000, - 0x850e1d24, 0x0500eab6, 0x05fdf7e7, 0x850e1d64, - 0x0500eab3, 0x05fdf7e4, 0x4c040000, 0x05fdfc9d, - 0x5c000800, 0x8c04051e, 0x05fc07ed, 0x5c03e000, - 0x1c01f000, 0x592c0c08, 0x58040000, 0x58040900, - 0x80040580, 0x05000019, 0x592c0402, 0x80040580, - 0x05000005, 0x59980005, 0x48025803, 0x48065c02, - 0x1c01f000, 0x05006013, 0x592c0a09, 0x4a025803, - 0xffff0000, 0x59e00017, 0x8c00050a, 0x0502000e, - 0x8c04051e, 0x05020005, 0x592c0202, 0x800000e0, - 0x90000554, 0x4803c011, 0x4807c017, 0x4203e000, - 0x30000001, 0x1c01f000, 0x4a025803, 0xffff0000, - 0x1c01f000, 0x4c040000, 0x05fdfc76, 0x5c000800, - 0x8c04051e, 0x05fc07f1, 0x1c01f000, 0x4df00000, - 0x4203e000, 0x50000000, 0x59940023, 0x80000540, - 0x05002012, 0x05000007, 0x59980004, 0x90000585, - 0x0500000e, 0x59a8009b, 0x81640580, 0x0502000b, - 0x59d8010b, 0x59d8110a, 0x80080d80, 0x05000023, - 0x59980806, 0x80040d80, 0x05000013, 0x59980805, - 0x48072823, 0x48033006, 0x0500ea55, 0x8d0c0524, - 0x05020005, 0x8d0c0526, 0x050209a6, 0x5c03e000, - 0x1c01f000, 0x59d8110a, 0x59d8010a, 0x80080580, - 0x05fe07fd, 0x59d8010b, 0x80080580, 0x0500000f, - 0x05fc67f5, 0x05006012, 0x800810e0, 0x90081553, - 0x480bc011, 0x60040800, 0x59e00017, 0x8c00050a, - 0x0502000e, 0x8d0c0530, 0x0502000e, 0x6407c017, - 0x4203e000, 0x30000001, 0x4a032823, 0xffff0000, - 0x850e1d24, 0x0500ea36, 0x05fdf7e3, 0x850e1d64, - 0x0500ea33, 0x05fdf7e0, 0x05fdfc36, 0x05fdf7f4, - 0x8c000500, 0x05fe0d5d, 0x05fdf7f1, 0x4df00000, - 0x4203e000, 0x50000000, 0x59b800e4, 0x8c000518, - 0x0502001b, 0x830c0500, 0x00140000, 0x0502001b, - 0x59940023, 0x80000540, 0x0500200c, 0x05000017, - 0x59980004, 0x90000585, 0x05000008, 0x59a8009b, - 0x81640580, 0x05020005, 0x59a80099, 0x59a80898, - 0x80040580, 0x0500000c, 0x0500ea15, 0x05006004, - 0x8d0c0524, 0x0502000a, 0x0501fa4a, 0x8d0c0526, - 0x05020964, 0x5c03e000, 0x1c01f000, 0x4a0370e4, - 0x00002000, 0x850e1d68, 0x0500604c, 0x59d8090a, - 0x59d8010a, 0x80041580, 0x05fe07fd, 0x59d8190b, - 0x800c1580, 0x59981006, 0x480f3006, 0x05000037, - 0x0501f844, 0x59980007, 0x483b3007, 0x0500000d, - 0x8d0c0528, 0x05020021, 0x80380580, 0x05020004, - 0x40080000, 0x800c0580, 0x0500001c, 0x59980005, - 0x48032823, 0x830e1d00, 0xffebffff, 0x05fdf7e0, - 0x8d0c0528, 0x05020004, 0x40080000, 0x800c0580, - 0x05fe07f7, 0x800408e0, 0x90040d53, 0x60041000, - 0x4807c011, 0x59e00017, 0x8c00050a, 0x0502000f, - 0x8d0c0530, 0x05020012, 0x480bc017, 0x4203e000, - 0x30000001, 0x4a032823, 0xffff0000, 0x830e1d00, - 0xffebffff, 0x05fdf7ca, 0x800408e0, 0x90040d5d, - 0x60001000, 0x05fdf7ef, 0x4c080000, 0x40080800, - 0x05fdfbd8, 0x5c001000, 0x05fdf7f0, 0x8c000500, - 0x05fc07ee, 0x4c080000, 0x40080800, 0x05fdfcfb, - 0x5c001000, 0x05fdf7e9, 0x0501f80e, 0x59980007, - 0x483b3007, 0x05fc07e8, 0x80380580, 0x05000003, - 0x8d0c0528, 0x05fc07ce, 0x912801c0, 0x90000d5c, - 0x60001000, 0x05fdf7d7, 0x850e1d64, 0x05fdf7a7, - 0x59e0000f, 0x59e0680f, 0x80346d80, 0x05fe07fd, - 0x40025000, 0x59e00010, 0x59e07010, 0x80387580, - 0x05fe07fd, 0x40007000, 0x81280580, 0x1c01f000, + 0x42034000, 0x00111c71, 0x59a0001e, 0x59a1d806, + 0x84000502, 0x4803401e, 0x58ec0009, 0x0801f800, + 0x5c03e000, 0x1c01f000, 0x05027002, 0x05026002, + 0x1c01f000, 0x4df00000, 0x4203e000, 0x50000000, + 0x59e00020, 0xb0000d85, 0x05000003, 0xb0000d84, + 0x05020007, 0x4803c857, 0x42000800, 0x000211e8, + 0x58040800, 0x90040d80, 0x05020019, 0x0105f9b9, + 0x05000017, 0x412dd800, 0x48efc857, 0x0125fa58, + 0x42034000, 0x00111c71, 0x49a1d80b, 0x48ef4006, + 0x59a0001e, 0x84000544, 0x4803401e, 0x59e00020, + 0x4803c857, 0x59e00021, 0x4803c857, 0x59e00022, + 0x4803c857, 0x59e00023, 0x4803c857, 0x59e00024, + 0x4803c857, 0x0115f9ff, 0x0115fa17, 0x5c03e000, + 0x1c01f000, 0x4c5c0000, 0x4da00000, 0x4df00000, + 0x4203e000, 0x50000000, 0x05006062, 0x42034000, + 0x00111c71, 0x59a01018, 0x59a01819, 0x800c19c0, + 0x05020009, 0x59a0381c, 0x801c39c0, 0x01000e15, + 0x49a3c857, 0x481fc857, 0x59a0041d, 0x801c3c00, + 0x0501f00a, 0x59a0041a, 0x90000402, 0x4803441a, + 0x90000c97, 0x05001003, 0x497b441a, 0x41780000, + 0x59a03817, 0x801c3c00, 0x401cb800, 0x80081040, + 0x480b4018, 0x581c0200, 0x4803c021, 0x581c0401, + 0x4803c022, 0x581c0201, 0x4803c023, 0x581c0400, + 0x4803c020, 0x900001c0, 0x90000552, 0x4803c011, + 0x8d0c0530, 0x0500000f, 0x4c080000, 0x4c0c0000, + 0x4c1c0000, 0x59e00017, 0x8c00050a, 0x05000004, + 0x60000800, 0x05fdfe16, 0x0501f003, 0x8c000500, + 0x05fe0f3d, 0x5c003800, 0x5c001800, 0x5c001000, + 0x6403c017, 0x4203e000, 0x30000001, 0x800c19c0, + 0x05000007, 0x800c1840, 0x480f4019, 0x0502001b, + 0x497b441a, 0x497b421a, 0x0501f018, 0x800811c0, + 0x0502000a, 0x4d2c0000, 0x59a2581c, 0x0105f9c9, + 0x5c025800, 0x497b401c, 0x497b401b, 0x497b441d, + 0x497b421d, 0x0501f00d, 0x59a0041d, 0x90000402, + 0x90000c96, 0x4803441d, 0x05001008, 0x4d2c0000, + 0x59a2581c, 0x592c3817, 0x481f401c, 0x497b441d, + 0x0105f9c9, 0x5c025800, 0x8d0c052a, 0x05000009, + 0x60083800, 0x42000800, 0x25000000, 0x585c1800, + 0x585c3001, 0x900c19c0, 0x901831c0, 0x0101fed5, + 0x5c03e000, 0x5c034000, 0x5c00b800, 0x1c01f000, + 0x8d0c0520, 0x05000003, 0x59a80005, 0x8c000516, + 0x1c01f000, 0x910c0503, 0x012a04d4, 0x59340400, + 0x82000580, 0x00000606, 0x012a04ae, 0x5934000d, + 0x80027d40, 0x012a04dd, 0x592c1003, 0x5808720a, + 0x8c380500, 0x05000005, 0x592c1813, 0x5808000d, + 0x800c0400, 0x4800100d, 0x5934000f, 0x59341203, + 0x80080540, 0x05020021, 0x8d0c0512, 0x05000010, + 0x0505fd1f, 0x05000017, 0x59a800d7, 0x80000040, + 0x05fe07ff, 0x492e6009, 0x4936600a, 0x58d400ea, + 0x8c000516, 0x05fe07fe, 0x83300400, 0x20000000, + 0x4801a8e1, 0x80000580, 0x1c01f000, 0x5934000b, + 0x80001920, 0x82000500, 0x0000ffff, 0x800c0480, + 0x0502100a, 0x800c1800, 0x480e6c0b, 0x05fdf7e9, + 0x8d0c0512, 0x05020005, 0x59341c0b, 0x800c1840, + 0x480e6c0b, 0x59341203, 0x0501f803, 0x80000580, + 0x1c01f000, 0x800811c0, 0x05020002, 0x64066a03, + 0x59340010, 0x492e6810, 0x80000d40, 0x05020008, + 0x492e680f, 0x592c040a, 0x800000c2, 0x800018c4, + 0x800c0400, 0x48025807, 0x1c01f000, 0x492c0800, + 0x05fdf7f9, 0x59a800ad, 0x81440480, 0x05021024, + 0x83442400, 0x0010db80, 0x50100000, 0x80000d40, + 0x0500001f, 0x82000d00, 0xe0000000, 0x0500001e, + 0x8d0c0538, 0x0500001a, 0x82000500, 0x00ffffff, + 0x82041d80, 0x20000000, 0x05000017, 0x82041d80, + 0x80000000, 0x05020007, 0x84040d7a, 0x4c000000, + 0x80040540, 0x44002000, 0x5c000000, 0x0501f00e, + 0x82041d80, 0xa0000000, 0x0500000b, 0x82041d80, + 0x40000000, 0x05020006, 0x4c040000, 0x012df81b, + 0x5c000800, 0x40340000, 0x05000003, 0x90000541, + 0x1c01f000, 0x40026800, 0x80000580, 0x05fdf7fd, + 0x59340203, 0x80000540, 0x05020036, 0x4d300000, + 0x4d2c0000, 0x5934000f, 0x80025d40, 0x0500002f, + 0x0505fcbb, 0x05000021, 0x592c0000, 0x4802680f, + 0x80000540, 0x05020002, 0x48026810, 0x592c2a08, + 0x4936600a, 0x4c080000, 0x0131f8a2, 0x5c001000, + 0x05000025, 0x492e6009, 0x8d0c0512, 0x05000010, + 0x58d400ea, 0x8c000516, 0x05fe07fe, 0x83300400, + 0x20000000, 0x4801a8e1, 0x8d0c0512, 0x05fe07e6, + 0x5934000b, 0x80001120, 0x82000500, 0x0000ffff, + 0x80080480, 0x05fc17e0, 0x0501f010, 0x80081000, + 0x480a6c0b, 0x05fdf7ef, 0x4c080000, 0x0131f8a2, + 0x05020008, 0x42000000, 0x001123e6, 0x0169ff57, + 0x0161f906, 0x05000003, 0x5c001000, 0x05fdf7d7, + 0x5c001000, 0x64066a03, 0x5c025800, 0x5c026000, + 0x1c01f000, 0x497a5800, 0x4932580d, 0x4a026007, + 0x00068000, 0x641e6203, 0x0501f802, 0x05fdf7df, + 0x592e440b, 0x83224500, 0x000000ff, 0x83200400, + 0x0010d8f9, 0x50024800, 0x4926601d, 0x592c0210, + 0x48026202, 0x59240206, 0x8c000510, 0x012e0170, + 0x8d0c050e, 0x012e016e, 0x59240200, 0x8c000516, + 0x012e016c, 0x59340200, 0x8c000518, 0x012e016a, + 0x64025a0a, 0x8c000508, 0x012e0168, 0x492e6009, + 0x4d3c0000, 0x417a7800, 0x0505fad6, 0x5c027800, + 0x1c01f000, 0x58040001, 0x49680800, 0x49780801, + 0x815eb800, 0x4006d000, 0x80000d40, 0x05fe07fa, + 0x497a5801, 0x59c80000, 0x82000540, 0x00001200, + 0x48039000, 0x1c01f000, 0x59980005, 0x48032823, + 0x59d8010b, 0x48033006, 0x1c01f000, 0x59980005, + 0x59747408, 0x58387100, 0x483aec02, 0x4802e803, + 0x1c01f000, 0x592c0408, 0x8c00051e, 0x013200fc, + 0x497a5800, 0x8d0c0516, 0x05020003, 0x0501fa49, + 0x0501f011, 0x8d0c0526, 0x0502000d, 0x0502d007, + 0x592c0001, 0x492fb107, 0x80000d40, 0x05fe0fda, + 0x0500e1c4, 0x1c01f000, 0x0500e9c2, 0x05fcd7f9, + 0x42000000, 0x00112349, 0x0169ff5a, 0x0501fa39, + 0x0500da49, 0x0500e1bb, 0x59d80105, 0x82000d00, + 0x01238780, 0x05020257, 0x1c01f000, 0x59980003, + 0x0c01f001, 0x000203ce, 0x000203cf, 0x00020447, + 0x00020487, 0x000203dd, 0x00020504, 0x1c01f000, + 0x4df00000, 0x4203e000, 0x50000000, 0x05026a8e, + 0x05006003, 0x8d0c0520, 0x05020b35, 0x830c0580, + 0x00080800, 0x82000500, 0x00080800, 0x05000a2e, + 0x5c03e000, 0x1c01f000, 0x4df00000, 0x4203e000, + 0x50000000, 0x59d8110a, 0x59d8010a, 0x80080580, + 0x05fe07fd, 0x59742c08, 0x59740003, 0x480aec09, + 0x48082800, 0x80000540, 0x05002011, 0x05000007, + 0x59980004, 0x90000585, 0x0500000d, 0x59a8009e, + 0x81640580, 0x0502000a, 0x58140100, 0x80080d80, + 0x0500001f, 0x59740c02, 0x80040d80, 0x0500000e, + 0x59980805, 0x4802ec02, 0x4806e803, 0x0500ead1, + 0x8d0c0524, 0x05020003, 0x5c03e000, 0x1c01f000, + 0x59d8010b, 0x59d8110a, 0x80080580, 0x05000010, + 0x05fc67fa, 0x05006013, 0x59740a09, 0x59e00017, + 0x8c00050a, 0x05020012, 0x8c04051e, 0x05020005, + 0x59741202, 0x800810e0, 0x90081554, 0x480bc011, + 0x4807c017, 0x4203e000, 0x30000001, 0x4a02e803, + 0xffff0000, 0x850e1d24, 0x0500eab6, 0x05fdf7e7, + 0x850e1d64, 0x0500eab3, 0x05fdf7e4, 0x4c040000, + 0x05fdfc7f, 0x5c000800, 0x8c04051e, 0x05fc07ed, + 0x5c03e000, 0x1c01f000, 0x592c0c08, 0x592c0409, + 0x58040900, 0x80040580, 0x05000019, 0x592c0402, + 0x80040580, 0x05000005, 0x59980005, 0x48025803, + 0x48065c02, 0x1c01f000, 0x05006013, 0x592c0a09, + 0x4a025803, 0xffff0000, 0x59e00017, 0x8c00050a, + 0x0502000e, 0x8c04051e, 0x05020005, 0x592c0202, + 0x800000e0, 0x90000554, 0x4803c011, 0x4807c017, + 0x4203e000, 0x30000001, 0x1c01f000, 0x4a025803, + 0xffff0000, 0x1c01f000, 0x4c040000, 0x05fdfc58, + 0x5c000800, 0x8c04051e, 0x05fc07f1, 0x1c01f000, + 0x4df00000, 0x4203e000, 0x50000000, 0x59940023, + 0x80000540, 0x05002012, 0x05000007, 0x59980004, + 0x90000585, 0x0500000e, 0x59a8009e, 0x81640580, + 0x0502000b, 0x59d8010b, 0x59d8110a, 0x80080d80, + 0x05000023, 0x59980806, 0x80040d80, 0x05000013, + 0x59980805, 0x48072823, 0x48033006, 0x0500ea55, + 0x8d0c0524, 0x05020005, 0x8d0c0526, 0x050209a6, + 0x5c03e000, 0x1c01f000, 0x59d8110a, 0x59d8010a, + 0x80080580, 0x05fe07fd, 0x59d8010b, 0x80080580, + 0x0500000f, 0x05fc67f5, 0x05006012, 0x800810e0, + 0x90081553, 0x480bc011, 0x60040800, 0x59e00017, + 0x8c00050a, 0x0502000e, 0x8d0c0530, 0x0502000e, + 0x6407c017, 0x4203e000, 0x30000001, 0x4a032823, + 0xffff0000, 0x850e1d24, 0x0500ea36, 0x05fdf7e3, + 0x850e1d64, 0x0500ea33, 0x05fdf7e0, 0x05fdfc18, + 0x05fdf7f4, 0x8c000500, 0x05fe0d3f, 0x05fdf7f1, 0x4df00000, 0x4203e000, 0x50000000, 0x59b800e4, - 0x8c000518, 0x05020067, 0x59d8110a, 0x59d8010a, - 0x80080580, 0x05fe07fd, 0x59742c08, 0x59740003, - 0x480aec09, 0x48082800, 0x80000540, 0x05002015, - 0x0500000b, 0x59980004, 0x90000585, 0x05000011, - 0x59a8009b, 0x81640580, 0x0502000e, 0x59a80099, - 0x59a80898, 0x80040580, 0x0500002a, 0x58140100, - 0x80080d80, 0x05000013, 0x59740c02, 0x80040d80, - 0x05000024, 0x59980805, 0x4802ec02, 0x4806e803, - 0x0500e9a3, 0x8d0c0524, 0x05020019, 0x05006007, - 0x8d0c0528, 0x0502000b, 0x59940023, 0x80000540, - 0x05000008, 0x0501f9bb, 0x5c03e000, 0x1c01f000, - 0x4a02e803, 0xffff0000, 0x850e1d24, 0x0500e994, - 0x05fdffc0, 0x59980007, 0x483b3007, 0x05000031, - 0x80380580, 0x05000024, 0x8d0c0528, 0x05020022, - 0x59980005, 0x48032823, 0x05fdf7f0, 0x59d8010b, - 0x59d8110a, 0x80080580, 0x05fc07ee, 0x05fc67eb, - 0x05006016, 0x59740a09, 0x59e00017, 0x8c00050a, - 0x05020028, 0x8c04051e, 0x05020005, 0x59741202, - 0x800810e0, 0x90081554, 0x480bc011, 0x4807c017, - 0x4203e000, 0x30000001, 0x4a02e803, 0xffff0000, - 0x4a032823, 0xffff0000, 0x830e1d00, 0xffebffff, - 0x0500e96f, 0x05fdf7d5, 0x850e1d64, 0x0500e96c, - 0x05fdf7d2, 0x05fc67d1, 0x912801c0, 0x90000d5c, - 0x4807c011, 0x59e00017, 0x8c00050a, 0x60000800, - 0x05fe0b50, 0x6403c017, 0x4203e000, 0x30000001, - 0x4a032823, 0xffff0000, 0x850e1d28, 0x05fdf7c3, - 0x4a0370e4, 0x00002000, 0x850e1d68, 0x05fdf797, - 0x4c040000, 0x05fdfb43, 0x5c000800, 0x8c04051e, - 0x05fc07d7, 0x5c03e000, 0x1c01f000, 0x59d81108, - 0x835c0480, 0x00000104, 0x0500101c, 0x0502b01a, - 0x480bb007, 0x05fce7fa, 0x59d80105, 0x82000500, - 0x01238780, 0x05020096, 0x8d0c0522, 0x0500001f, - 0x8d0c0516, 0x0502000c, 0x59d8090a, 0x59d8010a, - 0x80040580, 0x05fe07fd, 0x59741003, 0x59740408, - 0x48040000, 0x4806ec09, 0x800811c0, 0x05fc260f, - 0x1c01f000, 0x59940023, 0x80000540, 0x05fc2606, - 0x1c01f000, 0x0500f00a, 0x49681000, 0x400ad000, - 0x815eb800, 0x59c80000, 0x82000540, 0x00001200, - 0x48039000, 0x05fee7e1, 0x05fdf7d9, 0x480ba807, - 0x05fee7de, 0x05fdf7d6, 0x05006024, 0x850e1d24, - 0x59d8010a, 0x59d8090a, 0x80040580, 0x05fe07fd, - 0x8d0c0516, 0x05000016, 0x59d8010b, 0x59d8110b, - 0x80081580, 0x05fe07fd, 0x80040580, 0x0500000f, - 0x800408e0, 0x8d0c0520, 0x05020016, 0x90040d53, - 0x4807c011, 0x59740a09, 0x59e00017, 0x8c00050a, - 0x05020031, 0x8d0c0530, 0x05020033, 0x4807c017, - 0x4203e000, 0x30000001, 0x1c01f000, 0x59740408, - 0x4806ec09, 0x48040000, 0x59740a02, 0x800408e0, - 0x90040d54, 0x05fdf7ef, 0x850e1d64, 0x1c01f000, - 0x59e0000f, 0x59b818e4, 0x59e0100f, 0x80081580, - 0x05fe07fc, 0x8c0c050c, 0x05fe07fa, 0x81281580, - 0x05000012, 0x40025000, 0x820c0500, 0x04000000, - 0x850e1d34, 0x810e1d40, 0x90040d5d, 0x4807c011, - 0x59e00017, 0x60000800, 0x8c00050a, 0x0502000e, - 0x8d0c0530, 0x05020010, 0x6403c017, 0x4203e000, - 0x30000001, 0x1c01f000, 0x40001000, 0x400c0000, - 0x810c0580, 0x8c000534, 0x40080000, 0x05fe07ea, - 0x05fdf7cb, 0x4c040000, 0x05fdfaca, 0x5c000800, - 0x05fdf7cf, 0x8c000500, 0x05fc07cd, 0x4c040000, - 0x05fdfbee, 0x5c000800, 0x05fdf7c9, 0x592c2802, - 0x801429c0, 0x0500000d, 0x58140804, 0x592c0001, - 0x492c2804, 0x800409c0, 0x05000005, 0x492c0800, - 0x80000d40, 0x05fe058f, 0x1c01f000, 0x492c2805, - 0x850e1d66, 0x05fdf7fb, 0x492fc857, 0x0105f19b, - 0x0502d00c, 0x59740805, 0x58040000, 0x4807b107, - 0x80000d40, 0x05020005, 0x4802e804, 0x850e1d26, - 0x4802e805, 0x1c01f000, 0x05fcd7f8, 0x05fdf7fd, - 0x59d80105, 0x82000500, 0x01238780, 0x05020004, - 0x42000000, 0x0010e3a8, 0x0165f7df, 0x4803c857, - 0x485fc857, 0x8c00050e, 0x01020dd3, 0x4203e000, - 0x50000000, 0x6010b900, 0x0101f5de, 0x4a03b104, - 0x10000000, 0x592c4408, 0x592c1409, 0x800800cc, - 0x592c2006, 0x80100400, 0x4803b100, 0x497bb102, - 0x59d80101, 0x4813b100, 0x592c0007, 0x4803b101, - 0x592c0208, 0x82000540, 0x00400000, 0x4803b103, - 0x58200900, 0x480bb10a, 0x4807b10b, 0x592c0001, - 0x4803b11f, 0x4a03b104, 0x10000001, 0x412ee800, + 0x8c000518, 0x0502001b, 0x830c0500, 0x00140000, + 0x0502001b, 0x59940023, 0x80000540, 0x0500200c, + 0x05000017, 0x59980004, 0x90000585, 0x05000008, + 0x59a8009e, 0x81640580, 0x05020005, 0x59a8009c, + 0x59a8089b, 0x80040580, 0x0500000c, 0x0500ea15, + 0x05006004, 0x8d0c0524, 0x0502000a, 0x0501fa4a, + 0x8d0c0526, 0x05020964, 0x5c03e000, 0x1c01f000, + 0x4a0370e4, 0x00002000, 0x850e1d68, 0x0500604c, + 0x59d8090a, 0x59d8010a, 0x80041580, 0x05fe07fd, + 0x59d8190b, 0x800c1580, 0x59981006, 0x480f3006, + 0x05000037, 0x0501f844, 0x59980007, 0x483b3007, + 0x0500000d, 0x8d0c0528, 0x05020021, 0x80380580, + 0x05020004, 0x40080000, 0x800c0580, 0x0500001c, + 0x59980005, 0x48032823, 0x830e1d00, 0xffebffff, + 0x05fdf7e0, 0x8d0c0528, 0x05020004, 0x40080000, + 0x800c0580, 0x05fe07f7, 0x800408e0, 0x90040d53, + 0x60041000, 0x4807c011, 0x59e00017, 0x8c00050a, + 0x0502000f, 0x8d0c0530, 0x05020012, 0x480bc017, + 0x4203e000, 0x30000001, 0x4a032823, 0xffff0000, + 0x830e1d00, 0xffebffff, 0x05fdf7ca, 0x800408e0, + 0x90040d5d, 0x60001000, 0x05fdf7ef, 0x4c080000, + 0x40080800, 0x05fdfbba, 0x5c001000, 0x05fdf7f0, + 0x8c000500, 0x05fc07ee, 0x4c080000, 0x40080800, + 0x05fdfcdd, 0x5c001000, 0x05fdf7e9, 0x0501f80e, + 0x59980007, 0x483b3007, 0x05fc07e8, 0x80380580, + 0x05000003, 0x8d0c0528, 0x05fc07ce, 0x912801c0, + 0x90000d5c, 0x60001000, 0x05fdf7d7, 0x850e1d64, + 0x05fdf7a7, 0x59e0000f, 0x59e0680f, 0x80346d80, + 0x05fe07fd, 0x40025000, 0x59e00010, 0x59e07010, + 0x80387580, 0x05fe07fd, 0x40007000, 0x81280580, 0x1c01f000, 0x4df00000, 0x4203e000, 0x50000000, - 0x59741408, 0x58080900, 0x4807b10b, 0x8d0c0524, - 0x0502001a, 0x59d80106, 0x80000540, 0x05020017, - 0x59d80105, 0x82000500, 0x00006000, 0x05020013, - 0x599af808, 0x817ef9c0, 0x05000010, 0x41765800, - 0x592e5800, 0x592c1005, 0x800811c0, 0x05000006, - 0x412c0000, 0x81740580, 0x05fe0fcd, 0x05fdffb1, - 0x0501f006, 0x592c0003, 0x80000540, 0x05fc0dc6, - 0x817ef840, 0x05fe07f3, 0x5c03e000, 0x1c01f000, - 0x05fce71b, 0x59d80105, 0x82000500, 0x01238780, - 0x05fe07b7, 0x8d0c0524, 0x05020002, 0x1c01f000, - 0x59d8010a, 0x59d8090a, 0x80040580, 0x05fe07fd, - 0x850e1d24, 0x8d0c0516, 0x05000013, 0x59d8010b, - 0x80040580, 0x0500000f, 0x800408e0, 0x8d0c0520, - 0x05020014, 0x90040d53, 0x4807c011, 0x59740a09, - 0x59e00017, 0x8c00050a, 0x05020028, 0x8d0c0530, - 0x0502002a, 0x4807c017, 0x4203e000, 0x30000001, - 0x1c01f000, 0x59740408, 0x4806ec09, 0x48040000, - 0x59740a02, 0x800408e0, 0x90040d54, 0x05fdf7ef, - 0x59e0000f, 0x59b818e4, 0x59e0100f, 0x80081580, - 0x05fe07fc, 0x8c0c050c, 0x05fe07fa, 0x81281580, - 0x0500001c, 0x40025000, 0x820c0500, 0x04000000, - 0x850e1d34, 0x810e1d40, 0x90040d5d, 0x4807c011, - 0x59e00017, 0x60000800, 0x8c00050a, 0x05020007, - 0x8d0c0530, 0x05020009, 0x6403c017, 0x4203e000, - 0x30000001, 0x1c01f000, 0x4c040000, 0x05fdfa15, - 0x5c000800, 0x05fdf7d8, 0x8c000500, 0x05fc07d6, - 0x4c040000, 0x05fdfb39, 0x5c000800, 0x05fdf7d2, - 0x40001000, 0x400c0000, 0x810c0580, 0x8c000534, - 0x40080000, 0x05fe07e0, 0x05fdf7c3, 0x59da5908, - 0x496a5800, 0x412ed000, 0x815eb800, 0x05fce7fc, - 0x59c80000, 0x82000540, 0x00001200, 0x48039000, - 0x59d8090b, 0x59980006, 0x48073006, 0x80040480, - 0x05020004, 0x59940023, 0x80000540, 0x05022003, - 0x59980805, 0x48072823, 0x59d80105, 0x82000500, - 0x01238780, 0x05fe0752, 0x1c01f000, 0x59da5908, - 0x496a5800, 0x412ed000, 0x815eb800, 0x05fce7fc, - 0x59c80000, 0x82000540, 0x00001200, 0x48039000, - 0x59740c08, 0x58040900, 0x4807b10b, 0x59740402, - 0x4806ec02, 0x80040480, 0x05020004, 0x59740003, - 0x80000540, 0x05022003, 0x59980805, 0x4806e803, - 0x59d8090a, 0x59d8010a, 0x80040580, 0x05fe07fd, - 0x59740408, 0x48040000, 0x4806ec09, 0x59d80105, - 0x82000500, 0x01238780, 0x05fe0731, 0x1c01f000, - 0x59981007, 0x59e00010, 0x59e00810, 0x80041d80, - 0x05fe07fd, 0x80080580, 0x0500000d, 0x48073007, + 0x59b800e4, 0x8c000518, 0x05020067, 0x59d8110a, + 0x59d8010a, 0x80080580, 0x05fe07fd, 0x59742c08, + 0x59740003, 0x480aec09, 0x48082800, 0x80000540, + 0x05002015, 0x0500000b, 0x59980004, 0x90000585, + 0x05000011, 0x59a8009e, 0x81640580, 0x0502000e, + 0x59a8009c, 0x59a8089b, 0x80040580, 0x0500002a, + 0x58140100, 0x80080d80, 0x05000013, 0x59740c02, + 0x80040d80, 0x05000024, 0x59980805, 0x4802ec02, + 0x4806e803, 0x0500e9a3, 0x8d0c0524, 0x05020019, + 0x05006007, 0x8d0c0528, 0x0502000b, 0x59940023, + 0x80000540, 0x05000008, 0x0501f9bb, 0x5c03e000, + 0x1c01f000, 0x4a02e803, 0xffff0000, 0x850e1d24, + 0x0500e994, 0x05fdffc0, 0x59980007, 0x483b3007, + 0x05000031, 0x80380580, 0x05000024, 0x8d0c0528, + 0x05020022, 0x59980005, 0x48032823, 0x05fdf7f0, + 0x59d8010b, 0x59d8110a, 0x80080580, 0x05fc07ee, + 0x05fc67eb, 0x05006016, 0x59740a09, 0x59e00017, + 0x8c00050a, 0x05020028, 0x8c04051e, 0x05020005, + 0x59741202, 0x800810e0, 0x90081554, 0x480bc011, + 0x4807c017, 0x4203e000, 0x30000001, 0x4a02e803, + 0xffff0000, 0x4a032823, 0xffff0000, 0x830e1d00, + 0xffebffff, 0x0500e96f, 0x05fdf7d5, 0x850e1d64, + 0x0500e96c, 0x05fdf7d2, 0x05fc67d1, 0x912801c0, + 0x90000d5c, 0x4807c011, 0x59e00017, 0x8c00050a, + 0x60000800, 0x05fe0b32, 0x6403c017, 0x4203e000, + 0x30000001, 0x4a032823, 0xffff0000, 0x850e1d28, + 0x05fdf7c3, 0x4a0370e4, 0x00002000, 0x850e1d68, + 0x05fdf797, 0x4c040000, 0x05fdfb25, 0x5c000800, + 0x8c04051e, 0x05fc07d7, 0x5c03e000, 0x1c01f000, + 0x59d81108, 0x835c0480, 0x00000104, 0x0500101c, + 0x0502b01a, 0x480bb007, 0x05fce7fa, 0x59d80105, + 0x82000500, 0x01238780, 0x05020096, 0x8d0c0522, + 0x0500001f, 0x8d0c0516, 0x0502000c, 0x59d8090a, + 0x59d8010a, 0x80040580, 0x05fe07fd, 0x59741003, + 0x59740408, 0x48040000, 0x4806ec09, 0x800811c0, + 0x05fc260f, 0x1c01f000, 0x59940023, 0x80000540, + 0x05fc2606, 0x1c01f000, 0x0500f00a, 0x49681000, + 0x400ad000, 0x815eb800, 0x59c80000, 0x82000540, + 0x00001200, 0x48039000, 0x05fee7e1, 0x05fdf7d9, + 0x480ba807, 0x05fee7de, 0x05fdf7d6, 0x05006024, + 0x850e1d24, 0x59d8010a, 0x59d8090a, 0x80040580, + 0x05fe07fd, 0x8d0c0516, 0x05000016, 0x59d8010b, + 0x59d8110b, 0x80081580, 0x05fe07fd, 0x80040580, + 0x0500000f, 0x800408e0, 0x8d0c0520, 0x05020016, + 0x90040d53, 0x4807c011, 0x59740a09, 0x59e00017, + 0x8c00050a, 0x05020031, 0x8d0c0530, 0x05020033, + 0x4807c017, 0x4203e000, 0x30000001, 0x1c01f000, + 0x59740408, 0x4806ec09, 0x48040000, 0x59740a02, + 0x800408e0, 0x90040d54, 0x05fdf7ef, 0x850e1d64, + 0x1c01f000, 0x59e0000f, 0x59b818e4, 0x59e0100f, + 0x80081580, 0x05fe07fc, 0x8c0c050c, 0x05fe07fa, + 0x81281580, 0x05000012, 0x40025000, 0x820c0500, + 0x04000000, 0x850e1d34, 0x810e1d40, 0x90040d5d, + 0x4807c011, 0x59e00017, 0x60000800, 0x8c00050a, + 0x0502000e, 0x8d0c0530, 0x05020010, 0x6403c017, + 0x4203e000, 0x30000001, 0x1c01f000, 0x40001000, + 0x400c0000, 0x810c0580, 0x8c000534, 0x40080000, + 0x05fe07ea, 0x05fdf7cb, 0x4c040000, 0x05fdfaac, + 0x5c000800, 0x05fdf7cf, 0x8c000500, 0x05fc07cd, + 0x4c040000, 0x05fdfbd0, 0x5c000800, 0x05fdf7c9, + 0x592c2802, 0x801429c0, 0x0500000d, 0x58140804, + 0x592c0001, 0x492c2804, 0x800409c0, 0x05000005, + 0x492c0800, 0x80000d40, 0x05fe058f, 0x1c01f000, + 0x492c2805, 0x850e1d66, 0x05fdf7fb, 0x492fc857, + 0x0105f1d2, 0x0502d00c, 0x59740805, 0x58040000, + 0x4807b107, 0x80000d40, 0x05020005, 0x4802e804, + 0x850e1d26, 0x4802e805, 0x1c01f000, 0x05fcd7f8, + 0x05fdf7fd, 0x59d80105, 0x82000500, 0x01238780, + 0x05020004, 0x42000000, 0x00112349, 0x0169f75a, + 0x4803c857, 0x485fc857, 0x8c00050e, 0x01020e0e, + 0x4203e000, 0x50000000, 0x6010b900, 0x0101f619, + 0x4a03b104, 0x10000000, 0x592c4408, 0x592c1409, + 0x800800cc, 0x592c2006, 0x80100400, 0x4803b100, + 0x497bb102, 0x59d80101, 0x4813b100, 0x592c0007, + 0x4803b101, 0x592c0208, 0x82000540, 0x00400000, + 0x4803b103, 0x58200900, 0x480bb10a, 0x4807b10b, + 0x592c0001, 0x4803b11f, 0x4a03b104, 0x10000001, + 0x412ee800, 0x1c01f000, 0x4df00000, 0x4203e000, + 0x50000000, 0x59741408, 0x58080900, 0x4807b10b, + 0x8d0c0524, 0x0502001a, 0x59d80106, 0x80000540, + 0x05020017, 0x59d80105, 0x82000500, 0x00006000, + 0x05020013, 0x599af808, 0x817ef9c0, 0x05000010, + 0x41765800, 0x592e5800, 0x592c1005, 0x800811c0, + 0x05000006, 0x412c0000, 0x81740580, 0x05fe0fcd, + 0x05fdffb1, 0x0501f006, 0x592c0003, 0x80000540, + 0x05fc0dc6, 0x817ef840, 0x05fe07f3, 0x5c03e000, + 0x1c01f000, 0x05fce71b, 0x59d80105, 0x82000500, + 0x01238780, 0x05fe07b7, 0x8d0c0524, 0x05020002, + 0x1c01f000, 0x59d8010a, 0x59d8090a, 0x80040580, + 0x05fe07fd, 0x850e1d24, 0x8d0c0516, 0x05000013, + 0x59d8010b, 0x80040580, 0x0500000f, 0x800408e0, + 0x8d0c0520, 0x05020014, 0x90040d53, 0x4807c011, + 0x59740a09, 0x59e00017, 0x8c00050a, 0x05020028, + 0x8d0c0530, 0x0502002a, 0x4807c017, 0x4203e000, + 0x30000001, 0x1c01f000, 0x59740408, 0x4806ec09, + 0x48040000, 0x59740a02, 0x800408e0, 0x90040d54, + 0x05fdf7ef, 0x59e0000f, 0x59b818e4, 0x59e0100f, + 0x80081580, 0x05fe07fc, 0x8c0c050c, 0x05fe07fa, + 0x81281580, 0x0500001c, 0x40025000, 0x820c0500, + 0x04000000, 0x850e1d34, 0x810e1d40, 0x90040d5d, + 0x4807c011, 0x59e00017, 0x60000800, 0x8c00050a, + 0x05020007, 0x8d0c0530, 0x05020009, 0x6403c017, + 0x4203e000, 0x30000001, 0x1c01f000, 0x4c040000, + 0x05fdf9f7, 0x5c000800, 0x05fdf7d8, 0x8c000500, + 0x05fc07d6, 0x4c040000, 0x05fdfb1b, 0x5c000800, + 0x05fdf7d2, 0x40001000, 0x400c0000, 0x810c0580, + 0x8c000534, 0x40080000, 0x05fe07e0, 0x05fdf7c3, + 0x59da5908, 0x496a5800, 0x412ed000, 0x815eb800, + 0x05fce7fc, 0x59c80000, 0x82000540, 0x00001200, + 0x48039000, 0x59d8090b, 0x59980006, 0x48073006, + 0x80040480, 0x05020004, 0x59940023, 0x80000540, + 0x05022003, 0x59980805, 0x48072823, 0x59d80105, + 0x82000500, 0x01238780, 0x05fe0752, 0x1c01f000, + 0x59da5908, 0x496a5800, 0x412ed000, 0x815eb800, + 0x05fce7fc, 0x59c80000, 0x82000540, 0x00001200, + 0x48039000, 0x59740c08, 0x58040900, 0x4807b10b, + 0x59740402, 0x4806ec02, 0x80040480, 0x05020004, + 0x59740003, 0x80000540, 0x05022003, 0x59980805, + 0x4806e803, 0x59d8090a, 0x59d8010a, 0x80040580, + 0x05fe07fd, 0x59740408, 0x48040000, 0x4806ec09, + 0x59d80105, 0x82000500, 0x01238780, 0x05fe0731, + 0x1c01f000, 0x59981007, 0x59e00010, 0x59e00810, + 0x80041d80, 0x05fe07fd, 0x80080580, 0x0500000d, + 0x48073007, 0x59e0000f, 0x59e0100f, 0x80081d80, + 0x05fe07fd, 0x81280580, 0x0500000d, 0x400a5000, + 0x40080000, 0x80040580, 0x05fe04a0, 0x1c01f000, 0x59e0000f, 0x59e0100f, 0x80081d80, 0x05fe07fd, - 0x81280580, 0x0500000d, 0x400a5000, 0x40080000, - 0x80040580, 0x05fe04a0, 0x1c01f000, 0x59e0000f, - 0x59e0100f, 0x80081d80, 0x05fe07fd, 0x81280580, - 0x05fc07fa, 0x400a5000, 0x59940023, 0x80000540, - 0x05fc27f3, 0x1c01f000, 0x59e0000f, 0x59b818e4, - 0x59e0100f, 0x80080d80, 0x05fe07fc, 0x8c0c050c, - 0x05fe07fa, 0x81280580, 0x05020006, 0x400c0000, - 0x810c0580, 0x8c000534, 0x05020002, 0x1c01f000, - 0x820c0500, 0x04000000, 0x850e1d34, 0x810e1d40, - 0x400a5000, 0x900811c0, 0x9008155c, 0x480bc011, - 0x59e00017, 0x60000800, 0x8c00050a, 0x05020007, - 0x8d0c0530, 0x05020007, 0x6403c017, 0x4203e000, - 0x30000001, 0x1c01f000, 0x05fdf98e, 0x05fdf7fb, - 0x8c000500, 0x05fe0ab5, 0x05fdf7f8, 0x4d2c0000, - 0x599af802, 0x817ef9c0, 0x05000008, 0x40f25800, - 0x592c020a, 0x8c000500, 0x05020806, 0x592e5801, - 0x817ef840, 0x05fe07fb, 0x5c025800, 0x1c01f000, - 0x59c40001, 0x82000500, 0x00018000, 0x82000d80, - 0x00018000, 0x05020004, 0x42000800, 0x64000000, - 0x0501f00f, 0x82000d80, 0x00010000, 0x05020004, - 0x42000800, 0x32000000, 0x0501f009, 0x82000d80, - 0x00008000, 0x05020004, 0x42000800, 0x19000000, - 0x0501f003, 0x42000800, 0x0c800000, 0x592c1411, - 0x013dff72, 0x40041000, 0x40000800, 0x61a00007, - 0x013dff8e, 0x480a580f, 0x1c01f000, 0x592c020a, - 0x84000502, 0x592c080d, 0x48025a0a, 0x4806580e, - 0x800409c0, 0x05000020, 0x592c000f, 0x80041480, - 0x0500100f, 0x0500001b, 0x82080480, 0x000003e8, - 0x05001018, 0x480a580d, 0x592c0210, 0x80000040, - 0x05000015, 0x80000040, 0x05000003, 0x48025a10, - 0x1c01f000, 0x64065a10, 0x1c01f000, 0x80081080, - 0x80081000, 0x82080480, 0x000003e8, 0x05001009, - 0x497a580d, 0x592c0210, 0x90000402, 0x82001500, - 0x00000f00, 0x05020005, 0x48025a10, 0x1c01f000, - 0x497a580d, 0x1c01f000, 0x4a025a10, 0x000000ff, - 0x1c01f000, 0x4df00000, 0x4203e000, 0x50000000, - 0x599af802, 0x817ef9c0, 0x0500003e, 0x4178c000, - 0x59d8080b, 0x59d8000b, 0x80040580, 0x05fe07fd, - 0x58f00200, 0x48040100, 0x4805e20c, 0x59d8000a, - 0x80040580, 0x05020033, 0x59d80005, 0x82000500, - 0x00006000, 0x0502002f, 0x0500c02e, 0x91700582, - 0x0500002c, 0x91700588, 0x0500002a, 0x40f25800, - 0x592e5801, 0x592cba0a, 0x592c000d, 0x80000540, - 0x05000005, 0x8c5c0502, 0x05020003, 0x4200c000, - 0xffffffff, 0x592c4200, 0x592c020c, 0x58201000, - 0x40002000, 0x80080580, 0x05000014, 0x412c0000, - 0x80f00580, 0x05020009, 0x8c5c0502, 0x05000003, - 0x80600000, 0x05000013, 0x0501f81d, 0x480bb00a, - 0x5c03e000, 0x1c01f000, 0x8c5c0502, 0x05020014, - 0x4a03b004, 0x10000000, 0x4971e410, 0x0501f831, - 0x5c03e000, 0x1c01f000, 0x817ef840, 0x05fe07dd, - 0x80600000, 0x05000003, 0x80625d58, 0x05020003, - 0x5c03e000, 0x1c01f000, 0x592c4200, 0x592c220c, - 0x58201000, 0x592cba0a, 0x05fdf7ee, 0x8060c1c0, - 0x05fe07f2, 0x412cc000, 0x05fdf7f0, 0x916c0583, - 0x05020017, 0x8c5c0500, 0x05000007, 0x8c5c0502, - 0x05020005, 0x592c000d, 0x592c080f, 0x80040480, - 0x05001010, 0x40100000, 0x80080c80, 0x05021003, - 0x592c040a, 0x80040c00, 0x592c0210, 0x80041c80, - 0x05021002, 0x1c01f000, 0x80101400, 0x592c040a, - 0x80080480, 0x05001002, 0x40001000, 0x1c01f000, - 0x845cbd42, 0x485e5a0a, 0x40101000, 0x1c01f000, - 0x801000cc, 0x592c2808, 0x80140400, 0x4803b000, - 0x497bb002, 0x59d80001, 0x4817b000, 0x592c0009, - 0x4803b001, 0x4813b00b, 0x592ee410, 0x592c040a, - 0x82000540, 0x00400000, 0x4803b003, 0x05fdffd4, - 0x480bb00a, 0x592c000b, 0x4803b01f, 0x4a03b004, - 0x10000001, 0x412de000, 0x1c01f000, 0x41700000, - 0x0c01f001, 0x001064bd, 0x000207ec, 0x001064bd, - 0x000208b8, 0x001064bc, 0x001064bc, 0x001064bc, - 0x001064bc, 0x00106bd4, 0x05010035, 0x59980000, - 0x80000540, 0x013604e2, 0x0502c01f, 0x6062f800, - 0x4df00000, 0x4203e000, 0x50000000, 0x49db3001, - 0x59da5808, 0x592c2a08, 0x58f00812, 0x800409c0, - 0x05000031, 0x58f0000b, 0x48025804, 0x48065802, - 0x48f25803, 0x497a5800, 0x497a5801, 0x82140500, - 0x000000ff, 0xb0000cbb, 0x05021024, 0x0c01f838, - 0x5c03e000, 0x817ef840, 0x05000007, 0x916c0583, - 0x05020005, 0x91700581, 0x0502000e, 0x05010015, - 0x05fcc7e4, 0x0500fb2c, 0x0500b317, 0x59d40005, - 0x82000500, 0x43238780, 0x01360079, 0x59d80005, - 0x82000500, 0x43238780, 0x0136007f, 0x1c01f000, - 0x91700583, 0x0500089d, 0x91700581, 0x05fe07f2, - 0x05010004, 0x05fcc7d3, 0x05fdf7ef, 0x6062f800, - 0x4df00000, 0x4203e000, 0x50000000, 0x49d73001, - 0x59d65808, 0x05fdf7d0, 0x0131fd24, 0x5c03e000, - 0x05fdf7e5, 0x592c0408, 0x82001500, 0x000000ff, - 0x80000110, 0x82000c00, 0x0010de60, 0x50040800, - 0x480a5c08, 0x800409c0, 0x05fe07c7, 0x80000540, - 0x01000dda, 0x42000800, 0x0010de60, 0x50040800, - 0x48065802, 0x0131fd39, 0x05fdf7ca, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x001065b0, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106532, 0x00106524, 0x00106524, - 0x00106524, 0x001065cd, 0x00106524, 0x00106524, - 0x00106524, 0x00020a44, 0x00106524, 0x0010677c, - 0x00106524, 0x00106524, 0x00106524, 0x000208d9, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106576, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x0010688b, - 0x00106a51, 0x00106524, 0x0010680e, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106858, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106ba1, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x001067db, 0x00106b6a, 0x00106524, - 0x00106b97, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x000208e4, - 0x00106524, 0x000208ec, 0x00106524, 0x00106524, - 0x00106524, 0x00106524, 0x00106524, 0x00106524, - 0x00106524, 0x00020ad5, 0x00106524, 0x00106524, - 0x00020c45, 0x00106524, 0x00106524, 0x00106524, - 0x00106c2c, 0x000208ec, 0x835c0480, 0x00000104, - 0x013014d5, 0x4df00000, 0x4203e000, 0x50000000, - 0x59981001, 0x58080005, 0x82000d00, 0x43238780, - 0x0136007f, 0x8c000508, 0x013004bf, 0x580a5808, - 0x592c0208, 0x58f00812, 0x800409c0, 0x013004c1, - 0x48065802, 0x497a5800, 0x497a5801, 0x82000500, - 0x000000ff, 0xb0000c8b, 0x013214be, 0x1201f800, - 0x001064d9, 0x5c03e000, 0x91700583, 0x05fc07e3, - 0x0500fa65, 0x0500b250, 0x1c01f000, 0x80140110, - 0x80000040, 0x0500013d, 0x0130152b, 0x4a01e007, - 0x00020a18, 0x4801e400, 0x492de002, 0x492de003, - 0x600ee000, 0x1c01f000, 0x497a5805, 0x80140110, - 0x80000040, 0x0130052b, 0x0130152b, 0x4a01e007, - 0x0002097f, 0x05fdf7f4, 0x497a5805, 0x80140110, - 0x80000040, 0x0132052b, 0x592c020b, 0x82000480, - 0x00001001, 0x01321539, 0x592c0017, 0xb0000580, - 0x01320539, 0x4d2c0000, 0x05f9ff1f, 0x05000011, - 0x412c6800, 0x5c025800, 0x600ae000, 0x42001000, - 0x001102f2, 0x592c0804, 0x592c2015, 0x592c2816, - 0x90340405, 0x48001003, 0x48041006, 0x48101007, - 0x48141008, 0x4834100a, 0x492c100b, 0x05f9f718, - 0x5c025800, 0x492de005, 0x6022e000, 0x4a01e004, - 0x00020910, 0x1c01f000, 0x6006e000, 0x412c6800, - 0x58f25805, 0x05fdf7e9, 0x4d2c0000, 0x5832580b, - 0x592c5a08, 0x4978600b, 0x812e59c0, 0x0130056e, - 0x58300002, 0x82000580, 0x00000100, 0x01320554, - 0x42000000, 0x001102f1, 0x50007000, 0x5830680a, - 0x58340005, 0x592c0809, 0x80040580, 0x01320558, - 0x58340806, 0x58341007, 0x58341808, 0x48065815, - 0x480a5816, 0x480e5817, 0x822c0d80, 0x0000016a, - 0x0502000e, 0x592c0a0e, 0x58342c09, 0x5834180f, - 0x58342010, 0x58341011, 0x8c040504, 0x0502000e, - 0x8c140510, 0x05020011, 0x480c680c, 0x4810680d, - 0x4808680e, 0x0501f037, 0x592c0c0e, 0x90040d04, - 0x592c040b, 0x80000110, 0x90000508, 0x80040d40, - 0x05fdf7ee, 0x82080500, 0xffff0003, 0x01320558, - 0x8c140510, 0x05000016, 0x58343812, 0x58344013, - 0x58343014, 0x8c040506, 0x05000004, 0x82180500, - 0xffff0003, 0x01320558, 0x8c040504, 0x05020009, - 0x8c040506, 0x0500001f, 0x481c7007, 0x48207008, - 0x40181000, 0x60483000, 0x607c3800, 0x0501f00f, - 0x481c7011, 0x48207012, 0x48187013, 0x60303000, - 0x60203800, 0x8c140510, 0x05000006, 0x603c3000, - 0x60683800, 0x8c040506, 0x05020002, 0x60603800, - 0x480c7007, 0x48107008, 0x481c7010, 0x592c0804, - 0x48047006, 0x492c700b, 0x4818700e, 0x4834700c, - 0x48365801, 0x65286808, 0x5c025800, 0x0135f3c3, - 0x48365801, 0x65286808, 0x6006e000, 0x40341000, - 0x822c0580, 0x0000016a, 0x05020004, 0x0501f80e, - 0x5c025800, 0x1c01f000, 0x0501f96d, 0x5c025800, - 0x1c01f000, 0x592c0001, 0x80001540, 0x0130052b, - 0x58080a08, 0x82040d00, 0x000000ff, 0xb004058a, - 0x01320532, 0x58080409, 0x8c000510, 0x0500008f, - 0x4d2c0000, 0x4c080000, 0x05f9fe8b, 0x5c001000, - 0x05000008, 0x412c6800, 0x5c025800, 0x48365805, - 0x592c5a0e, 0x0501f80e, 0x05000084, 0x0131f539, - 0x5c025800, 0x492de005, 0x6022e000, 0x4a01e004, - 0x0002099c, 0x1c01f000, 0x6006e000, 0x412c6800, - 0x58f25805, 0x592c1001, 0x05fdf7f1, 0x592c220b, - 0x5808480c, 0x5808040d, 0x80004540, 0x0500004c, - 0x80102480, 0x0500004a, 0x05001049, 0x90200483, - 0x05001007, 0x0500000b, 0x0500100c, 0x40004000, - 0x58081001, 0x90200485, 0x05fdf7fb, 0x40200000, - 0x0c01f001, 0x000209f1, 0x000209cb, 0x000209cf, - 0x58081001, 0x0501f008, 0x40200000, 0x0c01f001, - 0x000209bf, 0x000209c3, 0x000209c7, 0x000209cb, - 0x000209cf, 0x60240800, 0x42001800, 0x001012a3, - 0x0501f010, 0x60300800, 0x42001800, 0x001012a4, - 0x0501f00c, 0x603c0800, 0x42001800, 0x001012a5, - 0x0501f008, 0x60480800, 0x42001800, 0x001012a6, - 0x0501f004, 0x60540800, 0x42001800, 0x001012a7, - 0x40080000, 0x80043c00, 0x581c2800, 0x581c3001, - 0x581c3802, 0x8c2c0502, 0x0500000e, 0x80102040, - 0x0500000c, 0x90040595, 0x05000004, 0x90040c03, - 0x800c1800, 0x0501f007, 0x58081001, 0x800811c0, - 0x01000dda, 0x60240800, 0x42001800, 0x001012a3, - 0x48046809, 0x4808680a, 0x480c680b, 0x4810680c, - 0x4814680d, 0x4818680e, 0x481c680f, 0x48246810, - 0x64046811, 0x80000580, 0x1c01f000, 0x90000541, - 0x1c01f000, 0x592c0208, 0x82000500, 0x000000ff, - 0xb00005a8, 0x05000007, 0x90000582, 0x05000005, - 0x90000598, 0x05000003, 0x90000588, 0x05020018, - 0x592c0001, 0x80001540, 0x05000015, 0x58080208, - 0x82000500, 0x000000ff, 0xb000058a, 0x05020010, - 0x58080409, 0x8c000510, 0x0500000d, 0x592c0005, - 0x4d2c0000, 0x80025d40, 0x59a8000c, 0x812c0480, - 0x05001008, 0x59a8000a, 0x812c0480, 0x05021005, - 0x0105f992, 0x5c025800, 0x497a5805, 0x1c01f000, + 0x81280580, 0x05fc07fa, 0x400a5000, 0x59940023, + 0x80000540, 0x05fc27f3, 0x1c01f000, 0x59e0000f, + 0x59b818e4, 0x59e0100f, 0x80080d80, 0x05fe07fc, + 0x8c0c050c, 0x05fe07fa, 0x81280580, 0x05020006, + 0x400c0000, 0x810c0580, 0x8c000534, 0x05020002, + 0x1c01f000, 0x820c0500, 0x04000000, 0x850e1d34, + 0x810e1d40, 0x400a5000, 0x900811c0, 0x9008155c, + 0x480bc011, 0x59e00017, 0x60000800, 0x8c00050a, + 0x05020007, 0x8d0c0530, 0x05020007, 0x6403c017, + 0x4203e000, 0x30000001, 0x1c01f000, 0x05fdf970, + 0x05fdf7fb, 0x8c000500, 0x05fe0a97, 0x05fdf7f8, + 0x4d2c0000, 0x599af802, 0x817ef9c0, 0x05000008, + 0x40f25800, 0x592c020a, 0x8c000500, 0x05020806, + 0x592e5801, 0x817ef840, 0x05fe07fb, 0x5c025800, + 0x1c01f000, 0x59c40001, 0x82000500, 0x00018000, + 0x82000d80, 0x00018000, 0x05020004, 0x42000800, + 0x00100000, 0x0501f00f, 0x82000d80, 0x00010000, + 0x05020004, 0x42000800, 0x00080000, 0x0501f009, + 0x82000d80, 0x00008000, 0x05020004, 0x42000800, + 0x00040000, 0x0501f003, 0x42000800, 0x00020000, + 0x592c1411, 0x0141fc2b, 0x40041000, 0x40000800, + 0x60280000, 0x0141fc47, 0x800810c8, 0x480a580f, + 0x1c01f000, 0x592c020a, 0x84000502, 0x592c080d, + 0x48025a0a, 0x4806580e, 0x800409c0, 0x05000020, + 0x592c000f, 0x80041480, 0x0500100f, 0x0500001b, + 0x82080480, 0x000003e8, 0x05001018, 0x480a580d, + 0x592c0210, 0x80000040, 0x05000015, 0x80000040, + 0x05000003, 0x48025a10, 0x1c01f000, 0x64065a10, + 0x1c01f000, 0x80081080, 0x80081000, 0x82080480, + 0x000003e8, 0x05001009, 0x497a580d, 0x592c0210, + 0x90000402, 0x82001500, 0x00000f00, 0x05020005, + 0x48025a10, 0x1c01f000, 0x497a580d, 0x1c01f000, + 0x4a025a10, 0x000000ff, 0x1c01f000, 0x4df00000, + 0x4203e000, 0x50000000, 0x599af802, 0x817ef9c0, + 0x0500003e, 0x4178c000, 0x59d8080b, 0x59d8000b, + 0x80040580, 0x05fe07fd, 0x58f00200, 0x48040100, + 0x4805e20c, 0x59d8000a, 0x80040580, 0x05020033, + 0x59d80005, 0x82000500, 0x00006000, 0x0502002f, + 0x0500c02e, 0x91700582, 0x0500002c, 0x91700588, + 0x0500002a, 0x40f25800, 0x592e5801, 0x592cba0a, + 0x592c000d, 0x80000540, 0x05000005, 0x8c5c0502, + 0x05020003, 0x4200c000, 0xffffffff, 0x592c4200, + 0x592c020c, 0x58201000, 0x40002000, 0x80080580, + 0x05000014, 0x412c0000, 0x80f00580, 0x05020009, + 0x8c5c0502, 0x05000003, 0x80600000, 0x05000013, + 0x0501f81d, 0x480bb00a, 0x5c03e000, 0x1c01f000, + 0x8c5c0502, 0x05020014, 0x4a03b004, 0x10000000, + 0x4971e410, 0x0501f831, 0x5c03e000, 0x1c01f000, + 0x817ef840, 0x05fe07dd, 0x80600000, 0x05000003, + 0x80625d58, 0x05020003, 0x5c03e000, 0x1c01f000, + 0x592c4200, 0x592c220c, 0x58201000, 0x592cba0a, + 0x05fdf7ee, 0x8060c1c0, 0x05fe07f2, 0x412cc000, + 0x05fdf7f0, 0x916c0583, 0x05020017, 0x8c5c0500, + 0x05000007, 0x8c5c0502, 0x05020005, 0x592c000d, + 0x592c080f, 0x80040480, 0x05001010, 0x40100000, + 0x80080c80, 0x05021003, 0x592c040a, 0x80040c00, + 0x592c0210, 0x80041c80, 0x05021002, 0x1c01f000, + 0x80101400, 0x592c040a, 0x80080480, 0x05001002, + 0x40001000, 0x1c01f000, 0x845cbd42, 0x485e5a0a, + 0x40101000, 0x1c01f000, 0x801000cc, 0x592c2808, + 0x80140400, 0x4803b000, 0x497bb002, 0x59d80001, + 0x4817b000, 0x592c0009, 0x4803b001, 0x4813b00b, + 0x592ee410, 0x592c040a, 0x82000540, 0x00400000, + 0x4803b003, 0x05fdffd4, 0x480bb00a, 0x592c000b, + 0x4803b01f, 0x4a03b004, 0x10000001, 0x412de000, + 0x1c01f000, 0x41700000, 0x0c01f001, 0x001067ad, + 0x00020813, 0x001067ad, 0x000208df, 0x001067ac, + 0x001067ac, 0x001067ac, 0x001067ac, 0x00106f40, + 0x05010035, 0x59980000, 0x80000540, 0x013a006a, + 0x0502c01f, 0x6062f800, 0x4df00000, 0x4203e000, + 0x50000000, 0x49db3001, 0x59da5808, 0x592c2a08, + 0x58f00812, 0x800409c0, 0x05000031, 0x58f0000b, + 0x48025804, 0x48065802, 0x48f25803, 0x497a5800, + 0x497a5801, 0x82140500, 0x000000ff, 0xb0000cbb, + 0x05021024, 0x0c01f838, 0x5c03e000, 0x817ef840, + 0x05000007, 0x916c0583, 0x05020005, 0x91700581, + 0x0502000e, 0x05010015, 0x05fcc7e4, 0x0500fb3b, + 0x0500b326, 0x59d40005, 0x82000500, 0x43238780, + 0x0136038f, 0x59d80005, 0x82000500, 0x43238780, + 0x01360395, 0x1c01f000, 0x91700583, 0x0500089d, + 0x91700581, 0x05fe07f2, 0x05010004, 0x05fcc7d3, + 0x05fdf7ef, 0x6062f800, 0x4df00000, 0x4203e000, + 0x50000000, 0x49d73001, 0x59d65808, 0x05fdf7d0, + 0x0135f814, 0x5c03e000, 0x05fdf7e5, 0x592c0408, + 0x82001500, 0x000000ff, 0x80000110, 0x82000c00, + 0x00111dfa, 0x50040800, 0x480a5c08, 0x800409c0, + 0x05fe07c7, 0x80000540, 0x01000e15, 0x42000800, + 0x00111dfa, 0x50040800, 0x48065802, 0x0135f829, + 0x05fdf7ca, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x0010689d, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106822, + 0x00106814, 0x00106814, 0x00106814, 0x001068be, + 0x00106814, 0x00106814, 0x00106814, 0x00020a7a, + 0x00106814, 0x00106a8e, 0x00106814, 0x00106814, + 0x00106814, 0x00020900, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106866, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106ba1, 0x00106db9, 0x00106814, + 0x00106b21, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106b6e, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106f0d, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106aed, + 0x00106ed2, 0x00106814, 0x00106f02, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x0002090b, 0x00106814, 0x00020913, + 0x00106814, 0x00106814, 0x00106814, 0x00106814, + 0x00106814, 0x00106814, 0x00106814, 0x00020b0b, + 0x00106814, 0x00106814, 0x00020c7b, 0x00106814, + 0x00106814, 0x00106814, 0x00106fb4, 0x00020913, + 0x835c0480, 0x00000104, 0x013017c5, 0x4df00000, + 0x4203e000, 0x50000000, 0x59981001, 0x58080005, + 0x82000d00, 0x43238780, 0x01360395, 0x8c000508, + 0x013007af, 0x580a5808, 0x592c0208, 0x58f00812, + 0x800409c0, 0x013007b1, 0x48065802, 0x497a5800, + 0x497a5801, 0x82000500, 0x000000ff, 0xb0000c8b, + 0x013217ae, 0x1201f800, 0x001067c9, 0x5c03e000, + 0x91700583, 0x05fc07e3, 0x0500fa74, 0x0500b25f, + 0x1c01f000, 0x80140110, 0x80000040, 0x0500013f, + 0x0134101b, 0x4a01e007, 0x00020a41, 0x4801e400, + 0x492de002, 0x492de003, 0x600ee000, 0x1c01f000, + 0x497a5805, 0x80140110, 0x80000040, 0x0134001b, + 0x0134101b, 0x4a01e007, 0x000209a6, 0x05fdf7f4, + 0x497a5805, 0x80140110, 0x80000040, 0x0136001b, + 0x592c020b, 0x82000480, 0x00001001, 0x01361029, + 0x592c0017, 0xb0000580, 0x01360029, 0x4d2c0000, + 0x05f9ff00, 0x05000011, 0x412c6800, 0x5c025800, + 0x600ae000, 0x42001000, 0x00114296, 0x592c0804, + 0x592c2015, 0x592c2816, 0x90340405, 0x48001003, + 0x48041006, 0x48101007, 0x48141008, 0x4834100a, + 0x492c100b, 0x05f9f6f9, 0x5c025800, 0x492de005, + 0x6022e000, 0x4a01e004, 0x00020937, 0x1c01f000, + 0x6006e000, 0x412c6800, 0x58f25805, 0x05fdf7e9, + 0x4d2c0000, 0x5832580b, 0x592c5a08, 0x4978600b, + 0x812e59c0, 0x0134005e, 0x58300002, 0x82000580, + 0x00000100, 0x01360044, 0x42000000, 0x00114295, + 0x50007000, 0x5830680a, 0x58340005, 0x592c0809, + 0x80040580, 0x01360048, 0x58340806, 0x58341007, + 0x58341808, 0x48065815, 0x480a5816, 0x480e5817, + 0x822c0d80, 0x0000016a, 0x0502000e, 0x592c0a0e, + 0x58342c09, 0x5834180f, 0x58342010, 0x58341011, + 0x8c040504, 0x0502000e, 0x8c140510, 0x05020011, + 0x480c680c, 0x4810680d, 0x4808680e, 0x0501f037, + 0x592c0c0e, 0x90040d04, 0x592c040b, 0x80000110, + 0x90000508, 0x80040d40, 0x05fdf7ee, 0x82080500, + 0xffff0003, 0x01360048, 0x8c140510, 0x05000016, + 0x58343812, 0x58344013, 0x58343014, 0x8c040506, + 0x05000004, 0x82180500, 0xffff0003, 0x01360048, + 0x8c040504, 0x05020009, 0x8c040506, 0x0500001f, + 0x481c7007, 0x48207008, 0x40181000, 0x60483000, + 0x607c3800, 0x0501f00f, 0x481c7011, 0x48207012, + 0x48187013, 0x60303000, 0x60203800, 0x8c140510, + 0x05000006, 0x603c3000, 0x60683800, 0x8c040506, + 0x05020002, 0x60603800, 0x480c7007, 0x48107008, + 0x481c7010, 0x592c0804, 0x48047006, 0x492c700b, + 0x4818700e, 0x4834700c, 0x48365801, 0x65286808, + 0x5c025800, 0x0135f72f, 0x48365801, 0x65286808, + 0x6006e000, 0x40341000, 0x822c0580, 0x0000016a, + 0x05020004, 0x0501f80e, 0x5c025800, 0x1c01f000, + 0x0501f97c, 0x5c025800, 0x1c01f000, 0x592c0001, + 0x80001540, 0x0134001b, 0x58080a08, 0x82040d00, + 0x000000ff, 0xb004058a, 0x01360022, 0x58080409, + 0x8c000510, 0x05000091, 0x4d2c0000, 0x4c080000, + 0x05f9fe6c, 0x5c001000, 0x05000008, 0x412c6800, + 0x5c025800, 0x48365805, 0x592c5a0e, 0x0501f80e, + 0x05000086, 0x0135f029, 0x5c025800, 0x492de005, + 0x6022e000, 0x4a01e004, 0x000209c3, 0x1c01f000, + 0x6006e000, 0x412c6800, 0x58f25805, 0x592c1001, + 0x05fdf7f1, 0x592c220b, 0x5808480c, 0x5808040d, + 0x80004540, 0x0500004c, 0x80102480, 0x0500004a, + 0x05001049, 0x90200483, 0x05001007, 0x0500000b, + 0x0500100c, 0x40004000, 0x58081001, 0x90200485, + 0x05fdf7fb, 0x40200000, 0x0c01f001, 0x00020a18, + 0x000209f2, 0x000209f6, 0x58081001, 0x0501f008, + 0x40200000, 0x0c01f001, 0x000209e6, 0x000209ea, + 0x000209ee, 0x000209f2, 0x000209f6, 0x60240800, + 0x42001800, 0x00100042, 0x0501f010, 0x60300800, + 0x42001800, 0x00100043, 0x0501f00c, 0x603c0800, + 0x42001800, 0x00100044, 0x0501f008, 0x60480800, + 0x42001800, 0x00100045, 0x0501f004, 0x60540800, + 0x42001800, 0x00100046, 0x40080000, 0x80043c00, + 0x581c2800, 0x581c3001, 0x581c3802, 0x8c2c0502, + 0x0500000e, 0x80102040, 0x0500000c, 0x90040595, + 0x05000004, 0x90040c03, 0x800c1800, 0x0501f007, + 0x58081001, 0x800811c0, 0x01000e15, 0x60240800, + 0x42001800, 0x00100042, 0x48046809, 0x4808680a, + 0x480c680b, 0x4810680c, 0x4814680d, 0x4818680e, + 0x481c680f, 0x48246810, 0x64046811, 0x80000580, + 0x1c01f000, 0x90000541, 0x1c01f000, 0x592c0208, + 0x82000500, 0x000000ff, 0xb00005a8, 0x05000007, + 0x90000582, 0x05000005, 0x90000598, 0x05000003, + 0x90000588, 0x0502001a, 0x592c0001, 0x80001540, + 0x05000017, 0x58080208, 0x82000500, 0x000000ff, + 0xb000058a, 0x05020012, 0x58080409, 0x8c000510, + 0x0500000f, 0x592c0005, 0x4d2c0000, 0x80025d40, + 0x59a8000c, 0x812c0480, 0x05021003, 0x0159fa66, + 0x05000008, 0x59a8000a, 0x812c0480, 0x05021005, + 0x0105f9c9, 0x5c025800, 0x497a5805, 0x1c01f000, 0x5c025800, 0x05fdf7fe, 0x592e8a0a, 0x83440c80, - 0x000007f0, 0x01321539, 0x8d0c050e, 0x0132057e, - 0x592e4414, 0x81224110, 0x83440400, 0x0010d400, - 0x50000000, 0x80026d40, 0x01300591, 0x59340013, - 0x80000130, 0x81200580, 0x01320591, 0x599c0018, - 0x8c00052a, 0x05000005, 0x592c0003, 0x5800040c, - 0x81200580, 0x01320591, 0x5934000a, 0x8c00052e, - 0x01320597, 0x05fdf885, 0x01320593, 0x1c01f000, - 0x58f00803, 0x58f00400, 0x48065800, 0x492c0801, - 0x492de003, 0x80000040, 0x4801e400, 0x05000002, - 0x1c01f000, 0x58f25802, 0x58f00007, 0x6006e000, - 0x0801f800, 0x1c01f000, 0x80140110, 0x0130052b, - 0x80000040, 0x05020009, 0x592c240e, 0x8c100504, - 0x0500000a, 0x592c020b, 0x82000c80, 0x00001001, - 0x01321539, 0x0135f3b1, 0x4a01e007, 0x00020a53, - 0x05fdf68d, 0x592c240e, 0x592c040b, 0x8c000510, - 0x0500000d, 0x0169f933, 0x0502000b, 0x59a800df, - 0x492f50df, 0x492fc857, 0x4803c857, 0x80000d40, - 0x05000003, 0x492c0800, 0x1c01f000, 0x492f50de, - 0x1c01f000, 0x592e8a0a, 0x417a7800, 0x592e440b, - 0x83224500, 0x000000ff, 0x83200580, 0x000000ff, - 0x01300716, 0x83200400, 0x0010d17b, 0x50024800, - 0x83440c80, 0x000007f0, 0x0132170d, 0x83440c00, - 0x0010d400, 0x50040000, 0x80026d40, 0x01300711, - 0x59340013, 0x80000130, 0x81200580, 0x01320711, - 0x59340002, 0x592c080c, 0x80040580, 0x82000500, - 0x00ffffff, 0x01320539, 0x59243a00, 0x901c0503, - 0x90000583, 0x05000004, 0x59340200, 0x8c00050e, - 0x0130070a, 0x592c040b, 0x8c000510, 0x0500001b, - 0x592c080d, 0x59a802dd, 0x80041480, 0x0130172f, - 0x59a804dd, 0x80000000, 0x80041480, 0x0132172f, - 0x0139fa9c, 0x01300539, 0x59300407, 0x800001c0, - 0x01320539, 0x497a580c, 0x4936600a, 0x59340002, - 0x82000500, 0x00ffffff, 0x4802600b, 0x641a6407, - 0x4926601d, 0x492e6017, 0x592c040e, 0x8c00051e, - 0x01320539, 0x1c01f000, 0x592e600d, 0x497a580c, - 0x83300480, 0x00111b00, 0x0130172f, 0xa1300495, - 0x013216d4, 0x592c0a10, 0x59300202, 0x80040580, - 0x0132072f, 0x4936600a, 0x4926601d, 0x8c10051c, - 0x013206c8, 0x59240206, 0x8c000510, 0x01320747, - 0x8d0c050e, 0x013206b4, 0x8c1c0516, 0x0132073e, - 0x59340200, 0x8c000518, 0x0132072c, 0x59300c07, - 0x90040586, 0x0132074a, 0xa1300494, 0x05021008, - 0x05000007, 0x592c040e, 0x8c00051e, 0x05000004, - 0x59300203, 0x90000587, 0x01320744, 0x8c100508, - 0x013206aa, 0x59300809, 0x497a5807, 0x64025a0a, - 0x800409c0, 0x013206af, 0x59300416, 0x8c000516, - 0x01320732, 0x492e6009, 0x0501f359, 0x497a5805, - 0x80140110, 0x0130052b, 0x80000040, 0x0130052b, - 0x592c0a0b, 0x82040c80, 0x00001001, 0x01321539, - 0x4a01e007, 0x00020ae1, 0x05fdf5ff, 0x592c0001, - 0x80001540, 0x0130052b, 0x58080a08, 0x82040d00, - 0x000000ff, 0xb004058a, 0x01320532, 0x58080409, - 0x8c000510, 0x05020021, 0x6006e000, 0x592c240e, - 0x8c100504, 0x05fc0765, 0x592c0208, 0x82000580, - 0x0000017a, 0x05fc0761, 0x40087800, 0x592c020b, - 0x82000480, 0x00001001, 0x01321539, 0x583c180c, - 0x583c200d, 0x583c100e, 0x82080500, 0xffff0003, - 0x01320539, 0x600ae000, 0x42000000, 0x001102f1, - 0x50007000, 0x64207010, 0x592c0804, 0x48047006, - 0x480c7007, 0x48107008, 0x492c700b, 0x6430700e, - 0x483c700c, 0x0135f3c3, 0x592c240e, 0x8c100504, - 0x01320539, 0x4d2c0000, 0x4c080000, 0x05f9fd06, - 0x5c001000, 0x0500000e, 0x412c6800, 0x5c025800, - 0x592c5c0e, 0x802c5942, 0x48365805, 0x05fdfe88, - 0x05fc0739, 0x0131f539, 0x6006e000, 0x412c6800, - 0x58f25805, 0x592c1001, 0x05fdf7f6, 0x5c025800, - 0x492de005, 0x6022e000, 0x4a01e004, 0x00020b1c, - 0x1c01f000, 0x4df00000, 0x4203e000, 0x50000000, - 0x0502b00b, 0x835c0480, 0x00000104, 0x0500100c, - 0x815eb840, 0x416a5800, 0x592ed000, 0x492fb007, - 0x497a5800, 0x497a5801, 0x05fcb7f7, 0x59d80005, - 0x82000500, 0x43238780, 0x0136007f, 0x5c03e000, - 0x1c01f000, 0x4df00000, 0x4203e000, 0x50000000, - 0x0502f00b, 0x835c0480, 0x00000104, 0x0500100c, - 0x815eb840, 0x416a5800, 0x592ed000, 0x492fa807, - 0x497a5800, 0x497a5801, 0x05fcf7f7, 0x59d40005, - 0x82000500, 0x43238780, 0x01360079, 0x5c03e000, - 0x1c01f000, 0x40307000, 0x5838000b, 0x80025d40, - 0x0500001c, 0x58380002, 0x82000580, 0x00000100, - 0x0500001d, 0x4c380000, 0x592c0208, 0x82000500, - 0x000000ff, 0x90000592, 0x0500000f, 0xb00005a0, - 0x0500000d, 0x90000588, 0x0500000b, 0x592c020c, - 0x8400054e, 0x48025a0c, 0x497a5c0c, 0x497a5c0d, - 0x640a5a0a, 0x4a025a08, 0x00000103, 0x05fdf819, - 0x0501f003, 0x64425a0a, 0x05fdf816, 0x5c007000, - 0x6006e000, 0x4a007002, 0x00000100, 0x49787010, - 0x1c01f000, 0x58380004, 0x90000483, 0x05000081, - 0x58381010, 0x8c080500, 0x05020014, 0x8c080506, - 0x05020037, 0x600cb000, 0x912cac15, 0x5838000a, - 0x5838100d, 0x8008a400, 0x4c380000, 0x0169f8a7, - 0x5c007000, 0x5838000d, 0x90000403, 0x4800700d, - 0x64047010, 0x58380004, 0x90000483, 0x48007004, - 0x90000583, 0x0500006b, 0x5838000e, 0x80001d40, - 0x05020026, 0x4c380000, 0x05f9fc87, 0x5c007000, - 0x05000012, 0x4a025a08, 0x0000010a, 0x60241800, - 0x480c700e, 0x5838000c, 0x80000540, 0x05020002, - 0x5838000b, 0x40000800, 0x492c0801, 0x492c700c, - 0x603c0800, 0x0501f019, 0x6022e000, 0x4a01e004, - 0x00020ba8, 0x1c01f000, 0x6022e000, 0x4a01e004, - 0x00020bac, 0x1c01f000, 0x600ae000, 0x6e007000, - 0x001102f1, 0x0501f06b, 0x600ae000, 0x42000000, - 0x001102f1, 0x50007000, 0x05fdf7e3, 0x84081540, - 0x48087010, 0x5838180e, 0x583a580c, 0x400c0000, - 0x60600800, 0x80040c80, 0x58381004, 0x5838000f, - 0x41783000, 0x80000540, 0x05020004, 0x84183540, - 0x90081483, 0x05000037, 0x40080000, 0x80040480, - 0x05001002, 0x40080800, 0x4004b000, 0x412c0000, - 0x800c0400, 0x4000a800, 0x5838000a, 0x5838100d, - 0x8008a400, 0x4c080000, 0x4c040000, 0x4c0c0000, - 0x4c380000, 0x0169f8a7, 0x5c007000, 0x5c001800, - 0x5c000800, 0x40040000, 0x58381004, 0x80080480, - 0x48007004, 0x90000583, 0x05000002, 0x84183500, - 0x5c000000, 0x80041400, 0xb00804a0, 0x05020003, - 0x84183542, 0x41781000, 0x400c0000, 0x80041c00, - 0x900c0498, 0x05020003, 0x84183544, 0x40001800, - 0x40080800, 0x4804700d, 0x480c700e, 0x40180000, - 0x0c01f001, 0x00020bf3, 0x00020bf6, 0x00020bf4, - 0x00020bf3, 0x00020b8f, 0x00020bf6, 0x00020bf4, - 0x00020bf3, 0x0101fdda, 0x5838100f, 0x0135f3c3, - 0x5838080d, 0x90040402, 0x5838100a, 0x80080400, - 0x50001000, 0x800811c0, 0x05020041, 0x58381810, - 0x8c0c0506, 0x0502000b, 0x6006e000, 0x583a580b, - 0x4978700b, 0x49787010, 0x592c0208, 0x82000500, - 0x000000ff, 0x90000592, 0x05fc064b, 0x05fdf60f, - 0x8c0c0502, 0x05020028, 0x8c0c0508, 0x05000016, - 0x5838080c, 0x5838000e, 0x80002d40, 0x0502000b, - 0x4c380000, 0x0105f971, 0x5c007000, 0x05fc078b, - 0x412c0800, 0x583a580c, 0x48065801, 0x4a000a08, - 0x0000010a, 0x60242800, 0x58381811, 0x58382012, - 0x58381013, 0x80040c05, 0x480c0800, 0x48100801, - 0x48080802, 0x6006e000, 0x583a580b, 0x4978700b, - 0x49787010, 0x592c0208, 0x82000d00, 0x000000ff, - 0xb00405b2, 0x05fc0628, 0x592c1001, 0xb00405ba, - 0x05fe0559, 0x58080409, 0x8c000510, 0x05fc0622, - 0x05fdf6dd, 0x8c0c0504, 0x05fe07ef, 0x840c1d44, - 0x480c7010, 0x58381811, 0x58382012, 0x58381013, - 0x480c7007, 0x48107008, 0x0135f3c3, 0x5838000a, - 0x80040c00, 0x90381c07, 0x54041800, 0x80040800, - 0x800c1800, 0x54041800, 0x0135f3c3, 0x80140110, - 0x0130052b, 0x80000040, 0x0130052b, 0x4a01e007, - 0x00020c4c, 0x05fdf494, 0x4d2c0000, 0x0105f971, - 0x412c6800, 0x5c025800, 0x05000006, 0x48365805, - 0x90346c01, 0x0501f80c, 0x05fc05c4, 0x0131f539, - 0x492de006, 0x6022e000, 0x4a01e004, 0x00020c5b, - 0x1c01f000, 0x6006e000, 0x412c6800, 0x58f25806, - 0x05fdf7f3, 0x592c4812, 0x592c020b, 0x80004540, - 0x05000023, 0x592c040b, 0x80002540, 0x05000020, - 0x592c7001, 0x80204040, 0x05000008, 0x90200485, - 0x05001006, 0x58387001, 0x803871c0, 0x05000018, - 0x80004540, 0x05fe07fa, 0x82204400, 0x001012a3, - 0x50200000, 0x80380c00, 0x58042800, 0x58043001, - 0x58043802, 0x4838680d, 0x4800680c, 0x49786814, - 0x49786815, 0x48146810, 0x48186811, 0x481c6812, - 0x4820680e, 0x48246813, 0x80102040, 0x4810680f, - 0x05020005, 0x80000580, 0x1c01f000, 0x90000541, - 0x1c01f000, 0x80204000, 0x50201800, 0x800c19c0, - 0x0502000a, 0x58380001, 0x80007540, 0x05fc07f8, - 0x58380208, 0x9000050f, 0x82000400, 0x001012ac, - 0x50004000, 0x50201800, 0x4820680e, 0x480c680c, - 0x4838680d, 0x05fdf7ec, 0x4df00000, 0x4203e000, - 0x50000000, 0x5994002e, 0x80000540, 0x05000183, - 0x4c000000, 0x5c000000, 0x59947824, 0x4803282f, - 0x803c0480, 0x05001004, 0x05000003, 0x48032824, - 0x0501f05f, 0x417a0800, 0x81060800, 0x82000400, - 0x000003e8, 0x05fc27fd, 0x48032824, 0x59940032, - 0x80000d40, 0x05000006, 0x80040840, 0x48072832, - 0x05020003, 0x59940033, 0x0801f800, 0x59a8001c, - 0x8400057e, 0x4803501c, 0x59a80022, 0x8400057e, - 0x48035022, 0x59a8000f, 0x8400057e, 0x4803500f, - 0x59a80010, 0x8400057e, 0x48035010, 0x0125f91f, - 0x0502000a, 0x59a80878, 0x800409c0, 0x05000007, - 0xa0040c81, 0x48075078, 0x05000002, 0x05021003, - 0x497b5078, 0x013dfecc, 0x59a800a7, 0x8c000500, - 0x0500000e, 0x59a80878, 0x800409c0, 0x0500000b, - 0xa0040c81, 0x48075078, 0x05000002, 0x05021007, - 0x497b5078, 0x42000000, 0x0010dd09, 0x50000800, - 0x84040d48, 0x44040000, 0x59a800b8, 0x81041400, - 0x480b50b8, 0x59a808ba, 0x81040c01, 0x82040480, - 0x00028f5a, 0x05001002, 0x41780800, 0x480750ba, - 0x81040040, 0x05000002, 0x4907c857, 0x59e40852, - 0x59a800b9, 0x80040580, 0x05000004, 0x480bc857, - 0x59e40052, 0x480350b9, 0x59940030, 0x81040400, - 0x48032830, 0x0139ff8b, 0x5998b002, 0x8058b1c0, - 0x05000008, 0x40f25800, 0x592e5801, 0x592c020a, - 0x8c000500, 0x05fe0a3a, 0x8058b040, 0x05fe07fb, - 0x59940000, 0x90000580, 0x05020005, 0x59940030, - 0x48032831, 0x497b2830, 0x64072800, 0x4c0c0000, - 0x58d400e5, 0x8c000514, 0x05000013, 0x59940807, - 0x59941006, 0x5994002f, 0x80081c80, 0x05001004, - 0x05000003, 0x480f2806, 0x0501f00b, 0x80040840, - 0x48072807, 0x05020004, 0x59940008, 0x0801f800, - 0x0501f005, 0x400c0000, 0x900c1c0a, 0x05fc27f8, - 0x480f2806, 0x5c001800, 0x4d180000, 0x59c80040, - 0x8c000534, 0x05020025, 0x417a3000, 0x91947c09, - 0x60042000, 0x58d400e5, 0x80100500, 0x05020007, - 0x801020c4, 0x903c7c05, 0x811a3000, 0x91180585, - 0x05fe07f9, 0x0501f019, 0x583c0801, 0x583c1000, - 0x5994002f, 0x80080480, 0x05001005, 0x05000004, - 0x48007800, 0x80000040, 0x05fe17f2, 0x80040840, - 0x48047801, 0x05000006, 0x9000040a, 0x48007800, - 0x05fc27fb, 0xb004053f, 0x05fdf7ea, 0x583c0004, - 0x4c3c0000, 0x4c100000, 0x0801f800, 0x5c002000, - 0x5c007800, 0x05fdf7e3, 0x5c023000, 0x8d0c0516, - 0x05020017, 0x8d0c0522, 0x0500001e, 0x5998b008, - 0x8058b1c0, 0x05000012, 0x41765800, 0x592e5800, - 0x592c0003, 0x80001540, 0x05000006, 0x05002008, - 0x5994002f, 0x80080480, 0x05021004, 0x497a5803, - 0x05f9fea5, 0x0501f002, 0x48025803, 0x8058b040, - 0x05fe07f3, 0x8d0c0520, 0x0500000a, 0x59940023, - 0x80001540, 0x05000007, 0x05002006, 0x5994002f, - 0x80080480, 0x05021002, 0x80000580, 0x48032823, - 0x59940026, 0x80000d40, 0x05000012, 0x59941025, - 0x5994002f, 0x80080480, 0x05001005, 0x05000004, - 0x48032825, 0x80000040, 0x0502100a, 0x80040840, - 0x48072826, 0x05020004, 0x59940027, 0x0801f800, - 0x0501f004, 0x9000040a, 0x48032825, 0x05fc27f8, - 0x59940004, 0x80000d40, 0x05000012, 0x59941003, - 0x5994002f, 0x80080480, 0x05001005, 0x05000004, - 0x48032803, 0x80000040, 0x0502100a, 0x80040840, - 0x48072804, 0x05020004, 0x59940005, 0x0801f800, - 0x0501f004, 0x9000040a, 0x48032803, 0x05fc27f8, - 0x59940029, 0x80000d40, 0x05000012, 0x59941028, - 0x5994002f, 0x80080480, 0x05001005, 0x05000004, - 0x48032828, 0x80000040, 0x0502100a, 0x80040840, - 0x48072829, 0x05020004, 0x5994002a, 0x0801f800, - 0x0501f004, 0x90000401, 0x48032828, 0x05fc27f8, - 0x5994002c, 0x80000d40, 0x05000012, 0x5994102b, - 0x5994002f, 0x80080480, 0x05001005, 0x05000004, - 0x4803282b, 0x80000040, 0x0502100a, 0x80040840, - 0x4807282c, 0x05020004, 0x5994002d, 0x0801f800, - 0x0501f004, 0x9000040a, 0x4803282b, 0x05fc27f8, - 0x59a8081c, 0x8c04053e, 0x0500001b, 0x84040d3e, - 0x4807501c, 0x05000018, 0x5994002f, 0x4c000000, - 0x82000400, 0x000003e8, 0x4803282f, 0x80040480, - 0x05001004, 0x05000003, 0x4803501c, 0x0501f00c, - 0x4c000000, 0x013df83f, 0x013c08af, 0x5c000000, - 0x59a8081b, 0x80040400, 0x05fc27ff, 0x800001c0, - 0x05020002, 0x40040000, 0x4803501c, 0x5c000000, - 0x4803282f, 0x59a8080f, 0x8c04053e, 0x05000021, - 0x84040d3e, 0x4807500f, 0x0500001e, 0x5994002f, - 0x4c000000, 0x82000400, 0x000003e8, 0x4803282f, - 0x80040480, 0x05001009, 0x05000008, 0x4803500f, - 0x4c000000, 0x59a8100d, 0x5808040b, 0x8c000514, - 0x5c000000, 0x0500000d, 0x4c000000, 0x60480000, - 0x59a8100d, 0x013dfb92, 0x013c08af, 0x5c000000, - 0x90000400, 0x05fc27ff, 0x800001c0, 0x05020002, - 0x60000000, 0x4803500f, 0x5c000000, 0x4803282f, - 0x59a80810, 0x8c04053e, 0x05000023, 0x84040d3e, - 0x48075010, 0x05000020, 0x5994002f, 0x4c000000, - 0x82000400, 0x000003e8, 0x4803282f, 0x80040480, - 0x05001009, 0x05000008, 0x48035010, 0x4c000000, - 0x59a8100e, 0x5808040b, 0x8c000514, 0x5c000000, - 0x0500000f, 0x4c000000, 0x60500000, 0x59a8100e, - 0x013dfb92, 0x013c08af, 0x5c000000, 0x82000400, - 0x000927c0, 0x05fc27fe, 0x800001c0, 0x05020003, - 0x42000000, 0x000927c0, 0x48035010, 0x5c000000, - 0x4803282f, 0x5994082e, 0x5994002f, 0x80040480, - 0x01001dda, 0x4803282e, 0x59940000, 0x0c01f001, - 0x00020e25, 0x001076d4, 0x00107743, 0x5c03e000, - 0x1c01f000, 0x5994002e, 0x80000000, 0x4803282e, - 0x4203e000, 0x70000000, 0x1c01f000, 0x813e79c0, - 0x05020016, 0x59a800d4, 0x80000040, 0x05fe07ff, - 0x58d400ea, 0x8c000516, 0x05fe07fe, 0x91300400, - 0x4801a8e1, 0x592c1003, 0x5808020a, 0x8c000500, - 0x0500000a, 0x592c1c0e, 0x820c1d00, 0x000000c0, - 0xb00c1d80, 0x05000005, 0x592c1813, 0x5808000d, - 0x800c0400, 0x4800100d, 0x1c01f000, 0x5c000000, - 0x4c000000, 0x4803c857, 0x4807c857, 0x59302a03, - 0x98140486, 0x05000005, 0x601c2800, 0x0501f003, - 0x60040800, 0x601c2800, 0x59325809, 0x832c0580, - 0x00110228, 0x0500001f, 0x832c0500, 0x00ff0000, - 0x05000025, 0x592c1000, 0x59301808, 0x59302027, - 0x801021c0, 0x05020039, 0x592c040e, 0x480a6009, - 0x48166203, 0x8c000510, 0x0502001c, 0x48065a0a, - 0x820c0500, 0x04000800, 0x82000580, 0x04000800, - 0x0500002b, 0xa1300494, 0x05021009, 0x05000008, - 0x592c040e, 0x8c00051e, 0x05020005, 0x013dff4d, - 0x59300202, 0x48025a10, 0x4932580d, 0x05f9fd11, - 0x417a7800, 0x59300009, 0x82000d80, 0x00110228, - 0x05020003, 0x58040000, 0x48026009, 0x80025d40, - 0x05fe07b3, 0x1c01f000, 0x832c0580, 0x00110228, - 0x05fc07f4, 0x592c040b, 0x8c000510, 0x05fe07f1, - 0x98040481, 0x05fe07de, 0x456a5800, 0x412ed000, - 0x815eb800, 0x592c0001, 0x80000d40, 0x05020006, + 0x000007f0, 0x0502101e, 0x8d0c050e, 0x0136006e, + 0x592e4414, 0x81224110, 0x83440480, 0x000007f0, + 0x0502101e, 0x83440400, 0x0010db80, 0x50000000, + 0x80026d40, 0x0134007e, 0x59340013, 0x80000130, + 0x81200580, 0x0136007e, 0x599c0018, 0x8c00052a, + 0x05000005, 0x592c0003, 0x5800040c, 0x81200580, + 0x0136007e, 0x5934000a, 0x8c00052e, 0x01360084, + 0x05fdf861, 0x01360080, 0x1c01f000, 0x83440c80, + 0x00000800, 0x01341029, 0x59a800ad, 0x81440480, + 0x01361029, 0x05fdf7dd, 0x05fdf89f, 0x05fc07e7, + 0x0135f07e, 0x58f00803, 0x58f00400, 0x48065800, + 0x492c0801, 0x492de003, 0x80000040, 0x4801e400, + 0x05000002, 0x1c01f000, 0x58f25802, 0x58f00007, + 0x6006e000, 0x0801f800, 0x1c01f000, 0x80140110, + 0x0134001b, 0x80000040, 0x05020009, 0x592c240e, + 0x8c100504, 0x0500000a, 0x592c020b, 0x82000c80, + 0x00001001, 0x01361029, 0x0135f71d, 0x4a01e007, + 0x00020a89, 0x05fdf67e, 0x592c240e, 0x592c040b, + 0x8c000510, 0x0500000d, 0x016df8ae, 0x0502000b, + 0x59a800e4, 0x492f50e4, 0x492fc857, 0x4803c857, + 0x80000d40, 0x05000003, 0x492c0800, 0x1c01f000, + 0x492f50e3, 0x1c01f000, 0x592e8a0a, 0x417a7800, + 0x592e440b, 0x83224500, 0x000000ff, 0x83200580, + 0x000000ff, 0x0134021e, 0x83200400, 0x0010d8f9, + 0x50024800, 0x83440c80, 0x000007f0, 0x01361215, + 0x83440c00, 0x0010db80, 0x50040000, 0x80026d40, + 0x01340219, 0x59340013, 0x80000130, 0x81200580, + 0x01360219, 0x59340002, 0x592c080c, 0x80040580, + 0x82000500, 0x00ffffff, 0x01360029, 0x59243a00, + 0x901c0503, 0x90000583, 0x05000004, 0x59340200, + 0x8c00050e, 0x01340212, 0x592c040b, 0x8c000510, + 0x0500001b, 0x592c080d, 0x59a802e2, 0x80041480, + 0x0134123a, 0x59a804e2, 0x80000000, 0x80041480, + 0x0136123a, 0x0139fe8a, 0x01340029, 0x59300407, + 0x800001c0, 0x01360029, 0x497a580c, 0x4936600a, + 0x59340002, 0x82000500, 0x00ffffff, 0x4802600b, + 0x641a6407, 0x4926601d, 0x492e6017, 0x592c040e, + 0x8c00051e, 0x01360029, 0x1c01f000, 0x592e600d, + 0x497a580c, 0x813004af, 0x0134123a, 0xa1300495, + 0x013611dc, 0x592c0a10, 0x59300202, 0x80040580, + 0x0136023a, 0x4936600a, 0x4926601d, 0x8c10051c, + 0x013601ce, 0x59240206, 0x8c000510, 0x01360252, + 0x8d0c050e, 0x013601ba, 0x8c1c0516, 0x01360249, + 0x59340200, 0x8c000518, 0x01360234, 0x59300c07, + 0x90040586, 0x01360255, 0xa1300494, 0x05021009, + 0xa1300496, 0x05001007, 0x592c040e, 0x8c00051e, + 0x05000004, 0x59300203, 0x90000587, 0x0136024f, + 0x8c100508, 0x013601b0, 0x59300809, 0x497a5807, + 0x64025a0a, 0x800409c0, 0x013601b5, 0x59300416, + 0x8c000516, 0x0136023d, 0x492e6009, 0x0501f359, + 0x497a5805, 0x80140110, 0x0134001b, 0x80000040, + 0x0134001b, 0x592c0a0b, 0x82040c80, 0x00001001, + 0x01361029, 0x4a01e007, 0x00020b17, 0x05fdf5f0, + 0x592c0001, 0x80001540, 0x0134001b, 0x58080a08, + 0x82040d00, 0x000000ff, 0xb004058a, 0x01360022, + 0x58080409, 0x8c000510, 0x05020021, 0x6006e000, + 0x592c240e, 0x8c100504, 0x05fc0765, 0x592c0208, + 0x82000580, 0x0000017a, 0x05fc0761, 0x40087800, + 0x592c020b, 0x82000480, 0x00001001, 0x01361029, + 0x583c180c, 0x583c200d, 0x583c100e, 0x82080500, + 0xffff0003, 0x01360029, 0x600ae000, 0x42000000, + 0x00114295, 0x50007000, 0x64207010, 0x592c0804, + 0x48047006, 0x480c7007, 0x48107008, 0x492c700b, + 0x6430700e, 0x483c700c, 0x0135f72f, 0x592c240e, + 0x8c100504, 0x01360029, 0x4d2c0000, 0x4c080000, + 0x05f9fcd8, 0x5c001000, 0x0500000e, 0x412c6800, + 0x5c025800, 0x592c5c0e, 0x802c5942, 0x48365805, + 0x05fdfe79, 0x05fc0739, 0x0135f029, 0x6006e000, + 0x412c6800, 0x58f25805, 0x592c1001, 0x05fdf7f6, + 0x5c025800, 0x492de005, 0x6022e000, 0x4a01e004, + 0x00020b52, 0x1c01f000, 0x4df00000, 0x4203e000, + 0x50000000, 0x0502b00b, 0x835c0480, 0x00000104, + 0x0500100c, 0x815eb840, 0x416a5800, 0x592ed000, + 0x492fb007, 0x497a5800, 0x497a5801, 0x05fcb7f7, + 0x59d80005, 0x82000500, 0x43238780, 0x01360395, + 0x5c03e000, 0x1c01f000, 0x4df00000, 0x4203e000, + 0x50000000, 0x0502f00b, 0x835c0480, 0x00000104, + 0x0500100c, 0x815eb840, 0x416a5800, 0x592ed000, + 0x492fa807, 0x497a5800, 0x497a5801, 0x05fcf7f7, + 0x59d40005, 0x82000500, 0x43238780, 0x0136038f, + 0x5c03e000, 0x1c01f000, 0x40307000, 0x5838000b, + 0x80025d40, 0x0500001c, 0x58380002, 0x82000580, + 0x00000100, 0x0500001d, 0x4c380000, 0x592c0208, + 0x82000500, 0x000000ff, 0x90000592, 0x0500000f, + 0xb00005a0, 0x0500000d, 0x90000588, 0x0500000b, + 0x592c020c, 0x8400054e, 0x48025a0c, 0x497a5c0c, + 0x497a5c0d, 0x640a5a0a, 0x4a025a08, 0x00000103, + 0x05fdf809, 0x0501f003, 0x64425a0a, 0x05fdf806, + 0x5c007000, 0x6006e000, 0x4a007002, 0x00000100, + 0x49787010, 0x1c01f000, 0x58380004, 0x90000483, + 0x05000081, 0x58381010, 0x8c080500, 0x05020014, + 0x8c080506, 0x05020037, 0x600cb000, 0x912cac15, + 0x5838000a, 0x5838100d, 0x8008a400, 0x4c380000, + 0x0501fe18, 0x5c007000, 0x5838000d, 0x90000403, + 0x4800700d, 0x64047010, 0x58380004, 0x90000483, + 0x48007004, 0x90000583, 0x0500006b, 0x5838000e, + 0x80001d40, 0x05020026, 0x4c380000, 0x05f9fc59, + 0x5c007000, 0x05000012, 0x4a025a08, 0x0000010a, + 0x60241800, 0x480c700e, 0x5838000c, 0x80000540, + 0x05020002, 0x5838000b, 0x40000800, 0x492c0801, + 0x492c700c, 0x603c0800, 0x0501f019, 0x6022e000, + 0x4a01e004, 0x00020bde, 0x1c01f000, 0x6022e000, + 0x4a01e004, 0x00020be2, 0x1c01f000, 0x600ae000, + 0x6e007000, 0x00114295, 0x0501f06b, 0x600ae000, + 0x42000000, 0x00114295, 0x50007000, 0x05fdf7e3, + 0x84081540, 0x48087010, 0x5838180e, 0x583a580c, + 0x400c0000, 0x60600800, 0x80040c80, 0x58381004, + 0x5838000f, 0x41783000, 0x80000540, 0x05020004, + 0x84183540, 0x90081483, 0x05000037, 0x40080000, + 0x80040480, 0x05001002, 0x40080800, 0x4004b000, + 0x412c0000, 0x800c0400, 0x4000a800, 0x5838000a, + 0x5838100d, 0x8008a400, 0x4c080000, 0x4c040000, + 0x4c0c0000, 0x4c380000, 0x0501fdca, 0x5c007000, + 0x5c001800, 0x5c000800, 0x40040000, 0x58381004, + 0x80080480, 0x48007004, 0x90000583, 0x05000002, + 0x84183500, 0x5c000000, 0x80041400, 0xb00804a0, + 0x05020003, 0x84183542, 0x41781000, 0x400c0000, + 0x80041c00, 0x900c0498, 0x05020003, 0x84183544, + 0x40001800, 0x40080800, 0x4804700d, 0x480c700e, + 0x40180000, 0x0c01f001, 0x00020c29, 0x00020c2c, + 0x00020c2a, 0x00020c29, 0x00020bc5, 0x00020c2c, + 0x00020c2a, 0x00020c29, 0x0101fe15, 0x5838100f, + 0x0135f72f, 0x5838080d, 0x90040402, 0x5838100a, + 0x80080400, 0x50001000, 0x800811c0, 0x05020041, + 0x58381810, 0x8c0c0506, 0x0502000b, 0x6006e000, + 0x583a580b, 0x4978700b, 0x49787010, 0x592c0208, + 0x82000500, 0x000000ff, 0x90000592, 0x05fc064b, + 0x05fdf602, 0x8c0c0502, 0x05020028, 0x8c0c0508, + 0x05000016, 0x5838080c, 0x5838000e, 0x80002d40, + 0x0502000b, 0x4c380000, 0x0105f9a8, 0x5c007000, + 0x05fc078b, 0x412c0800, 0x583a580c, 0x48065801, + 0x4a000a08, 0x0000010a, 0x60242800, 0x58381811, + 0x58382012, 0x58381013, 0x80040c05, 0x480c0800, + 0x48100801, 0x48080802, 0x6006e000, 0x583a580b, + 0x4978700b, 0x49787010, 0x592c0208, 0x82000d00, + 0x000000ff, 0xb00405b2, 0x05fc0628, 0x592c1001, + 0xb00405ba, 0x05fe054a, 0x58080409, 0x8c000510, + 0x05fc0622, 0x05fdf6dd, 0x8c0c0504, 0x05fe07ef, + 0x840c1d44, 0x480c7010, 0x58381811, 0x58382012, + 0x58381013, 0x480c7007, 0x48107008, 0x0135f72f, + 0x5838000a, 0x80040c00, 0x90381c07, 0x54041800, + 0x80040800, 0x800c1800, 0x54041800, 0x0135f72f, + 0x80140110, 0x0134001b, 0x80000040, 0x0134001b, + 0x4a01e007, 0x00020c82, 0x05fdf485, 0x4d2c0000, + 0x0105f9a8, 0x412c6800, 0x5c025800, 0x05000006, + 0x48365805, 0x90346c01, 0x0501f80c, 0x05fc05b7, + 0x0135f029, 0x492de006, 0x6022e000, 0x4a01e004, + 0x00020c91, 0x1c01f000, 0x6006e000, 0x412c6800, + 0x58f25806, 0x05fdf7f3, 0x592c4812, 0x592c020b, + 0x80004540, 0x05000023, 0x592c040b, 0x80002540, + 0x05000020, 0x592c7001, 0x80204040, 0x05000008, + 0x90200485, 0x05001006, 0x58387001, 0x803871c0, + 0x05000018, 0x80004540, 0x05fe07fa, 0x82204400, + 0x00100042, 0x50200000, 0x80380c00, 0x58042800, + 0x58043001, 0x58043802, 0x4838680d, 0x4800680c, + 0x49786814, 0x49786815, 0x48146810, 0x48186811, + 0x481c6812, 0x4820680e, 0x48246813, 0x80102040, + 0x4810680f, 0x05020005, 0x80000580, 0x1c01f000, + 0x90000541, 0x1c01f000, 0x80204000, 0x50201800, + 0x800c19c0, 0x0502000a, 0x58380001, 0x80007540, + 0x05fc07f8, 0x58380208, 0x9000050f, 0x82000400, + 0x0010004b, 0x50004000, 0x50201800, 0x4820680e, + 0x480c680c, 0x4838680d, 0x05fdf7ec, 0x4df00000, + 0x4203e000, 0x50000000, 0x5994002f, 0x80000540, + 0x05000183, 0x4c000000, 0x5c000000, 0x59947824, + 0x48032830, 0x803c0480, 0x05001004, 0x05000003, + 0x48032824, 0x0501f05f, 0x417a0800, 0x81060800, + 0x82000400, 0x000003e8, 0x05fc27fd, 0x48032824, + 0x59940033, 0x80000d40, 0x05000006, 0x80040840, + 0x48072833, 0x05020003, 0x59940034, 0x0801f800, + 0x59a8001e, 0x8400057e, 0x4803501e, 0x59a80024, + 0x8400057e, 0x48035024, 0x59a80011, 0x8400057e, + 0x48035011, 0x59a80012, 0x8400057e, 0x48035012, + 0x0125fac5, 0x0502000a, 0x59a8087b, 0x800409c0, + 0x05000007, 0xa0040c81, 0x4807507b, 0x05000002, + 0x05021003, 0x497b507b, 0x0141fb83, 0x59a800aa, + 0x8c000500, 0x0500000e, 0x59a8087b, 0x800409c0, + 0x0500000b, 0xa0040c81, 0x4807507b, 0x05000002, + 0x05021007, 0x497b507b, 0x42000000, 0x00111c8f, + 0x50000800, 0x84040d48, 0x44040000, 0x59a800bd, + 0x81041400, 0x480b50bd, 0x59a808bf, 0x81040c01, + 0x82040480, 0x00028f5a, 0x05001002, 0x41780800, + 0x480750bf, 0x81040040, 0x05000002, 0x4907c857, + 0x59e40852, 0x59a800be, 0x80040580, 0x05000004, + 0x480bc857, 0x59e40052, 0x480350be, 0x59940031, + 0x81040400, 0x48032831, 0x013dfbef, 0x5998b002, + 0x8058b1c0, 0x05000008, 0x40f25800, 0x592e5801, + 0x592c020a, 0x8c000500, 0x05fe0a2b, 0x8058b040, + 0x05fe07fb, 0x59940000, 0x90000580, 0x05020005, + 0x59940031, 0x48032832, 0x497b2831, 0x64072800, + 0x4c0c0000, 0x58d400e5, 0x8c000514, 0x05000013, + 0x59940807, 0x59941006, 0x59940030, 0x80081c80, + 0x05001004, 0x05000003, 0x480f2806, 0x0501f00b, + 0x80040840, 0x48072807, 0x05020004, 0x59940008, + 0x0801f800, 0x0501f005, 0x400c0000, 0x900c1c0a, + 0x05fc27f8, 0x480f2806, 0x5c001800, 0x4d180000, + 0x59c80040, 0x8c000534, 0x05020025, 0x417a3000, + 0x91947c09, 0x60042000, 0x58d400e5, 0x80100500, + 0x05020007, 0x801020c4, 0x903c7c05, 0x811a3000, + 0x91180585, 0x05fe07f9, 0x0501f019, 0x583c0801, + 0x583c1000, 0x59940030, 0x80080480, 0x05001005, + 0x05000004, 0x48007800, 0x80000040, 0x05fe17f2, + 0x80040840, 0x48047801, 0x05000006, 0x9000040a, + 0x48007800, 0x05fc27fb, 0xb004053f, 0x05fdf7ea, + 0x583c0004, 0x4c3c0000, 0x4c100000, 0x0801f800, + 0x5c002000, 0x5c007800, 0x05fdf7e3, 0x5c023000, + 0x8d0c0516, 0x05020017, 0x8d0c0522, 0x0500001e, + 0x5998b008, 0x8058b1c0, 0x05000012, 0x41765800, + 0x592e5800, 0x592c0003, 0x80001540, 0x05000006, + 0x05002008, 0x59940030, 0x80080480, 0x05021004, + 0x497a5803, 0x05f9fe95, 0x0501f002, 0x48025803, + 0x8058b040, 0x05fe07f3, 0x8d0c0520, 0x0500000a, + 0x59940023, 0x80001540, 0x05000007, 0x05002006, + 0x59940030, 0x80080480, 0x05021002, 0x80000580, + 0x48032823, 0x59940026, 0x80000d40, 0x05000012, + 0x59941025, 0x59940030, 0x80080480, 0x05001005, + 0x05000004, 0x48032825, 0x80000040, 0x0502100a, + 0x80040840, 0x48072826, 0x05020004, 0x59940027, + 0x0801f800, 0x0501f004, 0x9000040a, 0x48032825, + 0x05fc27f8, 0x59940004, 0x80000d40, 0x05000012, + 0x59941003, 0x59940030, 0x80080480, 0x05001005, + 0x05000004, 0x48032803, 0x80000040, 0x0502100a, + 0x80040840, 0x48072804, 0x05020004, 0x59940005, + 0x0801f800, 0x0501f004, 0x9000040a, 0x48032803, + 0x05fc27f8, 0x5994002a, 0x80000d40, 0x05000012, + 0x59941028, 0x59940030, 0x80080480, 0x05001005, + 0x05000004, 0x48032828, 0x80000040, 0x0502100a, + 0x80040840, 0x4807282a, 0x05020004, 0x5994002b, + 0x0801f800, 0x0501f004, 0x9000040a, 0x48032828, + 0x05fc27f8, 0x5994002d, 0x80000d40, 0x05000012, + 0x5994102c, 0x59940030, 0x80080480, 0x05001005, + 0x05000004, 0x4803282c, 0x80000040, 0x0502100a, + 0x80040840, 0x4807282d, 0x05020004, 0x5994002e, + 0x0801f800, 0x0501f004, 0x9000040a, 0x4803282c, + 0x05fc27f8, 0x59a8081e, 0x8c04053e, 0x0500001b, + 0x84040d3e, 0x4807501e, 0x05000018, 0x59940030, + 0x4c000000, 0x82000400, 0x000003e8, 0x48032830, + 0x80040480, 0x05001004, 0x05000003, 0x4803501e, + 0x0501f00c, 0x4c000000, 0x013dfcff, 0x013c0d6f, + 0x5c000000, 0x59a8081d, 0x80040400, 0x05fc27ff, + 0x800001c0, 0x05020002, 0x40040000, 0x4803501e, + 0x5c000000, 0x48032830, 0x59a80811, 0x8c04053e, + 0x05000021, 0x84040d3e, 0x48075011, 0x0500001e, + 0x59940030, 0x4c000000, 0x82000400, 0x000003e8, + 0x48032830, 0x80040480, 0x05001009, 0x05000008, + 0x48035011, 0x4c000000, 0x59a8100f, 0x5808040b, + 0x8c000514, 0x5c000000, 0x0500000d, 0x4c000000, + 0x60480000, 0x59a8100f, 0x0141f852, 0x013c0d6f, + 0x5c000000, 0x90000400, 0x05fc27ff, 0x800001c0, + 0x05020002, 0x60000000, 0x48035011, 0x5c000000, + 0x48032830, 0x59a80812, 0x8c04053e, 0x05000023, + 0x84040d3e, 0x48075012, 0x05000020, 0x59940030, + 0x4c000000, 0x82000400, 0x000003e8, 0x48032830, + 0x80040480, 0x05001009, 0x05000008, 0x48035012, + 0x4c000000, 0x59a81010, 0x5808040b, 0x8c000514, + 0x5c000000, 0x0500000f, 0x4c000000, 0x60500000, + 0x59a81010, 0x0141f852, 0x013c0d6f, 0x5c000000, + 0x82000400, 0x000927c0, 0x05fc27fe, 0x800001c0, + 0x05020003, 0x42000000, 0x000927c0, 0x48035012, + 0x5c000000, 0x48032830, 0x5994082f, 0x59940030, + 0x80040480, 0x01001e15, 0x4803282f, 0x59940000, + 0x0c01f001, 0x00020e5b, 0x00107aee, 0x00107ba7, + 0x5c03e000, 0x1c01f000, 0x5994002f, 0x80000000, + 0x4803282f, 0x4203e000, 0x70000000, 0x1c01f000, + 0x813e79c0, 0x05020016, 0x59a800d9, 0x80000040, + 0x05fe07ff, 0x58d400ea, 0x8c000516, 0x05fe07fe, + 0x91300400, 0x4801a8e1, 0x592c1003, 0x5808720a, + 0x8c380500, 0x0500000a, 0x592c1c0e, 0x820c1d00, + 0x000000c0, 0xb00c1d80, 0x05000005, 0x592c1813, + 0x5808000d, 0x800c0400, 0x4800100d, 0x1c01f000, + 0x5c000000, 0x4c000000, 0x4803c857, 0x4807c857, + 0x59302a03, 0x98140486, 0x05000005, 0x601c2800, + 0x0501f003, 0x60040800, 0x601c2800, 0x59325809, + 0x832c0580, 0x001141cc, 0x05000020, 0x832c0500, + 0x00ff0000, 0x05000026, 0x592c1000, 0x59301808, + 0x59302027, 0x801021c0, 0x0502003a, 0x592c040e, + 0x480a6009, 0x48166203, 0x8c000510, 0x0502001d, + 0x48065a0a, 0x820c0500, 0x04000800, 0x82000580, + 0x04000800, 0x0500002c, 0xa1300494, 0x0502100a, + 0xa1300496, 0x05001008, 0x592c040e, 0x8c00051e, + 0x05020005, 0x0141fc01, 0x59300202, 0x48025a10, + 0x4932580d, 0x05f9fd00, 0x417a7800, 0x59300009, + 0x82000d80, 0x001141cc, 0x05020003, 0x58040000, + 0x48026009, 0x80025d40, 0x05fe07b2, 0x1c01f000, + 0x832c0580, 0x001141cc, 0x05fc07f4, 0x592c040b, + 0x8c000510, 0x05fe07f1, 0x98040481, 0x05fe07dd, + 0x456a5800, 0x412ed000, 0x815eb800, 0x592c0001, + 0x80000d40, 0x05020006, 0x59c80000, 0x82000540, + 0x00001200, 0x48039000, 0x05fdf7e4, 0x05f9fcca, + 0x05fdf7e2, 0x59300021, 0x48025c13, 0x05fdf7d3, + 0x497a6027, 0x45682000, 0x4012d000, 0x815eb800, 0x59c80000, 0x82000540, 0x00001200, 0x48039000, - 0x05fdf7e4, 0x05f9fcdb, 0x05fdf7e2, 0x59300021, - 0x48025c13, 0x05fdf7d4, 0x497a6027, 0x45682000, - 0x4012d000, 0x815eb800, 0x59c80000, 0x82000540, - 0x00001200, 0x48039000, 0x05fdf7c0, 0x59300416, - 0x8c000510, 0x05000002, 0x84040d52, 0x48066004, - 0x497a6000, 0x497a6001, 0x58d400ea, 0x8c000516, - 0x05fe07fe, 0x83300400, 0xa0000000, 0x4801a8e1, - 0x1c01f000, 0x59300416, 0x8c000510, 0x05000002, - 0x84040d52, 0x59300004, 0x82000500, 0x00000100, - 0x80040d40, 0x48066004, 0x58d400ea, 0x8c000516, - 0x05fe07fe, 0x83300400, 0x40000000, 0x4801a8e1, - 0x1c01f000, 0x58d400ea, 0x82001500, 0x32000018, - 0x01420562, 0x8c000510, 0x0500002f, 0x58d410e0, - 0x82080500, 0xfffff000, 0x0502000d, 0x900a350f, - 0x80081108, 0x480bc857, 0x90080487, 0x01021dda, - 0x90080481, 0x01001dda, 0x1201f000, 0x00108566, - 0x84040d10, 0x48066004, 0x0501f019, 0x840a653e, - 0x59300804, 0x8c040520, 0x05fc07fa, 0x82040d00, - 0xfffefeff, 0x48066004, 0x8c08053e, 0x05020009, - 0x8c040514, 0x05000004, 0x05fdff72, 0x0501f8ff, - 0x0501f00b, 0x604e7000, 0x0501f920, 0x0501f008, - 0x8c040514, 0x05000004, 0x05fdff6a, 0x0501f8f7, - 0x0501f003, 0x61267000, 0x0501f918, 0x58d400ea, - 0x82001500, 0x32000018, 0x01420562, 0x8c000510, - 0x05fe07d3, 0x1c01f000, 0x59bc00ea, 0x82001500, - 0xb2000018, 0x0142058c, 0x8c000510, 0x05000009, - 0x59bc10e0, 0x80080108, 0x900a350f, 0x9800048b, - 0x05000005, 0x4803c857, 0x1201f000, 0x00108590, - 0x1c01f000, 0x4d300000, 0x59bc00ea, 0x8c000510, - 0x05fc07fe, 0x59be60e0, 0x813261c0, 0x01000dda, - 0x59300804, 0x8c04051c, 0x05020068, 0x59300027, - 0x80006d40, 0x05000065, 0x83180400, 0x00020f72, - 0x50001000, 0x5808020f, 0x8c000500, 0x0502005d, - 0x58340811, 0x8c040500, 0x0502002b, 0x5808000e, - 0x50000000, 0x48001003, 0x5808080c, 0x80040c80, - 0x58340011, 0x8c000504, 0x05000007, 0x5834200d, - 0x5834280e, 0x48101007, 0x48141008, 0x84000504, - 0x48006811, 0x5834180c, 0x5834300f, 0x58345010, - 0x40180000, 0x80284480, 0x05021002, 0x40280000, - 0x80000104, 0x80044480, 0x05001002, 0x40000800, - 0xb0040480, 0x05001002, 0x61000800, 0x48041004, - 0x800408c4, 0x48041005, 0x40040000, 0x80285480, - 0x48286810, 0x80184c80, 0x05000016, 0x4824680f, - 0x802851c0, 0x05000015, 0x05f9f8e5, 0x5c026000, - 0x1c01f000, 0x84040d00, 0x48046811, 0x5808080b, - 0x5834200d, 0x5834280e, 0x59301809, 0x580c3004, - 0x48181006, 0x48041003, 0x48101007, 0x48141008, - 0x49301010, 0x48341011, 0x60000801, 0x05fdf7d6, - 0x800c1840, 0x05020005, 0x58340011, 0x84000542, - 0x48006811, 0x05fdf7e9, 0x5834700a, 0x5834200b, - 0x80102000, 0x50100000, 0x80000540, 0x05000010, - 0x80383400, 0x58183800, 0x58184001, 0x58184802, - 0x4810680b, 0x480c680c, 0x481c680d, 0x4820680e, - 0x4824680f, 0x802851c0, 0x05fc07ec, 0x58340011, - 0x84000544, 0x48006811, 0x05fdf7d4, 0x58387001, - 0x4838680a, 0x42002000, 0x001012a3, 0x05fdf7ea, - 0x84000542, 0x4800120f, 0x4933c857, 0x05fdf7cc, - 0x0010e32d, 0x0010e33f, 0x0010e351, 0x0010e363, - 0x0010e375, 0x5830020f, 0x8c000500, 0x0502001b, - 0x58307810, 0x803c79c0, 0x05000030, 0x58300002, - 0x82000580, 0x00000100, 0x0502002e, 0x583c0c07, - 0x90040586, 0x05000003, 0x90040583, 0x05020027, - 0x58300804, 0x58300003, 0x80040c00, 0x5830000b, - 0x80047c80, 0x823c7d80, 0x00000080, 0x05020002, - 0x40000800, 0x5830000e, 0x44040000, 0x5830000d, - 0x480378e7, 0x1c01f000, 0x4803c856, 0x4978620f, - 0x8c000502, 0x05fc07fc, 0x4803c856, 0x4c300000, - 0x0141fd13, 0x5c006000, 0x58300c0f, 0x800410ca, - 0x82081400, 0x00007600, 0x4a001014, 0x00090000, - 0x800410c8, 0x82081400, 0x0000bf32, 0x58080005, - 0x84000500, 0x48001005, 0x5830000b, 0x5830080e, - 0x44000800, 0x0141fd04, 0x483fc857, 0x05fdf7e6, - 0x4d300000, 0x4d2c0000, 0x4d3c0000, 0x4c300000, - 0x58326010, 0x4933c857, 0x59325809, 0x592c020c, - 0x8400054e, 0x48025a0c, 0x417a7800, 0x0155f815, - 0x5c006000, 0x5c027800, 0x5c025800, 0x5c026000, - 0x05fdf7d5, 0x59a8029c, 0x81640480, 0x05001015, - 0x41626000, 0x41580000, 0x59300a03, 0x90040d80, - 0x05020007, 0x64226203, 0x8166c840, 0x9132c430, - 0x81600480, 0x05021008, 0x1c01f000, 0x91326430, - 0x81300c80, 0x05fc17f5, 0x42026000, 0x00111b00, - 0x05fdf7f2, 0x837ac540, 0x00111b00, 0x1c01f000, - 0x42000000, 0x0010e442, 0x0165ffdc, 0x4967c857, - 0x80026580, 0x1c01f000, 0x83300480, 0x00111b00, - 0x01001dda, 0x41580000, 0x81300480, 0x0502100a, - 0x457a6000, 0x4a026202, 0x0000ffff, 0x05011000, - 0x91300403, 0x4803c840, 0x64b7c842, 0x8166c800, - 0x1c01f000, 0x41540000, 0x81300480, 0x01021dda, - 0xa1300494, 0x05021005, 0x05000004, 0x64026203, - 0x497a6006, 0x1c01f000, 0x59a80098, 0x49335097, - 0x80000000, 0x48035098, 0x457a6000, 0x4a026202, + 0x05fdf7bf, 0x59300416, 0x8c000510, 0x05000002, + 0x84040d52, 0x48066004, 0x497a6000, 0x497a6001, + 0x58d400ea, 0x8c000516, 0x05fe07fe, 0x83300400, + 0xa0000000, 0x4801a8e1, 0x1c01f000, 0x59300416, + 0x8c000510, 0x05000002, 0x84040d52, 0x59300004, + 0x82000500, 0x00000100, 0x80040d40, 0x48066004, + 0x58d400ea, 0x8c000516, 0x05fe07fe, 0x83300400, + 0x40000000, 0x4801a8e1, 0x1c01f000, 0x58d400ea, + 0x82001500, 0x32000018, 0x01460220, 0x8c000510, + 0x0500002f, 0x58d410e0, 0x82080500, 0xfffff000, + 0x0502000d, 0x900a350f, 0x80081108, 0x480bc857, + 0x90080487, 0x01021e15, 0x90080481, 0x01001e15, + 0x1201f000, 0x00108a24, 0x84040d10, 0x48066004, + 0x0501f019, 0x840a653e, 0x59300804, 0x8c040520, + 0x05fc07fa, 0x82040d00, 0xfffefeff, 0x48066004, + 0x8c08053e, 0x05020009, 0x8c040514, 0x05000004, + 0x05fdff71, 0x0501f8fc, 0x0501f00b, 0x604e7000, + 0x0501f922, 0x0501f008, 0x8c040514, 0x05000004, + 0x05fdff69, 0x0501f8f4, 0x0501f003, 0x61267000, + 0x0501f91a, 0x58d400ea, 0x82001500, 0x32000018, + 0x01460220, 0x8c000510, 0x05fe07d3, 0x1c01f000, + 0x59bc00ea, 0x82001500, 0xb2000018, 0x0146024a, + 0x8c000510, 0x05000009, 0x59bc10e0, 0x80080108, + 0x900a350f, 0x9800048b, 0x05000005, 0x4803c857, + 0x1201f000, 0x00108a4e, 0x1c01f000, 0x4d300000, + 0x59bc00ea, 0x8c000510, 0x05fc07fe, 0x59be60e0, + 0x813261c0, 0x01000e15, 0x59300804, 0x8c04051c, + 0x05020068, 0x59300027, 0x80006d40, 0x05000065, + 0x83180400, 0x00020fa9, 0x50001000, 0x5808020f, + 0x8c000500, 0x0502005d, 0x58340811, 0x8c040500, + 0x0502002b, 0x5808000e, 0x50000000, 0x48001003, + 0x5808080c, 0x80040c80, 0x58340011, 0x8c000504, + 0x05000007, 0x5834200d, 0x5834280e, 0x48101007, + 0x48141008, 0x84000504, 0x48006811, 0x5834180c, + 0x5834300f, 0x58345010, 0x40180000, 0x80284480, + 0x05021002, 0x40280000, 0x80000104, 0x80044480, + 0x05001002, 0x40000800, 0xb0040480, 0x05001002, + 0x61000800, 0x48041004, 0x800408c4, 0x48041005, + 0x40040000, 0x80285480, 0x48286810, 0x80184c80, + 0x05000016, 0x4824680f, 0x802851c0, 0x05000015, + 0x05f9f8b6, 0x5c026000, 0x1c01f000, 0x84040d00, + 0x48046811, 0x5808080b, 0x5834200d, 0x5834280e, + 0x59301809, 0x580c3004, 0x48181006, 0x48041003, + 0x48101007, 0x48141008, 0x49301010, 0x48341011, + 0x60000801, 0x05fdf7d6, 0x800c1840, 0x05020005, + 0x58340011, 0x84000542, 0x48006811, 0x05fdf7e9, + 0x5834700a, 0x5834200b, 0x80102000, 0x50100000, + 0x80000540, 0x05000010, 0x80383400, 0x58183800, + 0x58184001, 0x58184802, 0x4810680b, 0x480c680c, + 0x481c680d, 0x4820680e, 0x4824680f, 0x802851c0, + 0x05fc07ec, 0x58340011, 0x84000544, 0x48006811, + 0x05fdf7d4, 0x58387001, 0x4838680a, 0x42002000, + 0x00100042, 0x05fdf7ea, 0x84000542, 0x4800120f, + 0x4933c857, 0x05fdf7cc, 0x001122c8, 0x001122da, + 0x001122ec, 0x001122fe, 0x00112310, 0x5830020f, + 0x8c000500, 0x0502001b, 0x58307810, 0x803c79c0, + 0x05000030, 0x58300002, 0x82000580, 0x00000100, + 0x0502002e, 0x583c0c07, 0x90040586, 0x05000003, + 0x90040583, 0x05020027, 0x58300804, 0x58300003, + 0x80040c00, 0x5830000b, 0x80047c80, 0x823c7d80, + 0x00000080, 0x05020002, 0x40000800, 0x5830000e, + 0x44040000, 0x5830000d, 0x480378e7, 0x1c01f000, + 0x4803c856, 0x4978620f, 0x8c000502, 0x05fc07fc, + 0x4803c856, 0x4c300000, 0x0145f9d1, 0x5c006000, + 0x58300c0f, 0x800410ca, 0x82081400, 0x00007600, + 0x4a001014, 0x00090000, 0x800410c8, 0x82081400, + 0x0000bf32, 0x58080005, 0x84000500, 0x48001005, + 0x5830000b, 0x5830080e, 0x44000800, 0x0145f9c2, + 0x483fc857, 0x05fdf7e6, 0x4d300000, 0x4d2c0000, + 0x4d3c0000, 0x4c300000, 0x58326010, 0x4933c857, + 0x59325809, 0x592c020c, 0x8400054e, 0x48025a0c, + 0x417a7800, 0x0155fd87, 0x5c006000, 0x5c027800, + 0x5c025800, 0x5c026000, 0x05fdf7d5, 0x816404a0, + 0x05001013, 0x41626000, 0x41580000, 0x59300a03, + 0x90040d80, 0x05020007, 0x64226203, 0x8166c840, + 0x9132c430, 0x81600480, 0x05021007, 0x1c01f000, + 0x91326430, 0x81300c80, 0x05fc17f5, 0x40be6000, + 0x05fdf7f3, 0x80bec56f, 0x1c01f000, 0x42000000, + 0x001123e4, 0x0169ff57, 0x4967c857, 0x80026580, + 0x1c01f000, 0x813004af, 0x014c10c4, 0x41580000, + 0x81300480, 0x0502100a, 0x457a6000, 0x4a026202, + 0x0000ffff, 0x05011000, 0x91300403, 0x4803c840, + 0x64b3c842, 0x8166c800, 0x1c01f000, 0x41540000, + 0x81300480, 0x01021e15, 0xa1300494, 0x05021008, + 0x5930102f, 0x82080580, 0x00000800, 0x4802602f, + 0x64026203, 0x497a6006, 0x1c01f000, 0x59a8009b, + 0x80000000, 0x4803509b, 0x5930102f, 0x82080580, + 0x00000800, 0x4802602f, 0x457a6000, 0x4a026202, 0x0000ffff, 0x05011000, 0x91300403, 0x4803c840, - 0x64b7c842, 0x1c01f000, 0x4d340000, 0x4d240000, + 0x64b3c842, 0x1c01f000, 0x4d340000, 0x4d240000, 0x5932481d, 0x5932680a, 0x59300407, 0x9000051f, 0x0c01f804, 0x5c024800, 0x5c026800, 0x1c01f000, - 0x0010942a, 0x00109439, 0x00109453, 0x0002102a, - 0x0010baa6, 0x0010bac1, 0x0002111a, 0x0010942a, - 0x00109439, 0x00107f71, 0x0010949b, 0x0010942a, - 0x0010942a, 0x0010942a, 0x0010942a, 0x0010946b, - 0x0010b373, 0x0010cb60, 0x0010942a, 0x0010942a, - 0x0010942a, 0x0010942a, 0x0010942a, 0x0010942a, - 0x0010942a, 0x0010942a, 0x0010942a, 0x0010942a, - 0x0010942a, 0x0010942a, 0x0010942a, 0x0010942a, - 0x59300203, 0x90000c91, 0x01021dda, 0x0c01f001, - 0x0010946a, 0x0010a076, 0x0002103f, 0x0010a2f9, - 0x0010a3aa, 0x0010946a, 0x0010946a, 0x0010946a, - 0x0010a062, 0x0010946a, 0x0010946a, 0x0010946a, - 0x0010946a, 0x0010a5a1, 0x0010ae80, 0x0010946a, - 0x0010aeaf, 0xb1380498, 0x05021006, 0xb1380480, + 0x0010995c, 0x0010996b, 0x00109985, 0x00021063, + 0x0010c183, 0x0010c19e, 0x00021153, 0x0010995c, + 0x0010996b, 0x0010842a, 0x001099cd, 0x0010995c, + 0x0010995c, 0x0010995c, 0x0010995c, 0x0010999d, + 0x0010b919, 0x0010d2aa, 0x0010995c, 0x0010995c, + 0x0010995c, 0x0010995c, 0x0010995c, 0x0010995c, + 0x0010995c, 0x0010995c, 0x0010995c, 0x0010995c, + 0x0010995c, 0x0010995c, 0x0010995c, 0x0010995c, + 0x59300203, 0x90000c91, 0x01021e15, 0x0c01f001, + 0x0010999c, 0x0010a5bb, 0x00021078, 0x0010a83d, + 0x0010a8ee, 0x0010999c, 0x0010999c, 0x0010999c, + 0x0010a5a7, 0x0010999c, 0x0010999c, 0x0010999c, + 0x0010999c, 0x0010ab13, 0x0010b419, 0x0010999c, + 0x0010b448, 0xb1380498, 0x05021006, 0xb1380480, 0x05001004, 0x4d2c0000, 0x0c01f803, 0x5c025800, - 0x1c01f000, 0x0010a0f0, 0x0010a0f0, 0x0010a0f0, - 0x0010a0f0, 0x0010a0f0, 0x0010a0f1, 0x0010a1ed, - 0x0010a0f0, 0x0010a23e, 0x0010a0f0, 0x0010a0f0, - 0x0010a0f0, 0x0010a0f0, 0x0010a0f0, 0x0010a0f0, - 0x0010a0f0, 0x0010a0f0, 0x0010a0f0, 0x0010a0f0, - 0x0010a1f1, 0x0002105f, 0x0010a0f0, 0x0010a1f0, - 0x0010a1f2, 0x59325809, 0x59300008, 0x8c000536, + 0x1c01f000, 0x0010a634, 0x0010a634, 0x0010a634, + 0x0010a634, 0x0010a634, 0x0010a635, 0x0010a731, + 0x0010a634, 0x0010a782, 0x0010a634, 0x0010a634, + 0x0010a634, 0x0010a634, 0x0010a634, 0x0010a634, + 0x0010a634, 0x0010a634, 0x0010a634, 0x0010a634, + 0x0010a735, 0x00021098, 0x0010a634, 0x0010a734, + 0x0010a736, 0x59325809, 0x59300008, 0x8c000536, 0x0500000f, 0x497a580d, 0x41782800, 0x60303000, 0x60443800, 0x4c5c0000, 0x592cb805, 0x0501f84c, - 0x4d2c0000, 0x405e5800, 0x0105f992, 0x5c025800, + 0x4d2c0000, 0x405e5800, 0x0105f9c9, 0x5c025800, 0x497a5805, 0x5c00b800, 0x0501f01c, 0x59300813, 0x59301402, 0x59340200, 0x8c00050e, 0x05020023, 0x0501f82f, 0x05000005, 0x4a025a08, 0x00000103, 0x497a580d, 0x0501f009, 0x4a025a08, 0x00000103, - 0x64025a0a, 0x497a580d, 0x40040000, 0x0159feba, - 0x80000d40, 0x01520b78, 0x4806580b, 0x480a5c0a, + 0x64025a0a, 0x497a580d, 0x40040000, 0x015dfc60, + 0x80000d40, 0x015608bc, 0x4806580b, 0x480a5c0a, 0x59300008, 0x82000500, 0x04000800, 0x82000580, - 0x04000800, 0x05000017, 0x05f9faf6, 0x0159feb1, + 0x04000800, 0x05000017, 0x05f9fae3, 0x015dfc57, 0x5934000f, 0x8d0c0512, 0x05020005, 0x5934140b, 0x80081040, 0x05001002, 0x480a6c0b, 0x80000540, - 0x05fa0a77, 0x05fdf745, 0x592c020e, 0x8c000502, + 0x05fa0a64, 0x05fdf740, 0x592c020e, 0x8c000502, 0x05fc07dc, 0x800409c0, 0x05fc07e0, 0x592c020c, - 0x8c00050e, 0x05fe07dd, 0x4933c857, 0x0155f703, + 0x8c00050e, 0x05fe07dd, 0x4933c857, 0x0159f49c, 0x59300221, 0x48025c13, 0x05fdf7e8, 0x592c020e, 0x8c000500, 0x0500000d, 0x59300017, 0x592c3813, 0x801c3c80, 0x05000009, 0x64565a0a, 0x8c1c053e, @@ -14629,2070 +15123,2092 @@ static const uint32_t isp_2500_risc_code[] = { 0x812c3c00, 0x50180000, 0x44003800, 0x401cc000, 0x901cc401, 0x585c0813, 0x800409c0, 0x0500003d, 0x4807c857, 0x8c04053e, 0x05020025, 0x5930002b, - 0x80000540, 0x05000018, 0x015dfa98, 0x0500002e, + 0x80000540, 0x05000018, 0x0161f94e, 0x0500002e, 0x4c040000, 0x4c080000, 0x4c0c0000, 0x4c100000, 0x4c140000, 0x40002800, 0x58141003, 0x40040000, - 0x80081480, 0x48082803, 0x40140000, 0x0105ff10, + 0x80081480, 0x48082803, 0x40140000, 0x0105ffae, 0x5c002800, 0x5c002000, 0x5c001800, 0x5c001000, 0x5c000800, 0x592c020a, 0x80000540, 0x0502000b, 0x0501f005, 0x592c040c, 0x8c00051c, 0x05000002, 0x592c0806, 0x4807c857, 0x592c020a, 0x82000540, 0x00001500, 0x48025a0a, 0x0501f016, 0x5930002b, - 0x80000540, 0x0500000e, 0x015dfa98, 0x0500000a, + 0x80000540, 0x0500000e, 0x0161f94e, 0x0500000a, 0x592c020a, 0x82000540, 0x00000700, 0x48025a0a, - 0x5930002b, 0x4c040000, 0x0105ff10, 0x5c000800, + 0x5930002b, 0x4c040000, 0x0105ffae, 0x5c000800, 0x0501f008, 0x64465a0a, 0x05fdf7fa, 0x4807c856, 0x592c020a, 0x82000540, 0x00000700, 0x48025a0a, 0x4404c000, 0x5c00c000, 0x5c00b800, 0x1c01f000, - 0x59300203, 0x90003491, 0x01021dda, 0x0c01f001, - 0x0010badf, 0x0002112f, 0x0010c2aa, 0x0010c2bb, - 0x0002114a, 0x0010badf, 0x0010c39c, 0x00021178, - 0x0010badf, 0x0010badf, 0x0010badf, 0x0010badf, - 0x0010badf, 0x0010badf, 0x0010c8cd, 0x0010badf, - 0x0010c900, 0x91380593, 0x01620241, 0x59300403, - 0xb0027484, 0x01021dda, 0xb0000480, 0x01001dda, - 0x0c01f001, 0x0010c28a, 0x0002113b, 0x0010c28b, - 0x0010c29d, 0x0159f89e, 0x05000005, 0x59a8005e, + 0x59300203, 0x90003491, 0x01021e15, 0x0c01f001, + 0x0010c1bc, 0x00021168, 0x0010c9ad, 0x0010c9be, + 0x00021183, 0x0010c1bc, 0x0010ca9f, 0x000211b1, + 0x0010c1bc, 0x0010c1bc, 0x0010c1bc, 0x0010c1bc, + 0x0010c1bc, 0x0010c1bc, 0x0010d017, 0x0010c1bc, + 0x0010d04a, 0x91380593, 0x01660144, 0x59300403, + 0xb0027484, 0x01021e15, 0xb0000480, 0x01001e15, + 0x0c01f001, 0x0010c98d, 0x00021174, 0x0010c98e, + 0x0010c9a0, 0x0159fe36, 0x05000005, 0x59a80061, 0x48026205, 0x643a6203, 0x1c01f000, 0x59325809, 0x832c0500, 0x00ff0000, 0x05000004, 0x592c0c0e, - 0x8c04051a, 0x0162029a, 0x05fdfd06, 0x05fdf693, + 0x8c04051a, 0x0166019d, 0x05fdfd03, 0x05fdf68e, 0xb1380498, 0x05001007, 0xb13805a1, 0x05000003, - 0xb13805a0, 0x01020dda, 0x4933c857, 0x1c01f000, - 0xb1380588, 0x05000004, 0xb1380593, 0x0160033f, - 0x0101fdda, 0x83300580, 0x00111ad0, 0x05020008, - 0x497a6205, 0x59301202, 0x41780000, 0x0161fc4e, - 0x01600354, 0x411e6000, 0x0161f31f, 0x5930002b, + 0xb13805a0, 0x01020e15, 0x4933c857, 0x1c01f000, + 0xb1380588, 0x05000004, 0xb1380593, 0x01640242, + 0x0101fe15, 0x83300580, 0x00115a74, 0x05020008, + 0x497a6205, 0x59301202, 0x41780000, 0x0165fb4b, + 0x01640257, 0x411e6000, 0x0165f222, 0x5930002b, 0x59301013, 0x5930080a, 0x58040a00, 0x8c04050e, - 0x01620325, 0x800811c0, 0x01620330, 0x5930002b, - 0x80000540, 0x0162033a, 0x59325809, 0x592c040e, - 0x8c00051e, 0x0160031f, 0x64066203, 0x65066403, + 0x01660228, 0x800811c0, 0x01660233, 0x5930002b, + 0x80000540, 0x0166023d, 0x59325809, 0x592c040e, + 0x8c00051e, 0x01640222, 0x64066203, 0x65066403, 0x42000800, 0x80002042, 0x8c00051a, 0x05020002, - 0x84040d54, 0x05fdf534, 0xb1380498, 0x01621360, - 0xb1380480, 0x01601361, 0x0c01f001, 0x0010c369, - 0x00021191, 0x0010c372, 0x0010c377, 0x0010c369, - 0x0010c369, 0x0010c369, 0x0010c369, 0x0010c36a, - 0x0010c36e, 0x0010c36e, 0x0010c369, 0x0010c369, - 0x0010c369, 0x0010c369, 0x0010c36e, 0x0010c369, - 0x0010c36e, 0x0010c369, 0x0010c36a, 0x64066203, - 0x493a6403, 0x42000800, 0x80002042, 0x05fdf516, + 0x84040d54, 0x05fdf532, 0xb1380498, 0x01661263, + 0xb1380480, 0x01641264, 0x0c01f001, 0x0010ca6c, + 0x000211ca, 0x0010ca75, 0x0010ca7a, 0x0010ca6c, + 0x0010ca6c, 0x0010ca6c, 0x0010ca6c, 0x0010ca6d, + 0x0010ca71, 0x0010ca71, 0x0010ca6c, 0x0010ca6c, + 0x0010ca6c, 0x0010ca6c, 0x0010ca71, 0x0010ca6c, + 0x0010ca71, 0x0010ca6c, 0x0010ca6d, 0x64066203, + 0x493a6403, 0x42000800, 0x80002042, 0x05fdf514, + 0x8058b1c0, 0x01000e15, 0x5450a800, 0x8050a000, + 0x8054a800, 0x8058b040, 0x05fe07fc, 0x1c01f000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x00960114, + 0x00000000, 0x00000000, 0x00000000, 0x81cffae4, 0x00000000, 0x00000000, 0x00000000, 0x00000005, 0xfffffffb, 0x02800004, 0x00000000, 0x0000c000, - 0x00000aa2, 0x073fca5a, 0x0705a5a5, 0x01928009, + 0x00000adf, 0x073fca5a, 0x0705a5a5, 0x01928009, 0x070ff0e1, 0x03800006, 0x053f2aaa, 0x070aaaaa, - 0x073f3aaa, 0x070aaaaa, 0x05958014, 0x05308000, - 0x05008000, 0x0600902f, 0x04a007df, 0x0202f051, - 0x042e4020, 0x07840018, 0x028f0361, 0x033e5000, - 0x03020000, 0x068d0025, 0x079306e2, 0x039206e4, - 0x050fb056, 0x040010e6, 0x002fb008, 0x060ff0e6, - 0x00580401, 0x054880ff, 0x06810023, 0x008c04f2, - 0x008a04f1, 0x048b04ef, 0x069f0029, 0x039809b1, - 0x069f0029, 0x079909af, 0x058e8014, 0x07840018, - 0x0678aae5, 0x04004051, 0x06818275, 0x079a0014, - 0x030430d4, 0x04052051, 0x0448b043, 0x06810034, - 0x00252080, 0x022a5001, 0x06780043, 0x030e0000, - 0x030450ff, 0x06780043, 0x03019000, 0x03a182b7, - 0x0481892c, 0x027c0045, 0x03020000, 0x0781812d, - 0x0590803f, 0x0291092a, 0x010410a6, 0x06600052, - 0x030d60ff, 0x05601041, 0x050f80ff, 0x032fa071, - 0x060ff032, 0x055c0441, 0x0681004f, 0x070ff0d1, - 0x055c0403, 0x034a88ff, 0x05818944, 0x01800114, - 0x07480000, 0x07810936, 0x0149b000, 0x0781005f, - 0x06600a01, 0x050f80ff, 0x053fa809, 0x0600001c, - 0x07f00000, 0x030ef039, 0x02860934, 0x07600339, - 0x07601839, 0x050f80ff, 0x063fa051, 0x06000002, - 0x05481000, 0x04818068, 0x06780043, 0x070000f0, - 0x06810073, 0x037c00ff, 0x06000010, 0x04818932, - 0x02800073, 0x06780043, 0x070000f0, 0x037c00ff, - 0x07000030, 0x06810073, 0x06780043, 0x070000f0, - 0x037c00ff, 0x06000020, 0x06810073, 0x02800932, - 0x0379ff00, 0x070fffff, 0x06780043, 0x07f00000, - 0x075a0000, 0x020ef001, 0x02860934, 0x05484000, - 0x02a182da, 0x03680c00, 0x0581897b, 0x04600452, - 0x030d60ff, 0x002fb001, 0x070ff069, 0x00868089, - 0x060ff079, 0x055c0441, 0x07810014, 0x012fb000, - 0x060560fb, 0x0280008f, 0x060ff079, 0x028682b5, - 0x070ff069, 0x055c0441, 0x07810014, 0x060560fb, - 0x070ff0d1, 0x0700f0ff, 0x04600252, 0x030d60ff, - 0x070ff00f, 0x055c040c, 0x058180fa, 0x070ff0d1, - 0x045c040d, 0x054b08ff, 0x07818105, 0x04600801, - 0x050f80ff, 0x053fa809, 0x0600004f, 0x03070039, - 0x0007b001, 0x03079041, 0x0307a000, 0x07489000, - 0x06818134, 0x068d00a4, 0x0207c004, 0x0107d005, - 0x0107e006, 0x0207f007, 0x02080008, 0x01081009, - 0x0108200a, 0x0208300b, 0x018680bb, 0x0448d07a, - 0x058180bb, 0x0448b07a, 0x0681093d, 0x0049707a, - 0x058180bb, 0x04604679, 0x050f80ff, 0x053fa809, - 0x06000001, 0x01680703, 0x076c0303, 0x0481893d, - 0x072d5003, 0x033e5000, 0x05002000, 0x0049107a, - 0x068100c7, 0x070ff00a, 0x0054040b, 0x058280c6, - 0x078d00c3, 0x0008200b, 0x032ff000, 0x010770ff, - 0x0108400c, 0x0208500d, 0x0678007a, 0x06000008, - 0x068100da, 0x078d00cc, 0x04603e79, 0x050f80ff, - 0x073fa041, 0x0600004a, 0x0049707a, 0x01a18a0f, - 0x068d00d3, 0x0678007a, 0x07f00000, 0x010880ff, - 0x02386008, 0x03010000, 0x028000e0, 0x068d00da, - 0x0678007a, 0x07f00000, 0x010880ff, 0x03386000, - 0x03010000, 0x072e6300, 0x020ef07f, 0x03860014, - 0x070ff07d, 0x0450047c, 0x050f80ff, 0x002fa819, - 0x078d00e7, 0x02080001, 0x00081002, 0x0678007a, - 0x05000200, 0x068100ef, 0x0049107a, 0x02a182d3, - 0x01082003, 0x078d00f0, 0x0448b07a, 0x078100f6, - 0x0338600c, 0x03010000, 0x028000f8, 0x02386004, - 0x03010000, 0x072e6c00, 0x03800014, 0x04600252, - 0x030d60ff, 0x07f00000, 0x07f00000, 0x0400e0d0, - 0x0648300e, 0x07810096, 0x072e500c, 0x00208001, - 0x05a007e4, 0x03800014, 0x06780043, 0x070000f0, - 0x0781093f, 0x050020ff, 0x027c0002, 0x06000010, - 0x04810110, 0x027c0002, 0x07000030, 0x04810110, - 0x0380093f, 0x0500d0d1, 0x0279ff0d, 0x070000ff, - 0x0380009a, 0x060ff032, 0x055c0441, 0x0681004f, - 0x020ef002, 0x03860924, 0x04602602, 0x050f80ff, + 0x073f3aaa, 0x070aaaaa, 0x04958016, 0x05308000, + 0x05008000, 0x0600902f, 0x070ff02e, 0x055c0409, + 0x02a1880d, 0x0202f051, 0x042e4020, 0x0684001a, + 0x028f037c, 0x033e5000, 0x03020000, 0x078d0027, + 0x04930701, 0x01920703, 0x050fb056, 0x040010e6, + 0x002fb008, 0x060ff0e6, 0x00580401, 0x054880ff, + 0x06810025, 0x028c050d, 0x038a050c, 0x078b050a, + 0x079f002b, 0x039809ed, 0x079f002b, 0x079909eb, + 0x048e8016, 0x0684001a, 0x0678aae5, 0x04004051, + 0x0681828c, 0x069a0016, 0x030430d4, 0x04052051, + 0x0448b043, 0x07810036, 0x00252080, 0x022a5001, + 0x06780043, 0x030e0000, 0x030450ff, 0x06780043, + 0x03019000, 0x03a182d8, 0x05818960, 0x027c0045, + 0x03020000, 0x07818135, 0x05908041, 0x0291095e, + 0x010410a6, 0x06600052, 0x030d60ff, 0x05601041, + 0x050f80ff, 0x032fa071, 0x060ff032, 0x055c0441, + 0x06810051, 0x070ff0d1, 0x055c0403, 0x034a88ff, + 0x05818978, 0x0080011c, 0x07480000, 0x0781096a, + 0x0149b000, 0x06810061, 0x06600a01, 0x050f80ff, + 0x053fa809, 0x0600001c, 0x07f00000, 0x030ef039, + 0x02860968, 0x07600339, 0x07601839, 0x050f80ff, + 0x063fa051, 0x06000002, 0x05481000, 0x0581806a, + 0x06780043, 0x070000f0, 0x06810075, 0x037c00ff, + 0x06000010, 0x05818966, 0x02800075, 0x06780043, + 0x070000f0, 0x037c00ff, 0x07000030, 0x06810075, + 0x06780043, 0x070000f0, 0x037c00ff, 0x06000020, + 0x06810075, 0x03800966, 0x0379ff00, 0x070fffff, + 0x06780043, 0x07f00000, 0x075a0000, 0x020ef001, + 0x02860968, 0x05484000, 0x02a182fd, 0x03680c00, + 0x058189b7, 0x04600452, 0x030d60ff, 0x002fb001, + 0x070ff069, 0x0186808b, 0x060ff079, 0x055c0441, + 0x06810016, 0x012fb000, 0x060560fb, 0x02800091, + 0x060ff079, 0x038682d4, 0x070ff069, 0x055c0441, + 0x06810016, 0x060560fb, 0x070ff0d1, 0x0700f0ff, + 0x04600252, 0x030d60ff, 0x070ff00f, 0x055c040c, + 0x058180fc, 0x070ff0d1, 0x045c040d, 0x054b08ff, + 0x0681810d, 0x04600801, 0x050f80ff, 0x053fa809, + 0x0600004f, 0x03070039, 0x0007b001, 0x03079041, + 0x0307a000, 0x07489000, 0x0781813c, 0x078d00a6, + 0x0207c004, 0x0107d005, 0x0107e006, 0x0207f007, + 0x02080008, 0x01081009, 0x0108200a, 0x0208300b, + 0x018680bd, 0x0448d07a, 0x058180bd, 0x0448b07a, + 0x07810971, 0x0049707a, 0x058180bd, 0x04604679, + 0x050f80ff, 0x053fa809, 0x06000001, 0x01680703, + 0x076c0303, 0x05818971, 0x072d5003, 0x033e5000, + 0x05002000, 0x0049107a, 0x078100c9, 0x070ff00a, + 0x0054040b, 0x048280c8, 0x078d00c5, 0x0008200b, + 0x032ff000, 0x010770ff, 0x0108400c, 0x0208500d, + 0x0678007a, 0x06000008, 0x068100dc, 0x068d00ce, + 0x04603e79, 0x050f80ff, 0x073fa041, 0x0600004a, + 0x0049707a, 0x01a18a4b, 0x068d00d5, 0x0678007a, + 0x07f00000, 0x010880ff, 0x02386008, 0x03010000, + 0x038000e2, 0x068d00dc, 0x0678007a, 0x07f00000, + 0x010880ff, 0x03386000, 0x03010000, 0x072e6300, + 0x020ef07f, 0x02860016, 0x070ff07d, 0x0450047c, + 0x050f80ff, 0x002fa819, 0x068d00e9, 0x02080001, + 0x00081002, 0x0678007a, 0x05000200, 0x068100f1, + 0x0049107a, 0x03a182f6, 0x01082003, 0x068d00f2, + 0x0448b07a, 0x068100f8, 0x0338600c, 0x03010000, + 0x038000fa, 0x02386004, 0x03010000, 0x072e6c00, + 0x02800016, 0x04600252, 0x030d60ff, 0x07f00000, + 0x07f00000, 0x0400e0d0, 0x0648300e, 0x06810098, + 0x072e500c, 0x00208001, 0x062d6002, 0x050fd00c, + 0x07f00000, 0x07f00000, 0x070ff0d1, 0x050fd0ff, + 0x05a00812, 0x02800016, 0x06780043, 0x070000f0, + 0x06810973, 0x050020ff, 0x027c0002, 0x06000010, + 0x05810118, 0x027c0002, 0x07000030, 0x05810118, + 0x02800973, 0x0500d0d1, 0x0279ff0d, 0x070000ff, + 0x0380009c, 0x060ff032, 0x055c0441, 0x06810051, + 0x020ef002, 0x02860958, 0x04602602, 0x050f80ff, 0x053fa811, 0x06000008, 0x060ff0d0, 0x055c0411, - 0x0179feff, 0x0700ffff, 0x05818924, 0x0448b043, - 0x0481012c, 0x072d6000, 0x0179fd12, 0x0600001f, + 0x0179feff, 0x0700ffff, 0x04818958, 0x0448b043, + 0x04810134, 0x072d6000, 0x0179fd12, 0x0600001f, 0x060ff0d0, 0x0379fcff, 0x0600001f, 0x055c0412, - 0x05818924, 0x0280004f, 0x027c0045, 0x03040000, - 0x0481013d, 0x027c0045, 0x03080000, 0x0681092a, - 0x0380003f, 0x06600a79, 0x050f80ff, 0x053fa80a, - 0x06000010, 0x028000a4, 0x05601041, 0x050f80ff, - 0x032fa071, 0x0280004f, 0x0204a051, 0x06780043, - 0x070000f0, 0x037c00ff, 0x06000010, 0x07818266, - 0x06600052, 0x030d60ff, 0x00948926, 0x050fb056, - 0x044880e6, 0x05818014, 0x060ff0d0, 0x0179feff, - 0x0700ffff, 0x057dfeff, 0x0700ffff, 0x07810924, - 0x053f2000, 0x07030000, 0x019d8014, 0x070ff093, - 0x045a0201, 0x070ff093, 0x045c0401, 0x06818152, + 0x04818958, 0x02800051, 0x027c0045, 0x03040000, + 0x04810145, 0x027c0045, 0x03080000, 0x0681095e, + 0x03800041, 0x06600a79, 0x050f80ff, 0x053fa80a, + 0x06000010, 0x038000a6, 0x05601041, 0x050f80ff, + 0x032fa071, 0x02800051, 0x0204a051, 0x06780043, + 0x070000f0, 0x037c00ff, 0x06000010, 0x0781827d, + 0x06600052, 0x030d60ff, 0x0194895a, 0x050fb056, + 0x044880e6, 0x04818016, 0x060ff0d0, 0x0179feff, + 0x0700ffff, 0x057dfeff, 0x0700ffff, 0x06810958, + 0x053f2000, 0x07030000, 0x009d8016, 0x070ff093, + 0x045a0201, 0x070ff093, 0x045c0401, 0x0781815a, 0x02046092, 0x04002046, 0x060ff002, 0x045c0401, - 0x0703a0ff, 0x04600202, 0x00540401, 0x07828160, + 0x0703a0ff, 0x04600202, 0x00540401, 0x06828168, 0x04500425, 0x070060ff, 0x0730ffff, 0x0700000f, - 0x0742000f, 0x048102ad, 0x07a0090c, 0x0648a002, - 0x07818163, 0x00047089, 0x070ff047, 0x045c0443, - 0x077800ff, 0x07f00000, 0x068182ab, 0x07780047, - 0x0500e000, 0x04818913, 0x070ff006, 0x008601f1, + 0x0742000f, 0x058102c6, 0x06a00940, 0x0648a002, + 0x0681816b, 0x00047089, 0x070ff047, 0x045c0443, + 0x077800ff, 0x07f00000, 0x068182c2, 0x07780047, + 0x0500e600, 0x05818947, 0x070ff006, 0x01860200, 0x0179fe47, 0x0700000f, 0x010480ff, 0x056c7048, - 0x0681817c, 0x007a0d4a, 0x04003801, 0x0220f001, - 0x00800189, 0x07608e48, 0x034a60ff, 0x0700f0ff, + 0x07818184, 0x007a0d4a, 0x04003801, 0x0220f001, + 0x00800191, 0x07608e48, 0x034a60ff, 0x0700f0ff, 0x074b88ff, 0x037000ff, 0x07000600, 0x05500448, 0x074d00ff, 0x045a044a, 0x0304a0ff, 0x070ff00f, - 0x01540406, 0x048201f1, 0x04031051, 0x0349c0e4, - 0x048101e0, 0x062d6001, 0x07f00000, 0x060ff0d0, - 0x034900ff, 0x068181e0, 0x072e500c, 0x062d6002, + 0x01540406, 0x05820200, 0x04031051, 0x0349c0e4, + 0x048101ef, 0x062d6001, 0x07f00000, 0x060ff0d0, + 0x034900ff, 0x068181ef, 0x072e500c, 0x062d6002, 0x07f00000, 0x0204f0d0, 0x0079fe4f, 0x070000ff, - 0x050580ff, 0x01540436, 0x078281d8, 0x060ff058, - 0x0054043b, 0x058201d8, 0x072d6000, 0x044b044f, + 0x050580ff, 0x01540436, 0x078281e7, 0x060ff058, + 0x0054043b, 0x058201e7, 0x072d6000, 0x044b044f, 0x050580ff, 0x0004d0d0, 0x0379ff4d, 0x0700ffff, - 0x0104e0d1, 0x0379ff4e, 0x0700ffff, 0x079081a6, - 0x0291092a, 0x0500e0a6, 0x0279ff0e, 0x0700ffff, + 0x0104e0d1, 0x0379ff4e, 0x0700ffff, 0x069081ae, + 0x0291095e, 0x0500e0a6, 0x0279ff0e, 0x0700ffff, 0x04600e0e, 0x050f80ff, 0x032fa009, 0x07f00000, - 0x074b0000, 0x056c0e00, 0x048101dc, 0x0660060e, + 0x074b0000, 0x056c0e00, 0x058101eb, 0x0660060e, 0x050f80ff, 0x032fa009, 0x0379ff00, 0x070000ff, - 0x076c0000, 0x068181da, 0x06602e0e, 0x050f80ff, - 0x032fa009, 0x030ef000, 0x028681bf, 0x066a0331, - 0x00201008, 0x0460040e, 0x050f80ff, 0x032fa009, - 0x07780000, 0x07ffff00, 0x045a0458, 0x070000ff, + 0x076c0000, 0x068181e9, 0x06602e0e, 0x050f80ff, + 0x032fa009, 0x030ef000, 0x028681c7, 0x066a0331, + 0x04605e0e, 0x050f80ff, 0x032fa009, 0x07780000, + 0x06000008, 0x048101ce, 0x0045e04a, 0x00201008, + 0x0460040e, 0x050f80ff, 0x032fa009, 0x07780000, + 0x07ffff00, 0x045a0458, 0x070000ff, 0x04002051, + 0x06003051, 0x01204000, 0x07305000, 0x07000060, + 0x03206009, 0x05007022, 0x0460040e, 0x050f80ff, + 0x032fa042, 0x07f00000, 0x0405804f, 0x0460520e, + 0x050f80ff, 0x053fa812, 0x06000026, 0x00800213, + 0x066a0531, 0x018001ee, 0x046a0731, 0x018001ee, + 0x066a0931, 0x018001ee, 0x046a0b31, 0x0405804f, + 0x04950210, 0x07a0031d, 0x02868213, 0x06780043, + 0x070000f0, 0x037c00ff, 0x07000030, 0x0481020e, + 0x0134bfff, 0x070fffff, 0x0104102e, 0x050fd041, + 0x07602e41, 0x050f80ff, 0x06000051, 0x032fa00a, + 0x01800236, 0x07608e48, 0x034a60ff, 0x00540425, + 0x05810205, 0x06828208, 0x06a00379, 0x02209016, + 0x0380097e, 0x0495020e, 0x07a0031d, 0x0086020e, + 0x0202f00e, 0x052e4030, 0x040fd02f, 0x06a00379, + 0x02800016, 0x0400e02f, 0x042e4020, 0x0202f051, + 0x0004100e, 0x0079fe31, 0x070000ff, 0x0481022c, + 0x06602e0e, 0x050f80ff, 0x06780031, 0x06000004, + 0x0481021f, 0x04300ead, 0x010deadd, 0x0080022a, + 0x07000033, 0x032fa00a, 0x0079fe58, 0x070000ff, + 0x070000ff, 0x04602c0e, 0x050f80ff, 0x017a0100, + 0x03400000, 0x032fa00a, 0x0080022c, 0x032fa00a, + 0x07f00000, 0x044b8c31, 0x045a040e, 0x0104b0ff, + 0x004980e5, 0x07818236, 0x06780043, 0x070000f0, + 0x037c00ff, 0x07000030, 0x078109b4, 0x024a6c46, + 0x04500423, 0x050070ff, 0x03620024, 0x050080ff, + 0x04004046, 0x0700500f, 0x03206000, 0x05601048, + 0x0700a0ff, 0x0700900a, 0x070ff005, 0x04500446, + 0x00540425, 0x05820269, 0x07601e22, 0x050f80ff, + 0x063fa032, 0x06000002, 0x03203000, 0x01204000, + 0x03205000, 0x0120b000, 0x0320c000, 0x07601841, + 0x050f80ff, 0x043fa852, 0x06000001, 0x070ff056, + 0x056c02ff, 0x050fb0ff, 0x070560ff, 0x03079041, + 0x05601041, 0x050f80ff, 0x073fa011, 0x0600003d, + 0x06780043, 0x07f00000, 0x065a007a, 0x010880ff, + 0x033e5000, 0x05002000, 0x06a00316, 0x048d0262, + 0x0208a04a, 0x0108b04b, 0x02386001, 0x03010000, + 0x072e6300, 0x028000e3, 0x0500d00a, 0x05500405, + 0x014a68ff, 0x070090ff, 0x0154040a, 0x0700c0ff, + 0x0600a023, 0x0500b024, 0x02206001, 0x07601e22, + 0x050f80ff, 0x063fa04a, 0x06000002, 0x07f00000, + 0x07601822, 0x050f80ff, 0x043fa819, 0x06000001, + 0x0600a00d, 0x0080024c, 0x06780043, 0x070000f0, + 0x050010ff, 0x027c0001, 0x07000030, 0x05810287, + 0x027c0001, 0x06000020, 0x0781094e, 0x03800966, + 0x0548e0e4, 0x0781094e, 0x0334a000, 0x03080000, + 0x0180014b, 0x074860ff, 0x068182ad, 0x054880ff, + 0x06810016, 0x070ff056, 0x050fb0ff, 0x044880e5, + 0x04810298, 0x067800e6, 0x07000041, 0x04818016, + 0x0180029f, 0x056c02ff, 0x050fb0ff, 0x070560ff, + 0x072e5300, 0x067800e6, 0x07000041, 0x04818016, + 0x072d5003, 0x033e5000, 0x05002000, 0x06780043, + 0x07f00000, 0x010880ff, 0x050fd0ff, 0x058d02a6, + 0x03386005, 0x03010000, 0x033e6000, 0x0700000c, + 0x052e5200, 0x02800016, 0x069a0016, 0x05301fff, + 0x0700000f, 0x06420001, 0x058102c6, 0x06a00940, + 0x0648a002, 0x068182b0, 0x062e5080, 0x04001089, + 0x040fd002, 0x040fd001, 0x02499001, 0x048102ef, + 0x070ff0d4, 0x050fd0ff, 0x045c0401, 0x077800ff, + 0x07f00000, 0x068182ef, 0x02800016, 0x06009051, + 0x057b8509, 0x06000002, 0x00800815, 0x06009051, + 0x077b8d09, 0x06000002, 0x00800815, 0x06009051, + 0x077b9509, 0x06000002, 0x00800815, 0x03209000, + 0x00800815, 0x06009051, 0x057ba109, 0x06000002, + 0x00800815, 0x06009051, 0x077ba909, 0x06000002, + 0x00800815, 0x06780043, 0x07009000, 0x068182e3, + 0x00498043, 0x048102e3, 0x0648a0e5, 0x058102e4, + 0x027c0045, 0x03040000, 0x048102e6, 0x075c00ff, + 0x07c00000, 0x056a02ff, 0x008002e3, 0x018002e2, + 0x06780075, 0x06000c07, 0x05810882, 0x06009051, + 0x077bcf09, 0x06000002, 0x070fc0ff, 0x05a00800, + 0x070fc0ff, 0x05308000, 0x0700a000, 0x05a00812, + 0x033e5000, 0x0700000c, 0x02800016, 0x070ff003, + 0x01540477, 0x068282fb, 0x07003077, 0x060ff051, + 0x010770ff, 0x07c00000, 0x04602601, 0x050f80ff, + 0x063fa029, 0x06000008, 0x02015010, 0x02016051, + 0x00017051, 0x00011051, 0x07601e41, 0x050f80ff, + 0x053fa83a, 0x06000008, 0x07f00000, 0x05601041, + 0x050f80ff, 0x01464000, 0x032fa00a, 0x05007011, + 0x05008012, 0x06009013, 0x0700a014, 0x0400b015, + 0x0600c016, 0x0500d017, 0x07c00000, 0x072d5003, + 0x06601879, 0x050f80ff, 0x068d0319, 0x063fa051, + 0x0600003e, 0x07c00000, 0x06005051, 0x0400e02c, + 0x0660060e, 0x050f80ff, 0x032fa009, 0x0379ff00, + 0x070000ff, 0x076c0000, 0x07810330, 0x0660600e, + 0x0500e0ff, 0x034000ff, 0x01540427, 0x06820362, + 0x03400005, 0x070ff005, 0x055c0428, 0x06810364, + 0x0280031f, 0x06a00368, 0x04605e0e, 0x050f80ff, + 0x012fa809, 0x06780001, 0x06000008, 0x06810338, + 0x0045e04a, 0x06600052, 0x030d60ff, 0x0460040e, + 0x050f80ff, 0x0004d0d0, 0x0379ff4d, 0x0700ffff, + 0x0104e0d1, 0x0379ff4e, 0x0700ffff, 0x062d6002, + 0x032fa009, 0x0204f0d0, 0x064b004f, 0x07780000, + 0x07ffff00, 0x045a044f, 0x070000ff, 0x00201008, 0x04002051, 0x06003051, 0x01204000, 0x07305000, - 0x07000060, 0x03206009, 0x05007022, 0x0460040e, - 0x050f80ff, 0x032fa042, 0x07f00000, 0x0405804f, - 0x0460520e, 0x050f80ff, 0x053fa812, 0x06000026, - 0x018001fc, 0x066a0531, 0x008001df, 0x046a0731, - 0x008001df, 0x066a0931, 0x008001df, 0x046a0b31, - 0x0405804f, 0x059501f9, 0x05a002fa, 0x038681fc, - 0x06780043, 0x070000f0, 0x037c00ff, 0x07000030, - 0x048101f7, 0x0134bfff, 0x070fffff, 0x0104102e, - 0x050fd041, 0x07602e41, 0x050f80ff, 0x06000051, - 0x032fa00a, 0x0080021f, 0x049501f7, 0x05a002fa, - 0x008601f7, 0x0202f00e, 0x052e4030, 0x040fd02f, - 0x06a0035e, 0x03800014, 0x0400e02f, 0x042e4020, - 0x0202f051, 0x0004100e, 0x0079fe31, 0x070000ff, - 0x04810215, 0x06602e0e, 0x050f80ff, 0x06780031, - 0x06000004, 0x04810208, 0x04300ead, 0x010deadd, - 0x00800213, 0x07000033, 0x032fa00a, 0x0079fe58, - 0x070000ff, 0x070000ff, 0x04602c0e, 0x050f80ff, - 0x017a0100, 0x03400000, 0x032fa00a, 0x00800215, - 0x032fa00a, 0x07f00000, 0x044b8c31, 0x045a040e, - 0x0104b0ff, 0x004980e5, 0x0681821f, 0x06780043, - 0x070000f0, 0x037c00ff, 0x07000030, 0x07810978, - 0x024a6c46, 0x04500423, 0x050070ff, 0x03620024, - 0x050080ff, 0x04004046, 0x0700500f, 0x03206000, - 0x05601048, 0x0700a0ff, 0x0700900a, 0x070ff005, - 0x04500446, 0x00540425, 0x04820252, 0x07601e22, - 0x050f80ff, 0x063fa032, 0x06000002, 0x03203000, - 0x01204000, 0x03205000, 0x0120b000, 0x0320c000, - 0x07601841, 0x050f80ff, 0x043fa852, 0x06000001, - 0x070ff056, 0x056c02ff, 0x050fb0ff, 0x070560ff, - 0x03079041, 0x05601041, 0x050f80ff, 0x073fa011, - 0x0600003d, 0x06780043, 0x07f00000, 0x065a007a, - 0x010880ff, 0x033e5000, 0x05002000, 0x05a002f3, - 0x058d024b, 0x0208a04a, 0x0108b04b, 0x02386001, - 0x03010000, 0x072e6300, 0x038000e1, 0x0500d00a, - 0x05500405, 0x014a68ff, 0x070090ff, 0x0154040a, - 0x0700c0ff, 0x0600a023, 0x0500b024, 0x02206001, - 0x07601e22, 0x050f80ff, 0x063fa04a, 0x06000002, - 0x07f00000, 0x07601822, 0x050f80ff, 0x043fa819, - 0x06000001, 0x0600a00d, 0x01800235, 0x06780043, - 0x070000f0, 0x050010ff, 0x027c0001, 0x07000030, - 0x04810270, 0x027c0001, 0x06000020, 0x0681091a, - 0x02800932, 0x0548e0e4, 0x0681091a, 0x0334a000, - 0x03080000, 0x00800143, 0x074860ff, 0x07818296, - 0x054880ff, 0x07810014, 0x070ff056, 0x050fb0ff, - 0x044880e5, 0x05810281, 0x067800e6, 0x07000041, - 0x05818014, 0x01800288, 0x056c02ff, 0x050fb0ff, - 0x070560ff, 0x072e5300, 0x067800e6, 0x07000041, - 0x05818014, 0x072d5003, 0x033e5000, 0x05002000, - 0x06780043, 0x07f00000, 0x010880ff, 0x050fd0ff, - 0x048d028f, 0x03386005, 0x03010000, 0x033e6000, - 0x0700000c, 0x052e5200, 0x03800014, 0x079a0014, - 0x05301fff, 0x0700000f, 0x06420001, 0x048102ad, - 0x07a0090c, 0x0648a002, 0x07818299, 0x062e5080, - 0x04001089, 0x040fd002, 0x040fd001, 0x02499001, - 0x058102cc, 0x070ff0d4, 0x050fd0ff, 0x045c0401, - 0x077800ff, 0x07f00000, 0x078182cc, 0x03800014, - 0x002092ab, 0x018007e7, 0x002092ad, 0x018007e7, - 0x012092af, 0x018007e7, 0x03209000, 0x018007e7, - 0x002092b3, 0x018007e7, 0x002092b5, 0x018007e7, - 0x06780043, 0x07009000, 0x068182c2, 0x00498043, - 0x048102c2, 0x0648a0e5, 0x058102c3, 0x027c0045, - 0x03040000, 0x058102c5, 0x075c00ff, 0x07c00000, - 0x056a02ff, 0x008002c2, 0x008002c1, 0x06780075, - 0x06000c07, 0x04810852, 0x012092c6, 0x070fc0ff, - 0x05a007d2, 0x070fc0ff, 0x05308000, 0x0700a000, - 0x05a007e4, 0x033e5000, 0x0700000c, 0x03800014, - 0x070ff003, 0x01540477, 0x078282d8, 0x07003077, - 0x060ff051, 0x010770ff, 0x07c00000, 0x04602601, - 0x050f80ff, 0x063fa029, 0x06000008, 0x02015010, - 0x02016051, 0x00017051, 0x00011051, 0x07601e41, - 0x050f80ff, 0x053fa83a, 0x06000008, 0x07f00000, - 0x05601041, 0x050f80ff, 0x01464000, 0x032fa00a, - 0x05007011, 0x05008012, 0x06009013, 0x0700a014, - 0x0400b015, 0x0600c016, 0x0500d017, 0x07c00000, - 0x072d5003, 0x06601879, 0x050f80ff, 0x058d02f6, - 0x063fa051, 0x0600003e, 0x07c00000, 0x06005051, - 0x0400e02c, 0x0660060e, 0x050f80ff, 0x032fa009, - 0x0379ff00, 0x070000ff, 0x076c0000, 0x0681031c, - 0x0660600e, 0x0500e0ff, 0x034000ff, 0x01540427, - 0x07820347, 0x03400005, 0x070ff005, 0x055c0428, - 0x06810349, 0x056c0805, 0x078182fc, 0x040f8029, - 0x053fa809, 0x07000024, 0x07f00000, 0x06600649, - 0x050f80ff, 0x032fa009, 0x0379ff00, 0x070000ff, - 0x076c0000, 0x078182fc, 0x07a0034d, 0x0400e049, - 0x0380031d, 0x07a0034d, 0x06600052, 0x030d60ff, - 0x0460040e, 0x050f80ff, 0x0004d0d0, 0x0379ff4d, - 0x0700ffff, 0x0104e0d1, 0x0379ff4e, 0x0700ffff, - 0x062d6002, 0x032fa009, 0x0204f0d0, 0x064b004f, - 0x07780000, 0x07ffff00, 0x045a044f, 0x070000ff, - 0x00201008, 0x04002051, 0x06003051, 0x01204000, - 0x07305000, 0x06000068, 0x03206009, 0x05007022, - 0x0460040e, 0x050f80ff, 0x032fa042, 0x07f00000, - 0x0460520e, 0x050f80ff, 0x053fa812, 0x06000026, - 0x050010d1, 0x0660360e, 0x050f80ff, 0x012fa80a, - 0x060ff00e, 0x055c042e, 0x0781034b, 0x07c00000, - 0x0400e026, 0x02800308, 0x0500e02e, 0x0380031d, - 0x0400e051, 0x02800346, 0x050f802b, 0x053fa809, - 0x06000016, 0x07f00000, 0x0340002d, 0x050f802b, - 0x053fa80a, 0x06000016, 0x07f00000, 0x0660600e, - 0x0302c0ff, 0x034000ff, 0x01540427, 0x0782035c, - 0x07c00000, 0x0202c026, 0x0280035b, 0x053f2000, - 0x03020000, 0x07c00000, 0x022a5002, 0x077800e4, - 0x07000005, 0x068184df, 0x010440d7, 0x0678aae5, - 0x06000051, 0x01a18974, 0x05908369, 0x029103f2, - 0x030400a6, 0x04600e40, 0x050f80ff, 0x022fa029, - 0x07f00000, 0x074b0000, 0x076c0600, 0x048183f4, - 0x060ff002, 0x01580403, 0x04810420, 0x070ff044, - 0x045c0404, 0x034a88ff, 0x058183f6, 0x0349f044, - 0x07818422, 0x0049b001, 0x07810381, 0x0448e001, - 0x06810383, 0x028003f8, 0x02495001, 0x048183f8, - 0x030100d8, 0x062da001, 0x0149e044, 0x07810393, - 0x018f8387, 0x0700f0d7, 0x062da001, 0x0149e00f, - 0x0681038f, 0x008f838c, 0x05a004bb, 0x048183a4, - 0x0778000f, 0x07a00000, 0x03a18412, 0x048183a4, - 0x06480001, 0x078103c3, 0x0448e001, 0x078103a9, - 0x00491001, 0x0681840d, 0x06005010, 0x05780105, + 0x06000068, 0x03206009, 0x05007022, 0x0460040e, + 0x050f80ff, 0x032fa042, 0x07f00000, 0x0460520e, + 0x050f80ff, 0x053fa812, 0x06000026, 0x050010d1, + 0x0660360e, 0x050f80ff, 0x012fa80a, 0x060ff00e, + 0x055c042e, 0x07810366, 0x07c00000, 0x0400e026, + 0x0380032b, 0x0500e02e, 0x02800338, 0x0400e051, + 0x02800361, 0x050f802b, 0x053fa809, 0x06000016, + 0x07f00000, 0x0340002d, 0x050f802b, 0x053fa80a, + 0x06000016, 0x07f00000, 0x0660600e, 0x0302c0ff, + 0x034000ff, 0x01540427, 0x07820377, 0x07c00000, + 0x0202c026, 0x02800376, 0x053f2000, 0x03020000, + 0x07c00000, 0x022a5002, 0x077800e4, 0x07000005, + 0x078184fa, 0x010440d7, 0x0678aae5, 0x06000051, + 0x00a189b0, 0x05908384, 0x0091040d, 0x030400a6, + 0x04600e40, 0x050f80ff, 0x022fa029, 0x07f00000, + 0x074b0000, 0x076c0600, 0x0781840f, 0x060ff002, + 0x01580403, 0x0481043b, 0x070ff044, 0x045c0404, + 0x034a88ff, 0x07818411, 0x0349f044, 0x0681843d, + 0x0049b001, 0x0781039c, 0x0448e001, 0x0681039e, + 0x00800413, 0x02495001, 0x06818413, 0x030100d8, + 0x062da001, 0x0149e044, 0x068103ae, 0x008f83a2, + 0x0700f0d7, 0x062da001, 0x0149e00f, 0x078103aa, + 0x008f83a7, 0x04a004d6, 0x048183bf, 0x0778000f, + 0x07a00000, 0x03a1842d, 0x048183bf, 0x06480001, + 0x078103de, 0x0448e001, 0x068103c4, 0x00491001, + 0x07818428, 0x06005010, 0x05780105, 0x07ffff00, + 0x06006051, 0x06601402, 0x050f80ff, 0x053fa812, + 0x06000002, 0x0245f040, 0x078403bd, 0x020e0040, + 0x053f2000, 0x05008000, 0x0693001a, 0x0292001a, + 0x02800016, 0x060ff079, 0x045c0440, 0x048183c8, + 0x0644f07a, 0x002fb008, 0x060ff079, 0x045c0440, + 0x048183cd, 0x0644f07a, 0x002fb008, 0x0644f001, + 0x06489001, 0x068103d5, 0x04600440, 0x050f80ff, + 0x073fa00a, 0x06000008, 0x06a009b0, 0x04601040, + 0x050f80ff, 0x012fa80a, 0x03200003, 0x06600c40, + 0x050f80ff, 0x032fa00a, 0x028003bf, 0x020ef002, + 0x01860400, 0x04600840, 0x050f80ff, 0x053fa809, + 0x06000002, 0x05780105, 0x00800440, 0x017c0105, + 0x05000400, 0x07818400, 0x04602602, 0x050f80ff, + 0x053fa809, 0x06000002, 0x07f00000, 0x06602e40, + 0x050f80ff, 0x070ff005, 0x053fa809, 0x06000002, + 0x055c0405, 0x07818400, 0x06005010, 0x05780105, 0x07ffff00, 0x06006051, 0x06601402, 0x050f80ff, - 0x053fa812, 0x06000002, 0x0245f040, 0x068403a2, - 0x020e0040, 0x053f2000, 0x05008000, 0x07930018, - 0x03920018, 0x03800014, 0x060ff079, 0x045c0440, - 0x048183ad, 0x0644f07a, 0x002fb008, 0x060ff079, - 0x045c0440, 0x058183b2, 0x0644f07a, 0x002fb008, - 0x0644f001, 0x06489001, 0x068103ba, 0x04600440, - 0x050f80ff, 0x073fa00a, 0x06000008, 0x07a00974, - 0x04601040, 0x050f80ff, 0x012fa80a, 0x03200003, - 0x06600c40, 0x050f80ff, 0x032fa00a, 0x028003a4, - 0x020ef002, 0x028603e5, 0x04600840, 0x050f80ff, - 0x053fa809, 0x06000002, 0x05780105, 0x00800440, - 0x017c0105, 0x05000400, 0x048183e5, 0x04602602, - 0x050f80ff, 0x053fa809, 0x06000002, 0x07f00000, - 0x06602e40, 0x050f80ff, 0x070ff005, 0x053fa809, - 0x06000002, 0x055c0405, 0x048183e5, 0x06005010, - 0x05780105, 0x07ffff00, 0x06006051, 0x06601402, - 0x050f80ff, 0x053fa812, 0x06000002, 0x007a0140, - 0x07c00000, 0x028003a2, 0x0644f001, 0x04601040, - 0x050f80ff, 0x012fa80a, 0x05308000, 0x03040000, - 0x04600440, 0x050f80ff, 0x073fa00a, 0x06000008, - 0x06009040, 0x04a007df, 0x028003a4, 0x02209002, - 0x018004c5, 0x03209000, 0x018004c5, 0x02209004, - 0x018004c5, 0x04a004e9, 0x062da001, 0x0149e044, - 0x04810408, 0x018f83fc, 0x0700f0d7, 0x062da001, - 0x0149e00f, 0x04810404, 0x028f8401, 0x05a004bb, - 0x048183a4, 0x0778000f, 0x07a00000, 0x03a18412, - 0x048183a4, 0x05308000, 0x05002000, 0x06009040, - 0x04a007df, 0x028003a4, 0x05308000, 0x05004000, - 0x06009040, 0x04a007df, 0x028003a4, 0x0700600f, - 0x0379ff06, 0x0700ffff, 0x05602603, 0x050f80ff, - 0x053fa809, 0x06000008, 0x0179fe11, 0x0700ffff, - 0x055c0406, 0x0781841e, 0x07c00000, 0x056a02ff, - 0x0180041d, 0x02209008, 0x018004c5, 0x053f2000, - 0x05008000, 0x02495001, 0x07818495, 0x012f200c, - 0x029d8426, 0x04600840, 0x050f80ff, 0x053fa809, - 0x07000003, 0x0448e007, 0x06818492, 0x0721f000, - 0x0249f007, 0x04810432, 0x0245f01f, 0x06000002, - 0x0049b001, 0x0781843c, 0x05601c00, 0x050f80ff, - 0x012fa809, 0x06480001, 0x05810495, 0x04481001, - 0x07818495, 0x06602840, 0x050f80ff, 0x012fa809, - 0x020ef001, 0x03868495, 0x059c0495, 0x070050d8, - 0x062da001, 0x06306002, 0x05000430, 0x04600440, - 0x050f80ff, 0x053fa812, 0x06000002, 0x028f844a, - 0x050040d8, 0x062da001, 0x0149e044, 0x0481045b, - 0x028f844f, 0x0700f0d7, 0x062da001, 0x0149e00f, - 0x04810457, 0x028f8454, 0x05a004bb, 0x0681848c, - 0x0778000f, 0x07a00000, 0x03a18412, 0x0681848c, - 0x05602600, 0x050f80ff, 0x073fa009, 0x06000001, - 0x060ff004, 0x00540402, 0x05820490, 0x06005051, - 0x06006051, 0x04602640, 0x050f80ff, 0x063fa01a, - 0x06000002, 0x07f00000, 0x06600a40, 0x050f80ff, - 0x073fa00a, 0x07000003, 0x04487007, 0x0481047a, - 0x060ff002, 0x00540404, 0x0682847a, 0x002f2008, - 0x05308000, 0x07005000, 0x06009040, 0x04a007df, - 0x04008004, 0x05a007e4, 0x03800018, 0x06780007, - 0x02800040, 0x06818489, 0x0079c107, 0x07ffffff, - 0x007a0b07, 0x03800000, 0x04780104, 0x07ffff00, - 0x04810485, 0x02455007, 0x04600840, 0x050f80ff, - 0x053fa80a, 0x07000003, 0x060ff040, 0x045a041f, - 0x030e30ff, 0x002f2008, 0x07930018, 0x03920018, - 0x03800014, 0x04004002, 0x00800462, 0x002f2008, - 0x03209000, 0x018004c5, 0x002f2008, 0x04a004e9, - 0x062da001, 0x07f00000, 0x038f8499, 0x030100d8, - 0x062da001, 0x0149e044, 0x058104aa, 0x028f849e, - 0x0700f0d7, 0x062da001, 0x0149e00f, 0x058104a6, - 0x038f84a3, 0x05a004bb, 0x05818018, 0x0778000f, - 0x07a00000, 0x03a18412, 0x05818018, 0x05308000, - 0x07005000, 0x06009040, 0x04a007df, 0x04008010, - 0x05a007e4, 0x03800018, 0x05602603, 0x050f80ff, - 0x053fa809, 0x06000008, 0x07780044, 0x073f0000, - 0x055c0411, 0x077800ff, 0x07ff0000, 0x07c00000, - 0x07602803, 0x050f80ff, 0x053fa809, 0x06000008, - 0x070ff0d8, 0x062da001, 0x055c0411, 0x0379fcff, - 0x0600001f, 0x07c00000, 0x050fd009, 0x040fd040, - 0x053f2000, 0x05008000, 0x05308000, 0x03013000, - 0x04a007df, 0x010440d7, 0x0349f044, 0x058104d2, - 0x062da001, 0x018f04d2, 0x03e00000, 0x062da001, - 0x0149e044, 0x07810018, 0x018f04d7, 0x03e00000, - 0x0700f0d7, 0x062da001, 0x0149e00f, 0x07810018, - 0x018f04dd, 0x03e00000, 0x062da001, 0x03800018, - 0x069084df, 0x0249c0e5, 0x07810018, 0x062da001, - 0x07f00000, 0x07f00000, 0x033e5000, 0x070c0000, - 0x018f04e2, 0x02800016, 0x050020d8, 0x04600440, - 0x050f80ff, 0x073fa00a, 0x06000001, 0x07c00000, - 0x002fb001, 0x008004f2, 0x012fb000, 0x03075087, - 0x058d04f3, 0x03386000, 0x03020000, 0x04482075, - 0x0781059c, 0x0648a0e6, 0x06810543, 0x0642007f, - 0x07810541, 0x0340007e, 0x060ff038, 0x0154047e, - 0x02d00531, 0x0560027d, 0x050f80ff, 0x032fa009, - 0x030ef000, 0x0186084d, 0x0107d000, 0x05601000, - 0x050f80ff, 0x032fa009, 0x03681e00, 0x076c14ff, - 0x0581850f, 0x0007e038, 0x0727c009, 0x02800515, - 0x03681e00, 0x04500420, 0x050f80ff, 0x073fa009, - 0x0700003f, 0x008004fd, 0x070ff07d, 0x0450047c, - 0x050f80ff, 0x002fa819, 0x068d0519, 0x02080001, - 0x00081002, 0x0678007a, 0x05000200, 0x07810521, - 0x0049107a, 0x02a182d3, 0x01082003, 0x078d0522, - 0x0448b07a, 0x0481852a, 0x0249007a, 0x0781052d, - 0x07780003, 0x03800000, 0x0781052d, 0x0338600c, - 0x03010000, 0x0280052f, 0x02386004, 0x03010000, - 0x072e6c00, 0x0380059c, 0x02800537, 0x03800539, - 0x0280053b, 0x0280053d, 0x0380053f, 0x03800500, - 0x0727c009, 0x02800515, 0x0727c00c, 0x02800515, - 0x0727c00f, 0x02800515, 0x0727c012, 0x02800515, - 0x0627c015, 0x02800515, 0x052e6800, 0x0380059c, - 0x044880e6, 0x04810886, 0x070ff088, 0x0179feff, - 0x070fffff, 0x03a18821, 0x06818816, 0x0249607a, - 0x0781884b, 0x060ff083, 0x02868846, 0x013e6200, - 0x07000003, 0x0448b07a, 0x06810567, 0x0049707a, - 0x06810558, 0x004940e6, 0x06810567, 0x072e6300, - 0x02800567, 0x04604679, 0x050f80ff, 0x032fa009, - 0x03680600, 0x076c00ff, 0x04818567, 0x068d055e, - 0x05001099, 0x060ff001, 0x064b0001, 0x045c0401, - 0x0179feff, 0x070000ff, 0x06810567, 0x0245a07a, - 0x068d0567, 0x008c04f2, 0x0648307a, 0x048185f2, - 0x0279127a, 0x01040222, 0x016d02ff, 0x058185d1, - 0x00798075, 0x0700f50f, 0x058185d1, 0x06483075, - 0x078105d1, 0x04602679, 0x0049b07a, 0x07810578, - 0x04602670, 0x050f80ff, 0x053fa812, 0x07000041, - 0x078d057b, 0x004940e6, 0x06810580, 0x072e6300, - 0x03800014, 0x0049707a, 0x07810584, 0x0049807a, - 0x07810014, 0x02386001, 0x07030000, 0x0648f07a, - 0x0781059a, 0x04600479, 0x050f80ff, 0x053fa809, - 0x06000002, 0x05780105, 0x07ffff00, 0x06006051, - 0x0760147b, 0x050f80ff, 0x053fa812, 0x06000002, - 0x0245f079, 0x06840594, 0x020e0079, 0x033e6a00, - 0x0700aa0a, 0x02079051, 0x03800014, 0x0444e07a, - 0x02800649, 0x078d059c, 0x008c04f2, 0x038005b8, - 0x060ff0e6, 0x077800ff, 0x07000050, 0x058185b8, - 0x02799075, 0x0500fd0f, 0x037c00ff, 0x04000808, - 0x058185b8, 0x0049107a, 0x058185b8, 0x06601879, - 0x0049b07a, 0x068105ae, 0x06601870, 0x050f80ff, - 0x063fa052, 0x0600003e, 0x078d05b1, 0x02386001, - 0x07030000, 0x033e6a00, 0x0700aa0a, 0x02079051, - 0x03800014, 0x0648c0e6, 0x048185d9, 0x0448e0e6, - 0x068105ce, 0x022095bc, 0x02490075, 0x078182cc, - 0x004920e6, 0x078105c9, 0x04a008d5, 0x05001088, - 0x00700101, 0x03100000, 0x00088001, 0x033e6000, - 0x07000088, 0x018008c5, 0x02386001, 0x07030000, - 0x033e6000, 0x06000008, 0x028006b9, 0x02799075, - 0x0700f50f, 0x07810014, 0x06601879, 0x0049b07a, - 0x068105d5, 0x06601870, 0x050080ff, 0x06309052, - 0x0600003e, 0x028005e0, 0x04602679, 0x0049b07a, - 0x078105dd, 0x04602670, 0x050080ff, 0x05309812, - 0x07000041, 0x0648007a, 0x068105f2, 0x04488075, - 0x048185f2, 0x0678007a, 0x04000108, 0x078105ee, - 0x04603e79, 0x050f80ff, 0x068d05e9, 0x073fa042, - 0x0600004a, 0x068d05ec, 0x02086051, 0x040f8008, - 0x070fa009, 0x0049107a, 0x01a186bb, 0x00798075, - 0x0600f507, 0x07818869, 0x0448b075, 0x078105f9, - 0x02493075, 0x05810865, 0x004940e6, 0x07810611, - 0x02386001, 0x030e0000, 0x05001087, 0x00494001, - 0x07810603, 0x04780b01, 0x01204000, 0x0681060e, - 0x0249f076, 0x07810609, 0x06a00a7f, 0x0647f076, - 0x004940e6, 0x0781060f, 0x03386000, 0x030e0000, - 0x033e6000, 0x0700c000, 0x03800014, 0x06a00a2c, - 0x03386000, 0x030e0000, 0x0648c0e6, 0x05818624, - 0x068d0613, 0x02386001, 0x07030000, 0x0049107a, - 0x0681061a, 0x020ef083, 0x03860624, 0x06483075, - 0x078106b7, 0x0279007a, 0x01080200, 0x01a107d2, - 0x05308000, 0x07060000, 0x06009079, 0x04a007df, - 0x038006b7, 0x06483075, 0x058107fc, 0x068d0626, - 0x02386001, 0x07030000, 0x0444e07a, 0x0648307a, - 0x0581865f, 0x0448707a, 0x07810690, 0x0448107a, - 0x05818690, 0x0648f07a, 0x06810649, 0x05a007d2, - 0x04008079, 0x0049b07a, 0x07810639, 0x04602670, - 0x04a007f2, 0x0380063a, 0x04a007f1, 0x0186865a, - 0x0049107a, 0x0581865a, 0x04600408, 0x050f80ff, - 0x053fa809, 0x06000002, 0x05780105, 0x07ffff00, - 0x0760147b, 0x050f80ff, 0x053fa812, 0x06000002, - 0x05a007db, 0x038006b7, 0x0760187b, 0x050f80ff, - 0x032fa009, 0x0349c000, 0x04818658, 0x04601079, - 0x050f80ff, 0x073fa00a, 0x0600003d, 0x07f00000, - 0x06600a79, 0x050f80ff, 0x053fa80a, 0x06000010, - 0x038006b7, 0x0046e07a, 0x03800690, 0x06009008, - 0x05308000, 0x05004000, 0x04a007df, 0x038006b7, + 0x053fa812, 0x06000002, 0x007a0140, 0x07c00000, + 0x038003bd, 0x0644f001, 0x04601040, 0x050f80ff, + 0x012fa80a, 0x05308000, 0x03040000, 0x04600440, + 0x050f80ff, 0x073fa00a, 0x06000008, 0x06009040, + 0x04a0080d, 0x028003bf, 0x02209002, 0x008004e0, + 0x03209000, 0x008004e0, 0x02209004, 0x008004e0, + 0x06a00504, 0x062da001, 0x0149e044, 0x04810423, + 0x038f8417, 0x0700f0d7, 0x062da001, 0x0149e00f, + 0x0481041f, 0x028f841c, 0x04a004d6, 0x048183bf, + 0x0778000f, 0x07a00000, 0x03a1842d, 0x048183bf, + 0x05308000, 0x05002000, 0x06009040, 0x04a0080d, + 0x028003bf, 0x05308000, 0x05004000, 0x06009040, + 0x04a0080d, 0x028003bf, 0x0700600f, 0x0379ff06, + 0x0700ffff, 0x05602603, 0x050f80ff, 0x053fa809, + 0x06000008, 0x0179fe11, 0x0700ffff, 0x055c0406, + 0x07818439, 0x07c00000, 0x056a02ff, 0x00800438, + 0x02209008, 0x008004e0, 0x053f2000, 0x05008000, + 0x02495001, 0x068184b0, 0x012f200c, 0x039d8441, + 0x04600840, 0x050f80ff, 0x053fa809, 0x07000003, + 0x0448e007, 0x068184ad, 0x0721f000, 0x0249f007, + 0x0581044d, 0x0245f01f, 0x06000002, 0x0049b001, + 0x06818457, 0x05601c00, 0x050f80ff, 0x012fa809, + 0x06480001, 0x048104b0, 0x04481001, 0x068184b0, + 0x06602840, 0x050f80ff, 0x012fa809, 0x020ef001, + 0x028684b0, 0x049c04b0, 0x070050d8, 0x062da001, + 0x06306002, 0x05000430, 0x04600440, 0x050f80ff, + 0x053fa812, 0x06000002, 0x038f8465, 0x050040d8, + 0x062da001, 0x0149e044, 0x04810476, 0x038f846a, + 0x0700f0d7, 0x062da001, 0x0149e00f, 0x05810472, + 0x038f846f, 0x04a004d6, 0x068184a7, 0x0778000f, + 0x07a00000, 0x03a1842d, 0x068184a7, 0x05602600, + 0x050f80ff, 0x073fa009, 0x06000001, 0x060ff004, + 0x00540402, 0x048204ab, 0x06005051, 0x06006051, + 0x04602640, 0x050f80ff, 0x063fa01a, 0x06000002, + 0x07f00000, 0x06600a40, 0x050f80ff, 0x073fa00a, + 0x07000003, 0x04487007, 0x05810495, 0x060ff002, + 0x00540404, 0x07828495, 0x002f2008, 0x05308000, + 0x07005000, 0x06009040, 0x04a0080d, 0x04008004, + 0x05a00812, 0x0280001a, 0x06780007, 0x02800040, + 0x068184a4, 0x0079c107, 0x07ffffff, 0x007a0b07, + 0x03800000, 0x04780104, 0x07ffff00, 0x058104a0, + 0x02455007, 0x04600840, 0x050f80ff, 0x053fa80a, + 0x07000003, 0x060ff040, 0x045a041f, 0x030e30ff, + 0x002f2008, 0x0693001a, 0x0292001a, 0x02800016, + 0x04004002, 0x0180047d, 0x002f2008, 0x03209000, + 0x008004e0, 0x002f2008, 0x06a00504, 0x062da001, + 0x07f00000, 0x038f84b4, 0x030100d8, 0x062da001, + 0x0149e044, 0x058104c5, 0x028f84b9, 0x0700f0d7, + 0x062da001, 0x0149e00f, 0x048104c1, 0x038f84be, + 0x04a004d6, 0x0481801a, 0x0778000f, 0x07a00000, + 0x03a1842d, 0x0481801a, 0x05308000, 0x07005000, + 0x06009040, 0x04a0080d, 0x04008010, 0x05a00812, + 0x0280001a, 0x05602603, 0x050f80ff, 0x053fa809, + 0x06000008, 0x07780044, 0x073f0000, 0x055c0411, + 0x077800ff, 0x07ff0000, 0x07c00000, 0x07602803, + 0x050f80ff, 0x053fa809, 0x06000008, 0x070ff0d8, + 0x062da001, 0x055c0411, 0x0379fcff, 0x0600001f, + 0x07c00000, 0x050fd009, 0x040fd040, 0x053f2000, + 0x05008000, 0x05308000, 0x03013000, 0x04a0080d, + 0x010440d7, 0x0349f044, 0x058104ed, 0x062da001, + 0x018f04ed, 0x03e00000, 0x062da001, 0x0149e044, + 0x0681001a, 0x008f04f2, 0x03e00000, 0x0700f0d7, + 0x062da001, 0x0149e00f, 0x0681001a, 0x008f04f8, + 0x03e00000, 0x062da001, 0x0280001a, 0x079084fa, + 0x0249c0e5, 0x0681001a, 0x062da001, 0x07f00000, + 0x07f00000, 0x033e5000, 0x070c0000, 0x008f04fd, + 0x03800018, 0x050020d8, 0x04600440, 0x050f80ff, + 0x073fa00a, 0x06000001, 0x07c00000, 0x002fb001, + 0x0280050d, 0x012fb000, 0x03075087, 0x068d050e, + 0x03386000, 0x03020000, 0x04482075, 0x078105b7, + 0x0648a0e6, 0x0681055e, 0x0642007f, 0x0781055c, + 0x0340007e, 0x060ff038, 0x0154047e, 0x02d0054c, + 0x0560027d, 0x050f80ff, 0x032fa009, 0x030ef000, + 0x0186087b, 0x0107d000, 0x05601000, 0x050f80ff, + 0x032fa009, 0x03681e00, 0x076c14ff, 0x0481852a, + 0x0007e038, 0x0727c009, 0x03800530, 0x03681e00, + 0x04500420, 0x050f80ff, 0x073fa009, 0x0700003f, + 0x03800518, 0x070ff07d, 0x0450047c, 0x050f80ff, + 0x002fa819, 0x068d0534, 0x02080001, 0x00081002, + 0x0678007a, 0x05000200, 0x0781053c, 0x0049107a, + 0x03a182f6, 0x01082003, 0x068d053d, 0x0448b07a, + 0x04818545, 0x0249007a, 0x07810548, 0x07780003, + 0x03800000, 0x07810548, 0x0338600c, 0x03010000, + 0x0280054a, 0x02386004, 0x03010000, 0x072e6c00, + 0x038005b7, 0x02800552, 0x02800554, 0x03800556, + 0x02800558, 0x0380055a, 0x0380051b, 0x0727c009, + 0x03800530, 0x0727c00c, 0x03800530, 0x0727c00f, + 0x03800530, 0x0727c012, 0x03800530, 0x0627c015, + 0x03800530, 0x052e6800, 0x038005b7, 0x044880e6, + 0x048108ba, 0x070ff088, 0x0179feff, 0x070fffff, + 0x02a1884f, 0x07818844, 0x0249607a, 0x06818879, + 0x060ff083, 0x03868874, 0x013e6200, 0x07000003, + 0x0448b07a, 0x07810582, 0x0049707a, 0x06810573, + 0x004940e6, 0x07810582, 0x072e6300, 0x03800582, + 0x04604679, 0x050f80ff, 0x032fa009, 0x03680600, + 0x076c00ff, 0x05818582, 0x068d0579, 0x05001099, + 0x060ff001, 0x064b0001, 0x045c0401, 0x0179feff, + 0x070000ff, 0x07810582, 0x0245a07a, 0x078d0582, + 0x028c050d, 0x0648307a, 0x05818611, 0x0279127a, + 0x01040222, 0x016d02ff, 0x058185ee, 0x00798075, + 0x0700f50f, 0x058185ee, 0x06483075, 0x078105ee, + 0x04602679, 0x0049b07a, 0x07810593, 0x04602670, + 0x050f80ff, 0x053fa812, 0x07000041, 0x078d0596, + 0x004940e6, 0x0681059b, 0x072e6300, 0x02800016, + 0x0049707a, 0x0781059f, 0x0049807a, 0x06810016, + 0x02386001, 0x07030000, 0x0648f07a, 0x068105b5, + 0x04600479, 0x050f80ff, 0x053fa809, 0x06000002, + 0x05780105, 0x07ffff00, 0x06006051, 0x0760147b, + 0x050f80ff, 0x053fa812, 0x06000002, 0x0245f079, + 0x078405af, 0x020e0079, 0x033e6a00, 0x0700aa0a, + 0x02079051, 0x02800016, 0x0444e07a, 0x02800668, + 0x078d05b7, 0x028c050d, 0x028005d3, 0x060ff0e6, + 0x077800ff, 0x07000050, 0x048185d3, 0x02799075, + 0x0500fd0f, 0x037c00ff, 0x04000808, 0x048185d3, + 0x0049107a, 0x048185d3, 0x06601879, 0x0049b07a, + 0x078105c9, 0x06601870, 0x050f80ff, 0x063fa052, + 0x0600003e, 0x078d05cc, 0x02386001, 0x07030000, + 0x033e6a00, 0x0700aa0a, 0x02079051, 0x02800016, + 0x0648c0e6, 0x058185f6, 0x0448e0e6, 0x078105eb, + 0x06009051, 0x077baf09, 0x07000005, 0x02490075, + 0x068182ef, 0x004920e6, 0x068105e6, 0x07a00909, + 0x05001088, 0x00700101, 0x03100000, 0x00088001, + 0x033e6000, 0x07000088, 0x018008f9, 0x02386001, + 0x07030000, 0x033e6000, 0x06000008, 0x038006d8, + 0x02799075, 0x0700f50f, 0x06810016, 0x06601879, + 0x0049b07a, 0x068105f2, 0x06601870, 0x050080ff, + 0x06309052, 0x0600003e, 0x038005ff, 0x0648307a, + 0x05818611, 0x04602679, 0x0049b07a, 0x078105fc, + 0x04602670, 0x050080ff, 0x05309812, 0x07000041, + 0x0648007a, 0x07810611, 0x04488075, 0x05818611, + 0x0678007a, 0x04000108, 0x0681060d, 0x04603e79, + 0x050f80ff, 0x068d0608, 0x073fa042, 0x0600004a, + 0x068d060b, 0x02086051, 0x040f8008, 0x070fa009, + 0x0049107a, 0x00a186da, 0x00798075, 0x0600f507, + 0x0681889d, 0x0448b075, 0x07810618, 0x02493075, + 0x05810895, 0x004940e6, 0x07810630, 0x02386001, + 0x030e0000, 0x05001087, 0x00494001, 0x07810622, + 0x04780b01, 0x01204000, 0x0781062d, 0x0249f076, + 0x07810628, 0x07a00abb, 0x0647f076, 0x004940e6, + 0x0781062e, 0x03386000, 0x030e0000, 0x033e6000, + 0x0700c000, 0x02800016, 0x06a00a68, 0x03386000, + 0x030e0000, 0x0648c0e6, 0x04818643, 0x068d0632, + 0x02386001, 0x07030000, 0x0049107a, 0x07810639, + 0x020ef083, 0x02860643, 0x06483075, 0x068106d6, + 0x0279007a, 0x01080200, 0x01a10800, 0x05308000, + 0x07060000, 0x06009079, 0x04a0080d, 0x028006d6, + 0x06483075, 0x0481082a, 0x068d0645, 0x02386001, + 0x07030000, 0x0444e07a, 0x0648307a, 0x0581867e, + 0x0448707a, 0x078106af, 0x0448107a, 0x058186af, + 0x0648f07a, 0x06810668, 0x05a00800, 0x04008079, + 0x0049b07a, 0x06810658, 0x04602670, 0x04a00820, + 0x03800659, 0x04a0081f, 0x00868679, 0x0049107a, + 0x04818679, 0x04600408, 0x050f80ff, 0x053fa809, + 0x06000002, 0x05780105, 0x07ffff00, 0x0760147b, + 0x050f80ff, 0x053fa812, 0x06000002, 0x05a00809, + 0x028006d6, 0x0760187b, 0x050f80ff, 0x032fa009, + 0x0349c000, 0x05818677, 0x04601079, 0x050f80ff, + 0x073fa00a, 0x0600003d, 0x07f00000, 0x06600a79, + 0x050f80ff, 0x053fa80a, 0x06000010, 0x028006d6, + 0x0046e07a, 0x038006af, 0x06009008, 0x05308000, + 0x05004000, 0x04a0080d, 0x028006d6, 0x06600679, + 0x050f80ff, 0x00201007, 0x012fa80a, 0x0046047a, + 0x034630ff, 0x050020ff, 0x06003051, 0x04601079, + 0x050f80ff, 0x073fa012, 0x06000001, 0x07f00000, 0x07601e7b, 0x050f80ff, 0x032fa011, 0x070ff000, 0x04500401, 0x030460ff, 0x060ff025, 0x00540446, - 0x06820673, 0x030460ff, 0x052e40c0, 0x04092046, - 0x0349a0e4, 0x04818670, 0x003e4080, 0x0700c000, - 0x03800674, 0x003e4080, 0x05008000, 0x03800674, - 0x04092046, 0x070ff03a, 0x01868678, 0x013e4000, - 0x07000003, 0x06a0035e, 0x06600679, 0x050f80ff, - 0x00201007, 0x012fa80a, 0x0046047a, 0x034630ff, - 0x050020ff, 0x06003051, 0x04601079, 0x050f80ff, - 0x073fa012, 0x06000001, 0x07f00000, 0x06602e79, - 0x050f80ff, 0x032fa009, 0x030ef000, 0x0286068f, - 0x06009079, 0x05308000, 0x03016000, 0x04a007df, - 0x038006b7, 0x0049407a, 0x078106b2, 0x079c06b1, - 0x04008079, 0x04a007f1, 0x018686b1, 0x06600679, - 0x050f80ff, 0x063fa029, 0x06000001, 0x0349f003, - 0x058186b1, 0x07780006, 0x07ffff00, 0x037c00ff, - 0x07000600, 0x058186b1, 0x0079fe02, 0x070000ff, - 0x056c08ff, 0x058186b1, 0x0246007a, 0x0400707a, - 0x06600679, 0x050f80ff, 0x04302001, 0x04000410, - 0x05303442, 0x02080002, 0x063fa032, 0x06000001, - 0x020e3079, 0x038006b7, 0x0447407a, 0x05a007d2, - 0x05308000, 0x03020000, 0x06009079, 0x04a007df, - 0x033e6a00, 0x0700aa0a, 0x02079051, 0x03800014, - 0x06605679, 0x050f80ff, 0x032fa009, 0x070ff000, - 0x038606d4, 0x057dfeff, 0x07ffffff, 0x078106d4, - 0x050f8000, 0x012fa811, 0x0079fe02, 0x070000ff, - 0x077d66ff, 0x060000dc, 0x058186d4, 0x060ff001, - 0x008686d5, 0x064b0002, 0x06420002, 0x060ff002, - 0x05500400, 0x050f80ff, 0x05004084, 0x073fa00a, - 0x06000002, 0x07c00000, 0x04600201, 0x050f80ff, - 0x073fa009, 0x06000001, 0x0079fe02, 0x070000ff, - 0x077d72ff, 0x070000dd, 0x058186d4, 0x064b0002, - 0x06420002, 0x06000001, 0x028006ce, 0x0605004c, - 0x028006e6, 0x079306e2, 0x05a007d8, 0x054bc450, - 0x068106e9, 0x02d006ea, 0x028006e9, 0x038006fa, - 0x038006fc, 0x0080078c, 0x0180079f, 0x01800709, - 0x038006fc, 0x01800756, 0x038006fa, 0x008007a7, - 0x018007a3, 0x038006fa, 0x018007aa, 0x008007c7, - 0x01800778, 0x038006fa, 0x038006fa, 0x032096fa, - 0x018007e7, 0x073c3fff, 0x0700000f, 0x0379ff50, - 0x070fffff, 0x060ff079, 0x055c0450, 0x0581079c, - 0x002fb008, 0x060ff079, 0x055c0450, 0x0481079b, - 0x05a007ca, 0x00800794, 0x0179fe50, 0x070fffff, - 0x070050ff, 0x060ff079, 0x055c0405, 0x04810713, - 0x002fb008, 0x060ff079, 0x055c0405, 0x06818798, - 0x073c3fff, 0x0700000f, 0x070ff087, 0x017980ff, - 0x0600f507, 0x07818722, 0x02203040, 0x05002087, - 0x0049d002, 0x07818722, 0x002fb008, 0x07006087, - 0x002fb008, 0x0149d006, 0x05810750, 0x05930727, - 0x01257000, 0x052e4003, 0x072e5030, 0x0304c050, - 0x02400057, 0x06740057, 0x06000004, 0x0782001b, - 0x004940e6, 0x01a18a72, 0x0049107a, 0x01a186bb, - 0x04002083, 0x07003084, 0x04004085, 0x04602679, - 0x0049b07a, 0x05810736, 0x04602670, 0x050f80ff, - 0x063fa01a, 0x06000001, 0x05a007d2, 0x05a008de, - 0x033e6a00, 0x0700aa0a, 0x062e5020, 0x07a0090c, - 0x02798102, 0x070000ff, 0x007c8002, 0x07000055, - 0x0581074d, 0x072e50c0, 0x0648a002, 0x0581074d, - 0x040fd002, 0x058d0748, 0x03386006, 0x03010000, - 0x033e6000, 0x0700000c, 0x003e4002, 0x07000a00, - 0x028006b9, 0x07420003, 0x0681871a, 0x00798002, - 0x0600f507, 0x07818722, 0x0180072b, 0x0493075d, - 0x01257000, 0x073c3fff, 0x0700000f, 0x052e4003, - 0x072e5030, 0x0304c050, 0x067800e6, 0x07000041, - 0x04810762, 0x05a008e7, 0x0681876d, 0x002fb008, - 0x067800e6, 0x07000041, 0x04810768, 0x05a008e7, - 0x0681876d, 0x062e5020, 0x003e4002, 0x07000a00, - 0x03e00000, 0x03800014, 0x06740057, 0x07000018, - 0x0782001b, 0x05a008de, 0x033e6a00, 0x0700aa0a, - 0x002fb008, 0x05a008de, 0x033e6a00, 0x0700aa0a, - 0x00800768, 0x0379ff50, 0x070fffff, 0x060ff079, - 0x055c0450, 0x0781877e, 0x0245507a, 0x002fb008, - 0x060ff079, 0x055c0450, 0x06818783, 0x0245507a, - 0x002fb008, 0x05601050, 0x050f80ff, 0x012fa809, - 0x02455001, 0x05601050, 0x050f80ff, 0x012fa80a, - 0x01800795, 0x0795879c, 0x0179fe50, 0x070fffff, - 0x045c042f, 0x0781879c, 0x0202f051, 0x042e4020, - 0x01800795, 0x002fb008, 0x003e4002, 0x07000a00, - 0x0380001b, 0x0693879b, 0x062e5020, 0x042e4002, - 0x002fb008, 0x013e4000, 0x05000e00, 0x0380001b, - 0x0179fe50, 0x070fffff, 0x010210ff, 0x0380001b, - 0x0179fe50, 0x070fffff, 0x050340ff, 0x01800795, - 0x023e5008, 0x05000800, 0x0380001b, 0x0179fe50, - 0x070fffff, 0x0102e0ff, 0x05602c2e, 0x050f80ff, - 0x05222000, 0x07223000, 0x05224000, 0x07225000, - 0x07226000, 0x05227000, 0x05228000, 0x07229000, - 0x0722a000, 0x0522b000, 0x063fa051, 0x07000011, - 0x0202c026, 0x0522d000, 0x052e400c, 0x0560402e, - 0x050f80ff, 0x032fa021, 0x04032002, 0x07033003, - 0x07420000, 0x07036000, 0x0403b001, 0x0380001b, - 0x030430d4, 0x062e5008, 0x00800279, 0x05601050, - 0x050f80ff, 0x032fa009, 0x03460000, 0x008007d5, - 0x0246007a, 0x0045207a, 0x008007d3, 0x0246007a, - 0x0600007a, 0x04601079, 0x050f80ff, 0x032fa00a, - 0x07c00000, 0x039287d8, 0x070500e1, 0x07c00000, - 0x0245f008, 0x048407dc, 0x020e0008, 0x07c00000, - 0x070ff009, 0x065a0008, 0x058407e1, 0x020e0008, - 0x07c00000, 0x058407e4, 0x020e0008, 0x07c00000, - 0x05308000, 0x0500d000, 0x04a007df, 0x04a007ec, - 0x03800014, 0x052e4300, 0x072e500c, 0x073c3fff, - 0x0700000f, 0x07c00000, 0x04602608, 0x050f80ff, - 0x032fa011, 0x076a0000, 0x078187fa, 0x066a0001, - 0x058107fa, 0x06006051, 0x07c00000, 0x02206001, - 0x07c00000, 0x0678007a, 0x06000020, 0x06818804, - 0x0049107a, 0x04810804, 0x073c3fff, 0x0700000f, - 0x02800626, 0x040fd079, 0x0648307a, 0x05810809, - 0x06a0096b, 0x0080080e, 0x05a007cf, 0x05308000, - 0x05001000, 0x06009079, 0x04a007df, 0x048d080e, - 0x040fd079, 0x033e6a00, 0x0600aa0e, 0x02079051, - 0x03386006, 0x03010000, 0x03800014, 0x052e6200, - 0x0648307a, 0x0581081b, 0x06a0096b, 0x018008c5, - 0x05a007cf, 0x05308000, 0x05001000, 0x06009079, - 0x04a007df, 0x018008c5, 0x050010ff, 0x0448b07a, - 0x0481082f, 0x0049107a, 0x0481082f, 0x048d0826, - 0x04604679, 0x050f80ff, 0x032fa009, 0x03680600, - 0x056c02ff, 0x0681882f, 0x046c1001, 0x04810831, - 0x056a02ff, 0x07c00000, 0x04a00834, 0x075c00ff, - 0x07c00000, 0x048d0834, 0x060ff07c, 0x070ff07d, - 0x070ff07e, 0x060ff07f, 0x060ff080, 0x070ff081, - 0x070ff082, 0x060ff083, 0x070ff084, 0x060ff085, - 0x0338600c, 0x03010000, 0x038a8841, 0x058d0842, - 0x03386000, 0x03020000, 0x07c00000, 0x06483075, - 0x0781884b, 0x0448d07a, 0x078187fc, 0x040fd079, - 0x052e6200, 0x038005d1, 0x0648307a, 0x068182b3, - 0x05a007d2, 0x0120984d, 0x018007e7, 0x04002089, + 0x0782069f, 0x030460ff, 0x052e40c0, 0x04092046, + 0x0349a0e4, 0x0581869c, 0x003e4080, 0x0700c000, + 0x038006a0, 0x003e4080, 0x05008000, 0x038006a0, + 0x04092046, 0x070ff03a, 0x008686a4, 0x013e4000, + 0x07000003, 0x06a00379, 0x06602e79, 0x050f80ff, + 0x032fa009, 0x030ef000, 0x028606ae, 0x06009079, + 0x05308000, 0x03016000, 0x04a0080d, 0x028006d6, + 0x0049407a, 0x078106d1, 0x069c06d0, 0x04008079, + 0x04a0081f, 0x008686d0, 0x06600679, 0x050f80ff, + 0x063fa029, 0x06000001, 0x0349f003, 0x048186d0, + 0x07780006, 0x07ffff00, 0x037c00ff, 0x07000600, + 0x048186d0, 0x0079fe02, 0x070000ff, 0x056c08ff, + 0x048186d0, 0x0246007a, 0x0400707a, 0x06600679, + 0x050f80ff, 0x04302001, 0x04000410, 0x05303442, + 0x02080002, 0x063fa032, 0x06000001, 0x020e3079, + 0x028006d6, 0x0447407a, 0x05a00800, 0x05308000, + 0x03020000, 0x06009079, 0x04a0080d, 0x033e6a00, + 0x0700aa0a, 0x02079051, 0x02800016, 0x06605679, + 0x050f80ff, 0x032fa009, 0x070ff000, 0x038606f3, + 0x057dfeff, 0x07ffffff, 0x078106f3, 0x050f8000, + 0x012fa811, 0x0079fe02, 0x070000ff, 0x077d66ff, + 0x060000dc, 0x058186f3, 0x060ff001, 0x008686f4, + 0x064b0002, 0x06420002, 0x060ff002, 0x05500400, + 0x050f80ff, 0x05004084, 0x073fa00a, 0x06000002, + 0x07c00000, 0x04600201, 0x050f80ff, 0x073fa009, + 0x06000001, 0x0079fe02, 0x070000ff, 0x077d72ff, + 0x070000dd, 0x058186f3, 0x064b0002, 0x06420002, + 0x06000001, 0x038006ed, 0x0605004c, 0x01800705, + 0x04930701, 0x05a00806, 0x054bc450, 0x04810708, + 0x01d00709, 0x00800708, 0x00800719, 0x0180071d, + 0x018007bd, 0x008007d0, 0x0080072a, 0x0180071d, + 0x01800787, 0x00800719, 0x018007d4, 0x00800719, + 0x00800719, 0x018007d7, 0x018007f5, 0x018007a9, + 0x00800719, 0x00800719, 0x06009051, 0x037a3309, + 0x06000007, 0x00800815, 0x073c3fff, 0x0700000f, + 0x0379ff50, 0x070fffff, 0x060ff079, 0x055c0450, + 0x048107cd, 0x002fb008, 0x060ff079, 0x055c0450, + 0x058107cc, 0x04a007f8, 0x018007c5, 0x0179fe50, + 0x070fffff, 0x070050ff, 0x060ff079, 0x055c0405, + 0x0481073d, 0x002fb008, 0x060ff079, 0x055c0405, + 0x0481073d, 0x050fd005, 0x05601005, 0x050f80ff, + 0x032fa009, 0x03460000, 0x05601005, 0x050f80ff, + 0x032fa00a, 0x018007c9, 0x073c3fff, 0x0700000f, + 0x070ff087, 0x017980ff, 0x0600f507, 0x0681874c, + 0x02203040, 0x05002087, 0x0049d002, 0x0681874c, + 0x002fb008, 0x07006087, 0x002fb008, 0x0149d006, + 0x05810781, 0x04930751, 0x01257000, 0x052e4003, + 0x072e5030, 0x0304c050, 0x02400057, 0x06740057, + 0x06000004, 0x0782001d, 0x004940e6, 0x00a18aae, + 0x0448b07a, 0x0481075e, 0x04603e79, 0x050f80ff, + 0x048d075b, 0x073fa042, 0x0600004a, 0x0049107a, + 0x00a186da, 0x04002083, 0x07003084, 0x04004085, + 0x04602679, 0x0049b07a, 0x04810767, 0x04602670, + 0x050f80ff, 0x063fa01a, 0x06000001, 0x05a00800, + 0x07a00912, 0x033e6a00, 0x0700aa0a, 0x062e5020, + 0x06a00940, 0x02798102, 0x070000ff, 0x007c8002, + 0x07000055, 0x0581077e, 0x072e50c0, 0x0648a002, + 0x0581077e, 0x040fd002, 0x048d0779, 0x03386006, + 0x03010000, 0x033e6000, 0x0700000c, 0x003e4002, + 0x07000a00, 0x038006d8, 0x07420003, 0x07818744, + 0x00798002, 0x0600f507, 0x0681874c, 0x01800755, + 0x0593078e, 0x01257000, 0x073c3fff, 0x0700000f, + 0x052e4003, 0x072e5030, 0x0304c050, 0x067800e6, + 0x07000041, 0x05810793, 0x07a0091b, 0x0681879e, + 0x002fb008, 0x067800e6, 0x07000041, 0x05810799, + 0x07a0091b, 0x0681879e, 0x062e5020, 0x003e4002, + 0x07000a00, 0x03e00000, 0x02800016, 0x06740057, + 0x07000018, 0x0782001d, 0x07a00912, 0x033e6a00, + 0x0700aa0a, 0x002fb008, 0x07a00912, 0x033e6a00, + 0x0700aa0a, 0x01800799, 0x0379ff50, 0x070fffff, + 0x060ff079, 0x055c0450, 0x078187af, 0x0245507a, + 0x002fb008, 0x060ff079, 0x055c0450, 0x078187b4, + 0x0245507a, 0x002fb008, 0x05601050, 0x050f80ff, + 0x012fa809, 0x02455001, 0x05601050, 0x050f80ff, + 0x012fa80a, 0x018007c6, 0x069587cd, 0x0179fe50, + 0x070fffff, 0x045c042f, 0x068187cd, 0x0202f051, + 0x042e4020, 0x018007c6, 0x002fb008, 0x003e4002, + 0x07000a00, 0x0380001d, 0x079387cc, 0x062e5020, + 0x042e4002, 0x002fb008, 0x013e4000, 0x05000e00, + 0x0380001d, 0x0179fe50, 0x070fffff, 0x010210ff, + 0x0380001d, 0x023e5008, 0x05000800, 0x0380001d, + 0x0179fe50, 0x070fffff, 0x0102e0ff, 0x05602c2e, + 0x050f80ff, 0x05222000, 0x07223000, 0x05224000, + 0x07225000, 0x07226000, 0x05227000, 0x05228000, + 0x0722a000, 0x0522b000, 0x060ff029, 0x063fa051, + 0x07000011, 0x030290ff, 0x0202c026, 0x0522d000, + 0x052e400c, 0x0560402e, 0x050f80ff, 0x032fa021, + 0x04032002, 0x07033003, 0x07420000, 0x07036000, + 0x0403b001, 0x0380001d, 0x030430d4, 0x062e5008, + 0x01800290, 0x05601050, 0x050f80ff, 0x032fa009, + 0x03460000, 0x01800803, 0x0246007a, 0x0045207a, + 0x00800801, 0x0246007a, 0x0600007a, 0x04601079, + 0x050f80ff, 0x032fa00a, 0x07c00000, 0x03928806, + 0x070500e1, 0x07c00000, 0x0245f008, 0x0584080a, + 0x020e0008, 0x07c00000, 0x070ff009, 0x065a0008, + 0x0584080f, 0x020e0008, 0x07c00000, 0x05840812, + 0x020e0008, 0x07c00000, 0x05308000, 0x0500d000, + 0x04a0080d, 0x04a0081a, 0x02800016, 0x052e4300, + 0x072e500c, 0x073c3fff, 0x0700000f, 0x07c00000, + 0x04602608, 0x050f80ff, 0x032fa011, 0x076a0000, + 0x07818828, 0x066a0001, 0x05810828, 0x06006051, + 0x07c00000, 0x02206001, 0x07c00000, 0x0678007a, + 0x06000020, 0x06818832, 0x0049107a, 0x04810832, + 0x073c3fff, 0x0700000f, 0x02800645, 0x040fd079, + 0x0648307a, 0x04810837, 0x06a009a7, 0x0180083c, + 0x04a007fd, 0x05308000, 0x05001000, 0x06009079, + 0x04a0080d, 0x058d083c, 0x040fd079, 0x033e6a00, + 0x0600aa0e, 0x02079051, 0x03386006, 0x03010000, + 0x02800016, 0x052e6200, 0x0648307a, 0x04810849, + 0x06a009a7, 0x018008f9, 0x04a007fd, 0x05308000, + 0x05001000, 0x06009079, 0x04a0080d, 0x018008f9, + 0x050010ff, 0x0448b07a, 0x0481085d, 0x0049107a, + 0x0481085d, 0x048d0854, 0x04604679, 0x050f80ff, + 0x032fa009, 0x03680600, 0x056c02ff, 0x0681885d, + 0x046c1001, 0x0581085f, 0x056a02ff, 0x07c00000, + 0x04a00862, 0x075c00ff, 0x07c00000, 0x048d0862, + 0x060ff07c, 0x070ff07d, 0x070ff07e, 0x060ff07f, + 0x060ff080, 0x070ff081, 0x070ff082, 0x060ff083, + 0x070ff084, 0x060ff085, 0x0338600c, 0x03010000, + 0x038a886f, 0x048d0870, 0x03386000, 0x03020000, + 0x07c00000, 0x06483075, 0x06818879, 0x0448d07a, + 0x0681882a, 0x040fd079, 0x052e6200, 0x038005ee, + 0x0648307a, 0x068182d0, 0x05a00800, 0x06009051, + 0x017af709, 0x06000008, 0x00800815, 0x04002089, 0x04780102, 0x07f00000, 0x05001088, 0x04740101, 0x03100000, 0x04780101, 0x07f00000, 0x060ff002, - 0x045c0401, 0x06818867, 0x00088001, 0x033e6000, + 0x045c0401, 0x07818899, 0x00088001, 0x033e6000, 0x070000c0, 0x0220901a, 0x05308000, 0x01012000, - 0x04a007df, 0x018008c0, 0x01209865, 0x018007e7, - 0x00209867, 0x018002ca, 0x040fd075, 0x040fd07a, - 0x040fd079, 0x0648307a, 0x05810874, 0x06780075, - 0x06000007, 0x07818881, 0x00494075, 0x07818874, - 0x06a0096b, 0x06486075, 0x078182b1, 0x00494075, - 0x06818894, 0x02490075, 0x078182c6, 0x04487075, - 0x06818889, 0x0448b07a, 0x04810880, 0x00492075, - 0x0781889f, 0x00800897, 0x05308000, 0x03010000, - 0x06009079, 0x04a007df, 0x03800014, 0x0448e0e6, - 0x0581859c, 0x018002af, 0x0648307a, 0x078188c0, - 0x004940e6, 0x01a18a72, 0x05308000, 0x0500e000, - 0x06009079, 0x04a007df, 0x04008089, 0x05a007e4, - 0x018008c0, 0x00208007, 0x05a007e4, 0x03800014, - 0x05a007cf, 0x05308000, 0x0700f000, 0x06009079, - 0x07000088, 0x04a008a8, 0x04a007df, 0x03800014, - 0x004940e6, 0x01a18a72, 0x05308000, 0x01011000, - 0x06009079, 0x07000088, 0x04a008a8, 0x04a007df, - 0x03800014, 0x03386000, 0x07030000, 0x07f00000, - 0x048d08ab, 0x033e6a00, 0x0600aa0e, 0x02079051, - 0x040fd075, 0x0448b075, 0x058108b7, 0x02493075, - 0x058108b7, 0x05301005, 0x03010000, 0x008008b9, + 0x04a0080d, 0x008008f4, 0x06009051, 0x077b2b09, + 0x06000008, 0x00800815, 0x06009051, 0x077b3309, + 0x06000008, 0x018002ed, 0x040fd075, 0x040fd07a, + 0x040fd079, 0x0648307a, 0x048108a8, 0x06780075, + 0x06000007, 0x068188b5, 0x00494075, 0x068188a8, + 0x06a009a7, 0x06486075, 0x068182ce, 0x00494075, + 0x068188c8, 0x02490075, 0x078182e7, 0x04487075, + 0x078188bd, 0x0448b07a, 0x058108b4, 0x00492075, + 0x068188d3, 0x008008cb, 0x05308000, 0x03010000, + 0x06009079, 0x04a0080d, 0x02800016, 0x0448e0e6, + 0x058185b7, 0x018002ca, 0x0648307a, 0x068188f4, + 0x004940e6, 0x00a18aae, 0x05308000, 0x0500e000, + 0x06009079, 0x04a0080d, 0x04008089, 0x05a00812, + 0x008008f4, 0x00208007, 0x05a00812, 0x02800016, + 0x04a007fd, 0x05308000, 0x0700f000, 0x06009079, + 0x07000088, 0x04a008dc, 0x04a0080d, 0x02800016, + 0x004940e6, 0x00a18aae, 0x05308000, 0x01011000, + 0x06009079, 0x07000088, 0x04a008dc, 0x04a0080d, + 0x02800016, 0x03386000, 0x07030000, 0x07f00000, + 0x048d08df, 0x033e6a00, 0x0600aa0e, 0x02079051, + 0x040fd075, 0x0448b075, 0x058108eb, 0x02493075, + 0x058108eb, 0x05301005, 0x03010000, 0x018008ed, 0x05301006, 0x03010000, 0x05002087, 0x06485002, - 0x068188b9, 0x0744c000, 0x01088000, 0x02086001, - 0x07c00000, 0x05001088, 0x040fd001, 0x04a008d5, + 0x078188ed, 0x0744c000, 0x01088000, 0x02086001, + 0x07c00000, 0x05001088, 0x040fd001, 0x07a00909, 0x0644c001, 0x00088001, 0x070fc0ff, 0x033e6a00, - 0x0600aa0e, 0x004920e6, 0x068188cb, 0x02079051, - 0x048d08cb, 0x060ff089, 0x034990ff, 0x058108d2, - 0x03386005, 0x03010000, 0x03800014, 0x03386006, - 0x03010000, 0x03800014, 0x048d08d5, 0x03386000, - 0x07030000, 0x07f00000, 0x048d08d9, 0x070ff087, - 0x074850ff, 0x068188da, 0x07c00000, 0x058d08de, - 0x02386001, 0x07030000, 0x07f00000, 0x058d08e2, - 0x070ff087, 0x074850ff, 0x068188e3, 0x07c00000, - 0x05002087, 0x0049d002, 0x078188f6, 0x002fb008, - 0x067800e6, 0x07000041, 0x002fb008, 0x078188f6, - 0x07a0090c, 0x0448e002, 0x058108f9, 0x0648a002, - 0x05818903, 0x06486002, 0x048108fd, 0x02400057, - 0x056a02ff, 0x07c00000, 0x07a0090c, 0x06788102, - 0x06000004, 0x078188f6, 0x04002089, 0x070ff0d4, - 0x045c0402, 0x077800ff, 0x07f00000, 0x078188f6, - 0x00202010, 0x018c08f6, 0x07f00000, 0x06420002, - 0x04818904, 0x05a008de, 0x033e6a00, 0x0700aa0a, + 0x0600aa0e, 0x004920e6, 0x078188ff, 0x02079051, + 0x058d08ff, 0x060ff089, 0x034990ff, 0x07810906, + 0x03386005, 0x03010000, 0x02800016, 0x03386006, + 0x03010000, 0x02800016, 0x078d0909, 0x03386000, + 0x07030000, 0x07f00000, 0x068d090d, 0x070ff087, + 0x074850ff, 0x0481890e, 0x07c00000, 0x078d0912, + 0x02386001, 0x07030000, 0x07f00000, 0x068d0916, + 0x070ff087, 0x074850ff, 0x05818917, 0x07c00000, + 0x05002087, 0x0049d002, 0x0481892a, 0x002fb008, + 0x067800e6, 0x07000041, 0x002fb008, 0x0481892a, + 0x06a00940, 0x0448e002, 0x0781092d, 0x0648a002, + 0x04818937, 0x06486002, 0x06810931, 0x02400057, + 0x056a02ff, 0x07c00000, 0x06a00940, 0x06788102, + 0x06000004, 0x0481892a, 0x04002089, 0x070ff0d4, + 0x045c0402, 0x077800ff, 0x07f00000, 0x0481892a, + 0x00202010, 0x028c092a, 0x07f00000, 0x06420002, + 0x04818938, 0x07a00912, 0x033e6a00, 0x0700aa0a, 0x07c00000, 0x07f00000, 0x060ff0a2, 0x045a0202, - 0x060ff0a2, 0x045c0402, 0x0481890d, 0x07c00000, - 0x06a0035e, 0x03495047, 0x07810918, 0x0320901d, - 0x0280094a, 0x0220901f, 0x0280094a, 0x014980e4, - 0x05818014, 0x013e4000, 0x07003000, 0x05600e35, - 0x050f80ff, 0x07a00990, 0x01208003, 0x05a007e4, - 0x02800932, 0x03209009, 0x0280094a, 0x03209011, - 0x0280094a, 0x02209007, 0x0280094a, 0x03209003, - 0x0280094a, 0x00497043, 0x05818928, 0x00494043, - 0x07810924, 0x02209001, 0x0280094a, 0x0220900d, - 0x0280094a, 0x0320900f, 0x0280094a, 0x03493000, - 0x0681093b, 0x027c0045, 0x070a0000, 0x06810946, - 0x0220900b, 0x0280094a, 0x0320900c, 0x02800940, - 0x02209013, 0x05308000, 0x01012000, 0x04a007df, - 0x01800288, 0x03209005, 0x0280094a, 0x072e500c, - 0x00208002, 0x05a007e4, 0x03800014, 0x0349c0e4, - 0x06810967, 0x072d6000, 0x07f00000, 0x060000d0, + 0x060ff0a2, 0x045c0402, 0x05818941, 0x07c00000, + 0x06a00379, 0x03495047, 0x0681094c, 0x0320901d, + 0x0380097e, 0x0220901f, 0x0380097e, 0x014980e4, + 0x04818016, 0x013e4000, 0x07003000, 0x05600e35, + 0x050f80ff, 0x07a009cc, 0x01208003, 0x05a00812, + 0x03800966, 0x03209009, 0x0380097e, 0x03209011, + 0x0380097e, 0x02209007, 0x0380097e, 0x03209003, + 0x0380097e, 0x00497043, 0x0581895c, 0x00494043, + 0x06810958, 0x02209001, 0x0380097e, 0x0220900d, + 0x0380097e, 0x0320900f, 0x0380097e, 0x03493000, + 0x0781096f, 0x027c0045, 0x070a0000, 0x0681097a, + 0x0220900b, 0x0380097e, 0x0320900c, 0x03800974, + 0x02209013, 0x05308000, 0x01012000, 0x04a0080d, + 0x0180029f, 0x03209005, 0x0380097e, 0x072e500c, + 0x00208002, 0x05a00812, 0x02800016, 0x0349c0e4, + 0x0681099b, 0x072d6000, 0x07f00000, 0x060000d0, 0x0379ff00, 0x0700ffff, 0x04605232, 0x050f80ff, 0x032fa00a, 0x070000d1, 0x0379ff00, 0x0700ffff, 0x04605432, 0x050f80ff, 0x032fa00a, 0x062d6002, 0x07f00000, 0x0204f0d0, 0x0079fe4f, 0x070000ff, 0x074b0a00, 0x044b044f, 0x075a0000, 0x04600432, - 0x050f80ff, 0x032fa00a, 0x00041032, 0x03800044, - 0x05308000, 0x01012000, 0x04a007df, 0x00800279, - 0x06a0035e, 0x070ff02e, 0x045c0479, 0x06810973, - 0x05308000, 0x05008000, 0x06009079, 0x04a007df, - 0x07c00000, 0x053f2000, 0x0700c000, 0x019d8974, - 0x07c00000, 0x033e5000, 0x0700f000, 0x0280097f, - 0x004980e5, 0x0581807e, 0x033e5000, 0x05008000, - 0x050f8035, 0x07a00990, 0x00017008, 0x01018009, + 0x050f80ff, 0x032fa00a, 0x00041032, 0x02800046, + 0x07780047, 0x05000700, 0x037c00ff, 0x07000500, + 0x058189a3, 0x05308000, 0x03019000, 0x038009a5, + 0x05308000, 0x01012000, 0x04a0080d, 0x01800290, + 0x06a00379, 0x070ff02e, 0x045c0479, 0x078109af, + 0x05308000, 0x05008000, 0x06009079, 0x04a0080d, + 0x07c00000, 0x053f2000, 0x0700c000, 0x009d89b0, + 0x07c00000, 0x033e5000, 0x0700f000, 0x038009bb, + 0x004980e5, 0x04818080, 0x033e5000, 0x05008000, + 0x050f8035, 0x07a009cc, 0x00017008, 0x01018009, 0x033e5000, 0x07000c00, 0x05308000, 0x07006000, - 0x07009041, 0x04a007df, 0x033e5000, 0x07003000, - 0x05008017, 0x07009018, 0x0249a0e5, 0x0681821f, - 0x0380007e, 0x06600052, 0x030d60ff, 0x07f00000, + 0x07009041, 0x04a0080d, 0x033e5000, 0x07003000, + 0x05008017, 0x07009018, 0x0249a0e5, 0x07818236, + 0x02800080, 0x06600052, 0x030d60ff, 0x07f00000, 0x07f00000, 0x000110d0, 0x010120d1, 0x04600252, 0x030d60ff, 0x07f00000, 0x07f00000, 0x020130d0, 0x010140d1, 0x04600452, 0x030d60ff, 0x010170d4, 0x07f00000, 0x020150d0, 0x030160d1, 0x053fa83a, 0x06000008, 0x07c00000, 0x07600c41, 0x050f80ff, 0x01202003, 0x073fa00a, 0x06000001, 0x07f00000, - 0x05601041, 0x050f80ff, 0x032fa071, 0x01800139, - 0x002fb001, 0x038009b2, 0x012fb000, 0x02386001, - 0x030e0000, 0x03076087, 0x069f09b5, 0x03386000, - 0x03020000, 0x00498076, 0x04818a07, 0x00497076, - 0x048189c1, 0x04482076, 0x048189d3, 0x02496076, - 0x058189f6, 0x02800a04, 0x075a00ff, 0x069f09c2, + 0x05601041, 0x050f80ff, 0x032fa071, 0x01800141, + 0x002fb001, 0x038009ee, 0x012fb000, 0x02386001, + 0x030e0000, 0x03076087, 0x069f09f1, 0x03386000, + 0x03020000, 0x00498076, 0x04818a43, 0x00497076, + 0x048189fd, 0x04482076, 0x05818a0f, 0x02496076, + 0x04818a32, 0x02800a40, 0x075a00ff, 0x069f09fe, 0x03386000, 0x03010000, 0x033e6000, 0x07003000, - 0x00492076, 0x06810a04, 0x00491076, 0x04818a04, - 0x02490076, 0x04818a04, 0x0249a0e6, 0x078109d1, - 0x06a00a7f, 0x028009fb, 0x0245f076, 0x02800a04, - 0x004980e6, 0x06810a0d, 0x070ff074, 0x028609e5, + 0x00492076, 0x06810a40, 0x00491076, 0x04818a40, + 0x02490076, 0x04818a40, 0x0249a0e6, 0x06810a0d, + 0x07a00abb, 0x02800a37, 0x0245f076, 0x02800a40, + 0x004980e6, 0x06810a49, 0x070ff074, 0x03860a21, 0x070ff072, 0x05500471, 0x050f80ff, 0x002fa819, - 0x079f09db, 0x02080001, 0x00081002, 0x01082003, - 0x06a00a49, 0x02860a0d, 0x06a00a2c, 0x0249a0e6, - 0x048189fb, 0x02800a04, 0x06a00a2c, 0x033e6000, - 0x07002200, 0x030ef003, 0x018689ed, 0x033e6000, - 0x07002e00, 0x0045807a, 0x0249a0e6, 0x068109f1, - 0x04a007d3, 0x038009ff, 0x0648c0e6, 0x06810a04, - 0x03386000, 0x030e0000, 0x02800580, 0x06a00a2c, - 0x030ef003, 0x008689fb, 0x070ff074, 0x028609ea, - 0x033e6000, 0x07002200, 0x0249a0e6, 0x06810a04, + 0x079f0a17, 0x02080001, 0x00081002, 0x01082003, + 0x06a00a85, 0x02860a49, 0x06a00a68, 0x0249a0e6, + 0x04818a37, 0x02800a40, 0x06a00a68, 0x033e6000, + 0x07002200, 0x030ef003, 0x00868a29, 0x033e6000, + 0x07002e00, 0x0045807a, 0x0249a0e6, 0x07810a2d, + 0x04a00801, 0x02800a3b, 0x0648c0e6, 0x06810a40, + 0x03386000, 0x030e0000, 0x0280059b, 0x06a00a68, + 0x030ef003, 0x00868a37, 0x070ff074, 0x02860a26, + 0x033e6000, 0x07002200, 0x0249a0e6, 0x06810a40, 0x03386000, 0x030e0000, 0x033e6000, 0x05008000, - 0x03800611, 0x03386000, 0x030e0000, 0x02800029, + 0x03800630, 0x03386000, 0x030e0000, 0x0380002b, 0x040fd079, 0x033e6000, 0x0500a200, 0x03386000, - 0x030e0000, 0x00800897, 0x02209a0d, 0x018007e7, + 0x030e0000, 0x008008cb, 0x02209a49, 0x00800815, 0x02386001, 0x030e0000, 0x06604e79, 0x050f80ff, 0x032fa009, 0x03070000, 0x06601270, 0x050f80ff, 0x053fa821, 0x06000038, 0x07f00000, 0x04601a70, - 0x050f80ff, 0x032fa021, 0x060ff002, 0x02860a2a, - 0x069f0a1f, 0x03080000, 0x00081001, 0x00082002, + 0x050f80ff, 0x032fa021, 0x060ff002, 0x03860a66, + 0x069f0a5b, 0x03080000, 0x00081001, 0x00082002, 0x03083003, 0x070ff087, 0x033e6000, 0x07000300, 0x03386000, 0x030e0000, 0x07c00000, 0x0045807a, - 0x03800a27, 0x06604e79, 0x050f80ff, 0x032fa009, + 0x03800a63, 0x06604e79, 0x050f80ff, 0x032fa009, 0x03070000, 0x06601270, 0x050f80ff, 0x053fa822, - 0x06000038, 0x069f0a34, 0x070ff087, 0x0149d0ff, - 0x04818a40, 0x06000080, 0x05001081, 0x05002082, + 0x06000038, 0x069f0a70, 0x070ff087, 0x0149d0ff, + 0x04818a7c, 0x06000080, 0x05001081, 0x05002082, 0x06003083, 0x04601a70, 0x050f80ff, 0x032fa022, 0x07c00000, 0x0131ef00, 0x0700000f, 0x070ff087, - 0x0149d0ff, 0x06810a34, 0x0742001e, 0x05818a42, - 0x050fd0ff, 0x02800a40, 0x07420074, 0x06810a5e, - 0x02400073, 0x060ff038, 0x00540473, 0x03d00a60, + 0x0149d0ff, 0x06810a70, 0x0742001e, 0x05818a7e, + 0x050fd0ff, 0x02800a7c, 0x07420074, 0x07810a9a, + 0x02400073, 0x060ff038, 0x00540473, 0x03d00a9c, 0x05600272, 0x050f80ff, 0x032fa009, 0x030ef000, - 0x02860a70, 0x01072000, 0x05601000, 0x050f80ff, - 0x032fa009, 0x03681e00, 0x076c14ff, 0x04818a70, + 0x03860aac, 0x01072000, 0x05601000, 0x050f80ff, + 0x032fa009, 0x03681e00, 0x076c14ff, 0x05818aac, 0x02073038, 0x05271009, 0x07c00000, 0x022ff001, - 0x02800a5d, 0x03800a66, 0x02800a68, 0x03800a6a, - 0x03800a6c, 0x02800a6e, 0x02800a4f, 0x05271009, - 0x02800a5d, 0x0527100c, 0x02800a5d, 0x0527100f, - 0x02800a5d, 0x05271012, 0x02800a5d, 0x04271015, - 0x02800a5d, 0x032ff000, 0x02800a5d, 0x02386001, - 0x030e0000, 0x05001087, 0x069f0a75, 0x00494001, - 0x07810a7b, 0x03386000, 0x030e0000, 0x07c00000, + 0x03800a99, 0x02800aa2, 0x02800aa4, 0x03800aa6, + 0x02800aa8, 0x03800aaa, 0x03800a8b, 0x05271009, + 0x03800a99, 0x0527100c, 0x03800a99, 0x0527100f, + 0x03800a99, 0x05271012, 0x03800a99, 0x04271015, + 0x03800a99, 0x032ff000, 0x03800a99, 0x02386001, + 0x030e0000, 0x05001087, 0x079f0ab1, 0x00494001, + 0x07810ab7, 0x03386000, 0x030e0000, 0x07c00000, 0x03386000, 0x03010000, 0x033e6000, 0x07003000, - 0x00208080, 0x0301a087, 0x0049401a, 0x04818a89, - 0x0049701a, 0x05818a9f, 0x06420008, 0x04818a80, - 0x0760031e, 0x00208080, 0x0049d01a, 0x07810a90, - 0x06420008, 0x04818a80, 0x0760031d, 0x00208080, - 0x02800a80, 0x00208070, 0x0301a087, 0x0049401a, - 0x06810a80, 0x01208060, 0x0301a087, 0x0049401a, - 0x06810a80, 0x06a00a2c, 0x033e6000, 0x07002200, - 0x069f0a9b, 0x03386000, 0x030e0000, 0x07c00000, - 0x06a00a2c, 0x02800a9b, 0xe2cab9fe, 0x02800004, - 0x00000000, 0x00008000, 0x00000703, 0x033d0aaa, - 0x070aaaaa, 0x013d1aaa, 0x070aaaaa, 0x050f801e, - 0x012fa8d1, 0x050f801e, 0x043fa889, 0x0700000f, - 0x03200005, 0x07420000, 0x050fb000, 0x050f801e, - 0x073fa011, 0x06000038, 0x050f801e, 0x053fa859, - 0x0700003a, 0x050fe000, 0x0481800e, 0x07840024, - 0x0595801d, 0x030e0011, 0x072e4200, 0x03800018, - 0x02920040, 0x068b0023, 0x028a0064, 0x0778aae7, - 0x06000001, 0x01a18536, 0x079a0053, 0x05908018, - 0x010170e1, 0x03640a17, 0x0482803d, 0x070ff017, - 0x02d0002a, 0x02800032, 0x02800034, 0x02800037, - 0x0380003a, 0x0280003d, 0x0280003d, 0x0280003d, - 0x0280003d, 0x03e00000, 0x03800018, 0x04908034, - 0x030160e1, 0x0380003f, 0x04908037, 0x030150e1, - 0x0380003f, 0x0590803a, 0x010140e1, 0x0380003f, - 0x060fc013, 0x06a006f4, 0x03800018, 0x014940e4, - 0x00a18043, 0x03800024, 0x02681e0d, 0x050fb0ff, - 0x04600875, 0x050f80ff, 0x053fa809, 0x06000001, - 0x05488003, 0x04818052, 0x0400800d, 0x0120d000, - 0x013e4000, 0x05000200, 0x06009075, 0x04002076, - 0x06a006e0, 0x07c00000, 0x000170e3, 0x050fe017, - 0x05878059, 0x0547f417, 0x0301f0ff, 0x01800235, - 0x054bc417, 0x050fb0ff, 0x03640aff, 0x04828061, - 0x0179fe17, 0x070fffff, 0x030750ff, 0x01800472, - 0x050fd017, 0x06a006f4, 0x0380001d, 0x00018098, - 0x07480018, 0x04818079, 0x05481018, 0x04818076, - 0x05482018, 0x04818073, 0x07483018, 0x04818070, - 0x002fb004, 0x030190cc, 0x0380007b, 0x012fb003, - 0x020190cb, 0x0380007b, 0x002fb002, 0x030190ca, - 0x0380007b, 0x002fb001, 0x030190c9, 0x0380007b, - 0x012fb000, 0x020190c8, 0x00017086, 0x01491017, - 0x07810084, 0x05a001a0, 0x07781817, 0x05000200, - 0x037c00ff, 0x05000200, 0x0581012e, 0x078b0084, - 0x03385000, 0x03020000, 0x07780017, 0x0043dc07, - 0x078181e2, 0x056c0478, 0x05810147, 0x056c0278, - 0x07810090, 0x05278000, 0x0180012e, 0x05278000, - 0x07483017, 0x04810131, 0x05482017, 0x04810138, - 0x0448b076, 0x0681811c, 0x06601875, 0x050f80ff, - 0x073fa022, 0x0600003e, 0x06000080, 0x05001081, - 0x05002082, 0x06003083, 0x00683e76, 0x076c0aff, - 0x048180a7, 0x05004084, 0x04602075, 0x050f80ff, - 0x022fa02a, 0x038000aa, 0x04602075, 0x050f80ff, - 0x032fa022, 0x04487076, 0x0581011b, 0x04604675, - 0x050f80ff, 0x032fa009, 0x03680600, 0x050010ff, - 0x056c02ff, 0x058180f3, 0x07000090, 0x074b0000, - 0x050fe000, 0x038600ee, 0x0560027b, 0x050f80ff, - 0x032fa009, 0x07f00000, 0x07601400, 0x050f80ff, - 0x032fa009, 0x07f00000, 0x074b0000, 0x070ff08d, - 0x0179feff, 0x070000ff, 0x055c0400, 0x078100f3, - 0x070ff017, 0x037a00ff, 0x05000400, 0x010170ff, - 0x04604075, 0x050f80ff, 0x034a8400, 0x034a8800, - 0x05780100, 0x070000ff, 0x055a0400, 0x074b0a00, - 0x077bff00, 0x070000ff, 0x032fa00a, 0x07f00000, - 0x04603e75, 0x050f80ff, 0x07300fff, 0x070fffff, - 0x032fa00a, 0x07f00000, 0x04604a75, 0x050f80ff, - 0x0700008d, 0x017a0100, 0x07ffff00, 0x032fa00a, - 0x07f00000, 0x04604c75, 0x050f80ff, 0x07300fff, - 0x070fffff, 0x032fa00a, 0x07f00000, 0x06604275, - 0x050f80ff, 0x06000013, 0x032fa00a, 0x0245a076, - 0x008001ea, 0x04603875, 0x050f80ff, 0x05002071, - 0x073fa00a, 0x06000001, 0x066c0001, 0x06818115, - 0x05482017, 0x04810115, 0x070ff09a, 0x017910ff, - 0x03088888, 0x057d10ff, 0x03088888, 0x04810115, - 0x070ff09a, 0x045a0201, 0x070ff09a, 0x045c0401, - 0x048180fd, 0x050020ff, 0x060000fb, 0x06483001, - 0x07818109, 0x00680e01, 0x055c0400, 0x0481010e, - 0x004a4001, 0x02400002, 0x046c0e02, 0x06818104, - 0x00800115, 0x040fd002, 0x052e400c, 0x040080fb, - 0x046a6108, 0x06009075, 0x04002076, 0x06a006e0, - 0x04603e75, 0x050f80ff, 0x053fa842, 0x06000045, - 0x048b0119, 0x02085013, 0x05278000, 0x02075013, - 0x060ff0fb, 0x00d0011f, 0x01800124, 0x00800126, - 0x01800128, 0x0080012a, 0x0080012c, 0x062d0020, - 0x0180012e, 0x062d0080, 0x0180012e, 0x052d0200, - 0x0180012e, 0x052d0800, 0x0180012e, 0x033d0000, - 0x06000002, 0x03920024, 0x0584801d, 0x02800023, - 0x040fe07f, 0x00860140, 0x05a00160, 0x0192012e, - 0x040fe07f, 0x07a68160, 0x0180012e, 0x0760187b, - 0x050f80ff, 0x032fa009, 0x0744f000, 0x0760187b, - 0x050f80ff, 0x032fa00a, 0x02800097, 0x052e400c, - 0x040080fb, 0x046aa108, 0x06009075, 0x04002076, - 0x06a006e0, 0x0180012e, 0x04278001, 0x05482017, - 0x04810154, 0x048b014a, 0x060ff086, 0x0349f0ff, - 0x0581807b, 0x07483017, 0x04810151, 0x050fd0ff, - 0x040fe07f, 0x07a68160, 0x0180012e, 0x05004084, - 0x05a00217, 0x0192012e, 0x070ff07d, 0x0450047c, - 0x056004ff, 0x050f80ff, 0x032fa009, 0x070ff000, - 0x00540479, 0x030790ff, 0x00800138, 0x04487076, - 0x04810168, 0x04605875, 0x050f80ff, 0x032fa009, - 0x060ff079, 0x01540400, 0x0180016a, 0x060ff079, - 0x0054047a, 0x05820199, 0x05810199, 0x070ff07d, - 0x0450047c, 0x050f80ff, 0x002fa819, 0x048b0170, - 0x02080001, 0x00081002, 0x01082003, 0x058b0174, - 0x04487076, 0x0481017a, 0x02385001, 0x03010000, - 0x0080017c, 0x03385000, 0x03010000, 0x03400078, - 0x070ff003, 0x04500479, 0x030790ff, 0x0340007e, - 0x0642007f, 0x05810199, 0x070ff07e, 0x050f80ff, - 0x032fa009, 0x050fe000, 0x02868198, 0x070ff07d, - 0x056002ff, 0x050f80ff, 0x032fa009, 0x0107d000, - 0x0186019a, 0x0560107d, 0x050f80ff, 0x032fa009, - 0x03681e00, 0x0550041b, 0x050f80ff, 0x032fa009, - 0x0107e000, 0x070ff07e, 0x01800184, 0x0307c000, - 0x07c00000, 0x052e400c, 0x040080fb, 0x046aa108, - 0x06009075, 0x04002076, 0x028006e0, 0x060ff075, - 0x008601e0, 0x060ff073, 0x00540419, 0x058201b7, - 0x058101c3, 0x050010ff, 0x00202010, 0x00642001, - 0x068281ab, 0x04002001, 0x040f8073, 0x024a3c02, - 0x017a02ff, 0x06000c98, 0x070fa0ff, 0x060ff002, - 0x06500073, 0x03610072, 0x045c0473, 0x078181c6, - 0x03073072, 0x018001c6, 0x036100ff, 0x050010ff, - 0x03610072, 0x00540473, 0x057dfeff, 0x07ffffff, - 0x01400203, 0x00202010, 0x01642003, 0x068281ab, - 0x05002003, 0x008001ab, 0x04002013, 0x04001013, - 0x01294000, 0x07480077, 0x078181e1, 0x06604e75, - 0x050f80ff, 0x053fa809, 0x06000001, 0x07f00000, - 0x07602203, 0x050f80ff, 0x053fa809, 0x06000001, - 0x05481003, 0x078181dd, 0x060ff002, 0x04500401, - 0x016480ff, 0x078281e1, 0x07440077, 0x040080fb, - 0x006b6108, 0x06009075, 0x07a006db, 0x018001e1, - 0x060ff002, 0x045c0401, 0x078181e1, 0x01294000, - 0x07c00000, 0x040fd075, 0x050fd017, 0x060ff086, - 0x077800ff, 0x07000060, 0x037c00ff, 0x07000060, - 0x078181e4, 0x04487076, 0x04810201, 0x07780017, - 0x0243d807, 0x06818201, 0x06601875, 0x050f80ff, - 0x073fa022, 0x0600003e, 0x0249a076, 0x078181fa, - 0x058b01f5, 0x04603e75, 0x050f80ff, 0x053fa842, - 0x06000045, 0x052e400c, 0x040080fb, 0x026b4108, - 0x06009075, 0x04002076, 0x06a006e0, 0x03800024, - 0x06601875, 0x050f80ff, 0x073fa022, 0x0600003e, - 0x052e400c, 0x04600875, 0x050f80ff, 0x053fa809, - 0x06000001, 0x05488003, 0x05810211, 0x0400d0fb, - 0x066a810d, 0x013e4000, 0x07000300, 0x03800024, - 0x040080fb, 0x066a8108, 0x06009075, 0x04002076, - 0x06a006e0, 0x03800024, 0x0240007f, 0x0742007e, - 0x050f807e, 0x032fa009, 0x050fe000, 0x02868231, - 0x070ff07d, 0x055c047b, 0x04810226, 0x0760007d, - 0x050f80ff, 0x032fa009, 0x050fe000, 0x02868226, - 0x070ff07b, 0x0107d0ff, 0x0560107d, 0x050f80ff, - 0x032fa009, 0x03681e00, 0x0450041c, 0x0107e0ff, - 0x050f80ff, 0x032fa009, 0x050fe000, 0x01860233, - 0x0307c000, 0x07c00000, 0x040fd075, 0x028006f4, - 0x0460081f, 0x050f80ff, 0x032fa039, 0x01021000, - 0x03020005, 0x01018006, 0x01683e21, 0x00d0023d, - 0x0080025d, 0x018002f5, 0x0280032f, 0x038003d8, - 0x00800261, 0x0080025d, 0x0080025d, 0x0080025d, + 0x04008051, 0x00610108, 0x0301a087, 0x0049401a, + 0x05818ac6, 0x0049701a, 0x04818adc, 0x06420008, + 0x05818abd, 0x0760031e, 0x00610108, 0x0049d01a, + 0x06810acd, 0x06420008, 0x05818abd, 0x0760031d, + 0x00610108, 0x03800abd, 0x00208070, 0x0301a087, + 0x0049401a, 0x07810abd, 0x01208060, 0x0301a087, + 0x0049401a, 0x07810abd, 0x06a00a68, 0x033e6000, + 0x07002200, 0x079f0ad8, 0x03386000, 0x030e0000, + 0x07c00000, 0x06a00a68, 0x03800ad8, 0x8e579a58, + 0x02800004, 0x00000000, 0x00008000, 0x0000070b, + 0x033d0aaa, 0x070aaaaa, 0x013d1aaa, 0x070aaaaa, + 0x050f801e, 0x012fa8d1, 0x050f801e, 0x043fa889, + 0x0700000f, 0x03200005, 0x07420000, 0x050fb000, + 0x050f801e, 0x073fa011, 0x06000038, 0x050f801e, + 0x053fa859, 0x0700003a, 0x050fe000, 0x0481800e, + 0x07840024, 0x0595801d, 0x030e0011, 0x072e4200, + 0x03800018, 0x02920040, 0x068b0023, 0x028a0064, + 0x0778aae7, 0x06000001, 0x00a1853d, 0x079a0053, + 0x05908018, 0x010170e1, 0x03640a17, 0x0482803d, + 0x070ff017, 0x02d0002a, 0x02800032, 0x02800034, + 0x02800037, 0x0380003a, 0x0280003d, 0x0280003d, + 0x0280003d, 0x0280003d, 0x03e00000, 0x03800018, + 0x04908034, 0x030160e1, 0x0380003f, 0x04908037, + 0x030150e1, 0x0380003f, 0x0590803a, 0x010140e1, + 0x0380003f, 0x060fc013, 0x06a006fb, 0x03800018, + 0x014940e4, 0x00a18043, 0x03800024, 0x02681e0d, + 0x050fb0ff, 0x04600875, 0x050f80ff, 0x053fa809, + 0x06000001, 0x05488003, 0x04818052, 0x0400800d, + 0x0120d000, 0x013e4000, 0x05000200, 0x06009075, + 0x04002076, 0x07a006e7, 0x07c00000, 0x000170e3, + 0x050fe017, 0x05878059, 0x0547f417, 0x0301f0ff, + 0x01800235, 0x054bc417, 0x050fb0ff, 0x03640aff, + 0x04828061, 0x0179fe17, 0x070fffff, 0x030750ff, + 0x01800472, 0x050fd017, 0x06a006fb, 0x0380001d, + 0x00018098, 0x07480018, 0x04818079, 0x05481018, + 0x04818076, 0x05482018, 0x04818073, 0x07483018, + 0x04818070, 0x002fb004, 0x030190cc, 0x0380007b, + 0x012fb003, 0x020190cb, 0x0380007b, 0x002fb002, + 0x030190ca, 0x0380007b, 0x002fb001, 0x030190c9, + 0x0380007b, 0x012fb000, 0x020190c8, 0x00017086, + 0x01491017, 0x07810084, 0x05a001a0, 0x07781817, + 0x05000200, 0x037c00ff, 0x05000200, 0x0581012e, + 0x078b0084, 0x03385000, 0x03020000, 0x07780017, + 0x0043dc07, 0x078181e2, 0x056c0478, 0x05810147, + 0x056c0278, 0x07810090, 0x05278000, 0x0180012e, + 0x05278000, 0x07483017, 0x04810131, 0x05482017, + 0x04810138, 0x0448b076, 0x0681811c, 0x06601875, + 0x050f80ff, 0x073fa022, 0x0600003e, 0x06000080, + 0x05001081, 0x05002082, 0x06003083, 0x00683e76, + 0x076c0aff, 0x048180a7, 0x05004084, 0x04602075, + 0x050f80ff, 0x022fa02a, 0x038000aa, 0x04602075, + 0x050f80ff, 0x032fa022, 0x04487076, 0x0581011b, + 0x04604675, 0x050f80ff, 0x032fa009, 0x03680600, + 0x050010ff, 0x056c02ff, 0x058180f3, 0x07000090, + 0x074b0000, 0x050fe000, 0x038600ee, 0x0560027b, + 0x050f80ff, 0x032fa009, 0x07f00000, 0x07601400, + 0x050f80ff, 0x032fa009, 0x07f00000, 0x074b0000, + 0x070ff08d, 0x0179feff, 0x070000ff, 0x055c0400, + 0x078100f3, 0x070ff017, 0x037a00ff, 0x05000400, + 0x010170ff, 0x04604075, 0x050f80ff, 0x034a8400, + 0x034a8800, 0x05780100, 0x070000ff, 0x055a0400, + 0x074b0a00, 0x077bff00, 0x070000ff, 0x032fa00a, + 0x07f00000, 0x04603e75, 0x050f80ff, 0x07300fff, + 0x070fffff, 0x032fa00a, 0x07f00000, 0x04604a75, + 0x050f80ff, 0x0700008d, 0x017a0100, 0x07ffff00, + 0x032fa00a, 0x07f00000, 0x04604c75, 0x050f80ff, + 0x07300fff, 0x070fffff, 0x032fa00a, 0x07f00000, + 0x06604275, 0x050f80ff, 0x06000013, 0x032fa00a, + 0x0245a076, 0x008001ea, 0x04603875, 0x050f80ff, + 0x05002071, 0x073fa00a, 0x06000001, 0x066c0001, + 0x06818115, 0x05482017, 0x04810115, 0x070ff09a, + 0x017910ff, 0x03088888, 0x057d10ff, 0x03088888, + 0x04810115, 0x070ff09a, 0x045a0201, 0x070ff09a, + 0x045c0401, 0x048180fd, 0x050020ff, 0x060000fb, + 0x06483001, 0x07818109, 0x00680e01, 0x055c0400, + 0x0481010e, 0x004a4001, 0x02400002, 0x046c0e02, + 0x06818104, 0x00800115, 0x040fd002, 0x052e400c, + 0x040080fb, 0x046a6108, 0x06009075, 0x04002076, + 0x07a006e7, 0x04603e75, 0x050f80ff, 0x053fa842, + 0x06000045, 0x048b0119, 0x02085013, 0x05278000, + 0x02075013, 0x060ff0fb, 0x00d0011f, 0x01800124, + 0x00800126, 0x01800128, 0x0080012a, 0x0080012c, + 0x062d0020, 0x0180012e, 0x062d0080, 0x0180012e, + 0x052d0200, 0x0180012e, 0x052d0800, 0x0180012e, + 0x033d0000, 0x06000002, 0x03920024, 0x0584801d, + 0x02800023, 0x040fe07f, 0x00860140, 0x05a00160, + 0x0192012e, 0x040fe07f, 0x07a68160, 0x0180012e, + 0x0760187b, 0x050f80ff, 0x032fa009, 0x0744f000, + 0x0760187b, 0x050f80ff, 0x032fa00a, 0x02800097, + 0x052e400c, 0x040080fb, 0x046aa108, 0x06009075, + 0x04002076, 0x07a006e7, 0x0180012e, 0x04278001, + 0x05482017, 0x04810154, 0x048b014a, 0x060ff086, + 0x0349f0ff, 0x0581807b, 0x07483017, 0x04810151, + 0x050fd0ff, 0x040fe07f, 0x07a68160, 0x0180012e, + 0x05004084, 0x05a00217, 0x0192012e, 0x070ff07d, + 0x0450047c, 0x056004ff, 0x050f80ff, 0x032fa009, + 0x070ff000, 0x00540479, 0x030790ff, 0x00800138, + 0x04487076, 0x04810168, 0x04605875, 0x050f80ff, + 0x032fa009, 0x060ff079, 0x01540400, 0x0180016a, + 0x060ff079, 0x0054047a, 0x05820199, 0x05810199, + 0x070ff07d, 0x0450047c, 0x050f80ff, 0x002fa819, + 0x048b0170, 0x02080001, 0x00081002, 0x01082003, + 0x058b0174, 0x04487076, 0x0481017a, 0x02385001, + 0x03010000, 0x0080017c, 0x03385000, 0x03010000, + 0x03400078, 0x070ff003, 0x04500479, 0x030790ff, + 0x0340007e, 0x0642007f, 0x05810199, 0x070ff07e, + 0x050f80ff, 0x032fa009, 0x050fe000, 0x02868198, + 0x070ff07d, 0x056002ff, 0x050f80ff, 0x032fa009, + 0x0107d000, 0x0186019a, 0x0560107d, 0x050f80ff, + 0x032fa009, 0x03681e00, 0x0550041b, 0x050f80ff, + 0x032fa009, 0x0107e000, 0x070ff07e, 0x01800184, + 0x0307c000, 0x07c00000, 0x052e400c, 0x040080fb, + 0x046aa108, 0x06009075, 0x04002076, 0x038006e7, + 0x060ff075, 0x008601e0, 0x060ff073, 0x00540419, + 0x058201b7, 0x058101c3, 0x050010ff, 0x00202010, + 0x00642001, 0x068281ab, 0x04002001, 0x040f8073, + 0x024a3c02, 0x017a02ff, 0x06000c98, 0x070fa0ff, + 0x060ff002, 0x06500073, 0x03610072, 0x045c0473, + 0x078181c6, 0x03073072, 0x018001c6, 0x036100ff, + 0x050010ff, 0x03610072, 0x00540473, 0x057dfeff, + 0x07ffffff, 0x01400203, 0x00202010, 0x01642003, + 0x068281ab, 0x05002003, 0x008001ab, 0x04002013, + 0x04001013, 0x01294000, 0x07480077, 0x078181e1, + 0x06604e75, 0x050f80ff, 0x053fa809, 0x06000001, + 0x07f00000, 0x07602203, 0x050f80ff, 0x053fa809, + 0x06000001, 0x05481003, 0x078181dd, 0x060ff002, + 0x04500401, 0x016480ff, 0x078281e1, 0x07440077, + 0x040080fb, 0x006b6108, 0x06009075, 0x07a006e2, + 0x018001e1, 0x060ff002, 0x045c0401, 0x078181e1, + 0x01294000, 0x07c00000, 0x040fd075, 0x050fd017, + 0x060ff086, 0x077800ff, 0x07000060, 0x037c00ff, + 0x07000060, 0x078181e4, 0x04487076, 0x04810201, + 0x07780017, 0x0243d807, 0x06818201, 0x06601875, + 0x050f80ff, 0x073fa022, 0x0600003e, 0x0249a076, + 0x078181fa, 0x058b01f5, 0x04603e75, 0x050f80ff, + 0x053fa842, 0x06000045, 0x052e400c, 0x040080fb, + 0x026b4108, 0x06009075, 0x04002076, 0x07a006e7, + 0x03800024, 0x06601875, 0x050f80ff, 0x073fa022, + 0x0600003e, 0x052e400c, 0x04600875, 0x050f80ff, + 0x053fa809, 0x06000001, 0x05488003, 0x05810211, + 0x0400d0fb, 0x066a810d, 0x013e4000, 0x07000300, + 0x03800024, 0x040080fb, 0x066a8108, 0x06009075, + 0x04002076, 0x07a006e7, 0x03800024, 0x0240007f, + 0x0742007e, 0x050f807e, 0x032fa009, 0x050fe000, + 0x02868231, 0x070ff07d, 0x055c047b, 0x04810226, + 0x0760007d, 0x050f80ff, 0x032fa009, 0x050fe000, + 0x02868226, 0x070ff07b, 0x0107d0ff, 0x0560107d, + 0x050f80ff, 0x032fa009, 0x03681e00, 0x0450041c, + 0x0107e0ff, 0x050f80ff, 0x032fa009, 0x050fe000, + 0x01860233, 0x0307c000, 0x07c00000, 0x040fd075, + 0x028006fb, 0x0460081f, 0x050f80ff, 0x032fa039, + 0x01021000, 0x03020005, 0x01018006, 0x01683e21, + 0x00d0023d, 0x0080025d, 0x018002f5, 0x0280032f, + 0x038003d8, 0x00800261, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, - 0x0080025d, 0x0080025d, 0x00800413, 0x0080025d, + 0x0080025d, 0x0080025d, 0x0080025d, 0x00800413, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, 0x0080025d, - 0x050fd0ff, 0x06a006f4, 0x03800018, 0x0380001d, - 0x01494021, 0x06818434, 0x0400701f, 0x05a00466, - 0x007a0101, 0x07060000, 0x04601c20, 0x050f80ff, - 0x053fa809, 0x07000003, 0x04484007, 0x048102b9, - 0x06485007, 0x048102b9, 0x04601020, 0x050f80ff, - 0x073fa009, 0x07000003, 0x0769ff06, 0x076c3006, - 0x04810289, 0x056cd006, 0x04810289, 0x04601c20, - 0x050f80ff, 0x053fa809, 0x07000003, 0x06780007, - 0x070000ff, 0x075a0005, 0x04601020, 0x050f80ff, - 0x053fa809, 0x07000003, 0x0469fe07, 0x05780105, - 0x07ffff00, 0x075a0005, 0x030b6005, 0x018002a3, - 0x04601c20, 0x050f80ff, 0x053fa809, 0x07000003, - 0x00464007, 0x02465007, 0x07f00000, 0x04601c20, - 0x050f80ff, 0x053fa80a, 0x07000003, 0x07f00000, + 0x0080025d, 0x050fd0ff, 0x06a006fb, 0x03800018, + 0x0380001d, 0x01494021, 0x06818434, 0x0400701f, + 0x05a00466, 0x007a0101, 0x07060000, 0x04601c20, + 0x050f80ff, 0x053fa809, 0x07000003, 0x04484007, + 0x048102b9, 0x06485007, 0x048102b9, 0x04601020, + 0x050f80ff, 0x073fa009, 0x07000003, 0x0769ff06, + 0x076c3006, 0x04810289, 0x056cd006, 0x04810289, 0x04601c20, 0x050f80ff, 0x053fa809, 0x07000003, - 0x07f00000, 0x07f00000, 0x04601620, 0x050f80ff, - 0x053fa809, 0x07000003, 0x05780105, 0x07ffff00, - 0x044b0407, 0x075a0005, 0x0460041f, 0x050f80ff, - 0x053fa80a, 0x06000002, 0x07f00000, 0x0460041f, - 0x050f80ff, 0x053fa809, 0x07000003, 0x07303000, - 0x06008280, 0x0460081f, 0x050f80ff, 0x053fa809, - 0x07000003, 0x007a0107, 0x03400000, 0x0460081f, - 0x050f80ff, 0x053fa80a, 0x07000003, 0x018002bb, - 0x07303000, 0x07008290, 0x03496021, 0x068182bf, - 0x06006013, 0x018002c6, 0x02400010, 0x048102bf, - 0x06006010, 0x0660361f, 0x050f80ff, 0x073fa00a, - 0x07000003, 0x072d0003, 0x039b82c6, 0x069382cb, + 0x06780007, 0x070000ff, 0x075a0005, 0x04601020, + 0x050f80ff, 0x053fa809, 0x07000003, 0x0469fe07, + 0x05780105, 0x07ffff00, 0x075a0005, 0x030b6005, + 0x018002a3, 0x04601c20, 0x050f80ff, 0x053fa809, + 0x07000003, 0x00464007, 0x02465007, 0x07f00000, + 0x04601c20, 0x050f80ff, 0x053fa80a, 0x07000003, + 0x07f00000, 0x04601c20, 0x050f80ff, 0x053fa809, + 0x07000003, 0x07f00000, 0x07f00000, 0x04601620, + 0x050f80ff, 0x053fa809, 0x07000003, 0x05780105, + 0x07ffff00, 0x044b0407, 0x075a0005, 0x0460041f, + 0x050f80ff, 0x053fa80a, 0x06000002, 0x07f00000, + 0x0460041f, 0x050f80ff, 0x053fa809, 0x07000003, + 0x07303000, 0x06008280, 0x0460081f, 0x050f80ff, + 0x053fa809, 0x07000003, 0x007a0107, 0x03400000, + 0x0460081f, 0x050f80ff, 0x053fa80a, 0x07000003, + 0x018002bb, 0x07303000, 0x07008290, 0x03496021, + 0x068182bf, 0x06006013, 0x018002c6, 0x02400010, + 0x048102bf, 0x06006010, 0x0660361f, 0x050f80ff, + 0x073fa00a, 0x07000003, 0x072d0003, 0x039b82c6, + 0x069382cb, 0x073aa000, 0x06000004, 0x010b1000, + 0x000b2001, 0x020b3002, 0x010b4003, 0x020b5004, + 0x030b6005, 0x010b7006, 0x069382e6, 0x07602818, + 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, + 0x070000ff, 0x007a0101, 0x07500000, 0x000b8001, + 0x04780102, 0x07ffff00, 0x020b9002, 0x009702e3, + 0x063aa020, 0x0700001e, 0x008002ec, 0x063aa020, + 0x06000016, 0x008002ec, 0x029782ea, 0x063aa020, + 0x07000012, 0x008002ec, 0x063aa020, 0x0600001a, + 0x070ff0f6, 0x03687eff, 0x068182ec, 0x06601820, + 0x050f10ff, 0x063f3008, 0x06000008, 0x062d0002, + 0x01800260, 0x04007013, 0x05a00466, 0x007a0101, + 0x07050000, 0x07303000, 0x07008890, 0x074d0005, + 0x06006013, 0x072d0003, 0x029b82fd, 0x04938302, 0x073aa000, 0x06000004, 0x010b1000, 0x000b2001, 0x020b3002, 0x010b4003, 0x020b5004, 0x030b6005, - 0x010b7006, 0x069382e6, 0x07602818, 0x050f80ff, + 0x010b7006, 0x04938316, 0x07602818, 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, 0x070000ff, 0x007a0101, 0x07500000, 0x000b8001, 0x04780102, - 0x07ffff00, 0x020b9002, 0x009702e3, 0x063aa020, - 0x0700001e, 0x008002ec, 0x063aa020, 0x06000016, - 0x008002ec, 0x029782ea, 0x063aa020, 0x07000012, - 0x008002ec, 0x063aa020, 0x0600001a, 0x070ff0f6, - 0x03687eff, 0x068182ec, 0x06601820, 0x050f10ff, - 0x063f3008, 0x06000008, 0x062d0002, 0x01800260, - 0x04007013, 0x05a00466, 0x007a0101, 0x07050000, - 0x07303000, 0x07008890, 0x074d0005, 0x06006013, - 0x072d0003, 0x029b82fd, 0x04938302, 0x073aa000, + 0x07ffff00, 0x020b9002, 0x06602220, 0x050f80ff, + 0x022fa019, 0x04001002, 0x04002013, 0x0660281f, + 0x050f80ff, 0x032fa00a, 0x05938328, 0x0500b01e, + 0x0660050b, 0x040f800b, 0x022fa01a, 0x073aa00c, + 0x06000016, 0x07300003, 0x06000008, 0x01800409, + 0x050f801e, 0x022fa01a, 0x073aa00c, 0x07000012, + 0x07300003, 0x06000008, 0x01800409, 0x04007013, + 0x05a00466, 0x007a0101, 0x03070000, 0x04602c1f, + 0x050f80ff, 0x073fa009, 0x06000004, 0x02499008, + 0x0781033c, 0x07303000, 0x07008890, 0x0280033e, + 0x07303000, 0x04008980, 0x05007003, 0x04601620, + 0x050f80ff, 0x073fa009, 0x07000003, 0x03499006, + 0x0781034e, 0x0379ff05, 0x070000ff, 0x06602220, + 0x050f80ff, 0x073fa009, 0x07000003, 0x07780006, + 0x07ffff00, 0x075a0005, 0x074d0005, 0x06006013, + 0x072d0003, 0x019b8350, 0x05938355, 0x073aa000, 0x06000004, 0x010b1000, 0x000b2001, 0x020b3002, 0x010b4003, 0x020b5004, 0x030b6005, 0x010b7006, - 0x04938316, 0x07602818, 0x050f80ff, 0x012fa809, + 0x0493836b, 0x07602818, 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, 0x070000ff, 0x007a0101, 0x07500000, 0x000b8001, 0x04780102, 0x07ffff00, - 0x020b9002, 0x06602220, 0x050f80ff, 0x022fa019, - 0x04001002, 0x04002013, 0x0660281f, 0x050f80ff, - 0x032fa00a, 0x05938328, 0x0500b01e, 0x0660050b, - 0x040f800b, 0x022fa01a, 0x073aa00c, 0x06000016, - 0x07300003, 0x06000008, 0x01800409, 0x050f801e, - 0x022fa01a, 0x073aa00c, 0x07000012, 0x07300003, - 0x06000008, 0x01800409, 0x04007013, 0x05a00466, - 0x007a0101, 0x03070000, 0x04602c1f, 0x050f80ff, - 0x073fa009, 0x06000004, 0x02499008, 0x0781033c, - 0x07303000, 0x07008890, 0x0280033e, 0x07303000, - 0x04008980, 0x05007003, 0x04601620, 0x050f80ff, - 0x073fa009, 0x07000003, 0x03499006, 0x0781034e, - 0x0379ff05, 0x070000ff, 0x06602220, 0x050f80ff, - 0x073fa009, 0x07000003, 0x07780006, 0x07ffff00, - 0x075a0005, 0x074d0005, 0x06006013, 0x072d0003, - 0x019b8350, 0x05938355, 0x073aa000, 0x06000004, - 0x010b1000, 0x000b2001, 0x020b3002, 0x010b4003, - 0x020b5004, 0x030b6005, 0x010b7006, 0x0493836b, - 0x07602818, 0x050f80ff, 0x012fa809, 0x04002001, - 0x0279ff01, 0x070000ff, 0x007a0101, 0x07500000, - 0x000b8001, 0x04780102, 0x07ffff00, 0x020b9002, - 0x0500b01e, 0x0660050b, 0x04601c20, 0x050f80ff, - 0x032fa021, 0x07f00000, 0x064b0002, 0x02499008, - 0x06810373, 0x0644c002, 0x054b0400, 0x050040ff, - 0x06698104, 0x0581838b, 0x06000013, 0x04001013, - 0x04780102, 0x06000010, 0x06003013, 0x04004013, - 0x06005013, 0x06006013, 0x04007013, 0x00644015, - 0x07820384, 0x04448002, 0x02205008, 0x05938387, - 0x040f800b, 0x03800388, 0x050f801e, 0x032fa042, - 0x04008015, 0x038003cc, 0x046c8004, 0x0581839c, - 0x01208018, 0x06780002, 0x07000003, 0x0581839f, - 0x06003001, 0x06000013, 0x04001013, 0x04004013, - 0x06005013, 0x05938399, 0x040f800b, 0x0380039a, - 0x050f801e, 0x022fa032, 0x038003cc, 0x040fd01f, - 0x06a006f4, 0x03800018, 0x0379ff03, 0x070000ff, - 0x04488002, 0x078103a6, 0x070ff003, 0x04500408, - 0x050080ff, 0x0379ff00, 0x070000ff, 0x06489002, - 0x068103ad, 0x070ff000, 0x04500408, 0x050080ff, - 0x07005003, 0x05004000, 0x06003001, 0x06000013, - 0x04001013, 0x049383b5, 0x040f800b, 0x028003b6, - 0x050f801e, 0x022fa032, 0x07f00000, 0x06602420, - 0x050f80ff, 0x022fa031, 0x07f00000, 0x049383bf, - 0x06600c0b, 0x038003c0, 0x07600c1e, 0x050f80ff, - 0x022fa032, 0x02680608, 0x078103cc, 0x016408ff, - 0x057dfeff, 0x07ffffff, 0x034000ff, 0x045a0407, - 0x010b40ff, 0x06600908, 0x0669f908, 0x049383d0, - 0x027a0008, 0x05000160, 0x038003d2, 0x027a0008, - 0x04000120, 0x070aa0ff, 0x024a2408, 0x037a00ff, - 0x06000080, 0x070000ff, 0x01800409, 0x04007013, - 0x05a00466, 0x007a0101, 0x07030000, 0x07303000, - 0x07008190, 0x06006013, 0x028003e0, 0x072d0003, - 0x009b83e0, 0x049383e5, 0x073aa000, 0x06000004, - 0x010b1000, 0x000b2001, 0x020b3002, 0x010b4003, - 0x020b5004, 0x030b6005, 0x010b7006, 0x06938401, + 0x020b9002, 0x0500b01e, 0x0660050b, 0x04601c20, + 0x050f80ff, 0x032fa021, 0x07f00000, 0x064b0002, + 0x02499008, 0x06810373, 0x0644c002, 0x054b0400, + 0x050040ff, 0x06698104, 0x0581838b, 0x06000013, + 0x04001013, 0x04780102, 0x06000010, 0x06003013, + 0x04004013, 0x06005013, 0x06006013, 0x04007013, + 0x00644015, 0x07820384, 0x04448002, 0x02205008, + 0x05938387, 0x040f800b, 0x03800388, 0x050f801e, + 0x032fa042, 0x04008015, 0x038003cc, 0x046c8004, + 0x0581839c, 0x01208018, 0x06780002, 0x07000003, + 0x0581839f, 0x06003001, 0x06000013, 0x04001013, + 0x04004013, 0x06005013, 0x05938399, 0x040f800b, + 0x0380039a, 0x050f801e, 0x022fa032, 0x038003cc, + 0x040fd01f, 0x06a006fb, 0x03800018, 0x0379ff03, + 0x070000ff, 0x04488002, 0x078103a6, 0x070ff003, + 0x04500408, 0x050080ff, 0x0379ff00, 0x070000ff, + 0x06489002, 0x068103ad, 0x070ff000, 0x04500408, + 0x050080ff, 0x07005003, 0x05004000, 0x06003001, + 0x06000013, 0x04001013, 0x049383b5, 0x040f800b, + 0x028003b6, 0x050f801e, 0x022fa032, 0x07f00000, + 0x06602420, 0x050f80ff, 0x022fa031, 0x07f00000, + 0x049383bf, 0x06600c0b, 0x038003c0, 0x07600c1e, + 0x050f80ff, 0x022fa032, 0x02680608, 0x078103cc, + 0x016408ff, 0x057dfeff, 0x07ffffff, 0x034000ff, + 0x045a0407, 0x010b40ff, 0x06600908, 0x0669f908, + 0x049383d0, 0x027a0008, 0x05000160, 0x038003d2, + 0x027a0008, 0x04000120, 0x070aa0ff, 0x024a2408, + 0x037a00ff, 0x06000080, 0x070000ff, 0x01800409, + 0x04007013, 0x05a00466, 0x007a0101, 0x07030000, + 0x07303000, 0x07008190, 0x06006013, 0x028003e0, + 0x072d0003, 0x009b83e0, 0x049383e5, 0x073aa000, + 0x06000004, 0x010b1000, 0x000b2001, 0x020b3002, + 0x010b4003, 0x020b5004, 0x030b6005, 0x010b7006, + 0x06938401, 0x07602818, 0x050f80ff, 0x012fa809, + 0x04002001, 0x0279ff01, 0x070000ff, 0x007a0101, + 0x07500000, 0x000b8001, 0x04780102, 0x07ffff00, + 0x020b9002, 0x073ff000, 0x06000007, 0x029703fe, + 0x037a00ff, 0x06000080, 0x070aa0ff, 0x062d0002, + 0x01800260, 0x073ff000, 0x07000003, 0x01970406, + 0x037a00ff, 0x06000080, 0x070aa0ff, 0x062d0002, + 0x01800260, 0x070ff0f6, 0x03687eff, 0x07818409, + 0x0793840f, 0x040f100b, 0x00800410, 0x050f101e, + 0x070f3000, 0x062d0002, 0x01800260, 0x073aa000, + 0x06000002, 0x072d0003, 0x029b8415, 0x070ff0f6, + 0x036830ff, 0x07818417, 0x070ff0f6, 0x036830ff, + 0x0681841a, 0x0660301f, 0x070f00ff, 0x0693842f, 0x07602818, 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, 0x070000ff, 0x007a0101, 0x07500000, - 0x000b8001, 0x04780102, 0x07ffff00, 0x020b9002, - 0x073ff000, 0x06000007, 0x029703fe, 0x037a00ff, - 0x06000080, 0x070aa0ff, 0x062d0002, 0x01800260, - 0x073ff000, 0x07000003, 0x01970406, 0x037a00ff, - 0x06000080, 0x070aa0ff, 0x062d0002, 0x01800260, - 0x070ff0f6, 0x03687eff, 0x07818409, 0x0793840f, - 0x040f100b, 0x00800410, 0x050f101e, 0x070f3000, - 0x062d0002, 0x01800260, 0x073aa000, 0x06000002, - 0x072d0003, 0x029b8415, 0x070ff0f6, 0x036830ff, - 0x07818417, 0x070ff0f6, 0x036830ff, 0x0681841a, - 0x0660301f, 0x070f00ff, 0x0693842f, 0x07602818, - 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, - 0x070000ff, 0x007a0101, 0x07500000, 0x060af001, - 0x04780102, 0x07ffff00, 0x020b0002, 0x07300c00, - 0x07000005, 0x00800431, 0x07300c00, 0x07000005, - 0x070f3000, 0x062d0002, 0x01800260, 0x05474021, - 0x04602620, 0x050f80ff, 0x053fa809, 0x07000003, - 0x06780007, 0x07ffff00, 0x0481043d, 0x03455021, - 0x04602a20, 0x050f80ff, 0x063fa019, 0x06000002, - 0x06003013, 0x01497021, 0x07818455, 0x04601620, - 0x050f80ff, 0x053fa809, 0x06000001, 0x0379ff03, - 0x070000ff, 0x07420003, 0x04600220, 0x050f80ff, - 0x012fa809, 0x040fe001, 0x0186045a, 0x03200009, - 0x0760141b, 0x050f80ff, 0x073fa009, 0x06000001, - 0x04008013, 0x0660181f, 0x050f80ff, 0x022fa04a, - 0x01800263, 0x012080c0, 0x0600901f, 0x05002021, - 0x06a006e0, 0x01800260, 0x06489076, 0x05810463, - 0x02200020, 0x00800464, 0x03200000, 0x06006075, - 0x0180046c, 0x07489021, 0x0581046a, 0x03200030, - 0x0080046b, 0x03200011, 0x0600601f, 0x07a005ac, - 0x05600406, 0x050f80ff, 0x053fa809, 0x06000002, - 0x07c00000, 0x04600875, 0x050f80ff, 0x032fa039, + 0x060af001, 0x04780102, 0x07ffff00, 0x020b0002, + 0x07300c00, 0x07000005, 0x00800431, 0x07300c00, + 0x07000005, 0x070f3000, 0x062d0002, 0x01800260, + 0x05474021, 0x04602620, 0x050f80ff, 0x053fa809, + 0x07000003, 0x06780007, 0x07ffff00, 0x0481043d, + 0x03455021, 0x04602a20, 0x050f80ff, 0x063fa019, + 0x06000002, 0x06003013, 0x01497021, 0x07818455, + 0x04601620, 0x050f80ff, 0x053fa809, 0x06000001, + 0x0379ff03, 0x070000ff, 0x07420003, 0x04600220, + 0x050f80ff, 0x012fa809, 0x040fe001, 0x0186045a, + 0x03200009, 0x0760141b, 0x050f80ff, 0x073fa009, + 0x06000001, 0x04008013, 0x0660181f, 0x050f80ff, + 0x022fa04a, 0x01800263, 0x012080c0, 0x0600901f, + 0x05002021, 0x07a006e7, 0x01800260, 0x06489076, + 0x05810463, 0x02200020, 0x00800464, 0x03200000, + 0x06006075, 0x0180046c, 0x07489021, 0x0581046a, + 0x03200030, 0x0080046b, 0x03200011, 0x0600601f, + 0x06a005b3, 0x05600406, 0x050f80ff, 0x053fa809, + 0x06000002, 0x07c00000, 0x04600875, 0x050f80ff, + 0x032fa039, 0x07780000, 0x02800040, 0x037c00ff, + 0x03800000, 0x0481047c, 0x02075013, 0x008004a4, 0x03076000, 0x0107b005, 0x01018006, 0x0448b076, - 0x0781847e, 0x06602475, 0x050f80ff, 0x053fa811, - 0x0700003c, 0x00077013, 0x050fe078, 0x0386849a, - 0x04a0049e, 0x0092049d, 0x060ff0fb, 0x00d00485, - 0x0080048a, 0x0180048d, 0x01800490, 0x01800493, - 0x01800496, 0x072d0030, 0x029b848a, 0x0280052f, - 0x072d00c0, 0x039b848d, 0x0280052f, 0x072d0300, - 0x039b8490, 0x0280052f, 0x072d0c00, 0x039b8493, - 0x0280052f, 0x033d0000, 0x07000003, 0x039b8496, - 0x0280052f, 0x040fd075, 0x050fd078, 0x06a006f4, - 0x0380001d, 0x048b049e, 0x03385000, 0x07030000, + 0x06818485, 0x06602475, 0x050f80ff, 0x053fa811, + 0x0700003c, 0x00077013, 0x050fe078, 0x028684a1, + 0x05a004a5, 0x009204a4, 0x060ff0fb, 0x00d0048c, + 0x00800491, 0x00800494, 0x00800497, 0x0180049a, + 0x0080049d, 0x072d0030, 0x029b8491, 0x03800536, + 0x072d00c0, 0x029b8494, 0x03800536, 0x072d0300, + 0x029b8497, 0x03800536, 0x072d0c00, 0x039b849a, + 0x03800536, 0x033d0000, 0x07000003, 0x029b849d, + 0x03800536, 0x040fd075, 0x050fd078, 0x06a006fb, + 0x0380001d, 0x058b04a5, 0x03385000, 0x07030000, 0x05600818, 0x050f80ff, 0x032fa009, 0x07f00000, - 0x054b0400, 0x0308a0ff, 0x029884ad, 0x04693e76, - 0x076c0aff, 0x068184ad, 0x07288200, 0x008004b0, + 0x054b0400, 0x0308a0ff, 0x039884b4, 0x04693e76, + 0x076c0aff, 0x078184b4, 0x07288200, 0x018004b7, 0x0179fe00, 0x070000ff, 0x010880ff, 0x0560087b, 0x050f80ff, 0x012fa809, 0x0609f001, 0x0448b076, - 0x048104df, 0x05601c7b, 0x050f80ff, 0x002fa819, - 0x02790076, 0x03010000, 0x068184d5, 0x02025001, - 0x06483001, 0x048104d5, 0x04600475, 0x050f80ff, + 0x048104e6, 0x05601c7b, 0x050f80ff, 0x002fa819, + 0x02790076, 0x03010000, 0x068184dc, 0x02025001, + 0x06483001, 0x048104dc, 0x04600475, 0x050f80ff, 0x053fa809, 0x06000002, 0x07f00000, 0x054b0405, 0x05780105, 0x07ffff00, 0x075a0005, 0x050fd005, 0x040fd07a, 0x06602475, 0x050f80ff, 0x053fa811, 0x0700003c, 0x06306002, 0x05000430, 0x04600475, - 0x050f80ff, 0x053fa812, 0x06000002, 0x008004df, + 0x050f80ff, 0x053fa812, 0x06000002, 0x008004e6, 0x02080002, 0x01081003, 0x064b0001, 0x00082001, 0x02083001, 0x02079001, 0x0207a001, 0x00084013, - 0x0207f013, 0x0280051f, 0x06485076, 0x07810500, + 0x0207f013, 0x02800526, 0x06485076, 0x06810507, 0x02465076, 0x06601875, 0x050f80ff, 0x073fa021, 0x0600003e, 0x070ff07d, 0x0450047c, 0x050f80ff, - 0x002fa819, 0x048b04ea, 0x02080001, 0x00081002, - 0x01082003, 0x03079003, 0x04487076, 0x048104f8, - 0x00498076, 0x01a18527, 0x04605875, 0x050f80ff, - 0x032fa009, 0x03083000, 0x018004f9, 0x0208307a, - 0x0340007e, 0x0642007f, 0x0681050e, 0x070ff07e, - 0x05a00184, 0x0092850e, 0x02800526, 0x078b0500, + 0x002fa819, 0x048b04f1, 0x02080001, 0x00081002, + 0x01082003, 0x03079003, 0x04487076, 0x058104ff, + 0x00498076, 0x01a1852e, 0x04605875, 0x050f80ff, + 0x032fa009, 0x03083000, 0x03800500, 0x0208307a, + 0x0340007e, 0x0642007f, 0x06810515, 0x070ff07e, + 0x05a00184, 0x00928515, 0x0380052d, 0x068b0507, 0x06601875, 0x050f80ff, 0x073fa041, 0x0600003e, - 0x07f00000, 0x04487076, 0x0781050c, 0x04605875, + 0x07f00000, 0x04487076, 0x06810513, 0x04605875, 0x050f80ff, 0x032fa009, 0x03083000, 0x00498076, - 0x01a18527, 0x06602875, 0x050f80ff, 0x073fa009, - 0x06000007, 0x0008400e, 0x04487076, 0x0681051f, - 0x0007100e, 0x068b0516, 0x04603e75, 0x050f80ff, - 0x053fa841, 0x06000045, 0x078b051b, 0x02385001, - 0x03010000, 0x03800522, 0x068b051f, 0x03385000, - 0x03010000, 0x04278001, 0x040fe07f, 0x02860526, + 0x01a1852e, 0x06602875, 0x050f80ff, 0x073fa009, + 0x06000007, 0x0008400e, 0x04487076, 0x06810526, + 0x0007100e, 0x078b051d, 0x04603e75, 0x050f80ff, + 0x053fa841, 0x06000045, 0x078b0522, 0x02385001, + 0x03010000, 0x02800529, 0x068b0526, 0x03385000, + 0x03010000, 0x04278001, 0x040fe07f, 0x0386052d, 0x01800160, 0x07c00000, 0x04094013, 0x03073072, 0x07440077, 0x040080fb, 0x006b6108, 0x06009075, - 0x07a006db, 0x07c00000, 0x00683e76, 0x06810534, - 0x0448d076, 0x068105df, 0x03800635, 0x07a006cf, - 0x0080049d, 0x06000013, 0x00201001, 0x00202002, - 0x0778aae7, 0x06000001, 0x06810585, 0x050fb000, - 0x070ff000, 0x03d0053f, 0x03800559, 0x02800554, - 0x0280054f, 0x0280054a, 0x03800544, 0x077800e7, - 0x06000001, 0x07810582, 0x072e7200, 0x030190cc, - 0x0280055d, 0x016880e7, 0x07810582, 0x042e7080, - 0x020190cb, 0x0280055d, 0x016820e7, 0x07810582, - 0x042e7020, 0x030190ca, 0x0280055d, 0x016808e7, - 0x07810582, 0x042e7008, 0x030190c9, 0x0280055d, - 0x016802e7, 0x07810582, 0x042e7002, 0x020190c8, - 0x07480077, 0x07810582, 0x03460077, 0x060ff075, - 0x03860582, 0x06003094, 0x0748a003, 0x05818582, + 0x07a006e2, 0x07c00000, 0x00683e76, 0x0681053b, + 0x0448d076, 0x068105e6, 0x0380063c, 0x06a006d6, + 0x008004a4, 0x06000013, 0x00201001, 0x00202002, + 0x0778aae7, 0x06000001, 0x0681058c, 0x050fb000, + 0x070ff000, 0x02d00546, 0x03800560, 0x0280055b, + 0x03800556, 0x02800551, 0x0380054b, 0x077800e7, + 0x06000001, 0x06810589, 0x072e7200, 0x030190cc, + 0x02800564, 0x016880e7, 0x06810589, 0x042e7080, + 0x020190cb, 0x02800564, 0x016820e7, 0x06810589, + 0x042e7020, 0x030190ca, 0x02800564, 0x016808e7, + 0x06810589, 0x042e7008, 0x030190c9, 0x02800564, + 0x016802e7, 0x06810589, 0x042e7002, 0x020190c8, + 0x07480077, 0x06810589, 0x03460077, 0x060ff075, + 0x02860589, 0x06003094, 0x0748a003, 0x04818589, 0x01683e03, 0x02203010, 0x01540403, 0x014a1a03, - 0x060ff073, 0x00540419, 0x0682058f, 0x07810595, - 0x050010ff, 0x01540403, 0x07820571, 0x06003001, + 0x060ff073, 0x00540419, 0x07820596, 0x0781059c, + 0x050010ff, 0x01540403, 0x07820578, 0x06003001, 0x034a3c03, 0x017a02ff, 0x06000c98, 0x040f8073, 0x070fa0ff, 0x070ff003, 0x06500073, 0x03610072, - 0x045c0473, 0x0481857c, 0x03073072, 0x05394000, + 0x045c0473, 0x04818583, 0x03073072, 0x05394000, 0x07000090, 0x07f00000, 0x06003094, 0x07489003, - 0x04818586, 0x03400000, 0x076c0a00, 0x05818539, - 0x07c00000, 0x060ff073, 0x00540419, 0x0681059b, - 0x07820599, 0x01683e03, 0x02203010, 0x01540403, - 0x014a1a03, 0x0280056d, 0x03610072, 0x00540473, - 0x057dfeff, 0x07ffffff, 0x034000ff, 0x0280056d, - 0x040fd075, 0x040fd073, 0x040fd019, 0x03800582, - 0x040fd075, 0x028006f4, 0x06604e75, 0x050f80ff, + 0x0581858d, 0x03400000, 0x076c0a00, 0x04818540, + 0x07c00000, 0x060ff073, 0x00540419, 0x068105a2, + 0x078205a0, 0x01683e03, 0x02203010, 0x01540403, + 0x014a1a03, 0x03800574, 0x03610072, 0x00540473, + 0x057dfeff, 0x07ffffff, 0x034000ff, 0x03800574, + 0x040fd075, 0x040fd073, 0x040fd019, 0x02800589, + 0x040fd075, 0x028006fb, 0x06604e75, 0x050f80ff, 0x053fa809, 0x06000001, 0x07f00000, 0x07602203, 0x050f80ff, 0x053fa809, 0x06000001, 0x05481003, - 0x05818582, 0x07440077, 0x040080fb, 0x006b6108, - 0x06009075, 0x07a006db, 0x03800582, 0x009785ba, + 0x04818589, 0x07440077, 0x040080fb, 0x006b6108, + 0x06009075, 0x07a006e2, 0x02800589, 0x009785c1, 0x07602418, 0x050f80ff, 0x012fa809, 0x06780001, 0x070000ff, 0x075a0000, 0x05602618, 0x050f80ff, 0x012fa809, 0x060ff001, 0x0569feff, 0x054b08ff, 0x075a0000, 0x05600418, 0x050f80ff, 0x012fa809, - 0x040fe007, 0x008685c1, 0x01204000, 0x028005d6, + 0x040fe007, 0x008685c8, 0x01204000, 0x038005dd, 0x05600e06, 0x050f80ff, 0x073fa009, 0x06000002, 0x07f00000, 0x064d0004, 0x00700104, 0x03010000, - 0x06780004, 0x07ff0000, 0x076c00ff, 0x058185cf, + 0x06780004, 0x07ff0000, 0x076c00ff, 0x048185d6, 0x00700104, 0x03010000, 0x064d0004, 0x05600e06, 0x050f80ff, 0x073fa00a, 0x06000002, 0x07f00000, 0x044b0804, 0x0279ff01, 0x0700ffff, 0x05602618, 0x050f80ff, 0x073fa009, 0x06000001, 0x0279ff02, 0x0700ffff, 0x07c00000, 0x04007075, 0x0448b076, - 0x068105fe, 0x02790076, 0x03010000, 0x058185e7, - 0x06483025, 0x048185fe, 0x06489076, 0x078105eb, - 0x03200030, 0x028005ec, 0x03200011, 0x06006075, + 0x07810605, 0x02790076, 0x03010000, 0x058185ee, + 0x06483025, 0x05818605, 0x06489076, 0x068105f2, + 0x03200030, 0x038005f3, 0x03200011, 0x06006075, 0x05a0046c, 0x007a0101, 0x07060000, 0x07303000, - 0x07008290, 0x02496076, 0x058185f6, 0x06006013, - 0x03800611, 0x02400010, 0x078105f6, 0x06006010, + 0x07008290, 0x02496076, 0x048185fd, 0x06006013, + 0x03800618, 0x02400010, 0x068105fd, 0x06006010, 0x06603675, 0x050f80ff, 0x073fa00a, 0x07000003, - 0x03800611, 0x0600007a, 0x02493076, 0x04818607, + 0x03800618, 0x0600007a, 0x02493076, 0x0481860e, 0x06602e75, 0x050f80ff, 0x032fa009, 0x060ff07a, 0x05500400, 0x070000ff, 0x06473076, 0x06602e75, 0x050f80ff, 0x032fa00a, 0x05a0045f, 0x007a0101, 0x03010000, 0x06303008, 0x05008000, 0x0600600e, - 0x072d0003, 0x019b8611, 0x04938616, 0x073a0000, + 0x072d0003, 0x019b8618, 0x0593861d, 0x073a0000, 0x06000001, 0x050a4000, 0x060a5001, 0x060a6002, 0x050a7003, 0x040a8004, 0x070a9005, 0x050ae006, - 0x0593862d, 0x07602818, 0x050f80ff, 0x012fa809, + 0x04938634, 0x07602818, 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, 0x070000ff, 0x007a0101, 0x07500000, 0x060af001, 0x04780102, 0x07ffff00, - 0x020b0002, 0x053079a0, 0x0700000f, 0x0280062f, - 0x053079a0, 0x0600000e, 0x06489076, 0x06810632, - 0x06446007, 0x060a0007, 0x062d0002, 0x0080049d, - 0x00683e76, 0x076c0aff, 0x07810677, 0x04007013, - 0x06489076, 0x0681063d, 0x03200030, 0x0280063e, + 0x020b0002, 0x053079a0, 0x0700000f, 0x03800636, + 0x053079a0, 0x0600000e, 0x06489076, 0x07810639, + 0x06446007, 0x060a0007, 0x062d0002, 0x008004a4, + 0x00683e76, 0x076c0aff, 0x0781067e, 0x04007013, + 0x06489076, 0x07810644, 0x03200030, 0x02800645, 0x03200011, 0x06006075, 0x05a0046c, 0x007a0101, 0x03070000, 0x04602c75, 0x050f80ff, 0x053fa809, - 0x06000001, 0x03499003, 0x0781064d, 0x07303000, - 0x07008890, 0x053079a0, 0x0700000c, 0x02800651, + 0x06000001, 0x03499003, 0x06810654, 0x07303000, + 0x07008890, 0x053079a0, 0x0700000c, 0x02800658, 0x07303000, 0x04008980, 0x04307920, 0x0700000c, - 0x074d0005, 0x06006013, 0x072d0003, 0x019b8653, - 0x04938658, 0x073a0000, 0x06000001, 0x050a4000, + 0x074d0005, 0x06006013, 0x072d0003, 0x019b865a, + 0x0593865f, 0x073a0000, 0x06000001, 0x050a4000, 0x060a5001, 0x060a6002, 0x050a7003, 0x040a8004, - 0x070a9005, 0x050ae006, 0x0593866f, 0x07602818, + 0x070a9005, 0x050ae006, 0x04938676, 0x07602818, 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, 0x070000ff, 0x007a0101, 0x07500000, 0x060af001, 0x04780102, 0x07ffff00, 0x020b0002, 0x007a0107, - 0x07000030, 0x03800671, 0x007a0107, 0x06000020, - 0x06489076, 0x07810674, 0x06446007, 0x060a0007, - 0x062d0002, 0x0080049d, 0x06602e75, 0x050f80ff, + 0x07000030, 0x03800678, 0x007a0107, 0x06000020, + 0x06489076, 0x0781067b, 0x06446007, 0x060a0007, + 0x062d0002, 0x008004a4, 0x06602e75, 0x050f80ff, 0x032fa009, 0x060ff07a, 0x05500400, 0x070000ff, 0x06473076, 0x06602e75, 0x050f80ff, 0x032fa00a, 0x04007075, 0x05a0045f, 0x007a0101, 0x03010000, 0x06303008, 0x07008800, 0x074d0005, 0x06600a75, 0x050f80ff, 0x073fa009, 0x07000003, 0x07f00000, 0x054b0406, 0x045a0404, 0x050040ff, 0x0600600e, - 0x072d0003, 0x009b8691, 0x05938696, 0x073aa000, + 0x072d0003, 0x009b8698, 0x0493869d, 0x073aa000, 0x06000004, 0x050a4000, 0x060a5001, 0x060a6002, 0x050a7003, 0x040a8004, 0x070a9005, 0x050ae006, - 0x049386ad, 0x07602818, 0x050f80ff, 0x012fa809, + 0x059386b4, 0x07602818, 0x050f80ff, 0x012fa809, 0x04002001, 0x0279ff01, 0x070000ff, 0x007a0101, 0x07500000, 0x060af001, 0x04780102, 0x07ffff00, - 0x020b0002, 0x04307920, 0x0700000f, 0x038006af, + 0x020b0002, 0x04307920, 0x0700000f, 0x028006b6, 0x04307920, 0x0600000e, 0x06307d20, 0x0600000e, - 0x0648c076, 0x048186b5, 0x04307920, 0x0600000e, - 0x06489076, 0x078106b8, 0x06446007, 0x060a0007, - 0x062d0002, 0x0080049d, 0x072d0003, 0x019b86bb, - 0x070ff0f6, 0x03687eff, 0x058186bd, 0x050f2074, - 0x06489076, 0x068106c4, 0x06446007, 0x060a0007, - 0x040070fb, 0x049386c8, 0x066a9007, 0x050f40ff, - 0x062d0002, 0x0080049d, 0x01208060, 0x0600901f, - 0x05002021, 0x028006e0, 0x040080fb, 0x066ae108, - 0x06009075, 0x04002076, 0x028006e0, 0x03201100, - 0x048486d9, 0x06420001, 0x048186d5, 0x028006f7, - 0x020e0008, 0x07c00000, 0x03201100, 0x058486ed, - 0x06420001, 0x048186dc, 0x028006f7, 0x050fd009, - 0x040fd008, 0x03201100, 0x058486e7, 0x06420001, - 0x048186e3, 0x028006f7, 0x007a0102, 0x04000101, + 0x0648c076, 0x048186bc, 0x04307920, 0x0600000e, + 0x06489076, 0x068106bf, 0x06446007, 0x060a0007, + 0x062d0002, 0x008004a4, 0x072d0003, 0x009b86c2, + 0x070ff0f6, 0x03687eff, 0x048186c4, 0x050f2074, + 0x06489076, 0x068106cb, 0x06446007, 0x060a0007, + 0x040070fb, 0x059386cf, 0x066a9007, 0x050f40ff, + 0x062d0002, 0x008004a4, 0x01208060, 0x0600901f, + 0x05002021, 0x038006e7, 0x040080fb, 0x066ae108, + 0x06009075, 0x04002076, 0x038006e7, 0x03201100, + 0x048486e0, 0x06420001, 0x048186dc, 0x038006ff, + 0x020e0008, 0x07c00000, 0x03201100, 0x048486f4, + 0x06420001, 0x048186e3, 0x038006ff, 0x050fd009, + 0x040fd008, 0x03201100, 0x058486ee, 0x06420001, + 0x048186ea, 0x038006ff, 0x007a0102, 0x04000101, 0x05600809, 0x050f80ff, 0x073fa00a, 0x06000001, - 0x020e0008, 0x068406f1, 0x030e0009, 0x07c00000, + 0x020e0008, 0x068406f8, 0x030e0009, 0x07c00000, 0x01011009, 0x052e4300, 0x07c00000, 0x052e400f, - 0x01208090, 0x038006d4, 0x070fc0ff, 0x040f8013, - 0x032fa009, 0x038006fa, 0x05008006, 0x05007005, - 0x06006004, 0x07005003, 0x04004002, 0x06003001, - 0x07c00000, 0xf06a0be7, 0x02800004, 0x00000000, - 0x0000a000, 0x00000621, 0x033d0aaa, 0x070aaaaa, - 0x013d1aaa, 0x070aaaaa, 0x008c041c, 0x048e04cb, - 0x058d04d7, 0x028f053e, 0x02910013, 0x040f7029, - 0x02860013, 0x066c001f, 0x07810559, 0x066c0a1f, - 0x06810586, 0x040f702f, 0x0386001d, 0x06000010, - 0x050fb000, 0x066c0079, 0x068105c7, 0x0398001d, - 0x03400000, 0x076c0a00, 0x04818016, 0x07960021, - 0x05998021, 0x06a0009e, 0x02800008, 0x050f7012, - 0x04a683f7, 0x04908008, 0x030150e1, 0x06780015, - 0x07fffff0, 0x06810064, 0x0079fe15, 0x031fffff, - 0x030160ff, 0x064bd415, 0x03d0002d, 0x0180019f, - 0x038000d4, 0x03800035, 0x02800040, 0x0380004b, - 0x03800056, 0x02800076, 0x02800076, 0x040f7025, - 0x01868039, 0x02026016, 0x0280003d, 0x06600025, - 0x050f80ff, 0x073fa00a, 0x0600000b, 0x02025016, - 0x02400029, 0x03800078, 0x050f7021, 0x01868044, - 0x00022016, 0x03800048, 0x07600021, 0x050f80ff, - 0x073fa00a, 0x0600000b, 0x00021016, 0x02400029, - 0x03800078, 0x040f7023, 0x0086804f, 0x00024016, - 0x03800053, 0x06600023, 0x050f80ff, 0x073fa00a, - 0x0600000b, 0x02023016, 0x02400029, 0x03800078, - 0x04600816, 0x050f80ff, 0x012fa839, 0x06780004, - 0x07ffff00, 0x037c00ff, 0x05000700, 0x06810062, - 0x0448e001, 0x04818062, 0x07a000bb, 0x03800078, - 0x040fd016, 0x03800078, 0x0279f015, 0x07ffffff, - 0x04818076, 0x060ff015, 0x03d00069, 0x03800071, - 0x02800073, 0x02800076, 0x02800076, 0x02800076, - 0x02800076, 0x02800076, 0x02800076, 0x03e00000, - 0x02800008, 0x04908073, 0x010140e1, 0x03800078, - 0x060fc010, 0x06a00619, 0x02800008, 0x072e4800, - 0x03016011, 0x0186807e, 0x060fc010, 0x07c00000, - 0x00011010, 0x0647f016, 0x072d000c, 0x009b8080, - 0x04600816, 0x050f80ff, 0x012fa839, 0x0249f001, - 0x04818097, 0x06780004, 0x07ffff00, 0x037c00ff, - 0x07000300, 0x0481809b, 0x0448e001, 0x0481809b, - 0x0079c101, 0x07ffffff, 0x007a0b01, 0x03800000, - 0x04600816, 0x050f80ff, 0x012fa80a, 0x062d0008, - 0x038000bb, 0x062d0008, 0x00011016, 0x052e4c00, - 0x07c00000, 0x062d0008, 0x040fd016, 0x07c00000, - 0x030160eb, 0x0249f016, 0x0481807f, 0x04600816, - 0x050f80ff, 0x012fa839, 0x01494005, 0x068100b6, - 0x06783f01, 0x03800060, 0x027c0501, 0x02800020, - 0x0581809c, 0x040f7025, 0x018680af, 0x02026016, - 0x028000b3, 0x06600025, 0x050f80ff, 0x073fa00a, - 0x0600000b, 0x02025016, 0x02400029, 0x07c00000, - 0x06783f01, 0x03800060, 0x007c0b01, 0x03800000, - 0x0581809c, 0x06601807, 0x070030ff, 0x050f80ff, - 0x012fa809, 0x050f8003, 0x073fa00a, 0x0600000b, - 0x040f7001, 0x038600c9, 0x04600201, 0x050f80ff, - 0x073fa00a, 0x0600000b, 0x07c00000, 0x050f702e, - 0x008680ce, 0x0002e016, 0x0202f016, 0x028000d3, - 0x0760002e, 0x050f80ff, 0x073fa00a, 0x0600000b, - 0x0002e016, 0x07c00000, 0x0430e004, 0x03080000, - 0x06601216, 0x050f80ff, 0x073fa011, 0x07000005, - 0x07f00000, 0x0660000b, 0x050f80ff, 0x022fa019, - 0x0700c000, 0x0279ff02, 0x0700ffff, 0x00017002, - 0x0760280a, 0x050f80ff, 0x012fa809, 0x0079fe01, - 0x0700ffff, 0x055c0417, 0x0781818d, 0x0400d010, - 0x0548e00c, 0x078100ed, 0x0245600e, 0x0548400c, - 0x078100f5, 0x07300000, 0x05001000, 0x04602c16, - 0x050f80ff, 0x032fa00a, 0x0644900e, 0x0560100a, - 0x050f80ff, 0x032fa039, 0x02015002, 0x064b0015, - 0x0379ff03, 0x070000ff, 0x01018003, 0x05420418, - 0x07818100, 0x0045700e, 0x0179fe06, 0x070000ff, - 0x0700f0ff, 0x06006010, 0x04007010, 0x0760280a, + 0x04008013, 0x026b2108, 0x038006db, 0x070fc0ff, + 0x040f8013, 0x032fa009, 0x00800702, 0x05008006, + 0x05007005, 0x06006004, 0x07005003, 0x04004002, + 0x06003001, 0x07c00000, 0xd3228c85, 0x02800004, + 0x00000000, 0x0000a000, 0x0000062a, 0x033d0aaa, + 0x070aaaaa, 0x013d1aaa, 0x070aaaaa, 0x008c041c, + 0x058e04cc, 0x058d04d8, 0x038f0541, 0x02910013, + 0x040f7029, 0x02860013, 0x066c001f, 0x0781055c, + 0x066c0a1f, 0x0781058b, 0x040f702f, 0x0386001d, + 0x06000010, 0x050fb000, 0x066c0079, 0x068105ce, + 0x0398001d, 0x03400000, 0x076c0a00, 0x04818016, + 0x07960021, 0x05998021, 0x06a0009e, 0x02800008, + 0x050f7012, 0x04a683f7, 0x04908008, 0x030150e1, + 0x06780015, 0x07fffff0, 0x06810064, 0x0079fe15, + 0x031fffff, 0x030160ff, 0x064bd415, 0x03d0002d, + 0x0180019f, 0x038000d4, 0x03800035, 0x02800040, + 0x0380004b, 0x03800056, 0x02800076, 0x02800076, + 0x040f7025, 0x01868039, 0x02026016, 0x0280003d, + 0x06600025, 0x050f80ff, 0x073fa00a, 0x0600000b, + 0x02025016, 0x02400029, 0x03800078, 0x050f7021, + 0x01868044, 0x00022016, 0x03800048, 0x07600021, + 0x050f80ff, 0x073fa00a, 0x0600000b, 0x00021016, + 0x02400029, 0x03800078, 0x040f7023, 0x0086804f, + 0x00024016, 0x03800053, 0x06600023, 0x050f80ff, + 0x073fa00a, 0x0600000b, 0x02023016, 0x02400029, + 0x03800078, 0x04600816, 0x050f80ff, 0x012fa839, + 0x06780004, 0x07ffff00, 0x037c00ff, 0x05000700, + 0x06810062, 0x0448e001, 0x04818062, 0x07a000bb, + 0x03800078, 0x040fd016, 0x03800078, 0x0279f015, + 0x07ffffff, 0x04818076, 0x060ff015, 0x03d00069, + 0x03800071, 0x02800073, 0x02800076, 0x02800076, + 0x02800076, 0x02800076, 0x02800076, 0x02800076, + 0x03e00000, 0x02800008, 0x04908073, 0x010140e1, + 0x03800078, 0x060fc010, 0x07a00622, 0x02800008, + 0x072e4800, 0x03016011, 0x0186807e, 0x060fc010, + 0x07c00000, 0x00011010, 0x0647f016, 0x072d000c, + 0x009b8080, 0x04600816, 0x050f80ff, 0x012fa839, + 0x0249f001, 0x04818097, 0x06780004, 0x07ffff00, + 0x037c00ff, 0x07000300, 0x0481809b, 0x0448e001, + 0x0481809b, 0x0079c101, 0x07ffffff, 0x007a0b01, + 0x03800000, 0x04600816, 0x050f80ff, 0x012fa80a, + 0x062d0008, 0x038000bb, 0x062d0008, 0x00011016, + 0x052e4c00, 0x07c00000, 0x062d0008, 0x040fd016, + 0x07c00000, 0x030160eb, 0x0249f016, 0x0481807f, + 0x04600816, 0x050f80ff, 0x012fa839, 0x01494005, + 0x068100b6, 0x06783f01, 0x03800060, 0x027c0501, + 0x02800020, 0x0581809c, 0x040f7025, 0x018680af, + 0x02026016, 0x028000b3, 0x06600025, 0x050f80ff, + 0x073fa00a, 0x0600000b, 0x02025016, 0x02400029, + 0x07c00000, 0x06783f01, 0x03800060, 0x007c0b01, + 0x03800000, 0x0581809c, 0x06601807, 0x070030ff, + 0x050f80ff, 0x012fa809, 0x050f8003, 0x073fa00a, + 0x0600000b, 0x040f7001, 0x038600c9, 0x04600201, + 0x050f80ff, 0x073fa00a, 0x0600000b, 0x07c00000, + 0x050f702e, 0x008680ce, 0x0002e016, 0x0202f016, + 0x028000d3, 0x0760002e, 0x050f80ff, 0x073fa00a, + 0x0600000b, 0x0002e016, 0x07c00000, 0x0430e004, + 0x03080000, 0x06601216, 0x050f80ff, 0x073fa011, + 0x07000005, 0x07f00000, 0x0660000b, 0x050f80ff, + 0x022fa019, 0x0700c000, 0x0279ff02, 0x0700ffff, + 0x00017002, 0x0760280a, 0x050f80ff, 0x012fa809, + 0x0079fe01, 0x0700ffff, 0x055c0417, 0x0781818d, + 0x0400d010, 0x0548e00c, 0x078100ed, 0x0245600e, + 0x0548400c, 0x078100f5, 0x07300000, 0x05001000, + 0x04602c16, 0x050f80ff, 0x032fa00a, 0x0644900e, + 0x0560100a, 0x050f80ff, 0x032fa039, 0x02015002, + 0x064b0015, 0x0379ff03, 0x070000ff, 0x01018003, + 0x05420418, 0x07818100, 0x0045700e, 0x0179fe06, + 0x070000ff, 0x0700f0ff, 0x06006010, 0x04007010, + 0x0760280a, 0x050f80ff, 0x073fa009, 0x06000004, + 0x07f00000, 0x064b8408, 0x040080ce, 0x04500408, 0x050f80ff, 0x073fa009, 0x06000004, 0x07f00000, - 0x064b8408, 0x040080ce, 0x04500408, 0x050f80ff, - 0x073fa009, 0x06000004, 0x07f00000, 0x04603216, - 0x050f80ff, 0x063fa02a, 0x06000002, 0x0769ff00, - 0x076c9000, 0x0481011a, 0x076cd400, 0x0781811b, - 0x0444b00e, 0x0368060f, 0x01d0011d, 0x0080013e, - 0x01800139, 0x00800140, 0x01800121, 0x056cea00, - 0x0781818d, 0x0748300f, 0x05810135, 0x0560260a, - 0x050f80ff, 0x073fa009, 0x06000002, 0x06005010, - 0x06006010, 0x04602616, 0x050f80ff, 0x063fa01a, - 0x06000002, 0x07f00000, 0x0760180a, 0x050f80ff, - 0x053fa812, 0x06000002, 0x07f00000, 0x027a030d, - 0x03080000, 0x0444b00e, 0x01800139, 0x007a010e, - 0x07001800, 0x076c3000, 0x03a182e4, 0x07818172, - 0x0220f002, 0x01800147, 0x0120d081, 0x007a010e, - 0x05001000, 0x076c3000, 0x03a182e4, 0x07818172, - 0x0220f004, 0x0548400c, 0x0581014e, 0x0220f00e, - 0x0444100d, 0x0748600c, 0x0581014e, 0x0444200d, - 0x056cea00, 0x05810153, 0x0548700c, 0x05810153, - 0x0644900d, 0x024a1815, 0x004a2c15, 0x04500415, - 0x070030ff, 0x0700000f, 0x017a0100, 0x05004000, - 0x0400100e, 0x05304000, 0x07000030, 0x04002010, - 0x0600500d, 0x0700600a, 0x0400700b, 0x05008017, - 0x06600616, 0x050f80ff, 0x022fa04a, 0x0448b00e, - 0x05818056, 0x050f7027, 0x0286816b, 0x00028016, - 0x0180016f, 0x07600027, 0x050f80ff, 0x073fa00a, - 0x0600000b, 0x00027016, 0x02400029, 0x03800078, - 0x040fd016, 0x050fd00a, 0x0560100a, 0x050f80ff, - 0x032fa009, 0x05780100, 0x07ffff00, 0x017a0700, - 0x06000001, 0x050f80ff, 0x032fa00a, 0x07f00000, - 0x0760140a, 0x050f80ff, 0x022fa019, 0x05780100, - 0x07ffff00, 0x076a0500, 0x00202001, 0x0560260a, - 0x050f80ff, 0x012fa809, 0x06003010, 0x0760140a, - 0x050f80ff, 0x032fa022, 0x00800197, 0x050fd00a, - 0x0560100a, 0x050f80ff, 0x032fa009, 0x0379ff00, - 0x0380ffff, 0x0145b000, 0x0560100a, 0x050f80ff, - 0x032fa00a, 0x07303000, 0x07000030, 0x04600e16, - 0x050f80ff, 0x053fa80a, 0x06000001, 0x06a003e6, - 0x03800078, 0x06600616, 0x050f80ff, 0x012fa841, - 0x0079fe01, 0x070000ff, 0x070090ff, 0x0400d010, - 0x0600a007, 0x0400b008, 0x0560100a, 0x050f80ff, - 0x032fa009, 0x0769ff00, 0x0660000b, 0x050f80ff, - 0x073fa009, 0x07000006, 0x07f00000, 0x04602c16, - 0x050f80ff, 0x053fa809, 0x0600000b, 0x07479017, - 0x056c0e09, 0x058101bd, 0x076c0c09, 0x058101bd, - 0x050fd009, 0x06a00619, 0x03800078, 0x05601c0a, - 0x050f80ff, 0x053fa809, 0x06000007, 0x07f00000, - 0x074b000f, 0x0748300f, 0x058101ca, 0x07446000, - 0x04602c16, 0x050f80ff, 0x053fa80a, 0x0600000b, - 0x0368060f, 0x01d001cc, 0x008001d0, 0x0180024b, - 0x00800208, 0x0180027d, 0x0748f00f, 0x0581027b, - 0x0530e042, 0x02080002, 0x0578400f, 0x06000020, - 0x017c40ff, 0x06000020, 0x068181dc, 0x0748500c, - 0x048101dc, 0x03459017, 0x04602c16, 0x050f80ff, - 0x053fa80a, 0x0600000b, 0x0569800f, 0x078181e8, - 0x0548d00f, 0x068181e5, 0x0644a00e, 0x056c0e09, - 0x058101f3, 0x0080027f, 0x050010ff, 0x046c8001, - 0x078181fa, 0x056c0e09, 0x058101f3, 0x0560200a, - 0x050f80ff, 0x012fa809, 0x04780101, 0x07ffff00, - 0x0481027f, 0x01498017, 0x058101f6, 0x0644900e, - 0x06300001, 0x04000410, 0x05a00295, 0x03800035, - 0x026d0001, 0x048101fd, 0x0180027d, 0x0530e042, - 0x02080002, 0x01498017, 0x04810202, 0x0644900e, + 0x04603216, 0x050f80ff, 0x063fa02a, 0x06000002, + 0x0769ff00, 0x076c9000, 0x0481011a, 0x076cd400, + 0x0781811b, 0x0444b00e, 0x0368060f, 0x01d0011d, + 0x0080013e, 0x01800139, 0x00800140, 0x01800121, + 0x056cea00, 0x0781818d, 0x0748300f, 0x05810135, + 0x0560260a, 0x050f80ff, 0x073fa009, 0x06000002, + 0x06005010, 0x06006010, 0x04602616, 0x050f80ff, + 0x063fa01a, 0x06000002, 0x07f00000, 0x0760180a, + 0x050f80ff, 0x053fa812, 0x06000002, 0x07f00000, + 0x027a030d, 0x03080000, 0x0444b00e, 0x01800139, + 0x007a010e, 0x07001800, 0x076c3000, 0x03a182e4, + 0x07818172, 0x0220f002, 0x01800147, 0x0120d081, + 0x007a010e, 0x05001000, 0x076c3000, 0x03a182e4, + 0x07818172, 0x0220f004, 0x0548400c, 0x0581014e, + 0x0220f00e, 0x0444100d, 0x0748600c, 0x0581014e, + 0x0444200d, 0x056cea00, 0x05810153, 0x0548700c, + 0x05810153, 0x0644900d, 0x024a1815, 0x004a2c15, + 0x04500415, 0x070030ff, 0x0700000f, 0x017a0100, + 0x05004000, 0x0400100e, 0x05304000, 0x07000030, + 0x04002010, 0x0600500d, 0x0700600a, 0x0400700b, + 0x05008017, 0x06600616, 0x050f80ff, 0x022fa04a, + 0x0448b00e, 0x05818056, 0x050f7027, 0x0286816b, + 0x00028016, 0x0180016f, 0x07600027, 0x050f80ff, + 0x073fa00a, 0x0600000b, 0x00027016, 0x02400029, + 0x03800078, 0x040fd016, 0x050fd00a, 0x0560100a, + 0x050f80ff, 0x032fa009, 0x05780100, 0x07ffff00, + 0x017a0700, 0x06000001, 0x050f80ff, 0x032fa00a, + 0x07f00000, 0x0760140a, 0x050f80ff, 0x022fa019, + 0x05780100, 0x07ffff00, 0x076a0500, 0x00202001, + 0x0560260a, 0x050f80ff, 0x012fa809, 0x06003010, + 0x0760140a, 0x050f80ff, 0x032fa022, 0x00800197, + 0x050fd00a, 0x0560100a, 0x050f80ff, 0x032fa009, + 0x0379ff00, 0x0380ffff, 0x0145b000, 0x0560100a, + 0x050f80ff, 0x032fa00a, 0x07303000, 0x07000030, + 0x04600e16, 0x050f80ff, 0x053fa80a, 0x06000001, + 0x06a003e6, 0x03800078, 0x06600616, 0x050f80ff, + 0x012fa841, 0x0079fe01, 0x070000ff, 0x070090ff, + 0x0400d010, 0x0600a007, 0x0400b008, 0x0560100a, + 0x050f80ff, 0x032fa009, 0x0769ff00, 0x0660000b, + 0x050f80ff, 0x073fa009, 0x07000006, 0x07f00000, + 0x04602c16, 0x050f80ff, 0x053fa809, 0x0600000b, + 0x07479017, 0x056c0e09, 0x058101bd, 0x076c0c09, + 0x058101bd, 0x050fd009, 0x07a00622, 0x03800078, + 0x05601c0a, 0x050f80ff, 0x053fa809, 0x06000007, + 0x07f00000, 0x074b000f, 0x0748300f, 0x058101ca, + 0x07446000, 0x04602c16, 0x050f80ff, 0x053fa80a, + 0x0600000b, 0x0368060f, 0x01d001cc, 0x008001d0, + 0x0180024b, 0x00800208, 0x0180027d, 0x0748f00f, + 0x0581027b, 0x0530e042, 0x02080002, 0x0578400f, + 0x06000020, 0x017c40ff, 0x06000020, 0x068181dc, + 0x0748500c, 0x048101dc, 0x03459017, 0x04602c16, + 0x050f80ff, 0x053fa80a, 0x0600000b, 0x0569800f, + 0x078181e8, 0x0548d00f, 0x068181e5, 0x0644a00e, + 0x056c0e09, 0x058101f3, 0x0080027f, 0x050010ff, + 0x046c8001, 0x078181fa, 0x056c0e09, 0x058101f3, + 0x0560200a, 0x050f80ff, 0x012fa809, 0x04780101, + 0x07ffff00, 0x0481027f, 0x01498017, 0x058101f6, + 0x0644900e, 0x06300001, 0x04000410, 0x05a00295, + 0x03800035, 0x026d0001, 0x048101fd, 0x0180027d, + 0x0530e042, 0x02080002, 0x01498017, 0x04810202, + 0x0644900e, 0x05a002b2, 0x06818279, 0x07300003, + 0x05000430, 0x05a00295, 0x03800056, 0x0630e445, + 0x02080002, 0x056c0e09, 0x0681827f, 0x0748f00f, + 0x04810215, 0x0569800f, 0x0781827d, 0x0548d00f, + 0x07818217, 0x007a010e, 0x06000010, 0x0180021d, + 0x0246a00e, 0x0180021d, 0x0246a00e, 0x0748500f, + 0x0581021d, 0x0748500c, 0x0581021d, 0x03459017, + 0x0349a017, 0x07818224, 0x04602c16, 0x050f80ff, + 0x053fa80a, 0x0600000b, 0x0180022e, 0x0747a017, + 0x05001017, 0x0760220a, 0x050f80ff, 0x073fa009, + 0x06000001, 0x07f00000, 0x04602c16, 0x050f80ff, + 0x012fa812, 0x01498017, 0x05810233, 0x0644900e, + 0x0279ff0e, 0x07ffffeb, 0x0448700e, 0x04810245, + 0x06601216, 0x050f80ff, 0x012fa809, 0x07f00000, + 0x04600201, 0x050f80ff, 0x012fa809, 0x07f00000, + 0x06601401, 0x050f80ff, 0x012fa809, 0x060ff001, + 0x075a00ff, 0x04810245, 0x0279ff0e, 0x07ffffeb, 0x05a002b2, 0x06818279, 0x07300003, 0x05000430, - 0x05a00295, 0x03800056, 0x0630e445, 0x02080002, - 0x056c0e09, 0x0681827f, 0x0748f00f, 0x04810215, - 0x0569800f, 0x0781827d, 0x0548d00f, 0x07818217, - 0x007a010e, 0x06000010, 0x0180021d, 0x0246a00e, - 0x0180021d, 0x0246a00e, 0x0748500f, 0x0581021d, - 0x0748500c, 0x0581021d, 0x03459017, 0x0349a017, - 0x07818224, 0x04602c16, 0x050f80ff, 0x053fa80a, - 0x0600000b, 0x0180022e, 0x0747a017, 0x05001017, - 0x0760220a, 0x050f80ff, 0x073fa009, 0x06000001, - 0x07f00000, 0x04602c16, 0x050f80ff, 0x012fa812, - 0x01498017, 0x05810233, 0x0644900e, 0x0279ff0e, - 0x07ffffeb, 0x0448700e, 0x04810245, 0x06601216, - 0x050f80ff, 0x012fa809, 0x07f00000, 0x04600201, - 0x050f80ff, 0x012fa809, 0x07f00000, 0x06601401, - 0x050f80ff, 0x012fa809, 0x060ff001, 0x075a00ff, - 0x04810245, 0x0279ff0e, 0x07ffffeb, 0x05a002b2, - 0x06818279, 0x07300003, 0x05000430, 0x05a00295, - 0x03800056, 0x056c0e09, 0x0681827f, 0x0430e001, - 0x02080002, 0x0644000d, 0x0447400d, 0x0748f00f, - 0x05810265, 0x0569800f, 0x0781827d, 0x0578400f, - 0x06000020, 0x017c40ff, 0x06000020, 0x0681825e, - 0x0748500c, 0x0481025e, 0x03459017, 0x01800265, - 0x0049100d, 0x07818265, 0x0548700c, 0x07818265, - 0x07486000, 0x07818265, 0x0045400d, 0x04602c16, - 0x050f80ff, 0x053fa80a, 0x0600000b, 0x05a002b2, - 0x06818279, 0x01498017, 0x04810275, 0x0644900e, - 0x0444100d, 0x0630000e, 0x04000420, 0x0748600c, - 0x05810277, 0x0444200d, 0x01800277, 0x06300004, - 0x04000420, 0x05a00295, 0x03800035, 0x02200010, - 0x00800280, 0x02200001, 0x00800280, 0x03200006, - 0x00800280, 0x02200004, 0x040fd016, 0x050fd00a, - 0x050fd000, 0x0760140a, 0x050f80ff, 0x032fa00a, - 0x07f00000, 0x04600e16, 0x050f80ff, 0x053fa809, - 0x06000001, 0x05780103, 0x070000ff, 0x017a0103, - 0x07000600, 0x04600e16, 0x050f80ff, 0x053fa80a, - 0x06000001, 0x06a003e6, 0x03800078, 0x0760140a, - 0x050f80ff, 0x053fa809, 0x06000001, 0x07f00000, - 0x074b0003, 0x034a1803, 0x014a2c03, 0x05500403, - 0x070030ff, 0x0400100e, 0x04002010, 0x04600e16, - 0x050f80ff, 0x073fa009, 0x06000002, 0x0600500d, - 0x0700600a, 0x0400700b, 0x0460040b, 0x050f80ff, - 0x073fa009, 0x06000004, 0x0279ff08, 0x0700ffff, - 0x06600616, 0x050f80ff, 0x022fa04a, 0x07c00000, - 0x03681e00, 0x070090ff, 0x076c2400, 0x048102cd, - 0x056cf400, 0x048102ba, 0x076ce400, 0x068182df, - 0x0748000f, 0x058102bd, 0x0444b00d, 0x0548100f, - 0x058102c0, 0x0444700e, 0x06a00364, 0x078182e2, - 0x0760220a, 0x050f80ff, 0x0448b00d, 0x058102c9, - 0x073fa009, 0x06000004, 0x008002d3, 0x043fa819, - 0x06000002, 0x05008005, 0x008002d3, 0x0760220a, - 0x050f80ff, 0x043fa819, 0x06000002, 0x05008005, - 0x0500100a, 0x06780007, 0x07ffff00, 0x058102d7, - 0x0245500e, 0x0560160a, 0x050f80ff, 0x053fa809, - 0x06000001, 0x0379ff03, 0x070000ff, 0x01018003, - 0x03800318, 0x040fd016, 0x050fd00a, 0x02800619, - 0x056a02ff, 0x07c00000, 0x0447400e, 0x03681e00, - 0x070090ff, 0x076c3000, 0x07810312, 0x076c9000, - 0x07810312, 0x056cea00, 0x068182ef, 0x02209008, - 0x03800312, 0x056cd000, 0x058102f6, 0x076cd400, - 0x058102f6, 0x040fd016, 0x050fd00a, 0x02800619, - 0x0748000f, 0x058102f9, 0x0444700e, 0x0548100f, - 0x058102fc, 0x0444b00d, 0x06a00364, 0x05818311, - 0x0448700d, 0x05818317, 0x0644500e, 0x070ff009, + 0x05a00295, 0x03800056, 0x056c0e09, 0x0681827f, + 0x0430e001, 0x02080002, 0x0644000d, 0x0447400d, + 0x0748f00f, 0x05810265, 0x0569800f, 0x0781827d, + 0x0578400f, 0x06000020, 0x017c40ff, 0x06000020, + 0x0681825e, 0x0748500c, 0x0481025e, 0x03459017, + 0x01800265, 0x0049100d, 0x07818265, 0x0548700c, + 0x07818265, 0x07486000, 0x07818265, 0x0045400d, + 0x04602c16, 0x050f80ff, 0x053fa80a, 0x0600000b, + 0x05a002b2, 0x06818279, 0x01498017, 0x04810275, + 0x0644900e, 0x0444100d, 0x0630000e, 0x04000420, + 0x0748600c, 0x05810277, 0x0444200d, 0x01800277, + 0x06300004, 0x04000420, 0x05a00295, 0x03800035, + 0x02200010, 0x00800280, 0x02200001, 0x00800280, + 0x03200006, 0x00800280, 0x02200004, 0x040fd016, + 0x050fd00a, 0x050fd000, 0x0760140a, 0x050f80ff, + 0x032fa00a, 0x07f00000, 0x04600e16, 0x050f80ff, + 0x053fa809, 0x06000001, 0x05780103, 0x070000ff, + 0x017a0103, 0x07000600, 0x04600e16, 0x050f80ff, + 0x053fa80a, 0x06000001, 0x06a003e6, 0x03800078, + 0x0760140a, 0x050f80ff, 0x053fa809, 0x06000001, + 0x07f00000, 0x074b0003, 0x034a1803, 0x014a2c03, + 0x05500403, 0x070030ff, 0x0400100e, 0x04002010, + 0x04600e16, 0x050f80ff, 0x073fa009, 0x06000002, + 0x0600500d, 0x0700600a, 0x0400700b, 0x0460040b, + 0x050f80ff, 0x073fa009, 0x06000004, 0x0279ff08, + 0x0700ffff, 0x06600616, 0x050f80ff, 0x022fa04a, + 0x07c00000, 0x03681e00, 0x070090ff, 0x076c2400, + 0x048102cd, 0x056cf400, 0x048102ba, 0x076ce400, + 0x068182df, 0x0748000f, 0x058102bd, 0x0444b00d, + 0x0548100f, 0x058102c0, 0x0444700e, 0x06a00364, + 0x078182e2, 0x0760220a, 0x050f80ff, 0x0448b00d, + 0x058102c9, 0x073fa009, 0x06000004, 0x008002d3, + 0x043fa819, 0x06000002, 0x05008005, 0x008002d3, + 0x0760220a, 0x050f80ff, 0x043fa819, 0x06000002, + 0x05008005, 0x0500100a, 0x06780007, 0x07ffff00, + 0x058102d7, 0x0245500e, 0x0560160a, 0x050f80ff, + 0x053fa809, 0x06000001, 0x0379ff03, 0x070000ff, + 0x01018003, 0x03800318, 0x040fd016, 0x050fd00a, + 0x03800622, 0x056a02ff, 0x07c00000, 0x0447400e, + 0x03681e00, 0x070090ff, 0x076c3000, 0x07810312, + 0x076c9000, 0x07810312, 0x056cea00, 0x068182ef, + 0x02209008, 0x03800312, 0x056cd000, 0x058102f6, + 0x076cd400, 0x058102f6, 0x040fd016, 0x050fd00a, + 0x03800622, 0x0748000f, 0x058102f9, 0x0444700e, + 0x0548100f, 0x058102fc, 0x0444b00d, 0x06a00364, + 0x05818311, 0x0448700d, 0x05818317, 0x0644500e, + 0x070ff009, 0x0550041b, 0x050f80ff, 0x073fa009, + 0x06000001, 0x0320000c, 0x02400002, 0x04488004, + 0x0781030c, 0x02400002, 0x0320000f, 0x07003018, + 0x06601816, 0x050f80ff, 0x032fa022, 0x075c00ff, + 0x07c00000, 0x0500100a, 0x0560260a, 0x050f80ff, + 0x053fa809, 0x07000003, 0x04008010, 0x06a00320, + 0x0481831f, 0x07003018, 0x06601816, 0x050f80ff, + 0x022fa04a, 0x075c00ff, 0x07c00000, 0x070ff009, 0x0550041b, 0x050f80ff, 0x073fa009, 0x06000001, - 0x0320000c, 0x02400002, 0x04488004, 0x0781030c, - 0x02400002, 0x0320000f, 0x07003018, 0x06601816, - 0x050f80ff, 0x032fa022, 0x075c00ff, 0x07c00000, - 0x0500100a, 0x0560260a, 0x050f80ff, 0x053fa809, - 0x07000003, 0x04008010, 0x06a00320, 0x0481831f, - 0x07003018, 0x06601816, 0x050f80ff, 0x022fa04a, - 0x075c00ff, 0x07c00000, 0x070ff009, 0x0550041b, - 0x050f80ff, 0x073fa009, 0x06000001, 0x0448b00d, - 0x04818329, 0x0448700e, 0x0781032d, 0x02400002, - 0x0049700d, 0x0781032d, 0x02400002, 0x07a0033c, - 0x0581833a, 0x060ff001, 0x05500400, 0x050f80ff, - 0x063fa019, 0x06000002, 0x07f00000, 0x07420018, - 0x0681033b, 0x02400002, 0x07a0033c, 0x0681033b, - 0x056a02ff, 0x07c00000, 0x070ff01d, 0x00540402, - 0x03d0033f, 0x02800345, 0x03800347, 0x02800349, - 0x0380034b, 0x0380034d, 0x0280034f, 0x03200009, - 0x02800362, 0x0320000c, 0x02800362, 0x0320000f, - 0x02800362, 0x03200012, 0x02800362, 0x02200015, - 0x02800362, 0x04600201, 0x050f80ff, 0x012fa809, - 0x040f7001, 0x0286035e, 0x04601001, 0x050f80ff, - 0x073fa009, 0x06000001, 0x02681e02, 0x0550041b, - 0x050f80ff, 0x073fa009, 0x06000001, 0x0380033c, - 0x040fd016, 0x040fd002, 0x056a02ff, 0x03800363, - 0x075c00ff, 0x07c00000, 0x0560020a, 0x050f80ff, - 0x053fa809, 0x06000007, 0x050f700f, 0x038603e4, - 0x0560100f, 0x050f80ff, 0x053fa809, 0x06000004, - 0x0769ff09, 0x056c9409, 0x058183e4, 0x05602a0a, - 0x050f80ff, 0x063fa019, 0x07000003, 0x07000006, - 0x0079fe07, 0x070000ff, 0x050010ff, 0x0760120f, - 0x050f80ff, 0x063fa019, 0x06000002, 0x0379ff05, - 0x070000ff, 0x074b0c05, 0x055a0405, 0x070050ff, - 0x0079fe04, 0x070000ff, 0x050020ff, 0x064b0c04, - 0x045a0402, 0x050020ff, 0x064b0004, 0x04487004, - 0x06810392, 0x0379ff05, 0x070000ff, 0x04488004, - 0x04818398, 0x04007010, 0x04008010, 0x04444004, - 0x04488004, 0x068103ad, 0x02680604, 0x076c06ff, - 0x04818398, 0x00464004, 0x0045700d, 0x0045800e, - 0x05601a0f, 0x050f80ff, 0x073fa009, 0x0700000c, - 0x07f00000, 0x074b0018, 0x07600a0a, 0x050f80ff, - 0x053fa809, 0x06000001, 0x050f80ff, 0x073fa00a, - 0x06000008, 0x07f00000, 0x06604e16, 0x050f80ff, - 0x053fa80a, 0x06000001, 0x07f00000, 0x04605816, - 0x050f80ff, 0x073fa00a, 0x07000003, 0x06486004, - 0x058183c5, 0x04780107, 0x07ffff00, 0x004a8c07, - 0x04780107, 0x07ff0000, 0x004a8007, 0x045a0407, - 0x045a0404, 0x050040ff, 0x06780008, 0x07ff00ff, - 0x0279ff08, 0x0700ff00, 0x014c80ff, 0x044d8008, - 0x045a0408, 0x070030ff, 0x028003dc, 0x04780107, - 0x07ffff00, 0x0079fe08, 0x070000ff, 0x045a0407, - 0x050070ff, 0x06780007, 0x07ff00ff, 0x0279ff07, - 0x0700ff00, 0x054d80ff, 0x004c8007, 0x045a0407, - 0x070030ff, 0x04780108, 0x07ffff00, 0x004a8c08, - 0x04780108, 0x07ff0000, 0x004a8008, 0x045a0408, - 0x045a0404, 0x050040ff, 0x04603e16, 0x050f80ff, - 0x022fa032, 0x0500100f, 0x05007006, 0x01681f09, - 0x075c00ff, 0x07c00000, 0x056a02ff, 0x07c00000, - 0x050f7012, 0x038603ed, 0x06600013, 0x050f80ff, - 0x073fa00a, 0x0600000b, 0x07c00000, 0x070ff0e2, - 0x077800ff, 0x033e0000, 0x077400ff, 0x031a0000, - 0x05820412, 0x05810412, 0x00012016, 0x02013016, - 0x07c00000, 0x070ff0e2, 0x077800ff, 0x033e0000, - 0x077400ff, 0x031a0000, 0x078203ff, 0x078103ff, - 0x07c00000, 0x03016012, 0x06600016, 0x050f80ff, - 0x032fa009, 0x07f00000, 0x06600016, 0x050f80ff, - 0x073fa00a, 0x06000008, 0x050f7000, 0x0186040c, - 0x01012000, 0x0080040e, 0x00012010, 0x02013010, - 0x04600816, 0x050f80ff, 0x073fa009, 0x06000007, - 0x0647f00e, 0x007a010e, 0x04000101, 0x04600816, - 0x050f80ff, 0x073fa00a, 0x06000007, 0x072e0030, - 0x020e0016, 0x07c00000, 0x0391000a, 0x0784001d, - 0x022c0004, 0x046c041f, 0x04810431, 0x046c021f, - 0x05810481, 0x066c0c1f, 0x05810493, 0x046c081f, - 0x058104a5, 0x066c061f, 0x048104bf, 0x0721f000, - 0x0202c010, 0x0202a010, 0x02020010, 0x052e5800, - 0x02b60079, 0x058d04d7, 0x0380000c, 0x040f702a, - 0x0086042a, 0x06000010, 0x04001010, 0x0760182b, - 0x050f80ff, 0x032fa012, 0x07f00000, 0x0460082a, - 0x050f80ff, 0x053fa809, 0x06000001, 0x07780003, - 0x03400000, 0x05810471, 0x0560102b, 0x050f80ff, - 0x032fa009, 0x0769ff00, 0x076c3000, 0x05810448, - 0x056cd000, 0x07818471, 0x05601c2b, 0x050f80ff, - 0x032fa009, 0x05444000, 0x07445000, 0x032fa00a, - 0x06300002, 0x05000430, 0x0660062a, 0x050f80ff, - 0x032fa00a, 0x07f00000, 0x0560262b, 0x050f80ff, - 0x032fa009, 0x04001010, 0x04002010, 0x0460262a, - 0x050f80ff, 0x022fa01a, 0x07f00000, 0x06600a2a, - 0x050f80ff, 0x012fa80a, 0x07f00000, 0x0460082a, - 0x050f80ff, 0x012fa80a, 0x0079c101, 0x07ffffff, - 0x007a0b01, 0x03800000, 0x05780100, 0x07ffff00, - 0x0581046c, 0x02455001, 0x0460082a, 0x050f80ff, - 0x012fa80a, 0x0201602a, 0x07a000bb, 0x06420029, + 0x0448b00d, 0x04818329, 0x0448700e, 0x0781032d, + 0x02400002, 0x0049700d, 0x0781032d, 0x02400002, + 0x07a0033c, 0x0581833a, 0x060ff001, 0x05500400, + 0x050f80ff, 0x063fa019, 0x06000002, 0x07f00000, + 0x07420018, 0x0681033b, 0x02400002, 0x07a0033c, + 0x0681033b, 0x056a02ff, 0x07c00000, 0x070ff01d, + 0x00540402, 0x03d0033f, 0x02800345, 0x03800347, + 0x02800349, 0x0380034b, 0x0380034d, 0x0280034f, + 0x03200009, 0x02800362, 0x0320000c, 0x02800362, + 0x0320000f, 0x02800362, 0x03200012, 0x02800362, + 0x02200015, 0x02800362, 0x04600201, 0x050f80ff, + 0x012fa809, 0x040f7001, 0x0286035e, 0x04601001, + 0x050f80ff, 0x073fa009, 0x06000001, 0x02681e02, + 0x0550041b, 0x050f80ff, 0x073fa009, 0x06000001, + 0x0380033c, 0x040fd016, 0x040fd002, 0x056a02ff, + 0x03800363, 0x075c00ff, 0x07c00000, 0x0560020a, + 0x050f80ff, 0x053fa809, 0x06000007, 0x050f700f, + 0x038603e4, 0x0560100f, 0x050f80ff, 0x053fa809, + 0x06000004, 0x0769ff09, 0x056c9409, 0x058183e4, + 0x05602a0a, 0x050f80ff, 0x063fa019, 0x07000003, + 0x07000006, 0x0079fe07, 0x070000ff, 0x050010ff, + 0x0760120f, 0x050f80ff, 0x063fa019, 0x06000002, + 0x0379ff05, 0x070000ff, 0x074b0c05, 0x055a0405, + 0x070050ff, 0x0079fe04, 0x070000ff, 0x050020ff, + 0x064b0c04, 0x045a0402, 0x050020ff, 0x064b0004, + 0x04487004, 0x06810392, 0x0379ff05, 0x070000ff, + 0x04488004, 0x04818398, 0x04007010, 0x04008010, + 0x04444004, 0x04488004, 0x068103ad, 0x02680604, + 0x076c06ff, 0x04818398, 0x00464004, 0x0045700d, + 0x0045800e, 0x05601a0f, 0x050f80ff, 0x073fa009, + 0x0700000c, 0x07f00000, 0x074b0018, 0x07600a0a, + 0x050f80ff, 0x053fa809, 0x06000001, 0x050f80ff, + 0x073fa00a, 0x06000008, 0x07f00000, 0x06604e16, + 0x050f80ff, 0x053fa80a, 0x06000001, 0x07f00000, + 0x04605816, 0x050f80ff, 0x073fa00a, 0x07000003, + 0x06486004, 0x058183c5, 0x04780107, 0x07ffff00, + 0x004a8c07, 0x04780107, 0x07ff0000, 0x004a8007, + 0x045a0407, 0x045a0404, 0x050040ff, 0x06780008, + 0x07ff00ff, 0x0279ff08, 0x0700ff00, 0x014c80ff, + 0x044d8008, 0x045a0408, 0x070030ff, 0x028003dc, + 0x04780107, 0x07ffff00, 0x0079fe08, 0x070000ff, + 0x045a0407, 0x050070ff, 0x06780007, 0x07ff00ff, + 0x0279ff07, 0x0700ff00, 0x054d80ff, 0x004c8007, + 0x045a0407, 0x070030ff, 0x04780108, 0x07ffff00, + 0x004a8c08, 0x04780108, 0x07ff0000, 0x004a8008, + 0x045a0408, 0x045a0404, 0x050040ff, 0x04603e16, + 0x050f80ff, 0x022fa032, 0x0500100f, 0x05007006, + 0x01681f09, 0x075c00ff, 0x07c00000, 0x056a02ff, + 0x07c00000, 0x050f7012, 0x038603ed, 0x06600013, + 0x050f80ff, 0x073fa00a, 0x0600000b, 0x07c00000, + 0x070ff0e2, 0x077800ff, 0x033e0000, 0x077400ff, + 0x031a0000, 0x05820412, 0x05810412, 0x00012016, + 0x02013016, 0x07c00000, 0x070ff0e2, 0x077800ff, + 0x033e0000, 0x077400ff, 0x031a0000, 0x078203ff, + 0x078103ff, 0x07c00000, 0x03016012, 0x06600016, + 0x050f80ff, 0x032fa009, 0x07f00000, 0x06600016, + 0x050f80ff, 0x073fa00a, 0x06000008, 0x050f7000, + 0x0186040c, 0x01012000, 0x0080040e, 0x00012010, + 0x02013010, 0x04600816, 0x050f80ff, 0x073fa009, + 0x06000007, 0x0647f00e, 0x007a010e, 0x04000101, + 0x04600816, 0x050f80ff, 0x073fa00a, 0x06000007, + 0x072e0030, 0x020e0016, 0x07c00000, 0x0391000a, + 0x0784001d, 0x022c0004, 0x046c041f, 0x04810432, + 0x046c021f, 0x05810482, 0x066c0c1f, 0x04810494, + 0x046c081f, 0x058104a6, 0x066c061f, 0x058104c0, + 0x0721f000, 0x0202c010, 0x0202a010, 0x02020010, + 0x052e5800, 0x02b60079, 0x058d04d8, 0x0380000c, + 0x0380001d, 0x040f702a, 0x0086042a, 0x06000010, + 0x04001010, 0x0760182b, 0x050f80ff, 0x032fa012, + 0x07f00000, 0x0460082a, 0x050f80ff, 0x053fa809, + 0x06000001, 0x07780003, 0x03400000, 0x05810472, + 0x0560102b, 0x050f80ff, 0x032fa009, 0x0769ff00, + 0x076c3000, 0x04810449, 0x056cd000, 0x07818472, + 0x05601c2b, 0x050f80ff, 0x032fa009, 0x05444000, + 0x07445000, 0x032fa00a, 0x06300002, 0x05000430, + 0x0660062a, 0x050f80ff, 0x032fa00a, 0x07f00000, + 0x0560262b, 0x050f80ff, 0x032fa009, 0x04001010, + 0x04002010, 0x0460262a, 0x050f80ff, 0x022fa01a, + 0x07f00000, 0x06600a2a, 0x050f80ff, 0x012fa80a, + 0x07f00000, 0x0460082a, 0x050f80ff, 0x012fa80a, + 0x0079c101, 0x07ffffff, 0x007a0b01, 0x03800000, + 0x05780100, 0x07ffff00, 0x0481046d, 0x02455001, + 0x0460082a, 0x050f80ff, 0x012fa80a, 0x0201602a, + 0x07a000bb, 0x06420029, 0x0660002a, 0x050f80ff, + 0x053fa809, 0x06000001, 0x050f7003, 0x0086047f, + 0x01028003, 0x0660002a, 0x050f80ff, 0x073fa00a, + 0x06000008, 0x008004c1, 0x00028010, 0x00027010, + 0x008004c1, 0x040f702a, 0x00860429, 0x06420029, 0x0660002a, 0x050f80ff, 0x053fa809, 0x06000001, - 0x050f7003, 0x0186047e, 0x01028003, 0x0660002a, - 0x050f80ff, 0x073fa00a, 0x06000008, 0x018004c0, - 0x00028010, 0x00027010, 0x018004c0, 0x040f702a, + 0x050f7003, 0x00860491, 0x03026003, 0x0660002a, + 0x050f80ff, 0x073fa00a, 0x06000008, 0x008004c1, + 0x02026010, 0x02025010, 0x008004c1, 0x040f702a, 0x00860429, 0x06420029, 0x0660002a, 0x050f80ff, - 0x053fa809, 0x06000001, 0x050f7003, 0x01860490, - 0x03026003, 0x0660002a, 0x050f80ff, 0x073fa00a, - 0x06000008, 0x018004c0, 0x02026010, 0x02025010, - 0x018004c0, 0x040f702a, 0x00860429, 0x06420029, + 0x053fa809, 0x06000001, 0x050f7003, 0x018604a3, + 0x01024003, 0x0660002a, 0x050f80ff, 0x073fa00a, + 0x06000008, 0x018004b7, 0x00024010, 0x02023010, + 0x018004b7, 0x040f702a, 0x00860429, 0x06420029, 0x0660002a, 0x050f80ff, 0x053fa809, 0x06000001, - 0x050f7003, 0x008604a2, 0x01024003, 0x0660002a, - 0x050f80ff, 0x073fa00a, 0x06000008, 0x008004b6, - 0x00024010, 0x02023010, 0x008004b6, 0x040f702a, - 0x00860429, 0x06420029, 0x0660002a, 0x050f80ff, - 0x053fa809, 0x06000001, 0x050f7003, 0x018604b4, - 0x01022003, 0x0660002a, 0x050f80ff, 0x073fa00a, - 0x06000008, 0x008004b6, 0x00022010, 0x00021010, - 0x0647f020, 0x007a0120, 0x04000101, 0x06a0054a, - 0x0400802a, 0x06a005fe, 0x02948429, 0x0721f005, - 0x0080042a, 0x0080042f, 0x0647f020, 0x06486020, - 0x078184c5, 0x06a0054a, 0x00800429, 0x007a0120, - 0x04000101, 0x06a0054a, 0x0400802a, 0x06a005fe, - 0x00800429, 0x0391000a, 0x070ff0e2, 0x077800ff, - 0x033e0000, 0x077400ff, 0x031a0000, 0x0682842f, - 0x040fd02a, 0x052e4003, 0x00208010, 0x06a005fe, - 0x0080042f, 0x0784001d, 0x030150c0, 0x0448e015, - 0x05818505, 0x0648f015, 0x068184fd, 0x02490015, - 0x078184f5, 0x00491015, 0x078184ed, 0x00492015, - 0x0781053c, 0x033d0000, 0x07000003, 0x019b853c, - 0x033d0000, 0x06000002, 0x073c0000, 0x06000040, - 0x052e5200, 0x02200004, 0x0380050c, 0x072d0c00, - 0x039b84e1, 0x052d0800, 0x073c0000, 0x06000020, - 0x062e5080, 0x03200003, 0x0380050c, 0x072d0300, - 0x029b84df, 0x052d0200, 0x073c0000, 0x06000010, - 0x062e5020, 0x02200002, 0x0380050c, 0x072d00c0, - 0x039b84dd, 0x062d0080, 0x073c0000, 0x06000008, - 0x062e5008, 0x02200001, 0x0380050c, 0x072d0030, - 0x039b84db, 0x062d0020, 0x073c0000, 0x06000004, - 0x062e5002, 0x06000010, 0x0784001d, 0x0392000c, - 0x050fb000, 0x040f707c, 0x02860538, 0x046c0279, - 0x0581851d, 0x0448b07a, 0x07810524, 0x06000010, - 0x04001010, 0x0760187b, 0x050f80ff, 0x032fa012, - 0x0046b07a, 0x02b60079, 0x03800527, 0x066c0079, - 0x07810522, 0x040fd07c, 0x06a00619, 0x02800008, - 0x040fd07c, 0x03800527, 0x0045207a, 0x0279ff7a, - 0x07ffd7ff, 0x0007d010, 0x0647f07a, 0x0648607a, - 0x04818532, 0x0448707a, 0x07810530, 0x040f70fb, - 0x01868530, 0x0644f07a, 0x07a00550, 0x02800538, - 0x007a017a, 0x04000101, 0x07a00550, 0x0400807c, - 0x0245f008, 0x06a005fe, 0x07279000, 0x0007e010, - 0x0207c010, 0x0207a010, 0x008c041c, 0x0380000c, + 0x050f7003, 0x008604b5, 0x01022003, 0x0660002a, + 0x050f80ff, 0x073fa00a, 0x06000008, 0x018004b7, + 0x00022010, 0x00021010, 0x0647f020, 0x007a0120, + 0x04000101, 0x07a0054d, 0x0400802a, 0x07a00605, + 0x02948429, 0x0721f005, 0x0080042a, 0x00800431, + 0x0647f020, 0x06486020, 0x078184c6, 0x07a0054d, + 0x00800429, 0x007a0120, 0x04000101, 0x07a0054d, + 0x0400802a, 0x07a00605, 0x00800429, 0x0391001d, + 0x070ff0e2, 0x077800ff, 0x033e0000, 0x077400ff, + 0x031a0000, 0x06828431, 0x040fd02a, 0x052e4003, + 0x00208010, 0x07a00605, 0x00800431, 0x0784001d, + 0x030150c0, 0x0448e015, 0x05818506, 0x0648f015, + 0x068184fe, 0x02490015, 0x078184f6, 0x00491015, + 0x078184ee, 0x00492015, 0x06810540, 0x033d0000, + 0x07000003, 0x009b8540, 0x033d0000, 0x06000002, + 0x073c0000, 0x06000040, 0x052e5200, 0x02200004, + 0x0280050d, 0x072d0c00, 0x039b84e2, 0x052d0800, + 0x073c0000, 0x06000020, 0x062e5080, 0x03200003, + 0x0280050d, 0x072d0300, 0x029b84e0, 0x052d0200, + 0x073c0000, 0x06000010, 0x062e5020, 0x02200002, + 0x0280050d, 0x072d00c0, 0x039b84de, 0x062d0080, + 0x073c0000, 0x06000008, 0x062e5008, 0x02200001, + 0x0280050d, 0x072d0030, 0x029b84dc, 0x062d0020, + 0x073c0000, 0x06000004, 0x062e5002, 0x06000010, + 0x0784001d, 0x0392000c, 0x050fb000, 0x040f707c, + 0x03860539, 0x046c0279, 0x0581851e, 0x0448b07a, + 0x06810525, 0x06000010, 0x04001010, 0x0760187b, + 0x050f80ff, 0x032fa012, 0x0046b07a, 0x02b60079, + 0x03800528, 0x066c0079, 0x06810523, 0x040fd07c, + 0x07a00622, 0x02800008, 0x040fd07c, 0x03800528, + 0x0045207a, 0x0279ff7a, 0x07ffd7ff, 0x0007d010, + 0x0647f07a, 0x0648607a, 0x05818533, 0x0448707a, + 0x06810531, 0x040f70fb, 0x00868531, 0x0644f07a, + 0x07a00553, 0x03800539, 0x007a017a, 0x04000101, + 0x07a00553, 0x0400807c, 0x0245f008, 0x07a00605, + 0x07279000, 0x0007e010, 0x0207c010, 0x0207a010, + 0x008c041c, 0x058d04d8, 0x0380000c, 0x0380001d, 0x0392000c, 0x070ff0e2, 0x077800ff, 0x033e0000, - 0x077400ff, 0x031a0000, 0x0582853c, 0x070fc0ff, - 0x052e400c, 0x00208020, 0x06a005fe, 0x0380053c, + 0x077400ff, 0x031a0000, 0x04828540, 0x070fc0ff, + 0x052e400c, 0x00208020, 0x07a00605, 0x02800540, 0x06000020, 0x05001014, 0x0460082a, 0x050f80ff, 0x032fa012, 0x07c00000, 0x0600007a, 0x040010a2, 0x044b0801, 0x070ff014, 0x065a0001, 0x0460087c, 0x050f80ff, 0x032fa012, 0x07c00000, 0x050f7024, - 0x02860564, 0x070ff0e2, 0x077800ff, 0x033e0000, + 0x02860567, 0x070ff0e2, 0x077800ff, 0x033e0000, 0x077400ff, 0x031a0000, 0x04828013, 0x0721f006, - 0x0302a024, 0x028005ad, 0x050f7022, 0x02860573, - 0x070ff0e2, 0x077800ff, 0x033e0000, 0x077400ff, - 0x031a0000, 0x04828013, 0x0302a022, 0x06a005b9, - 0x04488020, 0x0781059c, 0x040fd02a, 0x0202a010, - 0x02020010, 0x040f7026, 0x03860581, 0x0202a026, - 0x06a005b9, 0x04488020, 0x0581857d, 0x0621f001, - 0x00683e20, 0x048185ae, 0x0280059d, 0x040fd02a, - 0x0202a010, 0x0002b010, 0x02020010, 0x050f7028, - 0x028605b6, 0x0621f002, 0x0302a028, 0x028005ad, + 0x0302a024, 0x038005b2, 0x050f7022, 0x03860577, 0x070ff0e2, 0x077800ff, 0x033e0000, 0x077400ff, - 0x031a0000, 0x04828013, 0x050f7024, 0x02860591, - 0x0721f006, 0x0302a024, 0x028005ad, 0x050f7022, - 0x028605b6, 0x0302a022, 0x06a005b9, 0x04488020, - 0x0781059c, 0x040fd02a, 0x0202a010, 0x0002b010, - 0x02020010, 0x028005b6, 0x0621f004, 0x070ff0e2, - 0x077800ff, 0x033e0000, 0x077400ff, 0x031a0000, - 0x048285a8, 0x01208060, 0x0600902a, 0x04002020, - 0x07a00605, 0x028005b6, 0x0202a010, 0x02020010, - 0x0002b010, 0x0721f000, 0x028005b6, 0x06a005b9, - 0x0400102a, 0x0245f001, 0x06a005bf, 0x050f801e, - 0x0320000a, 0x022017d0, 0x032fa012, 0x072e5c00, - 0x008c041c, 0x058d04d7, 0x02800013, 0x0460082a, - 0x050f80ff, 0x022fa031, 0x03020000, 0x0102b005, - 0x07c00000, 0x01200100, 0x079a05c3, 0x060f0001, - 0x07c00000, 0x07420000, 0x058185c0, 0x060fc010, - 0x02800619, 0x0392001d, 0x0207c02f, 0x0460087c, + 0x031a0000, 0x04828013, 0x0302a022, 0x06a005bf, + 0x04488020, 0x068105a1, 0x040fd02a, 0x0202a010, + 0x02020010, 0x038005be, 0x040f7026, 0x02860586, + 0x0202a026, 0x06a005bf, 0x04488020, 0x05818581, + 0x0621f001, 0x00683e20, 0x048185b3, 0x028005a2, + 0x040fd02a, 0x0202a010, 0x0002b010, 0x02020010, + 0x038005be, 0x050f7028, 0x038605bb, 0x0621f002, + 0x0302a028, 0x038005b2, 0x070ff0e2, 0x077800ff, + 0x033e0000, 0x077400ff, 0x031a0000, 0x04828013, + 0x050f7024, 0x03860596, 0x0721f006, 0x0302a024, + 0x038005b2, 0x050f7022, 0x038605bb, 0x0302a022, + 0x06a005bf, 0x04488020, 0x068105a1, 0x040fd02a, + 0x0202a010, 0x0002b010, 0x02020010, 0x038005be, + 0x0621f004, 0x070ff0e2, 0x077800ff, 0x033e0000, + 0x077400ff, 0x031a0000, 0x048285ad, 0x01208060, + 0x0600902a, 0x04002020, 0x06a0060d, 0x038005bb, + 0x0202a010, 0x02020010, 0x0002b010, 0x0721f000, + 0x038005bb, 0x06a005bf, 0x0400102a, 0x0245f001, + 0x07a005c5, 0x050f801e, 0x0320000a, 0x022017d0, + 0x032fa012, 0x072e5c00, 0x008c041c, 0x058d04d8, + 0x02800013, 0x0380001d, 0x0460082a, 0x050f80ff, + 0x022fa031, 0x03020000, 0x0102b005, 0x07c00000, + 0x07300000, 0x06000008, 0x079a05ca, 0x060f0001, + 0x07c00000, 0x07420000, 0x048185c7, 0x060fc010, + 0x03800622, 0x0392001d, 0x0207c02f, 0x0460087c, 0x050f80ff, 0x032fa039, 0x0307a000, 0x0107b005, 0x0307f006, 0x0660007c, 0x050020ff, 0x050f80ff, - 0x032fa011, 0x0302f000, 0x008685df, 0x0202f001, - 0x018685dd, 0x0002e010, 0x0660187f, 0x050f80ff, - 0x073fa00a, 0x06000008, 0x028005e5, 0x0002e001, - 0x028005e5, 0x040f7001, 0x038605d8, 0x0760002e, + 0x032fa011, 0x0302f000, 0x008685e6, 0x0202f001, + 0x018685e4, 0x0002e010, 0x0660187f, 0x050f80ff, + 0x073fa00a, 0x06000008, 0x028005ec, 0x0002e001, + 0x028005ec, 0x040f7001, 0x028605df, 0x0760002e, 0x050f80ff, 0x012fa80a, 0x0002e001, 0x06000010, 0x04001010, 0x040f8002, 0x032fa012, 0x06279001, 0x0400107c, 0x060ff0fb, 0x054bc8ff, 0x065a0001, - 0x06a005bf, 0x0320000a, 0x022011f4, 0x00202004, - 0x06003010, 0x0249507a, 0x078105f6, 0x0020200e, + 0x07a005c5, 0x0320000a, 0x022011f4, 0x00202004, + 0x06003010, 0x0249507a, 0x068105fd, 0x0020200e, 0x050f8078, 0x032fa022, 0x030e5077, 0x008c041c, - 0x058d04d7, 0x040f702f, 0x00868013, 0x0380001d, - 0x03201100, 0x05848603, 0x06420001, 0x058185ff, - 0x0280061c, 0x020e0008, 0x07c00000, 0x050fd009, - 0x040fd008, 0x03201100, 0x0584860c, 0x06420001, - 0x04818608, 0x0280061c, 0x007a0102, 0x04000101, - 0x05600809, 0x050f80ff, 0x073fa00a, 0x06000001, - 0x020e0008, 0x05848617, 0x06420001, 0x04818613, - 0x0280061c, 0x030e0009, 0x07c00000, 0x052e400f, - 0x00208040, 0x028005fe, 0x070fc0ff, 0x040f8010, - 0x032fa009, 0x0280061f, 0x45c0c10d, 0x00000000, - 0x00000000, 0x0000400e, 0x00000808, 0x00000803, - 0x00011f0f, 0x02080b02, 0xe6e5610b, 0x7f04e630, - 0x7f028001, 0x30e2e500, 0x017e04e4, 0x007e0280, - 0x08605fee, 0xe4f7f953, 0x0b80fef5, 0x16120a7f, - 0xf7f953b3, 0x7530fe75, 0xf5e408fc, 0x08f943fd, - 0x06000222, 0x000f1f01, 0x75002003, 0xf5e40151, - 0xf553f552, 0x7f7ef552, 0x3d040204, 0x520536c2, - 0x94d352e5, 0x7505400c, 0x36d20152, 0x740c0790, - 0x74a3f007, 0xf5e4f0ff, 0x90f0a30c, 0xa3f01407, - 0x200b75f0, 0xf5e409f5, 0xd308e508, 0x03403094, - 0x12090402, 0x0b150600, 0x047008e5, 0x0280017f, - 0x09e5007f, 0x017e0470, 0x007e0280, 0x05605fee, - 0xd2f31712, 0xf7e15335, 0x094508e5, 0x250be5ff, - 0x24e025e0, 0xe482f583, 0x83f50734, 0xe285f0ef, - 0xd352e520, 0x0d400194, 0xe02a1b12, 0x4064a054, - 0x04020370, 0xf8f95300, 0xe4709490, 0x10f5e0f0, - 0x1e1209af, 0xef08af74, 0x82f50844, 0xe0808375, - 0x44ef29f5, 0x7582f507, 0xf5e09e83, 0xd3405422, - 0x1e400094, 0xf05429e5, 0x1b122170, 0x8044e02a, - 0x5422e5f0, 0x70086530, 0x2a1b1209, 0xf0bf54e0, - 0x1b120980, 0xf040742a, 0x12000402, 0x8375491b, - 0xf0ff74ae, 0x007e08af, 0xf50744ef, 0xe5fde082, - 0x25e0250b, 0xf58124e0, 0x0734e482, 0xf0ed83f5, - 0xe00e0790, 0x44eff004, 0x7582f507, 0xf5e09883, - 0x5a1b1228, 0x1b120c40, 0x0144e02a, 0x02691b12, - 0x08affb03, 0x8074007e, 0x8dcdefcd, 0xe083f582, - 0x120ae030, 0x44e02a1b, 0x0402f020, 0x2a1b1200, - 0xf0df54e0, 0x12ae44ee, 0xe430711b, 0x00040203, - 0x1b129e74, 0x03e0203c, 0x8f000402, 0xe0838e82, - 0x0203e020, 0x1b120004, 0x1044e02a, 0x4408e5f0, - 0x7582f506, 0x44e09e83, 0x08aff004, 0x44ef007e, - 0xe082f506, 0x1234e220, 0x44e02a1b, 0xe4e5f008, - 0x7d04e630, 0x7d028001, 0xc37ee500, 0x04500494, - 0x0280017c, 0x4dec007c, 0x35c20560, 0xee000402, - 0x1b12d244, 0xf0404471, 0x12000402, 0x54e02a1b, - 0x1b12f0f7, 0xd2837549, 0xf0bf54e0, 0xe0140790, - 0x7ee5f004, 0x7e750370, 0x7e08af01, 0x5a1b1200, - 0x1b121240, 0x0144e02a, 0xe0291b12, 0x1b120254, - 0x00040269, 0xe02a1b12, 0x1b120244, 0xfe54e029, - 0xee35c2f0, 0x828f8044, 0xf5e083f5, 0x44e35417, - 0x9074f010, 0x4408e5fc, 0x82f5fd07, 0x54e0838c, - 0x0207903f, 0xc054e0f0, 0x838c828d, 0x129274f0, - 0x07903c1b, 0x501b1203, 0x1b128274, 0x0407903c, - 0x74501b12, 0x3c1b12b4, 0x12050790, 0x9474501b, - 0x4408e5fe, 0x411b1206, 0xe03010f5, 0x8037d204, - 0xe537c202, 0x8f7f5410, 0xf0838e82, 0x12304430, - 0x80543a1b, 0x400094d3, 0x8039d204, 0x8f39c202, - 0xe0838e82, 0x12f08044, 0x40543a1b, 0x400094d3, - 0x803ad204, 0x8f3ac202, 0xe0838e82, 0x74f04044, - 0x08e5fe92, 0x1b120644, 0x04e73041, 0x028038d2, - 0x828f38c2, 0x54e0838e, 0x1e12f07f, 0x0af5e407, - 0x80020320, 0x03433003, 0x20171912, 0x03800202, - 0x12034230, 0x3030970c, 0x17191206, 0x12970c12, - 0x1b124f0d, 0xfb54e02a, 0xc30ae5f0, 0x46400194, - 0x1208e143, 0x44e02a1b, 0xe4e5f004, 0x122ae720, - 0x8375491b, 0x0854e0d2, 0x400094d3, 0x80017f04, - 0xe5007f02, 0x0194c30a, 0x017e0440, 0x007e0280, - 0x05605eef, 0x80981d12, 0x491b1217, 0xe0d28375, - 0x02f00844, 0x1b120004, 0xd2837549, 0xf0f754e0, - 0x7f071e12, 0xb3161208, 0x12fe8e74, 0x838e491b, - 0x5410f5e0, 0x10e5f0fe, 0xe5ff0144, 0x44edfd08, - 0xef82f507, 0x5410e5f0, 0x44edfffe, 0xef82f507, - 0x75481b12, 0x44e08683, 0x481b1210, 0xf01044e0, - 0xe02a1b12, 0x0144fd54, 0x2a1b12ff, 0x691b12ef, - 0xe50c3230, 0xf5084408, 0x82837582, 0xaff00574, - 0x5918120b, 0x08251074, 0x000208f5, 0xe5090585, - 0x0794d309, 0x00020350, 0xd37ee582, 0x04400094, - 0x0280017f, 0x7ee5007f, 0x50fa94c3, 0x80017e04, - 0xee007e02, 0x0502605f, 0x0b35307e, 0x7f01e143, - 0xb3161209, 0x53580002, 0x0002fee1, 0x8f6a8e58, - 0x8d6c8c6b, 0x016e756d, 0x75016f75, 0xf5e40170, - 0xf574f573, 0x2f079075, 0xf53cf5f0, 0xf546f53e, - 0xf53df547, 0xe56ff53f, 0xe50e706f, 0x126a456b, - 0x83753707, 0x803a7480, 0x37071208, 0x74808375, - 0x3607121a, 0xe0868375, 0xe4f00844, 0x74c36ef5, - 0xff6e953f, 0x75680812, 0xf0ef8283, 0x12741912, - 0x33e5d308, 0x070912f0, 0x40be0812, 0x706fe5e1, - 0x3707120b, 0x74808375, 0x0980f036, 0x75370712, - 0x16748083, 0x016e75f0, 0x75370712, 0x6ee5b483, - 0x741912f0, 0x6e253f74, 0x34e482f5, 0xe583f500, - 0xbf74f033, 0x82f56e25, 0x120034e4, 0xd840be08, - 0xf570f5e4, 0xf547f546, 0x0709126e, 0xfee083f5, - 0xe0d30812, 0x0024007c, 0xfe3eecff, 0xefd33bad, - 0x509cee9d, 0x80017b04, 0xe5007b02, 0x7a047070, - 0x7a028001, 0x605aeb00, 0x466e8506, 0xd3017075, - 0x9cee9def, 0x017f0450, 0x007f0280, 0x01b470e5, - 0x80017e04, 0xef007e02, 0x8503605e, 0x6e05476e, - 0x7f646ee5, 0x46e5a370, 0x47e50560, 0x85037eb4, - 0x6fe54746, 0x46850870, 0x77478576, 0x74c30e80, - 0xf546957f, 0x7f74c378, 0x79f54795, 0x37706fe5, - 0x476546e5, 0x73750c70, 0x01747501, 0x3df53cf5, - 0xf5e43580, 0x47e5c34e, 0x3cf54695, 0x71f513c3, - 0x72f54625, 0x403f94c3, 0x3df5e405, 0x74c34080, - 0xf572953f, 0xe537803d, 0x70476546, 0x0173750f, - 0xf5017575, 0x753ff53e, 0x2280014e, 0xc34ef5e4, - 0x469547e5, 0x13c33ef5, 0x462571f5, 0x94d372f5, - 0xe405503f, 0x06803ff5, 0xc12472e5, 0x6f053ff5, - 0x94c36fe5, 0x02035002, 0x6de57304, 0x02706c45, - 0x74e50480, 0x07907545, 0x017ff02f, 0x04603ee5, - 0x14703ce5, 0xf53cf5e4, 0xf53ef53d, 0xdf08123f, - 0x02f00470, 0x7a80b106, 0x95c33ce5, 0xe507403e, - 0xff3e953c, 0xe5c30680, 0xff3c953e, 0x95d376e5, - 0x85054079, 0x03807a76, 0xe57a7985, 0x7895c377, - 0x77850550, 0x8503807b, 0x7be57b78, 0x407a95d3, - 0x957be530, 0xf53cf57a, 0x7be5c33e, 0x07907a95, - 0x3ce5f019, 0x71f513c3, 0x72f57a25, 0x403f94c3, - 0x3df5e405, 0x74c31f80, 0xf572953f, 0x803ff53d, - 0x3cf5e414, 0x07903ef5, 0x0812f019, 0xf00370df, - 0x01740380, 0x680812f0, 0xe0d08375, 0xadfe0f54, - 0x7e02703c, 0x020fbe07, 0xfbee807e, 0x749bd3ef, - 0x4098f880, 0x3cf5e41f, 0x08123ef5, 0xf00370df, - 0x01741280, 0xfb08e5f0, 0xf50744eb, 0xd2837582, - 0xf01044e0, 0xebfb08e5, 0x82f50944, 0xed9e8375, - 0x0744ebf0, 0x837582f5, 0x12f0edca, 0x83756808, - 0x22f0efcc, 0x074408e5, 0x837582f5, 0xf054e0bc, - 0x4408e5f0, 0x7582f507, 0x54e0be83, 0x08e5f0f0, - 0x82f50744, 0xe0c08375, 0xe5f0f054, 0xf5074408, - 0x90f02282, 0xfee02807, 0x82f5e0a3, 0x8522838e, - 0x41854242, 0x40408541, 0xf52fc074, 0x3e027482, - 0x42e583f5, 0x2fe074f0, 0x027482f5, 0x2283f53e, - 0xfd2942e5, 0xe5fc33e4, 0xec9dc33c, 0x74f88064, - 0xf5229880, 0x0790e083, 0xfd1f5422, 0xe0a3fae0, - 0x838a82f5, 0x9022f0ed, 0xfce02207, 0x82f5e0a3, - 0x9022838c, 0xedff2407, 0xf0cf0744, 0x22f0efa3, - 0x85383885, 0x3a853939, 0x2fc0743a, 0x027482f5, - 0x2283f53e, 0xff260790, 0xcf0744ed, 0xf0efa3f0, - 0xa074f022, 0x7482f52f, 0x83f53e02, 0x25c07422, - 0xe482f511, 0x83f50134, 0x25007422, 0xe482f511, - 0x83f50234, 0x25607422, 0xe482f511, 0x83f50334, - 0x25807422, 0xe482f511, 0x83f50334, 0x25e07422, - 0xe482f511, 0x83f50334, 0x25407422, 0xe482f511, - 0x83f50634, 0x2f807422, 0x027482f5, 0x2283f53e, - 0x82e583f5, 0x82f50744, 0x22f040e5, 0x11254074, - 0x34e482f5, 0x2283f502, 0x1125c074, 0x34e482f5, - 0x2283f503, 0x11250074, 0x34e482f5, 0x2283f506, - 0x11252074, 0x34e482f5, 0x2283f506, 0xedfd08e5, - 0x82f50744, 0xf041e522, 0x016465e5, 0x7e226445, - 0x007afb00, 0x22007cfd, 0x11252074, 0x34e482f5, - 0xa0742202, 0x82f51125, 0x220334e4, 0x007e08af, - 0xf50744ef, 0x3e852282, 0x413f8542, 0x8522408f, - 0x3d85423c, 0x22408f41, 0x903f4575, 0xf0e42007, - 0x83f522a3, 0x05f032e5, 0xc36ee56e, 0xf0224094, - 0x064408e5, 0x742282f5, 0xf56e2500, 0x0034e482, - 0xe52283f5, 0x906c456d, 0xe4222f07, 0xd33ce5f9, - 0x74223e95, 0x82f52e80, 0xf50234e4, 0x7422e083, - 0x82f52ea0, 0xf50234e4, 0x7422e083, 0xf56e2580, - 0x0034e482, 0xfd422522, 0x22fc33e4, 0x85424285, - 0x40854141, 0x4ced2240, 0x09020360, 0x704eeff2, - 0x26079037, 0xe0960712, 0xd90712fd, 0x0790f0ed, - 0x96071228, 0x0712fde0, 0x12f0ede5, 0x54e09307, - 0x0812fd1f, 0xed83f584, 0x240790f0, 0xe0960712, - 0x12fd1f54, 0xf0ed3808, 0x4e0464ef, 0x07903770, - 0x96071226, 0x0712fde0, 0x90f0edf1, 0x07122807, - 0x12fde096, 0xf0edfd07, 0xe0930712, 0x12fd1f54, - 0x83f58e08, 0x0790f0ed, 0x96071224, 0xfd1f54e0, - 0xed440812, 0x0164eff0, 0x7d04704e, 0x7d028001, - 0x0264ef00, 0x7f04704e, 0x7f028001, 0x604def00, - 0x26079078, 0xe0420712, 0x090812ff, 0x3e0712ef, - 0x0812ffe0, 0x90f0ef15, 0x07122207, 0x1f54e042, - 0x500812ff, 0x0790f0ef, 0x42071224, 0xff1f54e0, - 0xef5c0812, 0x071222f0, 0x12f0e4d9, 0xf0e4e507, - 0xf5840812, 0x12f0e483, 0x14743808, 0xf10712f0, - 0x0712f0e4, 0x12f0e4fd, 0x83f58e08, 0x0812f0e4, - 0xf0147444, 0xe4090812, 0x150812f0, 0x0812f0e4, - 0x12f0e450, 0x14745c08, 0x648c22f0, 0x668a658d, - 0xf5e4678b, 0x704eef69, 0x161d0203, 0xe568f5e4, - 0x70664567, 0x37071232, 0xe4908375, 0x75360712, - 0x12e4c283, 0x83753607, 0x0812e4c4, 0x12297073, - 0x83753707, 0x0712e492, 0xc6837536, 0x360712e4, - 0xe4c88375, 0x901180f0, 0x07122607, 0x0812e442, - 0x12057073, 0xf0e43f07, 0x12161d12, 0x67e5801e, - 0x33706645, 0x75370712, 0x41e59083, 0x75360712, - 0x41e5c283, 0x75360712, 0x0812c483, 0x12297071, - 0x83753707, 0x1240e592, 0x83753607, 0x1240e5c6, - 0x83753607, 0x900e80c8, 0x07122607, 0x71081242, - 0x07120670, 0xf040e53f, 0x007e69af, 0x66ac67ad, - 0x12490412, 0x83753707, 0x94d3e0ca, 0x050c5000, - 0xc368e568, 0x03500594, 0x224b0a02, 0x75f7f953, - 0xf5e410fc, 0x30fe75fd, 0xf943fff5, 0x20e6e508, - 0xff780be7, 0xfdd8f6e4, 0x80fee653, 0xe4087809, - 0x53fdd8f6, 0x8175fee6, 0xa8f5e480, 0xa9c2a8d2, - 0xe2e5afd2, 0x2005e520, 0x038002e6, 0xe502e143, - 0x0ee020e2, 0x7f000090, 0xe4087e00, 0xfcdfa3f0, - 0x0b02fade, 0x01fa43b5, 0xf0c0e0c0, 0x82c083c0, - 0x1112d0c0, 0xd0d0d018, 0xd083d082, 0x53e0d0f0, - 0x0232fefa, 0x93e4d51a, 0x93e4f8a3, 0xdf08f6a3, - 0xe42980f9, 0x54f8a393, 0xc80c2407, 0x54c433c3, - 0xc820440f, 0xf4044083, 0x46018056, 0x80e4dff6, - 0x0402010b, 0x40201008, 0xff0f9080, 0x93017ee4, - 0xffa3c160, 0xe5303f54, 0xfe1f5409, 0x60a393e4, - 0x54cf0e01, 0x60e025c0, 0x80b840ad, 0x8d608cfe, - 0xe7081261, 0x0d402074, 0x7482f52f, 0x83f53e03, - 0x80f03ee5, 0x82f52f0b, 0xf53e0374, 0xf03ce583, - 0x95d33ce5, 0xe53c403e, 0x70604561, 0x0912e910, - 0x123ee511, 0x3b407507, 0x80a20812, 0xc33ee518, - 0x1d403895, 0xe5383e85, 0x8505603e, 0x0380393f, - 0x8f393985, 0x2108123a, 0x07123ee5, 0xf03fe5cd, - 0xe5438022, 0x70604561, 0x6c071219, 0x08120540, - 0x122780ab, 0x08121809, 0x1242e521, 0x41e5cd07, - 0x3ce522f0, 0x403895c3, 0x383c851d, 0x05603ce5, - 0x80393d85, 0x39398503, 0x08123a8f, 0x123ce521, - 0x3de5cd07, 0x388522f0, 0x39398538, 0x123a3a85, - 0x38e52108, 0xe5cd0712, 0x7f22f039, 0xb3161206, - 0x12e41c12, 0x0e12b70e, 0x0a44e0e6, 0xfe8e74f0, - 0x12b70e12, 0xf0efbe0e, 0xe53028e5, 0x0180d303, - 0x750540c3, 0x03802014, 0x12081475, 0x8375b70e, - 0xf014e58a, 0x7505ffb4, 0x06808012, 0x13c314e5, - 0xf5e412f5, 0x127ff516, 0x1312b818, 0xc30ae5a3, - 0x09500194, 0x16e51605, 0x401494c3, 0x20e4e5ea, - 0x0e1228e7, 0xd28375b7, 0xd30854e0, 0x04400094, - 0x0280017f, 0x0ae5007f, 0x400194c3, 0x80017e04, - 0xef007e02, 0x1203605e, 0x7fe5981d, 0x401194c3, - 0xb70e1214, 0xe0d28375, 0xe5f08044, 0x0fe720e4, - 0x80981d12, 0xb70e120a, 0xe0d28375, 0x12f07f54, - 0x7422e41c, 0x82088580, 0x17e583f5, 0xed0e12f0, - 0x0790f0e4, 0x0e12e002, 0x908375ca, 0x9274f0ef, - 0x4408e5fe, 0x82f5ff07, 0x54e0838e, 0x0790fdc0, - 0x3f54e003, 0x8e828f4d, 0x0790f083, 0x0e12e004, - 0x828375ca, 0x0790f0ef, 0xedffe005, 0x82f50744, - 0xefb48375, 0x75b60e12, 0x54e08083, 0x3730f0bf, - 0x440f120a, 0xe0948375, 0x30f08044, 0x0f120a38, - 0x92837544, 0xf08044e0, 0xe43028e5, 0x0a39201a, - 0x75b70e12, 0x54e08883, 0x3a20f07f, 0xb70e120a, - 0xe0888375, 0x74f0bf54, 0x0e12fe8c, 0xe0838eb7, - 0x0e120f54, 0x868375b6, 0xf0bf54e0, 0x064408e5, - 0x75b00e12, 0xf0e48a83, 0x704eef22, 0xd9071226, - 0x0790fde0, 0x88071226, 0xe0e50712, 0x280790fd, - 0x12880712, 0x07128408, 0x3808127f, 0x240790e0, - 0xef850712, 0x704e0464, 0xf1071229, 0x0790fde0, - 0x88071226, 0xe0fd0712, 0x280790fd, 0x12880712, - 0x07128e08, 0x4408127f, 0xfd1f54e0, 0x12240790, - 0x64ef8807, 0x04704e01, 0x0280017d, 0x64ef007d, - 0x04704e02, 0x0280017f, 0x4def007f, 0x08123560, - 0x90ffe009, 0x07122607, 0x12f0ef96, 0xffe01508, - 0x12280790, 0xf0ef9607, 0xe0500812, 0x12ff1f54, - 0xf0ef9307, 0xe05c0812, 0x90ff1f54, 0x07122407, - 0x22f0ef96, 0x837582f5, 0xe5f0e482, 0xf5074408, - 0x838e2282, 0x5410f5e0, 0x10e5f0fe, 0xe5ff0144, - 0x44edfd08, 0x2282f507, 0x54c415e5, 0x08e5ff07, - 0x0844edfd, 0x837582f5, 0x83752282, 0x4044e080, - 0x4408e5f0, 0x7582f508, 0xe5228a83, 0x25e02516, - 0xf52f24e0, 0x1a34e482, 0x93e483f5, 0x43220df5, - 0xe14310e1, 0xfde15380, 0x2210e185, 0xe02516e5, - 0x3224e025, 0x34e482f5, 0xe483f51a, 0x55852293, - 0x83548582, 0x22f015e5, 0x2054e2e5, 0x220094d3, - 0x4054e2e5, 0x220094d3, 0x064408e5, 0xfd2282f5, - 0xebfb08e5, 0x82f50744, 0x53f5e422, 0x40340f12, - 0x80017f04, 0x12007f02, 0x04403c0f, 0x0280017e, - 0x4fee007e, 0x0f020370, 0x10e185f7, 0x5302e143, - 0xe1850fe1, 0x51f5e410, 0x3f54e3e5, 0x0f1252f5, - 0xad1d403c, 0x1251af52, 0x60efb01c, 0x10e18508, - 0x8040e143, 0xbfe1530b, 0x120b0f12, 0xfb800600, - 0x3f54e3e5, 0xe4e551f5, 0x52f53f54, 0x40340f12, - 0xaf52ad1d, 0xb01c1251, 0x850860ef, 0xe14310e1, - 0x530b8020, 0x0f12dfe1, 0x0600120b, 0x0f12fb80, - 0x7f044034, 0x7f028001, 0x3c0f1200, 0x017e0440, - 0x007e0280, 0x03604fee, 0x220e0f12, 0x01001f01, - 0x00002003, 0x02001102, 0x10024010, 0x00000090, - 0x00000000, 0x1f011f01, 0x1257f5e4, 0x15123f16, - 0x1012e4c6, 0xb7141256, 0x12260790, 0x12e44207, - 0xf0e43e07, 0x12561012, 0x0790b714, 0x42071226, - 0x071241e5, 0xf040e53e, 0x007e57af, 0x007c56ad, - 0xaf490412, 0x02007e56, 0x90ffee11, 0xe0a32007, - 0x56f5e4fd, 0xfcfe40f5, 0x12fa56ab, 0x0f7f5111, - 0xf5e4187d, 0xfe40f556, 0xfa56abfc, 0xaf411512, - 0x12007e56, 0xffe47f1a, 0x1f7d56f5, 0xfcfe40f5, - 0x22fa56ab, 0x55f5e422, 0x74fd08e5, 0xed56f5a0, - 0x57f50744, 0xe53028e5, 0x0180d303, 0x7f0540c3, - 0x0480ef28, 0xc3ef147f, 0xe454f513, 0xcb0e12f9, - 0xe08e8375, 0xefce10f5, 0x94d3eece, 0xe5264000, - 0x12fe5410, 0x83754b0f, 0xe5f0ed8e, 0xfd014410, - 0xf50744eb, 0x85f0ed82, 0x56858257, 0xe330e083, - 0x801e0901, 0xe934c2d4, 0x405495c3, 0x2234d202, - 0x00000f22, 0x90113030, 0x93e40010, 0x109010f5, - 0xf593e410, 0x90101210, 0x22501112, 0xe730e2e5, - 0x0310120e, 0x303030c2, 0xfc101203, 0xe5213320, - 0x2094c3fe, 0xf9530950, 0x30fe75f7, 0xe508f943, - 0x03e730f2, 0xe57ff953, 0xd37054f1, 0xdf500094, - 0x00000022, 0x8f588e22, 0x8d5a8c59, 0x8b5c8a5b, - 0x015e755d, 0xf55ff5e4, 0x1262f560, 0x83753707, - 0xc4ffe0d0, 0x61f50f54, 0x85661e12, 0xe5d35e59, - 0xe55b955e, 0x7807125a, 0x07124b50, 0xbc837510, - 0x125e45e0, 0x83753607, 0x5e45e0be, 0x75360712, - 0x45e0c083, 0x5faff05e, 0x081260e5, 0x360a127b, - 0x007e62af, 0x5cac5dad, 0xe5490412, 0x7e5eaf61, - 0x0503b400, 0x80e21d12, 0xac5dad07, 0x1713125c, - 0x11025e05, 0x1007127a, 0xe0bc8375, 0x07124045, - 0xbe837536, 0x124045e0, 0x83753607, 0x4045e0c0, - 0x588e22f0, 0x5a75598f, 0x75017901, 0xfbe4015b, - 0x75370712, 0x54e0ae83, 0x0812ff1a, 0x13c4e068, - 0xeffe0754, 0x65ee0c70, 0x90077035, 0xb4e02f07, - 0x35af0d01, 0x0e12007e, 0xcfebcf05, 0xe5211e02, - 0x45026459, 0x7f047058, 0x7f028001, 0x4559e500, - 0x7e047058, 0x7e028001, 0x604fee00, 0x49418523, - 0xe54b4085, 0x70584559, 0xfe5aaf2c, 0xfccde9cd, - 0x58aa59ab, 0xaf360a12, 0x12007e5b, 0x1580211e, - 0x007e5baf, 0x90211e12, 0x07122607, 0x1249e542, - 0x4be53e07, 0xaffde4f0, 0x12fcfe35, 0x8c222209, - 0x12658d64, 0x3c40e708, 0x644565e5, 0x09121070, - 0x3ee5c311, 0x40760712, 0xa208123b, 0x3ee51880, - 0x403895c3, 0x383e851d, 0x05603ee5, 0x80393f85, - 0x39398503, 0x07123a8f, 0x123ee5b5, 0x3fe56007, - 0x3b8022f0, 0x644565e5, 0x07121170, 0x1205406c, - 0x1f80ab08, 0xe54b0712, 0xe522f041, 0x3895c33c, - 0x3c851d40, 0x603ce538, 0x393d8505, 0x39850380, - 0x123a8f39, 0x3ce5b507, 0xe5600712, 0x1222f03d, - 0x38e5ac07, 0xe5600712, 0x8c22f039, 0x12648d63, - 0x3c40e708, 0x634564e5, 0x09121070, 0x3ee5c311, - 0x40760712, 0xa208123b, 0x3ee51880, 0x403895c3, - 0x383e851d, 0x05603ee5, 0x80393f85, 0x39398503, - 0x07123a8f, 0x123ee5b5, 0x3fe56007, 0x3b8022f0, - 0x634564e5, 0x07121170, 0x1205406c, 0x1f80ab08, - 0xe54b0712, 0xe522f041, 0x3895c33c, 0x3c851d40, - 0x603ce538, 0x393d8505, 0x39850380, 0x123a8f39, - 0x3ce5b507, 0xe5600712, 0x1222f03d, 0x38e5ac07, - 0xe5600712, 0xe522f039, 0x08e5fe0d, 0x0544548e, - 0x157555f5, 0x1282f50f, 0x17122d0f, 0x05312025, - 0x80031575, 0x0b157503, 0x94c30ae5, 0x12385001, - 0x31202014, 0x05150506, 0x15048015, 0xe5151515, - 0x0194c30a, 0x14122150, 0x04312020, 0x02801505, - 0x0ae51515, 0x500194c3, 0x2a0f120e, 0x20251712, - 0x15050531, 0xe52a0f12, 0x0408b415, 0x0280017f, - 0x15e5007f, 0x7e0407b4, 0x7e028001, 0x604fee00, - 0x227f0502, 0x85825585, 0x15e58354, 0x251712f0, - 0x37071222, 0x74ae8375, 0x360712ff, 0xf51a54e0, - 0x13c4e034, 0x35f50754, 0x2460fe24, 0x3c60fe24, - 0x63700424, 0xe52d3175, 0xb674fd08, 0x749f0712, - 0x220790bc, 0x74a20712, 0xc0071290, 0x3c809274, - 0xe53a3175, 0xba74fd08, 0x749f0712, 0x220790c0, - 0x74c30712, 0xc00712c4, 0x2080c874, 0xe5353175, - 0xb874fd08, 0x749f0712, 0x44edffbe, 0x22079007, - 0xefa3f0cf, 0x12c274f0, 0xc674c007, 0x0744edff, - 0xa3f0cfa3, 0x7522f0ef, 0x8e220134, 0x8c598f58, - 0x8a5b8d5a, 0x755d8b5c, 0xf5e4015e, 0x661e125f, - 0xd35e5985, 0x5b955ee5, 0x07125ae5, 0xe5575078, - 0x705c455d, 0x37071230, 0xe5928375, 0x3607125e, - 0xe5c68375, 0x3607125e, 0xe5c88375, 0x3607125e, - 0xe5908375, 0x3607125e, 0xe5c28375, 0x3607125e, - 0x80c48375, 0x3f071203, 0xaff05ee5, 0xad007e5f, - 0x125cac5d, 0x5eaf4904, 0x5dad007e, 0x0b125cac, - 0x025e05d9, 0x5dabcf14, 0x5bad5caa, 0x59af5aac, - 0x1b0258ae, 0x8d5c8c7b, 0x8b5e8a5d, 0x0160755f, - 0xf561f5e4, 0x1263f562, 0x608f661e, 0x9560e5d3, - 0x125ce55d, 0x61507807, 0x5e455fe5, 0x07122770, - 0xb6837537, 0x071260e5, 0xb8837536, 0x071260e5, - 0xba837536, 0xaff060e5, 0xe5007e61, 0x7d081262, - 0x80360a12, 0x24079019, 0xe5420712, 0x36071260, - 0xe48e8375, 0x74360712, 0x36071201, 0x63aff0e4, - 0x5fad007e, 0x04125eac, 0x7e60af49, 0xac5fad00, - 0x8b12125e, 0x15026005, 0xf5e42258, 0xaf59f558, - 0x0744ef08, 0x837582f5, 0xc4fde0d0, 0x5af50f54, - 0xf50744ef, 0x80837582, 0x12f00174, 0x83759a08, - 0xf045e582, 0xf50744ef, 0x8a837582, 0x12f0ff74, - 0x07127419, 0xbc837537, 0x12ef54e0, 0x83753607, - 0xef54e0be, 0x75360712, 0x54e0c083, 0x360712ef, - 0xe0bc8375, 0x07121044, 0xbe837536, 0x121044e0, - 0x83753607, 0x1044e0c0, 0xe558aff0, 0x7b081259, - 0xe4360a02, 0x017d58f5, 0x35af59f5, 0x0912fcfe, - 0x37071222, 0x74b68375, 0x36071210, 0x74b88375, - 0x36071210, 0x74ba8375, 0x36071210, 0x74bc8375, - 0x36071210, 0x74be8375, 0x36071210, 0x74c08375, - 0x36071210, 0xe4908375, 0x75360712, 0x12e4c283, - 0x83753607, 0x0712e4c4, 0x92837536, 0x360712e4, - 0xe4c68375, 0x75360712, 0xf0e4c883, 0xe5fe58af, - 0x7d081259, 0xe5360a02, 0x6ce430e2, 0xc054e7e5, - 0x64704064, 0x54c409e5, 0x08e5fe30, 0xe025e025, - 0xfe4ec054, 0x4e3f54ef, 0xae2be5fd, 0xc302782a, - 0xce33ce33, 0x82f5f9d8, 0xf0ed838e, 0x2aae2be5, - 0x33c30278, 0xd8ce33ce, 0x82f5fff9, 0xe5a3838e, - 0x828ff0fe, 0xa3a3838e, 0x8ff0fde5, 0xa3838e82, - 0xfce5a3a3, 0x2be5c3f0, 0x2ae5fa94, 0x08500094, - 0x2be52b05, 0x2a050270, 0xe4ffe422, 0x56f558f5, - 0x827457f5, 0xb70e12fc, 0xf5e0838c, 0xf07f5410, - 0x804410e5, 0xed4b0f12, 0x120a7ef0, 0x8375b70e, - 0xe020e0a0, 0x05f4de26, 0x7057e557, 0xe5560502, - 0xfd012414, 0xd3fc33e4, 0xe59d57e5, 0xd9409c56, - 0x20940ae5, 0x0a050250, 0xc208e143, 0xb70e1231, - 0xe0a68375, 0x12651255, 0x31d20370, 0x2231c222, - 0xe0260790, 0xf5e0a3fa, 0xe0838a82, 0x39e541f5, - 0x404195c3, 0x9539e526, 0xee9fc341, 0x40780712, - 0x80017c04, 0xe5007c02, 0x603f6441, 0x80017b04, - 0xec007b02, 0x0529605b, 0xc3288041, 0x399541e5, - 0x12ee9fc3, 0x04407807, 0x0280017f, 0x41e5007f, - 0x017e0460, 0x007e0280, 0x04605eef, 0x03804115, - 0x85413985, 0xe522403a, 0x60e430e2, 0xe230e1e5, - 0x7009e55b, 0x80017f04, 0xe5007f02, 0x7e047008, - 0x7e028001, 0x605fee00, 0xf8f95343, 0xe430e2e5, - 0x30e1e53b, 0xfa432ee2, 0xfbfa5302, 0x9010f5e4, - 0x10e57094, 0x30e1e5f0, 0x9490e7e2, 0x1065e070, - 0xfa430360, 0x90100504, 0x10e57094, 0x12e670f0, - 0xe1800600, 0x53fdfa53, 0xc080fbfa, 0x12548f22, - 0xe1e50600, 0x7f04e030, 0x7f028001, 0xd37ee500, - 0x04400594, 0x0280017e, 0x4fee007e, 0x54853d60, - 0x20e2e511, 0xce7432e1, 0x303c1b12, 0x017d04e7, - 0x007d0280, 0x838e828f, 0x04e630e0, 0x0280017f, - 0x5def007f, 0x1c121570, 0x12ce7467, 0xe6303c1b, - 0x8044e007, 0x80f943f0, 0x22f31712, 0xe5f70e12, - 0x25e02516, 0xf53024e0, 0x1a34e482, 0x93e483f5, - 0x16e50ff5, 0xe025e025, 0x82f53124, 0xf51a34e4, - 0xf593e483, 0x180f120e, 0x0fe510f5, 0x0e12f054, - 0x8c8375ca, 0x0fe5f0ef, 0x120ce030, 0x8375b70e, - 0x4044e086, 0x120a80f0, 0x8375b70e, 0xbf54e086, - 0x440f12f0, 0xe5828375, 0x7f22f00e, 0xb3161205, - 0x12b70e12, 0x0274e60e, 0xfe8e74f0, 0x12b70e12, - 0xf0efbe0e, 0x12701575, 0x34208a1e, 0x10157505, - 0x15750380, 0x8a1e1250, 0x74043420, 0x74028010, - 0xf51525f0, 0xd40e1215, 0x1012f0ef, 0x17342091, - 0x306415e5, 0x10740c60, 0x15f51525, 0xe40380b4, - 0x0e1215f5, 0x22f0efd4, 0x2a0790e4, 0x12f0a3f0, - 0x83753707, 0x7f54e082, 0xe0360712, 0x12f08044, - 0x08123d00, 0xa0837598, 0x1ae020e0, 0xe02b0790, - 0x0670f004, 0xe02a0790, 0x0790f004, 0x10b4e02a, - 0xb4e0a3e1, 0x44eedc00, 0x44effca6, 0x8c82f507, - 0x32f5e083, 0xfea844ee, 0xf50744ef, 0xe0838e82, - 0x122233f5, 0x83759808, 0x54c4e0d0, 0x4375fd0f, - 0xff447501, 0x74b70812, 0x3b75f004, 0x6014ed01, - 0x0b60140c, 0x240f6014, 0x800b7003, 0x12008009, - 0xf004b408, 0x08120680, 0xf00474b4, 0xfe8244ee, - 0xf50744ef, 0xe5838e82, 0xcb081245, 0xe5828375, - 0x36071231, 0xe0868375, 0x22f00844, 0x000f1f01, - 0x90002003, 0x920f2000, 0x940f2100, 0x960f2200, - 0x980f2300, 0x9a0f2400, 0x9c0f2500, 0x9e0f2600, - 0xa00f2700, 0xa2012001, 0xa4012101, 0xa6012201, - 0xa8012301, 0xaa012401, 0xac012501, 0xae012601, - 0xb0012701, 0xb4012801, 0xb60f2800, 0xb80f2840, - 0xcb012861, 0xeecacbef, 0xe4017fca, 0x704aebfd, - 0xf508e524, 0x12b67482, 0x08e52c08, 0xb87482f5, - 0xe52c0812, 0x7482f508, 0x2c0812ba, 0x007c007e, - 0x80360a12, 0x26079012, 0xe5420712, 0x0790f041, - 0x42071224, 0x12f040e5, 0x83753707, 0x0712e48e, - 0x12017436, 0xf0e43607, 0x26f5e422, 0xe15327f5, - 0x752af5fe, 0x08f5012b, 0x1612017f, 0x1c3030b3, - 0xe4291a90, 0x9010f593, 0x93e4f91f, 0x009010f5, - 0xf593e441, 0xf90f9010, 0x10f593e4, 0x1612027f, - 0x550f12b3, 0x1612037f, 0x060012b3, 0xe730e2e5, - 0x00101209, 0x12033030, 0x00020011, 0x0be5f047, - 0xe025e025, 0x82f58224, 0xf50734e4, 0x88742283, - 0x4408e5fe, 0x82f5ff07, 0x22e0838e, 0x4408e5f0, - 0x2282f507, 0xc054e0f0, 0x838e828f, 0x44ef22f0, - 0x7582f507, 0x54e08683, 0x0094d310, 0x0790f022, - 0xf004e015, 0x44effe22, 0x8e82f507, 0x8e22e083, - 0x12618f60, 0xffe4661e, 0xeeceedce, 0xe56195d3, - 0x78071260, 0x20743940, 0xe482f52e, 0x83f50334, - 0xff0370e0, 0x08122680, 0x9fc3fdef, 0xedcf1e40, - 0x704aebcf, 0x12428d0b, 0x41f5fb08, 0x0c80408e, - 0xf5ef0812, 0xfb081238, 0x3a8e39f5, 0x22bc801e, - 0xe5015875, 0x120c7035, 0xf5e0d907, 0xe507124a, - 0xe54cf5e0, 0x0c04b435, 0xe0f10712, 0x07124af5, - 0x4cf5e0fd, 0x01b435e5, 0x80017f04, 0xe5007f02, - 0x0402b435, 0x0280017e, 0x4fee007e, 0x08120c60, - 0x4af5e009, 0xe0150812, 0x41854cf5, 0x4b408549, - 0x015b7522, 0x12240790, 0x54e04207, 0x94d3ff1f, - 0x8f045002, 0xef058058, 0x58f5fe24, 0x1894c3ef, - 0x59750540, 0xef048018, 0x8559f504, 0x58af5a43, - 0x59ad007e, 0x5bab007c, 0x1512007a, 0x7e5aaf41, - 0x8c171200, 0x007e5baf, 0x907f1a02, 0x93e4fd10, - 0xf02e0790, 0x122d1412, 0x34e5cf19, 0x07123570, - 0xce837537, 0x1313ffe0, 0xf5075413, 0x240f5436, - 0x240b60fe, 0x240a60fe, 0x02187003, 0x1e026f1d, - 0x14101252, 0x1255f5e4, 0x5505461d, 0x94c355e5, - 0x22f44005, 0xedc3fce4, 0xf5effa9f, 0x00827583, - 0x93e4ff79, 0xa3cc6ccc, 0xf6daf8d9, 0xe430e2e5, - 0xede58c02, 0xefffff24, 0xf5ff8275, 0x6c93e483, - 0x017f0370, 0x22007f22, 0x75b70e12, 0xf0e48083, - 0x074408e5, 0x75b00e12, 0x0e128483, 0x868375b5, - 0x75b50e12, 0x54e08c83, 0xb60e12f3, 0x128e8375, - 0x8375b50e, 0xfb54e094, 0x071222f0, 0x8e837537, - 0x360712e4, 0x07120174, 0x0812e436, 0x8c8375cb, - 0x122044e0, 0x54e0cb08, 0x8474f0df, 0xf5820885, - 0x7f54e083, 0x8044e0f0, 0x567522f0, 0xf5fde401, - 0xfe35af57, 0x220912fc, 0x121d1c12, 0x1b123b1e, - 0x7e57afcc, 0x7c56ad00, 0x49041200, 0x007e56af, - 0x75ee1102, 0xfde40156, 0x35af57f5, 0x0912fcfe, - 0x1d1c1222, 0x123b1e12, 0x57afcc1b, 0x56ad007e, - 0x0412007c, 0x7e56af49, 0xee110200, 0x1216f5e4, - 0xe5fef70e, 0xff054408, 0x8f180f12, 0xf0838e82, - 0x16e51605, 0x401494c3, 0x1208e5e6, 0xf0e4de0e, - 0x58f5e422, 0x5af559f5, 0x58adfeff, 0x220912fc, - 0x007e047f, 0x007c58ad, 0x7f220912, 0xad007e02, - 0x02007c58, 0x3ce52209, 0xe5fc3e25, 0xfb002442, - 0xecfa33e4, 0x12ea9bc3, 0x0b407807, 0x3de5428c, - 0x41f53f25, 0x1222408f, 0x74221809, 0x8518f584, - 0x19851908, 0x83188582, 0xf07f54e0, 0xf08044e0, - 0xf08044e0, 0x704eef22, 0x3707120b, 0xe0d28375, - 0x22f0df54, 0x75370712, 0x44e0d283, 0x7522f020, - 0x07900158, 0x42071226, 0xf53f54e0, 0x3f071241, - 0xf53f54e0, 0x56752240, 0x57f5e402, 0xafbd1d12, - 0xad007e57, 0x02007c56, 0xf5e44904, 0xf541f542, - 0xf538f540, 0x223af539, 0xff0754ef, 0xf854f9e5, - 0x22f9f54f, 0xfee4017f, 0xffbe0e0f, 0x0e1222fb, - 0x12f0efd4, 0x00229110, 0x00000000, 0x00000000, + 0x058d04d8, 0x040f702f, 0x00868013, 0x0380001d, + 0x05301000, 0x06000008, 0x0484860b, 0x06420001, + 0x04818607, 0x02800625, 0x020e0008, 0x07c00000, + 0x050fd009, 0x040fd008, 0x05301000, 0x06000008, + 0x04848615, 0x06420001, 0x05818611, 0x02800625, + 0x007a0102, 0x04000101, 0x05600809, 0x050f80ff, + 0x073fa00a, 0x06000001, 0x020e0008, 0x04848620, + 0x06420001, 0x0481861c, 0x02800625, 0x030e0009, + 0x07c00000, 0x052e400f, 0x00208040, 0x03800605, + 0x070fc0ff, 0x040f8010, 0x032fa009, 0x03800628, + 0x0c83b152, 0x00000000, 0x00000000, 0x0000400e, + 0x00000808, 0x00000803, 0x00011f0f, 0x02080b02, + 0xe6e5610b, 0x7f04e630, 0x7f028001, 0x30e2e500, + 0x017e04e4, 0x007e0280, 0x08605fee, 0xe4f7f953, + 0x0b80fef5, 0x16120a7f, 0xf7f953b3, 0x7530fe75, + 0xf5e408fc, 0x08f943fd, 0x06000222, 0x000f1f01, + 0x75002003, 0xf5e40151, 0xf553f552, 0x7f7ef552, + 0x3d040204, 0x520536c2, 0x94d352e5, 0x7505400c, + 0x36d20152, 0x740c0790, 0x74a3f007, 0xf5e4f0ff, + 0x90f0a30c, 0xa3f01407, 0x200b75f0, 0xf5e409f5, + 0xd308e508, 0x03403094, 0x12090402, 0x0b150600, + 0x047008e5, 0x0280017f, 0x09e5007f, 0x017e0470, + 0x007e0280, 0x05605fee, 0xd2f31712, 0xf7e15335, + 0x094508e5, 0x250be5ff, 0x24e025e0, 0xe482f583, + 0x83f50734, 0xe285f0ef, 0xd352e520, 0x0d400194, + 0xe02a1b12, 0x4064a054, 0x04020370, 0xf8f95300, + 0xe4709490, 0x10f5e0f0, 0x1e1209af, 0xef08af74, + 0x82f50844, 0xe0808375, 0x44ef29f5, 0x7582f507, + 0xf5e09e83, 0xd3405422, 0x1e400094, 0xf05429e5, + 0x1b122170, 0x8044e02a, 0x5422e5f0, 0x70086530, + 0x2a1b1209, 0xf0bf54e0, 0x1b120980, 0xf040742a, + 0x12000402, 0x8375491b, 0xf0ff74ae, 0x007e08af, + 0xf50744ef, 0xe5fde082, 0x25e0250b, 0xf58124e0, + 0x0734e482, 0xf0ed83f5, 0xe00e0790, 0x44eff004, + 0x7582f507, 0xf5e09883, 0x5a1b1228, 0x1b120c40, + 0x0144e02a, 0x02691b12, 0x08affb03, 0x8074007e, + 0x8dcdefcd, 0xe083f582, 0x120ae030, 0x44e02a1b, + 0x0402f020, 0x2a1b1200, 0xf0df54e0, 0x12ae44ee, + 0xe430711b, 0x00040203, 0x1b129e74, 0x03e0203c, + 0x8f000402, 0xe0838e82, 0x0203e020, 0x1b120004, + 0x1044e02a, 0x4408e5f0, 0x7582f506, 0x44e09e83, + 0x08aff004, 0x44ef007e, 0xe082f506, 0x1234e220, + 0x44e02a1b, 0xe4e5f008, 0x7d04e630, 0x7d028001, + 0xc37ee500, 0x04500494, 0x0280017c, 0x4dec007c, + 0x35c20560, 0xee000402, 0x1b12d244, 0xf0404471, + 0x12000402, 0x54e02a1b, 0x1b12f0f7, 0xd2837549, + 0xf0bf54e0, 0xe0140790, 0x7ee5f004, 0x7e750370, + 0x7e08af01, 0x5a1b1200, 0x1b121240, 0x0144e02a, + 0xe0291b12, 0x1b120254, 0x00040269, 0xe02a1b12, + 0x1b120244, 0xfe54e029, 0xee35c2f0, 0x828f8044, + 0xf5e083f5, 0x44e35417, 0x9074f010, 0x4408e5fc, + 0x82f5fd07, 0x54e0838c, 0x0207903f, 0xc054e0f0, + 0x838c828d, 0x129274f0, 0x07903c1b, 0x501b1203, + 0x1b128274, 0x0407903c, 0x74501b12, 0x3c1b12b4, + 0x12050790, 0x9474501b, 0x4408e5fe, 0x411b1206, + 0xe03010f5, 0x8037d204, 0xe537c202, 0x8f7f5410, + 0xf0838e82, 0x12304430, 0x80543a1b, 0x400094d3, + 0x8039d204, 0x8f39c202, 0xe0838e82, 0x12f08044, + 0x40543a1b, 0x400094d3, 0x803ad204, 0x8f3ac202, + 0xe0838e82, 0x74f04044, 0x08e5fe92, 0x1b120644, + 0x04e73041, 0x028038d2, 0x828f38c2, 0x54e0838e, + 0x1e12f07f, 0x0af5e407, 0x80020320, 0x03433003, + 0x20171912, 0x03800202, 0x12034230, 0x3030970c, + 0x17191206, 0x12970c12, 0x1b124f0d, 0xfb54e02a, + 0xc30ae5f0, 0x46400194, 0x1208e143, 0x44e02a1b, + 0xe4e5f004, 0x122ae720, 0x8375491b, 0x0854e0d2, + 0x400094d3, 0x80017f04, 0xe5007f02, 0x0194c30a, + 0x017e0440, 0x007e0280, 0x05605eef, 0x80981d12, + 0x491b1217, 0xe0d28375, 0x02f00844, 0x1b120004, + 0xd2837549, 0xf0f754e0, 0x7f071e12, 0xb3161208, + 0x12fe8e74, 0x838e491b, 0x5410f5e0, 0x10e5f0fe, + 0xe5ff0144, 0x44edfd08, 0xef82f507, 0x5410e5f0, + 0x44edfffe, 0xef82f507, 0x75481b12, 0x44e08683, + 0x481b1210, 0xf01044e0, 0xe02a1b12, 0x0144fd54, + 0x2a1b12ff, 0x691b12ef, 0xe50c3230, 0xf5084408, + 0x82837582, 0xaff00574, 0x5918120b, 0x08251074, + 0x000208f5, 0xe5090585, 0x0794d309, 0x00020350, + 0xd37ee582, 0x04400094, 0x0280017f, 0x7ee5007f, + 0x50fa94c3, 0x80017e04, 0xee007e02, 0x0502605f, + 0x0b35307e, 0x7f01e143, 0xb3161209, 0x53580002, + 0x0002fee1, 0x8f6a8e58, 0x8d6c8c6b, 0x016e756d, + 0x75016f75, 0xf5e40170, 0xf574f573, 0x2f079075, + 0xf53cf5f0, 0xf546f53e, 0xf53df547, 0xe56ff53f, + 0xe50e706f, 0x126a456b, 0x83753707, 0x803a7480, + 0x37071208, 0x74808375, 0x3607121a, 0xe0868375, + 0xe4f00844, 0x74c36ef5, 0xff6e953f, 0x75680812, + 0xf0ef8283, 0x12741912, 0x33e5d308, 0x070912f0, + 0x40be0812, 0x706fe5e1, 0x3707120b, 0x74808375, + 0x0980f036, 0x75370712, 0x16748083, 0x016e75f0, + 0x75370712, 0x6ee5b483, 0x741912f0, 0x6e253f74, + 0x34e482f5, 0xe583f500, 0xbf74f033, 0x82f56e25, + 0x120034e4, 0xd840be08, 0xf570f5e4, 0xf547f546, + 0x0709126e, 0xfee083f5, 0xe0d30812, 0x0024007c, + 0xfe3eecff, 0xefd33bad, 0x509cee9d, 0x80017b04, + 0xe5007b02, 0x7a047070, 0x7a028001, 0x605aeb00, + 0x466e8506, 0xd3017075, 0x9cee9def, 0x017f0450, + 0x007f0280, 0x01b470e5, 0x80017e04, 0xef007e02, + 0x8503605e, 0x6e05476e, 0x7f646ee5, 0x46e5a370, + 0x47e50560, 0x85037eb4, 0x6fe54746, 0x46850870, + 0x77478576, 0x74c30e80, 0xf546957f, 0x7f74c378, + 0x79f54795, 0x37706fe5, 0x476546e5, 0x73750c70, + 0x01747501, 0x3df53cf5, 0xf5e43580, 0x47e5c34e, + 0x3cf54695, 0x71f513c3, 0x72f54625, 0x403f94c3, + 0x3df5e405, 0x74c34080, 0xf572953f, 0xe537803d, + 0x70476546, 0x0173750f, 0xf5017575, 0x753ff53e, + 0x2280014e, 0xc34ef5e4, 0x469547e5, 0x13c33ef5, + 0x462571f5, 0x94d372f5, 0xe405503f, 0x06803ff5, + 0xc12472e5, 0x6f053ff5, 0x94c36fe5, 0x02035002, + 0x6de57304, 0x02706c45, 0x74e50480, 0x07907545, + 0x017ff02f, 0x04603ee5, 0x14703ce5, 0xf53cf5e4, + 0xf53ef53d, 0xdf08123f, 0x02f00470, 0x7a80b106, + 0x95c33ce5, 0xe507403e, 0xff3e953c, 0xe5c30680, + 0xff3c953e, 0x95d376e5, 0x85054079, 0x03807a76, + 0xe57a7985, 0x7895c377, 0x77850550, 0x8503807b, + 0x7be57b78, 0x407a95d3, 0x957be530, 0xf53cf57a, + 0x7be5c33e, 0x07907a95, 0x3ce5f019, 0x71f513c3, + 0x72f57a25, 0x403f94c3, 0x3df5e405, 0x74c31f80, + 0xf572953f, 0x803ff53d, 0x3cf5e414, 0x07903ef5, + 0x0812f019, 0xf00370df, 0x01740380, 0x680812f0, + 0xe0d08375, 0xadfe0f54, 0x7e02703c, 0x020fbe07, + 0xfbee807e, 0x749bd3ef, 0x4098f880, 0x3cf5e41f, + 0x08123ef5, 0xf00370df, 0x01741280, 0xfb08e5f0, + 0xf50744eb, 0xd2837582, 0xf01044e0, 0xebfb08e5, + 0x82f50944, 0xed9e8375, 0x0744ebf0, 0x837582f5, + 0x12f0edca, 0x83756808, 0x22f0efcc, 0x074408e5, + 0x837582f5, 0xf054e0bc, 0x4408e5f0, 0x7582f507, + 0x54e0be83, 0x08e5f0f0, 0x82f50744, 0xe0c08375, + 0xe5f0f054, 0xf5074408, 0x90f02282, 0xfee02807, + 0x82f5e0a3, 0x8522838e, 0x41854242, 0x40408541, + 0xf52fc074, 0x3e027482, 0x42e583f5, 0x2fe074f0, + 0x027482f5, 0x2283f53e, 0xfd2942e5, 0xe5fc33e4, + 0xec9dc33c, 0x74f88064, 0xf5229880, 0x0790e083, + 0xfd1f5422, 0xe0a3fae0, 0x838a82f5, 0x9022f0ed, + 0xfce02207, 0x82f5e0a3, 0x9022838c, 0xedff2407, + 0xf0cf0744, 0x22f0efa3, 0x85383885, 0x3a853939, + 0x2fc0743a, 0x027482f5, 0x2283f53e, 0xff260790, + 0xcf0744ed, 0xf0efa3f0, 0xa074f022, 0x7482f52f, + 0x83f53e02, 0x25c07422, 0xe482f511, 0x83f50134, + 0x25007422, 0xe482f511, 0x83f50234, 0x25607422, + 0xe482f511, 0x83f50334, 0x25807422, 0xe482f511, + 0x83f50334, 0x25e07422, 0xe482f511, 0x83f50334, + 0x25407422, 0xe482f511, 0x83f50634, 0x2f807422, + 0x027482f5, 0x2283f53e, 0x82e583f5, 0x82f50744, + 0x22f040e5, 0x11254074, 0x34e482f5, 0x2283f502, + 0x1125c074, 0x34e482f5, 0x2283f503, 0x11250074, + 0x34e482f5, 0x2283f506, 0x11252074, 0x34e482f5, + 0x2283f506, 0xedfd08e5, 0x82f50744, 0xf041e522, + 0x016465e5, 0x7e226445, 0x007afb00, 0x22007cfd, + 0x11252074, 0x34e482f5, 0xa0742202, 0x82f51125, + 0x220334e4, 0x007e08af, 0xf50744ef, 0x3e852282, + 0x413f8542, 0x8522408f, 0x3d85423c, 0x22408f41, + 0x903f4575, 0xf0e42007, 0x83f522a3, 0x05f032e5, + 0xc36ee56e, 0xf0224094, 0x064408e5, 0x742282f5, + 0xf56e2500, 0x0034e482, 0xe52283f5, 0x906c456d, + 0xe4222f07, 0xd33ce5f9, 0x74223e95, 0x82f52e80, + 0xf50234e4, 0x7422e083, 0x82f52ea0, 0xf50234e4, + 0x7422e083, 0xf56e2580, 0x0034e482, 0xfd422522, + 0x22fc33e4, 0x85424285, 0x40854141, 0x4ced2240, + 0x09020360, 0x704eeff2, 0x26079037, 0xe0960712, + 0xd90712fd, 0x0790f0ed, 0x96071228, 0x0712fde0, + 0x12f0ede5, 0x54e09307, 0x0812fd1f, 0xed83f584, + 0x240790f0, 0xe0960712, 0x12fd1f54, 0xf0ed3808, + 0x4e0464ef, 0x07903770, 0x96071226, 0x0712fde0, + 0x90f0edf1, 0x07122807, 0x12fde096, 0xf0edfd07, + 0xe0930712, 0x12fd1f54, 0x83f58e08, 0x0790f0ed, + 0x96071224, 0xfd1f54e0, 0xed440812, 0x0164eff0, + 0x7d04704e, 0x7d028001, 0x0264ef00, 0x7f04704e, + 0x7f028001, 0x604def00, 0x26079078, 0xe0420712, + 0x090812ff, 0x3e0712ef, 0x0812ffe0, 0x90f0ef15, + 0x07122207, 0x1f54e042, 0x500812ff, 0x0790f0ef, + 0x42071224, 0xff1f54e0, 0xef5c0812, 0x071222f0, + 0x12f0e4d9, 0xf0e4e507, 0xf5840812, 0x12f0e483, + 0x14743808, 0xf10712f0, 0x0712f0e4, 0x12f0e4fd, + 0x83f58e08, 0x0812f0e4, 0xf0147444, 0xe4090812, + 0x150812f0, 0x0812f0e4, 0x12f0e450, 0x14745c08, + 0x648c22f0, 0x668a658d, 0xf5e4678b, 0x704eef69, + 0x161d0203, 0xe568f5e4, 0x70664567, 0x37071232, + 0xe4908375, 0x75360712, 0x12e4c283, 0x83753607, + 0x0812e4c4, 0x12297073, 0x83753707, 0x0712e492, + 0xc6837536, 0x360712e4, 0xe4c88375, 0x901180f0, + 0x07122607, 0x0812e442, 0x12057073, 0xf0e43f07, + 0x12161d12, 0x67e5801e, 0x33706645, 0x75370712, + 0x41e59083, 0x75360712, 0x41e5c283, 0x75360712, + 0x0812c483, 0x12297071, 0x83753707, 0x1240e592, + 0x83753607, 0x1240e5c6, 0x83753607, 0x900e80c8, + 0x07122607, 0x71081242, 0x07120670, 0xf040e53f, + 0x007e69af, 0x66ac67ad, 0x12490412, 0x83753707, + 0x94d3e0ca, 0x050c5000, 0xc368e568, 0x03500594, + 0x224b0a02, 0x75f7f953, 0xf5e410fc, 0x30fe75fd, + 0xf943fff5, 0x20e6e508, 0xff780be7, 0xfdd8f6e4, + 0x80fee653, 0xe4087809, 0x53fdd8f6, 0x8175fee6, + 0xa8f5e480, 0xa9c2a8d2, 0xe2e5afd2, 0x2005e520, + 0x038002e6, 0xe502e143, 0x0ee020e2, 0x7f000090, + 0xe4087e00, 0xfcdfa3f0, 0x0b02fade, 0x01fa43b5, + 0xf0c0e0c0, 0x82c083c0, 0x1112d0c0, 0xd0d0d018, + 0xd083d082, 0x53e0d0f0, 0x0232fefa, 0x93e4d51a, + 0x93e4f8a3, 0xdf08f6a3, 0xe42980f9, 0x54f8a393, + 0xc80c2407, 0x54c433c3, 0xc820440f, 0xf4044083, + 0x46018056, 0x80e4dff6, 0x0402010b, 0x40201008, + 0xff0f9080, 0x93017ee4, 0xffa3c160, 0xe5303f54, + 0xfe1f5409, 0x60a393e4, 0x54cf0e01, 0x60e025c0, + 0x80b840ad, 0x8d608cfe, 0xe7081261, 0x0d402074, + 0x7482f52f, 0x83f53e03, 0x80f03ee5, 0x82f52f0b, + 0xf53e0374, 0xf03ce583, 0x95d33ce5, 0xe53c403e, + 0x70604561, 0x0912e910, 0x123ee511, 0x3b407507, + 0x80a20812, 0xc33ee518, 0x1d403895, 0xe5383e85, + 0x8505603e, 0x0380393f, 0x8f393985, 0x2108123a, + 0x07123ee5, 0xf03fe5cd, 0xe5438022, 0x70604561, + 0x6c071219, 0x08120540, 0x122780ab, 0x08121809, + 0x1242e521, 0x41e5cd07, 0x3ce522f0, 0x403895c3, + 0x383c851d, 0x05603ce5, 0x80393d85, 0x39398503, + 0x08123a8f, 0x123ce521, 0x3de5cd07, 0x388522f0, + 0x39398538, 0x123a3a85, 0x38e52108, 0xe5cd0712, + 0x7f22f039, 0xb3161206, 0x12e41c12, 0x0e12b70e, + 0x0a44e0e6, 0xfe8e74f0, 0x12b70e12, 0xf0efbe0e, + 0xe53028e5, 0x0180d303, 0x750540c3, 0x03802014, + 0x12081475, 0x8375b70e, 0xf014e58a, 0x7505ffb4, + 0x06808012, 0x13c314e5, 0xf5e412f5, 0x127ff516, + 0x1312b818, 0xc30ae5a3, 0x09500194, 0x16e51605, + 0x401494c3, 0x20e4e5ea, 0x0e1228e7, 0xd28375b7, + 0xd30854e0, 0x04400094, 0x0280017f, 0x0ae5007f, + 0x400194c3, 0x80017e04, 0xef007e02, 0x1203605e, + 0x7fe5981d, 0x401194c3, 0xb70e1214, 0xe0d28375, + 0xe5f08044, 0x0fe720e4, 0x80981d12, 0xb70e120a, + 0xe0d28375, 0x12f07f54, 0x7422e41c, 0x82088580, + 0x17e583f5, 0xed0e12f0, 0x0790f0e4, 0x0e12e002, + 0x908375ca, 0x9274f0ef, 0x4408e5fe, 0x82f5ff07, + 0x54e0838e, 0x0790fdc0, 0x3f54e003, 0x8e828f4d, + 0x0790f083, 0x0e12e004, 0x828375ca, 0x0790f0ef, + 0xedffe005, 0x82f50744, 0xefb48375, 0x75b60e12, + 0x54e08083, 0x3730f0bf, 0x440f120a, 0xe0948375, + 0x30f08044, 0x0f120a38, 0x92837544, 0xf08044e0, + 0xe43028e5, 0x0a39201a, 0x75b70e12, 0x54e08883, + 0x3a20f07f, 0xb70e120a, 0xe0888375, 0x74f0bf54, + 0x0e12fe8c, 0xe0838eb7, 0x0e120f54, 0x868375b6, + 0xf0bf54e0, 0x064408e5, 0x75b00e12, 0xf0e48a83, + 0x704eef22, 0xd9071226, 0x0790fde0, 0x88071226, + 0xe0e50712, 0x280790fd, 0x12880712, 0x07128408, + 0x3808127f, 0x240790e0, 0xef850712, 0x704e0464, + 0xf1071229, 0x0790fde0, 0x88071226, 0xe0fd0712, + 0x280790fd, 0x12880712, 0x07128e08, 0x4408127f, + 0xfd1f54e0, 0x12240790, 0x64ef8807, 0x04704e01, + 0x0280017d, 0x64ef007d, 0x04704e02, 0x0280017f, + 0x4def007f, 0x08123560, 0x90ffe009, 0x07122607, + 0x12f0ef96, 0xffe01508, 0x12280790, 0xf0ef9607, + 0xe0500812, 0x12ff1f54, 0xf0ef9307, 0xe05c0812, + 0x90ff1f54, 0x07122407, 0x22f0ef96, 0x837582f5, + 0xe5f0e482, 0xf5074408, 0x838e2282, 0x5410f5e0, + 0x10e5f0fe, 0xe5ff0144, 0x44edfd08, 0x2282f507, + 0x54c415e5, 0x08e5ff07, 0x0844edfd, 0x837582f5, + 0x83752282, 0x4044e080, 0x4408e5f0, 0x7582f508, + 0xe5228a83, 0x25e02516, 0xf52f24e0, 0x1a34e482, + 0x93e483f5, 0x43220df5, 0xe14310e1, 0xfde15380, + 0x2210e185, 0xe02516e5, 0x3224e025, 0x34e482f5, + 0xe483f51a, 0x55852293, 0x83548582, 0x22f015e5, + 0x2054e2e5, 0x220094d3, 0x4054e2e5, 0x220094d3, + 0x064408e5, 0xfd2282f5, 0xebfb08e5, 0x82f50744, + 0x53f5e422, 0x40340f12, 0x80017f04, 0x12007f02, + 0x04403c0f, 0x0280017e, 0x4fee007e, 0x0f020370, + 0x10e185f7, 0x5302e143, 0xe1850fe1, 0x51f5e410, + 0x3f54e3e5, 0x0f1252f5, 0xad1d403c, 0x1251af52, + 0x60efb01c, 0x10e18508, 0x8040e143, 0xbfe1530b, + 0x120b0f12, 0xfb800600, 0x3f54e3e5, 0xe4e551f5, + 0x52f53f54, 0x40340f12, 0xaf52ad1d, 0xb01c1251, + 0x850860ef, 0xe14310e1, 0x530b8020, 0x0f12dfe1, + 0x0600120b, 0x0f12fb80, 0x7f044034, 0x7f028001, + 0x3c0f1200, 0x017e0440, 0x007e0280, 0x03604fee, + 0x220e0f12, 0x01001f01, 0x00002003, 0x02001102, + 0x10024010, 0x00000090, 0x00000000, 0x1f011f01, + 0x1257f5e4, 0x15123f16, 0x1012e4c6, 0xb7141256, + 0x12260790, 0x12e44207, 0xf0e43e07, 0x12561012, + 0x0790b714, 0x42071226, 0x071241e5, 0xf040e53e, + 0x007e57af, 0x007c56ad, 0xaf490412, 0x02007e56, + 0x90ffee11, 0xe0a32007, 0x56f5e4fd, 0xfcfe40f5, + 0x12fa56ab, 0x0f7f5111, 0xf5e4187d, 0xfe40f556, + 0xfa56abfc, 0xaf411512, 0x12007e56, 0xffe47f1a, + 0x1f7d56f5, 0xfcfe40f5, 0x22fa56ab, 0x55f5e422, + 0x74fd08e5, 0xed56f5a0, 0x57f50744, 0xe53028e5, + 0x0180d303, 0x7f0540c3, 0x0480ef28, 0xc3ef147f, + 0xe454f513, 0xcb0e12f9, 0xe08e8375, 0xefce10f5, + 0x94d3eece, 0xe5264000, 0x12fe5410, 0x83754b0f, + 0xe5f0ed8e, 0xfd014410, 0xf50744eb, 0x85f0ed82, + 0x56858257, 0xe330e083, 0x801e0901, 0xe934c2d4, + 0x405495c3, 0x2234d202, 0x00000f22, 0x90113030, + 0x93e40010, 0x109010f5, 0xf593e410, 0x90101210, + 0x22501112, 0xe730e2e5, 0x0310120e, 0x303030c2, + 0xfc101203, 0xe5213320, 0x2094c3fe, 0xf9530950, + 0x30fe75f7, 0xe508f943, 0x03e730f2, 0xe57ff953, + 0xd37054f1, 0xdf500094, 0x00000022, 0x8f588e22, + 0x8d5a8c59, 0x8b5c8a5b, 0x015e755d, 0xf55ff5e4, + 0x1262f560, 0x83753707, 0xc4ffe0d0, 0x61f50f54, + 0x85661e12, 0xe5d35e59, 0xe55b955e, 0x7807125a, + 0x07124b50, 0xbc837510, 0x125e45e0, 0x83753607, + 0x5e45e0be, 0x75360712, 0x45e0c083, 0x5faff05e, + 0x081260e5, 0x360a127b, 0x007e62af, 0x5cac5dad, + 0xe5490412, 0x7e5eaf61, 0x0503b400, 0x80e21d12, + 0xac5dad07, 0x1713125c, 0x11025e05, 0x1007127a, + 0xe0bc8375, 0x07124045, 0xbe837536, 0x124045e0, + 0x83753607, 0x4045e0c0, 0x588e22f0, 0x5a75598f, + 0x75017901, 0xfbe4015b, 0x75370712, 0x54e0ae83, + 0x0812ff1a, 0x13c4e068, 0xeffe0754, 0x65ee0c70, + 0x90077035, 0xb4e02f07, 0x35af0d01, 0x0e12007e, + 0xcfebcf05, 0xe5211e02, 0x45026459, 0x7f047058, + 0x7f028001, 0x4559e500, 0x7e047058, 0x7e028001, + 0x604fee00, 0x49418523, 0xe54b4085, 0x70584559, + 0xfe5aaf2c, 0xfccde9cd, 0x58aa59ab, 0xaf360a12, + 0x12007e5b, 0x1580211e, 0x007e5baf, 0x90211e12, + 0x07122607, 0x1249e542, 0x4be53e07, 0xaffde4f0, + 0x12fcfe35, 0x8c222209, 0x12658d64, 0x3c40e708, + 0x644565e5, 0x09121070, 0x3ee5c311, 0x40760712, + 0xa208123b, 0x3ee51880, 0x403895c3, 0x383e851d, + 0x05603ee5, 0x80393f85, 0x39398503, 0x07123a8f, + 0x123ee5b5, 0x3fe56007, 0x3b8022f0, 0x644565e5, + 0x07121170, 0x1205406c, 0x1f80ab08, 0xe54b0712, + 0xe522f041, 0x3895c33c, 0x3c851d40, 0x603ce538, + 0x393d8505, 0x39850380, 0x123a8f39, 0x3ce5b507, + 0xe5600712, 0x1222f03d, 0x38e5ac07, 0xe5600712, + 0x8c22f039, 0x12648d63, 0x3c40e708, 0x634564e5, + 0x09121070, 0x3ee5c311, 0x40760712, 0xa208123b, + 0x3ee51880, 0x403895c3, 0x383e851d, 0x05603ee5, + 0x80393f85, 0x39398503, 0x07123a8f, 0x123ee5b5, + 0x3fe56007, 0x3b8022f0, 0x634564e5, 0x07121170, + 0x1205406c, 0x1f80ab08, 0xe54b0712, 0xe522f041, + 0x3895c33c, 0x3c851d40, 0x603ce538, 0x393d8505, + 0x39850380, 0x123a8f39, 0x3ce5b507, 0xe5600712, + 0x1222f03d, 0x38e5ac07, 0xe5600712, 0xe522f039, + 0x08e5fe0d, 0x0544548e, 0x157555f5, 0x1282f50f, + 0x17122d0f, 0x05312025, 0x80031575, 0x0b157503, + 0x94c30ae5, 0x12385001, 0x31202014, 0x05150506, + 0x15048015, 0xe5151515, 0x0194c30a, 0x14122150, + 0x04312020, 0x02801505, 0x0ae51515, 0x500194c3, + 0x2a0f120e, 0x20251712, 0x15050531, 0xe52a0f12, + 0x0408b415, 0x0280017f, 0x15e5007f, 0x7e0407b4, + 0x7e028001, 0x604fee00, 0x227f0502, 0x85825585, + 0x15e58354, 0x251712f0, 0x37071222, 0x74ae8375, + 0x360712ff, 0xf51a54e0, 0x13c4e034, 0x35f50754, + 0x2460fe24, 0x3c60fe24, 0x63700424, 0xe52d3175, + 0xb674fd08, 0x749f0712, 0x220790bc, 0x74a20712, + 0xc0071290, 0x3c809274, 0xe53a3175, 0xba74fd08, + 0x749f0712, 0x220790c0, 0x74c30712, 0xc00712c4, + 0x2080c874, 0xe5353175, 0xb874fd08, 0x749f0712, + 0x44edffbe, 0x22079007, 0xefa3f0cf, 0x12c274f0, + 0xc674c007, 0x0744edff, 0xa3f0cfa3, 0x7522f0ef, + 0x8e220134, 0x8c598f58, 0x8a5b8d5a, 0x755d8b5c, + 0xf5e4015e, 0x661e125f, 0xd35e5985, 0x5b955ee5, + 0x07125ae5, 0xe5575078, 0x705c455d, 0x37071230, + 0xe5928375, 0x3607125e, 0xe5c68375, 0x3607125e, + 0xe5c88375, 0x3607125e, 0xe5908375, 0x3607125e, + 0xe5c28375, 0x3607125e, 0x80c48375, 0x3f071203, + 0xaff05ee5, 0xad007e5f, 0x125cac5d, 0x5eaf4904, + 0x5dad007e, 0x0b125cac, 0x025e05d9, 0x5dabcf14, + 0x5bad5caa, 0x59af5aac, 0x1b0258ae, 0x8d5c8c7b, + 0x8b5e8a5d, 0x0160755f, 0xf561f5e4, 0x1263f562, + 0x608f661e, 0x9560e5d3, 0x125ce55d, 0x61507807, + 0x5e455fe5, 0x07122770, 0xb6837537, 0x071260e5, + 0xb8837536, 0x071260e5, 0xba837536, 0xaff060e5, + 0xe5007e61, 0x7d081262, 0x80360a12, 0x24079019, + 0xe5420712, 0x36071260, 0xe48e8375, 0x74360712, + 0x36071201, 0x63aff0e4, 0x5fad007e, 0x04125eac, + 0x7e60af49, 0xac5fad00, 0x8b12125e, 0x15026005, + 0xf5e42258, 0xaf59f558, 0x0744ef08, 0x837582f5, + 0xc4fde0d0, 0x5af50f54, 0xf50744ef, 0x80837582, + 0x12f00174, 0x83759a08, 0xf045e582, 0xf50744ef, + 0x8a837582, 0x12f0ff74, 0x07127419, 0xbc837537, + 0x12ef54e0, 0x83753607, 0xef54e0be, 0x75360712, + 0x54e0c083, 0x360712ef, 0xe0bc8375, 0x07121044, + 0xbe837536, 0x121044e0, 0x83753607, 0x1044e0c0, + 0xe558aff0, 0x7b081259, 0xe4360a02, 0x017d58f5, + 0x35af59f5, 0x0912fcfe, 0x37071222, 0x74b68375, + 0x36071210, 0x74b88375, 0x36071210, 0x74ba8375, + 0x36071210, 0x74bc8375, 0x36071210, 0x74be8375, + 0x36071210, 0x74c08375, 0x36071210, 0xe4908375, + 0x75360712, 0x12e4c283, 0x83753607, 0x0712e4c4, + 0x92837536, 0x360712e4, 0xe4c68375, 0x75360712, + 0xf0e4c883, 0xe5fe58af, 0x7d081259, 0xe5360a02, + 0x6ce430e2, 0xc054e7e5, 0x64704064, 0x54c409e5, + 0x08e5fe30, 0xe025e025, 0xfe4ec054, 0x4e3f54ef, + 0xae2be5fd, 0xc302782a, 0xce33ce33, 0x82f5f9d8, + 0xf0ed838e, 0x2aae2be5, 0x33c30278, 0xd8ce33ce, + 0x82f5fff9, 0xe5a3838e, 0x828ff0fe, 0xa3a3838e, + 0x8ff0fde5, 0xa3838e82, 0xfce5a3a3, 0x2be5c3f0, + 0x2ae5fa94, 0x08500094, 0x2be52b05, 0x2a050270, + 0xe4ffe422, 0x56f558f5, 0x827457f5, 0xb70e12fc, + 0xf5e0838c, 0xf07f5410, 0x804410e5, 0xed4b0f12, + 0x120a7ef0, 0x8375b70e, 0xe020e0a0, 0x05f4de26, + 0x7057e557, 0xe5560502, 0xfd012414, 0xd3fc33e4, + 0xe59d57e5, 0xd9409c56, 0x20940ae5, 0x0a050250, + 0xc208e143, 0xb70e1231, 0xe0a68375, 0x12651255, + 0x31d20370, 0x2231c222, 0xe0260790, 0xf5e0a3fa, + 0xe0838a82, 0x39e541f5, 0x404195c3, 0x9539e526, + 0xee9fc341, 0x40780712, 0x80017c04, 0xe5007c02, + 0x603f6441, 0x80017b04, 0xec007b02, 0x0529605b, + 0xc3288041, 0x399541e5, 0x12ee9fc3, 0x04407807, + 0x0280017f, 0x41e5007f, 0x017e0460, 0x007e0280, + 0x04605eef, 0x03804115, 0x85413985, 0xe522403a, + 0x60e430e2, 0xe230e1e5, 0x7009e55b, 0x80017f04, + 0xe5007f02, 0x7e047008, 0x7e028001, 0x605fee00, + 0xf8f95343, 0xe430e2e5, 0x30e1e53b, 0xfa432ee2, + 0xfbfa5302, 0x9010f5e4, 0x10e57094, 0x30e1e5f0, + 0x9490e7e2, 0x1065e070, 0xfa430360, 0x90100504, + 0x10e57094, 0x12e670f0, 0xe1800600, 0x53fdfa53, + 0xc080fbfa, 0x12548f22, 0xe1e50600, 0x7f04e030, + 0x7f028001, 0xd37ee500, 0x04400594, 0x0280017e, + 0x4fee007e, 0x54853d60, 0x20e2e511, 0xce7432e1, + 0x303c1b12, 0x017d04e7, 0x007d0280, 0x838e828f, + 0x04e630e0, 0x0280017f, 0x5def007f, 0x1c121570, + 0x12ce7467, 0xe6303c1b, 0x8044e007, 0x80f943f0, + 0x22f31712, 0xe5f70e12, 0x25e02516, 0xf53024e0, + 0x1a34e482, 0x93e483f5, 0x16e50ff5, 0xe025e025, + 0x82f53124, 0xf51a34e4, 0xf593e483, 0x180f120e, + 0x0fe510f5, 0x0e12f054, 0x8c8375ca, 0x0fe5f0ef, + 0x120ce030, 0x8375b70e, 0x4044e086, 0x120a80f0, + 0x8375b70e, 0xbf54e086, 0x440f12f0, 0xe5828375, + 0x7f22f00e, 0xb3161205, 0x12b70e12, 0x0274e60e, + 0xfe8e74f0, 0x12b70e12, 0xf0efbe0e, 0x12701575, + 0x34208a1e, 0x10157505, 0x15750380, 0x8a1e1250, + 0x74043420, 0x74028010, 0xf51525f0, 0xd40e1215, + 0x1012f0ef, 0x17342091, 0x306415e5, 0x10740c60, + 0x15f51525, 0xe40380b4, 0x0e1215f5, 0x22f0efd4, + 0x2a0790e4, 0x12f0a3f0, 0x83753707, 0x7f54e082, + 0xe0360712, 0x12f08044, 0x08123d00, 0xa0837598, + 0x1ae020e0, 0xe02b0790, 0x0670f004, 0xe02a0790, + 0x0790f004, 0x10b4e02a, 0xb4e0a3e1, 0x44eedc00, + 0x44effca6, 0x8c82f507, 0x32f5e083, 0xfea844ee, + 0xf50744ef, 0xe0838e82, 0x122233f5, 0x83759808, + 0x54c4e0d0, 0x4375fd0f, 0xff447501, 0x74b70812, + 0x3b75f004, 0x6014ed01, 0x0b60140c, 0x240f6014, + 0x800b7003, 0x12008009, 0xf004b408, 0x08120680, + 0xf00474b4, 0xfe8244ee, 0xf50744ef, 0xe5838e82, + 0xcb081245, 0xe5828375, 0x36071231, 0xe0868375, + 0x22f00844, 0x000f1f01, 0x90002003, 0x920f2000, + 0x940f2100, 0x960f2200, 0x980f2300, 0x9a0f2400, + 0x9c0f2500, 0x9e0f2600, 0xa00f2700, 0xa2012001, + 0xa4012101, 0xa6012201, 0xa8012301, 0xaa012401, + 0xac012501, 0xae012601, 0xb0012701, 0xb4012801, + 0xb60f2800, 0xb80f2840, 0xcb012861, 0xeecacbef, + 0xe4017fca, 0x704aebfd, 0xf508e524, 0x12b67482, + 0x08e52c08, 0xb87482f5, 0xe52c0812, 0x7482f508, + 0x2c0812ba, 0x007c007e, 0x80360a12, 0x26079012, + 0xe5420712, 0x0790f041, 0x42071224, 0x12f040e5, + 0x83753707, 0x0712e48e, 0x12017436, 0xf0e43607, + 0x26f5e422, 0xe15327f5, 0x752af5fe, 0x08f5012b, + 0x1612017f, 0x1c3030b3, 0xe4291a90, 0x9010f593, + 0x93e4f91f, 0x009010f5, 0xf593e441, 0xf90f9010, + 0x10f593e4, 0x1612027f, 0x550f12b3, 0x1612037f, + 0x060012b3, 0xe730e2e5, 0x00101209, 0x12033030, + 0x00020011, 0x0be5f047, 0xe025e025, 0x82f58224, + 0xf50734e4, 0x88742283, 0x4408e5fe, 0x82f5ff07, + 0x22e0838e, 0x4408e5f0, 0x2282f507, 0xc054e0f0, + 0x838e828f, 0x44ef22f0, 0x7582f507, 0x54e08683, + 0x0094d310, 0x0790f022, 0xf004e015, 0x44effe22, + 0x8e82f507, 0x8e22e083, 0x12618f60, 0xffe4661e, + 0xeeceedce, 0xe56195d3, 0x78071260, 0x20743940, + 0xe482f52e, 0x83f50334, 0xff0370e0, 0x08122680, + 0x9fc3fdef, 0xedcf1e40, 0x704aebcf, 0x12428d0b, + 0x41f5fb08, 0x0c80408e, 0xf5ef0812, 0xfb081238, + 0x3a8e39f5, 0x22bc801e, 0xe5015875, 0x120c7035, + 0xf5e0d907, 0xe507124a, 0xe54cf5e0, 0x0c04b435, + 0xe0f10712, 0x07124af5, 0x4cf5e0fd, 0x01b435e5, + 0x80017f04, 0xe5007f02, 0x0402b435, 0x0280017e, + 0x4fee007e, 0x08120c60, 0x4af5e009, 0xe0150812, + 0x41854cf5, 0x4b408549, 0x015b7522, 0x12240790, + 0x54e04207, 0x94d3ff1f, 0x8f045002, 0xef058058, + 0x58f5fe24, 0x1894c3ef, 0x59750540, 0xef048018, + 0x8559f504, 0x58af5a43, 0x59ad007e, 0x5bab007c, + 0x1512007a, 0x7e5aaf41, 0x8c171200, 0x007e5baf, + 0x907f1a02, 0x93e4fd10, 0xf02e0790, 0x122d1412, + 0x34e5cf19, 0x07123570, 0xce837537, 0x1313ffe0, + 0xf5075413, 0x240f5436, 0x240b60fe, 0x240a60fe, + 0x02187003, 0x1e026f1d, 0x14101252, 0x1255f5e4, + 0x5505461d, 0x94c355e5, 0x22f44005, 0xedc3fce4, + 0xf5effa9f, 0x00827583, 0x93e4ff79, 0xa3cc6ccc, + 0xf6daf8d9, 0xe430e2e5, 0xede58c02, 0xefffff24, + 0xf5ff8275, 0x6c93e483, 0x017f0370, 0x22007f22, + 0x75b70e12, 0xf0e48083, 0x074408e5, 0x75b00e12, + 0x0e128483, 0x868375b5, 0x75b50e12, 0x54e08c83, + 0xb60e12f3, 0x128e8375, 0x8375b50e, 0xfb54e094, + 0x071222f0, 0x8e837537, 0x360712e4, 0x07120174, + 0x0812e436, 0x8c8375cb, 0x122044e0, 0x54e0cb08, + 0x8474f0df, 0xf5820885, 0x7f54e083, 0x8044e0f0, + 0x567522f0, 0xf5fde401, 0xfe35af57, 0x220912fc, + 0x121d1c12, 0x1b123b1e, 0x7e57afcc, 0x7c56ad00, + 0x49041200, 0x007e56af, 0x75ee1102, 0xfde40156, + 0x35af57f5, 0x0912fcfe, 0x1d1c1222, 0x123b1e12, + 0x57afcc1b, 0x56ad007e, 0x0412007c, 0x7e56af49, + 0xee110200, 0x1216f5e4, 0xe5fef70e, 0xff054408, + 0x8f180f12, 0xf0838e82, 0x16e51605, 0x401494c3, + 0x1208e5e6, 0xf0e4de0e, 0x58f5e422, 0x5af559f5, + 0x58adfeff, 0x220912fc, 0x007e047f, 0x007c58ad, + 0x7f220912, 0xad007e02, 0x02007c58, 0x3ce52209, + 0xe5fc3e25, 0xfb002442, 0xecfa33e4, 0x12ea9bc3, + 0x0b407807, 0x3de5428c, 0x41f53f25, 0x1222408f, + 0x74221809, 0x8518f584, 0x19851908, 0x83188582, + 0xf07f54e0, 0xf08044e0, 0xf08044e0, 0x704eef22, + 0x3707120b, 0xe0d28375, 0x22f0df54, 0x75370712, + 0x44e0d283, 0x7522f020, 0x07900158, 0x42071226, + 0xf53f54e0, 0x3f071241, 0xf53f54e0, 0x56752240, + 0x57f5e402, 0xafbd1d12, 0xad007e57, 0x02007c56, + 0xf5e44904, 0xf541f542, 0xf538f540, 0x223af539, + 0xff0754ef, 0xf854f9e5, 0x22f9f54f, 0xfee4017f, + 0xffbe0e0f, 0x0e1222fb, 0x12f0efd4, 0x00229110, + 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, @@ -16714,7 +17230,7 @@ static const uint32_t isp_2500_risc_code[] = { 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, - 0x00000000, 0x00000000, 0x00000000, 0x000f1f01, - 0xc3002003, 0xb9f6ad13, 0xffffb7ea, 0xffeeae82 + 0x00000000, 0x000f1f01, 0xc3002003, 0xb9f6ad13, + 0xffffb7ea, 0xffee6df3 }; #endif diff --git a/sys/dev/sfxge/sfxge_ev.c b/sys/dev/sfxge/sfxge_ev.c index 1c4afbd..bc2dca7 100644 --- a/sys/dev/sfxge/sfxge_ev.c +++ b/sys/dev/sfxge/sfxge_ev.c @@ -79,6 +79,21 @@ sfxge_ev_qcomplete(struct sfxge_evq *evq, boolean_t eop) sfxge_rx_qcomplete(rxq, eop); } +static struct sfxge_rxq * +sfxge_get_rxq_by_label(struct sfxge_evq *evq, uint32_t label) +{ + struct sfxge_rxq *rxq; + + KASSERT(label == 0, ("unexpected rxq label != 0")); + + rxq = evq->sc->rxq[evq->index]; + + KASSERT(rxq != NULL, ("rxq == NULL")); + KASSERT(evq->index == rxq->index, ("evq->index != rxq->index")); + + return (rxq); +} + static boolean_t sfxge_ev_rx(void *arg, uint32_t label, uint32_t id, uint32_t size, uint16_t flags) @@ -98,11 +113,7 @@ sfxge_ev_rx(void *arg, uint32_t label, uint32_t id, uint32_t size, if (evq->exception) goto done; - rxq = sc->rxq[label]; - KASSERT(rxq != NULL, ("rxq == NULL")); - KASSERT(evq->index == rxq->index, - ("evq->index != rxq->index")); - + rxq = sfxge_get_rxq_by_label(evq, label); if (__predict_false(rxq->init_state != SFXGE_RXQ_STARTED)) goto done; @@ -211,7 +222,7 @@ sfxge_ev_rxq_flush_done(void *arg, uint32_t rxq_index) evq = sc->evq[index]; - label = rxq_index; + label = 0; KASSERT((label & SFXGE_MAGIC_DMAQ_LABEL_MASK) == label, ("(label & SFXGE_MAGIC_DMAQ_LABEL_MASK) != level")); magic = SFXGE_MAGIC_RX_QFLUSH_DONE | label; @@ -245,7 +256,7 @@ sfxge_ev_rxq_flush_failed(void *arg, uint32_t rxq_index) index = rxq->index; evq = sc->evq[index]; - label = rxq_index; + label = 0; KASSERT((label & SFXGE_MAGIC_DMAQ_LABEL_MASK) == label, ("(label & SFXGE_MAGIC_DMAQ_LABEL_MASK) != label")); magic = SFXGE_MAGIC_RX_QFLUSH_FAILED | label; @@ -364,36 +375,18 @@ sfxge_ev_software(void *arg, uint16_t magic) magic &= ~SFXGE_MAGIC_DMAQ_LABEL_MASK; switch (magic) { - case SFXGE_MAGIC_RX_QFLUSH_DONE: { - struct sfxge_rxq *rxq = sc->rxq[label]; - - KASSERT(rxq != NULL, ("rxq == NULL")); - KASSERT(evq->index == rxq->index, - ("evq->index != rxq->index")); - - sfxge_rx_qflush_done(rxq); + case SFXGE_MAGIC_RX_QFLUSH_DONE: + sfxge_rx_qflush_done(sfxge_get_rxq_by_label(evq, label)); break; - } - case SFXGE_MAGIC_RX_QFLUSH_FAILED: { - struct sfxge_rxq *rxq = sc->rxq[label]; - KASSERT(rxq != NULL, ("rxq == NULL")); - KASSERT(evq->index == rxq->index, - ("evq->index != rxq->index")); - - sfxge_rx_qflush_failed(rxq); + case SFXGE_MAGIC_RX_QFLUSH_FAILED: + sfxge_rx_qflush_failed(sfxge_get_rxq_by_label(evq, label)); break; - } - case SFXGE_MAGIC_RX_QREFILL: { - struct sfxge_rxq *rxq = sc->rxq[label]; - - KASSERT(rxq != NULL, ("rxq == NULL")); - KASSERT(evq->index == rxq->index, - ("evq->index != rxq->index")); - sfxge_rx_qrefill(rxq); + case SFXGE_MAGIC_RX_QREFILL: + sfxge_rx_qrefill(sfxge_get_rxq_by_label(evq, label)); break; - } + case SFXGE_MAGIC_TX_QFLUSH_DONE: { struct sfxge_txq *txq = sfxge_get_txq_by_label(evq, label); diff --git a/sys/dev/sfxge/sfxge_rx.c b/sys/dev/sfxge/sfxge_rx.c index 0d8398f..7b3228d 100644 --- a/sys/dev/sfxge/sfxge_rx.c +++ b/sys/dev/sfxge/sfxge_rx.c @@ -1034,7 +1034,7 @@ sfxge_rx_qstart(struct sfxge_softc *sc, unsigned int index) return (rc); /* Create the common code receive queue. */ - if ((rc = efx_rx_qcreate(sc->enp, index, index, EFX_RXQ_TYPE_DEFAULT, + if ((rc = efx_rx_qcreate(sc->enp, index, 0, EFX_RXQ_TYPE_DEFAULT, esmp, sc->rxq_entries, rxq->buf_base_id, evq->common, &rxq->common)) != 0) goto fail; diff --git a/sys/dev/usb/quirk/usb_quirk.c b/sys/dev/usb/quirk/usb_quirk.c index 7be2530..3fddd66 100644 --- a/sys/dev/usb/quirk/usb_quirk.c +++ b/sys/dev/usb/quirk/usb_quirk.c @@ -136,6 +136,8 @@ static struct usb_quirk_entry usb_quirks[USB_DEV_QUIRKS_MAX] = { USB_QUIRK(CORSAIR, K60, 0x0000, 0xffff, UQ_KBD_BOOTPROTO), /* Quirk for Corsair Vengeance K70 keyboard */ USB_QUIRK(CORSAIR, K70, 0x0000, 0xffff, UQ_KBD_BOOTPROTO), + /* Quirk for Corsair STRAFE Gaming keyboard */ + USB_QUIRK(CORSAIR, STRAFE, 0x0000, 0xffff, UQ_KBD_BOOTPROTO), /* umodem(4) device quirks */ USB_QUIRK(METRICOM, RICOCHET_GS, 0x100, 0x100, UQ_ASSUME_CM_OVER_DATA), USB_QUIRK(SANYO, SCP4900, 0x000, 0x000, UQ_ASSUME_CM_OVER_DATA), @@ -529,6 +531,9 @@ static struct usb_quirk_entry usb_quirks[USB_DEV_QUIRKS_MAX] = { /* DYMO LabelManager Pnp */ USB_QUIRK(DYMO, LABELMANAGERPNP, 0x0000, 0xffff, UQ_MSC_DYMO_EJECT), + + /* Holtek USB gaming keyboard */ + USB_QUIRK(HOLTEK, F85, 0x0000, 0xffff, UQ_KBD_BOOTPROTO), }; #undef USB_QUIRK_VP #undef USB_QUIRK diff --git a/sys/dev/usb/usbdevs b/sys/dev/usb/usbdevs index 83d41e6..a53e15b 100644 --- a/sys/dev/usb/usbdevs +++ b/sys/dev/usb/usbdevs @@ -1509,6 +1509,7 @@ product COREGA FETHER_USB_TXC 0x9601 FEther USB-TXC /* Corsair products */ product CORSAIR K60 0x0a60 Corsair Vengeance K60 keyboard product CORSAIR K70 0x1b09 Corsair Vengeance K70 keyboard +product CORSAIR STRAFE 0x1b15 Cossair STRAFE Gaming keyboard /* Creative products */ product CREATIVE NOMAD_II 0x1002 Nomad II MP3 player @@ -2266,6 +2267,9 @@ product HIDGLOBAL CM6020 0x1784 Omnikey Cardman 6020 product HITACHI DVDCAM_DZ_MV100A 0x0004 DVD-CAM DZ-MV100A Camcorder product HITACHI DVDCAM_USB 0x001e DVDCAM USB HS Interface +/* Holtek products */ +product HOLTEK F85 0xa030 Holtek USB gaming keyboard + /* HP products */ product HP 895C 0x0004 DeskJet 895C product HP 4100C 0x0101 Scanjet 4100C diff --git a/sys/dev/wbwd/wbwd.c b/sys/dev/wbwd/wbwd.c index 484b5bf..75fbea4 100644 --- a/sys/dev/wbwd/wbwd.c +++ b/sys/dev/wbwd/wbwd.c @@ -91,8 +91,11 @@ __FBSDID("$FreeBSD$"); #define WB_LDN8_CRF7_FORCE 0x20 /* 1: force timeout (self-clear) */ #define WB_LDN8_CRF7_TS 0x10 /* 0: counting, 1: fired */ #define WB_LDN8_CRF7_IRQS 0x0f /* irq source for watchdog, 2 == SMI */ -#define WB_LDN8_CRF7_CLEAR_MASK \ - (WB_LDN8_CRF7_MOUSE|WB_LDN8_CRF7_KEYB|WB_LDN8_CRF7_TS|WB_LDN8_CRF7_IRQS) + +enum chips { w83627hf, w83627s, w83697hf, w83697ug, w83637hf, w83627thf, + w83687thf, w83627ehf, w83627dhg, w83627uhg, w83667hg, + w83627dhg_p, w83667hg_b, nct6775, nct6776, nct6779, nct6791, + nct6792, nct6102 }; struct wb_softc { device_t dev; @@ -103,6 +106,10 @@ struct wb_softc { eventhandler_tag ev_tag; int (*ext_cfg_enter_f)(struct wb_softc *, u_short); void (*ext_cfg_exit_f)(struct wb_softc *, u_short); + enum chips chip; + uint8_t ctl_reg; + uint8_t time_reg; + uint8_t csr_reg; int debug_verbose; /* @@ -144,46 +151,104 @@ struct winbond_superio_cfg { }; struct winbond_vendor_device_id { - uint16_t vendor_id; uint8_t device_id; - uint8_t device_rev; + enum chips chip; const char * descr; } wb_devs[] = { { - .vendor_id = 0x5ca3, .device_id = 0x52, - .device_rev = 0x17, - .descr = "Winbond 83627HF/F/HG/G Rev. G", + .chip = w83627hf, + .descr = "Winbond 83627HF/F/HG/G", }, { - .vendor_id = 0x5ca3, - .device_id = 0x52, - .device_rev = 0x3a, - .descr = "Winbond 83627HF/F/HG/G Rev. J", + .device_id = 0x59, + .chip = w83627s, + .descr = "Winbond 83627S", }, { - .vendor_id = 0x5ca3, - .device_id = 0x52, - .device_rev = 0x41, - .descr = "Winbond 83627HF/F/HG/G Rev. UD-A", + .device_id = 0x60, + .chip = w83697hf, + .descr = "Winbond 83697HF", + }, + { + .device_id = 0x68, + .chip = w83697ug, + .descr = "Winbond 83697UG", + }, + { + .device_id = 0x70, + .chip = w83637hf, + .descr = "Winbond 83637HF", + }, + { + .device_id = 0x82, + .chip = w83627thf, + .descr = "Winbond 83627THF", + }, + { + .device_id = 0x85, + .chip = w83687thf, + .descr = "Winbond 83687THF", + }, + { + .device_id = 0x88, + .chip = w83627ehf, + .descr = "Winbond 83627EHF", }, { - .vendor_id = 0x5ca3, .device_id = 0xa0, - .device_rev = 0x25, - .descr = "Winbond 83627DHG IC ver. 5", + .chip = w83627dhg, + .descr = "Winbond 83627DHG", + }, + { + .device_id = 0xa2, + .chip = w83627uhg, + .descr = "Winbond 83627UHG", + }, + { + .device_id = 0xa5, + .chip = w83667hg, + .descr = "Winbond 83667HG", }, { - .vendor_id = 0x5ca3, .device_id = 0xb0, - .device_rev = 0x73, - .descr = "Winbond 83627DHG-P", + .chip = w83627dhg_p, + .descr = "Winbond 83627DHG-P", + }, + { + .device_id = 0xb3, + .chip = w83667hg_b, + .descr = "Winbond 83667HG-B", + }, + { + .device_id = 0xb4, + .chip = nct6775, + .descr = "Nuvoton NCT6775", }, { - .vendor_id = 0x5ca3, .device_id = 0xc3, - .device_rev = 0x33, - .descr = "Nuvoton WPCM450RA0BX", + .chip = nct6776, + .descr = "Nuvoton NCT6776", + }, + { + .device_id = 0xc4, + .chip = nct6102, + .descr = "Nuvoton NCT6102", + }, + { + .device_id = 0xc5, + .chip = nct6779, + .descr = "Nuvoton NCT6779", + }, + { + .device_id = 0xc8, + .chip = nct6791, + .descr = "Nuvoton NCT6791", + }, + { + .device_id = 0xc9, + .chip = nct6792, + .descr = "Nuvoton NCT6792", }, }; @@ -231,6 +296,22 @@ read_efdr_1(struct wb_softc *sc, u_short baseport) return (inb(baseport + 1)); } +static void +write_reg(struct wb_softc *sc, uint8_t reg, uint8_t value) +{ + + write_efir_1(sc, 0, reg); + write_efdr_1(sc, 0, value); +} + +static uint8_t +read_reg(struct wb_softc *sc, uint8_t reg) +{ + + write_efir_1(sc, 0, reg); + return (read_efdr_1(sc, 0)); +} + /* * Return the watchdog related registers as we last read them. This will * usually not give the current timeout or state on whether the watchdog @@ -248,9 +329,9 @@ sysctl_wb_debug(SYSCTL_HANDLER_ARGS) sbuf_new_for_sysctl(&sb, NULL, 64, req); sbuf_printf(&sb, "LDN8 (GPIO2, Watchdog): "); - sbuf_printf(&sb, "CRF5 0x%02x ", sc->reg_1); - sbuf_printf(&sb, "CRF6 0x%02x ", sc->reg_timeout); - sbuf_printf(&sb, "CRF7 0x%02x", sc->reg_2); + sbuf_printf(&sb, "CR%02X 0x%02x ", sc->ctl_reg, sc->reg_1); + sbuf_printf(&sb, "CR%02X 0x%02x ", sc->time_reg, sc->reg_timeout); + sbuf_printf(&sb, "CR%02X 0x%02x", sc->csr_reg, sc->reg_2); error = sbuf_finish(&sb); sbuf_delete(&sb); @@ -269,23 +350,17 @@ sysctl_wb_debug_current(SYSCTL_HANDLER_ARGS) sc = arg1; - /* - * Enter extended function mode in case someone else has been - * poking on the registers. We will not leave it though. - */ if ((*sc->ext_cfg_enter_f)(sc, 0) != 0) return (ENXIO); /* Watchdog is configured as part of LDN 8 (GPIO Port2, Watchdog). */ - write_efir_1(sc, 0, WB_LDN_REG); - write_efdr_1(sc, 0, WB_LDN_REG_LDN8); + write_reg(sc, WB_LDN_REG, WB_LDN_REG_LDN8); - write_efir_1(sc, 0, WB_LDN8_CRF5); - sc->reg_1 = read_efdr_1(sc, 0); - write_efir_1(sc, 0, WB_LDN8_CRF6); - sc->reg_timeout = read_efdr_1(sc, 0); - write_efir_1(sc, 0, WB_LDN8_CRF7); - sc->reg_2 = read_efdr_1(sc, 0); + sc->reg_1 = read_reg(sc, sc->ctl_reg); + sc->reg_timeout = read_reg(sc, sc->time_reg); + sc->reg_2 = read_reg(sc, sc->csr_reg); + + (*sc->ext_cfg_exit_f)(sc, 0); return (sysctl_wb_debug(oidp, arg1, arg2, req)); } @@ -326,10 +401,6 @@ sysctl_wb_force_test_nmi(SYSCTL_HANDLER_ARGS) } #endif - /* - * Enter extended function mode in case someone else has been - * poking on the registers. We will not leave it though. - */ if ((*sc->ext_cfg_enter_f)(sc, 0) != 0) return (ENXIO); @@ -343,16 +414,14 @@ sysctl_wb_force_test_nmi(SYSCTL_HANDLER_ARGS) #endif /* Watchdog is configured as part of LDN 8 (GPIO Port2, Watchdog). */ - write_efir_1(sc, 0, WB_LDN_REG); - write_efdr_1(sc, 0, WB_LDN_REG_LDN8); + write_reg(sc, WB_LDN_REG, WB_LDN_REG_LDN8); /* Force watchdog to fire. */ - write_efir_1(sc, 0, WB_LDN8_CRF7); - sc->reg_2 = read_efdr_1(sc, 0); + sc->reg_2 = read_reg(sc, sc->csr_reg); sc->reg_2 |= WB_LDN8_CRF7_FORCE; + write_reg(sc, sc->csr_reg, sc->reg_2); - write_efir_1(sc, 0, WB_LDN8_CRF7); - write_efdr_1(sc, 0, sc->reg_2); + (*sc->ext_cfg_exit_f)(sc, 0); return (0); } @@ -414,51 +483,36 @@ static int wb_set_watchdog(struct wb_softc *sc, unsigned int timeout) { + if (timeout != 0) { + /* + * In case an override is set, let it override. It may lead + * to strange results as we do not check the input of the sysctl. + */ + if (sc->timeout_override > 0) + timeout = sc->timeout_override; + + /* Make sure we support the requested timeout. */ + if (timeout > 255 * 60) + return (EINVAL); + } + if (sc->debug_verbose) wb_print_state(sc, "Before watchdog counter (re)load"); - /* - * Enter extended function mode in case someone else has been - * poking on the registers. We will not leave it though. - */ if ((*sc->ext_cfg_enter_f)(sc, 0) != 0) return (ENXIO); /* Watchdog is configured as part of LDN 8 (GPIO Port2, Watchdog) */ - write_efir_1(sc, 0, WB_LDN_REG); - write_efdr_1(sc, 0, WB_LDN_REG_LDN8); + write_reg(sc, WB_LDN_REG, WB_LDN_REG_LDN8); - /* Disable and validate or arm/reset watchdog. */ if (timeout == 0) { /* Disable watchdog. */ - write_efir_1(sc, 0, WB_LDN8_CRF6); - write_efdr_1(sc, 0, 0x00); - - /* Re-check. */ - write_efir_1(sc, 0, WB_LDN8_CRF6); - sc->reg_timeout = read_efdr_1(sc, 0); - - if (sc->reg_timeout != 0x00) { - device_printf(sc->dev, "Failed to disable watchdog: " - "0x%02x.\n", sc->reg_timeout); - return (EIO); - } + sc->reg_timeout = 0; + write_reg(sc, sc->time_reg, sc->reg_timeout); } else { - /* - * In case an override is set, let it override. It may lead - * to strange results as we do not check the input of the sysctl. - */ - if (sc->timeout_override > 0) - timeout = sc->timeout_override; - - /* Make sure we support the requested timeout. */ - if (timeout > 255 * 60) - return (EINVAL); - /* Read current scaling factor. */ - write_efir_1(sc, 0, WB_LDN8_CRF5); - sc->reg_1 = read_efdr_1(sc, 0); + sc->reg_1 = read_reg(sc, sc->ctl_reg); if (timeout > 255) { /* Set scaling factor to 60s. */ @@ -473,26 +527,23 @@ wb_set_watchdog(struct wb_softc *sc, unsigned int timeout) } /* In case we fired before we need to clear to fire again. */ - write_efir_1(sc, 0, WB_LDN8_CRF7); - sc->reg_2 = read_efdr_1(sc, 0); + sc->reg_2 = read_reg(sc, sc->csr_reg); if (sc->reg_2 & WB_LDN8_CRF7_TS) { sc->reg_2 &= ~WB_LDN8_CRF7_TS; - write_efir_1(sc, 0, WB_LDN8_CRF7); - write_efdr_1(sc, 0, sc->reg_2); + write_reg(sc, sc->csr_reg, sc->reg_2); } /* Write back scaling factor. */ - write_efir_1(sc, 0, WB_LDN8_CRF5); - write_efdr_1(sc, 0, sc->reg_1); + write_reg(sc, sc->ctl_reg, sc->reg_1); /* Set timer and arm/reset the watchdog. */ - write_efir_1(sc, 0, WB_LDN8_CRF6); - write_efdr_1(sc, 0, sc->reg_timeout); + write_reg(sc, sc->time_reg, sc->reg_timeout); } + (*sc->ext_cfg_exit_f)(sc, 0); + if (sc->debug_verbose) wb_print_state(sc, "After watchdog counter (re)load"); - return (0); } @@ -556,6 +607,7 @@ wb_probe_enable(device_t dev, int probe) struct wb_softc *sc; int error, found, i, j; uint8_t dev_id, dev_rev, cr26; + char buf[128]; if (dev == NULL) sc = NULL; @@ -566,6 +618,7 @@ wb_probe_enable(device_t dev, int probe) } error = ENXIO; + found = 0; for (i = 0; i < sizeof(probe_addrs) / sizeof(*probe_addrs); i++) { if (sc != NULL) { @@ -578,7 +631,6 @@ wb_probe_enable(device_t dev, int probe) sc->bsh = rman_get_bushandle(sc->portres); } - found = 0; error = (*probe_addrs[i].ext_cfg_enter_f)(sc, probe_addrs[i].efer); if (error != 0) goto cleanup; @@ -591,6 +643,9 @@ wb_probe_enable(device_t dev, int probe) write_efir_1(sc, probe_addrs[i].efer, WB_CR26); cr26 = read_efdr_1(sc, probe_addrs[i].efer); + if (dev_id == 0xff && dev_rev == 0xff) + goto cleanup; + /* HEFRAS of 0 means EFER at 0x2e, 1 means EFER at 0x4e. */ if (((cr26 & 0x40) == 0x00 && probe_addrs[i].efer != 0x2e) || ((cr26 & 0x40) == 0x40 && probe_addrs[i].efer != 0x4e)) { @@ -602,36 +657,30 @@ wb_probe_enable(device_t dev, int probe) goto cleanup; } - if (dev_id == 0xff && dev_rev == 0xff) - goto cleanup; - for (j = 0; j < sizeof(wb_devs) / sizeof(*wb_devs); j++) { - if (wb_devs[j].device_id == dev_id && - wb_devs[j].device_rev == dev_rev) { - if (probe && dev != NULL) - device_set_desc(dev, wb_devs[j].descr); - found++; + if (wb_devs[j].device_id == dev_id) { + found = 1; break; } } - if (!found) { - if (probe && dev != NULL) { - device_set_desc(dev, "Unknown Winbond/Nuvoton model"); - device_printf(dev, "DevID 0x%02x DevRev 0x%02x, " - "please report this.\n", dev_id, dev_rev); - } - found++; + if (probe && dev != NULL) { + snprintf(buf, sizeof(buf), + "%s (0x%02x/0x%02x) Watchdog Timer", + found ? wb_devs[j].descr : + "Unknown Winbond/Nuvoton", dev_id, dev_rev); + device_set_desc_copy(dev, buf); + } + + /* If this is hinted attach, try to guess the model. */ + if (dev != NULL && !found) { + found = 1; + j = 0; } - if (probe && found && bootverbose && dev != NULL) - device_printf(dev, "%s EFER 0x%02x ID 0x%02x Rev 0x%02x" - " CR26 0x%02x (probing)\n", device_get_desc(dev), - probe_addrs[i].efer, dev_id, dev_rev, cr26); cleanup: if (probe || !found) { (*probe_addrs[i].ext_cfg_exit_f)(sc, probe_addrs[i].efer); - if (sc != NULL) (void) bus_release_resource(dev, SYS_RES_IOPORT, sc->rid, sc->portres); @@ -646,9 +695,21 @@ cleanup: if (sc != NULL) { sc->ext_cfg_enter_f = probe_addrs[i].ext_cfg_enter_f; sc->ext_cfg_exit_f = probe_addrs[i].ext_cfg_exit_f; + sc->chip = wb_devs[j].chip; + sc->ctl_reg = 0xf5; + sc->time_reg = 0xf6; + sc->csr_reg = 0xf7; + if (sc->chip == w83697hf || + sc->chip == w83697ug) { + sc->ctl_reg = 0xf3; + sc->time_reg = 0xf4; + } else if (sc->chip == nct6102) { + sc->ctl_reg = 0xf0; + sc->time_reg = 0xf1; + sc->csr_reg = 0xf2; + } } - error = BUS_PROBE_DEFAULT; - break; + return (BUS_PROBE_SPECIFIC); } else error = ENXIO; } @@ -659,15 +720,10 @@ cleanup: static void wb_identify(driver_t *driver, device_t parent) { - device_t dev; - if ((dev = device_find_child(parent, driver->name, 0)) == NULL) { - if (wb_probe_enable(dev, 1) != BUS_PROBE_DEFAULT) { - if (bootverbose) - device_printf(dev, "can not find compatible Winbond chip.\n"); - } else - dev = BUS_ADD_CHILD(parent, 0, driver->name, 0); - return; + if (device_find_child(parent, driver->name, 0) == NULL) { + if (wb_probe_enable(NULL, 1) <= 0) + BUS_ADD_CHILD(parent, 0, driver->name, 0); } } @@ -690,6 +746,7 @@ wb_attach(device_t dev) struct sysctl_oid *soid; unsigned long timeout; int error; + uint8_t t; error = wb_probe_enable(dev, 0); if (error > 0) @@ -700,37 +757,95 @@ wb_attach(device_t dev) ("%s: successfull probe result but not setup correctly", __func__)); /* Watchdog is configured as part of LDN 8 (GPIO Port2, Watchdog). */ - write_efir_1(sc, 0, WB_LDN_REG); - write_efdr_1(sc, 0, WB_LDN_REG_LDN8); - - /* Make sure LDN8 is enabled (Do we need to? Also affects GPIO). */ - write_efir_1(sc, 0, WB_LDN8_CR30); - write_efdr_1(sc, 0, WB_LDN8_CR30_ACTIVE); + write_reg(sc, WB_LDN_REG, WB_LDN_REG_LDN8); + + /* Make sure WDT is enabled. */ + write_reg(sc, WB_LDN8_CR30, + read_reg(sc, WB_LDN8_CR30) | WB_LDN8_CR30_ACTIVE); + + switch (sc->chip) { + case w83627hf: + case w83627s: + t = read_reg(sc, 0x2B) & ~0x10; + write_reg(sc, 0x2B, t); /* set GPIO24 to WDT0 */ + break; + case w83697hf: + /* Set pin 119 to WDTO# mode (= CR29, WDT0) */ + t = read_reg(sc, 0x29) & ~0x60; + t |= 0x20; + write_reg(sc, 0x29, t); + break; + case w83697ug: + /* Set pin 118 to WDTO# mode */ + t = read_reg(sc, 0x2b) & ~0x04; + write_reg(sc, 0x2b, t); + break; + case w83627thf: + t = (read_reg(sc, 0x2B) & ~0x08) | 0x04; + write_reg(sc, 0x2B, t); /* set GPIO3 to WDT0 */ + break; + case w83627dhg: + case w83627dhg_p: + t = read_reg(sc, 0x2D) & ~0x01; /* PIN77 -> WDT0# */ + write_reg(sc, 0x2D, t); /* set GPIO5 to WDT0 */ + t = read_reg(sc, sc->ctl_reg); + t |= 0x02; /* enable the WDTO# output low pulse + * to the KBRST# pin */ + write_reg(sc, sc->ctl_reg, t); + break; + case w83637hf: + break; + case w83687thf: + t = read_reg(sc, 0x2C) & ~0x80; /* PIN47 -> WDT0# */ + write_reg(sc, 0x2C, t); + break; + case w83627ehf: + case w83627uhg: + case w83667hg: + case w83667hg_b: + case nct6775: + case nct6776: + case nct6779: + case nct6791: + case nct6792: + case nct6102: + /* + * These chips have a fixed WDTO# output pin (W83627UHG), + * or support more than one WDTO# output pin. + * Don't touch its configuration, and hope the BIOS + * does the right thing. + */ + t = read_reg(sc, sc->ctl_reg); + t |= 0x02; /* enable the WDTO# output low pulse + * to the KBRST# pin */ + write_reg(sc, sc->ctl_reg, t); + break; + default: + break; + } /* Read the current watchdog configuration. */ - write_efir_1(sc, 0, WB_LDN8_CRF5); - sc->reg_1 = read_efdr_1(sc, 0); - write_efir_1(sc, 0, WB_LDN8_CRF6); - sc->reg_timeout = read_efdr_1(sc, 0); - write_efir_1(sc, 0, WB_LDN8_CRF7); - sc->reg_2 = read_efdr_1(sc, 0); + sc->reg_1 = read_reg(sc, sc->ctl_reg); + sc->reg_timeout = read_reg(sc, sc->time_reg); + sc->reg_2 = read_reg(sc, sc->csr_reg); /* Print current state if bootverbose or watchdog already enabled. */ if (bootverbose || (sc->reg_timeout > 0x00)) wb_print_state(sc, "Before watchdog attach"); + sc->reg_1 &= ~WB_LDN8_CRF5_KEYB_P20; + sc->reg_1 |= WB_LDN8_CRF5_KBRST; + write_reg(sc, sc->ctl_reg, sc->reg_1); + /* - * Clear a previous watchdog timeout event (if (still) set). - * Disable all all interrupt reset sources (defaults). + * Clear a previous watchdog timeout event (if still set). + * Disable timer reset on mouse interrupts. Leave reset on keyboard, + * since one of my boards is getting stuck in reboot without it. */ - sc->reg_1 &= ~(WB_LDN8_CRF5_KEYB_P20); - sc->reg_1 |= WB_LDN8_CRF5_KBRST; - write_efir_1(sc, 0, WB_LDN8_CRF5); - write_efdr_1(sc, 0, sc->reg_1); + sc->reg_2 &= ~(WB_LDN8_CRF7_MOUSE|WB_LDN8_CRF7_TS); + write_reg(sc, sc->csr_reg, sc->reg_2); - sc->reg_2 &= ~WB_LDN8_CRF7_CLEAR_MASK; - write_efir_1(sc, 0, WB_LDN8_CRF7); - write_efdr_1(sc, 0, sc->reg_2); + (*sc->ext_cfg_exit_f)(sc, 0); /* Read global timeout override tunable, Add per device sysctls. */ if (TUNABLE_ULONG_FETCH("hw.wbwd.timeout_override", &timeout)) { diff --git a/sys/dev/xen/blkfront/blkfront.c b/sys/dev/xen/blkfront/blkfront.c index e9650f0..1ad2494 100644 --- a/sys/dev/xen/blkfront/blkfront.c +++ b/sys/dev/xen/blkfront/blkfront.c @@ -849,6 +849,20 @@ xbd_feature_string(struct xbd_softc *sc, char *features, size_t len) feature_cnt++; } + if ((sc->xbd_flags & XBDF_DISCARD) != 0) { + if (feature_cnt != 0) + sbuf_printf(&sb, ", "); + sbuf_printf(&sb, "discard"); + feature_cnt++; + } + + if ((sc->xbd_flags & XBDF_PERSISTENT) != 0) { + if (feature_cnt != 0) + sbuf_printf(&sb, ", "); + sbuf_printf(&sb, "persistent_grants"); + feature_cnt++; + } + (void) sbuf_finish(&sb); return (sbuf_len(&sb)); } @@ -979,7 +993,8 @@ xbd_vdevice_to_unit(uint32_t vdevice, int *unit, const char **name) int xbd_instance_create(struct xbd_softc *sc, blkif_sector_t sectors, - int vdevice, uint16_t vdisk_info, unsigned long sector_size) + int vdevice, uint16_t vdisk_info, unsigned long sector_size, + unsigned long phys_sector_size) { char features[80]; int unit, error = 0; @@ -1007,6 +1022,8 @@ xbd_instance_create(struct xbd_softc *sc, blkif_sector_t sectors, sc->xbd_disk->d_name = name; sc->xbd_disk->d_drv1 = sc; sc->xbd_disk->d_sectorsize = sector_size; + sc->xbd_disk->d_stripesize = phys_sector_size; + sc->xbd_disk->d_stripeoffset = 0; sc->xbd_disk->d_mediasize = sectors * sector_size; sc->xbd_disk->d_maxsize = sc->xbd_max_request_size; @@ -1200,7 +1217,7 @@ static void xbd_connect(struct xbd_softc *sc) { device_t dev = sc->xbd_dev; - unsigned long sectors, sector_size; + unsigned long sectors, sector_size, phys_sector_size; unsigned int binfo; int err, feature_barrier, feature_flush; int i, j; @@ -1223,6 +1240,11 @@ xbd_connect(struct xbd_softc *sc) return; } err = xs_gather(XST_NIL, xenbus_get_otherend_path(dev), + "physical-sector-size", "%lu", &phys_sector_size, + NULL); + if (err || phys_sector_size <= sector_size) + phys_sector_size = 0; + err = xs_gather(XST_NIL, xenbus_get_otherend_path(dev), "feature-barrier", "%lu", &feature_barrier, NULL); if (err == 0 && feature_barrier != 0) @@ -1324,7 +1346,7 @@ xbd_connect(struct xbd_softc *sc) bus_print_child_footer(device_get_parent(dev), dev); xbd_instance_create(sc, sectors, sc->xbd_vdevice, binfo, - sector_size); + sector_size, phys_sector_size); } (void)xenbus_set_state(dev, XenbusStateConnected); diff --git a/sys/dev/xen/blkfront/block.h b/sys/dev/xen/blkfront/block.h index 28c6ff2..ddb4088 100644 --- a/sys/dev/xen/blkfront/block.h +++ b/sys/dev/xen/blkfront/block.h @@ -159,10 +159,12 @@ typedef enum { XBDF_READY = 1 << 3, /* Is ready */ XBDF_CM_SHORTAGE = 1 << 4, /* Free cm resource shortage active. */ XBDF_GNT_SHORTAGE = 1 << 5, /* Grant ref resource shortage active */ - XBDF_WAIT_IDLE = 1 << 6 /* + XBDF_WAIT_IDLE = 1 << 6, /* * No new work until oustanding work * completes. */ + XBDF_DISCARD = 1 << 7, /* backend supports discard */ + XBDF_PERSISTENT = 1 << 8 /* backend supports persistent grants */ } xbd_flag_t; /* @@ -200,7 +202,8 @@ struct xbd_softc { }; int xbd_instance_create(struct xbd_softc *, blkif_sector_t sectors, int device, - uint16_t vdisk_info, unsigned long sector_size); + uint16_t vdisk_info, unsigned long sector_size, + unsigned long phys_sector_size); static inline void xbd_added_qentry(struct xbd_softc *sc, xbd_q_index_t index) diff --git a/sys/fs/msdosfs/direntry.h b/sys/fs/msdosfs/direntry.h index 86b6fbb..facec30 100644 --- a/sys/fs/msdosfs/direntry.h +++ b/sys/fs/msdosfs/direntry.h @@ -145,7 +145,7 @@ struct msdosfsmount; char *mbnambuf_flush(struct mbnambuf *nbp, struct dirent *dp); void mbnambuf_init(struct mbnambuf *nbp); -void mbnambuf_write(struct mbnambuf *nbp, char *name, int id); +int mbnambuf_write(struct mbnambuf *nbp, char *name, int id); int dos2unixfn(u_char dn[11], u_char *un, int lower, struct msdosfsmount *pmp); int unix2dosfn(const u_char *un, u_char dn[12], size_t unlen, u_int gen, diff --git a/sys/fs/msdosfs/msdosfs_conv.c b/sys/fs/msdosfs/msdosfs_conv.c index 6671afc..5e6c20d 100644 --- a/sys/fs/msdosfs/msdosfs_conv.c +++ b/sys/fs/msdosfs/msdosfs_conv.c @@ -678,7 +678,9 @@ win2unixfn(nbp, wep, chksum, pmp) switch (code) { case 0: *np = '\0'; - mbnambuf_write(nbp, name, (wep->weCnt & WIN_CNT) - 1); + if (mbnambuf_write(nbp, name, + (wep->weCnt & WIN_CNT) - 1) != 0) + return -1; return chksum; case '/': *np = '\0'; @@ -696,7 +698,9 @@ win2unixfn(nbp, wep, chksum, pmp) switch (code) { case 0: *np = '\0'; - mbnambuf_write(nbp, name, (wep->weCnt & WIN_CNT) - 1); + if (mbnambuf_write(nbp, name, + (wep->weCnt & WIN_CNT) - 1) != 0) + return -1; return chksum; case '/': *np = '\0'; @@ -714,7 +718,9 @@ win2unixfn(nbp, wep, chksum, pmp) switch (code) { case 0: *np = '\0'; - mbnambuf_write(nbp, name, (wep->weCnt & WIN_CNT) - 1); + if (mbnambuf_write(nbp, name, + (wep->weCnt & WIN_CNT) - 1) != 0) + return -1; return chksum; case '/': *np = '\0'; @@ -728,7 +734,8 @@ win2unixfn(nbp, wep, chksum, pmp) cp += 2; } *np = '\0'; - mbnambuf_write(nbp, name, (wep->weCnt & WIN_CNT) - 1); + if (mbnambuf_write(nbp, name, (wep->weCnt & WIN_CNT) - 1) != 0) + return -1; return chksum; } @@ -1030,7 +1037,7 @@ mbnambuf_init(struct mbnambuf *nbp) * This only penalizes portions of substrings that contain more than * WIN_CHARS bytes when they are first encountered. */ -void +int mbnambuf_write(struct mbnambuf *nbp, char *name, int id) { char *slot; @@ -1041,7 +1048,7 @@ mbnambuf_write(struct mbnambuf *nbp, char *name, int id) printf("msdosfs: non-decreasing id: id %d, last id %d\n", id, nbp->nb_last_id); #endif - return; + return (EINVAL); } /* Will store this substring in a WIN_CHARS-aligned slot. */ @@ -1052,17 +1059,24 @@ mbnambuf_write(struct mbnambuf *nbp, char *name, int id) #ifdef MSDOSFS_DEBUG printf("msdosfs: file name length %zu too large\n", newlen); #endif - return; + return (ENAMETOOLONG); } /* Shift suffix upwards by the amount length exceeds WIN_CHARS. */ - if (count > WIN_CHARS && nbp->nb_len != 0) + if (count > WIN_CHARS && nbp->nb_len != 0) { + if ((id * WIN_CHARS + count + nbp->nb_len) > + sizeof(nbp->nb_buf)) + return (ENAMETOOLONG); + bcopy(slot + WIN_CHARS, slot + count, nbp->nb_len); + } /* Copy in the substring to its slot and update length so far. */ bcopy(name, slot, count); nbp->nb_len = newlen; nbp->nb_last_id = id; + + return (0); } /* diff --git a/sys/i386/conf/GENERIC.hints b/sys/i386/conf/GENERIC.hints index fb30240..ffd10a6 100644 --- a/sys/i386/conf/GENERIC.hints +++ b/sys/i386/conf/GENERIC.hints @@ -38,6 +38,5 @@ hint.atrtc.0.irq="8" hint.attimer.0.at="isa" hint.attimer.0.port="0x40" hint.attimer.0.irq="0" -hint.wbwd.0.at="isa" hint.acpi_throttle.0.disabled="1" hint.p4tcc.0.disabled="1" diff --git a/sys/kern/kern_jail.c b/sys/kern/kern_jail.c index 0d52c7b..0ea7276 100644 --- a/sys/kern/kern_jail.c +++ b/sys/kern/kern_jail.c @@ -560,8 +560,9 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) void *op; #endif unsigned long hid; - size_t namelen, onamelen; - int created, cuflags, descend, enforce, error, errmsg_len, errmsg_pos; + size_t namelen, onamelen, pnamelen; + int born, created, cuflags, descend, enforce; + int error, errmsg_len, errmsg_pos; int gotchildmax, gotenforce, gothid, gotrsnum, gotslevel; int fi, jid, jsys, len, level; int childmax, osreldt, rsnum, slevel; @@ -584,7 +585,7 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) error = priv_check(td, PRIV_JAIL_ATTACH); if (error) return (error); - mypr = ppr = td->td_ucred->cr_prison; + mypr = td->td_ucred->cr_prison; if ((flags & JAIL_CREATE) && mypr->pr_childmax == 0) return (EPERM); if (flags & ~JAIL_SET_MASK) @@ -611,6 +612,13 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) #endif g_path = NULL; + cuflags = flags & (JAIL_CREATE | JAIL_UPDATE); + if (!cuflags) { + error = EINVAL; + vfs_opterror(opts, "no valid operation (create or update)"); + goto done_errmsg; + } + error = vfs_copyopt(opts, "jid", &jid, sizeof(jid)); if (error == ENOENT) jid = 0; @@ -1020,42 +1028,18 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) } /* - * Grab the allprison lock before letting modules check their - * parameters. Once we have it, do not let go so we'll have a - * consistent view of the OSD list. - */ - sx_xlock(&allprison_lock); - error = osd_jail_call(NULL, PR_METHOD_CHECK, opts); - if (error) - goto done_unlock_list; - - /* By now, all parameters should have been noted. */ - TAILQ_FOREACH(opt, opts, link) { - if (!opt->seen && strcmp(opt->name, "errmsg")) { - error = EINVAL; - vfs_opterror(opts, "unknown parameter: %s", opt->name); - goto done_unlock_list; - } - } - - /* - * See if we are creating a new record or updating an existing one. + * Find the specified jail, or at least its parent. * This abuses the file error codes ENOENT and EEXIST. */ - cuflags = flags & (JAIL_CREATE | JAIL_UPDATE); - if (!cuflags) { - error = EINVAL; - vfs_opterror(opts, "no valid operation (create or update)"); - goto done_unlock_list; - } pr = NULL; - namelc = NULL; + ppr = mypr; if (cuflags == JAIL_CREATE && jid == 0 && name != NULL) { namelc = strrchr(name, '.'); jid = strtoul(namelc != NULL ? namelc + 1 : name, &p, 10); if (*p != '\0') jid = 0; } + sx_xlock(&allprison_lock); if (jid != 0) { /* * See if a requested jid already exists. There is an @@ -1121,6 +1105,7 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) * and updates keyed by the name itself (where the name must exist * because that is the jail being updated). */ + namelc = NULL; if (name != NULL) { namelc = strrchr(name, '.'); if (namelc == NULL) @@ -1131,7 +1116,6 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) * parent and child names, and make sure the parent * exists or matches an already found jail. */ - *namelc = '\0'; if (pr != NULL) { if (strncmp(name, ppr->pr_name, namelc - name) || ppr->pr_name[namelc - name] != '\0') { @@ -1142,6 +1126,7 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) goto done_unlock_list; } } else { + *namelc = '\0'; ppr = prison_find_name(mypr, name); if (ppr == NULL) { error = ENOENT; @@ -1150,17 +1135,18 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) goto done_unlock_list; } mtx_unlock(&ppr->pr_mtx); + *namelc = '.'; } - name = ++namelc; + namelc++; } - if (name[0] != '\0') { - namelen = + if (namelc[0] != '\0') { + pnamelen = (ppr == &prison0) ? 0 : strlen(ppr->pr_name) + 1; name_again: deadpr = NULL; FOREACH_PRISON_CHILD(ppr, tpr) { if (tpr != pr && tpr->pr_ref > 0 && - !strcmp(tpr->pr_name + namelen, name)) { + !strcmp(tpr->pr_name + pnamelen, namelc)) { if (pr == NULL && cuflags != JAIL_CREATE) { mtx_lock(&tpr->pr_mtx); @@ -1234,10 +1220,11 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) } created = 1; mtx_lock(&ppr->pr_mtx); - if (ppr->pr_ref == 0 || (ppr->pr_flags & PR_REMOVE)) { + if (ppr->pr_ref == 0) { mtx_unlock(&ppr->pr_mtx); error = ENOENT; - vfs_opterror(opts, "parent jail went away!"); + vfs_opterror(opts, "jail \"%s\" not found", + prison_name(mypr, ppr)); goto done_unlock_list; } ppr->pr_ref++; @@ -1291,8 +1278,8 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) pr->pr_id = jid; /* Set some default values, and inherit some from the parent. */ - if (name == NULL) - name = ""; + if (namelc == NULL) + namelc = ""; if (path == NULL) { path = "/"; root = mypr->pr_root; @@ -1355,6 +1342,7 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) LIST_INIT(&pr->pr_children); mtx_init(&pr->pr_mtx, "jail mutex", NULL, MTX_DEF | MTX_DUPOK); + TASK_INIT(&pr->pr_task, 0, prison_complete, pr); #ifdef VIMAGE /* Allocate a new vnet if specified. */ @@ -1374,7 +1362,7 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) mtx_lock(&pr->pr_mtx); /* * New prisons do not yet have a reference, because we do not - * want other to see the incomplete prison once the + * want others to see the incomplete prison once the * allprison_lock is downgraded. */ } else { @@ -1588,13 +1576,13 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) } #endif onamelen = namelen = 0; - if (name != NULL) { + if (namelc != NULL) { /* Give a default name of the jid. Also allow the name to be * explicitly the jid - but not any other number, and only in * normal form (no leading zero/etc). */ - if (name[0] == '\0') - snprintf(name = numbuf, sizeof(numbuf), "%d", jid); + if (namelc[0] == '\0') + snprintf(namelc = numbuf, sizeof(numbuf), "%d", jid); else if ((strtoul(namelc, &p, 10) != jid || namelc[0] < '1' || namelc[0] > '9') && *p == '\0') { error = EINVAL; @@ -1606,9 +1594,10 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) * Make sure the name isn't too long for the prison or its * children. */ - onamelen = strlen(pr->pr_name); - namelen = strlen(name); - if (strlen(ppr->pr_name) + namelen + 2 > sizeof(pr->pr_name)) { + pnamelen = (ppr == &prison0) ? 0 : strlen(ppr->pr_name) + 1; + onamelen = strlen(pr->pr_name + pnamelen); + namelen = strlen(namelc); + if (pnamelen + namelen + 1 > sizeof(pr->pr_name)) { error = ENAMETOOLONG; goto done_deref_locked; } @@ -1625,6 +1614,30 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) goto done_deref_locked; } + /* + * Let modules check their parameters. This requires unlocking and + * then re-locking the prison, but this is still a valid state as long + * as allprison_lock remains xlocked. + */ + mtx_unlock(&pr->pr_mtx); + error = osd_jail_call(pr, PR_METHOD_CHECK, opts); + if (error != 0) { + prison_deref(pr, created + ? PD_LIST_XLOCKED + : PD_DEREF | PD_LIST_XLOCKED); + goto done_releroot; + } + mtx_lock(&pr->pr_mtx); + + /* At this point, all valid parameters should have been noted. */ + TAILQ_FOREACH(opt, opts, link) { + if (!opt->seen && strcmp(opt->name, "errmsg")) { + error = EINVAL; + vfs_opterror(opts, "unknown parameter: %s", opt->name); + goto done_deref_locked; + } + } + /* Set the parameters of the prison. */ #ifdef INET redo_ip4 = 0; @@ -1698,12 +1711,12 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) tpr->pr_devfs_rsnum = rsnum; } - if (name != NULL) { + if (namelc != NULL) { if (ppr == &prison0) - strlcpy(pr->pr_name, name, sizeof(pr->pr_name)); + strlcpy(pr->pr_name, namelc, sizeof(pr->pr_name)); else snprintf(pr->pr_name, sizeof(pr->pr_name), "%s.%s", - ppr->pr_name, name); + ppr->pr_name, namelc); /* Change this component of child names. */ FOREACH_PRISON_DESCENDANT_LOCKED(pr, tpr, descend) { bcopy(tpr->pr_name + onamelen, tpr->pr_name + namelen, @@ -1781,6 +1794,7 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) * for now, so new ones will remain unseen until after the module * handlers have completed. */ + born = pr->pr_uref == 0; if (!created && (ch_flags & PR_PERSIST & (pr_flags ^ pr->pr_flags))) { if (pr_flags & PR_PERSIST) { pr->pr_ref++; @@ -1850,15 +1864,20 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) /* Let the modules do their work. */ sx_downgrade(&allprison_lock); - if (created) { + if (born) { error = osd_jail_call(pr, PR_METHOD_CREATE, opts); if (error) { - prison_deref(pr, PD_LIST_SLOCKED); + (void)osd_jail_call(pr, PR_METHOD_REMOVE, NULL); + prison_deref(pr, created + ? PD_LIST_SLOCKED + : PD_DEREF | PD_LIST_SLOCKED); goto done_errmsg; } } error = osd_jail_call(pr, PR_METHOD_SET, opts); if (error) { + if (born) + (void)osd_jail_call(pr, PR_METHOD_REMOVE, NULL); prison_deref(pr, created ? PD_LIST_SLOCKED : PD_DEREF | PD_LIST_SLOCKED); @@ -1910,7 +1929,7 @@ kern_jail_set(struct thread *td, struct uio *optuio, int flags) sx_sunlock(&allprison_lock); } - goto done_errmsg; + goto done_free; done_deref_locked: prison_deref(pr, created @@ -2290,7 +2309,6 @@ sys_jail_remove(struct thread *td, struct jail_remove_args *uap) /* Remove all descendants of this prison, then remove this prison. */ pr->pr_ref++; - pr->pr_flags |= PR_REMOVE; if (!LIST_EMPTY(&pr->pr_children)) { mtx_unlock(&pr->pr_mtx); lpr = NULL; @@ -2299,7 +2317,6 @@ sys_jail_remove(struct thread *td, struct jail_remove_args *uap) if (cpr->pr_ref > 0) { tpr = cpr; cpr->pr_ref++; - cpr->pr_flags |= PR_REMOVE; } else { /* Already removed - do not do it again. */ tpr = NULL; @@ -2406,7 +2423,6 @@ sys_jail_attach(struct thread *td, struct jail_attach_args *uap) static int do_jail_attach(struct thread *td, struct prison *pr) { - struct prison *ppr; struct proc *p; struct ucred *newcred, *oldcred; int error; @@ -2434,7 +2450,6 @@ do_jail_attach(struct thread *td, struct prison *pr) /* * Reparent the newly attached process to this jail. */ - ppr = td->td_ucred->cr_prison; p = td->td_proc; error = cpuset_setproc_update_set(p, pr->pr_cpuset); if (error) @@ -2453,23 +2468,23 @@ do_jail_attach(struct thread *td, struct prison *pr) newcred = crget(); PROC_LOCK(p); - oldcred = p->p_ucred; - setsugid(p); - crcopy(newcred, oldcred); + oldcred = crcopysafe(p, newcred); newcred->cr_prison = pr; p->p_ucred = newcred; + setsugid(p); PROC_UNLOCK(p); #ifdef RACCT racct_proc_ucred_changed(p, oldcred, newcred); #endif + prison_deref(oldcred->cr_prison, PD_DEREF | PD_DEUREF); crfree(oldcred); - prison_deref(ppr, PD_DEREF | PD_DEUREF); return (0); + e_unlock: VOP_UNLOCK(pr->pr_root, 0); e_revert_osd: /* Tell modules this thread is still in its old jail after all. */ - (void)osd_jail_call(ppr, PR_METHOD_ATTACH, td); + (void)osd_jail_call(td->td_ucred->cr_prison, PR_METHOD_ATTACH, td); prison_deref(pr, PD_DEREF | PD_DEUREF); return (error); } @@ -2578,16 +2593,13 @@ prison_allow(struct ucred *cred, unsigned flag) void prison_free_locked(struct prison *pr) { + int ref; mtx_assert(&pr->pr_mtx, MA_OWNED); - pr->pr_ref--; - if (pr->pr_ref == 0) { - mtx_unlock(&pr->pr_mtx); - TASK_INIT(&pr->pr_task, 0, prison_complete, pr); - taskqueue_enqueue(taskqueue_thread, &pr->pr_task); - return; - } + ref = --pr->pr_ref; mtx_unlock(&pr->pr_mtx); + if (ref == 0) + taskqueue_enqueue(taskqueue_thread, &pr->pr_task); } void @@ -2598,11 +2610,17 @@ prison_free(struct prison *pr) prison_free_locked(pr); } +/* + * Complete a call to either prison_free or prison_proc_free. + */ static void prison_complete(void *context, int pending) { + struct prison *pr = context; - prison_deref((struct prison *)context, 0); + mtx_lock(&pr->pr_mtx); + prison_deref(pr, pr->pr_uref + ? PD_DEREF | PD_DEUREF | PD_LOCKED : PD_LOCKED); } /* @@ -2615,19 +2633,53 @@ static void prison_deref(struct prison *pr, int flags) { struct prison *ppr, *tpr; + int ref, lasturef; if (!(flags & PD_LOCKED)) mtx_lock(&pr->pr_mtx); for (;;) { if (flags & PD_DEUREF) { + KASSERT(pr->pr_uref > 0, + ("prison_deref PD_DEUREF on a dead prison (jid=%d)", + pr->pr_id)); pr->pr_uref--; + lasturef = pr->pr_uref == 0; + if (lasturef) + pr->pr_ref++; KASSERT(prison0.pr_uref != 0, ("prison0 pr_uref=0")); - } - if (flags & PD_DEREF) + } else + lasturef = 0; + if (flags & PD_DEREF) { + KASSERT(pr->pr_ref > 0, + ("prison_deref PD_DEREF on a dead prison (jid=%d)", + pr->pr_id)); pr->pr_ref--; - /* If the prison still has references, nothing else to do. */ - if (pr->pr_ref > 0) { + } + ref = pr->pr_ref; + mtx_unlock(&pr->pr_mtx); + + /* + * Tell the modules if the last user reference was removed + * (even it sticks around in dying state). + */ + if (lasturef) { + if (!(flags & (PD_LIST_SLOCKED | PD_LIST_XLOCKED))) { + if (ref > 1) { + sx_slock(&allprison_lock); + flags |= PD_LIST_SLOCKED; + } else { + sx_xlock(&allprison_lock); + flags |= PD_LIST_XLOCKED; + } + } + (void)osd_jail_call(pr, PR_METHOD_REMOVE, NULL); + mtx_lock(&pr->pr_mtx); + ref = --pr->pr_ref; mtx_unlock(&pr->pr_mtx); + } + + /* If the prison still has references, nothing else to do. */ + if (ref > 0) { if (flags & PD_LIST_SLOCKED) sx_sunlock(&allprison_lock); else if (flags & PD_LIST_XLOCKED) @@ -2635,7 +2687,6 @@ prison_deref(struct prison *pr, int flags) return; } - mtx_unlock(&pr->pr_mtx); if (flags & PD_LIST_SLOCKED) { if (!sx_try_upgrade(&allprison_lock)) { sx_sunlock(&allprison_lock); @@ -2717,7 +2768,20 @@ prison_proc_free(struct prison *pr) mtx_lock(&pr->pr_mtx); KASSERT(pr->pr_uref > 0, ("Trying to kill a process in a dead prison (jid=%d)", pr->pr_id)); - prison_deref(pr, PD_DEUREF | PD_LOCKED); + if (pr->pr_uref > 1) + pr->pr_uref--; + else { + /* + * Don't remove the last user reference in this context, which + * is expected to be a process that is not only locked, but + * also half dead. + */ + pr->pr_ref++; + mtx_unlock(&pr->pr_mtx); + taskqueue_enqueue(taskqueue_thread, &pr->pr_task); + return; + } + mtx_unlock(&pr->pr_mtx); } diff --git a/sys/kern/kern_osd.c b/sys/kern/kern_osd.c index 184c4f0..26831c3 100644 --- a/sys/kern/kern_osd.c +++ b/sys/kern/kern_osd.c @@ -44,6 +44,23 @@ __FBSDID("$FreeBSD$"); /* OSD (Object Specific Data) */ +/* + * Lock key: + * (m) osd_module_lock + * (o) osd_object_lock + * (l) osd_list_lock + */ +struct osd_master { + struct sx osd_module_lock; + struct rmlock osd_object_lock; + struct mtx osd_list_lock; + LIST_HEAD(, osd) osd_list; /* (l) */ + osd_destructor_t *osd_destructors; /* (o) */ + osd_method_t *osd_methods; /* (m) */ + u_int osd_ntslots; /* (m) */ + const u_int osd_nmethods; +}; + static MALLOC_DEFINE(M_OSD, "osd", "Object Specific Data"); static int osd_debug = 0; @@ -62,25 +79,12 @@ static void do_osd_del(u_int type, struct osd *osd, u_int slot, int list_locked); /* - * Lists of objects with OSD. - * - * Lock key: - * (m) osd_module_lock - * (o) osd_object_lock - * (l) osd_list_lock + * List of objects with OSD. */ -static LIST_HEAD(, osd) osd_list[OSD_LAST + 1]; /* (m) */ -static osd_method_t *osd_methods[OSD_LAST + 1]; /* (m) */ -static u_int osd_nslots[OSD_LAST + 1]; /* (m) */ -static osd_destructor_t *osd_destructors[OSD_LAST + 1]; /* (o) */ -static const u_int osd_nmethods[OSD_LAST + 1] = { - [OSD_JAIL] = PR_MAXMETHOD, +struct osd_master osdm[OSD_LAST + 1] = { + [OSD_JAIL] = { .osd_nmethods = PR_MAXMETHOD }, }; -static struct sx osd_module_lock[OSD_LAST + 1]; -static struct rmlock osd_object_lock[OSD_LAST + 1]; -static struct mtx osd_list_lock[OSD_LAST + 1]; - static void osd_default_destructor(void *value __unused) { @@ -102,12 +106,12 @@ osd_register(u_int type, osd_destructor_t destructor, osd_method_t *methods) if (destructor == NULL) destructor = osd_default_destructor; - sx_xlock(&osd_module_lock[type]); + sx_xlock(&osdm[type].osd_module_lock); /* * First, we try to find unused slot. */ - for (i = 0; i < osd_nslots[type]; i++) { - if (osd_destructors[type][i] == NULL) { + for (i = 0; i < osdm[type].osd_ntslots; i++) { + if (osdm[type].osd_destructors[i] == NULL) { OSD_DEBUG("Unused slot found (type=%u, slot=%u).", type, i); break; @@ -116,31 +120,31 @@ osd_register(u_int type, osd_destructor_t destructor, osd_method_t *methods) /* * If no unused slot was found, allocate one. */ - if (i == osd_nslots[type]) { - osd_nslots[type]++; - if (osd_nmethods[type] != 0) - osd_methods[type] = realloc(osd_methods[type], - sizeof(osd_method_t) * osd_nslots[type] * - osd_nmethods[type], M_OSD, M_WAITOK); - newptr = malloc(sizeof(osd_destructor_t) * osd_nslots[type], - M_OSD, M_WAITOK); - rm_wlock(&osd_object_lock[type]); - bcopy(osd_destructors[type], newptr, + if (i == osdm[type].osd_ntslots) { + osdm[type].osd_ntslots++; + if (osdm[type].osd_nmethods != 0) + osdm[type].osd_methods = realloc(osdm[type].osd_methods, + sizeof(osd_method_t) * osdm[type].osd_ntslots * + osdm[type].osd_nmethods, M_OSD, M_WAITOK); + newptr = malloc(sizeof(osd_destructor_t) * + osdm[type].osd_ntslots, M_OSD, M_WAITOK); + rm_wlock(&osdm[type].osd_object_lock); + bcopy(osdm[type].osd_destructors, newptr, sizeof(osd_destructor_t) * i); - free(osd_destructors[type], M_OSD); - osd_destructors[type] = newptr; - rm_wunlock(&osd_object_lock[type]); + free(osdm[type].osd_destructors, M_OSD); + osdm[type].osd_destructors = newptr; + rm_wunlock(&osdm[type].osd_object_lock); OSD_DEBUG("New slot allocated (type=%u, slot=%u).", type, i + 1); } - osd_destructors[type][i] = destructor; - if (osd_nmethods[type] != 0) { - for (m = 0; m < osd_nmethods[type]; m++) - osd_methods[type][i * osd_nmethods[type] + m] = - methods != NULL ? methods[m] : NULL; + osdm[type].osd_destructors[i] = destructor; + if (osdm[type].osd_nmethods != 0) { + for (m = 0; m < osdm[type].osd_nmethods; m++) + osdm[type].osd_methods[i * osdm[type].osd_nmethods + m] + = methods != NULL ? methods[m] : NULL; } - sx_xunlock(&osd_module_lock[type]); + sx_xunlock(&osdm[type].osd_module_lock); return (i + 1); } @@ -151,105 +155,142 @@ osd_deregister(u_int type, u_int slot) KASSERT(type >= OSD_FIRST && type <= OSD_LAST, ("Invalid type.")); KASSERT(slot > 0, ("Invalid slot.")); - KASSERT(osd_destructors[type][slot - 1] != NULL, ("Unused slot.")); + KASSERT(osdm[type].osd_destructors[slot - 1] != NULL, ("Unused slot.")); - sx_xlock(&osd_module_lock[type]); - rm_wlock(&osd_object_lock[type]); + sx_xlock(&osdm[type].osd_module_lock); + rm_wlock(&osdm[type].osd_object_lock); /* * Free all OSD for the given slot. */ - mtx_lock(&osd_list_lock[type]); - LIST_FOREACH_SAFE(osd, &osd_list[type], osd_next, tosd) + mtx_lock(&osdm[type].osd_list_lock); + LIST_FOREACH_SAFE(osd, &osdm[type].osd_list, osd_next, tosd) do_osd_del(type, osd, slot, 1); - mtx_unlock(&osd_list_lock[type]); + mtx_unlock(&osdm[type].osd_list_lock); /* * Set destructor to NULL to free the slot. */ - osd_destructors[type][slot - 1] = NULL; - if (slot == osd_nslots[type]) { - osd_nslots[type]--; - osd_destructors[type] = realloc(osd_destructors[type], - sizeof(osd_destructor_t) * osd_nslots[type], M_OSD, + osdm[type].osd_destructors[slot - 1] = NULL; + if (slot == osdm[type].osd_ntslots) { + osdm[type].osd_ntslots--; + osdm[type].osd_destructors = realloc(osdm[type].osd_destructors, + sizeof(osd_destructor_t) * osdm[type].osd_ntslots, M_OSD, M_NOWAIT | M_ZERO); - if (osd_nmethods[type] != 0) - osd_methods[type] = realloc(osd_methods[type], - sizeof(osd_method_t) * osd_nslots[type] * - osd_nmethods[type], M_OSD, M_NOWAIT | M_ZERO); + if (osdm[type].osd_nmethods != 0) + osdm[type].osd_methods = realloc(osdm[type].osd_methods, + sizeof(osd_method_t) * osdm[type].osd_ntslots * + osdm[type].osd_nmethods, M_OSD, M_NOWAIT | M_ZERO); /* * We always reallocate to smaller size, so we assume it will * always succeed. */ - KASSERT(osd_destructors[type] != NULL && - (osd_nmethods[type] == 0 || osd_methods[type] != NULL), - ("realloc() failed")); + KASSERT(osdm[type].osd_destructors != NULL && + (osdm[type].osd_nmethods == 0 || + osdm[type].osd_methods != NULL), ("realloc() failed")); OSD_DEBUG("Deregistration of the last slot (type=%u, slot=%u).", type, slot); } else { OSD_DEBUG("Slot deregistration (type=%u, slot=%u).", type, slot); } - rm_wunlock(&osd_object_lock[type]); - sx_xunlock(&osd_module_lock[type]); + rm_wunlock(&osdm[type].osd_object_lock); + sx_xunlock(&osdm[type].osd_module_lock); } int osd_set(u_int type, struct osd *osd, u_int slot, void *value) { + + return (osd_set_reserved(type, osd, slot, NULL, value)); +} + +void * +osd_reserve(u_int slot) +{ + + KASSERT(slot > 0, ("Invalid slot.")); + + OSD_DEBUG("Reserving slot array (slot=%u).", slot); + return (malloc(sizeof(void *) * slot, M_OSD, M_WAITOK | M_ZERO)); +} + +int +osd_set_reserved(u_int type, struct osd *osd, u_int slot, void *rsv, + void *value) +{ struct rm_priotracker tracker; KASSERT(type >= OSD_FIRST && type <= OSD_LAST, ("Invalid type.")); KASSERT(slot > 0, ("Invalid slot.")); - KASSERT(osd_destructors[type][slot - 1] != NULL, ("Unused slot.")); + KASSERT(osdm[type].osd_destructors[slot - 1] != NULL, ("Unused slot.")); - rm_rlock(&osd_object_lock[type], &tracker); + rm_rlock(&osdm[type].osd_object_lock, &tracker); if (slot > osd->osd_nslots) { + void *newptr; + if (value == NULL) { OSD_DEBUG( "Not allocating null slot (type=%u, slot=%u).", type, slot); - rm_runlock(&osd_object_lock[type], &tracker); + rm_runlock(&osdm[type].osd_object_lock, &tracker); + if (rsv) + osd_free_reserved(rsv); return (0); - } else if (osd->osd_nslots == 0) { + } + + /* + * Too few slots allocated here, so we need to extend or create + * the array. + */ + if (rsv) { /* - * First OSD for this object, so we need to allocate - * space and put it onto the list. + * Use the reserve passed in (assumed to be + * the right size). */ - osd->osd_slots = malloc(sizeof(void *) * slot, M_OSD, - M_NOWAIT | M_ZERO); - if (osd->osd_slots == NULL) { - rm_runlock(&osd_object_lock[type], &tracker); - return (ENOMEM); + newptr = rsv; + if (osd->osd_nslots != 0) { + memcpy(newptr, osd->osd_slots, + sizeof(void *) * osd->osd_nslots); + free(osd->osd_slots, M_OSD); } - osd->osd_nslots = slot; - mtx_lock(&osd_list_lock[type]); - LIST_INSERT_HEAD(&osd_list[type], osd, osd_next); - mtx_unlock(&osd_list_lock[type]); - OSD_DEBUG("Setting first slot (type=%u).", type); } else { - void *newptr; - - /* - * Too few slots allocated here, needs to extend - * the array. - */ newptr = realloc(osd->osd_slots, sizeof(void *) * slot, M_OSD, M_NOWAIT | M_ZERO); if (newptr == NULL) { - rm_runlock(&osd_object_lock[type], &tracker); + rm_runlock(&osdm[type].osd_object_lock, + &tracker); return (ENOMEM); } - osd->osd_slots = newptr; - osd->osd_nslots = slot; - OSD_DEBUG("Growing slots array (type=%u).", type); } - } + if (osd->osd_nslots == 0) { + /* + * First OSD for this object, so we need to put it + * onto the list. + */ + mtx_lock(&osdm[type].osd_list_lock); + LIST_INSERT_HEAD(&osdm[type].osd_list, osd, osd_next); + mtx_unlock(&osdm[type].osd_list_lock); + OSD_DEBUG("Setting first slot (type=%u).", type); + } else + OSD_DEBUG("Growing slots array (type=%u).", type); + osd->osd_slots = newptr; + osd->osd_nslots = slot; + } else if (rsv) + osd_free_reserved(rsv); OSD_DEBUG("Setting slot value (type=%u, slot=%u, value=%p).", type, slot, value); osd->osd_slots[slot - 1] = value; - rm_runlock(&osd_object_lock[type], &tracker); + rm_runlock(&osdm[type].osd_object_lock, &tracker); return (0); } +void +osd_free_reserved(void *rsv) +{ + + OSD_DEBUG("Discarding reserved slot array."); + free(rsv, M_OSD); +} + void * osd_get(u_int type, struct osd *osd, u_int slot) { @@ -258,9 +299,9 @@ osd_get(u_int type, struct osd *osd, u_int slot) KASSERT(type >= OSD_FIRST && type <= OSD_LAST, ("Invalid type.")); KASSERT(slot > 0, ("Invalid slot.")); - KASSERT(osd_destructors[type][slot - 1] != NULL, ("Unused slot.")); + KASSERT(osdm[type].osd_destructors[slot - 1] != NULL, ("Unused slot.")); - rm_rlock(&osd_object_lock[type], &tracker); + rm_rlock(&osdm[type].osd_object_lock, &tracker); if (slot > osd->osd_nslots) { value = NULL; OSD_DEBUG("Slot doesn't exist (type=%u, slot=%u).", type, slot); @@ -269,7 +310,7 @@ osd_get(u_int type, struct osd *osd, u_int slot) OSD_DEBUG("Returning slot value (type=%u, slot=%u, value=%p).", type, slot, value); } - rm_runlock(&osd_object_lock[type], &tracker); + rm_runlock(&osdm[type].osd_object_lock, &tracker); return (value); } @@ -278,9 +319,9 @@ osd_del(u_int type, struct osd *osd, u_int slot) { struct rm_priotracker tracker; - rm_rlock(&osd_object_lock[type], &tracker); + rm_rlock(&osdm[type].osd_object_lock, &tracker); do_osd_del(type, osd, slot, 0); - rm_runlock(&osd_object_lock[type], &tracker); + rm_runlock(&osdm[type].osd_object_lock, &tracker); } static void @@ -290,7 +331,7 @@ do_osd_del(u_int type, struct osd *osd, u_int slot, int list_locked) KASSERT(type >= OSD_FIRST && type <= OSD_LAST, ("Invalid type.")); KASSERT(slot > 0, ("Invalid slot.")); - KASSERT(osd_destructors[type][slot - 1] != NULL, ("Unused slot.")); + KASSERT(osdm[type].osd_destructors[slot - 1] != NULL, ("Unused slot.")); OSD_DEBUG("Deleting slot (type=%u, slot=%u).", type, slot); @@ -299,7 +340,7 @@ do_osd_del(u_int type, struct osd *osd, u_int slot, int list_locked) return; } if (osd->osd_slots[slot - 1] != NULL) { - osd_destructors[type][slot - 1](osd->osd_slots[slot - 1]); + osdm[type].osd_destructors[slot - 1](osd->osd_slots[slot - 1]); osd->osd_slots[slot - 1] = NULL; } for (i = osd->osd_nslots - 1; i >= 0; i--) { @@ -313,10 +354,10 @@ do_osd_del(u_int type, struct osd *osd, u_int slot, int list_locked) /* No values left for this object. */ OSD_DEBUG("No more slots left (type=%u).", type); if (!list_locked) - mtx_lock(&osd_list_lock[type]); + mtx_lock(&osdm[type].osd_list_lock); LIST_REMOVE(osd, osd_next); if (!list_locked) - mtx_unlock(&osd_list_lock[type]); + mtx_unlock(&osdm[type].osd_list_lock); free(osd->osd_slots, M_OSD); osd->osd_slots = NULL; osd->osd_nslots = 0; @@ -342,21 +383,21 @@ osd_call(u_int type, u_int method, void *obj, void *data) int error, i; KASSERT(type >= OSD_FIRST && type <= OSD_LAST, ("Invalid type.")); - KASSERT(method < osd_nmethods[type], ("Invalid method.")); + KASSERT(method < osdm[type].osd_nmethods, ("Invalid method.")); /* * Call this method for every slot that defines it, stopping if an * error is encountered. */ error = 0; - sx_slock(&osd_module_lock[type]); - for (i = 0; i < osd_nslots[type]; i++) { - methodfun = - osd_methods[type][i * osd_nmethods[type] + method]; + sx_slock(&osdm[type].osd_module_lock); + for (i = 0; i < osdm[type].osd_ntslots; i++) { + methodfun = osdm[type].osd_methods[i * osdm[type].osd_nmethods + + method]; if (methodfun != NULL && (error = methodfun(obj, data)) != 0) break; } - sx_sunlock(&osd_module_lock[type]); + sx_sunlock(&osdm[type].osd_module_lock); return (error); } @@ -374,14 +415,14 @@ osd_exit(u_int type, struct osd *osd) return; } - rm_rlock(&osd_object_lock[type], &tracker); + rm_rlock(&osdm[type].osd_object_lock, &tracker); for (i = 1; i <= osd->osd_nslots; i++) { - if (osd_destructors[type][i - 1] != NULL) + if (osdm[type].osd_destructors[i - 1] != NULL) do_osd_del(type, osd, i, 0); else OSD_DEBUG("Unused slot (type=%u, slot=%u).", type, i); } - rm_runlock(&osd_object_lock[type], &tracker); + rm_runlock(&osdm[type].osd_object_lock, &tracker); OSD_DEBUG("Object exit (type=%u).", type); } @@ -391,13 +432,13 @@ osd_init(void *arg __unused) u_int i; for (i = OSD_FIRST; i <= OSD_LAST; i++) { - osd_nslots[i] = 0; - LIST_INIT(&osd_list[i]); - sx_init(&osd_module_lock[i], "osd_module"); - rm_init(&osd_object_lock[i], "osd_object"); - mtx_init(&osd_list_lock[i], "osd_list", NULL, MTX_DEF); - osd_destructors[i] = NULL; - osd_methods[i] = NULL; + sx_init(&osdm[i].osd_module_lock, "osd_module"); + rm_init(&osdm[i].osd_object_lock, "osd_object"); + mtx_init(&osdm[i].osd_list_lock, "osd_list", NULL, MTX_DEF); + LIST_INIT(&osdm[i].osd_list); + osdm[i].osd_destructors = NULL; + osdm[i].osd_ntslots = 0; + osdm[i].osd_methods = NULL; } } SYSINIT(osd, SI_SUB_LOCK, SI_ORDER_ANY, osd_init, NULL); diff --git a/sys/kern/sysv_msg.c b/sys/kern/sysv_msg.c index 3248278..dcbe092 100644 --- a/sys/kern/sysv_msg.c +++ b/sys/kern/sysv_msg.c @@ -62,8 +62,10 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/module.h> +#include <sys/mount.h> #include <sys/msg.h> #include <sys/racct.h> +#include <sys/sx.h> #include <sys/syscall.h> #include <sys/syscallsubr.h> #include <sys/sysent.h> @@ -80,6 +82,14 @@ static MALLOC_DEFINE(M_MSG, "msg", "SVID compatible message queues"); static int msginit(void); static int msgunload(void); static int sysvmsg_modload(struct module *, int, void *); +static void msq_remove(struct msqid_kernel *); +static struct prison *msg_find_prison(struct ucred *); +static int msq_prison_cansee(struct prison *, struct msqid_kernel *); +static int msg_prison_check(void *, void *); +static int msg_prison_set(void *, void *); +static int msg_prison_get(void *, void *); +static int msg_prison_remove(void *, void *); +static void msg_prison_cleanup(struct prison *); #ifdef MSG_DEBUG @@ -155,6 +165,7 @@ static struct msgmap *msgmaps; /* MSGSEG msgmap structures */ static struct msg *msghdrs; /* MSGTQL msg headers */ static struct msqid_kernel *msqids; /* MSGMNI msqid_kernel struct's */ static struct mtx msq_mtx; /* global mutex for message queues. */ +static unsigned msg_prison_slot;/* prison OSD slot */ static struct syscall_helper_data msg_syscalls[] = { SYSCALL_INIT_HELPER(msgctl), @@ -194,7 +205,15 @@ static struct syscall_helper_data msg32_syscalls[] = { static int msginit() { + struct prison *pr; + void *rsv; int i, error; + osd_method_t methods[PR_MAXMETHOD] = { + [PR_METHOD_CHECK] = msg_prison_check, + [PR_METHOD_SET] = msg_prison_set, + [PR_METHOD_GET] = msg_prison_get, + [PR_METHOD_REMOVE] = msg_prison_remove, + }; TUNABLE_INT_FETCH("kern.ipc.msgseg", &msginfo.msgseg); TUNABLE_INT_FETCH("kern.ipc.msgssz", &msginfo.msgssz); @@ -258,6 +277,29 @@ msginit() } mtx_init(&msq_mtx, "msq", NULL, MTX_DEF); + /* Set current prisons according to their allow.sysvipc. */ + msg_prison_slot = osd_jail_register(NULL, methods); + rsv = osd_reserve(msg_prison_slot); + prison_lock(&prison0); + (void)osd_jail_set_reserved(&prison0, msg_prison_slot, rsv, &prison0); + prison_unlock(&prison0); + rsv = NULL; + sx_slock(&allprison_lock); + TAILQ_FOREACH(pr, &allprison, pr_list) { + if (rsv == NULL) + rsv = osd_reserve(msg_prison_slot); + prison_lock(pr); + if ((pr->pr_allow & PR_ALLOW_SYSVIPC) && pr->pr_ref > 0) { + (void)osd_jail_set_reserved(pr, msg_prison_slot, rsv, + &prison0); + rsv = NULL; + } + prison_unlock(pr); + } + if (rsv != NULL) + osd_free_reserved(rsv); + sx_sunlock(&allprison_lock); + error = syscall_helper_register(msg_syscalls); if (error != 0) return (error); @@ -298,6 +340,8 @@ msgunload() if (msqid != msginfo.msgmni) return (EBUSY); + if (msg_prison_slot != 0) + osd_jail_deregister(msg_prison_slot); #ifdef MAC for (i = 0; i < msginfo.msgtql; i++) mac_sysvmsg_destroy(&msghdrs[i]); @@ -372,6 +416,67 @@ msg_freehdr(msghdr) #endif } +static void +msq_remove(struct msqid_kernel *msqkptr) +{ + struct msg *msghdr; + + racct_sub_cred(msqkptr->cred, RACCT_NMSGQ, 1); + racct_sub_cred(msqkptr->cred, RACCT_MSGQQUEUED, msqkptr->u.msg_qnum); + racct_sub_cred(msqkptr->cred, RACCT_MSGQSIZE, msqkptr->u.msg_cbytes); + crfree(msqkptr->cred); + msqkptr->cred = NULL; + + /* Free the message headers */ + msghdr = msqkptr->u.msg_first; + while (msghdr != NULL) { + struct msg *msghdr_tmp; + + /* Free the segments of each message */ + msqkptr->u.msg_cbytes -= msghdr->msg_ts; + msqkptr->u.msg_qnum--; + msghdr_tmp = msghdr; + msghdr = msghdr->msg_next; + msg_freehdr(msghdr_tmp); + } + + if (msqkptr->u.msg_cbytes != 0) + panic("msg_cbytes is screwed up"); + if (msqkptr->u.msg_qnum != 0) + panic("msg_qnum is screwed up"); + + msqkptr->u.msg_qbytes = 0; /* Mark it as free */ + +#ifdef MAC + mac_sysvmsq_cleanup(msqkptr); +#endif + + wakeup(msqkptr); +} + +static struct prison * +msg_find_prison(struct ucred *cred) +{ + struct prison *pr, *rpr; + + pr = cred->cr_prison; + prison_lock(pr); + rpr = osd_jail_get(pr, msg_prison_slot); + prison_unlock(pr); + return rpr; +} + +static int +msq_prison_cansee(struct prison *rpr, struct msqid_kernel *msqkptr) +{ + + if (msqkptr->cred == NULL || + !(rpr == msqkptr->cred->cr_prison || + prison_ischild(rpr, msqkptr->cred->cr_prison))) + return (EINVAL); + return (0); +} + #ifndef _SYS_SYSPROTO_H_ struct msgctl_args { int msqid; @@ -408,8 +513,10 @@ kern_msgctl(td, msqid, cmd, msqbuf) { int rval, error, msqix; register struct msqid_kernel *msqkptr; + struct prison *rpr; - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + rpr = msg_find_prison(td->td_ucred); + if (rpr == NULL) return (ENOSYS); msqix = IPCID_TO_IX(msqid); @@ -433,6 +540,13 @@ kern_msgctl(td, msqid, cmd, msqbuf) error = EINVAL; goto done2; } + + error = msq_prison_cansee(rpr, msqkptr); + if (error != 0) { + DPRINTF(("requester can't see prison\n")); + goto done2; + } + #ifdef MAC error = mac_sysvmsq_check_msqctl(td->td_ucred, msqkptr, cmd); if (error != 0) @@ -446,7 +560,9 @@ kern_msgctl(td, msqid, cmd, msqbuf) case IPC_RMID: { +#ifdef MAC struct msg *msghdr; +#endif if ((error = ipcperm(td, &msqkptr->u.msg_perm, IPC_M))) goto done2; @@ -468,37 +584,7 @@ kern_msgctl(td, msqid, cmd, msqbuf) } #endif - racct_sub_cred(msqkptr->cred, RACCT_NMSGQ, 1); - racct_sub_cred(msqkptr->cred, RACCT_MSGQQUEUED, msqkptr->u.msg_qnum); - racct_sub_cred(msqkptr->cred, RACCT_MSGQSIZE, msqkptr->u.msg_cbytes); - crfree(msqkptr->cred); - msqkptr->cred = NULL; - - /* Free the message headers */ - msghdr = msqkptr->u.msg_first; - while (msghdr != NULL) { - struct msg *msghdr_tmp; - - /* Free the segments of each message */ - msqkptr->u.msg_cbytes -= msghdr->msg_ts; - msqkptr->u.msg_qnum--; - msghdr_tmp = msghdr; - msghdr = msghdr->msg_next; - msg_freehdr(msghdr_tmp); - } - - if (msqkptr->u.msg_cbytes != 0) - panic("msg_cbytes is screwed up"); - if (msqkptr->u.msg_qnum != 0) - panic("msg_qnum is screwed up"); - - msqkptr->u.msg_qbytes = 0; /* Mark it as free */ - -#ifdef MAC - mac_sysvmsq_cleanup(msqkptr); -#endif - - wakeup(msqkptr); + msq_remove(msqkptr); } break; @@ -535,6 +621,8 @@ kern_msgctl(td, msqid, cmd, msqbuf) goto done2; } *msqbuf = msqkptr->u; + if (td->td_ucred->cr_prison != msqkptr->cred->cr_prison) + msqbuf->msg_perm.key = IPC_PRIVATE; break; default: @@ -570,7 +658,7 @@ sys_msgget(td, uap) DPRINTF(("msgget(0x%x, 0%o)\n", key, msgflg)); - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + if (msg_find_prison(cred) == NULL) return (ENOSYS); mtx_lock(&msq_mtx); @@ -578,6 +666,8 @@ sys_msgget(td, uap) for (msqid = 0; msqid < msginfo.msgmni; msqid++) { msqkptr = &msqids[msqid]; if (msqkptr->u.msg_qbytes != 0 && + msqkptr->cred != NULL && + msqkptr->cred->cr_prison == cred->cr_prison && msqkptr->u.msg_perm.key == key) break; } @@ -690,12 +780,14 @@ kern_msgsnd(td, msqid, msgp, msgsz, msgflg, mtype) int msqix, segs_needed, error = 0; register struct msqid_kernel *msqkptr; register struct msg *msghdr; + struct prison *rpr; short next; #ifdef RACCT size_t saved_msgsz; #endif - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + rpr = msg_find_prison(td->td_ucred); + if (rpr == NULL) return (ENOSYS); mtx_lock(&msq_mtx); @@ -720,6 +812,11 @@ kern_msgsnd(td, msqid, msgp, msgsz, msgflg, mtype) goto done2; } + if ((error = msq_prison_cansee(rpr, msqkptr))) { + DPRINTF(("requester can't see prison\n")); + goto done2; + } + if ((error = ipcperm(td, &msqkptr->u.msg_perm, IPC_W))) { DPRINTF(("requester doesn't have write access\n")); goto done2; @@ -1058,10 +1155,12 @@ kern_msgrcv(td, msqid, msgp, msgsz, msgtyp, msgflg, mtype) size_t len; register struct msqid_kernel *msqkptr; register struct msg *msghdr; + struct prison *rpr; int msqix, error = 0; short next; - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + rpr = msg_find_prison(td->td_ucred); + if (rpr == NULL) return (ENOSYS); msqix = IPCID_TO_IX(msqid); @@ -1085,6 +1184,11 @@ kern_msgrcv(td, msqid, msgp, msgsz, msgtyp, msgflg, mtype) goto done2; } + if ((error = msq_prison_cansee(rpr, msqkptr))) { + DPRINTF(("requester can't see prison\n")); + goto done2; + } + if ((error = ipcperm(td, &msqkptr->u.msg_perm, IPC_R))) { DPRINTF(("requester doesn't have read access\n")); goto done2; @@ -1324,9 +1428,29 @@ sys_msgrcv(td, uap) static int sysctl_msqids(SYSCTL_HANDLER_ARGS) { + struct msqid_kernel tmsqk; + struct prison *pr, *rpr; + int error, i; - return (SYSCTL_OUT(req, msqids, - sizeof(struct msqid_kernel) * msginfo.msgmni)); + pr = req->td->td_ucred->cr_prison; + rpr = msg_find_prison(req->td->td_ucred); + error = 0; + for (i = 0; i < msginfo.msgmni; i++) { + mtx_lock(&msq_mtx); + if (msqids[i].u.msg_qbytes == 0 || rpr == NULL || + msq_prison_cansee(rpr, &msqids[i]) != 0) + bzero(&tmsqk, sizeof(tmsqk)); + else { + tmsqk = msqids[i]; + if (tmsqk.cred->cr_prison != pr) + tmsqk.u.msg_perm.key = IPC_PRIVATE; + } + mtx_unlock(&msq_mtx); + error = SYSCTL_OUT(req, &tmsqk, sizeof(tmsqk)); + if (error != 0) + break; + } + return (error); } SYSCTL_INT(_kern_ipc, OID_AUTO, msgmax, CTLFLAG_RD, &msginfo.msgmax, 0, @@ -1341,9 +1465,185 @@ SYSCTL_INT(_kern_ipc, OID_AUTO, msgssz, CTLFLAG_RDTUN, &msginfo.msgssz, 0, "Size of a message segment"); SYSCTL_INT(_kern_ipc, OID_AUTO, msgseg, CTLFLAG_RDTUN, &msginfo.msgseg, 0, "Number of message segments"); -SYSCTL_PROC(_kern_ipc, OID_AUTO, msqids, CTLTYPE_OPAQUE | CTLFLAG_RD, +SYSCTL_PROC(_kern_ipc, OID_AUTO, msqids, + CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0, sysctl_msqids, "", "Message queue IDs"); +static int +msg_prison_check(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *prpr; + struct vfsoptlist *opts = data; + int error, jsys; + + /* + * sysvmsg is a jailsys integer. + * It must be "disable" if the parent jail is disabled. + */ + error = vfs_copyopt(opts, "sysvmsg", &jsys, sizeof(jsys)); + if (error != ENOENT) { + if (error != 0) + return (error); + switch (jsys) { + case JAIL_SYS_DISABLE: + break; + case JAIL_SYS_NEW: + case JAIL_SYS_INHERIT: + prison_lock(pr->pr_parent); + prpr = osd_jail_get(pr->pr_parent, msg_prison_slot); + prison_unlock(pr->pr_parent); + if (prpr == NULL) + return (EPERM); + break; + default: + return (EINVAL); + } + } + + return (0); +} + +static int +msg_prison_set(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *tpr, *orpr, *nrpr, *trpr; + struct vfsoptlist *opts = data; + void *rsv; + int jsys, descend; + + /* + * sysvmsg controls which jail is the root of the associated msgs (this + * jail or same as the parent), or if the feature is available at all. + */ + if (vfs_copyopt(opts, "sysvmsg", &jsys, sizeof(jsys)) == ENOENT) + jsys = vfs_flagopt(opts, "allow.sysvipc", NULL, 0) + ? JAIL_SYS_INHERIT + : vfs_flagopt(opts, "allow.nosysvipc", NULL, 0) + ? JAIL_SYS_DISABLE + : -1; + if (jsys == JAIL_SYS_DISABLE) { + prison_lock(pr); + orpr = osd_jail_get(pr, msg_prison_slot); + if (orpr != NULL) + osd_jail_del(pr, msg_prison_slot); + prison_unlock(pr); + if (orpr != NULL) { + if (orpr == pr) + msg_prison_cleanup(pr); + /* Disable all child jails as well. */ + FOREACH_PRISON_DESCENDANT(pr, tpr, descend) { + prison_lock(tpr); + trpr = osd_jail_get(tpr, msg_prison_slot); + if (trpr != NULL) { + osd_jail_del(tpr, msg_prison_slot); + prison_unlock(tpr); + if (trpr == tpr) + msg_prison_cleanup(tpr); + } else { + prison_unlock(tpr); + descend = 0; + } + } + } + } else if (jsys != -1) { + if (jsys == JAIL_SYS_NEW) + nrpr = pr; + else { + prison_lock(pr->pr_parent); + nrpr = osd_jail_get(pr->pr_parent, msg_prison_slot); + prison_unlock(pr->pr_parent); + } + rsv = osd_reserve(msg_prison_slot); + prison_lock(pr); + orpr = osd_jail_get(pr, msg_prison_slot); + if (orpr != nrpr) + (void)osd_jail_set_reserved(pr, msg_prison_slot, rsv, + nrpr); + else + osd_free_reserved(rsv); + prison_unlock(pr); + if (orpr != nrpr) { + if (orpr == pr) + msg_prison_cleanup(pr); + if (orpr != NULL) { + /* Change child jails matching the old root, */ + FOREACH_PRISON_DESCENDANT(pr, tpr, descend) { + prison_lock(tpr); + trpr = osd_jail_get(tpr, + msg_prison_slot); + if (trpr == orpr) { + (void)osd_jail_set(tpr, + msg_prison_slot, nrpr); + prison_unlock(tpr); + if (trpr == tpr) + msg_prison_cleanup(tpr); + } else { + prison_unlock(tpr); + descend = 0; + } + } + } + } + } + + return (0); +} + +static int +msg_prison_get(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *rpr; + struct vfsoptlist *opts = data; + int error, jsys; + + /* Set sysvmsg based on the jail's root prison. */ + prison_lock(pr); + rpr = osd_jail_get(pr, msg_prison_slot); + prison_unlock(pr); + jsys = rpr == NULL ? JAIL_SYS_DISABLE + : rpr == pr ? JAIL_SYS_NEW : JAIL_SYS_INHERIT; + error = vfs_setopt(opts, "sysvmsg", &jsys, sizeof(jsys)); + if (error == ENOENT) + error = 0; + return (error); +} + +static int +msg_prison_remove(void *obj, void *data __unused) +{ + struct prison *pr = obj; + struct prison *rpr; + + prison_lock(pr); + rpr = osd_jail_get(pr, msg_prison_slot); + prison_unlock(pr); + if (rpr == pr) + msg_prison_cleanup(pr); + return (0); +} + +static void +msg_prison_cleanup(struct prison *pr) +{ + struct msqid_kernel *msqkptr; + int i; + + /* Remove any msqs that belong to this jail. */ + mtx_lock(&msq_mtx); + for (i = 0; i < msginfo.msgmni; i++) { + msqkptr = &msqids[i]; + if (msqkptr->u.msg_qbytes != 0 && + msqkptr->cred != NULL && msqkptr->cred->cr_prison == pr) + msq_remove(msqkptr); + } + mtx_unlock(&msq_mtx); +} + +SYSCTL_JAIL_PARAM_SYS_NODE(sysvmsg, CTLFLAG_RW, "SYSV message queues"); + #ifdef COMPAT_FREEBSD32 int freebsd32_msgsys(struct thread *td, struct freebsd32_msgsys_args *uap) @@ -1522,8 +1822,6 @@ sys_msgsys(td, uap) { int error; - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) - return (ENOSYS); if (uap->which < 0 || uap->which >= sizeof(msgcalls)/sizeof(msgcalls[0])) return (EINVAL); diff --git a/sys/kern/sysv_sem.c b/sys/kern/sysv_sem.c index 4337d4d..c39d93d 100644 --- a/sys/kern/sysv_sem.c +++ b/sys/kern/sysv_sem.c @@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/racct.h> #include <sys/sem.h> +#include <sys/sx.h> #include <sys/syscall.h> #include <sys/syscallsubr.h> #include <sys/sysent.h> @@ -78,7 +79,16 @@ static int sysvsem_modload(struct module *, int, void *); static int semunload(void); static void semexit_myhook(void *arg, struct proc *p); static int sysctl_sema(SYSCTL_HANDLER_ARGS); -static int semvalid(int semid, struct semid_kernel *semakptr); +static int semvalid(int semid, struct prison *rpr, + struct semid_kernel *semakptr); +static void sem_remove(int semidx, struct ucred *cred); +static struct prison *sem_find_prison(struct ucred *); +static int sem_prison_cansee(struct prison *, struct semid_kernel *); +static int sem_prison_check(void *, void *); +static int sem_prison_set(void *, void *); +static int sem_prison_get(void *, void *); +static int sem_prison_remove(void *, void *); +static void sem_prison_cleanup(struct prison *); #ifndef _SYS_SYSPROTO_H_ struct __semctl_args; @@ -104,6 +114,7 @@ LIST_HEAD(, sem_undo) semu_list; /* list of active undo structures */ LIST_HEAD(, sem_undo) semu_free_list; /* list of free undo structures */ static int *semu; /* undo structure pool */ static eventhandler_tag semexit_tag; +static unsigned sem_prison_slot; /* prison OSD slot */ #define SEMUNDO_MTX sem_undo_mtx #define SEMUNDO_LOCK() mtx_lock(&SEMUNDO_MTX); @@ -208,7 +219,8 @@ SYSCTL_INT(_kern_ipc, OID_AUTO, semvmx, CTLFLAG_RW, &seminfo.semvmx, 0, "Semaphore maximum value"); SYSCTL_INT(_kern_ipc, OID_AUTO, semaem, CTLFLAG_RW, &seminfo.semaem, 0, "Adjust on exit max value"); -SYSCTL_PROC(_kern_ipc, OID_AUTO, sema, CTLTYPE_OPAQUE | CTLFLAG_RD, +SYSCTL_PROC(_kern_ipc, OID_AUTO, sema, + CTLTYPE_OPAQUE | CTLFLAG_RD | CTLFLAG_MPSAFE, NULL, 0, sysctl_sema, "", "Semaphore id pool"); static struct syscall_helper_data sem_syscalls[] = { @@ -247,7 +259,15 @@ static struct syscall_helper_data sem32_syscalls[] = { static int seminit(void) { + struct prison *pr; + void *rsv; int i, error; + osd_method_t methods[PR_MAXMETHOD] = { + [PR_METHOD_CHECK] = sem_prison_check, + [PR_METHOD_SET] = sem_prison_set, + [PR_METHOD_GET] = sem_prison_get, + [PR_METHOD_REMOVE] = sem_prison_remove, + }; TUNABLE_INT_FETCH("kern.ipc.semmni", &seminfo.semmni); TUNABLE_INT_FETCH("kern.ipc.semmns", &seminfo.semmns); @@ -288,6 +308,29 @@ seminit(void) semexit_tag = EVENTHANDLER_REGISTER(process_exit, semexit_myhook, NULL, EVENTHANDLER_PRI_ANY); + /* Set current prisons according to their allow.sysvipc. */ + sem_prison_slot = osd_jail_register(NULL, methods); + rsv = osd_reserve(sem_prison_slot); + prison_lock(&prison0); + (void)osd_jail_set_reserved(&prison0, sem_prison_slot, rsv, &prison0); + prison_unlock(&prison0); + rsv = NULL; + sx_slock(&allprison_lock); + TAILQ_FOREACH(pr, &allprison, pr_list) { + if (rsv == NULL) + rsv = osd_reserve(sem_prison_slot); + prison_lock(pr); + if ((pr->pr_allow & PR_ALLOW_SYSVIPC) && pr->pr_ref > 0) { + (void)osd_jail_set_reserved(pr, sem_prison_slot, rsv, + &prison0); + rsv = NULL; + } + prison_unlock(pr); + } + if (rsv != NULL) + osd_free_reserved(rsv); + sx_sunlock(&allprison_lock); + error = syscall_helper_register(sem_syscalls); if (error != 0) return (error); @@ -313,6 +356,8 @@ semunload(void) #endif syscall_helper_unregister(sem_syscalls); EVENTHANDLER_DEREGISTER(process_exit, semexit_tag); + if (sem_prison_slot != 0) + osd_jail_deregister(sem_prison_slot); #ifdef MAC for (i = 0; i < seminfo.semmni; i++) mac_sysvsem_destroy(&sema[i]); @@ -499,11 +544,74 @@ semundo_clear(int semid, int semnum) } static int -semvalid(int semid, struct semid_kernel *semakptr) +semvalid(int semid, struct prison *rpr, struct semid_kernel *semakptr) { return ((semakptr->u.sem_perm.mode & SEM_ALLOC) == 0 || - semakptr->u.sem_perm.seq != IPCID_TO_SEQ(semid) ? EINVAL : 0); + semakptr->u.sem_perm.seq != IPCID_TO_SEQ(semid) || + sem_prison_cansee(rpr, semakptr) ? EINVAL : 0); +} + +static void +sem_remove(int semidx, struct ucred *cred) +{ + struct semid_kernel *semakptr; + int i; + + KASSERT(semidx >= 0 && semidx < seminfo.semmni, + ("semidx out of bounds")); + semakptr = &sema[semidx]; + semakptr->u.sem_perm.cuid = cred ? cred->cr_uid : 0; + semakptr->u.sem_perm.uid = cred ? cred->cr_uid : 0; + semakptr->u.sem_perm.mode = 0; + racct_sub_cred(semakptr->cred, RACCT_NSEM, semakptr->u.sem_nsems); + crfree(semakptr->cred); + semakptr->cred = NULL; + SEMUNDO_LOCK(); + semundo_clear(semidx, -1); + SEMUNDO_UNLOCK(); +#ifdef MAC + mac_sysvsem_cleanup(semakptr); +#endif + wakeup(semakptr); + for (i = 0; i < seminfo.semmni; i++) { + if ((sema[i].u.sem_perm.mode & SEM_ALLOC) && + sema[i].u.sem_base > semakptr->u.sem_base) + mtx_lock_flags(&sema_mtx[i], LOP_DUPOK); + } + for (i = semakptr->u.sem_base - sem; i < semtot; i++) + sem[i] = sem[i + semakptr->u.sem_nsems]; + for (i = 0; i < seminfo.semmni; i++) { + if ((sema[i].u.sem_perm.mode & SEM_ALLOC) && + sema[i].u.sem_base > semakptr->u.sem_base) { + sema[i].u.sem_base -= semakptr->u.sem_nsems; + mtx_unlock(&sema_mtx[i]); + } + } + semtot -= semakptr->u.sem_nsems; +} + +static struct prison * +sem_find_prison(struct ucred *cred) +{ + struct prison *pr, *rpr; + + pr = cred->cr_prison; + prison_lock(pr); + rpr = osd_jail_get(pr, sem_prison_slot); + prison_unlock(pr); + return rpr; +} + +static int +sem_prison_cansee(struct prison *rpr, struct semid_kernel *semakptr) +{ + + if (semakptr->cred == NULL || + !(rpr == semakptr->cred->cr_prison || + prison_ischild(rpr, semakptr->cred->cr_prison))) + return (EINVAL); + return (0); } /* @@ -582,6 +690,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, u_short *array; struct ucred *cred = td->td_ucred; int i, error; + struct prison *rpr; struct semid_ds *sbuf; struct semid_kernel *semakptr; struct mtx *sema_mtxp; @@ -590,7 +699,9 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, DPRINTF(("call to semctl(%d, %d, %d, 0x%p)\n", semid, semnum, cmd, arg)); - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + + rpr = sem_find_prison(td->td_ucred); + if (sem == NULL) return (ENOSYS); array = NULL; @@ -610,6 +721,8 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, error = EINVAL; goto done2; } + if ((error = sem_prison_cansee(rpr, semakptr))) + goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_R))) goto done2; #ifdef MAC @@ -618,6 +731,8 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, goto done2; #endif bcopy(&semakptr->u, arg->buf, sizeof(struct semid_ds)); + if (cred->cr_prison != semakptr->cred->cr_prison) + arg->buf->sem_perm.key = IPC_PRIVATE; *rval = IXSEQ_TO_IPCID(semid, semakptr->u.sem_perm); mtx_unlock(sema_mtxp); return (0); @@ -632,6 +747,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, if (cmd == IPC_RMID) mtx_lock(&sem_mtx); mtx_lock(sema_mtxp); + #ifdef MAC error = mac_sysvsem_check_semctl(cred, semakptr, cmd); if (error != 0) @@ -643,42 +759,15 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, switch (cmd) { case IPC_RMID: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_M))) goto done2; - semakptr->u.sem_perm.cuid = cred->cr_uid; - semakptr->u.sem_perm.uid = cred->cr_uid; - semakptr->u.sem_perm.mode = 0; - racct_sub_cred(semakptr->cred, RACCT_NSEM, semakptr->u.sem_nsems); - crfree(semakptr->cred); - semakptr->cred = NULL; - SEMUNDO_LOCK(); - semundo_clear(semidx, -1); - SEMUNDO_UNLOCK(); -#ifdef MAC - mac_sysvsem_cleanup(semakptr); -#endif - wakeup(semakptr); - for (i = 0; i < seminfo.semmni; i++) { - if ((sema[i].u.sem_perm.mode & SEM_ALLOC) && - sema[i].u.sem_base > semakptr->u.sem_base) - mtx_lock_flags(&sema_mtx[i], LOP_DUPOK); - } - for (i = semakptr->u.sem_base - sem; i < semtot; i++) - sem[i] = sem[i + semakptr->u.sem_nsems]; - for (i = 0; i < seminfo.semmni; i++) { - if ((sema[i].u.sem_perm.mode & SEM_ALLOC) && - sema[i].u.sem_base > semakptr->u.sem_base) { - sema[i].u.sem_base -= semakptr->u.sem_nsems; - mtx_unlock(&sema_mtx[i]); - } - } - semtot -= semakptr->u.sem_nsems; + sem_remove(semidx, cred); break; case IPC_SET: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_M))) goto done2; @@ -691,15 +780,17 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, break; case IPC_STAT: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_R))) goto done2; bcopy(&semakptr->u, arg->buf, sizeof(struct semid_ds)); + if (cred->cr_prison != semakptr->cred->cr_prison) + arg->buf->sem_perm.key = IPC_PRIVATE; break; case GETNCNT: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_R))) goto done2; @@ -711,7 +802,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, break; case GETPID: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_R))) goto done2; @@ -723,7 +814,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, break; case GETVAL: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_R))) goto done2; @@ -759,7 +850,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, mtx_unlock(sema_mtxp); array = malloc(sizeof(*array) * count, M_TEMP, M_WAITOK); mtx_lock(sema_mtxp); - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; KASSERT(count == semakptr->u.sem_nsems, ("nsems changed")); if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_R))) @@ -772,7 +863,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, break; case GETZCNT: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_R))) goto done2; @@ -784,7 +875,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, break; case SETVAL: - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_W))) goto done2; @@ -815,7 +906,7 @@ kern_semctl(struct thread *td, int semid, int semnum, int cmd, mtx_lock(sema_mtxp); if (error) break; - if ((error = semvalid(semid, semakptr)) != 0) + if ((error = semvalid(semid, rpr, semakptr)) != 0) goto done2; KASSERT(count == semakptr->u.sem_nsems, ("nsems changed")); if ((error = ipcperm(td, &semakptr->u.sem_perm, IPC_W))) @@ -865,13 +956,16 @@ sys_semget(struct thread *td, struct semget_args *uap) struct ucred *cred = td->td_ucred; DPRINTF(("semget(0x%x, %d, 0%o)\n", key, nsems, semflg)); - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + + if (sem_find_prison(cred) == NULL) return (ENOSYS); mtx_lock(&sem_mtx); if (key != IPC_PRIVATE) { for (semid = 0; semid < seminfo.semmni; semid++) { if ((sema[semid].u.sem_perm.mode & SEM_ALLOC) && + sema[semid].cred != NULL && + sema[semid].cred->cr_prison == cred->cr_prison && sema[semid].u.sem_perm.key == key) break; } @@ -988,6 +1082,7 @@ sys_semop(struct thread *td, struct semop_args *uap) struct sembuf small_sops[SMALL_SOPS]; int semid = uap->semid; size_t nsops = uap->nsops; + struct prison *rpr; struct sembuf *sops; struct semid_kernel *semakptr; struct sembuf *sopptr = 0; @@ -1004,7 +1099,8 @@ sys_semop(struct thread *td, struct semop_args *uap) #endif DPRINTF(("call to semop(%d, %p, %u)\n", semid, sops, nsops)); - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + rpr = sem_find_prison(td->td_ucred); + if (sem == NULL) return (ENOSYS); semid = IPCID_TO_IX(semid); /* Convert back to zero origin */ @@ -1054,6 +1150,8 @@ sys_semop(struct thread *td, struct semop_args *uap) error = EINVAL; goto done2; } + if ((error = sem_prison_cansee(rpr, semakptr)) != 0) + goto done2; /* * Initial pass thru sops to see what permissions are needed. * Also perform any checks that don't need repeating on each @@ -1377,11 +1475,207 @@ semexit_myhook(void *arg, struct proc *p) static int sysctl_sema(SYSCTL_HANDLER_ARGS) { + struct prison *pr, *rpr; + struct semid_kernel tsemak; + int error, i; + + pr = req->td->td_ucred->cr_prison; + rpr = sem_find_prison(req->td->td_ucred); + error = 0; + for (i = 0; i < seminfo.semmni; i++) { + mtx_lock(&sema_mtx[i]); + if ((sema[i].u.sem_perm.mode & SEM_ALLOC) == 0 || + rpr == NULL || sem_prison_cansee(rpr, &sema[i]) != 0) + bzero(&tsemak, sizeof(tsemak)); + else { + tsemak = sema[i]; + if (tsemak.cred->cr_prison != pr) + tsemak.u.sem_perm.key = IPC_PRIVATE; + } + mtx_unlock(&sema_mtx[i]); + error = SYSCTL_OUT(req, &tsemak, sizeof(tsemak)); + if (error != 0) + break; + } + return (error); +} + +static int +sem_prison_check(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *prpr; + struct vfsoptlist *opts = data; + int error, jsys; + + /* + * sysvsem is a jailsys integer. + * It must be "disable" if the parent jail is disabled. + */ + error = vfs_copyopt(opts, "sysvsem", &jsys, sizeof(jsys)); + if (error != ENOENT) { + if (error != 0) + return (error); + switch (jsys) { + case JAIL_SYS_DISABLE: + break; + case JAIL_SYS_NEW: + case JAIL_SYS_INHERIT: + prison_lock(pr->pr_parent); + prpr = osd_jail_get(pr->pr_parent, sem_prison_slot); + prison_unlock(pr->pr_parent); + if (prpr == NULL) + return (EPERM); + break; + default: + return (EINVAL); + } + } - return (SYSCTL_OUT(req, sema, - sizeof(struct semid_kernel) * seminfo.semmni)); + return (0); } +static int +sem_prison_set(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *tpr, *orpr, *nrpr, *trpr; + struct vfsoptlist *opts = data; + void *rsv; + int jsys, descend; + + /* + * sysvsem controls which jail is the root of the associated sems (this + * jail or same as the parent), or if the feature is available at all. + */ + if (vfs_copyopt(opts, "sysvsem", &jsys, sizeof(jsys)) == ENOENT) + jsys = vfs_flagopt(opts, "allow.sysvipc", NULL, 0) + ? JAIL_SYS_INHERIT + : vfs_flagopt(opts, "allow.nosysvipc", NULL, 0) + ? JAIL_SYS_DISABLE + : -1; + if (jsys == JAIL_SYS_DISABLE) { + prison_lock(pr); + orpr = osd_jail_get(pr, sem_prison_slot); + if (orpr != NULL) + osd_jail_del(pr, sem_prison_slot); + prison_unlock(pr); + if (orpr != NULL) { + if (orpr == pr) + sem_prison_cleanup(pr); + /* Disable all child jails as well. */ + FOREACH_PRISON_DESCENDANT(pr, tpr, descend) { + prison_lock(tpr); + trpr = osd_jail_get(tpr, sem_prison_slot); + if (trpr != NULL) { + osd_jail_del(tpr, sem_prison_slot); + prison_unlock(tpr); + if (trpr == tpr) + sem_prison_cleanup(tpr); + } else { + prison_unlock(tpr); + descend = 0; + } + } + } + } else if (jsys != -1) { + if (jsys == JAIL_SYS_NEW) + nrpr = pr; + else { + prison_lock(pr->pr_parent); + nrpr = osd_jail_get(pr->pr_parent, sem_prison_slot); + prison_unlock(pr->pr_parent); + } + rsv = osd_reserve(sem_prison_slot); + prison_lock(pr); + orpr = osd_jail_get(pr, sem_prison_slot); + if (orpr != nrpr) + (void)osd_jail_set_reserved(pr, sem_prison_slot, rsv, + nrpr); + else + osd_free_reserved(rsv); + prison_unlock(pr); + if (orpr != nrpr) { + if (orpr == pr) + sem_prison_cleanup(pr); + if (orpr != NULL) { + /* Change child jails matching the old root, */ + FOREACH_PRISON_DESCENDANT(pr, tpr, descend) { + prison_lock(tpr); + trpr = osd_jail_get(tpr, + sem_prison_slot); + if (trpr == orpr) { + (void)osd_jail_set(tpr, + sem_prison_slot, nrpr); + prison_unlock(tpr); + if (trpr == tpr) + sem_prison_cleanup(tpr); + } else { + prison_unlock(tpr); + descend = 0; + } + } + } + } + } + + return (0); +} + +static int +sem_prison_get(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *rpr; + struct vfsoptlist *opts = data; + int error, jsys; + + /* Set sysvsem based on the jail's root prison. */ + prison_lock(pr); + rpr = osd_jail_get(pr, sem_prison_slot); + prison_unlock(pr); + jsys = rpr == NULL ? JAIL_SYS_DISABLE + : rpr == pr ? JAIL_SYS_NEW : JAIL_SYS_INHERIT; + error = vfs_setopt(opts, "sysvsem", &jsys, sizeof(jsys)); + if (error == ENOENT) + error = 0; + return (error); +} + +static int +sem_prison_remove(void *obj, void *data __unused) +{ + struct prison *pr = obj; + struct prison *rpr; + + prison_lock(pr); + rpr = osd_jail_get(pr, sem_prison_slot); + prison_unlock(pr); + if (rpr == pr) + sem_prison_cleanup(pr); + return (0); +} + +static void +sem_prison_cleanup(struct prison *pr) +{ + int i; + + /* Remove any sems that belong to this jail. */ + mtx_lock(&sem_mtx); + for (i = 0; i < seminfo.semmni; i++) { + if ((sema[i].u.sem_perm.mode & SEM_ALLOC) && + sema[i].cred != NULL && sema[i].cred->cr_prison == pr) { + mtx_lock(&sema_mtx[i]); + sem_remove(i, NULL); + mtx_unlock(&sema_mtx[i]); + } + } + mtx_unlock(&sem_mtx); +} + +SYSCTL_JAIL_PARAM_SYS_NODE(sysvsem, CTLFLAG_RW, "SYSV semaphores"); + #if defined(COMPAT_FREEBSD4) || defined(COMPAT_FREEBSD5) || \ defined(COMPAT_FREEBSD6) || defined(COMPAT_FREEBSD7) @@ -1408,8 +1702,6 @@ sys_semsys(td, uap) { int error; - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) - return (ENOSYS); if (uap->which < 0 || uap->which >= sizeof(semcalls)/sizeof(semcalls[0])) return (EINVAL); diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c index 613a462..cced3e3 100644 --- a/sys/kern/sysv_shm.c +++ b/sys/kern/sysv_shm.c @@ -112,7 +112,8 @@ static int shmget_existing(struct thread *td, struct shmget_args *uap, static int shm_last_free, shm_nused, shmalloced; vm_size_t shm_committed; -static struct shmid_kernel *shmsegs; +static struct shmid_kernel *shmsegs; +static unsigned shm_prison_slot; struct shmmap_state { vm_offset_t va; @@ -120,8 +121,8 @@ struct shmmap_state { }; static void shm_deallocate_segment(struct shmid_kernel *); -static int shm_find_segment_by_key(key_t); -static struct shmid_kernel *shm_find_segment(int, bool); +static int shm_find_segment_by_key(struct prison *, key_t); +static struct shmid_kernel *shm_find_segment(struct prison *, int, bool); static int shm_delete_mapping(struct vmspace *vm, struct shmmap_state *); static void shmrealloc(void); static int shminit(void); @@ -130,6 +131,14 @@ static int shmunload(void); static void shmexit_myhook(struct vmspace *vm); static void shmfork_myhook(struct proc *p1, struct proc *p2); static int sysctl_shmsegs(SYSCTL_HANDLER_ARGS); +static void shm_remove(struct shmid_kernel *, int); +static struct prison *shm_find_prison(struct ucred *); +static int shm_prison_cansee(struct prison *, struct shmid_kernel *); +static int shm_prison_check(void *, void *); +static int shm_prison_set(void *, void *); +static int shm_prison_get(void *, void *); +static int shm_prison_remove(void *, void *); +static void shm_prison_cleanup(struct prison *); /* * Tuneable values. @@ -189,12 +198,14 @@ static struct sx sysvshmsx; #define SYSVSHM_ASSERT_LOCKED() sx_assert(&sysvshmsx, SA_XLOCKED) static int -shm_find_segment_by_key(key_t key) +shm_find_segment_by_key(struct prison *pr, key_t key) { int i; for (i = 0; i < shmalloced; i++) if ((shmsegs[i].u.shm_perm.mode & SHMSEG_ALLOCATED) && + shmsegs[i].cred != NULL && + shmsegs[i].cred->cr_prison == pr && shmsegs[i].u.shm_perm.key == key) return (i); return (-1); @@ -205,7 +216,7 @@ shm_find_segment_by_key(key_t key) * is_shmid is false. */ static struct shmid_kernel * -shm_find_segment(int arg, bool is_shmid) +shm_find_segment(struct prison *rpr, int arg, bool is_shmid) { struct shmid_kernel *shmseg; int segnum; @@ -217,7 +228,8 @@ shm_find_segment(int arg, bool is_shmid) if ((shmseg->u.shm_perm.mode & SHMSEG_ALLOCATED) == 0 || (!shm_allow_removed && (shmseg->u.shm_perm.mode & SHMSEG_REMOVED) != 0) || - (is_shmid && shmseg->u.shm_perm.seq != IPCID_TO_SEQ(arg))) + (is_shmid && shmseg->u.shm_perm.seq != IPCID_TO_SEQ(arg)) || + shm_prison_cansee(rpr, shmseg) != 0) return (NULL); return (shmseg); } @@ -271,6 +283,41 @@ shm_delete_mapping(struct vmspace *vm, struct shmmap_state *shmmap_s) return (0); } +static void +shm_remove(struct shmid_kernel *shmseg, int segnum) +{ + + shmseg->u.shm_perm.key = IPC_PRIVATE; + shmseg->u.shm_perm.mode |= SHMSEG_REMOVED; + if (shmseg->u.shm_nattch <= 0) { + shm_deallocate_segment(shmseg); + shm_last_free = segnum; + } +} + +static struct prison * +shm_find_prison(struct ucred *cred) +{ + struct prison *pr, *rpr; + + pr = cred->cr_prison; + prison_lock(pr); + rpr = osd_jail_get(pr, shm_prison_slot); + prison_unlock(pr); + return rpr; +} + +static int +shm_prison_cansee(struct prison *rpr, struct shmid_kernel *shmseg) +{ + + if (shmseg->cred == NULL || + !(rpr == shmseg->cred->cr_prison || + prison_ischild(rpr, shmseg->cred->cr_prison))) + return (EINVAL); + return (0); +} + static int kern_shmdt_locked(struct thread *td, const void *shmaddr) { @@ -282,7 +329,7 @@ kern_shmdt_locked(struct thread *td, const void *shmaddr) int error, i; SYSVSHM_ASSERT_LOCKED(); - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + if (shm_find_prison(td->td_ucred) == NULL) return (ENOSYS); shmmap_s = p->p_vmspace->vm_shm; if (shmmap_s == NULL) @@ -325,6 +372,7 @@ static int kern_shmat_locked(struct thread *td, int shmid, const void *shmaddr, int shmflg) { + struct prison *rpr; struct proc *p = td->td_proc; struct shmid_kernel *shmseg; struct shmmap_state *shmmap_s; @@ -334,7 +382,8 @@ kern_shmat_locked(struct thread *td, int shmid, const void *shmaddr, int error, i, rv; SYSVSHM_ASSERT_LOCKED(); - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + rpr = shm_find_prison(td->td_ucred); + if (rpr == NULL) return (ENOSYS); shmmap_s = p->p_vmspace->vm_shm; if (shmmap_s == NULL) { @@ -345,7 +394,7 @@ kern_shmat_locked(struct thread *td, int shmid, const void *shmaddr, KASSERT(p->p_vmspace->vm_shm == NULL, ("raced")); p->p_vmspace->vm_shm = shmmap_s; } - shmseg = shm_find_segment(shmid, true); + shmseg = shm_find_segment(rpr, shmid, true); if (shmseg == NULL) return (EINVAL); error = ipcperm(td, &shmseg->u.shm_perm, @@ -433,6 +482,7 @@ static int kern_shmctl_locked(struct thread *td, int shmid, int cmd, void *buf, size_t *bufsz) { + struct prison *rpr; struct shmid_kernel *shmseg; struct shmid_ds *shmidp; struct shm_info shm_info; @@ -440,7 +490,8 @@ kern_shmctl_locked(struct thread *td, int shmid, int cmd, void *buf, SYSVSHM_ASSERT_LOCKED(); - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + rpr = shm_find_prison(td->td_ucred); + if (rpr == NULL) return (ENOSYS); error = 0; @@ -474,7 +525,7 @@ kern_shmctl_locked(struct thread *td, int shmid, int cmd, void *buf, return (0); } } - shmseg = shm_find_segment(shmid, cmd != SHM_STAT); + shmseg = shm_find_segment(rpr, shmid, cmd != SHM_STAT); if (shmseg == NULL) return (EINVAL); #ifdef MAC @@ -485,10 +536,13 @@ kern_shmctl_locked(struct thread *td, int shmid, int cmd, void *buf, switch (cmd) { case SHM_STAT: case IPC_STAT: + shmidp = (struct shmid_ds *)buf; error = ipcperm(td, &shmseg->u.shm_perm, IPC_R); if (error != 0) return (error); - memcpy(buf, &shmseg->u, sizeof(struct shmid_ds)); + memcpy(shmidp, &shmseg->u, sizeof(struct shmid_ds)); + if (td->td_ucred->cr_prison != shmseg->cred->cr_prison) + shmidp->shm_perm.key = IPC_PRIVATE; if (bufsz != NULL) *bufsz = sizeof(struct shmid_ds); if (cmd == SHM_STAT) { @@ -512,12 +566,7 @@ kern_shmctl_locked(struct thread *td, int shmid, int cmd, void *buf, error = ipcperm(td, &shmseg->u.shm_perm, IPC_M); if (error != 0) return (error); - shmseg->u.shm_perm.key = IPC_PRIVATE; - shmseg->u.shm_perm.mode |= SHMSEG_REMOVED; - if (shmseg->u.shm_nattch <= 0) { - shm_deallocate_segment(shmseg); - shm_last_free = IPCID_TO_IX(shmid); - } + shm_remove(shmseg, IPCID_TO_IX(shmid)); break; #if 0 case SHM_LOCK: @@ -724,14 +773,15 @@ sys_shmget(struct thread *td, struct shmget_args *uap) int segnum, mode; int error; - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + if (shm_find_prison(td->td_ucred) == NULL) return (ENOSYS); mode = uap->shmflg & ACCESSPERMS; SYSVSHM_LOCK(); if (uap->key == IPC_PRIVATE) { error = shmget_allocate_segment(td, uap, mode); } else { - segnum = shm_find_segment_by_key(uap->key); + segnum = shm_find_segment_by_key(td->td_ucred->cr_prison, + uap->key); if (segnum >= 0) error = shmget_existing(td, uap, mode, segnum); else if ((uap->shmflg & IPC_CREAT) == 0) @@ -852,7 +902,15 @@ static struct syscall_helper_data shm32_syscalls[] = { static int shminit(void) { + struct prison *pr; + void *rsv; int i, error; + osd_method_t methods[PR_MAXMETHOD] = { + [PR_METHOD_CHECK] = shm_prison_check, + [PR_METHOD_SET] = shm_prison_set, + [PR_METHOD_GET] = shm_prison_get, + [PR_METHOD_REMOVE] = shm_prison_remove, + }; #ifndef BURN_BRIDGES if (TUNABLE_ULONG_FETCH("kern.ipc.shmmaxpgs", &shminfo.shmall) != 0) @@ -888,6 +946,29 @@ shminit(void) shmexit_hook = &shmexit_myhook; shmfork_hook = &shmfork_myhook; + /* Set current prisons according to their allow.sysvipc. */ + shm_prison_slot = osd_jail_register(NULL, methods); + rsv = osd_reserve(shm_prison_slot); + prison_lock(&prison0); + (void)osd_jail_set_reserved(&prison0, shm_prison_slot, rsv, &prison0); + prison_unlock(&prison0); + rsv = NULL; + sx_slock(&allprison_lock); + TAILQ_FOREACH(pr, &allprison, pr_list) { + if (rsv == NULL) + rsv = osd_reserve(shm_prison_slot); + prison_lock(pr); + if ((pr->pr_allow & PR_ALLOW_SYSVIPC) && pr->pr_ref > 0) { + (void)osd_jail_set_reserved(pr, shm_prison_slot, rsv, + &prison0); + rsv = NULL; + } + prison_unlock(pr); + } + if (rsv != NULL) + osd_free_reserved(rsv); + sx_sunlock(&allprison_lock); + error = syscall_helper_register(shm_syscalls); if (error != 0) return (error); @@ -911,6 +992,8 @@ shmunload(void) syscall32_helper_unregister(shm32_syscalls); #endif syscall_helper_unregister(shm_syscalls); + if (shm_prison_slot != 0) + osd_jail_deregister(shm_prison_slot); for (i = 0; i < shmalloced; i++) { #ifdef MAC @@ -934,14 +1017,209 @@ shmunload(void) static int sysctl_shmsegs(SYSCTL_HANDLER_ARGS) { - int error; + struct shmid_kernel tshmseg; + struct prison *pr, *rpr; + int error, i; SYSVSHM_LOCK(); - error = SYSCTL_OUT(req, shmsegs, shmalloced * sizeof(shmsegs[0])); + pr = req->td->td_ucred->cr_prison; + rpr = shm_find_prison(req->td->td_ucred); + error = 0; + for (i = 0; i < shmalloced; i++) { + if ((shmsegs[i].u.shm_perm.mode & SHMSEG_ALLOCATED) == 0 || + rpr == NULL || shm_prison_cansee(rpr, &shmsegs[i]) != 0) { + bzero(&tshmseg, sizeof(tshmseg)); + tshmseg.u.shm_perm.mode = SHMSEG_FREE; + } else { + tshmseg = shmsegs[i]; + if (tshmseg.cred->cr_prison != pr) + tshmseg.u.shm_perm.key = IPC_PRIVATE; + } + error = SYSCTL_OUT(req, &tshmseg, sizeof(tshmseg)); + if (error != 0) + break; + } SYSVSHM_UNLOCK(); return (error); } +static int +shm_prison_check(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *prpr; + struct vfsoptlist *opts = data; + int error, jsys; + + /* + * sysvshm is a jailsys integer. + * It must be "disable" if the parent jail is disabled. + */ + error = vfs_copyopt(opts, "sysvshm", &jsys, sizeof(jsys)); + if (error != ENOENT) { + if (error != 0) + return (error); + switch (jsys) { + case JAIL_SYS_DISABLE: + break; + case JAIL_SYS_NEW: + case JAIL_SYS_INHERIT: + prison_lock(pr->pr_parent); + prpr = osd_jail_get(pr->pr_parent, shm_prison_slot); + prison_unlock(pr->pr_parent); + if (prpr == NULL) + return (EPERM); + break; + default: + return (EINVAL); + } + } + + return (0); +} + +static int +shm_prison_set(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *tpr, *orpr, *nrpr, *trpr; + struct vfsoptlist *opts = data; + void *rsv; + int jsys, descend; + + /* + * sysvshm controls which jail is the root of the associated segments + * (this jail or same as the parent), or if the feature is available + * at all. + */ + if (vfs_copyopt(opts, "sysvshm", &jsys, sizeof(jsys)) == ENOENT) + jsys = vfs_flagopt(opts, "allow.sysvipc", NULL, 0) + ? JAIL_SYS_INHERIT + : vfs_flagopt(opts, "allow.nosysvipc", NULL, 0) + ? JAIL_SYS_DISABLE + : -1; + if (jsys == JAIL_SYS_DISABLE) { + prison_lock(pr); + orpr = osd_jail_get(pr, shm_prison_slot); + if (orpr != NULL) + osd_jail_del(pr, shm_prison_slot); + prison_unlock(pr); + if (orpr != NULL) { + if (orpr == pr) + shm_prison_cleanup(pr); + /* Disable all child jails as well. */ + FOREACH_PRISON_DESCENDANT(pr, tpr, descend) { + prison_lock(tpr); + trpr = osd_jail_get(tpr, shm_prison_slot); + if (trpr != NULL) { + osd_jail_del(tpr, shm_prison_slot); + prison_unlock(tpr); + if (trpr == tpr) + shm_prison_cleanup(tpr); + } else { + prison_unlock(tpr); + descend = 0; + } + } + } + } else if (jsys != -1) { + if (jsys == JAIL_SYS_NEW) + nrpr = pr; + else { + prison_lock(pr->pr_parent); + nrpr = osd_jail_get(pr->pr_parent, shm_prison_slot); + prison_unlock(pr->pr_parent); + } + rsv = osd_reserve(shm_prison_slot); + prison_lock(pr); + orpr = osd_jail_get(pr, shm_prison_slot); + if (orpr != nrpr) + (void)osd_jail_set_reserved(pr, shm_prison_slot, rsv, + nrpr); + else + osd_free_reserved(rsv); + prison_unlock(pr); + if (orpr != nrpr) { + if (orpr == pr) + shm_prison_cleanup(pr); + if (orpr != NULL) { + /* Change child jails matching the old root, */ + FOREACH_PRISON_DESCENDANT(pr, tpr, descend) { + prison_lock(tpr); + trpr = osd_jail_get(tpr, + shm_prison_slot); + if (trpr == orpr) { + (void)osd_jail_set(tpr, + shm_prison_slot, nrpr); + prison_unlock(tpr); + if (trpr == tpr) + shm_prison_cleanup(tpr); + } else { + prison_unlock(tpr); + descend = 0; + } + } + } + } + } + + return (0); +} + +static int +shm_prison_get(void *obj, void *data) +{ + struct prison *pr = obj; + struct prison *rpr; + struct vfsoptlist *opts = data; + int error, jsys; + + /* Set sysvshm based on the jail's root prison. */ + prison_lock(pr); + rpr = osd_jail_get(pr, shm_prison_slot); + prison_unlock(pr); + jsys = rpr == NULL ? JAIL_SYS_DISABLE + : rpr == pr ? JAIL_SYS_NEW : JAIL_SYS_INHERIT; + error = vfs_setopt(opts, "sysvshm", &jsys, sizeof(jsys)); + if (error == ENOENT) + error = 0; + return (error); +} + +static int +shm_prison_remove(void *obj, void *data __unused) +{ + struct prison *pr = obj; + struct prison *rpr; + + SYSVSHM_LOCK(); + prison_lock(pr); + rpr = osd_jail_get(pr, shm_prison_slot); + prison_unlock(pr); + if (rpr == pr) + shm_prison_cleanup(pr); + SYSVSHM_UNLOCK(); + return (0); +} + +static void +shm_prison_cleanup(struct prison *pr) +{ + struct shmid_kernel *shmseg; + int i; + + /* Remove any segments that belong to this jail. */ + for (i = 0; i < shmalloced; i++) { + shmseg = &shmsegs[i]; + if ((shmseg->u.shm_perm.mode & SHMSEG_ALLOCATED) && + shmseg->cred != NULL && shmseg->cred->cr_prison == pr) { + shm_remove(shmseg, i); + } + } +} + +SYSCTL_JAIL_PARAM_SYS_NODE(sysvshm, CTLFLAG_RW, "SYSV shared memory"); + #if defined(__i386__) && (defined(COMPAT_FREEBSD4) || defined(COMPAT_43)) struct oshmid_ds { struct ipc_perm_old shm_perm; /* operation perms */ @@ -966,17 +1244,19 @@ oshmctl(struct thread *td, struct oshmctl_args *uap) { #ifdef COMPAT_43 int error = 0; + struct prison *rpr; struct shmid_kernel *shmseg; struct oshmid_ds outbuf; - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) + rpr = shm_find_prison(td->td_ucred); + if (rpr == NULL) return (ENOSYS); if (uap->cmd != IPC_STAT) { return (freebsd7_shmctl(td, (struct freebsd7_shmctl_args *)uap)); } SYSVSHM_LOCK(); - shmseg = shm_find_segment(uap->shmid, true); + shmseg = shm_find_segment(rpr, uap->shmid, true); if (shmseg == NULL) { SYSVSHM_UNLOCK(); return (EINVAL); @@ -1031,8 +1311,6 @@ sys_shmsys(struct thread *td, struct shmsys_args *uap) { int error; - if (!prison_allow(td->td_ucred, PR_ALLOW_SYSVIPC)) - return (ENOSYS); if (uap->which < 0 || uap->which >= nitems(shmcalls)) return (EINVAL); error = (*shmcalls[uap->which])(td, &uap->a2); diff --git a/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c b/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c index 2a93269..7ba90d1 100644 --- a/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c +++ b/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c @@ -481,6 +481,8 @@ void ipoib_cm_handle_rx_wc(struct ipoib_dev_priv *priv, struct ib_wc *wc) int has_srq; u_short proto; + CURVNET_SET_QUIET(dev->if_vnet); + ipoib_dbg_data(priv, "cm recv completion: id %d, status: %d\n", wr_id, wc->status); @@ -496,7 +498,7 @@ void ipoib_cm_handle_rx_wc(struct ipoib_dev_priv *priv, struct ib_wc *wc) } else ipoib_warn(priv, "cm recv completion event with wrid %d (> %d)\n", wr_id, ipoib_recvq_size); - return; + goto done; } p = wc->qp->qp_context; @@ -520,7 +522,7 @@ void ipoib_cm_handle_rx_wc(struct ipoib_dev_priv *priv, struct ib_wc *wc) queue_work(ipoib_workqueue, &priv->cm.rx_reap_task); spin_unlock(&priv->lock); } - return; + goto done; } } @@ -579,6 +581,9 @@ repost: "for buf %d\n", wr_id); } } +done: + CURVNET_RESTORE(); + return; } static inline int post_send(struct ipoib_dev_priv *priv, diff --git a/sys/ofed/drivers/net/mlx4/en_netdev.c b/sys/ofed/drivers/net/mlx4/en_netdev.c index a9d87bb..8a49a36 100644 --- a/sys/ofed/drivers/net/mlx4/en_netdev.c +++ b/sys/ofed/drivers/net/mlx4/en_netdev.c @@ -1244,10 +1244,6 @@ int mlx4_en_start_port(struct net_device *dev) /* Calculate Rx buf size */ dev->if_mtu = min(dev->if_mtu, priv->max_mtu); mlx4_en_calc_rx_buf(dev); - priv->rx_alloc_size = max_t(int, 2 * roundup_pow_of_two(priv->rx_mb_size), - PAGE_SIZE); - priv->rx_alloc_order = get_order(priv->rx_alloc_size); - priv->rx_buf_size = roundup_pow_of_two(priv->rx_mb_size); en_dbg(DRV, priv, "Rx buf size:%d\n", priv->rx_mb_size); /* Configure rx cq's and rings */ diff --git a/sys/ofed/drivers/net/mlx4/en_rx.c b/sys/ofed/drivers/net/mlx4/en_rx.c index 3691662..7d734f4 100644 --- a/sys/ofed/drivers/net/mlx4/en_rx.c +++ b/sys/ofed/drivers/net/mlx4/en_rx.c @@ -55,7 +55,7 @@ static void mlx4_en_init_rx_desc(struct mlx4_en_priv *priv, int i; /* Set size and memtype fields */ - rx_desc->data[0].byte_count = cpu_to_be32(priv->rx_mb_size); + rx_desc->data[0].byte_count = cpu_to_be32(priv->rx_mb_size - MLX4_NET_IP_ALIGN); rx_desc->data[0].lkey = cpu_to_be32(priv->mdev->mr.key); /* @@ -87,7 +87,10 @@ mlx4_en_alloc_buf(struct mlx4_en_rx_ring *ring, if (unlikely(mb == NULL)) return (-ENOMEM); /* setup correct length */ - mb->m_len = ring->rx_mb_size; + mb->m_pkthdr.len = mb->m_len = ring->rx_mb_size; + + /* make sure IP header gets aligned */ + m_adj(mb, MLX4_NET_IP_ALIGN); /* load spare mbuf into BUSDMA */ err = -bus_dmamap_load_mbuf_sg(ring->dma_tag, ring->spare.dma_map, @@ -117,7 +120,10 @@ mlx4_en_alloc_buf(struct mlx4_en_rx_ring *ring, goto use_spare; /* setup correct length */ - mb->m_len = ring->rx_mb_size; + mb->m_pkthdr.len = mb->m_len = ring->rx_mb_size; + + /* make sure IP header gets aligned */ + m_adj(mb, MLX4_NET_IP_ALIGN); err = -bus_dmamap_load_mbuf_sg(ring->dma_tag, mb_list->dma_map, mb, segs, &nsegs, BUS_DMA_NOWAIT); @@ -249,7 +255,8 @@ static void mlx4_en_free_rx_buf(struct mlx4_en_priv *priv, void mlx4_en_calc_rx_buf(struct net_device *dev) { struct mlx4_en_priv *priv = netdev_priv(dev); - int eff_mtu = dev->if_mtu + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN; + int eff_mtu = dev->if_mtu + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN + + MLX4_NET_IP_ALIGN; if (eff_mtu > MJUM16BYTES) { en_err(priv, "MTU(%d) is too big\n", (int)dev->if_mtu); @@ -384,9 +391,6 @@ int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv) ring->cons = 0; ring->actual_size = 0; ring->cqn = priv->rx_cq[ring_ind]->mcq.cqn; - ring->rx_alloc_order = priv->rx_alloc_order; - ring->rx_alloc_size = priv->rx_alloc_size; - ring->rx_buf_size = priv->rx_buf_size; ring->rx_mb_size = priv->rx_mb_size; ring->stride = stride; diff --git a/sys/ofed/drivers/net/mlx4/en_tx.c b/sys/ofed/drivers/net/mlx4/en_tx.c index 3614b0d..e9526c4 100644 --- a/sys/ofed/drivers/net/mlx4/en_tx.c +++ b/sys/ofed/drivers/net/mlx4/en_tx.c @@ -458,7 +458,7 @@ void mlx4_en_tx_irq(struct mlx4_cq *mcq) struct mlx4_en_priv *priv = netdev_priv(cq->dev); struct mlx4_en_tx_ring *ring = priv->tx_ring[cq->ring]; - if (!spin_trylock(&ring->comp_lock)) + if (priv->port_up == 0 || !spin_trylock(&ring->comp_lock)) return; mlx4_en_process_tx_cq(cq->dev, cq); mod_timer(&cq->timer, jiffies + 1); @@ -474,6 +474,8 @@ void mlx4_en_poll_tx_cq(unsigned long data) INC_PERF_COUNTER(priv->pstats.tx_poll); + if (priv->port_up == 0) + return; if (!spin_trylock(&ring->comp_lock)) { mod_timer(&cq->timer, jiffies + MLX4_EN_TX_POLL_TIMEOUT); return; @@ -495,6 +497,9 @@ static inline void mlx4_en_xmit_poll(struct mlx4_en_priv *priv, int tx_ind) struct mlx4_en_cq *cq = priv->tx_cq[tx_ind]; struct mlx4_en_tx_ring *ring = priv->tx_ring[tx_ind]; + if (priv->port_up == 0) + return; + /* If we don't have a pending timer, set one up to catch our recent post in case the interface becomes idle */ if (!timer_pending(&cq->timer)) @@ -1038,7 +1043,9 @@ mlx4_en_tx_que(void *context, int pending) priv = dev->if_softc; tx_ind = cq->ring; ring = priv->tx_ring[tx_ind]; - if (dev->if_drv_flags & IFF_DRV_RUNNING) { + + if (priv->port_up != 0 && + (dev->if_drv_flags & IFF_DRV_RUNNING) != 0) { mlx4_en_xmit_poll(priv, tx_ind); spin_lock(&ring->tx_lock); if (!drbr_empty(dev, ring->br)) @@ -1055,6 +1062,11 @@ mlx4_en_transmit(struct ifnet *dev, struct mbuf *m) struct mlx4_en_cq *cq; int i, err = 0; + if (priv->port_up == 0) { + m_freem(m); + return (ENETDOWN); + } + /* Compute which queue to use */ if (M_HASHTYPE_GET(m) != M_HASHTYPE_NONE) { i = (m->m_pkthdr.flowid % 128) % priv->tx_ring_num; @@ -1088,6 +1100,9 @@ mlx4_en_qflush(struct ifnet *dev) struct mlx4_en_tx_ring *ring; struct mbuf *m; + if (priv->port_up == 0) + return; + for (int i = 0; i < priv->tx_ring_num; i++) { ring = priv->tx_ring[i]; spin_lock(&ring->tx_lock); diff --git a/sys/ofed/drivers/net/mlx4/mlx4_en.h b/sys/ofed/drivers/net/mlx4/mlx4_en.h index c776b0e..35829e4 100644 --- a/sys/ofed/drivers/net/mlx4/mlx4_en.h +++ b/sys/ofed/drivers/net/mlx4/mlx4_en.h @@ -69,6 +69,7 @@ #define MLX4_EN_PAGE_SHIFT 12 #define MLX4_EN_PAGE_SIZE (1 << MLX4_EN_PAGE_SHIFT) +#define MLX4_NET_IP_ALIGN 2 /* bytes */ #define DEF_RX_RINGS 16 #define MAX_RX_RINGS 128 #define MIN_RX_RINGS 4 @@ -315,9 +316,6 @@ struct mlx4_en_rx_ring { u32 cons; u32 buf_size; u8 fcs_del; - u16 rx_alloc_order; - u32 rx_alloc_size; - u32 rx_buf_size; u32 rx_mb_size; int qpn; u8 *buf; @@ -556,9 +554,6 @@ struct mlx4_en_priv { u32 tx_ring_num; u32 rx_ring_num; u32 rx_mb_size; - u16 rx_alloc_order; - u32 rx_alloc_size; - u32 rx_buf_size; struct mlx4_en_tx_ring **tx_ring; struct mlx4_en_rx_ring *rx_ring[MAX_RX_RINGS]; diff --git a/sys/sys/jail.h b/sys/sys/jail.h index 63f5ab9..b9e40f9 100644 --- a/sys/sys/jail.h +++ b/sys/sys/jail.h @@ -149,7 +149,6 @@ struct prison_racct; * (p) locked by pr_mtx * (c) set only during creation before the structure is shared, no mutex * required to read - * (d) set only during destruction of jail, no mutex needed */ struct prison { TAILQ_ENTRY(prison) pr_list; /* (a) all prisons */ @@ -161,7 +160,7 @@ struct prison { LIST_ENTRY(prison) pr_sibling; /* (a) next in parent's list */ struct prison *pr_parent; /* (c) containing jail */ struct mtx pr_mtx; - struct task pr_task; /* (d) destroy task */ + struct task pr_task; /* (c) destroy task */ struct osd pr_osd; /* (p) additional data */ struct cpuset *pr_cpuset; /* (p) cpuset */ struct vnet *pr_vnet; /* (c) network stack */ @@ -212,7 +211,6 @@ struct prison_racct { /* primary jail address. */ /* Internal flag bits */ -#define PR_REMOVE 0x01000000 /* In process of being removed */ #define PR_IP4 0x02000000 /* IPv4 restricted or disabled */ /* by this jail or an ancestor */ #define PR_IP6 0x04000000 /* IPv6 restricted or disabled */ @@ -244,7 +242,8 @@ struct prison_racct { #define PR_METHOD_SET 2 #define PR_METHOD_CHECK 3 #define PR_METHOD_ATTACH 4 -#define PR_MAXMETHOD 5 +#define PR_METHOD_REMOVE 5 +#define PR_MAXMETHOD 6 /* * Lock/unlock a prison. diff --git a/sys/sys/osd.h b/sys/sys/osd.h index 14316ae..820e0f4 100644 --- a/sys/sys/osd.h +++ b/sys/sys/osd.h @@ -59,6 +59,10 @@ int osd_register(u_int type, osd_destructor_t destructor, void osd_deregister(u_int type, u_int slot); int osd_set(u_int type, struct osd *osd, u_int slot, void *value); +void *osd_reserve(u_int slot); +int osd_set_reserved(u_int type, struct osd *osd, u_int slot, void *rsv, + void *value); +void osd_free_reserved(void *rsv); void *osd_get(u_int type, struct osd *osd, u_int slot); void osd_del(u_int type, struct osd *osd, u_int slot); int osd_call(u_int type, u_int method, void *obj, void *data); @@ -71,6 +75,8 @@ void osd_exit(u_int type, struct osd *osd); osd_deregister(OSD_THREAD, (slot)) #define osd_thread_set(td, slot, value) \ osd_set(OSD_THREAD, &(td)->td_osd, (slot), (value)) +#define osd_thread_set_reserved(td, slot, rsv, value) \ + osd_set_reserved(OSD_THREAD, &(td)->td_osd, (slot), (rsv), (value)) #define osd_thread_get(td, slot) \ osd_get(OSD_THREAD, &(td)->td_osd, (slot)) #define osd_thread_del(td, slot) do { \ @@ -88,6 +94,8 @@ void osd_exit(u_int type, struct osd *osd); osd_deregister(OSD_JAIL, (slot)) #define osd_jail_set(pr, slot, value) \ osd_set(OSD_JAIL, &(pr)->pr_osd, (slot), (value)) +#define osd_jail_set_reserved(pr, slot, rsv, value) \ + osd_set_reserved(OSD_JAIL, &(pr)->pr_osd, (slot), (rsv), (value)) #define osd_jail_get(pr, slot) \ osd_get(OSD_JAIL, &(pr)->pr_osd, (slot)) #define osd_jail_del(pr, slot) \ diff --git a/usr.bin/patch/pch.c b/usr.bin/patch/pch.c index 357c364..8aee8b2 100644 --- a/usr.bin/patch/pch.c +++ b/usr.bin/patch/pch.c @@ -1142,7 +1142,7 @@ hunk_done: say("Not enough memory to swap next hunk!\n"); #ifdef DEBUGGING if (debug & 2) { - int i; + LINENUM i; char special; for (i = 0; i <= p_end; i++) { @@ -1150,7 +1150,7 @@ hunk_done: special = '^'; else special = ' '; - fprintf(stderr, "%3d %c %c %s", i, p_char[i], + fprintf(stderr, "%3ld %c %c %s", i, p_char[i], special, p_line[i]); fflush(stderr); } diff --git a/usr.sbin/jail/jail.8 b/usr.sbin/jail/jail.8 index 0831fcd..7581847 100644 --- a/usr.sbin/jail/jail.8 +++ b/usr.sbin/jail/jail.8 @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 6, 2015 +.Dd April 25, 2016 .Dt JAIL 8 .Os .Sh NAME @@ -493,10 +493,14 @@ or .Xr sethostname 3 . .It Va allow.sysvipc A process within the jail has access to System V IPC primitives. -In the current jail implementation, System V primitives share a single -namespace across the host and jail environments, meaning that processes -within a jail would be able to communicate with (and potentially interfere -with) processes outside of the jail, and in other jails. +This is deprecated in favor of the per-module parameters (see below). +When this parameter is set, it is equivalent to setting +.Va sysvmsg , +.Va sysvsem , +and +.Va sysvshm +all to +.Dq inherit . .It Va allow.raw_sockets The jail root is allowed to create raw sockets. Setting this parameter allows utilities like @@ -610,6 +614,51 @@ have not had jail functionality added to them. .El .El .Pp +Kernel modules may add their own parameters, which only exist when the +module is loaded. +These are typically headed under a parameter named after the module, +with values of +.Dq inherit +to give the jail full use of the module, +.Dq new +to encapsulate the jail in some module-specific way, +and +.Dq disable +to make the module unavailable to the jail. +There also may be other parameters to define jail behavior within the module. +Module-specific parameters include: +.Bl -tag -width indent +.It Va linux +Determine how a jail's Linux emulation environment appears. +A value of +.Dq inherit +will keep the same environment, and +.Dq new +will give the jail it's own environment (still originally inherited when +the jail is created). +.It Va linux.osname , linux.osrelease , linux.oss_version +The Linux OS name, OS release, and OSS version associated with this jail. +.It Va sysvmsg +Allow access to SYSV IPC message primitives. +If set to +.Dq inherit , +all IPC objects on the system are visible to this jail, whether they +were created by the jail itself, the base system, or other jails. +If set to +.Dq new , +the jail will have its own key namespace, and can only see the objects +that it has created; +the system (or parent jail) has access to the jail's objects, but not to +its keys. +If set to +.Dq disable , +the jail cannot perform any sysvmsg-related system calls. +.It Va sysvsem, sysvshm +Allow access to SYSV IPC semaphore and shared memory primitives, in the +same manner as +.Va sysvmsg. +.El +.Pp There are pseudo-parameters that are not passed to the kernel, but are used by .Nm diff --git a/usr.sbin/pw/pw.8 b/usr.sbin/pw/pw.8 index 84ceda3..4cf52b6 100644 --- a/usr.sbin/pw/pw.8 +++ b/usr.sbin/pw/pw.8 @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 27, 2016 +.Dd April 23, 2016 .Dt PW 8 .Os .Sh NAME @@ -954,6 +954,18 @@ Pw default options file .It Pa /var/log/userlog User/group modification logfile .El +.Sh EXAMPLES +Add new user Glurmo Smith (gsmith). +A gsmith login group is created if not already present. +The login shell is set to +.Xr csh 1 . +A new home directory at +.Pa /home/gsmith +is created if it does not already exist. +Finally, a random password is generated and displayed: +.Bd -literal -offset indent +pw useradd -n gsmith -c "Glurmo Smith" -s /bin/csh -m -w random +.Ed .Sh EXIT STATUS The .Nm |