The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -- -*- cperl-indent-level: 4 -*- vi:nowrap:


#line 4

=head1 NAME

perlpatch2svn - Import bleadperl patches into a Subversion repository

=head1 SYNOPSIS

    perlpatch2svn [-f] [patchfiles...]

=head1 *** DEPRECATED ***

This script is currently not maintained. It seems like an inferior
approach to what svk and VCP.pm are going to provide. The script is
kept in the distribution because it contains a lot of interesting and
helpful code for people interested in getting *something* going.

=head1 DESCRIPTION

This program reads a list of patches applied to the bleadperl source
trunk or a branch and applies them to a local Subversion repository.

The patches can be retrieved via the perl5-changes mailing list, or from one of
the URLs documented in perlhack(3). Alternatively, if you have access to the
bleadperl Perforce repository, they can be created with Andreas Koenig's
p4genpatch utility.

You must run this program from the root of source tree in the subversion
working copy you want to update. The patchfiles can be given on the
command-line; if not, perlpatch2svn reads patches from the standard input.

perlpatch2svn will skip the patches that have been already applied. To do this,
he scans the changelog of the Subversion working copy for the last Perforce
patch number. This means that you should apply patches from Perforce in order.
The -f (force) option disables this behavior.

=head2 Create the Subversion repository

See apc2svn. The following description predates apc2svn and is only
left here to explain the principle.

Here's the list of commands I used to create a Subversion repository with perl
5.8.0 in it :

    $ cd /home/rafael
    $ tar zxf perl-5.8.0.tar.gz
    $ svnadmin create bleadperl-svn
    $ svn import file:///home/rafael/bleadperl-svn perl-5.8.0 perl \
	-m 'Import Perl 5.8.0'
    $ svn co file:///home/rafael/bleadperl-svn/perl bleadperl-wc
    $ cd bleadperl-wc

Then, I set the property C<svn:eol-type> to C<native> on files that contain
CRLF line endings : (warning, shell hackery involved -- ^M is a real ctrl-M
character)

    $ svn propset svn:eol-style native `grep -rl '^M' * | fgrep -v .svn`
    $ svn commit -m 'Force CRLF files as LF'

This previous command marks the said files as being always checked out with
the line endings native to the current platform. On Unices, they will thus
have LF line endings. This is necessary for patches to be applied to them.
CRLF line endings must be restored when a source tarball is to be released
(see Porting/makerel in the perl source distribution).

And then, to import the patches :

    $ zcat /path/to/bleadperl-patches/* | perlpatch2svn

=head1 BINARY FILES

During the course of the perforce repository evolution a number of
files have been checked in that were marked as binary for some reason
and therefore are not available via the patch set. perlpatch2svn
corrects that by including all those files within itself and checking
them into subversion. Whenever it does so, it sends a message to
STDERR saying something like

    Info: inserting our own //depot/perl/lib/Bundle/CPAN.pm#1

=head1 BUGS

As of bleadperl @18039, you can't build perl from within your Subversion
working copy, because the installation process of perl corrupts it, by
creating spurious C<.svn> directories.

Similarly, C<make distclean> removes too much files, including a few files
in the C<.svn> directories, thus corrupting the working copy.

Until MakeMaker is fixed, a workaround, if your system supports it, is to
build outside the source tree, via the C<-Dmksymlinks> Configure option.

=head1 AUTHOR

Written by Rafael Garcia-Suarez and Andreas Koenig.

This program is free software; you may redistribute it and/or modify it under
the same terms as Perl itself.

C<$Id: perlpatch2svn 135 2005-06-23 08:13:30Z k $>

=head1 SEE ALSO

perlhack(3), svn(1), and Porting/p4genpatch in the perl source distribution.

=cut

use strict;
use warnings;

use Getopt::Long;
use File::Basename;
use File::Temp;
use IPC::Open3 qw(open3);

use Perl::Repository::APC2SVN qw(latest_change get_dirs_to_add
get_dirs_to_delete delete_empty_dirs);

our %Opt;
GetOptions(\%Opt,
           "branch=s",
           "debug!",
           "f!",
           "h!",
           "q!",
          );

# Temporary file
(undef, our $TMPLOGFILE) = File::Temp::tempfile("logforsvn.XXXXXX");
$Opt{branch} ||= "perl";

# The patch command
#   -p1 implies that you are in the working copy, at the root of the source
#	tree, when you run this command
our $PATCH = "patch -p1";

our $VERSION = sprintf "%.3f", 1 + substr(q$Rev: 135 $,4)/1000;

if ($Opt{h}) {
    print <<USAGE;
$0 v$VERSION
Usage: $0 [OPTIONS] patchfiles...
    --branch branch     # XXX
    --debug             # be more verbose
    --h                 # print this help message and exit
    --f                 # force
    --q                 # quiet
USAGE
    exit;
}

if ($Opt{debug}) {
    our $DEBUG = 1;
    $Perl::Repository::APC2SVN::DEBUG = 1;
}

# Use svn log to find the number of the last patch that was applied to this
# working copy -- we look at the last applied patch

my $lastpatch = 0;
if (not $Opt{f}) {
    $lastpatch = latest_change();
    print "Last applied patch was #$lastpatch\n" if $lastpatch;
}

# If the command-line arguments are gzip files
@ARGV = map { /\.(gz|Z)$/ ? "gzip -dc < $_ |" : $_ } @ARGV;

# Slurps the patches

my $curpatch = 0;	# current p4 revision number
my $curbranch = '';	# current patched file belongs to //depot/$curbranch
my $skip = 0;           # needed to implement skipping of useless patches
my %patchlog = ();	# log messages for p4 patches
my %patches = ();	# the patches
my %deleted = ();	# files deleted in given patch
my %added = ();		# files added in given patch
my %edited = ();	# files modified in given patch
my %binary = ();	# binary files in given patch

# SKIP: we do not need and cannot make any use of 1710. 1710 is only
# about CR in djgpp/configure.bat, but as we injected configure.bat
# ourselves into the trunk, we do not have CRs to remove, so we do not
# need the patch.
my $SKIP = {
            1710 => {"//depot/maint-5.005/perl/djgpp/configure.bat#2"=>1},
           };

my $BINARY = {
    "repo" => {
 "//depot/maint-5.004/perl/eg/cgi/dna.small.gif#1" => "320121fcbc1e56e7896a9d9a2aa8b224",
 "//depot/maint-5.004/perl/lib/Bundle/CPAN.pm#1" => "0e9ee464c7f8b482d6e69675c25f84c6",
 "//depot/maint-5.004/perl/lib/Bundle/CPAN.pm#2" => "06a29746372c4db21290d6862c2d34d4",
 "//depot/maint-5.004/perl/plan9/perlplan9.doc#1" => "1376e74adbdc55b6ca5957dc3dc2431c",
 "//depot/maint-5.6/perl/lib/CGI/eg/wilogo.gif#1" => "e33fd60f091548a70e06f37822709906",
 "//depot/perl/NetWare/interface.cpp#1" => "7da1a3fbb8a68b99d7361da526386ad3",
 "//depot/perl/djgpp/configure.bat#1" => "78c1c88ec5bc65d4bb129e17dad74582",
 "//depot/perl/djgpp/configure.bat#4" => "95759703a993847eb9291cdb3bbc4bcc",
 "//depot/perl/djgpp/configure.bat#5" => "dff1fb5aebb9691da97ffa45a01341f7",
 "//depot/perl/djgpp/configure.bat#6" => "dff1fb5aebb9691da97ffa45a01341f7",
 "//depot/perl/jpl/bin/jpl#1" => "symlinks not supported",
 "//depot/perl/wince/perl.ico#1" => "81c654bdff08d71f76df8e341b95d3e8",
 "//depot/perl/ext/Encode/Encode/iso8859-10.enc#1" => "162e76bd187cb54a5c9f0b72a082c668",
 "//depot/perl/ext/Encode/Encode/iso8859-10.enc#2" => "162e76bd187cb54a5c9f0b72a082c668",
 "//depot/perl/ext/Encode/Encode/iso8859-13.enc#1" => "bf3993877a45ac7091cfc81cfd4a4d43",
 "//depot/perl/ext/Encode/Encode/iso8859-13.enc#2" => "bf3993877a45ac7091cfc81cfd4a4d43",
 "//depot/perl/ext/Encode/Encode/iso8859-14.enc#1" => "3be4986264587bec738cc46ebb43d698",
 "//depot/perl/ext/Encode/Encode/iso8859-14.enc#2" => "3be4986264587bec738cc46ebb43d698",
 "//depot/perl/ext/Encode/Encode/iso8859-15.enc#1" => "6ae49f4e916b02eb7edb160f88b5a27f",
 "//depot/perl/ext/Encode/Encode/iso8859-15.enc#2" => "6ae49f4e916b02eb7edb160f88b5a27f",
 "//depot/perl/ext/Encode/t/jisx0208.euc#1" => "b09849cb3f09256a66f7f303b93e6efd",
 "//depot/perl/ext/Encode/t/jisx0208.ref#1" => "26995436d3695441e180f161c7c014a7",
 "//depot/perl/ext/Encode/t/jisx0212.euc#1" => "f07b6eea8c8e76eb45715c122bda46c0",
 "//depot/perl/ext/Encode/t/jisx0212.ref#1" => "f032a907282fe0ada83180813a4cd2f8",
 "//depot/perl/lib/Bundle/CPAN.pm#1" => "0e9ee464c7f8b482d6e69675c25f84c6",
 "//depot/perl/lib/Bundle/CPAN.pm#3" => "06a29746372c4db21290d6862c2d34d4",
 "//depot/perl/lib/CGI/eg/wilogo.gif#1" => "e33fd60f091548a70e06f37822709906",
 "//depot/perl/lib/PerlIO/Via/t/QuotedPrint.t#1" => "2412c9ffd3421129f6edcd764432fb66",
 "//depot/perl/lib/warnings/utf8#1" => "ef2d3179a1b49dd6bd0ae27cbc23c143",
 "//depot/perl/plan9/perlplan9.doc#1" => "1376e74adbdc55b6ca5957dc3dc2431c",
 "//depot/perl/t/lib/locale/latin1#1" => "7b8a06f55ee33eed6c876179744c51eb",
 "//depot/perl/t/lib/locale/utf8#1" => "8e865b8444df7b0b73d1c9b169fb035d",
 "//depot/perl/t/lib/mimeqp.t#1" => "db3197537f8b27c3115112c72955c6d9",
 "//depot/perl/t/lib/warnings/utf8#1" => "ef2d3179a1b49dd6bd0ae27cbc23c143",
 "//depot/perl/t/op/utf8decode.t#1" => "cf55072c234b9ed7257f8372b0fda6a6",
 "//depot/perl/t/op/utf8decode.t#2" => "edad1419a54681a3017f012039cbbe3e",
 "//depot/perl/t/pragma/locale/latin1#1" => "7b8a06f55ee33eed6c876179744c51eb",
 "//depot/perl/t/pragma/locale/utf8#1" => "8e865b8444df7b0b73d1c9b169fb035d",
              },
    "content" => {
 "symlinks not supported" => "",
 "06a29746372c4db21290d6862c2d34d4" => "package Bundle::CPAN;\n\n\$VERSION = '0.03';\n\n1;\n\n__END__\n\n=head1 NAME\n\nBundle::CPAN - A bundle to play with all the other modules on CPAN\n\n=head1 SYNOPSIS\n\nC<perl -MCPAN -e 'install Bundle::CPAN'>\n\n=head1 CONTENTS\n\nMD5\n\nData::Dumper  # Bundle::libnet may have problems to work without it\n\nBundle::libnet\n\nTerm::ReadKey\n\nTerm::ReadLine::Perl # sorry, I'm discriminating the ::Gnu module\n\nCPAN::WAIT\n\nCPAN\n\n=head1 DESCRIPTION\n\nThis bundle includes CPAN.pm as the base module and CPAN::WAIT, the\nfirst plugin for CPAN that was developed even before there was an API.\n\nAfter installing this bundle, it is recommended to quit the current\nsession and start again in a new process to enable Term::ReadLine.\n\n=head1 AUTHOR\n\nAndreas K\366nig\n",
 "0e9ee464c7f8b482d6e69675c25f84c6" => "package Bundle::CPAN;\n\n\$VERSION = '0.02';\n\n1;\n\n__END__\n\n=head1 NAME\n\nBundle::CPAN - A bundle to play with all the other modules on CPAN\n\n=head1 SYNOPSIS\n\nC<perl -MCPAN -e 'install Bundle::CPAN'>\n\n=head1 CONTENTS\n\nCPAN\n\nCPAN::WAIT\n\n=head1 DESCRIPTION\n\nThis bundle includes CPAN.pm as the base module and CPAN::WAIT, the\nfirst plugin for CPAN that was developed even before there was an API.\n\nAfter installing this bundle, it is recommended to quit the current\nsession and start again in a new process.\n\n=head1 AUTHOR\n\nAndreas K\366nig\n",
 "1376e74adbdc55b6ca5957dc3dc2431c" => "\n     PLAN9/PERLPLAN9(1)   (perl 5.003, patch 05)    PLAN9/PERLPLAN9(1)\n\n     N\bN\bN\bNA\bA\bA\bAM\bM\bM\bME\bE\bE\bE\n          perlplan9 - Plan 9-specific documentation for Perl\n\n     D\bD\bD\bDE\bE\bE\bES\bS\bS\bSC\bC\bC\bCR\bR\bR\bRI\bI\bI\bIP\bP\bP\bPT\bT\bT\bTI\bI\bI\bIO\bO\bO\bON\bN\bN\bN\n          These are a few notes describing features peculiar to Plan 9\n          Perl. As such, it is not intended to be a replacement for\n          the rest of the Perl 5 documentation (which is both copious\n          and excellent). If you have any questions to which you can't\n          find answers in these man pages, contact Luther Huffman at\n          lutherh\@stratcom.com and we'll try to answer them.\n\n          I\bI\bI\bIn\bn\bn\bnv\bv\bv\bvo\bo\bo\bok\bk\bk\bki\bi\bi\bin\bn\bn\bng\bg\bg\bg P\bP\bP\bPe\be\be\ber\br\br\brl\bl\bl\bl\n\n          Perl is invoked from the command line as described in the\n          _\bp_\be_\br_\bl manpage. Most perl scripts, however, do have a first\n          line such as \"#!/usr/local/bin/perl\". This is known as a\n          shebang (shell-bang) statement and tells the OS shell where\n          to find the perl interpreter. In Plan 9 Perl this statement\n          should be \"#!/bin/perl\" if you wish to be able to directly\n          invoke the script by its name.\n               Alternatively, you may invoke perl with the command\n          \"Perl\" instead of \"perl\". This will produce Acme-friendly\n          error messages of the form \"filename:18\".\n\n          Some scripts, usually identified with a *.PL extension, are\n          self-configuring and are able to correctly create their own\n          shebang path from config information located in Plan 9 Perl.\n          These you won't need to be worried about.\n\n          W\bW\bW\bWh\bh\bh\bha\ba\ba\bat\bt\bt\bt'\b'\b'\b's\bs\bs\bs i\bi\bi\bin\bn\bn\bn P\bP\bP\bPl\bl\bl\bla\ba\ba\ban\bn\bn\bn 9\b9\b9\b9 P\bP\bP\bPe\be\be\ber\br\br\brl\bl\bl\bl\n\n          Although Plan 9 Perl currently only  provides static\n          loading, it is built with a number of useful extensions.\n          These include Opcode, FileHandle, Fcntl, and POSIX. Expect\n          to see others (and DynaLoading!) in the future.\n\n          W\bW\bW\bWh\bh\bh\bha\ba\ba\bat\bt\bt\bt'\b'\b'\b's\bs\bs\bs n\bn\bn\bno\bo\bo\bot\bt\bt\bt i\bi\bi\bin\bn\bn\bn P\bP\bP\bPl\bl\bl\bla\ba\ba\ban\bn\bn\bn 9\b9\b9\b9 P\bP\bP\bPe\be\be\ber\br\br\brl\bl\bl\bl\n\n          As mentioned previously, dynamic loading isn't currently\n          available nor is MakeMaker. Both are high-priority items.\n\n          P\bP\bP\bPe\be\be\ber\br\br\brl\bl\bl\bl5\b5\b5\b5 F\bF\bF\bFu\bu\bu\bun\bn\bn\bnc\bc\bc\bct\bt\bt\bti\bi\bi\bio\bo\bo\bon\bn\bn\bns\bs\bs\bs n\bn\bn\bno\bo\bo\bot\bt\bt\bt c\bc\bc\bcu\bu\bu\bur\br\br\brr\br\br\bre\be\be\ben\bn\bn\bnt\bt\bt\btl\bl\bl\bly\by\by\by s\bs\bs\bsu\bu\bu\bup\bp\bp\bpp\bp\bp\bpo\bo\bo\bor\br\br\brt\bt\bt\bte\be\be\bed\bd\bd\bd\n\n          Some, such as chown and umask aren't provided because the\n          concept does not exist within Plan 9. Others, such as some\n          of the socket-related functions, simply haven't been written\n          yet. Many in the latter category may be supported in the\n          future.\n\n          The functions not currently implemented include:\n\n     Page 1                      9/Oct/96            (printed 10/9/96)\n\n     PLAN9/PERLPLAN9(1)   (perl 5.003, patch 05)    PLAN9/PERLPLAN9(1)\n\n              chown, chroot, dbmclose, dbmopen, getsockopt,\n              setsockopt, recvmsg, sendmsg, getnetbyname,\n              getnetbyaddr, getnetent, getprotoent, getservent,\n              sethostent, setnetent, setprotoent, setservent,\n              endservent, endnetent, endprotoent, umask\n\n          There may be several other functions that have undefined\n          behavior so this list shouldn't be considered complete.\n\n          S\bS\bS\bSi\bi\bi\big\bg\bg\bgn\bn\bn\bna\ba\ba\bal\bl\bl\bls\bs\bs\bs\n\n          For compatibility with perl scripts written for the Unix\n          environment, Plan 9 Perl uses the POSIX signal emulation\n          provided in Plan 9's ANSI POSIX Environment (APE). Signal\n          stacking isn't supported. The signals provided are:\n\n              SIGHUP, SIGINT, SIGQUIT, SIGILL, SIGABRT,\n              SIGFPE, SIGKILL, SIGSEGV, SIGPIPE, SIGPIPE, SIGALRM,\n              SIGTERM, SIGUSR1, SIGUSR2, SIGCHLD, SIGCONT,\n              SIGSTOP, SIGTSTP, SIGTTIN, SIGTTOU\n\n     B\bB\bB\bBU\bU\bU\bUG\bG\bG\bGS\bS\bS\bS\n          \"As many as there are grains of sand on all the beaches of\n          the world . . .\" - Carl Sagan\n\n     R\bR\bR\bRe\be\be\bev\bv\bv\bvi\bi\bi\bis\bs\bs\bsi\bi\bi\bio\bo\bo\bon\bn\bn\bn d\bd\bd\bda\ba\ba\bat\bt\bt\bte\be\be\be\n          This document was revised 09-October-1996 for Perl 5.003_7.\n\n     A\bA\bA\bAU\bU\bU\bUT\bT\bT\bTH\bH\bH\bHO\bO\bO\bOR\bR\bR\bR\n          Luther Huffman,    lutherh\@stratcom.com\n\n     Page 2                      9/Oct/96            (printed 10/9/96)\n\n",
 "162e76bd187cb54a5c9f0b72a082c668" => "# Encoding file: iso8859-10, single-byte\nS\n003F 0 1\n00\n0000000100020003000400050006000700080009000A000B000C000D000E000F\n0010001100120013001400150016001700180019001A001B001C001D001E001F\n0020002100220023002400250026002700280029002A002B002C002D002E002F\n0030003100320033003400350036003700380039003A003B003C003D003E003F\n0040004100420043004400450046004700480049004A004B004C004D004E004F\n0050005100520053005400550056005700580059005A005B005C005D005E005F\n0060006100620063006400650066006700680069006A006B006C006D006E006F\n0070007100720073007400750076007700780079007A007B007C007D007E007F\n0080008100820083008400850086008700880089008A008B008C008D008E008F\n0090009100920093009400950096009700980099009A009B009C009D009E009F\n00A0010401120122012A0128013600A7013B011001600166017D00AD016A014A\n00B0010501130123012B0129013700B7013C011101610167017E2015016B014B\n010000C100C200C300C400C500C6012E010C00C9011800CB011600CD00CE00CF\n00D00145014C00D300D400D500D6016800D8017200DA00DB00DC00DD00DE00DF\n010100E100E200E300E400E500E6012F010D00E9011900EB011700ED00EE00EF\n00F00146014D00F300F400F500F6016900F8017300FA00FB00FC00FD00FE0138\n",
 "2412c9ffd3421129f6edcd764432fb66" => "my \$file = 'test.qp';\n\nBEGIN {\n    if (\$ENV{PERL_CORE}) {\t\n\tchdir 't' if -d 't';\n\t\@INC = '../lib';\n    }\n}\n\nuse Test::More tests => 11;\n\nBEGIN { use_ok('PerlIO::Via::QuotedPrint') }\n\nmy \$decoded = <<EOD;\nThis is a t\351st for quoted-printable text that has h\340rdly any spe\347ial characters\nin it.\nEOD\n\nmy \$encoded = <<EOD;\nThis is a t=E9st for quoted-printable text that has h=E0rdly any spe=E7ial =\ncharacters\nin it.\nEOD\n\n# Create the encoded test-file\n\nok(\n open( my \$out,'>:Via(PerlIO::Via::QuotedPrint)', \$file ),\n \"opening '\$file' for writing\"\n);\n\nok( (print \$out \$decoded),\t\t'print to file' );\nok( close( \$out ),\t\t\t'closing encoding handle' );\n\n# Check encoding without layers\n\n{\nlocal \$/ = undef;\nok( open( my \$test,\$file ),\t\t'opening without layer' );\nis( \$encoded,readline( \$test ),\t\t'check encoded content' );\nok( close( \$test ),\t\t\t'close test handle' );\n}\n\n# Check decoding _with_ layers\n\nok(\n open( my \$in,'<:Via(PerlIO::Via::QuotedPrint)', \$file ),\n \"opening '\$file' for reading\"\n);\nis( \$decoded,join( '',<\$in> ),\t\t'check decoding' );\nok( close( \$in ),\t\t\t'close decoding handle' );\n\n# Remove whatever we created now\n\nok( unlink( \$file ),\t\t\t\"remove test file '\$file'\" );\n",
 "26995436d3695441e180f161c7c014a7" => "0x0020:    ! \" # \$ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = >\n0x0040:  \@ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \\ ] ^\n0x0060:  ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~\n0x8ea0:    \357\275\241 \357\275\242 \357\275\243 \357\275\244 \357\275\245 \357\275\246 \357\275\247 \357\275\250 \357\275\251 \357\275\252 \357\275\253 \357\275\254 \357\275\255 \357\275\256 \357\275\257 \357\275\260 \357\275\261 \357\275\262 \357\275\263 \357\275\264 \357\275\265 \357\275\266 \357\275\267 \357\275\270 \357\275\271 \357\275\272 \357\275\273 \357\275\274 \357\275\275 \357\275\276\n0x8ec0:  \357\276\200 \357\276\201 \357\276\202 \357\276\203 \357\276\204 \357\276\205 \357\276\206 \357\276\207 \357\276\210 \357\276\211 \357\276\212 \357\276\213 \357\276\214 \357\276\215 \357\276\216 \357\276\217 \357\276\220 \357\276\221 \357\276\222 \357\276\223 \357\276\224 \357\276\225 \357\276\226 \357\276\227 \357\276\230 \357\276\231 \357\276\232 \357\276\233 \357\276\234 \357\276\235 \357\276\236\n0x8ee0:                                                               \n0xa0a0:                                                               \n0xa0c0:                                                               \n0xa0e0:                                                               \n0xa1a0:   \343\200\200\343\200\201\343\200\202\357\274\214\357\274\216\343\203\273\357\274\232\357\274\233\357\274\237\357\274\201\343\202\233\343\202\234\302\264\357\275\200\302\250\357\274\276\357\277\243\357\274\277\343\203\275\343\203\276\343\202\235\343\202\236\343\200\203\344\273\235\343\200\205\343\200\206\343\200\207\343\203\274\342\200\225\342\200\220\n0xa1c0: \357\274\274\343\200\234\342\200\226\357\275\234\342\200\246\342\200\245\342\200\230\342\200\231\342\200\234\342\200\235\357\274\210\357\274\211\343\200\224\343\200\225\357\274\273\357\274\275\357\275\233\357\275\235\343\200\210\343\200\211\343\200\212\343\200\213\343\200\214\343\200\215\343\200\216\343\200\217\343\200\220\343\200\221\357\274\213\342\210\222\302\261\n0xa1e0: \303\267\357\274\235\342\211\240\357\274\234\357\274\236\342\211\246\342\211\247\342\210\236\342\210\264\342\231\202\342\231\200\302\260\342\200\262\342\200\263\342\204\203\357\277\245\357\274\204\302\242\302\243\357\274\205\357\274\203\357\274\206\357\274\212\357\274\240\302\247\342\230\206\342\230\205\342\227\213\342\227\217\342\227\216\342\227\207\n0xa2a0:   \342\227\206\342\226\241\342\226\240\342\226\263\342\226\262\342\226\275\342\226\274\342\200\273\343\200\222\342\206\222\342\206\220\342\206\221\342\206\223\343\200\223                      \342\210\210\342\210\213\342\212\206\342\212\207\342\212\202\n0xa2c0: \342\210\252\342\210\251                \342\210\247\342\210\250\302\254\342\207\222\342\207\224\342\210\200\342\210\203                      \342\210\240\342\212\245\342\214\222\n0xa2e0: \342\210\207\342\211\241\342\211\222\342\211\252\342\211\253\342\210\232\342\210\275\342\210\235\342\210\265\342\210\253\342\210\254              \342\204\253\342\200\260\342\231\257\342\231\255\342\231\252\342\200\240\342\200\241\302\266        \342\227\257\n0xa3a0:                                 \357\274\220\357\274\221\357\274\222\357\274\223\357\274\224\357\274\225\357\274\226\357\274\227\357\274\230\357\274\231          \n0xa3c0:   \357\274\241\357\274\242\357\274\243\357\274\244\357\274\245\357\274\246\357\274\247\357\274\250\357\274\251\357\274\252\357\274\253\357\274\254\357\274\255\357\274\256\357\274\257\357\274\260\357\274\261\357\274\262\357\274\263\357\274\264\357\274\265\357\274\266\357\274\267\357\274\270\357\274\271\357\274\272        \n0xa3e0:   \357\275\201\357\275\202\357\275\203\357\275\204\357\275\205\357\275\206\357\275\207\357\275\210\357\275\211\357\275\212\357\275\213\357\275\214\357\275\215\357\275\216\357\275\217\357\275\220\357\275\221\357\275\222\357\275\223\357\275\224\357\275\225\357\275\226\357\275\227\357\275\230\357\275\231\357\275\232        \n0xa4a0:   \343\201\201\343\201\202\343\201\203\343\201\204\343\201\205\343\201\206\343\201\207\343\201\210\343\201\211\343\201\212\343\201\213\343\201\214\343\201\215\343\201\216\343\201\217\343\201\220\343\201\221\343\201\222\343\201\223\343\201\224\343\201\225\343\201\226\343\201\227\343\201\230\343\201\231\343\201\232\343\201\233\343\201\234\343\201\235\343\201\236\n0xa4c0: \343\201\240\343\201\241\343\201\242\343\201\243\343\201\244\343\201\245\343\201\246\343\201\247\343\201\250\343\201\251\343\201\252\343\201\253\343\201\254\343\201\255\343\201\256\343\201\257\343\201\260\343\201\261\343\201\262\343\201\263\343\201\264\343\201\265\343\201\266\343\201\267\343\201\270\343\201\271\343\201\272\343\201\273\343\201\274\343\201\275\343\201\276\n0xa4e0: \343\202\200\343\202\201\343\202\202\343\202\203\343\202\204\343\202\205\343\202\206\343\202\207\343\202\210\343\202\211\343\202\212\343\202\213\343\202\214\343\202\215\343\202\216\343\202\217\343\202\220\343\202\221\343\202\222\343\202\223                      \n0xa5a0:   \343\202\241\343\202\242\343\202\243\343\202\244\343\202\245\343\202\246\343\202\247\343\202\250\343\202\251\343\202\252\343\202\253\343\202\254\343\202\255\343\202\256\343\202\257\343\202\260\343\202\261\343\202\262\343\202\263\343\202\264\343\202\265\343\202\266\343\202\267\343\202\270\343\202\271\343\202\272\343\202\273\343\202\274\343\202\275\343\202\276\n0xa5c0: \343\203\200\343\203\201\343\203\202\343\203\203\343\203\204\343\203\205\343\203\206\343\203\207\343\203\210\343\203\211\343\203\212\343\203\213\343\203\214\343\203\215\343\203\216\343\203\217\343\203\220\343\203\221\343\203\222\343\203\223\343\203\224\343\203\225\343\203\226\343\203\227\343\203\230\343\203\231\343\203\232\343\203\233\343\203\234\343\203\235\343\203\236\n0xa5e0: \343\203\240\343\203\241\343\203\242\343\203\243\343\203\244\343\203\245\343\203\246\343\203\247\343\203\250\343\203\251\343\203\252\343\203\253\343\203\254\343\203\255\343\203\256\343\203\257\343\203\260\343\203\261\343\203\262\343\203\263\343\203\264\343\203\265\343\203\266                \n0xa6a0:   \316\221\316\222\316\223\316\224\316\225\316\226\316\227\316\230\316\231\316\232\316\233\316\234\316\235\316\236\316\237\316\240\316\241\316\243\316\244\316\245\316\246\316\247\316\250\316\251            \n0xa6c0:   \316\261\316\262\316\263\316\264\316\265\316\266\316\267\316\270\316\271\316\272\316\273\316\274\316\275\316\276\316\277\317\200\317\201\317\203\317\204\317\205\317\206\317\207\317\210\317\211            \n0xa6e0:                                                               \n0xa7a0:   \320\220\320\221\320\222\320\223\320\224\320\225\320\201\320\226\320\227\320\230\320\231\320\232\320\233\320\234\320\235\320\236\320\237\320\240\320\241\320\242\320\243\320\244\320\245\320\246\320\247\320\250\320\251\320\252\320\253\320\254\n0xa7c0: \320\256\320\257                              \320\260\320\261\320\262\320\263\320\264\320\265\321\221\320\266\320\267\320\270\320\271\320\272\320\273\320\274\n0xa7e0: \320\276\320\277\321\200\321\201\321\202\321\203\321\204\321\205\321\206\321\207\321\210\321\211\321\212\321\213\321\214\321\215\321\216\321\217                          \n0xa8a0:   \342\224\200\342\224\202\342\224\214\342\224\220\342\224\230\342\224\224\342\224\234\342\224\254\342\224\244\342\224\264\342\224\274\342\224\201\342\224\203\342\224\217\342\224\223\342\224\233\342\224\227\342\224\243\342\224\263\342\224\253\342\224\273\342\225\213\342\224\240\342\224\257\342\224\250\342\224\267\342\224\277\342\224\235\342\224\260\342\224\245\n0xa8c0: \342\225\202                                                            \n0xa8e0:                                                               \n0xa9a0:                                                               \n0xa9c0:                                                               \n0xa9e0:                                                               \n0xaaa0:                                                               \n0xaac0:                                                               \n0xaae0:                                                               \n0xaba0:                                                               \n0xabc0:                                                               \n0xabe0:                                                               \n0xaca0:                                                               \n0xacc0:                                                               \n0xace0:                                                               \n0xada0:                                                               \n0xadc0:                                                               \n0xade0:                                                               \n0xaea0:                                                               \n0xaec0:                                                               \n0xaee0:                                                               \n0xafa0:                                                               \n0xafc0:                                                               \n0xafe0:                                                               \n0xb0a0:   \344\272\234\345\224\226\345\250\203\351\230\277\345\223\200\346\204\233\346\214\250\345\247\266\351\200\242\350\221\265\350\214\234\347\251\220\346\202\252\346\217\241\346\270\245\346\227\255\350\221\246\350\212\246\351\257\265\346\242\223\345\234\247\346\226\241\346\211\261\345\256\233\345\247\220\350\231\273\351\243\264\347\265\242\347\266\276\351\256\216\n0xb0c0: \347\262\237\350\242\267\345\256\211\345\272\265\346\214\211\346\232\227\346\241\210\351\227\207\351\236\215\346\235\217\344\273\245\344\274\212\344\275\215\344\276\235\345\201\211\345\233\262\345\244\267\345\247\224\345\250\201\345\260\211\346\203\237\346\204\217\346\205\260\346\230\223\346\244\205\347\202\272\347\225\217\347\225\260\347\247\273\347\266\255\347\267\257\n0xb0e0: \350\220\216\350\241\243\350\254\202\351\201\225\351\201\272\345\214\273\344\272\225\344\272\245\345\237\237\350\202\262\351\203\201\347\243\257\344\270\200\345\243\261\346\272\242\351\200\270\347\250\262\350\214\250\350\212\213\351\260\257\345\205\201\345\215\260\345\222\275\345\223\241\345\233\240\345\247\273\345\274\225\351\243\262\346\267\253\350\203\244\350\224\255\n0xb1a0:   \351\231\242\351\231\260\351\232\240\351\237\273\345\220\213\345\217\263\345\256\207\347\203\217\347\276\275\350\277\202\351\233\250\345\215\257\351\265\234\347\252\272\344\270\221\347\242\223\350\207\274\346\270\246\345\230\230\345\224\204\346\254\235\350\224\232\351\260\273\345\247\245\345\216\251\346\265\246\347\223\234\351\226\217\345\231\202\344\272\221\n0xb1c0: \351\233\262\350\215\217\351\244\214\345\217\241\345\226\266\345\254\260\345\275\261\346\230\240\346\233\263\346\240\204\346\260\270\346\263\263\346\264\251\347\221\233\347\233\210\347\251\216\351\240\264\350\213\261\350\241\233\350\251\240\351\213\255\346\266\262\347\226\253\347\233\212\351\247\205\346\202\246\350\254\201\350\266\212\351\226\262\346\246\216\345\216\255\n0xb1e0: \345\234\222\345\240\260\345\245\204\345\256\264\345\273\266\346\200\250\346\216\251\346\217\264\346\262\277\346\274\224\347\202\216\347\204\224\347\205\231\347\207\225\347\214\277\347\270\201\350\211\266\350\213\221\350\226\227\351\201\240\351\211\233\351\264\233\345\241\251\346\226\274\346\261\232\347\224\245\345\207\271\345\244\256\345\245\245\345\276\200\345\277\234\n0xb2a0:   \346\212\274\346\227\272\346\250\252\346\254\247\346\256\264\347\216\213\347\277\201\350\245\226\351\264\254\351\264\216\351\273\204\345\262\241\346\262\226\350\215\273\345\204\204\345\261\213\346\206\266\350\207\206\346\241\266\347\211\241\344\271\231\344\277\272\345\215\270\346\201\251\346\270\251\347\251\217\351\237\263\344\270\213\345\214\226\344\273\256\n0xb2c0: \344\274\275\344\276\241\344\275\263\345\212\240\345\217\257\345\230\211\345\244\217\345\253\201\345\256\266\345\257\241\347\247\221\346\232\207\346\236\234\346\236\266\346\255\214\346\262\263\347\201\253\347\217\202\347\246\215\347\246\276\347\250\274\347\256\207\350\212\261\350\213\233\350\214\204\350\215\267\350\217\257\350\217\223\350\235\246\350\252\262\345\230\251\n0xb2e0: \350\277\246\351\201\216\351\234\236\350\232\212\344\277\204\345\263\250\346\210\221\347\211\231\347\224\273\350\207\245\350\212\275\350\233\276\350\263\200\351\233\205\351\244\223\351\247\225\344\273\213\344\274\232\350\247\243\345\233\236\345\241\212\345\243\212\345\273\273\345\277\253\346\200\252\346\202\224\346\201\242\346\207\220\346\210\222\346\213\220\346\224\271\n0xb3a0:   \351\255\201\346\231\246\346\242\260\346\265\267\347\201\260\347\225\214\347\232\206\347\265\265\350\212\245\350\237\271\351\226\213\351\232\216\350\262\235\345\207\261\345\212\276\345\244\226\345\222\263\345\256\263\345\264\226\346\205\250\346\246\202\346\266\257\347\242\215\350\223\213\350\241\227\350\251\262\351\216\247\351\252\270\346\265\254\351\246\250\n0xb3c0: \345\236\243\346\237\277\350\233\216\351\210\216\345\212\203\345\232\207\345\220\204\345\273\223\346\213\241\346\222\271\346\240\274\346\240\270\346\256\273\347\215\262\347\242\272\347\251\253\350\246\232\350\247\222\350\265\253\350\274\203\351\203\255\351\226\243\351\232\224\351\235\251\345\255\246\345\262\263\346\245\275\351\241\215\351\241\216\346\216\233\347\254\240\n0xb3e0: \346\251\277\346\242\266\351\260\215\346\275\237\345\211\262\345\226\235\346\201\260\346\213\254\346\264\273\346\270\207\346\273\221\350\221\233\350\244\220\350\275\204\344\270\224\351\260\271\345\217\266\346\244\233\346\250\272\351\236\204\346\240\252\345\205\234\347\253\203\350\222\262\351\207\234\351\216\214\345\231\233\351\264\250\346\240\242\350\214\205\350\220\261\n0xb4a0:   \347\262\245\345\210\210\350\213\205\347\223\246\344\271\276\344\276\203\345\206\240\345\257\222\345\210\212\345\213\230\345\213\247\345\267\273\345\226\232\345\240\252\345\247\246\345\256\214\345\256\230\345\257\233\345\271\262\345\271\271\346\202\243\346\204\237\346\205\243\346\206\276\346\217\233\346\225\242\346\237\221\346\241\223\346\243\272\346\254\276\n0xb4c0: \346\261\227\346\274\242\346\276\227\346\275\205\347\222\260\347\224\230\347\233\243\347\234\213\347\253\277\347\256\241\347\260\241\347\267\251\347\274\266\347\277\260\350\202\235\350\211\246\350\216\236\350\246\263\350\253\214\350\262\253\351\202\204\351\221\221\351\226\223\351\226\221\351\226\242\351\231\245\351\237\223\351\244\250\350\210\230\344\270\270\345\220\253\n0xb4e0: \345\267\214\347\216\251\347\231\214\347\234\274\345\262\251\347\277\253\350\264\213\351\233\201\351\240\221\351\241\224\351\241\230\344\274\201\344\274\216\345\215\261\345\226\234\345\231\250\345\237\272\345\245\207\345\254\211\345\257\204\345\262\220\345\270\214\345\271\276\345\277\214\346\217\256\346\234\272\346\227\227\346\227\242\346\234\237\346\243\213\346\243\204\n0xb5a0:   \346\251\237\345\270\260\346\257\205\346\260\227\346\261\275\347\225\277\347\245\210\345\255\243\347\250\200\347\264\200\345\276\275\350\246\217\350\250\230\350\262\264\350\265\267\350\273\214\350\274\235\351\243\242\351\250\216\351\254\274\344\272\200\345\201\275\345\204\200\345\246\223\345\256\234\346\210\257\346\212\200\346\223\254\346\254\272\347\212\240\n0xb5c0: \347\245\207\347\276\251\350\237\273\350\252\274\350\255\260\346\216\254\350\217\212\351\236\240\345\220\211\345\220\203\345\226\253\346\241\224\346\251\230\350\251\260\347\240\247\346\235\265\351\273\215\345\215\264\345\256\242\350\204\232\350\231\220\351\200\206\344\270\230\344\271\205\344\273\207\344\274\221\345\217\212\345\220\270\345\256\256\345\274\223\346\200\245\n0xb5e0: \346\234\275\346\261\202\346\261\262\346\263\243\347\201\270\347\220\203\347\251\266\347\252\256\347\254\210\347\264\232\347\263\276\347\265\246\346\227\247\347\211\233\345\216\273\345\261\205\345\267\250\346\213\222\346\213\240\346\214\231\346\270\240\350\231\232\350\250\261\350\267\235\351\213\270\346\274\201\347\246\246\351\255\232\344\272\250\344\272\253\344\272\254\n0xb6a0:   \344\276\233\344\276\240\345\203\221\345\205\207\347\253\266\345\205\261\345\207\266\345\215\224\345\214\241\345\215\277\345\217\253\345\226\254\345\242\203\345\263\241\345\274\267\345\275\212\346\200\257\346\201\220\346\201\255\346\214\237\346\225\231\346\251\213\346\263\201\347\213\202\347\213\255\347\237\257\350\203\270\350\204\205\350\210\210\350\225\216\n0xb6c0: \351\217\241\351\237\277\351\245\227\351\251\232\344\273\260\345\207\235\345\260\255\346\232\201\346\245\255\345\261\200\346\233\262\346\245\265\347\216\211\346\241\220\347\262\201\345\203\205\345\213\244\345\235\207\345\267\276\351\214\246\346\226\244\346\254\243\346\254\275\347\220\264\347\246\201\347\246\275\347\255\213\347\267\212\350\212\271\350\217\214\350\241\277\n0xb6e0: \350\254\271\350\277\221\351\207\221\345\220\237\351\212\200\344\271\235\345\200\266\345\217\245\345\214\272\347\213\227\347\216\226\347\237\251\350\213\246\350\272\257\351\247\206\351\247\210\351\247\222\345\205\267\346\204\232\350\231\236\345\226\260\347\251\272\345\201\266\345\257\223\351\201\207\351\232\205\344\270\262\346\253\233\351\207\247\345\261\221\345\261\210\n0xb7a0:   \346\216\230\347\252\237\346\262\223\351\235\264\350\275\241\347\252\252\347\206\212\351\232\210\347\262\202\346\240\227\347\271\260\346\241\221\351\215\254\345\213\262\345\220\233\350\226\253\350\250\223\347\276\244\350\273\215\351\203\241\345\215\246\350\242\210\347\245\201\344\277\202\345\202\276\345\210\221\345\205\204\345\225\223\345\234\255\347\217\252\n0xb7c0: \345\245\221\345\275\242\345\276\204\346\201\265\346\205\266\346\205\247\346\206\251\346\216\262\346\220\272\346\225\254\346\231\257\346\241\202\346\270\223\347\225\246\347\250\275\347\263\273\347\265\214\347\266\231\347\271\213\347\275\253\350\214\216\350\215\212\350\233\215\350\250\210\350\251\243\350\255\246\350\273\275\351\240\232\351\266\217\350\212\270\350\277\216\n0xb7e0: \345\212\207\346\210\237\346\222\203\346\277\200\351\232\231\346\241\201\345\202\221\346\254\240\346\261\272\346\275\224\347\251\264\347\265\220\350\241\200\350\250\243\346\234\210\344\273\266\345\200\271\345\200\246\345\201\245\345\205\274\345\210\270\345\211\243\345\226\247\345\234\217\345\240\205\345\253\214\345\273\272\346\206\262\346\207\270\346\213\263\346\215\262\n0xb8a0:   \346\244\234\346\250\251\347\211\275\347\212\254\347\214\256\347\240\224\347\241\257\347\265\271\347\234\214\350\202\251\350\246\213\350\254\231\350\263\242\350\273\222\351\201\243\351\215\265\351\231\272\351\241\225\351\250\223\351\271\270\345\205\203\345\216\237\345\216\263\345\271\273\345\274\246\346\270\233\346\272\220\347\216\204\347\217\276\347\265\203\n0xb8c0: \350\250\200\350\253\272\351\231\220\344\271\216\345\200\213\345\217\244\345\221\274\345\233\272\345\247\221\345\255\244\345\267\261\345\272\253\345\274\247\346\210\270\346\225\205\346\236\257\346\271\226\347\213\220\347\263\212\350\242\264\350\202\241\350\203\241\350\217\260\350\231\216\350\252\207\350\267\250\351\210\267\351\233\207\351\241\247\351\274\223\344\272\224\n0xb8e0: \344\274\215\345\215\210\345\221\211\345\220\276\345\250\257\345\276\214\345\276\241\346\202\237\346\242\247\346\252\216\347\221\232\347\242\201\350\252\236\350\252\244\350\255\267\351\206\220\344\271\236\351\257\211\344\272\244\344\275\274\344\276\257\345\200\231\345\200\226\345\205\211\345\205\254\345\212\237\345\212\271\345\213\276\345\216\232\345\217\243\345\220\221\n0xb9a0:   \345\220\216\345\226\211\345\235\221\345\236\242\345\245\275\345\255\224\345\255\235\345\256\217\345\267\245\345\267\247\345\267\267\345\271\270\345\272\203\345\272\232\345\272\267\345\274\230\346\201\222\346\205\214\346\212\227\346\213\230\346\216\247\346\224\273\346\230\202\346\231\203\346\233\264\346\235\255\346\240\241\346\242\227\346\247\213\346\261\237\n0xb9c0: \346\265\251\346\270\257\346\272\235\347\224\262\347\232\207\347\241\254\347\250\277\347\263\240\347\264\205\347\264\230\347\265\236\347\266\261\350\200\225\350\200\203\350\202\257\350\202\261\350\205\224\350\206\217\350\210\252\350\215\222\350\241\214\350\241\241\350\254\233\350\262\242\350\263\274\351\203\212\351\205\265\351\211\261\347\240\277\351\213\274\351\226\244\n0xb9e0: \351\240\205\351\246\231\351\253\230\351\264\273\345\211\233\345\212\253\345\217\267\345\220\210\345\243\225\346\213\267\346\277\240\350\261\252\350\275\237\351\272\271\345\205\213\345\210\273\345\221\212\345\233\275\347\251\200\351\205\267\351\265\240\351\273\222\347\215\204\346\274\211\350\205\260\347\224\221\345\277\275\346\203\232\351\252\250\347\213\233\350\276\274\n0xbaa0:   \346\255\244\351\240\203\344\273\212\345\233\260\345\235\244\345\242\276\345\251\232\346\201\250\346\207\207\346\230\217\346\230\206\346\240\271\346\242\261\346\267\267\347\227\225\347\264\272\350\211\256\351\255\202\344\272\233\344\275\220\345\217\211\345\224\206\345\265\257\345\267\246\345\267\256\346\237\273\346\262\231\347\221\263\347\240\202\350\251\220\n0xbac0: \350\243\237\345\235\220\345\272\247\346\214\253\345\202\265\345\202\254\345\206\215\346\234\200\345\223\211\345\241\236\345\246\273\345\256\260\345\275\251\346\211\215\346\216\241\346\240\275\346\255\263\346\270\210\347\201\275\351\207\207\347\212\200\347\240\225\347\240\246\347\245\255\346\226\216\347\264\260\350\217\234\350\243\201\350\274\211\351\232\233\345\211\244\n0xbae0: \346\235\220\347\275\252\350\262\241\345\206\264\345\235\202\351\230\252\345\240\272\346\246\212\350\202\264\345\222\262\345\264\216\345\237\274\347\242\225\351\267\272\344\275\234\345\211\212\345\222\213\346\220\276\346\230\250\346\234\224\346\237\265\347\252\204\347\255\226\347\264\242\351\214\257\346\241\234\351\256\255\347\254\271\345\214\231\345\206\212\345\210\267\n0xbba0:   \345\257\237\346\213\266\346\222\256\346\223\246\346\234\255\346\256\272\350\226\251\351\233\221\347\232\220\351\257\226\346\215\214\351\214\206\351\256\253\347\232\277\346\231\222\344\270\211\345\202\230\345\217\202\345\261\261\346\203\250\346\222\222\346\225\243\346\241\237\347\207\246\347\217\212\347\224\243\347\256\227\347\272\202\350\232\225\350\256\203\n0xbbc0: \351\205\270\351\244\220\346\226\254\346\232\253\346\256\213\344\273\225\344\273\224\344\274\272\344\275\277\345\210\272\345\217\270\345\217\262\345\227\243\345\233\233\345\243\253\345\247\213\345\247\211\345\247\277\345\255\220\345\261\215\345\270\202\345\270\253\345\277\227\346\200\235\346\214\207\346\224\257\345\255\234\346\226\257\346\226\275\346\227\250\346\236\235\n0xbbe0: \346\255\273\346\260\217\347\215\205\347\245\211\347\247\201\347\263\270\347\264\231\347\264\253\350\202\242\350\204\202\350\207\263\350\246\226\350\251\236\350\251\251\350\251\246\350\252\214\350\253\256\350\263\207\350\263\234\351\233\214\351\243\274\346\255\257\344\272\213\344\274\274\344\276\215\345\205\220\345\255\227\345\257\272\346\205\210\346\214\201\346\231\202\n0xbca0:   \346\254\241\346\273\213\346\262\273\347\210\276\347\222\275\347\227\224\347\243\201\347\244\272\350\200\214\350\200\263\350\207\252\350\222\224\350\276\236\346\261\220\351\271\277\345\274\217\350\255\230\351\264\253\347\253\272\350\273\270\345\256\215\351\233\253\344\270\203\345\217\261\345\237\267\345\244\261\345\253\211\345\256\244\346\202\211\346\271\277\n0xbcc0: \347\226\276\350\263\252\345\256\237\350\224\200\347\257\240\345\201\262\346\237\264\350\212\235\345\261\241\350\225\212\347\270\236\350\210\216\345\206\231\345\260\204\346\215\250\350\265\246\346\226\234\347\205\256\347\244\276\347\264\227\350\200\205\350\254\235\350\273\212\351\201\256\350\233\207\351\202\252\345\200\237\345\213\272\345\260\272\346\235\223\347\201\274\n0xbce0: \351\205\214\351\207\210\351\214\253\350\213\245\345\257\202\345\274\261\346\203\271\344\270\273\345\217\226\345\256\210\346\211\213\346\234\261\346\256\212\347\213\251\347\217\240\347\250\256\350\205\253\350\266\243\351\205\222\351\246\226\345\204\222\345\217\227\345\221\252\345\257\277\346\216\210\346\250\271\347\266\254\351\234\200\345\233\232\345\217\216\345\221\250\n0xbda0:   \345\256\227\345\260\261\345\267\236\344\277\256\346\204\201\346\213\276\346\264\262\347\247\200\347\247\213\347\265\202\347\271\215\347\277\222\350\207\255\350\210\237\350\222\220\350\241\206\350\245\262\350\256\220\350\271\264\350\274\257\351\200\261\351\205\213\351\205\254\351\233\206\351\206\234\344\273\200\344\275\217\345\205\205\345\215\201\345\276\223\n0xbdc0: \346\237\224\346\261\201\346\270\213\347\215\243\347\270\246\351\207\215\351\212\203\345\217\224\345\244\231\345\256\277\346\267\221\347\245\235\347\270\256\347\262\233\345\241\276\347\206\237\345\207\272\350\241\223\350\277\260\344\277\212\345\263\273\346\230\245\347\236\254\347\253\243\350\210\234\351\247\277\345\207\206\345\276\252\346\227\254\346\245\257\346\256\211\n0xbde0: \346\272\226\346\275\244\347\233\276\347\264\224\345\267\241\351\201\265\351\206\207\351\240\206\345\207\246\345\210\235\346\211\200\346\232\221\346\233\231\346\270\232\345\272\266\347\267\222\347\275\262\346\233\270\350\226\257\350\227\267\350\253\270\345\212\251\345\217\231\345\245\263\345\272\217\345\276\220\346\201\225\351\213\244\351\231\244\345\202\267\345\204\237\n0xbea0:   \345\213\235\345\214\240\345\215\207\345\217\254\345\223\250\345\225\206\345\224\261\345\230\227\345\245\250\345\246\276\345\250\274\345\256\265\345\260\206\345\260\217\345\260\221\345\260\232\345\272\204\345\272\212\345\273\240\345\275\260\346\211\277\346\212\204\346\213\233\346\216\214\346\215\267\346\230\207\346\230\214\346\230\255\346\231\266\346\235\276\n0xbec0: \346\250\237\346\250\265\346\262\274\346\266\210\346\270\211\346\271\230\347\204\274\347\204\246\347\205\247\347\227\207\347\234\201\347\241\235\347\244\201\347\245\245\347\247\260\347\253\240\347\254\221\347\262\247\347\264\271\350\202\226\350\217\226\350\222\213\350\225\211\350\241\235\350\243\263\350\250\237\350\250\274\350\251\224\350\251\263\350\261\241\350\263\236\n0xbee0: \351\211\246\351\215\276\351\220\230\351\232\234\351\236\230\344\270\212\344\270\210\344\270\236\344\271\227\345\206\227\345\211\260\345\237\216\345\240\264\345\243\214\345\254\242\345\270\270\346\203\205\346\223\276\346\235\241\346\235\226\346\265\204\347\212\266\347\225\263\347\251\243\350\222\270\350\255\262\351\206\270\351\214\240\345\230\261\345\237\264\351\243\276\n0xbfa0:   \346\213\255\346\244\215\346\256\226\347\207\255\347\271\224\350\201\267\350\211\262\350\247\246\351\243\237\350\235\225\350\276\261\345\260\273\344\274\270\344\277\241\344\276\265\345\224\207\345\250\240\345\257\235\345\257\251\345\277\203\346\205\216\346\214\257\346\226\260\346\231\213\346\243\256\346\246\233\346\265\270\346\267\261\347\224\263\347\226\271\n0xbfc0: \347\245\236\347\247\246\347\264\263\350\207\243\350\212\257\350\226\252\350\246\252\350\250\272\350\272\253\350\276\233\351\200\262\351\207\235\351\234\207\344\272\272\344\273\201\345\210\203\345\241\265\345\243\254\345\260\213\347\224\232\345\260\275\350\205\216\350\250\212\350\277\205\351\231\243\351\235\255\347\254\245\350\253\217\351\240\210\351\205\242\345\233\263\n0xbfe0: \351\200\227\345\220\271\345\236\202\345\270\245\346\216\250\346\260\264\347\202\212\347\235\241\347\262\213\347\277\240\350\241\260\351\201\202\351\205\224\351\214\220\351\214\230\351\232\217\347\221\236\351\253\204\345\264\207\345\265\251\346\225\260\346\236\242\350\266\250\351\233\233\346\215\256\346\235\211\346\244\231\350\217\205\351\240\227\351\233\200\350\243\276\n0xc0a0:   \346\276\204\346\221\272\345\257\270\344\270\226\347\200\254\347\225\235\346\230\257\345\207\204\345\210\266\345\213\242\345\247\223\345\276\201\346\200\247\346\210\220\346\224\277\346\225\264\346\230\237\346\231\264\346\243\262\346\240\226\346\255\243\346\270\205\347\211\262\347\224\237\347\233\233\347\262\276\350\201\226\345\243\260\350\243\275\350\245\277\n0xc0c0: \350\252\223\350\253\213\351\200\235\351\206\222\351\235\222\351\235\231\346\226\211\347\250\216\350\204\206\351\232\273\345\270\255\346\203\234\346\210\232\346\226\245\346\230\224\346\236\220\347\237\263\347\251\215\347\261\215\347\270\276\350\204\212\350\262\254\350\265\244\350\267\241\350\271\237\347\242\251\345\210\207\346\213\231\346\216\245\346\221\202\346\212\230\n0xc0e0: \347\252\203\347\257\200\350\252\254\351\233\252\347\265\266\350\210\214\350\235\211\344\273\231\345\205\210\345\215\203\345\215\240\345\256\243\345\260\202\345\260\226\345\267\235\346\210\246\346\211\207\346\222\260\346\240\223\346\240\264\346\263\211\346\265\205\346\264\227\346\237\223\346\275\234\347\205\216\347\205\275\346\227\213\347\251\277\347\256\255\347\267\232\n0xc1a0:   \347\271\212\347\276\250\350\205\272\350\210\233\350\210\271\350\226\246\350\251\256\350\263\216\350\267\265\351\201\270\351\201\267\351\212\255\351\212\221\351\226\203\351\256\256\345\211\215\345\226\204\346\274\270\347\204\266\345\205\250\347\246\205\347\271\225\350\206\263\347\263\216\345\231\214\345\241\221\345\262\250\346\216\252\346\233\276\346\233\275\n0xc1c0: \347\213\231\347\226\217\347\226\216\347\244\216\347\245\226\347\247\237\347\262\227\347\264\240\347\265\204\350\230\207\350\250\264\351\230\273\351\201\241\351\274\240\345\203\247\345\211\265\345\217\214\345\217\242\345\200\211\345\226\252\345\243\256\345\245\217\347\210\275\345\256\213\345\261\244\345\214\235\346\203\243\346\203\263\346\215\234\346\216\203\346\214\277\n0xc1e0: \346\223\215\346\227\251\346\233\271\345\267\243\346\247\215\346\247\275\346\274\225\347\207\245\344\272\211\347\227\251\347\233\270\347\252\223\347\263\237\347\267\217\347\266\234\350\201\241\350\215\211\350\215\230\350\221\254\350\222\274\350\227\273\350\243\205\350\265\260\351\200\201\351\201\255\351\216\227\351\234\234\351\250\222\345\203\217\345\242\227\346\206\216\n0xc2a0:   \350\207\223\350\224\265\350\264\210\351\200\240\344\277\203\345\201\264\345\211\207\345\215\263\346\201\257\346\215\211\346\235\237\346\270\254\350\266\263\351\200\237\344\277\227\345\261\236\350\263\212\346\227\217\347\266\232\345\215\222\350\242\226\345\205\266\346\217\203\345\255\230\345\255\253\345\260\212\346\220\215\346\235\221\351\201\234\344\273\226\n0xc2c0: \345\244\252\346\261\260\350\251\221\345\224\276\345\240\225\345\246\245\346\203\260\346\211\223\346\237\201\350\210\265\346\245\225\351\231\200\351\247\204\351\250\250\344\275\223\345\240\206\345\257\276\350\200\220\345\262\261\345\270\257\345\276\205\346\200\240\346\205\213\346\210\264\346\233\277\346\263\260\346\273\236\350\203\216\350\205\277\350\213\224\350\242\213\n0xc2e0: \351\200\200\351\200\256\351\232\212\351\273\233\351\257\233\344\273\243\345\217\260\345\244\247\347\254\254\351\206\215\351\241\214\351\267\271\346\273\235\347\200\247\345\215\223\345\225\204\345\256\205\346\211\230\346\212\236\346\213\223\346\262\242\346\277\257\347\220\242\350\250\227\351\220\270\346\277\201\350\253\276\350\214\270\345\207\247\350\233\270\345\217\252\n0xc3a0:   \345\217\251\344\275\206\351\201\224\350\276\260\345\245\252\350\204\261\345\267\275\347\253\252\350\276\277\346\243\232\350\260\267\347\213\270\351\261\210\346\250\275\350\252\260\344\270\271\345\215\230\345\230\206\345\235\246\346\213\205\346\216\242\346\227\246\346\255\216\346\267\241\346\271\233\347\202\255\347\237\255\347\253\257\347\256\252\347\266\273\n0xc3c0: \350\203\206\350\233\213\350\252\225\351\215\233\345\233\243\345\243\207\345\274\276\346\226\255\346\232\226\346\252\200\346\256\265\347\224\267\350\253\207\345\200\244\347\237\245\345\234\260\345\274\233\346\201\245\346\231\272\346\261\240\347\227\264\347\250\232\347\275\256\350\207\264\350\234\230\351\201\205\351\246\263\347\257\211\347\225\234\347\253\271\347\255\221\n0xc3e0: \351\200\220\347\247\251\347\252\222\350\214\266\345\253\241\347\235\200\344\270\255\344\273\262\345\256\231\345\277\240\346\212\275\346\230\274\346\237\261\346\263\250\350\231\253\350\241\267\350\250\273\351\205\216\351\213\263\351\247\220\346\250\227\347\200\246\347\214\252\350\213\247\350\221\227\350\262\257\344\270\201\345\205\206\345\207\213\345\226\213\345\257\265\n0xc4a0:   \345\270\226\345\270\263\345\272\201\345\274\224\345\274\265\345\275\253\345\276\264\346\207\262\346\214\221\346\232\242\346\234\235\346\275\256\347\211\222\347\224\272\347\234\272\350\201\264\350\204\271\350\205\270\350\235\266\350\252\277\350\253\234\350\266\205\350\267\263\351\212\232\351\225\267\351\240\202\351\263\245\345\213\205\346\215\227\347\233\264\n0xc4c0: \346\262\210\347\217\215\350\263\203\351\216\256\351\231\263\346\264\245\345\242\234\346\244\216\346\247\214\350\277\275\351\216\232\347\227\233\351\200\232\345\241\232\346\240\202\346\216\264\346\247\273\344\275\203\346\274\254\346\237\230\350\276\273\350\224\246\347\266\264\351\215\224\346\244\277\346\275\260\345\235\252\345\243\267\345\254\254\347\264\254\347\210\252\n0xc4e0: \351\207\243\351\266\264\344\272\255\344\275\216\345\201\234\345\201\265\345\211\203\350\262\236\345\221\210\345\240\244\345\256\232\345\270\235\345\272\225\345\272\255\345\273\267\345\274\237\346\202\214\346\212\265\346\214\272\346\217\220\346\242\257\346\261\200\347\242\207\347\246\216\347\250\213\347\267\240\350\211\207\350\250\202\350\253\246\350\271\204\351\200\223\n0xc5a0:   \351\202\270\351\204\255\351\207\230\351\274\216\346\263\245\346\221\230\346\223\242\346\225\265\346\273\264\347\232\204\347\254\233\351\201\251\351\217\221\346\272\272\345\223\262\345\276\271\346\222\244\350\275\215\350\277\255\351\211\204\345\205\270\345\241\253\345\244\251\345\261\225\345\272\227\346\267\273\347\272\217\347\224\234\350\262\274\350\273\242\n0xc5c0: \347\202\271\344\274\235\346\256\277\346\276\261\347\224\260\351\233\273\345\205\216\345\220\220\345\240\265\345\241\227\345\246\254\345\261\240\345\276\222\346\226\227\346\235\234\346\270\241\347\231\273\350\217\237\350\263\255\351\200\224\351\203\275\351\215\215\347\240\245\347\240\272\345\212\252\345\272\246\345\234\237\345\245\264\346\200\222\345\200\222\345\205\232\n0xc5e0: \345\207\215\345\210\200\345\224\220\345\241\224\345\241\230\345\245\227\345\256\225\345\263\266\345\266\213\346\202\274\346\212\225\346\220\255\346\235\261\346\241\203\346\242\274\346\243\237\347\233\227\346\267\230\346\271\257\346\266\233\347\201\257\347\207\210\345\275\223\347\227\230\347\245\267\347\255\211\347\255\224\347\255\222\347\263\226\347\265\261\345\210\260\n0xc6a0:   \350\221\243\350\225\251\350\227\244\350\250\216\350\254\204\350\261\206\350\270\217\351\200\203\351\200\217\351\220\231\351\231\266\351\240\255\351\250\260\351\227\230\345\203\215\345\213\225\345\220\214\345\240\202\345\260\216\346\206\247\346\222\236\346\264\236\347\236\263\347\253\245\350\203\264\350\220\204\351\201\223\351\212\205\345\263\240\351\264\207\n0xc6c0: \345\276\227\345\276\263\346\266\234\347\211\271\347\235\243\347\246\277\347\257\244\346\257\222\347\213\254\350\252\255\346\240\203\346\251\241\345\207\270\347\252\201\346\244\264\345\261\212\351\263\266\350\213\253\345\257\205\351\205\211\347\200\236\345\231\270\345\261\257\346\203\207\346\225\246\346\262\214\350\261\232\351\201\201\351\240\223\345\221\221\346\233\207\n0xc6e0: \345\245\210\351\202\243\345\206\205\344\271\215\345\207\252\350\226\231\350\254\216\347\201\230\346\215\272\351\215\213\346\245\242\351\246\264\347\270\204\347\225\267\345\215\227\346\245\240\350\273\237\351\233\243\346\261\235\344\272\214\345\260\274\345\274\220\350\277\251\345\214\202\350\263\221\350\202\211\350\231\271\345\273\277\346\227\245\344\271\263\345\205\245\n0xc7a0:   \345\246\202\345\260\277\351\237\256\344\273\273\345\246\212\345\277\215\350\252\215\346\277\241\347\246\260\347\245\242\345\257\247\350\221\261\347\214\253\347\206\261\345\271\264\345\277\265\346\215\273\346\222\232\347\207\203\347\262\230\344\271\203\345\273\274\344\271\213\345\237\234\345\232\242\346\202\251\346\277\203\347\264\215\350\203\275\350\204\263\n0xc7c0: \350\276\262\350\246\227\350\232\244\345\267\264\346\212\212\346\222\255\350\246\207\346\235\267\346\263\242\346\264\276\347\220\266\347\240\264\345\251\206\347\275\265\350\212\255\351\246\254\344\277\263\345\273\203\346\213\235\346\216\222\346\225\227\346\235\257\347\233\203\347\211\214\350\203\214\350\202\272\350\274\251\351\205\215\345\200\215\345\237\271\345\252\222\n0xc7e0: \346\245\263\347\205\244\347\213\275\350\262\267\345\243\262\350\263\240\351\231\252\351\200\231\350\235\277\347\247\244\347\237\247\350\220\251\344\274\257\345\211\245\345\215\232\346\213\215\346\237\217\346\263\212\347\231\275\347\256\224\347\262\225\350\210\266\350\226\204\350\277\253\346\233\235\346\274\240\347\210\206\347\270\233\350\216\253\351\247\201\351\272\246\n0xc8a0:   \345\207\275\347\256\261\347\241\262\347\256\270\350\202\207\347\255\210\346\253\250\345\271\241\350\202\214\347\225\221\347\225\240\345\205\253\351\211\242\346\272\214\347\231\272\351\206\227\351\253\252\344\274\220\347\275\260\346\212\234\347\255\217\351\226\245\351\263\251\345\231\272\345\241\231\350\233\244\351\232\274\344\274\264\345\210\244\345\215\212\n0xc8c0: \345\217\233\345\270\206\346\220\254\346\226\221\346\235\277\346\260\276\346\261\216\347\211\210\347\212\257\347\217\255\347\225\224\347\271\201\350\210\254\350\227\251\350\262\251\347\257\204\351\207\206\347\205\251\351\240\222\351\243\257\346\214\275\346\231\251\347\225\252\347\233\244\347\243\220\350\225\203\350\233\256\345\214\252\345\215\221\345\220\246\345\246\203\n0xc8e0: \345\275\274\346\202\262\346\211\211\346\211\271\346\212\253\346\226\220\346\257\224\346\263\214\347\226\262\347\232\256\347\242\221\347\247\230\347\267\213\347\275\267\350\202\245\350\242\253\350\252\271\350\262\273\351\201\277\351\235\236\351\243\233\346\250\213\347\260\270\345\202\231\345\260\276\345\276\256\346\236\207\346\257\230\347\220\265\347\234\211\347\276\216\n0xc9a0:   \351\274\273\346\237\212\347\250\227\345\214\271\347\226\213\351\253\255\345\275\246\350\206\235\350\217\261\350\202\230\345\274\274\345\277\205\347\225\242\347\255\206\351\200\274\346\241\247\345\247\253\345\252\233\347\264\220\347\231\276\350\254\254\344\277\265\345\275\252\346\250\231\346\260\267\346\274\202\347\223\242\347\245\250\350\241\250\350\251\225\n0xc9c0: \345\273\237\346\217\217\347\227\205\347\247\222\350\213\227\351\214\250\351\213\262\350\222\234\350\233\255\351\260\255\345\223\201\345\275\254\346\226\214\346\265\234\347\200\225\350\262\247\350\263\223\351\240\273\346\225\217\347\223\266\344\270\215\344\273\230\345\237\240\345\244\253\345\251\246\345\257\214\345\206\250\345\270\203\345\272\234\346\200\226\346\211\266\n0xc9e0: \346\226\247\346\231\256\346\265\256\347\210\266\347\254\246\350\205\220\350\206\232\350\212\231\350\255\234\350\262\240\350\263\246\350\265\264\351\230\234\351\231\204\344\276\256\346\222\253\346\255\246\350\210\236\350\221\241\350\225\252\351\203\250\345\260\201\346\245\223\351\242\250\350\221\272\350\225\227\344\274\217\345\211\257\345\276\251\345\271\205\346\234\215\n0xcaa0:   \347\246\217\350\205\271\350\244\207\350\246\206\346\267\265\345\274\227\346\211\225\346\262\270\344\273\217\347\211\251\351\256\222\345\210\206\345\220\273\345\231\264\345\242\263\346\206\244\346\211\256\347\204\232\345\245\256\347\262\211\347\263\236\347\264\233\351\233\260\346\226\207\350\201\236\344\270\231\344\275\265\345\205\265\345\241\200\345\271\243\n0xcac0: \345\274\212\346\237\204\344\270\246\350\224\275\351\226\211\351\231\233\347\261\263\351\240\201\345\203\273\345\243\201\347\231\226\347\242\247\345\210\245\347\236\245\350\224\221\347\256\206\345\201\217\345\244\211\347\211\207\347\257\207\347\267\250\350\276\272\350\277\224\351\201\215\344\276\277\345\213\211\345\250\251\345\274\201\351\236\255\344\277\235\350\210\227\n0xcae0: \345\234\203\346\215\225\346\255\251\347\224\253\350\243\234\350\274\224\347\251\202\345\213\237\345\242\223\346\205\225\346\210\212\346\232\256\346\257\215\347\260\277\350\217\251\345\200\243\344\277\270\345\214\205\345\221\206\345\240\261\345\245\211\345\256\235\345\263\260\345\263\257\345\264\251\345\272\226\346\212\261\346\215\247\346\224\276\346\226\271\346\234\213\n0xcba0:   \346\263\225\346\263\241\347\203\271\347\240\262\347\270\253\350\203\236\350\212\263\350\220\214\350\223\254\350\234\202\350\244\222\350\250\252\350\261\212\351\202\246\351\213\222\351\243\275\351\263\263\351\265\254\344\271\217\344\272\241\345\202\215\345\211\226\345\235\212\345\246\250\345\270\275\345\277\230\345\277\231\346\210\277\346\232\264\346\234\233\n0xcbc0: \346\243\222\345\206\222\347\264\241\350\202\252\350\206\250\350\254\200\350\262\214\350\262\277\351\211\276\351\230\262\345\220\240\351\240\254\345\214\227\345\203\225\345\215\234\345\242\250\346\222\262\346\234\264\347\211\247\347\235\246\347\251\206\351\207\246\345\213\203\346\262\241\346\256\206\345\240\200\345\271\214\345\245\224\346\234\254\347\277\273\345\207\241\n0xcbe0: \346\221\251\347\243\250\351\255\224\351\272\273\345\237\213\345\246\271\346\230\247\346\236\232\346\257\216\345\223\251\346\247\231\345\271\225\350\206\234\346\236\225\351\256\252\346\237\276\351\261\222\346\241\235\344\272\246\344\277\243\345\217\210\346\212\271\346\234\253\346\262\253\350\277\204\344\276\255\347\271\255\351\272\277\344\270\207\346\205\242\346\272\200\n0xcca0:   \346\274\253\350\224\223\345\221\263\346\234\252\351\255\205\345\267\263\347\256\225\345\262\254\345\257\206\350\234\234\346\271\212\350\223\221\347\250\224\350\204\210\345\246\231\347\262\215\346\260\221\347\234\240\345\213\231\345\244\242\347\204\241\347\211\237\347\237\233\351\234\247\351\265\241\346\244\213\345\251\277\345\250\230\345\206\245\345\220\215\n0xccc0: \346\230\216\347\233\237\350\277\267\351\212\230\351\263\264\345\247\252\347\211\235\346\273\205\345\205\215\346\243\211\347\266\277\347\267\254\351\235\242\351\272\272\346\221\270\346\250\241\350\214\202\345\246\204\345\255\237\346\257\233\347\214\233\347\233\262\347\266\262\350\200\227\350\222\231\345\204\262\346\234\250\351\273\231\347\233\256\346\235\242\345\213\277\n0xcce0: \345\260\244\346\210\273\347\261\276\350\262\260\345\225\217\346\202\266\347\264\213\351\226\200\345\214\201\344\271\237\345\206\266\345\244\234\347\210\272\350\200\266\351\207\216\345\274\245\347\237\242\345\216\204\345\275\271\347\264\204\350\226\254\350\250\263\350\272\215\351\235\226\346\237\263\350\226\256\351\221\223\346\204\211\346\204\210\346\262\271\347\231\222\n0xcda0:   \350\253\255\350\274\270\345\224\257\344\275\221\345\204\252\345\213\207\345\217\213\345\256\245\345\271\275\346\202\240\346\206\202\346\217\226\346\234\211\346\237\232\346\271\247\346\266\214\347\214\266\347\214\267\347\224\261\347\245\220\350\243\225\350\252\230\351\201\212\351\202\221\351\203\265\351\233\204\350\236\215\345\244\225\344\272\210\344\275\231\n0xcdc0: \350\252\211\350\274\277\351\240\220\345\202\255\345\271\274\345\246\226\345\256\271\345\272\270\346\217\232\346\217\272\346\223\201\346\233\234\346\245\212\346\247\230\346\264\213\346\272\266\347\206\224\347\224\250\347\252\257\347\276\212\350\200\200\350\221\211\350\223\211\350\246\201\350\254\241\350\270\212\351\201\245\351\231\275\351\244\212\346\205\276\346\212\221\n0xcde0: \346\262\203\346\265\264\347\277\214\347\277\274\346\267\200\347\276\205\350\236\272\350\243\270\346\235\245\350\216\261\351\240\274\351\233\267\346\264\233\347\265\241\350\220\275\351\205\252\344\271\261\345\215\265\345\265\220\346\254\204\346\277\253\350\227\215\350\230\255\350\246\247\345\210\251\345\220\217\345\261\245\346\235\216\346\242\250\347\220\206\347\222\203\n0xcea0:   \347\227\242\350\243\217\350\243\241\351\207\214\351\233\242\351\231\270\345\276\213\347\216\207\347\253\213\350\221\216\346\216\240\347\225\245\345\212\211\346\265\201\346\272\234\347\220\211\347\225\231\347\241\253\347\262\222\351\232\206\347\253\234\351\276\215\344\276\266\346\205\256\346\227\205\350\231\234\344\272\206\344\272\256\345\203\232\344\270\241\n0xcec0: \345\257\256\346\226\231\346\242\201\346\266\274\347\214\237\347\231\202\347\236\255\347\250\234\347\263\247\350\211\257\350\253\222\351\201\274\351\207\217\351\231\265\351\240\230\345\212\233\347\267\221\345\200\253\345\216\230\346\236\227\346\267\213\347\207\220\347\220\263\350\207\250\350\274\252\351\232\243\351\261\227\351\272\237\347\221\240\345\241\201\346\266\231\n0xcee0: \351\241\236\344\273\244\344\274\266\344\276\213\345\206\267\345\212\261\345\266\272\346\200\234\347\216\262\347\244\274\350\213\223\351\210\264\351\232\267\351\233\266\351\234\212\351\272\227\351\275\242\346\232\246\346\255\264\345\210\227\345\212\243\347\203\210\350\243\202\345\273\211\346\201\213\346\206\220\346\274\243\347\205\211\347\260\276\347\267\264\350\201\257\n0xcfa0:   \350\223\256\351\200\243\351\214\254\345\221\202\351\255\257\346\253\223\347\202\211\350\263\202\350\267\257\351\234\262\345\212\264\345\251\201\345\273\212\345\274\204\346\234\227\346\245\274\346\246\224\346\265\252\346\274\217\347\211\242\347\213\274\347\257\255\350\200\201\350\201\276\350\235\213\351\203\216\345\205\255\351\272\223\347\246\204\350\202\213\n0xcfc0: \350\253\226\345\200\255\345\222\214\350\251\261\346\255\252\350\263\204\350\204\207\346\203\221\346\236\240\351\267\262\344\272\231\344\272\230\351\260\220\350\251\253\350\227\201\350\225\250\346\244\200\346\271\276\347\242\227\350\205\225                      \n0xcfe0:                                                               \n0xd0a0:   \345\274\214\344\270\220\344\270\225\344\270\252\344\270\261\344\270\266\344\270\274\344\270\277\344\271\202\344\271\226\344\271\230\344\272\202\344\272\205\350\261\253\344\272\212\350\210\222\345\274\215\344\272\216\344\272\236\344\272\237\344\272\240\344\272\242\344\272\260\344\272\263\344\272\266\344\273\216\344\273\215\344\273\204\344\273\206\344\273\202\n0xd0c0: \344\273\236\344\273\255\344\273\237\344\273\267\344\274\211\344\275\232\344\274\260\344\275\233\344\275\235\344\275\227\344\275\207\344\275\266\344\276\210\344\276\217\344\276\230\344\275\273\344\275\251\344\275\260\344\276\221\344\275\257\344\276\206\344\276\226\345\204\230\344\277\224\344\277\237\344\277\216\344\277\230\344\277\233\344\277\221\344\277\232\344\277\220\n0xd0e0: \344\277\245\345\200\232\345\200\250\345\200\224\345\200\252\345\200\245\345\200\205\344\274\234\344\277\266\345\200\241\345\200\251\345\200\254\344\277\276\344\277\257\345\200\221\345\200\206\345\201\203\345\201\207\346\234\203\345\201\225\345\201\220\345\201\210\345\201\232\345\201\226\345\201\254\345\201\270\345\202\200\345\202\232\345\202\205\345\202\264\345\202\262\n0xd1a0:   \345\203\211\345\203\212\345\202\263\345\203\202\345\203\226\345\203\236\345\203\245\345\203\255\345\203\243\345\203\256\345\203\271\345\203\265\345\204\211\345\204\201\345\204\202\345\204\226\345\204\225\345\204\224\345\204\232\345\204\241\345\204\272\345\204\267\345\204\274\345\204\273\345\204\277\345\205\200\345\205\222\345\205\214\345\205\224\345\205\242\n0xd1c0: \345\205\251\345\205\252\345\205\256\345\206\200\345\206\202\345\233\230\345\206\214\345\206\211\345\206\217\345\206\221\345\206\223\345\206\225\345\206\226\345\206\244\345\206\246\345\206\242\345\206\251\345\206\252\345\206\253\345\206\263\345\206\261\345\206\262\345\206\260\345\206\265\345\206\275\345\207\205\345\207\211\345\207\233\345\207\240\350\231\225\345\207\251\n0xd1e0: \345\207\260\345\207\265\345\207\276\345\210\204\345\210\213\345\210\224\345\210\216\345\210\247\345\210\252\345\210\256\345\210\263\345\210\271\345\211\217\345\211\204\345\211\213\345\211\214\345\211\236\345\211\224\345\211\252\345\211\264\345\211\251\345\211\263\345\211\277\345\211\275\345\212\215\345\212\224\345\212\222\345\211\261\345\212\210\345\212\221\350\276\250\n0xd2a0:   \350\276\247\345\212\254\345\212\255\345\212\274\345\212\265\345\213\201\345\213\215\345\213\227\345\213\236\345\213\243\345\213\246\351\243\255\345\213\240\345\213\263\345\213\265\345\213\270\345\213\271\345\214\206\345\214\210\347\224\270\345\214\215\345\214\220\345\214\217\345\214\225\345\214\232\345\214\243\345\214\257\345\214\261\345\214\263\345\214\270\n0xd2c0: \345\215\206\345\215\205\344\270\227\345\215\211\345\215\215\345\207\226\345\215\236\345\215\251\345\215\256\345\244\230\345\215\273\345\215\267\345\216\202\345\216\226\345\216\240\345\216\246\345\216\245\345\216\256\345\216\260\345\216\266\345\217\203\347\260\222\351\233\231\345\217\237\346\233\274\347\207\256\345\217\256\345\217\250\345\217\255\345\217\272\345\220\201\n0xd2e0: \345\221\200\345\220\254\345\220\255\345\220\274\345\220\256\345\220\266\345\220\251\345\220\235\345\221\216\345\222\217\345\221\265\345\222\216\345\221\237\345\221\261\345\221\267\345\221\260\345\222\222\345\221\273\345\222\200\345\221\266\345\222\204\345\222\220\345\222\206\345\223\207\345\222\242\345\222\270\345\222\245\345\222\254\345\223\204\345\223\210\345\222\250\n0xd3a0:   \345\222\253\345\223\202\345\222\244\345\222\276\345\222\274\345\223\230\345\223\245\345\223\246\345\224\217\345\224\224\345\223\275\345\223\256\345\223\255\345\223\272\345\223\242\345\224\271\345\225\200\345\225\243\345\225\214\345\224\256\345\225\234\345\225\205\345\225\226\345\225\227\345\224\270\345\224\263\345\225\235\345\226\231\345\226\200\345\222\257\n0xd3c0: \345\226\237\345\225\273\345\225\276\345\226\230\345\226\236\345\226\256\345\225\274\345\226\203\345\226\251\345\226\207\345\226\250\345\227\232\345\227\205\345\227\237\345\227\204\345\227\234\345\227\244\345\227\224\345\230\224\345\227\267\345\230\226\345\227\276\345\227\275\345\230\233\345\227\271\345\231\216\345\231\220\347\207\237\345\230\264\345\230\266\345\230\262\n0xd3e0: \345\231\253\345\231\244\345\230\257\345\231\254\345\231\252\345\232\206\345\232\200\345\232\212\345\232\240\345\232\224\345\232\217\345\232\245\345\232\256\345\232\266\345\232\264\345\233\202\345\232\274\345\233\201\345\233\203\345\233\200\345\233\210\345\233\216\345\233\221\345\233\223\345\233\227\345\233\256\345\233\271\345\234\200\345\233\277\345\234\204\345\234\211\n0xd4a0:   \345\234\210\345\234\213\345\234\215\345\234\223\345\234\230\345\234\226\345\227\207\345\234\234\345\234\246\345\234\267\345\234\270\345\235\216\345\234\273\345\235\200\345\235\217\345\235\251\345\237\200\345\236\210\345\235\241\345\235\277\345\236\211\345\236\223\345\236\240\345\236\263\345\236\244\345\236\252\345\236\260\345\237\203\345\237\206\345\237\224\n0xd4c0: \345\237\223\345\240\212\345\237\226\345\237\243\345\240\213\345\240\231\345\240\235\345\241\262\345\240\241\345\241\242\345\241\213\345\241\260\346\257\200\345\241\222\345\240\275\345\241\271\345\242\205\345\242\271\345\242\237\345\242\253\345\242\272\345\243\236\345\242\273\345\242\270\345\242\256\345\243\205\345\243\223\345\243\221\345\243\227\345\243\231\345\243\230\n0xd4e0: \345\243\234\345\243\244\345\243\237\345\243\257\345\243\272\345\243\271\345\243\273\345\243\274\345\243\275\345\244\202\345\244\212\345\244\220\345\244\233\346\242\246\345\244\245\345\244\254\345\244\255\345\244\262\345\244\270\345\244\276\347\253\222\345\245\225\345\245\220\345\245\216\345\245\232\345\245\230\345\245\242\345\245\240\345\245\247\345\245\254\345\245\251\n0xd5a0:   \345\245\270\345\246\201\345\246\235\344\275\236\344\276\253\345\246\243\345\246\262\345\247\206\345\247\250\345\247\234\345\246\215\345\247\231\345\247\232\345\250\245\345\250\237\345\250\221\345\250\234\345\250\211\345\250\232\345\251\200\345\251\254\345\251\211\345\250\265\345\250\266\345\251\242\345\251\252\345\252\232\345\252\274\345\252\276\345\253\213\n0xd5c0: \345\252\275\345\253\243\345\253\227\345\253\246\345\253\251\345\253\226\345\253\272\345\253\273\345\254\214\345\254\213\345\254\226\345\254\262\345\253\220\345\254\252\345\254\266\345\254\276\345\255\203\345\255\205\345\255\200\345\255\221\345\255\225\345\255\232\345\255\233\345\255\245\345\255\251\345\255\260\345\255\263\345\255\265\345\255\270\346\226\210\345\255\272\n0xd5e0: \345\256\203\345\256\246\345\256\270\345\257\203\345\257\207\345\257\211\345\257\224\345\257\220\345\257\244\345\257\246\345\257\242\345\257\236\345\257\245\345\257\253\345\257\260\345\257\266\345\257\263\345\260\205\345\260\207\345\260\210\345\260\215\345\260\223\345\260\240\345\260\242\345\260\250\345\260\270\345\260\271\345\261\201\345\261\206\345\261\216\345\261\223\n0xd6a0:   \345\261\220\345\261\217\345\255\261\345\261\254\345\261\256\344\271\242\345\261\266\345\261\271\345\262\214\345\262\221\345\262\224\345\246\233\345\262\253\345\262\273\345\262\266\345\262\274\345\262\267\345\263\205\345\262\276\345\263\207\345\263\231\345\263\251\345\263\275\345\263\272\345\263\255\345\266\214\345\263\252\345\264\213\345\264\225\345\264\227\n0xd6c0: \345\264\237\345\264\233\345\264\221\345\264\224\345\264\242\345\264\232\345\264\231\345\264\230\345\265\214\345\265\222\345\265\216\345\265\213\345\265\254\345\265\263\345\265\266\345\266\207\345\266\204\345\266\202\345\266\242\345\266\235\345\266\254\345\266\256\345\266\275\345\266\220\345\266\267\345\266\274\345\267\211\345\267\215\345\267\223\345\267\222\345\267\226\n0xd6e0: \345\267\253\345\267\262\345\267\265\345\270\213\345\270\232\345\270\231\345\270\221\345\270\233\345\270\266\345\270\267\345\271\204\345\271\203\345\271\200\345\271\216\345\271\227\345\271\224\345\271\237\345\271\242\345\271\244\345\271\207\345\271\265\345\271\266\345\271\272\351\272\274\345\271\277\345\272\240\345\273\201\345\273\202\345\273\210\345\273\220\345\273\217\n0xd7a0:   \345\273\226\345\273\243\345\273\235\345\273\232\345\273\233\345\273\242\345\273\241\345\273\250\345\273\251\345\273\254\345\273\261\345\273\263\345\273\260\345\273\264\345\273\270\345\273\276\345\274\203\345\274\211\345\275\235\345\275\234\345\274\213\345\274\221\345\274\226\345\274\251\345\274\255\345\274\270\345\275\201\345\275\210\345\275\214\345\275\216\n0xd7c0: \345\275\221\345\275\226\345\275\227\345\275\231\345\275\241\345\275\255\345\275\263\345\275\267\345\276\203\345\276\202\345\275\277\345\276\212\345\276\210\345\276\221\345\276\207\345\276\236\345\276\231\345\276\230\345\276\240\345\276\250\345\276\255\345\276\274\345\277\226\345\277\273\345\277\244\345\277\270\345\277\261\345\277\235\346\202\263\345\277\277\346\200\241\n0xd7e0: \346\200\231\346\200\220\346\200\251\346\200\216\346\200\261\346\200\233\346\200\225\346\200\253\346\200\246\346\200\217\346\200\272\346\201\232\346\201\201\346\201\252\346\201\267\346\201\237\346\201\212\346\201\206\346\201\215\346\201\243\346\201\203\346\201\244\346\201\202\346\201\254\346\201\253\346\201\231\346\202\201\346\202\215\346\203\247\346\202\203\346\202\232\n0xd8a0:   \346\202\204\346\202\233\346\202\226\346\202\227\346\202\222\346\202\247\346\202\213\346\203\241\346\202\270\346\203\240\346\203\223\346\202\264\345\277\260\346\202\275\346\203\206\346\202\265\346\203\230\346\205\215\346\204\225\346\204\206\346\203\266\346\203\267\346\204\200\346\203\264\346\203\272\346\204\203\346\204\241\346\203\273\346\203\261\346\204\215\n0xd8c0: \346\205\207\346\204\276\346\204\250\346\204\247\346\205\212\346\204\277\346\204\274\346\204\254\346\204\264\346\204\275\346\205\202\346\205\204\346\205\263\346\205\267\346\205\230\346\205\231\346\205\232\346\205\253\346\205\264\346\205\257\346\205\245\346\205\261\346\205\237\346\205\235\346\205\223\346\205\265\346\206\231\346\206\226\346\206\207\346\206\254\346\206\224\n0xd8e0: \346\206\212\346\206\221\346\206\253\346\206\256\346\207\214\346\207\212\346\207\211\346\207\267\346\207\210\346\207\203\346\207\206\346\206\272\346\207\213\347\275\271\346\207\215\346\207\246\346\207\243\346\207\266\346\207\272\346\207\264\346\207\277\346\207\275\346\207\274\346\207\276\346\210\200\346\210\210\346\210\211\346\210\215\346\210\214\346\210\224\346\210\233\n0xd9a0:   \346\210\236\346\210\241\346\210\252\346\210\256\346\210\260\346\210\262\346\210\263\346\211\201\346\211\216\346\211\236\346\211\243\346\211\233\346\211\240\346\211\250\346\211\274\346\212\202\346\212\211\346\211\276\346\212\222\346\212\223\346\212\226\346\213\224\346\212\203\346\212\224\346\213\227\346\213\221\346\212\273\346\213\217\346\213\277\346\213\206\n0xd9c0: \346\213\210\346\213\234\346\213\214\346\213\212\346\213\202\346\213\207\346\212\233\346\213\211\346\214\214\346\213\256\346\213\261\346\214\247\346\214\202\346\214\210\346\213\257\346\213\265\346\215\220\346\214\276\346\215\215\346\220\234\346\215\217\346\216\226\346\216\216\346\216\200\346\216\253\346\215\266\346\216\243\346\216\217\346\216\211\346\216\237\346\216\265\n0xd9e0: \346\215\251\346\216\276\346\217\251\346\217\200\346\217\206\346\217\243\346\217\211\346\217\222\346\217\266\346\217\204\346\220\226\346\220\264\346\220\206\346\220\223\346\220\246\346\220\266\346\224\235\346\220\227\346\220\250\346\220\217\346\221\247\346\221\257\346\221\266\346\221\216\346\224\252\346\222\225\346\222\223\346\222\245\346\222\251\346\222\210\346\222\274\n0xdaa0:   \346\223\232\346\223\222\346\223\205\346\223\207\346\222\273\346\223\230\346\223\202\346\223\261\346\223\247\350\210\211\346\223\240\346\223\241\346\212\254\346\223\243\346\223\257\346\224\254\346\223\266\346\223\264\346\223\262\346\223\272\346\224\200\346\223\275\346\224\230\346\224\234\346\224\205\346\224\244\346\224\243\346\224\253\346\224\264\346\224\265\n0xdac0: \346\224\266\346\224\270\347\225\213\346\225\210\346\225\226\346\225\225\346\225\215\346\225\230\346\225\236\346\225\235\346\225\262\346\225\270\346\226\202\346\226\203\350\256\212\346\226\233\346\226\237\346\226\253\346\226\267\346\227\203\346\227\206\346\227\201\346\227\204\346\227\214\346\227\222\346\227\233\346\227\231\346\227\240\346\227\241\346\227\261\346\235\262\n0xdae0: \346\230\203\346\227\273\346\235\263\346\230\265\346\230\266\346\230\264\346\230\234\346\231\217\346\231\204\346\231\211\346\231\201\346\231\236\346\231\235\346\231\244\346\231\247\346\231\250\346\231\237\346\231\242\346\231\260\346\232\203\346\232\210\346\232\216\346\232\211\346\232\204\346\232\230\346\232\235\346\233\201\346\232\271\346\233\211\346\232\276\346\232\274\n0xdba0:   \346\233\204\346\232\270\346\233\226\346\233\232\346\233\240\346\230\277\346\233\246\346\233\251\346\233\260\346\233\265\346\233\267\346\234\217\346\234\226\346\234\236\346\234\246\346\234\247\351\234\270\346\234\256\346\234\277\346\234\266\346\235\201\346\234\270\346\234\267\346\235\206\346\235\236\346\235\240\346\235\231\346\235\243\346\235\244\346\236\211\n0xdbc0: \346\236\251\346\235\274\346\235\252\346\236\214\346\236\213\346\236\246\346\236\241\346\236\205\346\236\267\346\237\257\346\236\264\346\237\254\346\236\263\346\237\251\346\236\270\346\237\244\346\237\236\346\237\235\346\237\242\346\237\256\346\236\271\346\237\216\346\237\206\346\237\247\346\252\234\346\240\236\346\241\206\346\240\251\346\241\200\346\241\215\346\240\262\n0xdbe0: \346\242\263\346\240\253\346\241\231\346\241\243\346\241\267\346\241\277\346\242\237\346\242\217\346\242\255\346\242\224\346\242\235\346\242\233\346\242\203\346\252\256\346\242\271\346\241\264\346\242\265\346\242\240\346\242\272\346\244\217\346\242\215\346\241\276\346\244\201\346\243\212\346\244\210\346\243\230\346\244\242\346\244\246\346\243\241\346\244\214\346\243\215\n0xdca0:   \346\243\224\346\243\247\346\243\225\346\244\266\346\244\222\346\244\204\346\243\227\346\243\243\346\244\245\346\243\271\346\243\240\346\243\257\346\244\250\346\244\252\346\244\232\346\244\243\346\244\241\346\243\206\346\245\271\346\245\267\346\245\234\346\245\270\346\245\253\346\245\224\346\245\276\346\245\256\346\244\271\346\245\264\346\244\275\346\245\231\n0xdcc0: \346\245\241\346\245\236\346\245\235\346\246\201\346\245\252\346\246\262\346\246\256\346\247\220\346\246\277\346\247\201\346\247\223\346\246\276\346\247\216\345\257\250\346\247\212\346\247\235\346\246\273\346\247\203\346\246\247\346\250\256\346\246\221\346\246\240\346\246\234\346\246\225\346\246\264\346\247\236\346\247\250\346\250\202\346\250\233\346\247\277\346\254\212\n0xdce0: \346\247\262\346\247\247\346\250\205\346\246\261\346\250\236\346\247\255\346\250\224\346\247\253\346\250\212\346\250\222\346\253\201\346\250\243\346\250\223\346\251\204\346\250\214\346\251\262\346\250\266\346\251\270\346\251\207\346\251\242\346\251\231\346\251\246\346\251\210\346\250\270\346\250\242\346\252\220\346\252\215\346\252\240\346\252\204\346\252\242\346\252\243\n0xdda0:   \346\252\227\350\230\227\346\252\273\346\253\203\346\253\202\346\252\270\346\252\263\346\252\254\346\253\236\346\253\221\346\253\237\346\252\252\346\253\232\346\253\252\346\253\273\346\254\205\350\230\226\346\253\272\346\254\222\346\254\226\351\254\261\346\254\237\346\254\270\346\254\267\347\233\234\346\254\271\351\243\256\346\255\207\346\255\203\346\255\211\n0xddc0: \346\255\231\346\255\224\346\255\233\346\255\237\346\255\241\346\255\270\346\255\271\346\255\277\346\256\200\346\256\204\346\256\203\346\256\215\346\256\230\346\256\225\346\256\236\346\256\244\346\256\252\346\256\253\346\256\257\346\256\262\346\256\261\346\256\263\346\256\267\346\256\274\346\257\206\346\257\213\346\257\223\346\257\237\346\257\254\346\257\253\346\257\263\n0xdde0: \351\272\276\346\260\210\346\260\223\346\260\224\346\260\233\346\260\244\346\260\243\346\261\236\346\261\225\346\261\242\346\261\252\346\262\202\346\262\215\346\262\232\346\262\201\346\262\233\346\261\276\346\261\250\346\261\263\346\262\222\346\262\220\346\263\204\346\263\261\346\263\223\346\262\275\346\263\227\346\263\205\346\263\235\346\262\256\346\262\261\346\262\276\n0xdea0:   \346\262\272\346\263\233\346\263\257\346\263\231\346\263\252\346\264\237\350\241\215\346\264\266\346\264\253\346\264\275\346\264\270\346\264\231\346\264\265\346\264\263\346\264\222\346\264\214\346\265\243\346\266\223\346\265\244\346\265\232\346\265\271\346\265\231\346\266\216\346\266\225\346\277\244\346\266\205\346\267\271\346\270\225\346\270\212\346\266\265\n0xdec0: \346\267\246\346\266\270\346\267\206\346\267\254\346\267\236\346\267\214\346\267\250\346\267\222\346\267\205\346\267\272\346\267\231\346\267\244\346\267\225\346\267\252\346\267\256\346\270\255\346\271\256\346\270\256\346\270\231\346\271\262\346\271\237\346\270\276\346\270\243\346\271\253\346\270\253\346\271\266\346\271\215\346\270\237\346\271\203\346\270\272\346\271\216\n0xdee0: \346\273\277\346\270\235\346\270\270\346\272\202\346\272\252\346\272\230\346\273\211\346\272\267\346\273\223\346\272\275\346\272\257\346\273\204\346\272\262\346\273\224\346\273\225\346\272\217\346\272\245\346\273\202\346\272\237\346\275\201\346\274\221\347\201\214\346\273\254\346\273\270\346\273\276\346\274\277\346\273\262\346\274\261\346\273\257\346\274\262\346\273\214\n0xdfa0:   \346\274\276\346\274\223\346\273\267\346\276\206\346\275\272\346\275\270\346\276\201\346\276\200\346\275\257\346\275\233\346\277\263\346\275\255\346\276\202\346\275\274\346\275\230\346\276\216\346\276\221\346\277\202\346\275\246\346\276\263\346\276\243\346\276\241\346\276\244\346\276\271\346\277\206\346\276\252\346\277\237\346\277\225\346\277\254\346\277\224\n0xdfc0: \346\277\261\346\277\256\346\277\233\347\200\211\347\200\213\346\277\272\347\200\221\347\200\201\347\200\217\346\277\276\347\200\233\347\200\232\346\275\264\347\200\235\347\200\230\347\200\237\347\200\260\347\200\276\347\200\262\347\201\221\347\201\243\347\202\231\347\202\222\347\202\257\347\203\261\347\202\254\347\202\270\347\202\263\347\202\256\347\203\237\347\203\213\n0xdfe0: \347\203\231\347\204\211\347\203\275\347\204\234\347\204\231\347\205\245\347\205\225\347\206\210\347\205\246\347\205\242\347\205\214\347\205\226\347\205\254\347\206\217\347\207\273\347\206\204\347\206\225\347\206\250\347\206\254\347\207\227\347\206\271\347\206\276\347\207\222\347\207\211\347\207\224\347\207\216\347\207\240\347\207\254\347\207\247\347\207\265\347\207\274\n0xe0a0:   \347\207\271\347\207\277\347\210\215\347\210\220\347\210\233\347\210\250\347\210\255\347\210\254\347\210\260\347\210\262\347\210\273\347\210\274\347\210\277\347\211\200\347\211\206\347\211\213\347\211\230\347\211\264\347\211\276\347\212\202\347\212\201\347\212\207\347\212\222\347\212\226\347\212\242\347\212\247\347\212\271\347\212\262\347\213\203\347\213\206\n0xe0c0: \347\213\216\347\213\222\347\213\242\347\213\240\347\213\241\347\213\271\347\213\267\345\200\217\347\214\227\347\214\212\347\214\234\347\214\226\347\214\235\347\214\264\347\214\257\347\214\251\347\214\245\347\214\276\347\215\216\347\215\217\351\273\230\347\215\227\347\215\252\347\215\250\347\215\260\347\215\270\347\215\265\347\215\273\347\215\272\347\217\210\347\216\263\n0xe0e0: \347\216\273\347\217\200\347\217\245\347\217\256\347\217\236\347\222\242\347\220\205\347\221\257\347\220\245\347\217\270\347\220\262\347\220\272\347\221\225\347\220\277\347\221\237\347\221\231\347\221\201\347\221\234\347\221\251\347\221\260\347\221\243\347\221\252\347\221\266\347\221\276\347\222\213\347\222\236\347\222\247\347\223\212\347\223\217\347\223\224\347\217\261\n0xe1a0:   \347\223\240\347\223\243\347\223\247\347\223\251\347\223\256\347\223\262\347\223\260\347\223\261\347\223\270\347\223\267\347\224\204\347\224\203\347\224\205\347\224\214\347\224\216\347\224\215\347\224\225\347\224\223\347\224\236\347\224\246\347\224\254\347\224\274\347\225\204\347\225\215\347\225\212\347\225\211\347\225\233\347\225\206\347\225\232\347\225\251\n0xe1c0: \347\225\247\347\225\253\347\225\255\347\225\270\347\225\266\347\226\206\347\226\207\347\225\264\347\226\212\347\226\211\347\226\202\347\226\224\347\226\232\347\226\235\347\226\245\347\226\243\347\227\202\347\226\263\347\227\203\347\226\265\347\226\275\347\226\270\347\226\274\347\226\261\347\227\215\347\227\212\347\227\222\347\227\231\347\227\243\347\227\236\347\227\276\n0xe1e0: \347\227\274\347\230\201\347\227\260\347\227\272\347\227\262\347\227\263\347\230\213\347\230\215\347\230\211\347\230\237\347\230\247\347\230\240\347\230\241\347\230\242\347\230\244\347\230\264\347\230\260\347\230\273\347\231\207\347\231\210\347\231\206\347\231\234\347\231\230\347\231\241\347\231\242\347\231\250\347\231\251\347\231\252\347\231\247\347\231\254\347\231\260\n0xe2a0:   \347\231\262\347\231\266\347\231\270\347\231\274\347\232\200\347\232\203\347\232\210\347\232\213\347\232\216\347\232\226\347\232\223\347\232\231\347\232\232\347\232\260\347\232\264\347\232\270\347\232\271\347\232\272\347\233\202\347\233\215\347\233\226\347\233\222\347\233\236\347\233\241\347\233\245\347\233\247\347\233\252\350\230\257\347\233\273\347\234\210\n0xe2c0: \347\234\204\347\234\251\347\234\244\347\234\236\347\234\245\347\234\246\347\234\233\347\234\267\347\234\270\347\235\207\347\235\232\347\235\250\347\235\253\347\235\233\347\235\245\347\235\277\347\235\276\347\235\271\347\236\216\347\236\213\347\236\221\347\236\240\347\236\236\347\236\260\347\236\266\347\236\271\347\236\277\347\236\274\347\236\275\347\236\273\347\237\207\n0xe2e0: \347\237\227\347\237\232\347\237\234\347\237\243\347\237\256\347\237\274\347\240\214\347\240\222\347\244\246\347\240\240\347\244\252\347\241\205\347\242\216\347\241\264\347\242\206\347\241\274\347\242\232\347\242\214\347\242\243\347\242\265\347\242\252\347\242\257\347\243\221\347\243\206\347\243\213\347\243\224\347\242\276\347\242\274\347\243\205\347\243\212\347\243\254\n0xe3a0:   \347\243\247\347\243\232\347\243\275\347\243\264\347\244\207\347\244\222\347\244\221\347\244\231\347\244\254\347\244\253\347\245\200\347\245\240\347\245\227\347\245\237\347\245\232\347\245\225\347\245\223\347\245\272\347\245\277\347\246\212\347\246\235\347\246\247\351\275\213\347\246\252\347\246\256\347\246\263\347\246\271\347\246\272\347\247\211\347\247\225\n0xe3c0: \347\247\254\347\247\241\347\247\243\347\250\210\347\250\215\347\250\230\347\250\231\347\250\240\347\250\237\347\246\200\347\250\261\347\250\273\347\250\276\347\250\267\347\251\203\347\251\227\347\251\211\347\251\241\347\251\242\347\251\251\351\276\235\347\251\260\347\251\271\347\251\275\347\252\210\347\252\227\347\252\225\347\252\230\347\252\226\347\252\251\347\253\210\n0xe3e0: \347\252\266\347\253\205\347\253\204\347\252\277\351\202\203\347\253\207\347\253\212\347\253\215\347\253\217\347\253\225\347\253\223\347\253\231\347\253\232\347\253\235\347\253\241\347\253\242\347\253\246\347\253\255\347\253\260\347\254\202\347\254\217\347\254\212\347\254\206\347\254\263\347\254\230\347\254\231\347\254\236\347\254\265\347\254\250\347\254\266\347\255\220\n0xe4a0:   \347\255\272\347\254\204\347\255\215\347\254\213\347\255\214\347\255\205\347\255\265\347\255\245\347\255\264\347\255\247\347\255\260\347\255\261\347\255\254\347\255\256\347\256\235\347\256\230\347\256\237\347\256\215\347\256\234\347\256\232\347\256\213\347\256\222\347\256\217\347\255\235\347\256\231\347\257\213\347\257\201\347\257\214\347\257\217\347\256\264\n0xe4c0: \347\257\235\347\257\251\347\260\221\347\260\224\347\257\246\347\257\245\347\261\240\347\260\200\347\260\207\347\260\223\347\257\263\347\257\267\347\260\227\347\260\215\347\257\266\347\260\243\347\260\247\347\260\252\347\260\237\347\260\267\347\260\253\347\260\275\347\261\214\347\261\203\347\261\224\347\261\217\347\261\200\347\261\220\347\261\230\347\261\237\347\261\244\n0xe4e0: \347\261\245\347\261\254\347\261\265\347\262\203\347\262\220\347\262\244\347\262\255\347\262\242\347\262\253\347\262\241\347\262\250\347\262\263\347\262\262\347\262\261\347\262\256\347\262\271\347\262\275\347\263\200\347\263\205\347\263\202\347\263\230\347\263\222\347\263\234\347\263\242\351\254\273\347\263\257\347\263\262\347\263\264\347\263\266\347\263\272\347\264\206\n0xe5a0:   \347\264\202\347\264\234\347\264\225\347\264\212\347\265\205\347\265\213\347\264\256\347\264\262\347\264\277\347\264\265\347\265\206\347\265\263\347\265\226\347\265\216\347\265\262\347\265\250\347\265\256\347\265\217\347\265\243\347\266\223\347\266\211\347\265\233\347\266\217\347\265\275\347\266\233\347\266\272\347\266\256\347\266\243\347\266\265\347\267\207\n0xe5c0: \347\266\253\347\270\275\347\266\242\347\266\257\347\267\234\347\266\270\347\266\237\347\266\260\347\267\230\347\267\235\347\267\244\347\267\236\347\267\273\347\267\262\347\267\241\347\270\205\347\270\212\347\270\243\347\270\241\347\270\222\347\270\261\347\270\237\347\270\211\347\270\213\347\270\242\347\271\206\347\271\246\347\270\273\347\270\265\347\270\271\347\271\203\n0xe5e0: \347\270\262\347\270\272\347\271\247\347\271\235\347\271\226\347\271\236\347\271\231\347\271\232\347\271\271\347\271\252\347\271\251\347\271\274\347\271\273\347\272\203\347\267\225\347\271\275\350\276\256\347\271\277\347\272\210\347\272\211\347\272\214\347\272\222\347\272\220\347\272\223\347\272\224\347\272\226\347\272\216\347\272\233\347\272\234\347\274\270\347\274\272\n0xe6a0:   \347\275\205\347\275\214\347\275\215\347\275\216\347\275\220\347\275\221\347\275\225\347\275\224\347\275\230\347\275\237\347\275\240\347\275\250\347\275\251\347\275\247\347\275\270\347\276\202\347\276\206\347\276\203\347\276\210\347\276\207\347\276\214\347\276\224\347\276\236\347\276\235\347\276\232\347\276\243\347\276\257\347\276\262\347\276\271\347\276\256\n0xe6c0: \347\276\270\350\255\261\347\277\205\347\277\206\347\277\212\347\277\225\347\277\224\347\277\241\347\277\246\347\277\251\347\277\263\347\277\271\351\243\234\350\200\206\350\200\204\350\200\213\350\200\222\350\200\230\350\200\231\350\200\234\350\200\241\350\200\250\350\200\277\350\200\273\350\201\212\350\201\206\350\201\222\350\201\230\350\201\232\350\201\237\350\201\242\n0xe6e0: \350\201\263\350\201\262\350\201\260\350\201\266\350\201\271\350\201\275\350\201\277\350\202\204\350\202\206\350\202\205\350\202\233\350\202\223\350\202\232\350\202\255\345\206\220\350\202\254\350\203\233\350\203\245\350\203\231\350\203\235\350\203\204\350\203\232\350\203\226\350\204\211\350\203\257\350\203\261\350\204\233\350\204\251\350\204\243\350\204\257\350\205\213\n0xe7a0:   \351\232\213\350\205\206\350\204\276\350\205\223\350\205\221\350\203\274\350\205\261\350\205\256\350\205\245\350\205\246\350\205\264\350\206\203\350\206\210\350\206\212\350\206\200\350\206\202\350\206\240\350\206\225\350\206\244\350\206\243\350\205\237\350\206\223\350\206\251\350\206\260\350\206\265\350\206\276\350\206\270\350\206\275\350\207\200\350\207\202\n0xe7c0: \350\207\211\350\207\215\350\207\221\350\207\231\350\207\230\350\207\210\350\207\232\350\207\237\350\207\240\350\207\247\350\207\272\350\207\273\350\207\276\350\210\201\350\210\202\350\210\205\350\210\207\350\210\212\350\210\215\350\210\220\350\210\226\350\210\251\350\210\253\350\210\270\350\210\263\350\211\200\350\211\231\350\211\230\350\211\235\350\211\232\350\211\237\n0xe7e0: \350\211\242\350\211\250\350\211\252\350\211\253\350\210\256\350\211\261\350\211\267\350\211\270\350\211\276\350\212\215\350\212\222\350\212\253\350\212\237\350\212\273\350\212\254\350\213\241\350\213\243\350\213\237\350\213\222\350\213\264\350\213\263\350\213\272\350\216\223\350\214\203\350\213\273\350\213\271\350\213\236\350\214\206\350\213\234\350\214\211\350\213\231\n0xe8a0:   \350\214\265\350\214\264\350\214\226\350\214\262\350\214\261\350\215\200\350\214\271\350\215\220\350\215\205\350\214\257\350\214\253\350\214\227\350\214\230\350\216\205\350\216\232\350\216\252\350\216\237\350\216\242\350\216\226\350\214\243\350\216\216\350\216\207\350\216\212\350\215\274\350\216\265\350\215\263\350\215\265\350\216\240\350\216\211\350\216\250\n0xe8c0: \350\220\223\350\217\253\350\217\216\350\217\275\350\220\203\350\217\230\350\220\213\350\217\201\350\217\267\350\220\207\350\217\240\350\217\262\350\220\215\350\220\242\350\220\240\350\216\275\350\220\270\350\224\206\350\217\273\350\221\255\350\220\252\350\220\274\350\225\232\350\222\204\350\221\267\350\221\253\350\222\255\350\221\256\350\222\202\350\221\251\350\221\206\n0xe8e0: \350\221\257\350\221\271\350\220\265\350\223\212\350\221\242\350\222\271\350\222\277\350\222\237\350\223\231\350\223\215\350\222\273\350\223\232\350\223\220\350\223\201\350\223\206\350\223\226\350\222\241\350\224\241\350\223\277\350\223\264\350\224\227\350\224\230\350\224\254\350\224\237\350\224\225\350\224\224\350\223\274\350\225\200\350\225\243\350\225\230\350\225\210\n0xe9a0:   \350\225\201\350\230\202\350\225\213\350\225\225\350\226\200\350\226\244\350\226\210\350\226\221\350\226\212\350\226\250\350\225\255\350\226\224\350\226\233\350\227\252\350\226\207\350\226\234\350\225\267\350\225\276\350\226\220\350\227\211\350\226\272\350\227\217\350\226\271\350\227\220\350\227\225\350\227\235\350\227\245\350\227\234\350\227\271\350\230\212\n0xe9c0: \350\230\213\350\227\276\350\227\272\350\230\206\350\230\242\350\230\232\350\230\260\350\230\277\350\231\215\344\271\225\350\231\224\350\231\237\350\231\247\350\231\261\350\232\223\350\232\243\350\232\251\350\232\252\350\232\213\350\232\214\350\232\266\350\232\257\350\233\204\350\233\206\350\232\260\350\233\211\350\240\243\350\232\253\350\233\224\350\233\236\350\233\251\n0xe9e0: \350\233\237\350\233\233\350\233\257\350\234\222\350\234\206\350\234\210\350\234\200\350\234\203\350\233\273\350\234\221\350\234\211\350\234\215\350\233\271\350\234\212\350\234\264\350\234\277\350\234\267\350\234\273\350\234\245\350\234\251\350\234\232\350\235\240\350\235\237\350\235\270\350\235\214\350\235\216\350\235\264\350\235\227\350\235\250\350\235\256\350\235\231\n0xeaa0:   \350\235\223\350\235\243\350\235\252\350\240\205\350\236\242\350\236\237\350\236\202\350\236\257\350\237\213\350\236\275\350\237\200\350\237\220\351\233\226\350\236\253\350\237\204\350\236\263\350\237\207\350\237\206\350\236\273\350\237\257\350\237\262\350\237\240\350\240\217\350\240\215\350\237\276\350\237\266\350\237\267\350\240\216\350\237\222\350\240\221\n0xeac0: \350\240\225\350\240\242\350\240\241\350\240\261\350\240\266\350\240\271\350\240\247\350\240\273\350\241\204\350\241\202\350\241\222\350\241\231\350\241\236\350\241\242\350\241\253\350\242\201\350\241\276\350\242\236\350\241\265\350\241\275\350\242\265\350\241\262\350\242\202\350\242\227\350\242\222\350\242\256\350\242\231\350\242\242\350\242\215\350\242\244\350\242\260\n0xeae0: \350\242\261\350\243\203\350\243\204\350\243\224\350\243\230\350\243\231\350\243\235\350\243\271\350\244\202\350\243\274\350\243\264\350\243\250\350\243\262\350\244\204\350\244\214\350\244\212\350\244\223\350\245\203\350\244\236\350\244\245\350\244\252\350\244\253\350\245\201\350\245\204\350\244\273\350\244\266\350\244\270\350\245\214\350\244\235\350\245\240\350\245\236\n0xeba0:   \350\245\246\350\245\244\350\245\255\350\245\252\350\245\257\350\245\264\350\245\267\350\245\276\350\246\203\350\246\210\350\246\212\350\246\223\350\246\230\350\246\241\350\246\251\350\246\246\350\246\254\350\246\257\350\246\262\350\246\272\350\246\275\350\246\277\350\247\200\350\247\232\350\247\234\350\247\235\350\247\247\350\247\264\350\247\270\350\250\203\n0xebc0: \350\250\220\350\250\214\350\250\233\350\250\235\350\250\245\350\250\266\350\251\201\350\251\233\350\251\222\350\251\206\350\251\210\350\251\274\350\251\255\350\251\254\350\251\242\350\252\205\350\252\202\350\252\204\350\252\250\350\252\241\350\252\221\350\252\245\350\252\246\350\252\232\350\252\243\350\253\204\350\253\215\350\253\202\350\253\232\350\253\253\350\253\263\n0xebe0: \350\253\244\350\253\261\350\254\224\350\253\240\350\253\242\350\253\267\350\253\236\350\253\233\350\254\214\350\254\207\350\254\232\350\253\241\350\254\226\350\254\220\350\254\227\350\254\240\350\254\263\351\236\253\350\254\246\350\254\253\350\254\276\350\254\250\350\255\201\350\255\214\350\255\217\350\255\216\350\255\211\350\255\226\350\255\233\350\255\232\350\255\253\n0xeca0:   \350\255\237\350\255\254\350\255\257\350\255\264\350\255\275\350\256\200\350\256\214\350\256\216\350\256\222\350\256\223\350\256\226\350\256\231\350\256\232\350\260\272\350\261\201\350\260\277\350\261\210\350\261\214\350\261\216\350\261\220\350\261\225\350\261\242\350\261\254\350\261\270\350\261\272\350\262\202\350\262\211\350\262\205\350\262\212\350\262\215\n0xecc0: \350\262\224\350\261\274\350\262\230\346\210\235\350\262\255\350\262\252\350\262\275\350\262\262\350\262\263\350\262\256\350\262\266\350\263\210\350\263\201\350\263\244\350\263\243\350\263\232\350\263\275\350\263\272\350\263\273\350\264\204\350\264\205\350\264\212\350\264\207\350\264\217\350\264\215\350\264\220\351\275\216\350\264\223\350\263\215\350\264\224\350\264\226\n0xece0: \350\265\255\350\265\261\350\265\263\350\266\201\350\266\231\350\267\202\350\266\276\350\266\272\350\267\217\350\267\232\350\267\226\350\267\214\350\267\233\350\267\213\350\267\252\350\267\253\350\267\237\350\267\243\350\267\274\350\270\210\350\270\211\350\267\277\350\270\235\350\270\236\350\270\220\350\270\237\350\271\202\350\270\265\350\270\260\350\270\264\350\271\212\n0xeda0:   \350\271\207\350\271\211\350\271\214\350\271\220\350\271\210\350\271\231\350\271\244\350\271\240\350\270\252\350\271\243\350\271\225\350\271\266\350\271\262\350\271\274\350\272\201\350\272\207\350\272\205\350\272\204\350\272\213\350\272\212\350\272\223\350\272\221\350\272\224\350\272\231\350\272\252\350\272\241\350\272\254\350\272\260\350\273\206\350\272\261\n0xedc0: \350\273\205\350\273\210\350\273\213\350\273\233\350\273\243\350\273\274\350\273\273\350\273\253\350\273\276\350\274\212\350\274\205\350\274\225\350\274\222\350\274\231\350\274\223\350\274\234\350\274\237\350\274\233\350\274\214\350\274\246\350\274\263\350\274\273\350\274\271\350\275\205\350\275\202\350\274\276\350\275\214\350\275\211\350\275\206\350\275\216\350\275\227\n0xede0: \350\275\242\350\275\243\350\275\244\350\276\234\350\276\237\350\276\243\350\276\255\350\276\257\350\276\267\350\277\232\350\277\245\350\277\242\350\277\252\350\277\257\351\202\207\350\277\264\351\200\205\350\277\271\350\277\272\351\200\221\351\200\225\351\200\241\351\200\215\351\200\236\351\200\226\351\200\213\351\200\247\351\200\266\351\200\265\351\200\271\350\277\270\n0xeea0:   \351\201\217\351\201\220\351\201\221\351\201\222\351\200\216\351\201\211\351\200\276\351\201\226\351\201\230\351\201\236\351\201\250\351\201\257\351\201\266\351\232\250\351\201\262\351\202\202\351\201\275\351\202\201\351\202\200\351\202\212\351\202\211\351\202\217\351\202\250\351\202\257\351\202\261\351\202\265\351\203\242\351\203\244\346\211\210\351\203\233\n0xeec0: \351\204\222\351\204\231\351\204\262\351\204\260\351\205\212\351\205\226\351\205\230\351\205\243\351\205\245\351\205\251\351\205\263\351\205\262\351\206\213\351\206\211\351\206\202\351\206\242\351\206\253\351\206\257\351\206\252\351\206\265\351\206\264\351\206\272\351\207\200\351\207\201\351\207\211\351\207\213\351\207\220\351\207\226\351\207\237\351\207\241\351\207\233\n0xeee0: \351\207\265\351\207\266\351\210\236\351\207\277\351\210\224\351\210\254\351\210\225\351\210\221\351\211\236\351\211\227\351\211\205\351\211\211\351\211\244\351\211\210\351\212\225\351\210\277\351\211\213\351\211\220\351\212\234\351\212\226\351\212\223\351\212\233\351\211\232\351\213\217\351\212\271\351\212\267\351\213\251\351\214\217\351\213\272\351\215\204\351\214\256\n0xefa0:   \351\214\231\351\214\242\351\214\232\351\214\243\351\214\272\351\214\265\351\214\273\351\215\234\351\215\240\351\215\274\351\215\256\351\215\226\351\216\260\351\216\254\351\216\255\351\216\224\351\216\271\351\217\226\351\217\227\351\217\250\351\217\245\351\217\230\351\217\203\351\217\235\351\217\220\351\217\210\351\217\244\351\220\232\351\220\224\351\220\223\n0xefc0: \351\220\207\351\220\220\351\220\266\351\220\253\351\220\265\351\220\241\351\220\272\351\221\201\351\221\222\351\221\204\351\221\233\351\221\240\351\221\242\351\221\236\351\221\252\351\210\251\351\221\260\351\221\265\351\221\267\351\221\275\351\221\232\351\221\274\351\221\276\351\222\201\351\221\277\351\226\202\351\226\207\351\226\212\351\226\224\351\226\226\351\226\230\n0xefe0: \351\226\240\351\226\250\351\226\247\351\226\255\351\226\274\351\226\273\351\226\271\351\226\276\351\227\212\346\277\266\351\227\203\351\227\215\351\227\214\351\227\225\351\227\224\351\227\226\351\227\234\351\227\241\351\227\245\351\227\242\351\230\241\351\230\250\351\230\256\351\230\257\351\231\202\351\231\214\351\231\217\351\231\213\351\231\267\351\231\234\351\231\236\n0xf0a0:   \351\231\235\351\231\237\351\231\246\351\231\262\351\231\254\351\232\215\351\232\230\351\232\225\351\232\227\351\232\252\351\232\247\351\232\261\351\232\262\351\232\260\351\232\264\351\232\266\351\232\270\351\232\271\351\233\216\351\233\213\351\233\211\351\233\215\350\245\215\351\233\234\351\234\215\351\233\225\351\233\271\351\234\204\351\234\206\351\234\210\n0xf0c0: \351\234\216\351\234\221\351\234\217\351\234\226\351\234\231\351\234\244\351\234\252\351\234\260\351\234\271\351\234\275\351\234\276\351\235\204\351\235\206\351\235\210\351\235\202\351\235\211\351\235\234\351\235\240\351\235\244\351\235\246\351\235\250\345\213\222\351\235\253\351\235\261\351\235\271\351\236\205\351\235\274\351\236\201\351\235\272\351\236\206\351\236\213\n0xf0e0: \351\236\220\351\236\234\351\236\250\351\236\246\351\236\243\351\236\263\351\236\264\351\237\203\351\237\206\351\237\210\351\237\213\351\237\234\351\237\255\351\275\217\351\237\262\347\253\237\351\237\266\351\237\265\351\240\217\351\240\214\351\240\270\351\240\244\351\240\241\351\240\267\351\240\275\351\241\206\351\241\217\351\241\213\351\241\253\351\241\257\351\241\260\n0xf1a0:   \351\241\261\351\241\264\351\241\263\351\242\252\351\242\257\351\242\261\351\242\266\351\243\204\351\243\203\351\243\206\351\243\251\351\243\253\351\244\203\351\244\211\351\244\222\351\244\224\351\244\230\351\244\241\351\244\235\351\244\236\351\244\244\351\244\240\351\244\254\351\244\256\351\244\275\351\244\276\351\245\202\351\245\211\351\245\205\351\245\220\n0xf1c0: \351\245\221\351\245\222\351\245\214\351\245\225\351\246\227\351\246\230\351\246\245\351\246\255\351\246\256\351\246\274\351\247\237\351\247\233\351\247\235\351\247\230\351\247\221\351\247\255\351\247\256\351\247\261\351\247\262\351\247\273\351\247\270\351\250\201\351\250\217\351\250\205\351\247\242\351\250\231\351\250\253\351\250\267\351\251\205\351\251\202\351\251\200\n0xf1e0: \351\250\276\351\251\225\351\251\215\351\251\233\351\251\227\351\251\237\351\251\242\351\251\245\351\251\244\351\251\251\351\251\253\351\251\252\351\252\255\351\252\260\351\252\274\351\253\200\351\253\217\351\253\221\351\253\223\351\253\224\351\253\236\351\253\237\351\253\242\351\253\243\351\253\246\351\253\257\351\253\253\351\253\256\351\253\264\351\253\261\351\253\267\n0xf2a0:   \351\253\273\351\254\206\351\254\230\351\254\232\351\254\237\351\254\242\351\254\243\351\254\245\351\254\247\351\254\250\351\254\251\351\254\252\351\254\256\351\254\257\351\254\262\351\255\204\351\255\203\351\255\217\351\255\215\351\255\216\351\255\221\351\255\230\351\255\264\351\256\223\351\256\203\351\256\221\351\256\226\351\256\227\351\256\237\351\256\240\n0xf2c0: \351\256\264\351\257\200\351\257\212\351\256\271\351\257\206\351\257\217\351\257\221\351\257\222\351\257\243\351\257\242\351\257\244\351\257\224\351\257\241\351\260\272\351\257\262\351\257\261\351\257\260\351\260\225\351\260\224\351\260\211\351\260\223\351\260\214\351\260\206\351\260\210\351\260\222\351\260\212\351\260\204\351\260\256\351\260\233\351\260\245\351\260\244\n0xf2e0: \351\260\260\351\261\207\351\260\262\351\261\206\351\260\276\351\261\232\351\261\240\351\261\247\351\261\266\351\261\270\351\263\247\351\263\254\351\263\260\351\264\211\351\264\210\351\263\253\351\264\203\351\264\206\351\264\252\351\264\246\351\266\257\351\264\243\351\264\237\351\265\204\351\264\225\351\264\222\351\265\201\351\264\277\351\264\276\351\265\206\351\265\210\n0xf3a0:   \351\265\235\351\265\236\351\265\244\351\265\221\351\265\220\351\265\231\351\265\262\351\266\211\351\266\207\351\266\253\351\265\257\351\265\272\351\266\232\351\266\244\351\266\251\351\266\262\351\267\204\351\267\201\351\266\273\351\266\270\351\266\272\351\267\206\351\267\217\351\267\202\351\267\231\351\267\223\351\267\270\351\267\246\351\267\255\351\267\257\n0xf3c0: \351\270\232\351\270\233\351\270\236\351\271\265\351\271\271\351\271\275\351\272\201\351\272\210\351\272\213\351\272\214\351\272\222\351\272\225\351\272\221\351\272\235\351\272\245\351\272\251\351\272\270\351\272\252\351\272\255\351\235\241\351\273\214\351\273\216\351\273\217\351\273\220\351\273\224\351\273\234\351\273\236\351\273\235\351\273\240\351\273\245\351\273\250\n0xf3e0: \351\273\264\351\273\266\351\273\267\351\273\271\351\273\273\351\273\274\351\273\275\351\274\207\351\274\210\347\232\267\351\274\225\351\274\241\351\274\254\351\274\276\351\275\212\351\275\222\351\275\224\351\275\243\351\275\237\351\275\240\351\275\241\351\275\246\351\275\247\351\275\254\351\275\252\351\275\267\351\275\262\351\275\266\351\276\225\351\276\234\351\276\240\n0xf4a0:   \345\240\257\346\247\207\351\201\231\347\221\244\345\207\234\347\206\231                                                \n0xf4c0:                                                               \n0xf4e0:                                                               \n0xf5a0:                                                               \n0xf5c0:                                                               \n0xf5e0:                                                               \n0xf6a0:                                                               \n0xf6c0:                                                               \n0xf6e0:                                                               \n0xf7a0:                                                               \n0xf7c0:                                                               \n0xf7e0:                                                               \n0xf8a0:                                                               \n0xf8c0:                                                               \n0xf8e0:                                                               \n0xf9a0:                                                               \n0xf9c0:                                                               \n0xf9e0:                                                               \n0xfaa0:                                                               \n0xfac0:                                                               \n0xfae0:                                                               \n0xfba0:                                                               \n0xfbc0:                                                               \n0xfbe0:                                                               \n0xfca0:                                                               \n0xfcc0:                                                               \n0xfce0:                                                               \n0xfda0:                                                               \n0xfdc0:                                                               \n0xfde0:                                                               \n0xfea0:                                                               \n0xfec0:                                                               \n0xfee0:                                                               \n0xffa0:                                                               \n0xffc0:                                                               \n0xffe0:                                                               \n",
 "320121fcbc1e56e7896a9d9a2aa8b224" => "GIF87a%\0*\0\347\0\0\266E\e\2272B\327&\36\231<0\27\20\\W'E\254\34C\20!K\0200l+\31>\301\0320%\30B\345B\e+\27iK\$CC'EE;^*,J%\37O\304),'\17&,Nf\271\20?6\27c\306V\23\257 !\257\21++\32N\3047\e\e\37H5\37e\350?\32\21?U\312B\0320!L\243\0236\20\17=\236\34'\3101\"\300 8?%^\2632+/4X\232\13-\e\27KF\35Q\$\27k\@'v\256\16:\331>\30\21?o\342R\20=\35_0\27f\e\27:\21\23D\327E\17\3431\e\35?j6\35D\e\30[\3372\rKBiJ\27[#\25EZ:P%\27^x42\257\e#\202 <O\0278%!J\346[\20):[+\23P\326)\0215!]<\30Z\226\24?\306\27\25\20\20?c\"H\$\34B\340H\27\34(e\27\26I\320U\0212\35]2%I0\0170\e\0249\321:\34\333h\25\3409\r1\35H'CU\233H\"\206\0302|<?\336>\30\2612\20\"\27d)&M2\31L!\30Y\321[\30-\24=\336B\e\317!\23\25:P\20\26H\255\0247\25\"d\276\21**\31[<\37E\304\$=2&p\335-\20\20\35U\252\16 \27\26R17|6*L\2403#7 M\3266\26\261=#\35\16[\20\24N\e\24E\241\$1\267\0203\316\31\30\306='\310\35\22\0225IE3WS\$[\0276o\337)\30g+=\200J;\$\24Q\347O\17\232\36A\201)F#\20g1\23W\"\32R4\37q\26D]\311>\17\20\36T\22\t5\265\27A+\@u\265V&\20\22T\304+\24.\34a0.z\260(\36\2113)\20\24\@\313F\24\27 ^\323?\22\27.J\302E\25\26%S\347-\22\30\35U\3241\23\20%M\24JJ\306%\31)\34_\37!_\17\30B%\0300YOc\264M\36\245\0174*\34L,!DC4\177\27\21W%\0243#!R\e\0173\353T\25#\20\\\e\0133\277;\30\34\24U\$)j2\0319\325T\23\263\22>\323I\e,\37^\327H\25\21*a\303L\25* R#\35U\25\23[\357R\b\36\34F\27\24S)\34=\351K\fT\36C4\17iL*f\223&5i'Q\$9p(\20g#\0207a2?%-q\257(\@\22(Q\24:j\35\22\\e1d+ m\324E\"\330M\22\325K\17+\24.\326:\32\35\34_\267\32 \334a\31#\23[!\13.\"\30P\24\32V\e/j\261!;\336\37\30\21\30Sh\e?>\34[\20\eHB\"K\31\22Gu*E\3357\32\0\0\0\0\0\0\0\0\0\0\0\0,\0\0\0\0%\0*\0\0\b\376\0}h\213\207E\2177\25\25t\21\e\207\214\235\237C\372(1\301'g\230\270\0065\234M\262\364\202\36\215&\270<\274\240\201\257\17\204x*\366\204\13\23)\214\23'\345z\204\230\"j\32\13g\326\346\\\3411,\20\1A\322\234\2251\325\254\206\245\2434\256\24(p+\222<\0300\350X\200ah\0365e\230\212\241\361T\246I\237\5\201\334\b\331\205f\222\264\241\210XM\242\264\343\231\1\251\204\344\21\nc\244\333\245!\253\330\245a\246\250E\224\22\325D\264PS\303S&KZ\244\t\232TFV\22S}\22\235\370\2664\21\b\4\aL-\312f\a\a\216\24#\6\301z\202g\210\230J\305LQ\211\225\254\306\202\35\225&\325\321\326l\22\262OC^\224!FeY2\b\3\326\300\312P\302I\211C9\330 A2\252\3442\2jH\241q!K\335\244+\357\254\375b4OR\266\27\212\2\376\30\232\242L\330\240HoV\f\232\300\306\16\244_\216h\250c!\356\201\34&\226\3120\21\262\r\315\25\34O0R\16\35R\321\1\311>]L\240\301 \337\320\241\317\20!`\360\213\25\345\374\241\210\34\357L2\2145h\354QO\24\3664C\311\fS\214a\202\6\32\20b\2\3k\224\243\200\1\2214\323L82|\321\205\35\3100\300\@#(,\266\3%5\f\203\206\20\311\240\200B\27=|p\316\4&\300\322J\16c\30\242A5T\204\23\n'zP\361\311<\346\254\261O\t{\330#\b:\@\324`M\31\236\364\222\205\3\242\214\302G+\324\364\300\300>\363\360\361\205\f x\3\302+\327\\\243\217\23\n0b\207\35\205T#\4/\244\fC\2035\261<\342\16.\356\270A\3172\21\214\22\3039\354\330\241\317\" p\242\210\n_\214\@\207\6o\274aB\17\214LP\214\r,\330\240\304\21\376\316\20\0\204\32\334P E0\364\270\261\303\32\312\340\@M\20\332\\\203\rT\n\304\361M\24Q\250\20\4\3\255p\200\6/\270<\2L \231\220C\13\264\356\260\342\312,\3214\22\2\3\347L\21\200\$t(\200\307-\337D\242\2136\227\310\340H\b\260\214\222\207\26\13\344\302\2034\256x\240\204\20\35\34A\217:L\324pE'\357\305P\216\6\233X\240A\21\16\200\240C\22\227\324\221F)\31\30\241\5\"\250\220RI \342\364\347Io\3218\203\302#\365P\203\4\27\31\20!\3171\343\350\362\2127I\200P\1\30\266\234sJ\6\264\250\321\13*\270\34\321\316\34\16xr\204 p\220\302B>\13\244P\n4V\224\262\16&\314\0\373E\e_\324\322I\bl\260aK7\352\300aF\37\271\240\342\211\4\224\334\243\216\26\263\334\23\b\32\@\240\360\@)\346P\3\t\16\230t\363\312\3a\234\220\6\376\27S\34\"\212\17\272\210\301\307)\203\230\341J\4\322\4\302\213\305\232\0#\215\22\36\364\262\314(\347\314\355Y\6\267\220\3724\6\314\360\321\b\":\244\221\306)c\f\21\205\22\270\\A\201;\253\13!\305\25J\360BB1| 3\0052\\\2440A\b\345\230\23B)\266\214\3z-\245 \361\13\$3XA\3144\262,\260\372\1\36p\263\0007\274h\22\314\13C\374\1F7\235\314\200\2012\347\230\343\a\30\241dSD\30\233L\0\306\f\220\244\322\202,T<\20\314=\313\304\222\200\22\264h\242E>nPR\307\1Z\210\0\6R\201\f?\224\243\23\222\210DT\bA\bI\200\0\0]x\202(D \r7\260\300l5P\3>\240\20\214\13\0A\20rP\303\352\26 \212U\260!\a9\260\0\35\276\361\6\3|\303\0\234\210G=\226p\210\f\250\302\24\322 \@&\274\261\r_\220`\3\376\305P\2014\316 \5-P\0\35\31H\a,\326A\a\6j\300\0\331\320E(t\241\13\0044b\0358H\3>h\1\204G\210\343\b\342\250\2\t\244\b\216L\260\242\3\334\bF\30\330\260\205\22\340\341\30\233p\341\13\222\240\13=\214c\34\227p\204\25f\220\212=\240\343\nhxD\37&\321\0q\224\201\26\371\330\3050\340 \rR\214\242Ed\320\@\30\n\300\4\31pB\6\20H\304-n\221\16h(\303\nC\240\300=j\0\17g\320\"\214\254X\206)\2\301\203I\250cm\212\@B\32\374\360\t}x\3\34\341\320\203.\350`\0<h`\fv\350\302((\240\5-4\243\5}\270\2024\226\201\200p\230\202\a\r\@C,H\301\213n\314\0\31\255h\5\37t\321\206qD\".\222\30\2020\204\321\203\36\220\241\30\t\230\6I<\360\n\0264\303\214\340x\207\24\302\362\16n\24\3\f\306\376\300D9L\220\r}\334B\1oH\304\27\20\201\3f\b\323\bX\330\300\25ha\217=\250C\0026P[ \356 \215]\34\0\25\225\330\305\0200q\210B0B\1\32\260\200\$\364\240\r\31tc\25\253(\3047\322\321\3Qt\302\b;\370\301\36\350A\212\@Ta\27\211\253\2)\244\341\13\26\344\"\3\207\370D\17\272\260\216\1|\201\30\20H\0023\2501\2068\b`\37\301\204\6\30l\340\2059t \17\322\20\2023XA\200]\334`\22\274\20\1 \214P\202.ta\t\230p\4'\36f\13e(\221\20\233\310\301\22\226\0\211?4\302\1G\200B1\240\@\2%\210\3\34\210\220\2068\200\300\3 \24c\ad \303'0\21\4b|\1\2~\30\303>,\@\b\13\30\302\16O8\4&\250\341\0\\\260\200\0066\360E0j \2130\346B\32G\0\e/\370 \f>\374\301\26\272\220\376\204(\226\20%I|C\27Ax\@!B\200\4eH\300\1j`E/\20\341\6rTB\20h\300\5/\232\260\0035\24\303\1\372H\306=\323`\214Od`\0\25\0\301%\264\21\212W\204\200\35:\272\306\21\22p\0017\324\201\30e`\205\e\206\321\f\\0A\4\24\240\@\2,\221\205Q0\303\n\34]A\5\364\240\3\20\354\241\0\215\260\20008\20\200\27\0\2\5\321\330\0009\\\@\216\6\220\3\16\311\220E\a\22\200\16\n\330\203\t\224\30\305\336 1\4bdB\27\234xE\0006\1\13\34\354\203\ra\260\304\35v\320\202&<c\301BP\307\35d\301\204\26\240c\1\323\330A\2Z \2064\260\3\3>\320\3\n\272\341M\30m\1\32\3108\4\36~p\205\16\220\203\5\225\350\@3D\220\214:x\260\5\215h\300\25\230\260\203\ap\240\34[\350\204\nj\21R\3l\2\e\207c\307\232\24PL\211v,\203\36\236\210\206\e\252\200\6A\334\341\16\315\270B.\200\221\13PH\340\1\302\0\20\201\217q\214[\\C\21\327\@\200\0\267\260\5U\300\341\31\231\220\5\34\334\@\2R\334 \23\256x\362#BA\0059H\@\16\243H\5&\na\2107\234\@\37f\210\207)8\201\200!|\2\26|0\3052f\1\16b\@!\20\201\200\202&\300q\a*\0b\21\241\260\306,\310\21\0042\b\3\31[\370\5\35\216\361\205x\204\343\0162\20\303\aD\201\207\b,\343\0\333\b\b\0;",
 "3be4986264587bec738cc46ebb43d698" => "# Encoding file: iso8859-14, single-byte\nS\n003F 0 1\n00\n0000000100020003000400050006000700080009000A000B000C000D000E000F\n0010001100120013001400150016001700180019001A001B001C001D001E001F\n0020002100220023002400250026002700280029002A002B002C002D002E002F\n0030003100320033003400350036003700380039003A003B003C003D003E003F\n0040004100420043004400450046004700480049004A004B004C004D004E004F\n0050005100520053005400550056005700580059005A005B005C005D005E005F\n0060006100620063006400650066006700680069006A006B006C006D006E006F\n0070007100720073007400750076007700780079007A007B007C007D007E007F\n0080008100820083008400850086008700880089008A008B008C008D008E008F\n0090009100920093009400950096009700980099009A009B009C009D009E009F\n00A01E021E0300A3010A010B1E0A00A71E8000A91E821E0B1EF200AD00AE0178\n1E1E1E1F012001211E401E4100B61E561E811E571E831E601EF31E841E851E61\n00C000C100C200C300C400C500C600C700C800C900CA00CB00CC00CD00CE00CF\n017400D100D200D300D400D500D61E6A00D800D900DA00DB00DC00DD017600DF\n00E000E100E200E300E400E500E600E700E800E900EA00EB00EC00ED00EE00EF\n017500F100F200F300F400F500F61E6B00F800F900FA00FB00FC00FD017700FF\n",
 "6ae49f4e916b02eb7edb160f88b5a27f" => "# Encoding file: iso8859-15, single-byte\nS\n003F 0 1\n00\n0000000100020003000400050006000700080009000A000B000C000D000E000F\n0010001100120013001400150016001700180019001A001B001C001D001E001F\n0020002100220023002400250026002700280029002A002B002C002D002E002F\n0030003100320033003400350036003700380039003A003B003C003D003E003F\n0040004100420043004400450046004700480049004A004B004C004D004E004F\n0050005100520053005400550056005700580059005A005B005C005D005E005F\n0060006100620063006400650066006700680069006A006B006C006D006E006F\n0070007100720073007400750076007700780079007A007B007C007D007E007F\n0080008100820083008400850086008700880089008A008B008C008D008E008F\n0090009100920093009400950096009700980099009A009B009C009D009E009F\n00A000A100A200A320AC00A5016000A7016100A900AA00AB00AC00AD00AE00AF\n00B000B100B200B3017D00B500B600B7017E00B900BA00BB01520153017800BF\n00C000C100C200C300C400C500C600C700C800C900CA00CB00CC00CD00CE00CF\n00D000D100D200D300D400D500D600D700D800D900DA00DB00DC00DD00DE00DF\n00E000E100E200E300E400E500E600E700E800E900EA00EB00EC00ED00EE00EF\n00F000F100F200F300F400F500F600F700F800F900FA00FB00FC00FD00FE00FF\n",
 "78c1c88ec5bc65d4bb129e17dad74582" => "\@echo off\nset CONFIG=\nset PATH_SEPARATOR=;\nset PATH_EXPAND=y\nsh -c 'if test \$PATH_SEPARATOR = \";\"; then exit 1; fi'\nif ERRORLEVEL 1 goto path_sep_ok\necho Error:\a\necho Make sure the environment variable PATH_SEPARATOR=; while building perl!\necho Please check your DJGPP.ENV!\ngoto end\n\n:path_sep_ok\nsh -c 'if test \$PATH_EXPAND = \"Y\" -o \$PATH_EXPAND = \"y\"; then exit 1; fi'\nif ERRORLEVEL 1 goto path_exp_ok\necho Error:\a\necho Make sure the environment variable PATH_EXPAND=Y while building perl!\necho Please check your DJGPP.ENV!\ngoto end\n\n:path_exp_ok\nsh -c '\$SHELL -c \"exit 128\"'\nif ERRORLEVEL 128 goto shell_ok\n\necho Error:\a\necho The SHELL environment variable must be set to the full path of your sh.exe!\ngoto end\n\n:shell_ok\nsh -c 'if test ! -d /tmp; then mkdir /tmp; fi'\ncp djgpp.c config.over ..\ncd ..\necho Running sed...\nsh djgpp/djgppsed.sh\n\necho Running Configure...\nsh Configure %1 %2 %3 %4 %5 %6 %7 %8 %9\n:end\n",
 "7b8a06f55ee33eed6c876179744c51eb" => "\$locales .= <<EOF;\nCatal\340 Catalan:ca:es:1 15\nFran\347ais French:fr:be ca ch fr lu:1 15\nG\341idhlig Gaelic:gd:gb uk:1 14 15\nF\370royskt Faroese:fo:fo:1 15\n\315slensku Icelandic:is:is:1 15\nS\341mi Lappish:::4 6 13\nPortugu\352s Portuguese:po:po br:1 15\nEspan\365l Spanish:es:ar bo cl co cr do ec es gt hn mx ni pa pe py sv uy ve:1 15\nEOF\n",
 "7da1a3fbb8a68b99d7361da526386ad3" => "\n/*\n * Copyright \251 2001 Novell, Inc. All Rights Reserved.\n *\n * You may distribute under the terms of either the GNU General Public\n * License or the Artistic License, as specified in the README file.\n *\n */\n\n/*\n * FILENAME\t\t:\tinterface.c\n * DESCRIPTION\t:\tPerl parsing and running functions.\n * Author\t\t:\tSGP\n * Date\t\t\t:\tJanuary 2001.\n *\n */\n\n\n\n#include \"interface.h\"\n\n#include \"win32ish.h\"\t\t// For \"BOOL\", \"TRUE\" and \"FALSE\"\n\n\nstatic void xs_init(pTHX);\n//static void xs_init(pTHXo); //(J)\n\nEXTERN_C int RunPerl(int argc, char **argv, char **env);\nEXTERN_C void Perl_nw5_init(int *argcp, char ***argvp);\nEXTERN_C void boot_DynaLoader (pTHX_ CV* cv);\t// (J) pTHXo_\n\nEXTERN_C BOOL Remove_Thread_Ctx(void);\n\n\nClsPerlHost::ClsPerlHost()\n{\n\n}\n\nClsPerlHost::~ClsPerlHost()\n{\n\n}\n\nClsPerlHost::VersionNumber()\n{\n\treturn 0;\n}\n\nint\nClsPerlHost::PerlCreate(PerlInterpreter *my_perl)\n{\n/*\tif (!(my_perl = perl_alloc()))\t\t// Allocate memory for Perl.\n\t\treturn (1);*/\n    perl_construct(my_perl);\n\n\treturn 1;\n}\n\nint\nClsPerlHost::PerlParse(PerlInterpreter *my_perl, int argc, char** argv, char** env)\n{\n\treturn(perl_parse(my_perl, xs_init, argc, argv, env));\t\t// Parse the command line.\n}\n\nint\nClsPerlHost::PerlRun(PerlInterpreter *my_perl)\n{\n\treturn(perl_run(my_perl));\t// Run Perl.\n}\n\nvoid\nClsPerlHost::PerlDestroy(PerlInterpreter *my_perl)\n{\n\tperl_destruct(my_perl);\t\t// Destructor for Perl.\n////\tperl_free(my_perl);\t\t\t// Free the memory allocated for Perl.\n}\n\nvoid\nClsPerlHost::PerlFree(PerlInterpreter *my_perl)\n{\n\tperl_free(my_perl);\t\t\t// Free the memory allocated for Perl.\n\n\t// Remove the thread context set during Perl_set_context\n\t// This is added here since for web script there is no other place this gets executed\n\t// and it cannot be included into cgi2perl.xs unless this symbol is exported.\n\tRemove_Thread_Ctx();\n}\n\n/*============================================================================================\n\n Function\t\t:\txs_init\n\n Description\t:\t\n\n Parameters \t:\tpTHX\t(IN)\t-\t\n\n Returns\t\t:\tNothing.\n\n==============================================================================================*/\n\nstatic void xs_init(pTHX)\n//static void xs_init(pTHXo) //J\n{\n\tchar *file = __FILE__;\n\n\tdXSUB_SYS;\n\tnewXS(\"DynaLoader::boot_DynaLoader\", boot_DynaLoader, file);\n}\n\n\nEXTERN_C\nint RunPerl(int argc, char **argv, char **env)\n{\n\tint exitstatus = 0;\n\tClsPerlHost nlm;\n\n\tPerlInterpreter *my_perl = NULL;\t\t// defined in Perl.h\n\tPerlInterpreter *new_perl = NULL;\t\t// defined in Perl.h\n\n\t//__asm{int 3};\n\t#ifdef PERL_GLOBAL_STRUCT\n\t\t#define PERLVAR(var,type)\n\t\t#define PERLVARA(var,type)\n\t\t#define PERLVARI(var,type,init) PL_Vars.var = init;\n\t\t#define PERLVARIC(var,type,init) PL_Vars.var = init;\n\n\t\t#include \"perlvars.h\"\n\n\t\t#undef PERLVAR\n\t\t#undef PERLVARA\n\t\t#undef PERLVARI\n\t\t#undef PERLVARIC\n\t#endif\n\n\tPERL_SYS_INIT(&argc, &argv);\n\n\tif (!(my_perl = perl_alloc()))\t\t// Allocate memory for Perl.\n\t\treturn (1);\n\n\tif(nlm.PerlCreate(my_perl))\n\t{\n\t\tPL_perl_destruct_level = 0;\n\n\t\texitstatus = nlm.PerlParse(my_perl, argc, argv, env);\n\t\tif(exitstatus == 0)\n\t\t{\n\t\t\t#if defined(TOP_CLONE) && defined(USE_ITHREADS)\t\t// XXXXXX testing\n\t\t\t\t#  ifdef PERL_OBJECT\n\t\t\t\t\tCPerlHost *h = new CPerlHost();\n\t\t\t\t\tnew_perl = perl_clone_using(my_perl, 1,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlMem,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlMemShared,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlMemParse,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlEnv,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlStdIO,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlLIO,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlDir,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlSock,\n\t\t\t\t\t\t\t\t\t\th->m_pHostperlProc\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\tCPerlObj *pPerl = (CPerlObj*)new_perl;\n\t\t\t\t#  else\n\t\t\t\t\tnew_perl = perl_clone(my_perl, 1);\n\t\t\t\t#  endif\n\n\t\t\t\texitstatus = perl_run(new_perl);\t// Run Perl.\n\t\t\t\tPERL_SET_THX(my_perl);\n\t\t\t#else\n\t\t\t\texitstatus = nlm.PerlRun(my_perl);\n\t\t\t#endif\n\t\t}\n\t\tnlm.PerlDestroy(my_perl);\n\t}\n\tif(my_perl)\n\t\tnlm.PerlFree(my_perl);\n\n\t#ifdef USE_ITHREADS\n\t\tif (new_perl)\n\t\t{\n\t\t\tPERL_SET_THX(new_perl);\n\t\t\tnlm.PerlDestroy(new_perl);\n\t\t\tnlm.PerlFree(my_perl);\n\t\t}\n\t#endif\n\n\tPERL_SYS_TERM();\n\treturn exitstatus;\n}\n\n\n// FUNCTION: AllocStdPerl\n//\n// DESCRIPTION:\n//\tAllocates a standard perl handler that other perl handlers\n//\tmay delegate to. You should call FreeStdPerl to free this\n//\tinstance when you are done with it.\n//\nIPerlHost* AllocStdPerl()\n{\n\treturn (IPerlHost*) new ClsPerlHost();\n}\n\n\n// FUNCTION: FreeStdPerl\n//\n// DESCRIPTION:\n//\tFrees an instance of a standard perl handler allocated by\n//\tAllocStdPerl.\n//\nvoid FreeStdPerl(IPerlHost* pPerlHost)\n{\n\tif (pPerlHost)\n\t\tdelete (ClsPerlHost*) pPerlHost;\n////\t\tdelete pPerlHost;\n}\n\n",
 "81c654bdff08d71f76df8e341b95d3e8" => "\0\0\1\0\2\0\20\20\20\0\0\0\0\0(\1\0\0&\0\0\0  \20\0\0\0\0\0\350\2\0\0N\1\0\0(\0\0\0\20\0\0\0 \0\0\0\1\0\4\0\0\0\0\0\300\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\200\0\0\0\200\200\0\200\0\0\0\200\0\200\0\200\200\0\0\300\300\300\0\200\200\200\0\0\0\377\0\0\377\0\0\0\377\377\0\377\0\0\0\377\0\377\0\377\377\0\0\377\377\377\0\0\0\@\0\0\4\0\0\0\0\00433\@\0\0\0\0\0;\263\0\0\0\0\0\4\263;\@\0\0\0\0DdFD\0\0\0\4N\344N\344\@\0\0\4\356\356\356\356\@\0\0\16\356\356\356\356\340\0\0\16\356\356\356\356\340\0\0\16\356\356\356\356\340\0\0\6\356\356\357\356`\0\0\0\356\356\356\357\0\0\0\0\16\356\356\360\0\0\0\0\0ff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\360\17\0\0\370\37\0\0\374?\0\0\370\37\0\0\360\17\0\0\340\a\0\0\340\a\0\0\340\a\0\0\340\a\0\0\340\a\0\0\340\a\0\0\360\17\0\0\370\37\0\0\374?\0\0\377\377\0\0\377\377\0\0(\0\0\0 \0\0\0\@\0\0\0\1\0\4\0\0\0\0\0\200\2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\200\0\0\200\0\0\0\200\200\0\200\0\0\0\200\0\200\0\200\200\0\0\300\300\300\0\200\200\200\0\0\0\377\0\0\377\0\0\0\377\377\0\377\0\0\0\377\0\377\0\377\377\0\0\377\377\377\0\0\0\0\0\4\@\0\0\@\0\0D\0\0\0\0\0\0\0\0\0DD\4\4\4D\@\0\0\0\0\0\0\0\0\0\4\263C\3C\264\0\0\0\0\0\0\0\0\0\0\0K\2633\273\@\0\0\0\0\0\0\0\0\0\0\0C\273\273\263\@\0\0\0\0\0\0\0\0\0\0\0K;;;\@\0\0\0\0\0\0\0\0\0\0\4\273\263\263\273\264\0\0\0\0\0\0\0\0\0\0KDK;DK\@\0\0\0\0\0\0\0\0\4\264fD\264Fd\264\0\0\0\0\0\0\0\0KF\346\344\264\346\346K\@\0\0\0\0\0\0\4\264nndDnnd\264\0\0\0\0\0\0\4F\346\346\346F\346\346\346D\0\0\0\0\0\0\4nnnnN\356\356nd\0\0\0\0\0\0f\346\346\356\356N\356\356\356\346`\0\0\0\0\0nnn\356\356\356\356\356\356\356`\0\0\0\0\0f\346\356\356\356\356\356\356\356\356`\0\0\0\0\0nn\356\356\356\356\356\356\356\356`\0\0\0\0\0f\356\356\356\356\356\356\356\356\356`\0\0\0\0\0nn\356\356\356\356\356\376\356\356`\0\0\0\0\0f\356\356\356\356\356\356\376\356\357`\0\0\0\0\0\6n\356\356\356\356\357\376\356\346\0\0\0\0\0\0\6\356\356\356\356\357\377\356\356\366\0\0\0\0\0\0\0n\356\356\356\356\356\356\357`\0\0\0\0\0\0\0\6\356\356\356\356\356\356\366\0\0\0\0\0\0\0\0\0n\356\356\356\356\357`\0\0\0\0\0\0\0\0\0\6n\356\356\357f\0\0\0\0\0\0\0\0\0\0\0\6fff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\377\200\0\377\377\300\1\377\377\340\3\377\377\360\a\377\377\360\a\377\377\360\a\377\377\340\3\377\377\300\1\377\377\200\0\377\377\0\0\177\376\0\0?\376\0\0?\376\0\0?\374\0\0\37\374\0\0\37\374\0\0\37\374\0\0\37\374\0\0\37\374\0\0\37\374\0\0\37\376\0\0?\376\0\0?\377\0\0\177\377\200\0\377\377\300\1\377\377\340\3\377\377\370\17\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377\377",
 "8e865b8444df7b0b73d1c9b169fb035d" => "\$locales .= <<EOF;\nCatal\303\240 Catalan:ca:es:1 15\nFran\303\247ais French:fr:be ca ch fr lu:1 15\nG\303\241idhlig Gaelic:gd:gb uk:1 14 15\nF\303\270royskt Faroese:fo:fo:1 15\n\303\215slensku Icelandic:is:is:1 15\nS\303\241mi Lappish:::4 6 13\nPortugu\303\252s Portuguese:po:po br:1 15\nEspan\303\265l Spanish:es:ar bo cl co cr do ec es gt hn mx ni pa pe py sv uy ve:1 15\nEOF\n",
 "95759703a993847eb9291cdb3bbc4bcc" => "\@echo off\nset CONFIG=\nset PATH_SEPARATOR=;\nset PATH_EXPAND=y\nsh -c 'if test \$PATH_SEPARATOR = \";\"; then exit 1; fi'\nif ERRORLEVEL 1 goto path_sep_ok\necho Error:\a\necho Make sure the environment variable PATH_SEPARATOR=; while building perl!\necho Please check your DJGPP.ENV!\ngoto end\n\n:path_sep_ok\nsh -c 'if test \$PATH_EXPAND = \"Y\" -o \$PATH_EXPAND = \"y\"; then exit 1; fi'\nif ERRORLEVEL 1 goto path_exp_ok\necho Error:\a\necho Make sure the environment variable PATH_EXPAND=Y while building perl!\necho Please check your DJGPP.ENV!\ngoto end\n\n:path_exp_ok\nsh -c '\$SHELL -c \"exit 128\"'\nif ERRORLEVEL 128 goto shell_ok\n\necho Error:\a\necho The SHELL environment variable must be set to the full path of your sh.exe!\ngoto end\n\n:shell_ok\nsh -c 'if test ! -d /tmp; then mkdir /tmp; fi'\ncp djgpp.c config.over ..\ncd ..\necho Running sed...\nsh djgpp/djgppsed.sh\n\necho Running Configure...\nsh Configure %1 %2 %3 %4 %5 %6 %7 %8 %9\n:end\n",
 "b09849cb3f09256a66f7f303b93e6efd" => "0x0020:    ! \" # \$ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = >\n0x0040:  \@ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \\ ] ^\n0x0060:  ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~\n0x8ea0:    \216\241 \216\242 \216\243 \216\244 \216\245 \216\246 \216\247 \216\250 \216\251 \216\252 \216\253 \216\254 \216\255 \216\256 \216\257 \216\260 \216\261 \216\262 \216\263 \216\264 \216\265 \216\266 \216\267 \216\270 \216\271 \216\272 \216\273 \216\274 \216\275 \216\276\n0x8ec0:  \216\300 \216\301 \216\302 \216\303 \216\304 \216\305 \216\306 \216\307 \216\310 \216\311 \216\312 \216\313 \216\314 \216\315 \216\316 \216\317 \216\320 \216\321 \216\322 \216\323 \216\324 \216\325 \216\326 \216\327 \216\330 \216\331 \216\332 \216\333 \216\334 \216\335 \216\336\n0x8ee0:                                                               \n0xa0a0:                                                               \n0xa0c0:                                                               \n0xa0e0:                                                               \n0xa1a0:   \241\241\241\242\241\243\241\244\241\245\241\246\241\247\241\250\241\251\241\252\241\253\241\254\241\255\241\256\241\257\241\260\241\261\241\262\241\263\241\264\241\265\241\266\241\267\241\270\241\271\241\272\241\273\241\274\241\275\241\276\n0xa1c0: \241\300\241\301\241\302\241\303\241\304\241\305\241\306\241\307\241\310\241\311\241\312\241\313\241\314\241\315\241\316\241\317\241\320\241\321\241\322\241\323\241\324\241\325\241\326\241\327\241\330\241\331\241\332\241\333\241\334\241\335\241\336\n0xa1e0: \241\340\241\341\241\342\241\343\241\344\241\345\241\346\241\347\241\350\241\351\241\352\241\353\241\354\241\355\241\356\241\357\241\360\241\361\241\362\241\363\241\364\241\365\241\366\241\367\241\370\241\371\241\372\241\373\241\374\241\375\241\376\n0xa2a0:   \242\241\242\242\242\243\242\244\242\245\242\246\242\247\242\250\242\251\242\252\242\253\242\254\242\255\242\256                      \242\272\242\273\242\274\242\275\242\276\n0xa2c0: \242\300\242\301                \242\312\242\313\242\314\242\315\242\316\242\317\242\320                      \242\334\242\335\242\336\n0xa2e0: \242\340\242\341\242\342\242\343\242\344\242\345\242\346\242\347\242\350\242\351\242\352              \242\362\242\363\242\364\242\365\242\366\242\367\242\370\242\371        \242\376\n0xa3a0:                                 \243\260\243\261\243\262\243\263\243\264\243\265\243\266\243\267\243\270\243\271          \n0xa3c0:   \243\301\243\302\243\303\243\304\243\305\243\306\243\307\243\310\243\311\243\312\243\313\243\314\243\315\243\316\243\317\243\320\243\321\243\322\243\323\243\324\243\325\243\326\243\327\243\330\243\331\243\332        \n0xa3e0:   \243\341\243\342\243\343\243\344\243\345\243\346\243\347\243\350\243\351\243\352\243\353\243\354\243\355\243\356\243\357\243\360\243\361\243\362\243\363\243\364\243\365\243\366\243\367\243\370\243\371\243\372        \n0xa4a0:   \244\241\244\242\244\243\244\244\244\245\244\246\244\247\244\250\244\251\244\252\244\253\244\254\244\255\244\256\244\257\244\260\244\261\244\262\244\263\244\264\244\265\244\266\244\267\244\270\244\271\244\272\244\273\244\274\244\275\244\276\n0xa4c0: \244\300\244\301\244\302\244\303\244\304\244\305\244\306\244\307\244\310\244\311\244\312\244\313\244\314\244\315\244\316\244\317\244\320\244\321\244\322\244\323\244\324\244\325\244\326\244\327\244\330\244\331\244\332\244\333\244\334\244\335\244\336\n0xa4e0: \244\340\244\341\244\342\244\343\244\344\244\345\244\346\244\347\244\350\244\351\244\352\244\353\244\354\244\355\244\356\244\357\244\360\244\361\244\362\244\363                      \n0xa5a0:   \245\241\245\242\245\243\245\244\245\245\245\246\245\247\245\250\245\251\245\252\245\253\245\254\245\255\245\256\245\257\245\260\245\261\245\262\245\263\245\264\245\265\245\266\245\267\245\270\245\271\245\272\245\273\245\274\245\275\245\276\n0xa5c0: \245\300\245\301\245\302\245\303\245\304\245\305\245\306\245\307\245\310\245\311\245\312\245\313\245\314\245\315\245\316\245\317\245\320\245\321\245\322\245\323\245\324\245\325\245\326\245\327\245\330\245\331\245\332\245\333\245\334\245\335\245\336\n0xa5e0: \245\340\245\341\245\342\245\343\245\344\245\345\245\346\245\347\245\350\245\351\245\352\245\353\245\354\245\355\245\356\245\357\245\360\245\361\245\362\245\363\245\364\245\365\245\366                \n0xa6a0:   \246\241\246\242\246\243\246\244\246\245\246\246\246\247\246\250\246\251\246\252\246\253\246\254\246\255\246\256\246\257\246\260\246\261\246\262\246\263\246\264\246\265\246\266\246\267\246\270            \n0xa6c0:   \246\301\246\302\246\303\246\304\246\305\246\306\246\307\246\310\246\311\246\312\246\313\246\314\246\315\246\316\246\317\246\320\246\321\246\322\246\323\246\324\246\325\246\326\246\327\246\330            \n0xa6e0:                                                               \n0xa7a0:   \247\241\247\242\247\243\247\244\247\245\247\246\247\247\247\250\247\251\247\252\247\253\247\254\247\255\247\256\247\257\247\260\247\261\247\262\247\263\247\264\247\265\247\266\247\267\247\270\247\271\247\272\247\273\247\274\247\275\247\276\n0xa7c0: \247\300\247\301                              \247\321\247\322\247\323\247\324\247\325\247\326\247\327\247\330\247\331\247\332\247\333\247\334\247\335\247\336\n0xa7e0: \247\340\247\341\247\342\247\343\247\344\247\345\247\346\247\347\247\350\247\351\247\352\247\353\247\354\247\355\247\356\247\357\247\360\247\361                          \n0xa8a0:   \250\241\250\242\250\243\250\244\250\245\250\246\250\247\250\250\250\251\250\252\250\253\250\254\250\255\250\256\250\257\250\260\250\261\250\262\250\263\250\264\250\265\250\266\250\267\250\270\250\271\250\272\250\273\250\274\250\275\250\276\n0xa8c0: \250\300                                                            \n0xa8e0:                                                               \n0xa9a0:                                                               \n0xa9c0:                                                               \n0xa9e0:                                                               \n0xaaa0:                                                               \n0xaac0:                                                               \n0xaae0:                                                               \n0xaba0:                                                               \n0xabc0:                                                               \n0xabe0:                                                               \n0xaca0:                                                               \n0xacc0:                                                               \n0xace0:                                                               \n0xada0:                                                               \n0xadc0:                                                               \n0xade0:                                                               \n0xaea0:                                                               \n0xaec0:                                                               \n0xaee0:                                                               \n0xafa0:                                                               \n0xafc0:                                                               \n0xafe0:                                                               \n0xb0a0:   \260\241\260\242\260\243\260\244\260\245\260\246\260\247\260\250\260\251\260\252\260\253\260\254\260\255\260\256\260\257\260\260\260\261\260\262\260\263\260\264\260\265\260\266\260\267\260\270\260\271\260\272\260\273\260\274\260\275\260\276\n0xb0c0: \260\300\260\301\260\302\260\303\260\304\260\305\260\306\260\307\260\310\260\311\260\312\260\313\260\314\260\315\260\316\260\317\260\320\260\321\260\322\260\323\260\324\260\325\260\326\260\327\260\330\260\331\260\332\260\333\260\334\260\335\260\336\n0xb0e0: \260\340\260\341\260\342\260\343\260\344\260\345\260\346\260\347\260\350\260\351\260\352\260\353\260\354\260\355\260\356\260\357\260\360\260\361\260\362\260\363\260\364\260\365\260\366\260\367\260\370\260\371\260\372\260\373\260\374\260\375\260\376\n0xb1a0:   \261\241\261\242\261\243\261\244\261\245\261\246\261\247\261\250\261\251\261\252\261\253\261\254\261\255\261\256\261\257\261\260\261\261\261\262\261\263\261\264\261\265\261\266\261\267\261\270\261\271\261\272\261\273\261\274\261\275\261\276\n0xb1c0: \261\300\261\301\261\302\261\303\261\304\261\305\261\306\261\307\261\310\261\311\261\312\261\313\261\314\261\315\261\316\261\317\261\320\261\321\261\322\261\323\261\324\261\325\261\326\261\327\261\330\261\331\261\332\261\333\261\334\261\335\261\336\n0xb1e0: \261\340\261\341\261\342\261\343\261\344\261\345\261\346\261\347\261\350\261\351\261\352\261\353\261\354\261\355\261\356\261\357\261\360\261\361\261\362\261\363\261\364\261\365\261\366\261\367\261\370\261\371\261\372\261\373\261\374\261\375\261\376\n0xb2a0:   \262\241\262\242\262\243\262\244\262\245\262\246\262\247\262\250\262\251\262\252\262\253\262\254\262\255\262\256\262\257\262\260\262\261\262\262\262\263\262\264\262\265\262\266\262\267\262\270\262\271\262\272\262\273\262\274\262\275\262\276\n0xb2c0: \262\300\262\301\262\302\262\303\262\304\262\305\262\306\262\307\262\310\262\311\262\312\262\313\262\314\262\315\262\316\262\317\262\320\262\321\262\322\262\323\262\324\262\325\262\326\262\327\262\330\262\331\262\332\262\333\262\334\262\335\262\336\n0xb2e0: \262\340\262\341\262\342\262\343\262\344\262\345\262\346\262\347\262\350\262\351\262\352\262\353\262\354\262\355\262\356\262\357\262\360\262\361\262\362\262\363\262\364\262\365\262\366\262\367\262\370\262\371\262\372\262\373\262\374\262\375\262\376\n0xb3a0:   \263\241\263\242\263\243\263\244\263\245\263\246\263\247\263\250\263\251\263\252\263\253\263\254\263\255\263\256\263\257\263\260\263\261\263\262\263\263\263\264\263\265\263\266\263\267\263\270\263\271\263\272\263\273\263\274\263\275\263\276\n0xb3c0: \263\300\263\301\263\302\263\303\263\304\263\305\263\306\263\307\263\310\263\311\263\312\263\313\263\314\263\315\263\316\263\317\263\320\263\321\263\322\263\323\263\324\263\325\263\326\263\327\263\330\263\331\263\332\263\333\263\334\263\335\263\336\n0xb3e0: \263\340\263\341\263\342\263\343\263\344\263\345\263\346\263\347\263\350\263\351\263\352\263\353\263\354\263\355\263\356\263\357\263\360\263\361\263\362\263\363\263\364\263\365\263\366\263\367\263\370\263\371\263\372\263\373\263\374\263\375\263\376\n0xb4a0:   \264\241\264\242\264\243\264\244\264\245\264\246\264\247\264\250\264\251\264\252\264\253\264\254\264\255\264\256\264\257\264\260\264\261\264\262\264\263\264\264\264\265\264\266\264\267\264\270\264\271\264\272\264\273\264\274\264\275\264\276\n0xb4c0: \264\300\264\301\264\302\264\303\264\304\264\305\264\306\264\307\264\310\264\311\264\312\264\313\264\314\264\315\264\316\264\317\264\320\264\321\264\322\264\323\264\324\264\325\264\326\264\327\264\330\264\331\264\332\264\333\264\334\264\335\264\336\n0xb4e0: \264\340\264\341\264\342\264\343\264\344\264\345\264\346\264\347\264\350\264\351\264\352\264\353\264\354\264\355\264\356\264\357\264\360\264\361\264\362\264\363\264\364\264\365\264\366\264\367\264\370\264\371\264\372\264\373\264\374\264\375\264\376\n0xb5a0:   \265\241\265\242\265\243\265\244\265\245\265\246\265\247\265\250\265\251\265\252\265\253\265\254\265\255\265\256\265\257\265\260\265\261\265\262\265\263\265\264\265\265\265\266\265\267\265\270\265\271\265\272\265\273\265\274\265\275\265\276\n0xb5c0: \265\300\265\301\265\302\265\303\265\304\265\305\265\306\265\307\265\310\265\311\265\312\265\313\265\314\265\315\265\316\265\317\265\320\265\321\265\322\265\323\265\324\265\325\265\326\265\327\265\330\265\331\265\332\265\333\265\334\265\335\265\336\n0xb5e0: \265\340\265\341\265\342\265\343\265\344\265\345\265\346\265\347\265\350\265\351\265\352\265\353\265\354\265\355\265\356\265\357\265\360\265\361\265\362\265\363\265\364\265\365\265\366\265\367\265\370\265\371\265\372\265\373\265\374\265\375\265\376\n0xb6a0:   \266\241\266\242\266\243\266\244\266\245\266\246\266\247\266\250\266\251\266\252\266\253\266\254\266\255\266\256\266\257\266\260\266\261\266\262\266\263\266\264\266\265\266\266\266\267\266\270\266\271\266\272\266\273\266\274\266\275\266\276\n0xb6c0: \266\300\266\301\266\302\266\303\266\304\266\305\266\306\266\307\266\310\266\311\266\312\266\313\266\314\266\315\266\316\266\317\266\320\266\321\266\322\266\323\266\324\266\325\266\326\266\327\266\330\266\331\266\332\266\333\266\334\266\335\266\336\n0xb6e0: \266\340\266\341\266\342\266\343\266\344\266\345\266\346\266\347\266\350\266\351\266\352\266\353\266\354\266\355\266\356\266\357\266\360\266\361\266\362\266\363\266\364\266\365\266\366\266\367\266\370\266\371\266\372\266\373\266\374\266\375\266\376\n0xb7a0:   \267\241\267\242\267\243\267\244\267\245\267\246\267\247\267\250\267\251\267\252\267\253\267\254\267\255\267\256\267\257\267\260\267\261\267\262\267\263\267\264\267\265\267\266\267\267\267\270\267\271\267\272\267\273\267\274\267\275\267\276\n0xb7c0: \267\300\267\301\267\302\267\303\267\304\267\305\267\306\267\307\267\310\267\311\267\312\267\313\267\314\267\315\267\316\267\317\267\320\267\321\267\322\267\323\267\324\267\325\267\326\267\327\267\330\267\331\267\332\267\333\267\334\267\335\267\336\n0xb7e0: \267\340\267\341\267\342\267\343\267\344\267\345\267\346\267\347\267\350\267\351\267\352\267\353\267\354\267\355\267\356\267\357\267\360\267\361\267\362\267\363\267\364\267\365\267\366\267\367\267\370\267\371\267\372\267\373\267\374\267\375\267\376\n0xb8a0:   \270\241\270\242\270\243\270\244\270\245\270\246\270\247\270\250\270\251\270\252\270\253\270\254\270\255\270\256\270\257\270\260\270\261\270\262\270\263\270\264\270\265\270\266\270\267\270\270\270\271\270\272\270\273\270\274\270\275\270\276\n0xb8c0: \270\300\270\301\270\302\270\303\270\304\270\305\270\306\270\307\270\310\270\311\270\312\270\313\270\314\270\315\270\316\270\317\270\320\270\321\270\322\270\323\270\324\270\325\270\326\270\327\270\330\270\331\270\332\270\333\270\334\270\335\270\336\n0xb8e0: \270\340\270\341\270\342\270\343\270\344\270\345\270\346\270\347\270\350\270\351\270\352\270\353\270\354\270\355\270\356\270\357\270\360\270\361\270\362\270\363\270\364\270\365\270\366\270\367\270\370\270\371\270\372\270\373\270\374\270\375\270\376\n0xb9a0:   \271\241\271\242\271\243\271\244\271\245\271\246\271\247\271\250\271\251\271\252\271\253\271\254\271\255\271\256\271\257\271\260\271\261\271\262\271\263\271\264\271\265\271\266\271\267\271\270\271\271\271\272\271\273\271\274\271\275\271\276\n0xb9c0: \271\300\271\301\271\302\271\303\271\304\271\305\271\306\271\307\271\310\271\311\271\312\271\313\271\314\271\315\271\316\271\317\271\320\271\321\271\322\271\323\271\324\271\325\271\326\271\327\271\330\271\331\271\332\271\333\271\334\271\335\271\336\n0xb9e0: \271\340\271\341\271\342\271\343\271\344\271\345\271\346\271\347\271\350\271\351\271\352\271\353\271\354\271\355\271\356\271\357\271\360\271\361\271\362\271\363\271\364\271\365\271\366\271\367\271\370\271\371\271\372\271\373\271\374\271\375\271\376\n0xbaa0:   \272\241\272\242\272\243\272\244\272\245\272\246\272\247\272\250\272\251\272\252\272\253\272\254\272\255\272\256\272\257\272\260\272\261\272\262\272\263\272\264\272\265\272\266\272\267\272\270\272\271\272\272\272\273\272\274\272\275\272\276\n0xbac0: \272\300\272\301\272\302\272\303\272\304\272\305\272\306\272\307\272\310\272\311\272\312\272\313\272\314\272\315\272\316\272\317\272\320\272\321\272\322\272\323\272\324\272\325\272\326\272\327\272\330\272\331\272\332\272\333\272\334\272\335\272\336\n0xbae0: \272\340\272\341\272\342\272\343\272\344\272\345\272\346\272\347\272\350\272\351\272\352\272\353\272\354\272\355\272\356\272\357\272\360\272\361\272\362\272\363\272\364\272\365\272\366\272\367\272\370\272\371\272\372\272\373\272\374\272\375\272\376\n0xbba0:   \273\241\273\242\273\243\273\244\273\245\273\246\273\247\273\250\273\251\273\252\273\253\273\254\273\255\273\256\273\257\273\260\273\261\273\262\273\263\273\264\273\265\273\266\273\267\273\270\273\271\273\272\273\273\273\274\273\275\273\276\n0xbbc0: \273\300\273\301\273\302\273\303\273\304\273\305\273\306\273\307\273\310\273\311\273\312\273\313\273\314\273\315\273\316\273\317\273\320\273\321\273\322\273\323\273\324\273\325\273\326\273\327\273\330\273\331\273\332\273\333\273\334\273\335\273\336\n0xbbe0: \273\340\273\341\273\342\273\343\273\344\273\345\273\346\273\347\273\350\273\351\273\352\273\353\273\354\273\355\273\356\273\357\273\360\273\361\273\362\273\363\273\364\273\365\273\366\273\367\273\370\273\371\273\372\273\373\273\374\273\375\273\376\n0xbca0:   \274\241\274\242\274\243\274\244\274\245\274\246\274\247\274\250\274\251\274\252\274\253\274\254\274\255\274\256\274\257\274\260\274\261\274\262\274\263\274\264\274\265\274\266\274\267\274\270\274\271\274\272\274\273\274\274\274\275\274\276\n0xbcc0: \274\300\274\301\274\302\274\303\274\304\274\305\274\306\274\307\274\310\274\311\274\312\274\313\274\314\274\315\274\316\274\317\274\320\274\321\274\322\274\323\274\324\274\325\274\326\274\327\274\330\274\331\274\332\274\333\274\334\274\335\274\336\n0xbce0: \274\340\274\341\274\342\274\343\274\344\274\345\274\346\274\347\274\350\274\351\274\352\274\353\274\354\274\355\274\356\274\357\274\360\274\361\274\362\274\363\274\364\274\365\274\366\274\367\274\370\274\371\274\372\274\373\274\374\274\375\274\376\n0xbda0:   \275\241\275\242\275\243\275\244\275\245\275\246\275\247\275\250\275\251\275\252\275\253\275\254\275\255\275\256\275\257\275\260\275\261\275\262\275\263\275\264\275\265\275\266\275\267\275\270\275\271\275\272\275\273\275\274\275\275\275\276\n0xbdc0: \275\300\275\301\275\302\275\303\275\304\275\305\275\306\275\307\275\310\275\311\275\312\275\313\275\314\275\315\275\316\275\317\275\320\275\321\275\322\275\323\275\324\275\325\275\326\275\327\275\330\275\331\275\332\275\333\275\334\275\335\275\336\n0xbde0: \275\340\275\341\275\342\275\343\275\344\275\345\275\346\275\347\275\350\275\351\275\352\275\353\275\354\275\355\275\356\275\357\275\360\275\361\275\362\275\363\275\364\275\365\275\366\275\367\275\370\275\371\275\372\275\373\275\374\275\375\275\376\n0xbea0:   \276\241\276\242\276\243\276\244\276\245\276\246\276\247\276\250\276\251\276\252\276\253\276\254\276\255\276\256\276\257\276\260\276\261\276\262\276\263\276\264\276\265\276\266\276\267\276\270\276\271\276\272\276\273\276\274\276\275\276\276\n0xbec0: \276\300\276\301\276\302\276\303\276\304\276\305\276\306\276\307\276\310\276\311\276\312\276\313\276\314\276\315\276\316\276\317\276\320\276\321\276\322\276\323\276\324\276\325\276\326\276\327\276\330\276\331\276\332\276\333\276\334\276\335\276\336\n0xbee0: \276\340\276\341\276\342\276\343\276\344\276\345\276\346\276\347\276\350\276\351\276\352\276\353\276\354\276\355\276\356\276\357\276\360\276\361\276\362\276\363\276\364\276\365\276\366\276\367\276\370\276\371\276\372\276\373\276\374\276\375\276\376\n0xbfa0:   \277\241\277\242\277\243\277\244\277\245\277\246\277\247\277\250\277\251\277\252\277\253\277\254\277\255\277\256\277\257\277\260\277\261\277\262\277\263\277\264\277\265\277\266\277\267\277\270\277\271\277\272\277\273\277\274\277\275\277\276\n0xbfc0: \277\300\277\301\277\302\277\303\277\304\277\305\277\306\277\307\277\310\277\311\277\312\277\313\277\314\277\315\277\316\277\317\277\320\277\321\277\322\277\323\277\324\277\325\277\326\277\327\277\330\277\331\277\332\277\333\277\334\277\335\277\336\n0xbfe0: \277\340\277\341\277\342\277\343\277\344\277\345\277\346\277\347\277\350\277\351\277\352\277\353\277\354\277\355\277\356\277\357\277\360\277\361\277\362\277\363\277\364\277\365\277\366\277\367\277\370\277\371\277\372\277\373\277\374\277\375\277\376\n0xc0a0:   \300\241\300\242\300\243\300\244\300\245\300\246\300\247\300\250\300\251\300\252\300\253\300\254\300\255\300\256\300\257\300\260\300\261\300\262\300\263\300\264\300\265\300\266\300\267\300\270\300\271\300\272\300\273\300\274\300\275\300\276\n0xc0c0: \300\300\300\301\300\302\300\303\300\304\300\305\300\306\300\307\300\310\300\311\300\312\300\313\300\314\300\315\300\316\300\317\300\320\300\321\300\322\300\323\300\324\300\325\300\326\300\327\300\330\300\331\300\332\300\333\300\334\300\335\300\336\n0xc0e0: \300\340\300\341\300\342\300\343\300\344\300\345\300\346\300\347\300\350\300\351\300\352\300\353\300\354\300\355\300\356\300\357\300\360\300\361\300\362\300\363\300\364\300\365\300\366\300\367\300\370\300\371\300\372\300\373\300\374\300\375\300\376\n0xc1a0:   \301\241\301\242\301\243\301\244\301\245\301\246\301\247\301\250\301\251\301\252\301\253\301\254\301\255\301\256\301\257\301\260\301\261\301\262\301\263\301\264\301\265\301\266\301\267\301\270\301\271\301\272\301\273\301\274\301\275\301\276\n0xc1c0: \301\300\301\301\301\302\301\303\301\304\301\305\301\306\301\307\301\310\301\311\301\312\301\313\301\314\301\315\301\316\301\317\301\320\301\321\301\322\301\323\301\324\301\325\301\326\301\327\301\330\301\331\301\332\301\333\301\334\301\335\301\336\n0xc1e0: \301\340\301\341\301\342\301\343\301\344\301\345\301\346\301\347\301\350\301\351\301\352\301\353\301\354\301\355\301\356\301\357\301\360\301\361\301\362\301\363\301\364\301\365\301\366\301\367\301\370\301\371\301\372\301\373\301\374\301\375\301\376\n0xc2a0:   \302\241\302\242\302\243\302\244\302\245\302\246\302\247\302\250\302\251\302\252\302\253\302\254\302\255\302\256\302\257\302\260\302\261\302\262\302\263\302\264\302\265\302\266\302\267\302\270\302\271\302\272\302\273\302\274\302\275\302\276\n0xc2c0: \302\300\302\301\302\302\302\303\302\304\302\305\302\306\302\307\302\310\302\311\302\312\302\313\302\314\302\315\302\316\302\317\302\320\302\321\302\322\302\323\302\324\302\325\302\326\302\327\302\330\302\331\302\332\302\333\302\334\302\335\302\336\n0xc2e0: \302\340\302\341\302\342\302\343\302\344\302\345\302\346\302\347\302\350\302\351\302\352\302\353\302\354\302\355\302\356\302\357\302\360\302\361\302\362\302\363\302\364\302\365\302\366\302\367\302\370\302\371\302\372\302\373\302\374\302\375\302\376\n0xc3a0:   \303\241\303\242\303\243\303\244\303\245\303\246\303\247\303\250\303\251\303\252\303\253\303\254\303\255\303\256\303\257\303\260\303\261\303\262\303\263\303\264\303\265\303\266\303\267\303\270\303\271\303\272\303\273\303\274\303\275\303\276\n0xc3c0: \303\300\303\301\303\302\303\303\303\304\303\305\303\306\303\307\303\310\303\311\303\312\303\313\303\314\303\315\303\316\303\317\303\320\303\321\303\322\303\323\303\324\303\325\303\326\303\327\303\330\303\331\303\332\303\333\303\334\303\335\303\336\n0xc3e0: \303\340\303\341\303\342\303\343\303\344\303\345\303\346\303\347\303\350\303\351\303\352\303\353\303\354\303\355\303\356\303\357\303\360\303\361\303\362\303\363\303\364\303\365\303\366\303\367\303\370\303\371\303\372\303\373\303\374\303\375\303\376\n0xc4a0:   \304\241\304\242\304\243\304\244\304\245\304\246\304\247\304\250\304\251\304\252\304\253\304\254\304\255\304\256\304\257\304\260\304\261\304\262\304\263\304\264\304\265\304\266\304\267\304\270\304\271\304\272\304\273\304\274\304\275\304\276\n0xc4c0: \304\300\304\301\304\302\304\303\304\304\304\305\304\306\304\307\304\310\304\311\304\312\304\313\304\314\304\315\304\316\304\317\304\320\304\321\304\322\304\323\304\324\304\325\304\326\304\327\304\330\304\331\304\332\304\333\304\334\304\335\304\336\n0xc4e0: \304\340\304\341\304\342\304\343\304\344\304\345\304\346\304\347\304\350\304\351\304\352\304\353\304\354\304\355\304\356\304\357\304\360\304\361\304\362\304\363\304\364\304\365\304\366\304\367\304\370\304\371\304\372\304\373\304\374\304\375\304\376\n0xc5a0:   \305\241\305\242\305\243\305\244\305\245\305\246\305\247\305\250\305\251\305\252\305\253\305\254\305\255\305\256\305\257\305\260\305\261\305\262\305\263\305\264\305\265\305\266\305\267\305\270\305\271\305\272\305\273\305\274\305\275\305\276\n0xc5c0: \305\300\305\301\305\302\305\303\305\304\305\305\305\306\305\307\305\310\305\311\305\312\305\313\305\314\305\315\305\316\305\317\305\320\305\321\305\322\305\323\305\324\305\325\305\326\305\327\305\330\305\331\305\332\305\333\305\334\305\335\305\336\n0xc5e0: \305\340\305\341\305\342\305\343\305\344\305\345\305\346\305\347\305\350\305\351\305\352\305\353\305\354\305\355\305\356\305\357\305\360\305\361\305\362\305\363\305\364\305\365\305\366\305\367\305\370\305\371\305\372\305\373\305\374\305\375\305\376\n0xc6a0:   \306\241\306\242\306\243\306\244\306\245\306\246\306\247\306\250\306\251\306\252\306\253\306\254\306\255\306\256\306\257\306\260\306\261\306\262\306\263\306\264\306\265\306\266\306\267\306\270\306\271\306\272\306\273\306\274\306\275\306\276\n0xc6c0: \306\300\306\301\306\302\306\303\306\304\306\305\306\306\306\307\306\310\306\311\306\312\306\313\306\314\306\315\306\316\306\317\306\320\306\321\306\322\306\323\306\324\306\325\306\326\306\327\306\330\306\331\306\332\306\333\306\334\306\335\306\336\n0xc6e0: \306\340\306\341\306\342\306\343\306\344\306\345\306\346\306\347\306\350\306\351\306\352\306\353\306\354\306\355\306\356\306\357\306\360\306\361\306\362\306\363\306\364\306\365\306\366\306\367\306\370\306\371\306\372\306\373\306\374\306\375\306\376\n0xc7a0:   \307\241\307\242\307\243\307\244\307\245\307\246\307\247\307\250\307\251\307\252\307\253\307\254\307\255\307\256\307\257\307\260\307\261\307\262\307\263\307\264\307\265\307\266\307\267\307\270\307\271\307\272\307\273\307\274\307\275\307\276\n0xc7c0: \307\300\307\301\307\302\307\303\307\304\307\305\307\306\307\307\307\310\307\311\307\312\307\313\307\314\307\315\307\316\307\317\307\320\307\321\307\322\307\323\307\324\307\325\307\326\307\327\307\330\307\331\307\332\307\333\307\334\307\335\307\336\n0xc7e0: \307\340\307\341\307\342\307\343\307\344\307\345\307\346\307\347\307\350\307\351\307\352\307\353\307\354\307\355\307\356\307\357\307\360\307\361\307\362\307\363\307\364\307\365\307\366\307\367\307\370\307\371\307\372\307\373\307\374\307\375\307\376\n0xc8a0:   \310\241\310\242\310\243\310\244\310\245\310\246\310\247\310\250\310\251\310\252\310\253\310\254\310\255\310\256\310\257\310\260\310\261\310\262\310\263\310\264\310\265\310\266\310\267\310\270\310\271\310\272\310\273\310\274\310\275\310\276\n0xc8c0: \310\300\310\301\310\302\310\303\310\304\310\305\310\306\310\307\310\310\310\311\310\312\310\313\310\314\310\315\310\316\310\317\310\320\310\321\310\322\310\323\310\324\310\325\310\326\310\327\310\330\310\331\310\332\310\333\310\334\310\335\310\336\n0xc8e0: \310\340\310\341\310\342\310\343\310\344\310\345\310\346\310\347\310\350\310\351\310\352\310\353\310\354\310\355\310\356\310\357\310\360\310\361\310\362\310\363\310\364\310\365\310\366\310\367\310\370\310\371\310\372\310\373\310\374\310\375\310\376\n0xc9a0:   \311\241\311\242\311\243\311\244\311\245\311\246\311\247\311\250\311\251\311\252\311\253\311\254\311\255\311\256\311\257\311\260\311\261\311\262\311\263\311\264\311\265\311\266\311\267\311\270\311\271\311\272\311\273\311\274\311\275\311\276\n0xc9c0: \311\300\311\301\311\302\311\303\311\304\311\305\311\306\311\307\311\310\311\311\311\312\311\313\311\314\311\315\311\316\311\317\311\320\311\321\311\322\311\323\311\324\311\325\311\326\311\327\311\330\311\331\311\332\311\333\311\334\311\335\311\336\n0xc9e0: \311\340\311\341\311\342\311\343\311\344\311\345\311\346\311\347\311\350\311\351\311\352\311\353\311\354\311\355\311\356\311\357\311\360\311\361\311\362\311\363\311\364\311\365\311\366\311\367\311\370\311\371\311\372\311\373\311\374\311\375\311\376\n0xcaa0:   \312\241\312\242\312\243\312\244\312\245\312\246\312\247\312\250\312\251\312\252\312\253\312\254\312\255\312\256\312\257\312\260\312\261\312\262\312\263\312\264\312\265\312\266\312\267\312\270\312\271\312\272\312\273\312\274\312\275\312\276\n0xcac0: \312\300\312\301\312\302\312\303\312\304\312\305\312\306\312\307\312\310\312\311\312\312\312\313\312\314\312\315\312\316\312\317\312\320\312\321\312\322\312\323\312\324\312\325\312\326\312\327\312\330\312\331\312\332\312\333\312\334\312\335\312\336\n0xcae0: \312\340\312\341\312\342\312\343\312\344\312\345\312\346\312\347\312\350\312\351\312\352\312\353\312\354\312\355\312\356\312\357\312\360\312\361\312\362\312\363\312\364\312\365\312\366\312\367\312\370\312\371\312\372\312\373\312\374\312\375\312\376\n0xcba0:   \313\241\313\242\313\243\313\244\313\245\313\246\313\247\313\250\313\251\313\252\313\253\313\254\313\255\313\256\313\257\313\260\313\261\313\262\313\263\313\264\313\265\313\266\313\267\313\270\313\271\313\272\313\273\313\274\313\275\313\276\n0xcbc0: \313\300\313\301\313\302\313\303\313\304\313\305\313\306\313\307\313\310\313\311\313\312\313\313\313\314\313\315\313\316\313\317\313\320\313\321\313\322\313\323\313\324\313\325\313\326\313\327\313\330\313\331\313\332\313\333\313\334\313\335\313\336\n0xcbe0: \313\340\313\341\313\342\313\343\313\344\313\345\313\346\313\347\313\350\313\351\313\352\313\353\313\354\313\355\313\356\313\357\313\360\313\361\313\362\313\363\313\364\313\365\313\366\313\367\313\370\313\371\313\372\313\373\313\374\313\375\313\376\n0xcca0:   \314\241\314\242\314\243\314\244\314\245\314\246\314\247\314\250\314\251\314\252\314\253\314\254\314\255\314\256\314\257\314\260\314\261\314\262\314\263\314\264\314\265\314\266\314\267\314\270\314\271\314\272\314\273\314\274\314\275\314\276\n0xccc0: \314\300\314\301\314\302\314\303\314\304\314\305\314\306\314\307\314\310\314\311\314\312\314\313\314\314\314\315\314\316\314\317\314\320\314\321\314\322\314\323\314\324\314\325\314\326\314\327\314\330\314\331\314\332\314\333\314\334\314\335\314\336\n0xcce0: \314\340\314\341\314\342\314\343\314\344\314\345\314\346\314\347\314\350\314\351\314\352\314\353\314\354\314\355\314\356\314\357\314\360\314\361\314\362\314\363\314\364\314\365\314\366\314\367\314\370\314\371\314\372\314\373\314\374\314\375\314\376\n0xcda0:   \315\241\315\242\315\243\315\244\315\245\315\246\315\247\315\250\315\251\315\252\315\253\315\254\315\255\315\256\315\257\315\260\315\261\315\262\315\263\315\264\315\265\315\266\315\267\315\270\315\271\315\272\315\273\315\274\315\275\315\276\n0xcdc0: \315\300\315\301\315\302\315\303\315\304\315\305\315\306\315\307\315\310\315\311\315\312\315\313\315\314\315\315\315\316\315\317\315\320\315\321\315\322\315\323\315\324\315\325\315\326\315\327\315\330\315\331\315\332\315\333\315\334\315\335\315\336\n0xcde0: \315\340\315\341\315\342\315\343\315\344\315\345\315\346\315\347\315\350\315\351\315\352\315\353\315\354\315\355\315\356\315\357\315\360\315\361\315\362\315\363\315\364\315\365\315\366\315\367\315\370\315\371\315\372\315\373\315\374\315\375\315\376\n0xcea0:   \316\241\316\242\316\243\316\244\316\245\316\246\316\247\316\250\316\251\316\252\316\253\316\254\316\255\316\256\316\257\316\260\316\261\316\262\316\263\316\264\316\265\316\266\316\267\316\270\316\271\316\272\316\273\316\274\316\275\316\276\n0xcec0: \316\300\316\301\316\302\316\303\316\304\316\305\316\306\316\307\316\310\316\311\316\312\316\313\316\314\316\315\316\316\316\317\316\320\316\321\316\322\316\323\316\324\316\325\316\326\316\327\316\330\316\331\316\332\316\333\316\334\316\335\316\336\n0xcee0: \316\340\316\341\316\342\316\343\316\344\316\345\316\346\316\347\316\350\316\351\316\352\316\353\316\354\316\355\316\356\316\357\316\360\316\361\316\362\316\363\316\364\316\365\316\366\316\367\316\370\316\371\316\372\316\373\316\374\316\375\316\376\n0xcfa0:   \317\241\317\242\317\243\317\244\317\245\317\246\317\247\317\250\317\251\317\252\317\253\317\254\317\255\317\256\317\257\317\260\317\261\317\262\317\263\317\264\317\265\317\266\317\267\317\270\317\271\317\272\317\273\317\274\317\275\317\276\n0xcfc0: \317\300\317\301\317\302\317\303\317\304\317\305\317\306\317\307\317\310\317\311\317\312\317\313\317\314\317\315\317\316\317\317\317\320\317\321\317\322\317\323                      \n0xcfe0:                                                               \n0xd0a0:   \320\241\320\242\320\243\320\244\320\245\320\246\320\247\320\250\320\251\320\252\320\253\320\254\320\255\320\256\320\257\320\260\320\261\320\262\320\263\320\264\320\265\320\266\320\267\320\270\320\271\320\272\320\273\320\274\320\275\320\276\n0xd0c0: \320\300\320\301\320\302\320\303\320\304\320\305\320\306\320\307\320\310\320\311\320\312\320\313\320\314\320\315\320\316\320\317\320\320\320\321\320\322\320\323\320\324\320\325\320\326\320\327\320\330\320\331\320\332\320\333\320\334\320\335\320\336\n0xd0e0: \320\340\320\341\320\342\320\343\320\344\320\345\320\346\320\347\320\350\320\351\320\352\320\353\320\354\320\355\320\356\320\357\320\360\320\361\320\362\320\363\320\364\320\365\320\366\320\367\320\370\320\371\320\372\320\373\320\374\320\375\320\376\n0xd1a0:   \321\241\321\242\321\243\321\244\321\245\321\246\321\247\321\250\321\251\321\252\321\253\321\254\321\255\321\256\321\257\321\260\321\261\321\262\321\263\321\264\321\265\321\266\321\267\321\270\321\271\321\272\321\273\321\274\321\275\321\276\n0xd1c0: \321\300\321\301\321\302\321\303\321\304\321\305\321\306\321\307\321\310\321\311\321\312\321\313\321\314\321\315\321\316\321\317\321\320\321\321\321\322\321\323\321\324\321\325\321\326\321\327\321\330\321\331\321\332\321\333\321\334\321\335\321\336\n0xd1e0: \321\340\321\341\321\342\321\343\321\344\321\345\321\346\321\347\321\350\321\351\321\352\321\353\321\354\321\355\321\356\321\357\321\360\321\361\321\362\321\363\321\364\321\365\321\366\321\367\321\370\321\371\321\372\321\373\321\374\321\375\321\376\n0xd2a0:   \322\241\322\242\322\243\322\244\322\245\322\246\322\247\322\250\322\251\322\252\322\253\322\254\322\255\322\256\322\257\322\260\322\261\322\262\322\263\322\264\322\265\322\266\322\267\322\270\322\271\322\272\322\273\322\274\322\275\322\276\n0xd2c0: \322\300\322\301\322\302\322\303\322\304\322\305\322\306\322\307\322\310\322\311\322\312\322\313\322\314\322\315\322\316\322\317\322\320\322\321\322\322\322\323\322\324\322\325\322\326\322\327\322\330\322\331\322\332\322\333\322\334\322\335\322\336\n0xd2e0: \322\340\322\341\322\342\322\343\322\344\322\345\322\346\322\347\322\350\322\351\322\352\322\353\322\354\322\355\322\356\322\357\322\360\322\361\322\362\322\363\322\364\322\365\322\366\322\367\322\370\322\371\322\372\322\373\322\374\322\375\322\376\n0xd3a0:   \323\241\323\242\323\243\323\244\323\245\323\246\323\247\323\250\323\251\323\252\323\253\323\254\323\255\323\256\323\257\323\260\323\261\323\262\323\263\323\264\323\265\323\266\323\267\323\270\323\271\323\272\323\273\323\274\323\275\323\276\n0xd3c0: \323\300\323\301\323\302\323\303\323\304\323\305\323\306\323\307\323\310\323\311\323\312\323\313\323\314\323\315\323\316\323\317\323\320\323\321\323\322\323\323\323\324\323\325\323\326\323\327\323\330\323\331\323\332\323\333\323\334\323\335\323\336\n0xd3e0: \323\340\323\341\323\342\323\343\323\344\323\345\323\346\323\347\323\350\323\351\323\352\323\353\323\354\323\355\323\356\323\357\323\360\323\361\323\362\323\363\323\364\323\365\323\366\323\367\323\370\323\371\323\372\323\373\323\374\323\375\323\376\n0xd4a0:   \324\241\324\242\324\243\324\244\324\245\324\246\324\247\324\250\324\251\324\252\324\253\324\254\324\255\324\256\324\257\324\260\324\261\324\262\324\263\324\264\324\265\324\266\324\267\324\270\324\271\324\272\324\273\324\274\324\275\324\276\n0xd4c0: \324\300\324\301\324\302\324\303\324\304\324\305\324\306\324\307\324\310\324\311\324\312\324\313\324\314\324\315\324\316\324\317\324\320\324\321\324\322\324\323\324\324\324\325\324\326\324\327\324\330\324\331\324\332\324\333\324\334\324\335\324\336\n0xd4e0: \324\340\324\341\324\342\324\343\324\344\324\345\324\346\324\347\324\350\324\351\324\352\324\353\324\354\324\355\324\356\324\357\324\360\324\361\324\362\324\363\324\364\324\365\324\366\324\367\324\370\324\371\324\372\324\373\324\374\324\375\324\376\n0xd5a0:   \325\241\325\242\325\243\325\244\325\245\325\246\325\247\325\250\325\251\325\252\325\253\325\254\325\255\325\256\325\257\325\260\325\261\325\262\325\263\325\264\325\265\325\266\325\267\325\270\325\271\325\272\325\273\325\274\325\275\325\276\n0xd5c0: \325\300\325\301\325\302\325\303\325\304\325\305\325\306\325\307\325\310\325\311\325\312\325\313\325\314\325\315\325\316\325\317\325\320\325\321\325\322\325\323\325\324\325\325\325\326\325\327\325\330\325\331\325\332\325\333\325\334\325\335\325\336\n0xd5e0: \325\340\325\341\325\342\325\343\325\344\325\345\325\346\325\347\325\350\325\351\325\352\325\353\325\354\325\355\325\356\325\357\325\360\325\361\325\362\325\363\325\364\325\365\325\366\325\367\325\370\325\371\325\372\325\373\325\374\325\375\325\376\n0xd6a0:   \326\241\326\242\326\243\326\244\326\245\326\246\326\247\326\250\326\251\326\252\326\253\326\254\326\255\326\256\326\257\326\260\326\261\326\262\326\263\326\264\326\265\326\266\326\267\326\270\326\271\326\272\326\273\326\274\326\275\326\276\n0xd6c0: \326\300\326\301\326\302\326\303\326\304\326\305\326\306\326\307\326\310\326\311\326\312\326\313\326\314\326\315\326\316\326\317\326\320\326\321\326\322\326\323\326\324\326\325\326\326\326\327\326\330\326\331\326\332\326\333\326\334\326\335\326\336\n0xd6e0: \326\340\326\341\326\342\326\343\326\344\326\345\326\346\326\347\326\350\326\351\326\352\326\353\326\354\326\355\326\356\326\357\326\360\326\361\326\362\326\363\326\364\326\365\326\366\326\367\326\370\326\371\326\372\326\373\326\374\326\375\326\376\n0xd7a0:   \327\241\327\242\327\243\327\244\327\245\327\246\327\247\327\250\327\251\327\252\327\253\327\254\327\255\327\256\327\257\327\260\327\261\327\262\327\263\327\264\327\265\327\266\327\267\327\270\327\271\327\272\327\273\327\274\327\275\327\276\n0xd7c0: \327\300\327\301\327\302\327\303\327\304\327\305\327\306\327\307\327\310\327\311\327\312\327\313\327\314\327\315\327\316\327\317\327\320\327\321\327\322\327\323\327\324\327\325\327\326\327\327\327\330\327\331\327\332\327\333\327\334\327\335\327\336\n0xd7e0: \327\340\327\341\327\342\327\343\327\344\327\345\327\346\327\347\327\350\327\351\327\352\327\353\327\354\327\355\327\356\327\357\327\360\327\361\327\362\327\363\327\364\327\365\327\366\327\367\327\370\327\371\327\372\327\373\327\374\327\375\327\376\n0xd8a0:   \330\241\330\242\330\243\330\244\330\245\330\246\330\247\330\250\330\251\330\252\330\253\330\254\330\255\330\256\330\257\330\260\330\261\330\262\330\263\330\264\330\265\330\266\330\267\330\270\330\271\330\272\330\273\330\274\330\275\330\276\n0xd8c0: \330\300\330\301\330\302\330\303\330\304\330\305\330\306\330\307\330\310\330\311\330\312\330\313\330\314\330\315\330\316\330\317\330\320\330\321\330\322\330\323\330\324\330\325\330\326\330\327\330\330\330\331\330\332\330\333\330\334\330\335\330\336\n0xd8e0: \330\340\330\341\330\342\330\343\330\344\330\345\330\346\330\347\330\350\330\351\330\352\330\353\330\354\330\355\330\356\330\357\330\360\330\361\330\362\330\363\330\364\330\365\330\366\330\367\330\370\330\371\330\372\330\373\330\374\330\375\330\376\n0xd9a0:   \331\241\331\242\331\243\331\244\331\245\331\246\331\247\331\250\331\251\331\252\331\253\331\254\331\255\331\256\331\257\331\260\331\261\331\262\331\263\331\264\331\265\331\266\331\267\331\270\331\271\331\272\331\273\331\274\331\275\331\276\n0xd9c0: \331\300\331\301\331\302\331\303\331\304\331\305\331\306\331\307\331\310\331\311\331\312\331\313\331\314\331\315\331\316\331\317\331\320\331\321\331\322\331\323\331\324\331\325\331\326\331\327\331\330\331\331\331\332\331\333\331\334\331\335\331\336\n0xd9e0: \331\340\331\341\331\342\331\343\331\344\331\345\331\346\331\347\331\350\331\351\331\352\331\353\331\354\331\355\331\356\331\357\331\360\331\361\331\362\331\363\331\364\331\365\331\366\331\367\331\370\331\371\331\372\331\373\331\374\331\375\331\376\n0xdaa0:   \332\241\332\242\332\243\332\244\332\245\332\246\332\247\332\250\332\251\332\252\332\253\332\254\332\255\332\256\332\257\332\260\332\261\332\262\332\263\332\264\332\265\332\266\332\267\332\270\332\271\332\272\332\273\332\274\332\275\332\276\n0xdac0: \332\300\332\301\332\302\332\303\332\304\332\305\332\306\332\307\332\310\332\311\332\312\332\313\332\314\332\315\332\316\332\317\332\320\332\321\332\322\332\323\332\324\332\325\332\326\332\327\332\330\332\331\332\332\332\333\332\334\332\335\332\336\n0xdae0: \332\340\332\341\332\342\332\343\332\344\332\345\332\346\332\347\332\350\332\351\332\352\332\353\332\354\332\355\332\356\332\357\332\360\332\361\332\362\332\363\332\364\332\365\332\366\332\367\332\370\332\371\332\372\332\373\332\374\332\375\332\376\n0xdba0:   \333\241\333\242\333\243\333\244\333\245\333\246\333\247\333\250\333\251\333\252\333\253\333\254\333\255\333\256\333\257\333\260\333\261\333\262\333\263\333\264\333\265\333\266\333\267\333\270\333\271\333\272\333\273\333\274\333\275\333\276\n0xdbc0: \333\300\333\301\333\302\333\303\333\304\333\305\333\306\333\307\333\310\333\311\333\312\333\313\333\314\333\315\333\316\333\317\333\320\333\321\333\322\333\323\333\324\333\325\333\326\333\327\333\330\333\331\333\332\333\333\333\334\333\335\333\336\n0xdbe0: \333\340\333\341\333\342\333\343\333\344\333\345\333\346\333\347\333\350\333\351\333\352\333\353\333\354\333\355\333\356\333\357\333\360\333\361\333\362\333\363\333\364\333\365\333\366\333\367\333\370\333\371\333\372\333\373\333\374\333\375\333\376\n0xdca0:   \334\241\334\242\334\243\334\244\334\245\334\246\334\247\334\250\334\251\334\252\334\253\334\254\334\255\334\256\334\257\334\260\334\261\334\262\334\263\334\264\334\265\334\266\334\267\334\270\334\271\334\272\334\273\334\274\334\275\334\276\n0xdcc0: \334\300\334\301\334\302\334\303\334\304\334\305\334\306\334\307\334\310\334\311\334\312\334\313\334\314\334\315\334\316\334\317\334\320\334\321\334\322\334\323\334\324\334\325\334\326\334\327\334\330\334\331\334\332\334\333\334\334\334\335\334\336\n0xdce0: \334\340\334\341\334\342\334\343\334\344\334\345\334\346\334\347\334\350\334\351\334\352\334\353\334\354\334\355\334\356\334\357\334\360\334\361\334\362\334\363\334\364\334\365\334\366\334\367\334\370\334\371\334\372\334\373\334\374\334\375\334\376\n0xdda0:   \335\241\335\242\335\243\335\244\335\245\335\246\335\247\335\250\335\251\335\252\335\253\335\254\335\255\335\256\335\257\335\260\335\261\335\262\335\263\335\264\335\265\335\266\335\267\335\270\335\271\335\272\335\273\335\274\335\275\335\276\n0xddc0: \335\300\335\301\335\302\335\303\335\304\335\305\335\306\335\307\335\310\335\311\335\312\335\313\335\314\335\315\335\316\335\317\335\320\335\321\335\322\335\323\335\324\335\325\335\326\335\327\335\330\335\331\335\332\335\333\335\334\335\335\335\336\n0xdde0: \335\340\335\341\335\342\335\343\335\344\335\345\335\346\335\347\335\350\335\351\335\352\335\353\335\354\335\355\335\356\335\357\335\360\335\361\335\362\335\363\335\364\335\365\335\366\335\367\335\370\335\371\335\372\335\373\335\374\335\375\335\376\n0xdea0:   \336\241\336\242\336\243\336\244\336\245\336\246\336\247\336\250\336\251\336\252\336\253\336\254\336\255\336\256\336\257\336\260\336\261\336\262\336\263\336\264\336\265\336\266\336\267\336\270\336\271\336\272\336\273\336\274\336\275\336\276\n0xdec0: \336\300\336\301\336\302\336\303\336\304\336\305\336\306\336\307\336\310\336\311\336\312\336\313\336\314\336\315\336\316\336\317\336\320\336\321\336\322\336\323\336\324\336\325\336\326\336\327\336\330\336\331\336\332\336\333\336\334\336\335\336\336\n0xdee0: \336\340\336\341\336\342\336\343\336\344\336\345\336\346\336\347\336\350\336\351\336\352\336\353\336\354\336\355\336\356\336\357\336\360\336\361\336\362\336\363\336\364\336\365\336\366\336\367\336\370\336\371\336\372\336\373\336\374\336\375\336\376\n0xdfa0:   \337\241\337\242\337\243\337\244\337\245\337\246\337\247\337\250\337\251\337\252\337\253\337\254\337\255\337\256\337\257\337\260\337\261\337\262\337\263\337\264\337\265\337\266\337\267\337\270\337\271\337\272\337\273\337\274\337\275\337\276\n0xdfc0: \337\300\337\301\337\302\337\303\337\304\337\305\337\306\337\307\337\310\337\311\337\312\337\313\337\314\337\315\337\316\337\317\337\320\337\321\337\322\337\323\337\324\337\325\337\326\337\327\337\330\337\331\337\332\337\333\337\334\337\335\337\336\n0xdfe0: \337\340\337\341\337\342\337\343\337\344\337\345\337\346\337\347\337\350\337\351\337\352\337\353\337\354\337\355\337\356\337\357\337\360\337\361\337\362\337\363\337\364\337\365\337\366\337\367\337\370\337\371\337\372\337\373\337\374\337\375\337\376\n0xe0a0:   \340\241\340\242\340\243\340\244\340\245\340\246\340\247\340\250\340\251\340\252\340\253\340\254\340\255\340\256\340\257\340\260\340\261\340\262\340\263\340\264\340\265\340\266\340\267\340\270\340\271\340\272\340\273\340\274\340\275\340\276\n0xe0c0: \340\300\340\301\340\302\340\303\340\304\340\305\340\306\340\307\340\310\340\311\340\312\340\313\340\314\340\315\340\316\340\317\340\320\340\321\340\322\340\323\340\324\340\325\340\326\340\327\340\330\340\331\340\332\340\333\340\334\340\335\340\336\n0xe0e0: \340\340\340\341\340\342\340\343\340\344\340\345\340\346\340\347\340\350\340\351\340\352\340\353\340\354\340\355\340\356\340\357\340\360\340\361\340\362\340\363\340\364\340\365\340\366\340\367\340\370\340\371\340\372\340\373\340\374\340\375\340\376\n0xe1a0:   \341\241\341\242\341\243\341\244\341\245\341\246\341\247\341\250\341\251\341\252\341\253\341\254\341\255\341\256\341\257\341\260\341\261\341\262\341\263\341\264\341\265\341\266\341\267\341\270\341\271\341\272\341\273\341\274\341\275\341\276\n0xe1c0: \341\300\341\301\341\302\341\303\341\304\341\305\341\306\341\307\341\310\341\311\341\312\341\313\341\314\341\315\341\316\341\317\341\320\341\321\341\322\341\323\341\324\341\325\341\326\341\327\341\330\341\331\341\332\341\333\341\334\341\335\341\336\n0xe1e0: \341\340\341\341\341\342\341\343\341\344\341\345\341\346\341\347\341\350\341\351\341\352\341\353\341\354\341\355\341\356\341\357\341\360\341\361\341\362\341\363\341\364\341\365\341\366\341\367\341\370\341\371\341\372\341\373\341\374\341\375\341\376\n0xe2a0:   \342\241\342\242\342\243\342\244\342\245\342\246\342\247\342\250\342\251\342\252\342\253\342\254\342\255\342\256\342\257\342\260\342\261\342\262\342\263\342\264\342\265\342\266\342\267\342\270\342\271\342\272\342\273\342\274\342\275\342\276\n0xe2c0: \342\300\342\301\342\302\342\303\342\304\342\305\342\306\342\307\342\310\342\311\342\312\342\313\342\314\342\315\342\316\342\317\342\320\342\321\342\322\342\323\342\324\342\325\342\326\342\327\342\330\342\331\342\332\342\333\342\334\342\335\342\336\n0xe2e0: \342\340\342\341\342\342\342\343\342\344\342\345\342\346\342\347\342\350\342\351\342\352\342\353\342\354\342\355\342\356\342\357\342\360\342\361\342\362\342\363\342\364\342\365\342\366\342\367\342\370\342\371\342\372\342\373\342\374\342\375\342\376\n0xe3a0:   \343\241\343\242\343\243\343\244\343\245\343\246\343\247\343\250\343\251\343\252\343\253\343\254\343\255\343\256\343\257\343\260\343\261\343\262\343\263\343\264\343\265\343\266\343\267\343\270\343\271\343\272\343\273\343\274\343\275\343\276\n0xe3c0: \343\300\343\301\343\302\343\303\343\304\343\305\343\306\343\307\343\310\343\311\343\312\343\313\343\314\343\315\343\316\343\317\343\320\343\321\343\322\343\323\343\324\343\325\343\326\343\327\343\330\343\331\343\332\343\333\343\334\343\335\343\336\n0xe3e0: \343\340\343\341\343\342\343\343\343\344\343\345\343\346\343\347\343\350\343\351\343\352\343\353\343\354\343\355\343\356\343\357\343\360\343\361\343\362\343\363\343\364\343\365\343\366\343\367\343\370\343\371\343\372\343\373\343\374\343\375\343\376\n0xe4a0:   \344\241\344\242\344\243\344\244\344\245\344\246\344\247\344\250\344\251\344\252\344\253\344\254\344\255\344\256\344\257\344\260\344\261\344\262\344\263\344\264\344\265\344\266\344\267\344\270\344\271\344\272\344\273\344\274\344\275\344\276\n0xe4c0: \344\300\344\301\344\302\344\303\344\304\344\305\344\306\344\307\344\310\344\311\344\312\344\313\344\314\344\315\344\316\344\317\344\320\344\321\344\322\344\323\344\324\344\325\344\326\344\327\344\330\344\331\344\332\344\333\344\334\344\335\344\336\n0xe4e0: \344\340\344\341\344\342\344\343\344\344\344\345\344\346\344\347\344\350\344\351\344\352\344\353\344\354\344\355\344\356\344\357\344\360\344\361\344\362\344\363\344\364\344\365\344\366\344\367\344\370\344\371\344\372\344\373\344\374\344\375\344\376\n0xe5a0:   \345\241\345\242\345\243\345\244\345\245\345\246\345\247\345\250\345\251\345\252\345\253\345\254\345\255\345\256\345\257\345\260\345\261\345\262\345\263\345\264\345\265\345\266\345\267\345\270\345\271\345\272\345\273\345\274\345\275\345\276\n0xe5c0: \345\300\345\301\345\302\345\303\345\304\345\305\345\306\345\307\345\310\345\311\345\312\345\313\345\314\345\315\345\316\345\317\345\320\345\321\345\322\345\323\345\324\345\325\345\326\345\327\345\330\345\331\345\332\345\333\345\334\345\335\345\336\n0xe5e0: \345\340\345\341\345\342\345\343\345\344\345\345\345\346\345\347\345\350\345\351\345\352\345\353\345\354\345\355\345\356\345\357\345\360\345\361\345\362\345\363\345\364\345\365\345\366\345\367\345\370\345\371\345\372\345\373\345\374\345\375\345\376\n0xe6a0:   \346\241\346\242\346\243\346\244\346\245\346\246\346\247\346\250\346\251\346\252\346\253\346\254\346\255\346\256\346\257\346\260\346\261\346\262\346\263\346\264\346\265\346\266\346\267\346\270\346\271\346\272\346\273\346\274\346\275\346\276\n0xe6c0: \346\300\346\301\346\302\346\303\346\304\346\305\346\306\346\307\346\310\346\311\346\312\346\313\346\314\346\315\346\316\346\317\346\320\346\321\346\322\346\323\346\324\346\325\346\326\346\327\346\330\346\331\346\332\346\333\346\334\346\335\346\336\n0xe6e0: \346\340\346\341\346\342\346\343\346\344\346\345\346\346\346\347\346\350\346\351\346\352\346\353\346\354\346\355\346\356\346\357\346\360\346\361\346\362\346\363\346\364\346\365\346\366\346\367\346\370\346\371\346\372\346\373\346\374\346\375\346\376\n0xe7a0:   \347\241\347\242\347\243\347\244\347\245\347\246\347\247\347\250\347\251\347\252\347\253\347\254\347\255\347\256\347\257\347\260\347\261\347\262\347\263\347\264\347\265\347\266\347\267\347\270\347\271\347\272\347\273\347\274\347\275\347\276\n0xe7c0: \347\300\347\301\347\302\347\303\347\304\347\305\347\306\347\307\347\310\347\311\347\312\347\313\347\314\347\315\347\316\347\317\347\320\347\321\347\322\347\323\347\324\347\325\347\326\347\327\347\330\347\331\347\332\347\333\347\334\347\335\347\336\n0xe7e0: \347\340\347\341\347\342\347\343\347\344\347\345\347\346\347\347\347\350\347\351\347\352\347\353\347\354\347\355\347\356\347\357\347\360\347\361\347\362\347\363\347\364\347\365\347\366\347\367\347\370\347\371\347\372\347\373\347\374\347\375\347\376\n0xe8a0:   \350\241\350\242\350\243\350\244\350\245\350\246\350\247\350\250\350\251\350\252\350\253\350\254\350\255\350\256\350\257\350\260\350\261\350\262\350\263\350\264\350\265\350\266\350\267\350\270\350\271\350\272\350\273\350\274\350\275\350\276\n0xe8c0: \350\300\350\301\350\302\350\303\350\304\350\305\350\306\350\307\350\310\350\311\350\312\350\313\350\314\350\315\350\316\350\317\350\320\350\321\350\322\350\323\350\324\350\325\350\326\350\327\350\330\350\331\350\332\350\333\350\334\350\335\350\336\n0xe8e0: \350\340\350\341\350\342\350\343\350\344\350\345\350\346\350\347\350\350\350\351\350\352\350\353\350\354\350\355\350\356\350\357\350\360\350\361\350\362\350\363\350\364\350\365\350\366\350\367\350\370\350\371\350\372\350\373\350\374\350\375\350\376\n0xe9a0:   \351\241\351\242\351\243\351\244\351\245\351\246\351\247\351\250\351\251\351\252\351\253\351\254\351\255\351\256\351\257\351\260\351\261\351\262\351\263\351\264\351\265\351\266\351\267\351\270\351\271\351\272\351\273\351\274\351\275\351\276\n0xe9c0: \351\300\351\301\351\302\351\303\351\304\351\305\351\306\351\307\351\310\351\311\351\312\351\313\351\314\351\315\351\316\351\317\351\320\351\321\351\322\351\323\351\324\351\325\351\326\351\327\351\330\351\331\351\332\351\333\351\334\351\335\351\336\n0xe9e0: \351\340\351\341\351\342\351\343\351\344\351\345\351\346\351\347\351\350\351\351\351\352\351\353\351\354\351\355\351\356\351\357\351\360\351\361\351\362\351\363\351\364\351\365\351\366\351\367\351\370\351\371\351\372\351\373\351\374\351\375\351\376\n0xeaa0:   \352\241\352\242\352\243\352\244\352\245\352\246\352\247\352\250\352\251\352\252\352\253\352\254\352\255\352\256\352\257\352\260\352\261\352\262\352\263\352\264\352\265\352\266\352\267\352\270\352\271\352\272\352\273\352\274\352\275\352\276\n0xeac0: \352\300\352\301\352\302\352\303\352\304\352\305\352\306\352\307\352\310\352\311\352\312\352\313\352\314\352\315\352\316\352\317\352\320\352\321\352\322\352\323\352\324\352\325\352\326\352\327\352\330\352\331\352\332\352\333\352\334\352\335\352\336\n0xeae0: \352\340\352\341\352\342\352\343\352\344\352\345\352\346\352\347\352\350\352\351\352\352\352\353\352\354\352\355\352\356\352\357\352\360\352\361\352\362\352\363\352\364\352\365\352\366\352\367\352\370\352\371\352\372\352\373\352\374\352\375\352\376\n0xeba0:   \353\241\353\242\353\243\353\244\353\245\353\246\353\247\353\250\353\251\353\252\353\253\353\254\353\255\353\256\353\257\353\260\353\261\353\262\353\263\353\264\353\265\353\266\353\267\353\270\353\271\353\272\353\273\353\274\353\275\353\276\n0xebc0: \353\300\353\301\353\302\353\303\353\304\353\305\353\306\353\307\353\310\353\311\353\312\353\313\353\314\353\315\353\316\353\317\353\320\353\321\353\322\353\323\353\324\353\325\353\326\353\327\353\330\353\331\353\332\353\333\353\334\353\335\353\336\n0xebe0: \353\340\353\341\353\342\353\343\353\344\353\345\353\346\353\347\353\350\353\351\353\352\353\353\353\354\353\355\353\356\353\357\353\360\353\361\353\362\353\363\353\364\353\365\353\366\353\367\353\370\353\371\353\372\353\373\353\374\353\375\353\376\n0xeca0:   \354\241\354\242\354\243\354\244\354\245\354\246\354\247\354\250\354\251\354\252\354\253\354\254\354\255\354\256\354\257\354\260\354\261\354\262\354\263\354\264\354\265\354\266\354\267\354\270\354\271\354\272\354\273\354\274\354\275\354\276\n0xecc0: \354\300\354\301\354\302\354\303\354\304\354\305\354\306\354\307\354\310\354\311\354\312\354\313\354\314\354\315\354\316\354\317\354\320\354\321\354\322\354\323\354\324\354\325\354\326\354\327\354\330\354\331\354\332\354\333\354\334\354\335\354\336\n0xece0: \354\340\354\341\354\342\354\343\354\344\354\345\354\346\354\347\354\350\354\351\354\352\354\353\354\354\354\355\354\356\354\357\354\360\354\361\354\362\354\363\354\364\354\365\354\366\354\367\354\370\354\371\354\372\354\373\354\374\354\375\354\376\n0xeda0:   \355\241\355\242\355\243\355\244\355\245\355\246\355\247\355\250\355\251\355\252\355\253\355\254\355\255\355\256\355\257\355\260\355\261\355\262\355\263\355\264\355\265\355\266\355\267\355\270\355\271\355\272\355\273\355\274\355\275\355\276\n0xedc0: \355\300\355\301\355\302\355\303\355\304\355\305\355\306\355\307\355\310\355\311\355\312\355\313\355\314\355\315\355\316\355\317\355\320\355\321\355\322\355\323\355\324\355\325\355\326\355\327\355\330\355\331\355\332\355\333\355\334\355\335\355\336\n0xede0: \355\340\355\341\355\342\355\343\355\344\355\345\355\346\355\347\355\350\355\351\355\352\355\353\355\354\355\355\355\356\355\357\355\360\355\361\355\362\355\363\355\364\355\365\355\366\355\367\355\370\355\371\355\372\355\373\355\374\355\375\355\376\n0xeea0:   \356\241\356\242\356\243\356\244\356\245\356\246\356\247\356\250\356\251\356\252\356\253\356\254\356\255\356\256\356\257\356\260\356\261\356\262\356\263\356\264\356\265\356\266\356\267\356\270\356\271\356\272\356\273\356\274\356\275\356\276\n0xeec0: \356\300\356\301\356\302\356\303\356\304\356\305\356\306\356\307\356\310\356\311\356\312\356\313\356\314\356\315\356\316\356\317\356\320\356\321\356\322\356\323\356\324\356\325\356\326\356\327\356\330\356\331\356\332\356\333\356\334\356\335\356\336\n0xeee0: \356\340\356\341\356\342\356\343\356\344\356\345\356\346\356\347\356\350\356\351\356\352\356\353\356\354\356\355\356\356\356\357\356\360\356\361\356\362\356\363\356\364\356\365\356\366\356\367\356\370\356\371\356\372\356\373\356\374\356\375\356\376\n0xefa0:   \357\241\357\242\357\243\357\244\357\245\357\246\357\247\357\250\357\251\357\252\357\253\357\254\357\255\357\256\357\257\357\260\357\261\357\262\357\263\357\264\357\265\357\266\357\267\357\270\357\271\357\272\357\273\357\274\357\275\357\276\n0xefc0: \357\300\357\301\357\302\357\303\357\304\357\305\357\306\357\307\357\310\357\311\357\312\357\313\357\314\357\315\357\316\357\317\357\320\357\321\357\322\357\323\357\324\357\325\357\326\357\327\357\330\357\331\357\332\357\333\357\334\357\335\357\336\n0xefe0: \357\340\357\341\357\342\357\343\357\344\357\345\357\346\357\347\357\350\357\351\357\352\357\353\357\354\357\355\357\356\357\357\357\360\357\361\357\362\357\363\357\364\357\365\357\366\357\367\357\370\357\371\357\372\357\373\357\374\357\375\357\376\n0xf0a0:   \360\241\360\242\360\243\360\244\360\245\360\246\360\247\360\250\360\251\360\252\360\253\360\254\360\255\360\256\360\257\360\260\360\261\360\262\360\263\360\264\360\265\360\266\360\267\360\270\360\271\360\272\360\273\360\274\360\275\360\276\n0xf0c0: \360\300\360\301\360\302\360\303\360\304\360\305\360\306\360\307\360\310\360\311\360\312\360\313\360\314\360\315\360\316\360\317\360\320\360\321\360\322\360\323\360\324\360\325\360\326\360\327\360\330\360\331\360\332\360\333\360\334\360\335\360\336\n0xf0e0: \360\340\360\341\360\342\360\343\360\344\360\345\360\346\360\347\360\350\360\351\360\352\360\353\360\354\360\355\360\356\360\357\360\360\360\361\360\362\360\363\360\364\360\365\360\366\360\367\360\370\360\371\360\372\360\373\360\374\360\375\360\376\n0xf1a0:   \361\241\361\242\361\243\361\244\361\245\361\246\361\247\361\250\361\251\361\252\361\253\361\254\361\255\361\256\361\257\361\260\361\261\361\262\361\263\361\264\361\265\361\266\361\267\361\270\361\271\361\272\361\273\361\274\361\275\361\276\n0xf1c0: \361\300\361\301\361\302\361\303\361\304\361\305\361\306\361\307\361\310\361\311\361\312\361\313\361\314\361\315\361\316\361\317\361\320\361\321\361\322\361\323\361\324\361\325\361\326\361\327\361\330\361\331\361\332\361\333\361\334\361\335\361\336\n0xf1e0: \361\340\361\341\361\342\361\343\361\344\361\345\361\346\361\347\361\350\361\351\361\352\361\353\361\354\361\355\361\356\361\357\361\360\361\361\361\362\361\363\361\364\361\365\361\366\361\367\361\370\361\371\361\372\361\373\361\374\361\375\361\376\n0xf2a0:   \362\241\362\242\362\243\362\244\362\245\362\246\362\247\362\250\362\251\362\252\362\253\362\254\362\255\362\256\362\257\362\260\362\261\362\262\362\263\362\264\362\265\362\266\362\267\362\270\362\271\362\272\362\273\362\274\362\275\362\276\n0xf2c0: \362\300\362\301\362\302\362\303\362\304\362\305\362\306\362\307\362\310\362\311\362\312\362\313\362\314\362\315\362\316\362\317\362\320\362\321\362\322\362\323\362\324\362\325\362\326\362\327\362\330\362\331\362\332\362\333\362\334\362\335\362\336\n0xf2e0: \362\340\362\341\362\342\362\343\362\344\362\345\362\346\362\347\362\350\362\351\362\352\362\353\362\354\362\355\362\356\362\357\362\360\362\361\362\362\362\363\362\364\362\365\362\366\362\367\362\370\362\371\362\372\362\373\362\374\362\375\362\376\n0xf3a0:   \363\241\363\242\363\243\363\244\363\245\363\246\363\247\363\250\363\251\363\252\363\253\363\254\363\255\363\256\363\257\363\260\363\261\363\262\363\263\363\264\363\265\363\266\363\267\363\270\363\271\363\272\363\273\363\274\363\275\363\276\n0xf3c0: \363\300\363\301\363\302\363\303\363\304\363\305\363\306\363\307\363\310\363\311\363\312\363\313\363\314\363\315\363\316\363\317\363\320\363\321\363\322\363\323\363\324\363\325\363\326\363\327\363\330\363\331\363\332\363\333\363\334\363\335\363\336\n0xf3e0: \363\340\363\341\363\342\363\343\363\344\363\345\363\346\363\347\363\350\363\351\363\352\363\353\363\354\363\355\363\356\363\357\363\360\363\361\363\362\363\363\363\364\363\365\363\366\363\367\363\370\363\371\363\372\363\373\363\374\363\375\363\376\n0xf4a0:   \364\241\364\242\364\243\364\244\364\245\364\246                                                \n0xf4c0:                                                               \n0xf4e0:                                                               \n0xf5a0:                                                               \n0xf5c0:                                                               \n0xf5e0:                                                               \n0xf6a0:                                                               \n0xf6c0:                                                               \n0xf6e0:                                                               \n0xf7a0:                                                               \n0xf7c0:                                                               \n0xf7e0:                                                               \n0xf8a0:                                                               \n0xf8c0:                                                               \n0xf8e0:                                                               \n0xf9a0:                                                               \n0xf9c0:                                                               \n0xf9e0:                                                               \n0xfaa0:                                                               \n0xfac0:                                                               \n0xfae0:                                                               \n0xfba0:                                                               \n0xfbc0:                                                               \n0xfbe0:                                                               \n0xfca0:                                                               \n0xfcc0:                                                               \n0xfce0:                                                               \n0xfda0:                                                               \n0xfdc0:                                                               \n0xfde0:                                                               \n0xfea0:                                                               \n0xfec0:                                                               \n0xfee0:                                                               \n0xffa0:                                                               \n0xffc0:                                                               \n0xffe0:                                                               \n",
 "bf3993877a45ac7091cfc81cfd4a4d43" => "# Encoding file: iso8859-13, single-byte\nS\n003F 0 1\n00\n0000000100020003000400050006000700080009000A000B000C000D000E000F\n0010001100120013001400150016001700180019001A001B001C001D001E001F\n0020002100220023002400250026002700280029002A002B002C002D002E002F\n0030003100320033003400350036003700380039003A003B003C003D003E003F\n0040004100420043004400450046004700480049004A004B004C004D004E004F\n0050005100520053005400550056005700580059005A005B005C005D005E005F\n0060006100620063006400650066006700680069006A006B006C006D006E006F\n0070007100720073007400750076007700780079007A007B007C007D007E007F\n0080008100820083008400850086008700880089008A008B008C008D008E008F\n0090009100920093009400950096009700980099009A009B009C009D009E009F\n00A0201D00A200A300A4201E00A600A700D800A9015600AB00AC00AD00AE00C6\n00B000B100B200B3201C00B500B600B700F800B9015700BB00BC00BD00BE00E6\n0104012E0100010600C400C501180112010C00C90179011601220136012A013B\n01600143014500D3014C00D500D600D701720141015A016A00DC017B017D00DF\n0105012F0101010700E400E501190113010D00E9017A011701230137012B013C\n01610144014600F3014D00F500F600F701730142015B016B00FC017C017E2019\n",
 "cf55072c234b9ed7257f8372b0fda6a6" => "#!./perl\n\nBEGIN {\n    chdir 't' if -d 't';\n    \@INC = '../lib';\n}\n\nprint \"1..78\\n\";\n\nmy \$test = 1;\n\n# This table is based on Markus Kuhn's UTF-8 Decode Stress Tester,\n# http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt,\n# version dated 2000-09-02. \n\n# Note the \\0 instead of a raw zero byte in 2.1.1: for example\n# GNU patch v2.1 has \"issues\" with raw zero bytes.\n\nmy \@MK = split(/\\n/, <<__EOMK__);\n1\tCorrect UTF-8\n1.1.1 y \"\316\272\341\275\271\317\203\316\274\316\265\"\t-\t\t11\tce:ba:e1:bd:b9:cf:83:ce:bc:ce:b5\t5\n2\tBoundary conditions \n2.1\tFirst possible sequence of certain length\n2.1.1 y \"\\0\"\t\t\t0\t\t1\t00\t1\n2.1.2 y \"\302\200\"\t\t\t80\t\t2\tc2:80\t1\n2.1.3 y \"\340\240\200\"\t\t800\t\t3\te0:a0:80\t1\n2.1.4 y \"\360\220\200\200\"\t\t10000\t\t4\tf0:90:80:80\t1\n2.1.5 y \"\370\210\200\200\200\"\t200000\t\t5\tf8:88:80:80:80\t1\n2.1.6 y \"\374\204\200\200\200\200\"\t4000000\t\t6\tfc:84:80:80:80:80\t1\n2.2\tLast possible sequence of certain length\n2.2.1 y \"\177\"\t\t\t7f\t\t1\t7f\t1\n2.2.2 y \"\337\277\"\t\t\t7ff\t\t2\tdf:bf\t1\n# The ffff is illegal unless UTF8_ALLOW_FFFF\n2.2.3 n \"\357\277\277\"\t\t\tffff\t\t3\tef:bf:bf\t1\tcharacter 0xffff\n2.2.4 y \"\367\277\277\277\"\t\t\t1fffff\t\t4\tf7:bf:bf:bf\t1\n2.2.5 y \"\373\277\277\277\277\"\t\t\t3ffffff\t\t5\tfb:bf:bf:bf:bf\t1\n2.2.6 y \"\375\277\277\277\277\277\"\t\t7fffffff\t6\tfd:bf:bf:bf:bf:bf\t1\n2.3\tOther boundary conditions\n2.3.1 y \"\355\237\277\"\t\td7ff\t\t3\ted:9f:bf\t1\n2.3.2 y \"\356\200\200\"\t\te000\t\t3\tee:80:80\t1\n2.3.3 y \"\357\277\275\"\t\t\tfffd\t\t3\tef:bf:bd\t1\n2.3.4 y \"\364\217\277\277\"\t\t10ffff\t\t4\tf4:8f:bf:bf\t1\n2.3.5 y \"\364\220\200\200\"\t\t110000\t\t4\tf4:90:80:80\t1\n3\tMalformed sequences\n3.1\tUnexpected continuation bytes\n3.1.1 n \"\200\"\t\t\t-\t\t1\t80\t-\tunexpected continuation byte 0x80\n3.1.2 n \"\277\"\t\t\t-\t\t1\tbf\t-\tunexpected continuation byte 0xbf\n3.1.3 n \"\200\277\"\t\t\t-\t\t2\t80:bf\t-\tunexpected continuation byte 0x80\n3.1.4 n \"\200\277\200\"\t\t-\t\t3\t80:bf:80\t-\tunexpected continuation byte 0x80\n3.1.5 n \"\200\277\200\277\"\t\t-\t\t4\t80:bf:80:bf\t-\tunexpected continuation byte 0x80\n3.1.6 n \"\200\277\200\277\200\"\t-\t\t5\t80:bf:80:bf:80\t-\tunexpected continuation byte 0x80\n3.1.7 n \"\200\277\200\277\200\277\"\t-\t\t6\t80:bf:80:bf:80:bf\t-\tunexpected continuation byte 0x80\n3.1.8 n \"\200\277\200\277\200\277\200\"\t-\t\t7\t80:bf:80:bf:80:bf:80\t-\tunexpected continuation byte 0x80\n3.1.9 n \"\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\"\t\t\t\t-\t64\t80:81:82:83:84:85:86:87:88:89:8a:8b:8c:8d:8e:8f:90:91:92:93:94:95:96:97:98:99:9a:9b:9c:9d:9e:9f:a0:a1:a2:a3:a4:a5:a6:a7:a8:a9:aa:ab:ac:ad:ae:af:b0:b1:b2:b3:b4:b5:b6:b7:b8:b9:ba:bb:bc:bd:be:bf\t-\tunexpected continuation byte 0x80\n3.2\tLonely start characters\n3.2.1 n \"\300 \301 \302 \303 \304 \305 \306 \307 \310 \311 \312 \313 \314 \315 \316 \317 \320 \321 \322 \323 \324 \325 \326 \327 \330 \331 \332 \333 \334 \335 \336 \337 \"\t-\t64 \tc0:20:c1:20:c2:20:c3:20:c4:20:c5:20:c6:20:c7:20:c8:20:c9:20:ca:20:cb:20:cc:20:cd:20:ce:20:cf:20:d0:20:d1:20:d2:20:d3:20:d4:20:d5:20:d6:20:d7:20:d8:20:d9:20:da:20:db:20:dc:20:dd:20:de:20:df:20\t-\tunexpected non-continuation byte 0x20 after byte 0xc0\n3.2.2 n \"\340 \341 \342 \343 \344 \345 \346 \347 \350 \351 \352 \353 \354 \355 \356 \357 \"\t-\t32\te0:20:e1:20:e2:20:e3:20:e4:20:e5:20:e6:20:e7:20:e8:20:e9:20:ea:20:eb:20:ec:20:ed:20:ee:20:ef:20\t-\tunexpected non-continuation byte 0x20 after byte 0xe0\n3.2.3 n \"\360 \361 \362 \363 \364 \365 \366 \367 \"\t-\t16\tf0:20:f1:20:f2:20:f3:20:f4:20:f5:20:f6:20:f7:20\t-\tunexpected non-continuation byte 0x20 after byte 0xf0\n3.2.4 n \"\370 \371 \372 \373 \"\t\t-\t8\tf8:20:f9:20:fa:20:fb:20\t-\tunexpected non-continuation byte 0x20 after byte 0xf8\n3.2.5 n \"\374 \375 \"\t\t\t-\t4\tfc:20:fd:20\t-\tunexpected non-continuation byte 0x20 after byte 0xfc\n3.3\tSequences with last continuation byte missing\n3.3.1 n \"\300\"\t\t\t-\t1\tc0\t-\t1 byte, need 2\n3.3.2 n \"\340\200\"\t\t\t-\t2\te0:80\t-\t2 bytes, need 3\n3.3.3 n \"\360\200\200\"\t\t-\t3\tf0:80:80\t-\t3 bytes, need 4\n3.3.4 n \"\370\200\200\200\"\t\t-\t4\tf8:80:80:80\t-\t4 bytes, need 5\n3.3.5 n \"\374\200\200\200\200\"\t-\t5\tfc:80:80:80:80\t-\t5 bytes, need 6\n3.3.6 n \"\337\"\t\t\t-\t1\tdf\t-\t1 byte, need 2\n3.3.7 n \"\357\277\"\t\t\t-\t2\tef:bf\t-\t2 bytes, need 3\n3.3.8 n \"\367\277\277\"\t\t\t-\t3\tf7:bf:bf\t-\t3 bytes, need 4\n3.3.9 n \"\373\277\277\277\"\t\t\t-\t4\tfb:bf:bf:bf\t-\t4 bytes, need 5\n3.3.10 n \"\375\277\277\277\277\"\t\t-\t5\tfd:bf:bf:bf:bf\t-\t5 bytes, need 6\n3.4\tConcatenation of incomplete sequences\n3.4.1 n \"\300\340\200\360\200\200\370\200\200\200\374\200\200\200\200\337\357\277\367\277\277\373\277\277\277\375\277\277\277\277\"\t-\t30\tc0:e0:80:f0:80:80:f8:80:80:80:fc:80:80:80:80:df:ef:bf:f7:bf:bf:fb:bf:bf:bf:fd:bf:bf:bf:bf\t-\tunexpected continuation byte 0xe0\n3.5\tImpossible bytes\n3.5.1 n \"\376\"\t\t\t-\t1\tfe\t-\tbyte 0xfe\n3.5.2 n \"\377\"\t\t\t-\t1\tff\t-\tbyte 0xff\n3.5.3 n \"\376\376\377\377\"\t\t\t-\t4\tfe:fe:ff:ff\t-\tbyte 0xfe\n4\tOverlong sequences\n4.1\tExamples of an overlong ASCII character\n4.1.1 n \"\300\257\"\t\t\t-\t2\tc0:af\t-\t2 bytes, need 1\n4.1.2 n \"\340\200\257\"\t\t-\t3\te0:80:af\t-\t3 bytes, need 1\n4.1.3 n \"\360\200\200\257\"\t\t-\t4\tf0:80:80:af\t-\t4 bytes, need 1\n4.1.4 n \"\370\200\200\200\257\"\t-\t5\tf8:80:80:80:af\t-\t5 bytes, need 1\n4.1.5 n \"\374\200\200\200\200\257\"\t-\t6\tfc:80:80:80:80:af\t-\t6 bytes, need 1\n4.2\tMaximum overlong sequences\n4.2.1 n \"\301\277\"\t\t\t-\t2\tc1:bf\t-\t2 bytes, need 1\n4.2.2 n \"\340\237\277\"\t\t-\t3\te0:9f:bf\t-\t3 bytes, need 2\n4.2.3 n \"\360\217\277\277\"\t\t-\t4\tf0:8f:bf:bf\t-\t4 bytes, need 3\n4.2.4 n \"\370\207\277\277\277\"\t\t-\t5\tf8:87:bf:bf:bf\t-\t5 bytes, need 4\n4.2.5 n \"\374\203\277\277\277\277\"\t\t-\t6\tfc:83:bf:bf:bf:bf\t-\t6 bytes, need 5\n4.3\tOverlong representation of the NUL character\n4.3.1 n \"\300\200\"\t\t\t-\t2\tc0:80\t-\t2 bytes, need 1\n4.3.2 n \"\340\200\200\"\t\t-\t3\te0:80:80\t-\t3 bytes, need 1\n4.3.3 n \"\360\200\200\200\"\t\t-\t4\tf0:80:80:80\t-\t4 bytes, need 1\n4.3.4 n \"\370\200\200\200\200\"\t-\t5\tf8:80:80:80:80\t-\t5 bytes, need 1\n4.3.5 n \"\374\200\200\200\200\200\"\t-\t6\tfc:80:80:80:80:80\t-\t6 bytes, need 1\n5\tIllegal code positions\n5.1\tSingle UTF-16 surrogates\n5.1.1 n \"\355\240\200\"\t\t-\t3\ted:a0:80\t-\tUTF-16 surrogate 0xd800\n5.1.2 n \"\355\255\277\"\t\t\t-\t3\ted:ad:bf\t-\tUTF-16 surrogate 0xdb7f\n5.1.3 n \"\355\256\200\"\t\t-\t3\ted:ae:80\t-\tUTF-16 surrogate 0xdb80\n5.1.4 n \"\355\257\277\"\t\t\t-\t3\ted:af:bf\t-\tUTF-16 surrogate 0xdbff\n5.1.5 n \"\355\260\200\"\t\t-\t3\ted:b0:80\t-\tUTF-16 surrogate 0xdc00\n5.1.6 n \"\355\276\200\"\t\t-\t3\ted:be:80\t-\tUTF-16 surrogate 0xdf80\n5.1.7 n \"\355\277\277\"\t\t\t-\t3\ted:bf:bf\t-\tUTF-16 surrogate 0xdfff\n5.2\tPaired UTF-16 surrogates\n5.2.1 n \"\355\240\200\355\260\200\"\t\t-\t6\ted:a0:80:ed:b0:80\t-\tUTF-16 surrogate 0xd800\n5.2.2 n \"\355\240\200\355\277\277\"\t\t-\t6\ted:a0:80:ed:bf:bf\t-\tUTF-16 surrogate 0xd800\n5.2.3 n \"\355\255\277\355\260\200\"\t\t-\t6\ted:ad:bf:ed:b0:80\t-\tUTF-16 surrogate 0xdb7f\n5.2.4 n \"\355\255\277\355\277\277\"\t\t-\t6\ted:ad:bf:ed:bf:bf\t-\tUTF-16 surrogate 0xdb7f\n5.2.5 n \"\355\256\200\355\260\200\"\t\t-\t6\ted:ae:80:ed:b0:80\t-\tUTF-16 surrogate 0xdb80\n5.2.6 n \"\355\256\200\355\277\277\"\t\t-\t6\ted:ae:80:ed:bf:bf\t-\tUTF-16 surrogate 0xdb80\n5.2.7 n \"\355\257\277\355\260\200\"\t\t-\t6\ted:af:bf:ed:b0:80\t-\tUTF-16 surrogate 0xdbff\n5.2.8 n \"\355\257\277\355\277\277\"\t\t-\t6\ted:af:bf:ed:bf:bf\t-\tUTF-16 surrogate 0xdbff\n5.3\tOther illegal code positions\n5.3.1 n \"\357\277\276\"\t\t\t-\t3\tef:bf:be\t-\tbyte order mark 0xfffe\n# The ffff is illegal unless UTF8_ALLOW_FFFF\n5.3.2 n \"\357\277\277\"\t\t\t-\t3\tef:bf:bf\t-\tcharacter 0xffff\n__EOMK__\n\n# 104..181\n{\n    my \$WARNCNT;\n    my \$id;\n\n    local \$SIG{__WARN__} =\n\tsub {\n\t    # print \"# \$id: \@_\";\n\t    \$WARNCNT++;\n\t    \$WARNMSG = \"\@_\";\n\t};\n\n    sub moan {\n\tprint \"\$id: \@_\";\n    }\n    \n    sub test_unpack_U {\n\t\$WARNCNT = 0;\n\t\$WARNMSG = \"\";\n\tunpack('U*', \$_[0]);\n    }\n\n    for (\@MK) {\n\tif (/^(?:\\d+(?:\\.\\d+)?)\\s/ || /^#/) {\n\t    # print \"# \$_\\n\";\n\t} elsif (/^(\\d+\\.\\d+\\.\\d+[bu]?)\\s+([yn])\\s+\"(.+)\"\\s+([0-9a-f]{1,8}|-)\\s+(\\d+)\\s+([0-9a-f]{2}(?::[0-9a-f]{2})*)(?:\\s+((?:\\d+|-)(?:\\s+(.+))?))?\$/) {\n\t    \$id = \$1;\n\t    my (\$okay, \$bytes, \$Unicode, \$byteslen, \$hex, \$charslen, \$error) =\n\t\t(\$2, \$3, \$4, \$5, \$6, \$7, \$8);\n\t    my \@hex = split(/:/, \$hex);\n\t    unless (\@hex == \$byteslen) {\n\t\tmy \$nhex = \@hex;\n\t\tmoan \"amount of hex (\$nhex) not equal to byteslen (\$byteslen)\\n\";\n\t    }\n\t    {\n\t\tuse bytes;\n\t\tmy \$bytesbyteslen = length(\$bytes);\n\t\tunless (\$bytesbyteslen == \$byteslen) {\n\t\t    moan \"bytes length() (\$bytesbyteslen) not equal to \$byteslen\\n\";\n\t\t}\n\t    }\n\t    if (\$okay eq 'y') {\n\t\ttest_unpack_U(\$bytes);\n\t\tif (\$WARNCNT) {\n\t\t    moan \"unpack('U*') false negative\\n\";\n\t\t    print \"not \";\n\t\t}\n\t    } elsif (\$okay eq 'n') {\n\t\ttest_unpack_U(\$bytes);\n\t\tif (\$WARNCNT == 0 || (\$error ne '' && \$WARNMSG !~ /\$error/)) {\n\t\t    moan \"unpack('U*') false positive\\n\";\n\t\t    print \"not \";\n\t\t}\n\t    }\n\t    print \"ok \$test\\n\";\n\t    \$test++;\n \t} else {\n\t    moan \"unknown format\\n\";\n\t}\n    }\n}\n",
 "db3197537f8b27c3115112c72955c6d9" => "BEGIN {\n        chdir 't' if -d 't';\n        \@INC = '../lib';\n}\n\nuse MIME::QuotedPrint;\n\n\$x70 = \"x\" x 70;\n\n\@tests =\n  (\n   # plain ascii should not be encoded\n   [\"quoted printable\"  =>\n    \"quoted printable\"],\n\n   # 8-bit chars should be encoded\n   [\"v\345re kj\346re norske tegn b\370r \346res\" =>\n    \"v=E5re kj=E6re norske tegn b=F8r =E6res\"],\n\n   # trailing space should be encoded\n   [\"  \" => \"=20=20\"],\n   [\"\\tt\\t\" => \"\\tt=09\"],\n   [\"test  \\ntest\\n\\t \\t \\n\" => \"test=20=20\\ntest\\n=09=20=09=20\\n\"],\n\n   # \"=\" is special an should be decoded\n   [\"=\\n\" => \"=3D\\n\"],\n   [\"\\0\\xff\" => \"=00=FF\"],\n\n   # Very long lines should be broken (not more than 76 chars\n   [\"The Quoted-Printable encoding is intended to represent data that largly consists of octets that correspond to printable characters in the ASCII character set.\" =>\n    \"The Quoted-Printable encoding is intended to represent data that largly con=\nsists of octets that correspond to printable characters in the ASCII charac=\nter set.\"\n    ],\n\n   # Long lines after short lines were broken through 2.01.\n   [\"short line\nIn America, any boy may become president and I suppose that's just one of the risks he takes. -- Adlai Stevenson\" =>\n    \"short line\nIn America, any boy may become president and I suppose that's just one of t=\nhe risks he takes. -- Adlai Stevenson\"],\n\n   # My (roderick\@argon.org) first crack at fixing that bug failed for\n   # multiple long lines.\n   [\"College football is a game which would be much more interesting if the faculty played instead of the students, and even more interesting if the\ntrustees played.  There would be a great increase in broken arms, legs, and necks, and simultaneously an appreciable diminution in the loss to humanity. -- H. L. Mencken\" =>\n    \"College football is a game which would be much more interesting if the facu=\nlty played instead of the students, and even more interesting if the\ntrustees played.  There would be a great increase in broken arms, legs, and=\n necks, and simultaneously an appreciable diminution in the loss to humanit=\ny. -- H. L. Mencken\"],\n\n   # Don't break a line that's near but not over 76 chars.\n   [\"\$x70!23\"\t\t=> \"\$x70!23\"],\n   [\"\$x70!234\"\t\t=> \"\$x70!234\"],\n   [\"\$x70!2345\"\t\t=> \"\$x70!2345\"],\n   [\"\$x70!23456\"\t=> \"\$x70!23456\"],\n   [\"\$x70!23\\n\"\t\t=> \"\$x70!23\\n\"],\n   [\"\$x70!234\\n\"\t=> \"\$x70!234\\n\"],\n   [\"\$x70!2345\\n\"\t=> \"\$x70!2345\\n\"],\n   [\"\$x70!23456\\n\"\t=> \"\$x70!23456\\n\"],\n\n   # Not allowed to break =XX escapes using soft line break\n   [\"\$x70===xxxx\" => \"\$x70=3D=\\n=3D=3Dxxxx\"],\n   [\"\$x70!===xxx\" => \"\$x70!=3D=\\n=3D=3Dxxx\"],\n   [\"\$x70!!===xx\" => \"\$x70!!=3D=\\n=3D=3Dxx\"],\n   [\"\$x70!!!===x\" => \"\$x70!!!=\\n=3D=3D=3Dx\"],\n   #                            ^\n   #                    70123456|\n   #                           max\n   #                        line width\n);\n\n\$notests = \@tests + 2;\nprint \"1..\$notests\\n\";\n\n\$testno = 0;\nfor (\@tests) {\n    \$testno++;\n    (\$plain, \$encoded) = \@\$_;\n    \$x = encode_qp(\$plain);\n    if (\$x ne \$encoded) {\n\tprint \"Encode test failed\\n\";\n\tprint \"Got:      '\$x'\\n\";\n\tprint \"Expected: '\$encoded'\\n\";\n\tprint \"not ok \$testno\\n\";\n\tnext;\n    }\n    \$x = decode_qp(\$encoded);\n    if (\$x ne \$plain) {\n\tprint \"Decode test failed\\n\";\n\tprint \"Got:      '\$x'\\n\";\n\tprint \"Expected: '\$plain'\\n\";\n\tprint \"not ok \$testno\\n\";\n\tnext;\n    }\n    print \"ok \$testno\\n\";\n}\n\n# Some extra testing for a case that was wrong until libwww-perl-5.09\nprint \"not \" unless decode_qp(\"foo  \\n\\nfoo =\\n\\nfoo=20\\n\\n\") eq\n                                \"foo\\n\\nfoo \\nfoo \\n\\n\";\n\$testno++; print \"ok \$testno\\n\";\n\n# Same test but with \"\\r\\n\" terminated lines\nprint \"not \" unless decode_qp(\"foo  \\r\\n\\r\\nfoo =\\r\\n\\r\\nfoo=20\\r\\n\\r\\n\") eq\n                                \"foo\\r\\n\\r\\nfoo \\r\\nfoo \\r\\n\\r\\n\";\n\$testno++; print \"ok \$testno\\n\";\n\n",
 "dff1fb5aebb9691da97ffa45a01341f7" => "\@echo off\nset CONFIG=\nset PATH_SEPARATOR=;\nset PATH_EXPAND=y\nsh -c 'if test \$PATH_SEPARATOR = \";\"; then exit 1; fi'\nif ERRORLEVEL 1 goto path_sep_ok\necho Error:\a\necho Make sure the environment variable PATH_SEPARATOR=; while building perl!\necho Please check your DJGPP.ENV!\ngoto end\n\n:path_sep_ok\nsh -c 'if test \$PATH_EXPAND = \"Y\" -o \$PATH_EXPAND = \"y\"; then exit 1; fi'\nif ERRORLEVEL 1 goto path_exp_ok\necho Error:\a\necho Make sure the environment variable PATH_EXPAND=Y while building perl!\necho Please check your DJGPP.ENV!\ngoto end\n\n:path_exp_ok\nsh -c '\$SHELL -c \"exit 128\"'\nif ERRORLEVEL 128 goto shell_ok\n\necho Error:\a\necho The SHELL environment variable must be set to the full path of your sh.exe!\ngoto end\n\n:shell_ok\nsh -c 'if test ! -d /tmp; then mkdir /tmp; fi'\ncp djgpp.c config.over ..\ncd ..\nmv ext/B/defsu* ext/B/defsubsh.PL\necho Running sed...\nsh djgpp/djgppsed.sh\n\necho Running Configure...\nsh Configure %1 %2 %3 %4 %5 %6 %7 %8 %9\n:end\n",
 "e33fd60f091548a70e06f37822709906" => "GIF87a^\0D\0\200\0\0~\22\231\377\377\377,\0\0\0\0^\0D\0\0\2\376D\216\251\300\355\256bz\324\310S3\273\357\"\235y\37\330Ed%\241\334I\211,4\275\345\250\256\262e\277\361\275\355\241\307\303\245t\276\333\2\344\n\2\211\230`\257IZ\362\222\321\242\354X\315]\265?\250\222\226\35N\245\32\3607`\$o\305]g\303|\242\246\2710\264\ewf\257M\355\2735\256\306\304Ws\207\347\24\310\"\367\0067\347\246(\210UW\310\270\27Yi\371\2676\211\b\250G)\270I\327)\226\311T\370\244\a\271\363iz\372\230\270R\n\353\345':\372\252y\212:8\207\233\253+dy\311{\6\274h\213\344\333j\34,[\246<\312\274+<\233\332(\335\354\334e\375+\315y\313\332\211}\314\35F\334\215\375m\256]c7\236\35\276M-\376N>\277\316>So\177\377\214\334\276\217_\274\26\320\364\5\2346\260\216\272\31\356\2\26\24x\316\337A\205\375\30>44\21\36-\252\177\"\32r\314\b\321\243<\215\263\@\206\24I\260\t\264|\336\376\371X\2300\235K0\312b\312,\2071\344G\223\24KY\371f\363&7F\270\202\n\245\226\t\21\313w\217\222\0062:N\215,\251P\217\26\231\252\245j\324\34\361\310h\265JC\233\224\245\a\227\$4\273\221gJ\23\371:~\335\332qXD\265k\377Y\304I\27!Y\267y\301\221\325\210\262\357]\250\27\363\332\225\367\327\344\341v\211\25\317U\25\330\217UW\215\237\35\325U\261\30\263\314\267Z\246\re\354m]\317\241?;z\254\31s\344C\13\257\bN\226\240\0\0;",
 "edad1419a54681a3017f012039cbbe3e" => "#!./perl\n\nBEGIN {\n    chdir 't' if -d 't';\n    \@INC = '../lib';\n}\n\nprint \"1..78\\n\";\n\nmy \$test = 1;\n\n# This table is based on Markus Kuhn's UTF-8 Decode Stress Tester,\n# http://www.cl.cam.ac.uk/~mgk25/ucs/examples/UTF-8-test.txt,\n# version dated 2000-09-02. \n\n# Note the \\0 instead of a raw zero byte in 2.1.1: for example\n# GNU patch v2.1 has \"issues\" with raw zero bytes.\n\nmy \@MK = split(/\\n/, <<__EOMK__);\n1\tCorrect UTF-8\n1.1.1 y \"\316\272\341\275\271\317\203\316\274\316\265\"\t-\t\t11\tce:ba:e1:bd:b9:cf:83:ce:bc:ce:b5\t5\n2\tBoundary conditions \n2.1\tFirst possible sequence of certain length\n2.1.1 y \"\\0\"\t\t\t0\t\t1\t00\t1\n2.1.2 y \"\302\200\"\t\t\t80\t\t2\tc2:80\t1\n2.1.3 y \"\340\240\200\"\t\t800\t\t3\te0:a0:80\t1\n2.1.4 y \"\360\220\200\200\"\t\t10000\t\t4\tf0:90:80:80\t1\n2.1.5 y \"\370\210\200\200\200\"\t200000\t\t5\tf8:88:80:80:80\t1\n2.1.6 y \"\374\204\200\200\200\200\"\t4000000\t\t6\tfc:84:80:80:80:80\t1\n2.2\tLast possible sequence of certain length\n2.2.1 y \"\177\"\t\t\t7f\t\t1\t7f\t1\n2.2.2 y \"\337\277\"\t\t\t7ff\t\t2\tdf:bf\t1\n# The ffff is illegal unless UTF8_ALLOW_FFFF\n2.2.3 n \"\357\277\277\"\t\t\tffff\t\t3\tef:bf:bf\t1\tcharacter 0xffff\n2.2.4 y \"\367\277\277\277\"\t\t\t1fffff\t\t4\tf7:bf:bf:bf\t1\n2.2.5 y \"\373\277\277\277\277\"\t\t\t3ffffff\t\t5\tfb:bf:bf:bf:bf\t1\n2.2.6 y \"\375\277\277\277\277\277\"\t\t7fffffff\t6\tfd:bf:bf:bf:bf:bf\t1\n2.3\tOther boundary conditions\n2.3.1 y \"\355\237\277\"\t\td7ff\t\t3\ted:9f:bf\t1\n2.3.2 y \"\356\200\200\"\t\te000\t\t3\tee:80:80\t1\n2.3.3 y \"\357\277\275\"\t\t\tfffd\t\t3\tef:bf:bd\t1\n2.3.4 y \"\364\217\277\277\"\t\t10ffff\t\t4\tf4:8f:bf:bf\t1\n2.3.5 y \"\364\220\200\200\"\t\t110000\t\t4\tf4:90:80:80\t1\n3\tMalformed sequences\n3.1\tUnexpected continuation bytes\n3.1.1 n \"\200\"\t\t\t-\t\t1\t80\t-\tunexpected continuation byte 0x80\n3.1.2 n \"\277\"\t\t\t-\t\t1\tbf\t-\tunexpected continuation byte 0xbf\n3.1.3 n \"\200\277\"\t\t\t-\t\t2\t80:bf\t-\tunexpected continuation byte 0x80\n3.1.4 n \"\200\277\200\"\t\t-\t\t3\t80:bf:80\t-\tunexpected continuation byte 0x80\n3.1.5 n \"\200\277\200\277\"\t\t-\t\t4\t80:bf:80:bf\t-\tunexpected continuation byte 0x80\n3.1.6 n \"\200\277\200\277\200\"\t-\t\t5\t80:bf:80:bf:80\t-\tunexpected continuation byte 0x80\n3.1.7 n \"\200\277\200\277\200\277\"\t-\t\t6\t80:bf:80:bf:80:bf\t-\tunexpected continuation byte 0x80\n3.1.8 n \"\200\277\200\277\200\277\200\"\t-\t\t7\t80:bf:80:bf:80:bf:80\t-\tunexpected continuation byte 0x80\n3.1.9 n \"\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277\"\t\t\t\t-\t64\t80:81:82:83:84:85:86:87:88:89:8a:8b:8c:8d:8e:8f:90:91:92:93:94:95:96:97:98:99:9a:9b:9c:9d:9e:9f:a0:a1:a2:a3:a4:a5:a6:a7:a8:a9:aa:ab:ac:ad:ae:af:b0:b1:b2:b3:b4:b5:b6:b7:b8:b9:ba:bb:bc:bd:be:bf\t-\tunexpected continuation byte 0x80\n3.2\tLonely start characters\n3.2.1 n \"\300 \301 \302 \303 \304 \305 \306 \307 \310 \311 \312 \313 \314 \315 \316 \317 \320 \321 \322 \323 \324 \325 \326 \327 \330 \331 \332 \333 \334 \335 \336 \337 \"\t-\t64 \tc0:20:c1:20:c2:20:c3:20:c4:20:c5:20:c6:20:c7:20:c8:20:c9:20:ca:20:cb:20:cc:20:cd:20:ce:20:cf:20:d0:20:d1:20:d2:20:d3:20:d4:20:d5:20:d6:20:d7:20:d8:20:d9:20:da:20:db:20:dc:20:dd:20:de:20:df:20\t-\tunexpected non-continuation byte 0x20 after start byte 0xc0\n3.2.2 n \"\340 \341 \342 \343 \344 \345 \346 \347 \350 \351 \352 \353 \354 \355 \356 \357 \"\t-\t32\te0:20:e1:20:e2:20:e3:20:e4:20:e5:20:e6:20:e7:20:e8:20:e9:20:ea:20:eb:20:ec:20:ed:20:ee:20:ef:20\t-\tunexpected non-continuation byte 0x20 after start byte 0xe0\n3.2.3 n \"\360 \361 \362 \363 \364 \365 \366 \367 \"\t-\t16\tf0:20:f1:20:f2:20:f3:20:f4:20:f5:20:f6:20:f7:20\t-\tunexpected non-continuation byte 0x20 after start byte 0xf0\n3.2.4 n \"\370 \371 \372 \373 \"\t\t-\t8\tf8:20:f9:20:fa:20:fb:20\t-\tunexpected non-continuation byte 0x20 after start byte 0xf8\n3.2.5 n \"\374 \375 \"\t\t\t-\t4\tfc:20:fd:20\t-\tunexpected non-continuation byte 0x20 after start byte 0xfc\n3.3\tSequences with last continuation byte missing\n3.3.1 n \"\300\"\t\t\t-\t1\tc0\t-\t1 byte, need 2\n3.3.2 n \"\340\200\"\t\t\t-\t2\te0:80\t-\t2 bytes, need 3\n3.3.3 n \"\360\200\200\"\t\t-\t3\tf0:80:80\t-\t3 bytes, need 4\n3.3.4 n \"\370\200\200\200\"\t\t-\t4\tf8:80:80:80\t-\t4 bytes, need 5\n3.3.5 n \"\374\200\200\200\200\"\t-\t5\tfc:80:80:80:80\t-\t5 bytes, need 6\n3.3.6 n \"\337\"\t\t\t-\t1\tdf\t-\t1 byte, need 2\n3.3.7 n \"\357\277\"\t\t\t-\t2\tef:bf\t-\t2 bytes, need 3\n3.3.8 n \"\367\277\277\"\t\t\t-\t3\tf7:bf:bf\t-\t3 bytes, need 4\n3.3.9 n \"\373\277\277\277\"\t\t\t-\t4\tfb:bf:bf:bf\t-\t4 bytes, need 5\n3.3.10 n \"\375\277\277\277\277\"\t\t-\t5\tfd:bf:bf:bf:bf\t-\t5 bytes, need 6\n3.4\tConcatenation of incomplete sequences\n3.4.1 n \"\300\340\200\360\200\200\370\200\200\200\374\200\200\200\200\337\357\277\367\277\277\373\277\277\277\375\277\277\277\277\"\t-\t30\tc0:e0:80:f0:80:80:f8:80:80:80:fc:80:80:80:80:df:ef:bf:f7:bf:bf:fb:bf:bf:bf:fd:bf:bf:bf:bf\t-\tunexpected non-continuation byte 0xe0 after start byte 0xc0\n3.5\tImpossible bytes\n3.5.1 n \"\376\"\t\t\t-\t1\tfe\t-\tbyte 0xfe\n3.5.2 n \"\377\"\t\t\t-\t1\tff\t-\tbyte 0xff\n3.5.3 n \"\376\376\377\377\"\t\t\t-\t4\tfe:fe:ff:ff\t-\tbyte 0xfe\n4\tOverlong sequences\n4.1\tExamples of an overlong ASCII character\n4.1.1 n \"\300\257\"\t\t\t-\t2\tc0:af\t-\t2 bytes, need 1\n4.1.2 n \"\340\200\257\"\t\t-\t3\te0:80:af\t-\t3 bytes, need 1\n4.1.3 n \"\360\200\200\257\"\t\t-\t4\tf0:80:80:af\t-\t4 bytes, need 1\n4.1.4 n \"\370\200\200\200\257\"\t-\t5\tf8:80:80:80:af\t-\t5 bytes, need 1\n4.1.5 n \"\374\200\200\200\200\257\"\t-\t6\tfc:80:80:80:80:af\t-\t6 bytes, need 1\n4.2\tMaximum overlong sequences\n4.2.1 n \"\301\277\"\t\t\t-\t2\tc1:bf\t-\t2 bytes, need 1\n4.2.2 n \"\340\237\277\"\t\t-\t3\te0:9f:bf\t-\t3 bytes, need 2\n4.2.3 n \"\360\217\277\277\"\t\t-\t4\tf0:8f:bf:bf\t-\t4 bytes, need 3\n4.2.4 n \"\370\207\277\277\277\"\t\t-\t5\tf8:87:bf:bf:bf\t-\t5 bytes, need 4\n4.2.5 n \"\374\203\277\277\277\277\"\t\t-\t6\tfc:83:bf:bf:bf:bf\t-\t6 bytes, need 5\n4.3\tOverlong representation of the NUL character\n4.3.1 n \"\300\200\"\t\t\t-\t2\tc0:80\t-\t2 bytes, need 1\n4.3.2 n \"\340\200\200\"\t\t-\t3\te0:80:80\t-\t3 bytes, need 1\n4.3.3 n \"\360\200\200\200\"\t\t-\t4\tf0:80:80:80\t-\t4 bytes, need 1\n4.3.4 n \"\370\200\200\200\200\"\t-\t5\tf8:80:80:80:80\t-\t5 bytes, need 1\n4.3.5 n \"\374\200\200\200\200\200\"\t-\t6\tfc:80:80:80:80:80\t-\t6 bytes, need 1\n5\tIllegal code positions\n5.1\tSingle UTF-16 surrogates\n5.1.1 n \"\355\240\200\"\t\t-\t3\ted:a0:80\t-\tUTF-16 surrogate 0xd800\n5.1.2 n \"\355\255\277\"\t\t\t-\t3\ted:ad:bf\t-\tUTF-16 surrogate 0xdb7f\n5.1.3 n \"\355\256\200\"\t\t-\t3\ted:ae:80\t-\tUTF-16 surrogate 0xdb80\n5.1.4 n \"\355\257\277\"\t\t\t-\t3\ted:af:bf\t-\tUTF-16 surrogate 0xdbff\n5.1.5 n \"\355\260\200\"\t\t-\t3\ted:b0:80\t-\tUTF-16 surrogate 0xdc00\n5.1.6 n \"\355\276\200\"\t\t-\t3\ted:be:80\t-\tUTF-16 surrogate 0xdf80\n5.1.7 n \"\355\277\277\"\t\t\t-\t3\ted:bf:bf\t-\tUTF-16 surrogate 0xdfff\n5.2\tPaired UTF-16 surrogates\n5.2.1 n \"\355\240\200\355\260\200\"\t\t-\t6\ted:a0:80:ed:b0:80\t-\tUTF-16 surrogate 0xd800\n5.2.2 n \"\355\240\200\355\277\277\"\t\t-\t6\ted:a0:80:ed:bf:bf\t-\tUTF-16 surrogate 0xd800\n5.2.3 n \"\355\255\277\355\260\200\"\t\t-\t6\ted:ad:bf:ed:b0:80\t-\tUTF-16 surrogate 0xdb7f\n5.2.4 n \"\355\255\277\355\277\277\"\t\t-\t6\ted:ad:bf:ed:bf:bf\t-\tUTF-16 surrogate 0xdb7f\n5.2.5 n \"\355\256\200\355\260\200\"\t\t-\t6\ted:ae:80:ed:b0:80\t-\tUTF-16 surrogate 0xdb80\n5.2.6 n \"\355\256\200\355\277\277\"\t\t-\t6\ted:ae:80:ed:bf:bf\t-\tUTF-16 surrogate 0xdb80\n5.2.7 n \"\355\257\277\355\260\200\"\t\t-\t6\ted:af:bf:ed:b0:80\t-\tUTF-16 surrogate 0xdbff\n5.2.8 n \"\355\257\277\355\277\277\"\t\t-\t6\ted:af:bf:ed:bf:bf\t-\tUTF-16 surrogate 0xdbff\n5.3\tOther illegal code positions\n5.3.1 n \"\357\277\276\"\t\t\t-\t3\tef:bf:be\t-\tbyte order mark 0xfffe\n# The ffff is illegal unless UTF8_ALLOW_FFFF\n5.3.2 n \"\357\277\277\"\t\t\t-\t3\tef:bf:bf\t-\tcharacter 0xffff\n__EOMK__\n\n# 104..181\n{\n    my \$WARNCNT;\n    my \$id;\n\n    local \$SIG{__WARN__} =\n\tsub {\n\t    print \"# \$id: \@_\";\n\t    \$WARNCNT++;\n\t    \$WARNMSG = \"\@_\";\n\t};\n\n    sub moan {\n\tprint \"\$id: \@_\";\n    }\n    \n    sub test_unpack_U {\n\t\$WARNCNT = 0;\n\t\$WARNMSG = \"\";\n\tunpack('U*', \$_[0]);\n    }\n\n    for (\@MK) {\n\tif (/^(?:\\d+(?:\\.\\d+)?)\\s/ || /^#/) {\n\t    # print \"# \$_\\n\";\n\t} elsif (/^(\\d+\\.\\d+\\.\\d+[bu]?)\\s+([yn])\\s+\"(.+)\"\\s+([0-9a-f]{1,8}|-)\\s+(\\d+)\\s+([0-9a-f]{2}(?::[0-9a-f]{2})*)(?:\\s+((?:\\d+|-)(?:\\s+(.+))?))?\$/) {\n\t    \$id = \$1;\n\t    my (\$okay, \$bytes, \$Unicode, \$byteslen, \$hex, \$charslen, \$error) =\n\t\t(\$2, \$3, \$4, \$5, \$6, \$7, \$8);\n\t    my \@hex = split(/:/, \$hex);\n\t    unless (\@hex == \$byteslen) {\n\t\tmy \$nhex = \@hex;\n\t\tmoan \"amount of hex (\$nhex) not equal to byteslen (\$byteslen)\\n\";\n\t    }\n\t    {\n\t\tuse bytes;\n\t\tmy \$bytesbyteslen = length(\$bytes);\n\t\tunless (\$bytesbyteslen == \$byteslen) {\n\t\t    moan \"bytes length() (\$bytesbyteslen) not equal to \$byteslen\\n\";\n\t\t}\n\t    }\n\t    if (\$okay eq 'y') {\n\t\ttest_unpack_U(\$bytes);\n\t\tif (\$WARNCNT) {\n\t\t    moan \"unpack('U*') false negative\\n\";\n\t\t    print \"not \";\n\t\t}\n\t    } elsif (\$okay eq 'n') {\n\t\ttest_unpack_U(\$bytes);\n\t\tif (\$WARNCNT == 0 || (\$error ne '' && \$WARNMSG !~ /\$error/)) {\n\t\t    moan \"unpack('U*') false positive\\n\";\n\t\t    print \"not \";\n\t\t}\n\t    }\n\t    print \"ok \$test\\n\";\n\t    \$test++;\n \t} else {\n\t    moan \"unknown format\\n\";\n\t}\n    }\n}\n",
 "ef2d3179a1b49dd6bd0ae27cbc23c143" => "\n  utf8.c AOK\n\n     [utf8_to_uv]\n     Malformed UTF-8 character\n\tmy \$a = ord \"\\x80\" ;\n\n     Malformed UTF-8 character\n\tmy \$a = ord \"\\xf080\" ;\n     <<<<<< this warning can't be easily triggered from perl anymore\n\n     [utf16_to_utf8]\n     Malformed UTF-16 surrogate\t\t\n     <<<<<< Add a test when somethig actually calls utf16_to_utf8\n\n__END__\n# utf8.c [utf8_to_uv] -W\nBEGIN {\n    if (ord('A') == 193) {\n        print \"SKIPPED\\n# ebcdic platforms do not generate Malformed UTF-8 warnings.\";\n        exit 0;\n    }\n}\nuse utf8 ;\nmy \$a = \"sn\370storm\" ;\n{\n    no warnings 'utf8' ;\n    my \$a = \"sn\370storm\";\n    use warnings 'utf8' ;\n    my \$a = \"sn\370storm\";\n}\nEXPECT\nMalformed UTF-8 character (unexpected non-continuation byte 0x73 after start byte 0xf8) at - line 9.\nMalformed UTF-8 character (unexpected non-continuation byte 0x73 after start byte 0xf8) at - line 14.\n########\n",
 "f032a907282fe0ada83180813a4cd2f8" => "0x8fa0a0:                                                               \n0x8fa0c0:                                                               \n0x8fa0e0:                                                               \n0x8fa1a0:                                                               \n0x8fa1c0:                                                               \n0x8fa1e0:                                                               \n0x8fa2a0:                               \313\230\313\207\302\270\313\231\313\235\302\257\313\233\313\232~\316\204\316\205          \n0x8fa2c0:     \302\241\302\246\302\277                                                    \n0x8fa2e0:                       \302\272\302\252\302\251\302\256\342\204\242\302\244\342\204\226                          \n0x8fa3a0:                                                               \n0x8fa3c0:                                                               \n0x8fa3e0:                                                               \n0x8fa4a0:                                                               \n0x8fa4c0:                                                               \n0x8fa4e0:                                                               \n0x8fa5a0:                                                               \n0x8fa5c0:                                                               \n0x8fa5e0:                                                               \n0x8fa6a0:                                                               \n0x8fa6c0:                                                               \n0x8fa6e0:   \316\206\316\210\316\211\316\212\316\252  \316\214  \316\216\316\253  \316\217        \316\254\316\255\316\256\316\257\317\212\316\220\317\214\317\202\317\215\317\213\316\260\317\216    \n0x8fa7a0:                                                               \n0x8fa7c0:     \320\202\320\203\320\204\320\205\320\206\320\207\320\210\320\211\320\212\320\213\320\214\320\216\320\217                                \n0x8fa7e0:                                     \321\222\321\223\321\224\321\225\321\226\321\227\321\230\321\231\321\232\321\233\321\234\321\236\321\237\n0x8fa8a0:                                                               \n0x8fa8c0:                                                               \n0x8fa8e0:                                                               \n0x8fa9a0:   \303\206\304\220  \304\246  \304\262  \305\201\304\277  \305\212\303\230\305\222  \305\246\303\236                            \n0x8fa9c0:   \303\246\304\221\303\260\304\247\304\261\304\263\304\270\305\202\305\200\305\211\305\213\303\270\305\223\303\237\305\247\303\276                            \n0x8fa9e0:                                                               \n0x8faaa0:   \303\201\303\200\303\204\303\202\304\202\307\215\304\200\304\204\303\205\303\203\304\206\304\210\304\214\303\207\304\212\304\216\303\211\303\210\303\213\303\212\304\232\304\226\304\222\304\230  \304\234\304\236\304\242\304\240\304\244\n0x8faac0: \303\214\303\217\303\216\307\217\304\260\304\252\304\256\304\250\304\264\304\266\304\271\304\275\304\273\305\203\305\207\305\205\303\221\303\223\303\222\303\226\303\224\307\221\305\220\305\214\303\225\305\224\305\230\305\226\305\232\305\234\305\240\n0x8faae0: \305\244\305\242\303\232\303\231\303\234\303\233\305\254\307\223\305\260\305\252\305\262\305\256\305\250\307\227\307\233\307\231\307\225\305\264\303\235\305\270\305\266\305\271\305\275\305\273              \n0x8faba0:   \303\241\303\240\303\244\303\242\304\203\307\216\304\201\304\205\303\245\303\243\304\207\304\211\304\215\303\247\304\213\304\217\303\251\303\250\303\253\303\252\304\233\304\227\304\223\304\231\307\265\304\235\304\237  \304\241\304\245\n0x8fabc0: \303\254\303\257\303\256\307\220  \304\253\304\257\304\251\304\265\304\267\304\272\304\276\304\274\305\204\305\210\305\206\303\261\303\263\303\262\303\266\303\264\307\222\305\221\305\215\303\265\305\225\305\231\305\227\305\233\305\235\305\241\n0x8fabe0: \305\245\305\243\303\272\303\271\303\274\303\273\305\255\307\224\305\261\305\253\305\263\305\257\305\251\307\230\307\234\307\232\307\226\305\265\303\275\303\277\305\267\305\272\305\276\305\274              \n0x8faca0:                                                               \n0x8facc0:                                                               \n0x8face0:                                                               \n0x8fada0:                                                               \n0x8fadc0:                                                               \n0x8fade0:                                                               \n0x8faea0:                                                               \n0x8faec0:                                                               \n0x8faee0:                                                               \n0x8fafa0:                                                               \n0x8fafc0:                                                               \n0x8fafe0:                                                               \n0x8fb0a0:   \344\270\202\344\270\204\344\270\205\344\270\214\344\270\222\344\270\237\344\270\243\344\270\244\344\270\250\344\270\253\344\270\256\344\270\257\344\270\260\344\270\265\344\271\200\344\271\201\344\271\204\344\271\207\344\271\221\344\271\232\344\271\234\344\271\243\344\271\250\344\271\251\344\271\264\344\271\265\344\271\271\344\271\277\344\272\215\344\272\226\n0x8fb0c0: \344\272\235\344\272\257\344\272\271\344\273\203\344\273\220\344\273\232\344\273\233\344\273\240\344\273\241\344\273\242\344\273\250\344\273\257\344\273\261\344\273\263\344\273\265\344\273\275\344\273\276\344\273\277\344\274\200\344\274\202\344\274\203\344\274\210\344\274\213\344\274\214\344\274\222\344\274\225\344\274\226\344\274\227\344\274\231\344\274\256\344\274\261\n0x8fb0e0: \344\274\263\344\274\265\344\274\267\344\274\271\344\274\273\344\274\276\344\275\200\344\275\202\344\275\210\344\275\211\344\275\213\344\275\214\344\275\222\344\275\224\344\275\226\344\275\230\344\275\237\344\275\243\344\275\252\344\275\254\344\275\256\344\275\261\344\275\267\344\275\270\344\275\271\344\275\272\344\275\275\344\275\276\344\276\201\344\276\202\344\276\204\n0x8fb1a0:   \344\276\205\344\276\211\344\276\212\344\276\214\344\276\216\344\276\220\344\276\222\344\276\223\344\276\224\344\276\227\344\276\231\344\276\232\344\276\236\344\276\237\344\276\262\344\276\267\344\276\271\344\276\273\344\276\274\344\276\275\344\276\276\344\277\200\344\277\201\344\277\205\344\277\206\344\277\210\344\277\211\344\277\213\344\277\214\344\277\215\n0x8fb1c0: \344\277\222\344\277\234\344\277\240\344\277\242\344\277\260\344\277\262\344\277\274\344\277\275\344\277\277\345\200\200\345\200\201\345\200\204\345\200\207\345\200\212\345\200\214\345\200\216\345\200\220\345\200\223\345\200\227\345\200\230\345\200\233\345\200\234\345\200\235\345\200\236\345\200\242\345\200\247\345\200\256\345\200\260\345\200\262\345\200\263\345\200\265\n0x8fb1e0: \345\201\201\345\201\202\345\201\205\345\201\206\345\201\212\345\201\214\345\201\216\345\201\221\345\201\222\345\201\223\345\201\227\345\201\231\345\201\237\345\201\240\345\201\242\345\201\243\345\201\246\345\201\247\345\201\252\345\201\255\345\201\260\345\201\261\345\200\273\345\202\201\345\202\203\345\202\204\345\202\206\345\202\212\345\202\216\345\202\217\345\202\220\n0x8fb2a0:   \345\202\222\345\202\223\345\202\224\345\202\226\345\202\233\345\202\234\345\202\236\345\202\237\345\202\240\345\202\241\345\202\242\345\202\252\345\202\257\345\202\260\345\202\271\345\202\272\345\202\275\345\203\200\345\203\203\345\203\204\345\203\207\345\203\214\345\203\216\345\203\220\345\203\223\345\203\224\345\203\230\345\203\234\345\203\235\345\203\237\n0x8fb2c0: \345\203\244\345\203\246\345\203\250\345\203\251\345\203\257\345\203\261\345\203\266\345\203\272\345\203\276\345\204\203\345\204\206\345\204\207\345\204\210\345\204\213\345\204\214\345\204\215\345\204\216\345\203\262\345\204\220\345\204\227\345\204\231\345\204\233\345\204\234\345\204\235\345\204\236\345\204\243\345\204\247\345\204\250\345\204\254\345\204\255\345\204\257\n0x8fb2e0: \345\204\263\345\204\264\345\204\265\345\204\270\345\204\271\345\205\202\345\205\212\345\205\217\345\205\223\345\205\225\345\205\227\345\205\230\345\205\237\345\205\244\345\205\246\345\205\276\345\206\203\345\206\204\345\206\213\345\206\216\345\206\230\345\206\235\345\206\241\345\206\243\345\206\255\345\206\270\345\206\272\345\206\274\345\206\276\345\206\277\345\207\202\n0x8fb3a0:   \345\207\210\345\207\217\345\207\221\345\207\222\345\207\223\345\207\225\345\207\230\345\207\236\345\207\242\345\207\245\345\207\256\345\207\262\345\207\263\345\207\264\345\207\267\345\210\201\345\210\202\345\210\205\345\210\222\345\210\223\345\210\225\345\210\226\345\210\230\345\210\242\345\210\250\345\210\261\345\210\262\345\210\265\345\210\274\345\211\205\n0x8fb3c0: \345\211\225\345\211\227\345\211\230\345\211\232\345\211\234\345\211\237\345\211\240\345\211\241\345\211\246\345\211\256\345\211\267\345\211\270\345\211\271\345\212\200\345\212\202\345\212\205\345\212\212\345\212\214\345\212\223\345\212\225\345\212\226\345\212\227\345\212\230\345\212\232\345\212\234\345\212\244\345\212\245\345\212\246\345\212\247\345\212\257\345\212\260\n0x8fb3e0: \345\212\267\345\212\270\345\212\272\345\212\273\345\212\275\345\213\200\345\213\204\345\213\206\345\213\210\345\213\214\345\213\217\345\213\221\345\213\224\345\213\226\345\213\233\345\213\234\345\213\241\345\213\245\345\213\250\345\213\251\345\213\252\345\213\254\345\213\260\345\213\261\345\213\264\345\213\266\345\213\267\345\214\200\345\214\203\345\214\212\345\214\213\n0x8fb4a0:   \345\214\214\345\214\221\345\214\223\345\214\230\345\214\233\345\214\234\345\214\236\345\214\237\345\214\245\345\214\247\345\214\250\345\214\251\345\214\253\345\214\254\345\214\255\345\214\260\345\214\262\345\214\265\345\214\274\345\214\275\345\214\276\345\215\202\345\215\214\345\215\213\345\215\231\345\215\233\345\215\241\345\215\243\345\215\245\345\215\254\n0x8fb4c0: \345\215\262\345\215\271\345\215\276\345\216\203\345\216\207\345\216\210\345\216\216\345\216\223\345\216\224\345\216\231\345\216\235\345\216\241\345\216\244\345\216\252\345\216\253\345\216\257\345\216\262\345\216\264\345\216\265\345\216\267\345\216\270\345\216\272\345\216\275\345\217\200\345\217\205\345\217\217\345\217\222\345\217\223\345\217\225\345\217\232\345\217\235\n0x8fb4e0: \345\217\240\345\217\246\345\217\247\345\217\265\345\220\202\345\220\223\345\220\232\345\220\241\345\220\247\345\220\250\345\220\252\345\220\257\345\220\261\345\220\264\345\220\265\345\221\203\345\221\204\345\221\207\345\221\215\345\221\217\345\221\236\345\221\242\345\221\244\345\221\246\345\221\247\345\221\251\345\221\253\345\221\255\345\221\256\345\221\264\345\221\277\n0x8fb5a0:   \345\222\201\345\222\203\345\222\205\345\222\210\345\222\211\345\222\215\345\222\221\345\222\225\345\222\226\345\222\234\345\222\237\345\222\241\345\222\246\345\222\247\345\222\251\345\222\252\345\222\255\345\222\256\345\222\261\345\222\267\345\222\271\345\222\272\345\222\273\345\222\277\345\223\206\345\223\212\345\223\215\345\223\216\345\223\240\345\223\252\n0x8fb5c0: \345\223\257\345\223\266\345\223\274\345\223\276\345\223\277\345\224\200\345\224\201\345\224\205\345\224\210\345\224\211\345\224\214\345\224\215\345\224\216\345\224\225\345\224\252\345\224\253\345\224\262\345\224\265\345\224\266\345\224\273\345\224\274\345\224\275\345\225\201\345\225\207\345\225\211\345\225\212\345\225\215\345\225\220\345\225\221\345\225\230\345\225\232\n0x8fb5e0: \345\225\236\345\225\240\345\225\241\345\225\244\345\225\246\345\225\277\345\226\201\345\226\202\345\226\206\345\226\210\345\226\216\345\226\217\345\226\221\345\226\222\345\226\223\345\226\224\345\226\227\345\226\243\345\226\244\345\226\255\345\226\262\345\226\277\345\227\201\345\227\203\345\227\206\345\227\211\345\227\213\345\227\214\345\227\216\345\227\221\345\227\222\n0x8fb6a0:   \345\227\223\345\227\227\345\227\230\345\227\233\345\227\236\345\227\242\345\227\251\345\227\266\345\227\277\345\230\205\345\230\210\345\230\212\345\230\215\345\230\216\345\230\217\345\230\220\345\230\221\345\230\222\345\230\231\345\230\254\345\230\260\345\230\263\345\230\265\345\230\267\345\230\271\345\230\273\345\230\274\345\230\275\345\230\277\345\231\200\n0x8fb6c0: \345\231\203\345\231\204\345\231\206\345\231\211\345\231\213\345\231\215\345\231\217\345\231\224\345\231\236\345\231\240\345\231\241\345\231\242\345\231\243\345\231\246\345\231\251\345\231\255\345\231\257\345\231\261\345\231\262\345\231\265\345\232\204\345\232\205\345\232\210\345\232\213\345\232\214\345\232\225\345\232\231\345\232\232\345\232\235\345\232\236\345\232\237\n0x8fb6e0: \345\232\247\345\232\250\345\232\251\345\232\253\345\232\254\345\232\255\345\232\261\345\232\263\345\232\267\345\232\276\345\233\205\345\233\211\345\233\212\345\233\213\345\233\217\345\233\220\345\233\214\345\233\215\345\233\231\345\233\234\345\233\235\345\233\237\345\233\241\345\233\244\345\233\245\345\233\246\345\233\247\345\233\250\345\233\261\345\233\253\345\233\255\n0x8fb7a0:   \345\233\266\345\233\267\345\234\201\345\234\202\345\234\207\345\234\212\345\234\214\345\234\221\345\234\225\345\234\232\345\234\233\345\234\235\345\234\240\345\234\242\345\234\243\345\234\244\345\234\245\345\234\251\345\234\252\345\234\254\345\234\256\345\234\257\345\234\263\345\234\264\345\234\275\345\234\276\345\234\277\345\235\205\345\235\206\345\235\214\n0x8fb7c0: \345\235\222\345\235\242\345\235\245\345\235\247\345\235\250\345\235\253\345\235\255\345\235\256\345\235\257\345\235\260\345\235\261\345\235\263\345\235\264\345\235\265\345\235\267\345\235\271\345\235\272\345\235\273\345\235\274\345\235\276\345\236\201\345\236\203\345\236\214\345\236\224\345\236\227\345\236\231\345\236\232\345\236\234\345\236\235\345\236\236\345\236\237\n0x8fb7e0: \345\236\225\345\236\247\345\236\250\345\236\251\345\236\254\345\236\270\345\236\275\345\237\207\345\237\210\345\237\214\345\237\217\345\237\225\345\237\235\345\237\236\345\237\244\345\237\246\345\237\247\345\237\251\345\237\255\345\237\260\345\237\265\345\237\266\345\237\270\345\237\275\345\237\276\345\237\277\345\240\203\345\240\204\345\240\210\345\240\211\345\237\241\n0x8fb8a0:   \345\240\214\345\240\215\345\240\233\345\240\236\345\240\237\345\240\240\345\240\246\345\240\247\345\240\255\345\240\262\345\240\271\345\240\277\345\241\211\345\241\214\345\241\215\345\241\217\345\241\220\345\241\225\345\241\237\345\241\241\345\241\244\345\241\247\345\241\250\345\241\270\345\241\274\345\241\277\345\242\200\345\242\201\345\242\207\345\242\210\n0x8fb8c0: \345\242\212\345\242\214\345\242\215\345\242\217\345\242\220\345\242\224\345\242\226\345\242\235\345\242\240\345\242\241\345\242\242\345\242\246\345\242\251\345\242\261\345\242\262\345\243\204\345\242\274\345\243\202\345\243\210\345\243\215\345\243\216\345\243\220\345\243\222\345\243\224\345\243\226\345\243\232\345\243\235\345\243\241\345\243\242\345\243\251\345\243\263\n0x8fb8e0: \345\244\206\345\244\213\345\244\214\345\244\222\345\244\223\345\244\224\350\231\201\345\244\235\345\244\241\345\244\243\345\244\244\345\244\250\345\244\257\345\244\260\345\244\263\345\244\265\345\244\266\345\244\277\345\245\203\345\245\206\345\245\222\345\245\223\345\245\231\345\245\233\345\245\235\345\245\236\345\245\237\345\245\241\345\245\243\345\245\253\345\245\255\n0x8fb9a0:   \345\245\257\345\245\262\345\245\265\345\245\266\345\245\271\345\245\273\345\245\274\345\246\213\345\246\214\345\246\216\345\246\222\345\246\225\345\246\227\345\246\237\345\246\244\345\246\247\345\246\255\345\246\256\345\246\257\345\246\260\345\246\263\345\246\267\345\246\272\345\246\274\345\247\201\345\247\203\345\247\204\345\247\210\345\247\212\345\247\215\n0x8fb9c0: \345\247\235\345\247\236\345\247\237\345\247\243\345\247\244\345\247\247\345\247\256\345\247\257\345\247\261\345\247\262\345\247\264\345\247\267\345\250\200\345\250\204\345\250\214\345\250\215\345\250\216\345\250\222\345\250\223\345\250\236\345\250\243\345\250\244\345\250\247\345\250\250\345\250\252\345\250\255\345\250\260\345\251\204\345\251\205\345\251\207\345\251\210\n0x8fb9e0: \345\251\220\345\251\225\345\251\236\345\251\243\345\251\245\345\251\247\345\251\255\345\251\267\345\251\272\345\251\273\345\251\276\345\252\213\345\252\220\345\252\223\345\252\226\345\252\231\345\252\234\345\252\236\345\252\237\345\252\240\345\252\242\345\252\247\345\252\254\345\252\261\345\252\262\345\252\263\345\252\265\345\252\270\345\252\272\345\252\273\345\252\277\n0x8fbaa0:   \345\253\204\345\253\206\345\253\210\345\253\217\345\253\232\345\253\234\345\253\240\345\253\245\345\253\252\345\253\256\345\253\265\345\253\266\345\253\275\345\254\200\345\254\201\345\254\210\345\254\227\345\254\264\345\254\231\345\254\233\345\254\235\345\254\241\345\254\245\345\254\255\345\254\270\345\255\201\345\255\213\345\255\214\345\255\222\345\255\226\n0x8fbac0: \345\255\250\345\255\256\345\255\257\345\255\274\345\255\275\345\255\276\345\255\277\345\256\201\345\256\204\345\256\206\345\256\212\345\256\216\345\256\220\345\256\221\345\256\223\345\256\224\345\256\226\345\256\250\345\256\251\345\256\254\345\256\255\345\256\257\345\256\261\345\256\262\345\256\267\345\256\272\345\256\274\345\257\200\345\257\201\345\257\215\345\257\217\n0x8fbae0: \345\257\227\345\257\230\345\257\231\345\257\232\345\257\240\345\257\257\345\257\261\345\257\264\345\257\275\345\260\214\345\260\227\345\260\236\345\260\237\345\260\243\345\260\246\345\260\251\345\260\253\345\260\254\345\260\256\345\260\260\345\260\262\345\260\265\345\260\266\345\261\231\345\261\232\345\261\234\345\261\242\345\261\243\345\261\247\345\261\250\345\261\251\n0x8fbba0:   \345\261\255\345\261\260\345\261\264\345\261\265\345\261\272\345\261\273\345\261\274\345\261\275\345\262\207\345\262\210\345\262\212\345\262\217\345\262\222\345\262\235\345\262\237\345\262\240\345\262\242\345\262\243\345\262\246\345\262\252\345\262\262\345\262\264\345\262\265\345\262\272\345\263\211\345\263\213\345\263\222\345\263\235\345\263\227\345\263\256\n0x8fbbc0: \345\263\262\345\263\264\345\264\201\345\264\206\345\264\215\345\264\222\345\264\253\345\264\243\345\264\244\345\264\246\345\264\247\345\264\261\345\264\264\345\264\271\345\264\275\345\264\277\345\265\202\345\265\203\345\265\206\345\265\210\345\265\225\345\265\221\345\265\231\345\265\212\345\265\237\345\265\240\345\265\241\345\265\242\345\265\244\345\265\252\345\265\255\n0x8fbbe0: \345\265\271\345\265\272\345\265\276\345\265\277\345\266\201\345\266\203\345\266\210\345\266\212\345\266\222\345\266\223\345\266\224\345\266\225\345\266\231\345\266\233\345\266\237\345\266\240\345\266\247\345\266\253\345\266\260\345\266\264\345\266\270\345\266\271\345\267\203\345\267\207\345\267\213\345\267\220\345\267\216\345\267\230\345\267\231\345\267\240\345\267\244\n0x8fbca0:   \345\267\251\345\267\270\345\267\271\345\270\200\345\270\207\345\270\215\345\270\222\345\270\224\345\270\225\345\270\230\345\270\237\345\270\240\345\270\256\345\270\250\345\270\262\345\270\265\345\270\276\345\271\213\345\271\220\345\271\211\345\271\221\345\271\226\345\271\230\345\271\233\345\271\234\345\271\236\345\271\250\345\271\252\345\271\253\345\271\254\n0x8fbcc0: \345\271\256\345\271\260\345\272\200\345\272\213\345\272\216\345\272\242\345\272\244\345\272\245\345\272\250\345\272\252\345\272\254\345\272\261\345\272\263\345\272\275\345\272\276\345\272\277\345\273\206\345\273\214\345\273\213\345\273\216\345\273\221\345\273\222\345\273\224\345\273\225\345\273\234\345\273\236\345\273\245\345\273\253\345\274\202\345\274\206\345\274\207\n0x8fbce0: \345\274\216\345\274\231\345\274\234\345\274\235\345\274\241\345\274\242\345\274\243\345\274\244\345\274\250\345\274\253\345\274\254\345\274\256\345\274\260\345\274\264\345\274\266\345\274\273\345\274\275\345\274\277\345\275\200\345\275\204\345\275\205\345\275\207\345\275\215\345\275\220\345\275\224\345\275\230\345\275\233\345\275\240\345\275\243\345\275\244\345\275\247\n0x8fbda0:   \345\275\257\345\275\262\345\275\264\345\275\265\345\275\270\345\275\272\345\275\275\345\275\276\345\276\211\345\276\215\345\276\217\345\276\226\345\276\234\345\276\235\345\276\242\345\276\247\345\276\253\345\276\244\345\276\254\345\276\257\345\276\260\345\276\261\345\276\270\345\277\204\345\277\207\345\277\210\345\277\211\345\277\213\345\277\220\345\277\221\n0x8fbdc0: \345\277\223\345\277\224\345\277\236\345\277\241\345\277\242\345\277\250\345\277\251\345\277\252\345\277\254\345\277\255\345\277\256\345\277\257\345\277\262\345\277\263\345\277\266\345\277\272\345\277\274\346\200\207\346\200\212\346\200\215\346\200\223\346\200\224\346\200\227\346\200\230\346\200\232\346\200\237\346\200\244\346\200\255\346\200\263\346\200\265\346\201\200\n0x8fbde0: \346\201\210\346\201\211\346\201\214\346\201\221\346\201\224\346\201\226\346\201\227\346\201\235\346\201\241\346\201\247\346\201\261\346\201\276\346\201\277\346\202\202\346\202\206\346\202\210\346\202\212\346\202\216\346\202\221\346\202\223\346\202\225\346\202\230\346\202\235\346\202\236\346\202\242\346\202\244\346\202\245\346\202\250\346\202\260\346\202\261\346\202\267\n0x8fbea0:   \346\202\273\346\202\276\346\203\202\346\203\204\346\203\210\346\203\211\346\203\212\346\203\213\346\203\216\346\203\217\346\203\224\346\203\225\346\203\231\346\203\233\346\203\235\346\203\236\346\203\242\346\203\245\346\203\262\346\203\265\346\203\270\346\203\274\346\203\275\346\204\202\346\204\207\346\204\212\346\204\214\346\204\220\346\204\221\346\204\222\n0x8fbec0: \346\204\224\346\204\226\346\204\227\346\204\231\346\204\234\346\204\236\346\204\242\346\204\252\346\204\253\346\204\260\346\204\261\346\204\265\346\204\266\346\204\267\346\204\271\346\205\201\346\205\205\346\205\206\346\205\211\346\205\236\346\205\240\346\205\254\346\205\262\346\205\270\346\205\273\346\205\274\346\205\277\346\206\200\346\206\201\346\206\203\346\206\204\n0x8fbee0: \346\206\215\346\206\222\346\206\223\346\206\227\346\206\230\346\206\234\346\206\235\346\206\237\346\206\240\346\206\245\346\206\250\346\206\252\346\206\255\346\206\270\346\206\271\346\206\274\346\207\200\346\207\201\346\207\202\346\207\216\346\207\217\346\207\225\346\207\234\346\207\235\346\207\236\346\207\237\346\207\241\346\207\242\346\207\247\346\207\251\346\207\245\n0x8fbfa0:   \346\207\254\346\207\255\346\207\257\346\210\201\346\210\203\346\210\204\346\210\207\346\210\223\346\210\225\346\210\234\346\210\240\346\210\242\346\210\243\346\210\247\346\210\251\346\210\253\346\210\271\346\210\275\346\211\202\346\211\203\346\211\204\346\211\206\346\211\214\346\211\220\346\211\221\346\211\222\346\211\224\346\211\226\346\211\232\346\211\234\n0x8fbfc0: \346\211\255\346\211\257\346\211\263\346\211\272\346\211\275\346\212\215\346\212\216\346\212\217\346\212\220\346\212\246\346\212\250\346\212\263\346\212\266\346\212\267\346\212\272\346\212\276\346\212\277\346\213\204\346\213\216\346\213\225\346\213\226\346\213\232\346\213\252\346\213\262\346\213\264\346\213\274\346\213\275\346\214\203\346\214\204\346\214\212\346\214\213\n0x8fbfe0: \346\214\220\346\214\223\346\214\226\346\214\230\346\214\251\346\214\252\346\214\255\346\214\265\346\214\266\346\214\271\346\214\274\346\215\201\346\215\202\346\215\203\346\215\204\346\215\206\346\215\212\346\215\213\346\215\216\346\215\222\346\215\223\346\215\224\346\215\230\346\215\233\346\215\245\346\215\246\346\215\254\346\215\255\346\215\261\346\215\264\346\215\265\n0x8fc0a0:   \346\215\270\346\215\274\346\215\275\346\215\277\346\216\202\346\216\204\346\216\207\346\216\212\346\216\220\346\216\224\346\216\225\346\216\231\346\216\232\346\216\236\346\216\244\346\216\246\346\216\255\346\216\256\346\216\257\346\216\275\346\217\201\346\217\205\346\217\210\346\217\216\346\217\221\346\217\223\346\217\224\346\217\225\346\217\234\346\217\240\n0x8fc0c0: \346\217\252\346\217\254\346\217\262\346\217\263\346\217\265\346\217\270\346\217\271\346\220\211\346\220\212\346\220\220\346\220\222\346\220\224\346\220\230\346\220\236\346\220\240\346\220\242\346\220\244\346\220\245\346\220\251\346\220\252\346\220\257\346\220\260\346\220\265\346\220\275\346\220\277\346\221\213\346\221\217\346\221\221\346\221\222\346\221\223\346\221\224\n0x8fc0e0: \346\221\233\346\221\234\346\221\235\346\221\237\346\221\240\346\221\241\346\221\243\346\221\255\346\221\263\346\221\264\346\221\273\346\221\275\346\222\205\346\222\207\346\222\217\346\222\220\346\222\221\346\222\230\346\222\231\346\222\233\346\222\235\346\222\237\346\222\241\346\222\243\346\222\246\346\222\250\346\222\254\346\222\263\346\222\275\346\222\276\346\222\277\n0x8fc1a0:   \346\223\204\346\223\211\346\223\212\346\223\213\346\223\214\346\223\216\346\223\220\346\223\221\346\223\225\346\223\227\346\223\244\346\223\245\346\223\251\346\223\252\346\223\255\346\223\260\346\223\265\346\223\267\346\223\273\346\223\277\346\224\201\346\224\204\346\224\210\346\224\211\346\224\212\346\224\217\346\224\223\346\224\224\346\224\226\346\224\231\n0x8fc1c0: \346\224\236\346\224\237\346\224\242\346\224\246\346\224\251\346\224\256\346\224\261\346\224\272\346\224\274\346\224\275\346\225\203\346\225\207\346\225\211\346\225\220\346\225\222\346\225\224\346\225\237\346\225\240\346\225\247\346\225\253\346\225\272\346\225\275\346\226\201\346\226\205\346\226\212\346\226\222\346\226\225\346\226\230\346\226\235\346\226\240\346\226\243\n0x8fc1e0: \346\226\256\346\226\262\346\226\263\346\226\264\346\226\277\346\227\202\346\227\210\346\227\211\346\227\216\346\227\220\346\227\224\346\227\226\346\227\230\346\227\237\346\227\260\346\227\262\346\227\264\346\227\265\346\227\271\346\227\276\346\227\277\346\230\200\346\230\204\346\230\210\346\230\211\346\230\215\346\230\221\346\230\222\346\230\225\346\230\226\346\230\235\n0x8fc2a0:   \346\230\236\346\230\241\346\230\242\346\230\243\346\230\244\346\230\246\346\230\251\346\230\252\346\230\253\346\230\254\346\230\256\346\230\260\346\230\261\346\230\263\346\230\271\346\230\267\346\231\200\346\231\205\346\231\206\346\231\212\346\231\214\346\231\221\346\231\216\346\231\227\346\231\230\346\231\231\346\231\233\346\231\234\346\231\240\346\231\241\n0x8fc2c0: \346\231\252\346\231\253\346\231\254\346\231\276\346\231\263\346\231\265\346\231\277\346\231\267\346\231\270\346\231\271\346\231\273\346\232\200\346\231\274\346\232\213\346\232\214\346\232\215\346\232\220\346\232\222\346\232\231\346\232\232\346\232\233\346\232\234\346\232\237\346\232\240\346\232\244\346\232\255\346\232\261\346\232\262\346\232\265\346\232\273\346\232\277\n0x8fc2e0: \346\233\202\346\233\203\346\233\210\346\233\214\346\233\216\346\233\217\346\233\224\346\233\233\346\233\237\346\233\250\346\233\253\346\233\254\346\233\256\346\233\272\346\234\205\346\234\207\346\234\216\346\234\223\346\234\231\346\234\234\346\234\240\346\234\242\346\234\263\346\234\276\346\235\205\346\235\207\346\235\210\346\235\214\346\235\224\346\235\225\346\235\235\n0x8fc3a0:   \346\235\246\346\235\254\346\235\256\346\235\264\346\235\266\346\235\273\346\236\201\346\236\204\346\236\216\346\236\217\346\236\221\346\236\223\346\236\226\346\236\230\346\236\231\346\236\233\346\236\260\346\236\261\346\236\262\346\236\265\346\236\273\346\236\274\346\236\275\346\237\271\346\237\200\346\237\202\346\237\203\346\237\205\346\237\210\346\237\211\n0x8fc3c0: \346\237\227\346\237\231\346\237\234\346\237\241\346\237\246\346\237\260\346\237\262\346\237\266\346\237\267\346\241\222\346\240\224\346\240\231\346\240\235\346\240\237\346\240\250\346\240\247\346\240\254\346\240\255\346\240\257\346\240\260\346\240\261\346\240\263\346\240\273\346\240\277\346\241\204\346\241\205\346\241\212\346\241\214\346\241\225\346\241\227\346\241\230\n0x8fc3e0: \346\241\253\346\241\256\346\241\257\346\241\260\346\241\261\346\241\262\346\241\265\346\241\271\346\241\272\346\241\273\346\241\274\346\242\202\346\242\204\346\242\206\346\242\210\346\242\226\346\242\230\346\242\232\346\242\234\346\242\241\346\242\243\346\242\245\346\242\251\346\242\252\346\242\256\346\242\262\346\242\273\346\243\205\346\243\210\346\243\214\346\243\217\n0x8fc4a0:   \346\243\220\346\243\221\346\243\223\346\243\226\346\243\231\346\243\234\346\243\235\346\243\245\346\243\250\346\243\252\346\243\253\346\243\254\346\243\255\346\243\260\346\243\261\346\243\265\346\243\266\346\243\273\346\243\274\346\243\275\346\244\206\346\244\211\346\244\212\346\244\220\346\244\221\346\244\223\346\244\226\346\244\227\346\244\261\346\244\263\n0x8fc4c0: \346\244\270\346\244\273\346\245\202\346\245\205\346\245\211\346\245\216\346\245\227\346\245\233\346\245\243\346\245\244\346\245\245\346\245\246\346\245\250\346\245\251\346\245\254\346\245\260\346\245\261\346\245\262\346\245\272\346\245\273\346\245\277\346\246\200\346\246\215\346\246\222\346\246\226\346\246\230\346\246\241\346\246\245\346\246\246\346\246\250\346\246\253\n0x8fc4e0: \346\246\257\346\246\267\346\246\270\346\246\272\346\246\274\346\247\205\346\247\210\346\247\221\346\247\226\346\247\227\346\247\242\346\247\245\346\247\256\346\247\257\346\247\261\346\247\263\346\247\265\346\247\276\346\250\200\346\250\201\346\250\203\346\250\217\346\250\221\346\250\225\346\250\232\346\250\235\346\250\240\346\250\244\346\250\250\346\250\260\346\250\262\n0x8fc5a0:   \346\250\264\346\250\267\346\250\273\346\250\276\346\250\277\346\251\205\346\251\206\346\251\211\346\251\212\346\251\216\346\251\220\346\251\221\346\251\222\346\251\225\346\251\226\346\251\233\346\251\244\346\251\247\346\251\252\346\251\261\346\251\263\346\251\276\346\252\201\346\252\203\346\252\206\346\252\207\346\252\211\346\252\213\346\252\221\346\252\233\n0x8fc5c0: \346\252\236\346\252\237\346\252\245\346\252\253\346\252\257\346\252\260\346\252\261\346\252\264\346\252\275\346\252\276\346\252\277\346\253\206\346\253\211\346\253\210\346\253\214\346\253\220\346\253\224\346\253\225\346\253\226\346\253\234\346\253\235\346\253\244\346\253\247\346\253\254\346\253\260\346\253\261\346\253\262\346\253\274\346\253\275\346\254\202\346\254\203\n0x8fc5e0: \346\254\207\346\254\211\346\254\217\346\254\220\346\254\221\346\254\227\346\254\233\346\254\236\346\254\244\346\254\250\346\254\253\346\254\254\346\254\257\346\254\265\346\254\266\346\254\273\346\254\277\346\255\206\346\255\212\346\255\215\346\255\222\346\255\226\346\255\230\346\255\235\346\255\240\346\255\247\346\255\253\346\255\256\346\255\260\346\255\265\346\255\275\n0x8fc6a0:   \346\255\276\346\256\202\346\256\205\346\256\227\346\256\233\346\256\237\346\256\240\346\256\242\346\256\243\346\256\250\346\256\251\346\256\254\346\256\255\346\256\256\346\256\260\346\256\270\346\256\271\346\256\275\346\256\276\346\257\203\346\257\204\346\257\211\346\257\214\346\257\226\346\257\232\346\257\241\346\257\243\346\257\246\346\257\247\346\257\256\n0x8fc6c0: \346\257\267\346\257\271\346\257\277\346\260\202\346\260\204\346\260\205\346\260\211\346\260\215\346\260\216\346\260\220\346\260\222\346\260\231\346\260\237\346\260\246\346\260\247\346\260\250\346\260\254\346\260\256\346\260\263\346\260\265\346\260\266\346\260\272\346\260\273\346\260\277\346\261\212\346\261\213\346\261\215\346\261\217\346\261\222\346\261\224\346\261\231\n0x8fc6e0: \346\261\234\346\261\253\346\261\255\346\261\257\346\261\264\346\261\266\346\261\270\346\261\271\346\261\273\346\262\205\346\262\206\346\262\207\346\262\211\346\262\224\346\262\225\346\262\227\346\262\230\346\262\234\346\262\237\346\262\260\346\262\262\346\262\264\346\263\202\346\263\206\346\263\215\346\263\217\346\263\220\346\263\221\346\263\222\346\263\224\346\263\226\n0x8fc7a0:   \346\263\232\346\263\234\346\263\240\346\263\247\346\263\251\346\263\253\346\263\254\346\263\256\346\263\262\346\263\264\346\264\204\346\264\207\346\264\212\346\264\216\346\264\217\346\264\221\346\264\223\346\264\232\346\264\246\346\264\247\346\264\250\346\261\247\346\264\256\346\264\257\346\264\261\346\264\271\346\264\274\346\264\277\346\265\227\346\265\236\n0x8fc7c0: \346\265\241\346\265\245\346\265\247\346\265\257\346\265\260\346\265\274\346\266\202\346\266\207\346\266\221\346\266\222\346\266\224\346\266\226\346\266\227\346\266\230\346\266\252\346\266\254\346\266\264\346\266\267\346\266\271\346\266\275\346\266\277\346\267\204\346\267\210\346\267\212\346\267\216\346\267\217\346\267\226\346\267\233\346\267\235\346\267\237\346\267\240\n0x8fc7e0: \346\267\245\346\267\251\346\267\257\346\267\260\346\267\264\346\267\266\346\267\274\346\270\200\346\270\204\346\270\236\346\270\242\346\270\247\346\270\262\346\270\266\346\270\271\346\270\273\346\270\274\346\271\204\346\271\205\346\271\210\346\271\211\346\271\213\346\271\217\346\271\221\346\271\222\346\271\223\346\271\224\346\271\227\346\271\234\346\271\235\346\271\236\n0x8fc8a0:   \346\271\242\346\271\243\346\271\250\346\271\263\346\271\273\346\271\275\346\272\215\346\272\223\346\272\231\346\272\240\346\272\247\346\272\255\346\272\256\346\272\261\346\272\263\346\272\273\346\272\277\346\273\200\346\273\201\346\273\203\346\273\207\346\273\210\346\273\212\346\273\215\346\273\216\346\273\217\346\273\253\346\273\255\346\273\256\346\273\271\n0x8fc8c0: \346\273\275\346\274\204\346\274\210\346\274\212\346\274\214\346\274\215\346\274\226\346\274\230\346\274\232\346\274\233\346\274\246\346\274\251\346\274\252\346\274\257\346\274\260\346\274\263\346\274\266\346\274\273\346\274\274\346\274\255\346\275\217\346\275\221\346\275\222\346\275\223\346\275\227\346\275\231\346\275\232\346\275\235\346\275\236\346\275\241\346\275\242\n0x8fc8e0: \346\275\254\346\275\275\346\275\276\346\276\203\346\276\207\346\276\210\346\276\213\346\276\214\346\276\215\346\276\220\346\276\222\346\276\223\346\276\224\346\276\226\346\276\232\346\276\237\346\276\240\346\276\245\346\276\246\346\276\247\346\276\250\346\276\256\346\276\257\346\276\260\346\276\265\346\276\266\346\276\274\346\277\205\346\277\207\346\277\210\346\277\212\n0x8fc9a0:   \346\277\232\346\277\236\346\277\250\346\277\251\346\277\260\346\277\265\346\277\271\346\277\274\346\277\275\347\200\200\347\200\205\347\200\206\347\200\207\347\200\215\347\200\227\347\200\240\347\200\243\347\200\257\347\200\264\347\200\267\347\200\271\347\200\274\347\201\203\347\201\204\347\201\210\347\201\211\347\201\212\347\201\213\347\201\224\347\201\225\n0x8fc9c0: \347\201\236\347\201\216\347\201\244\347\201\245\347\201\254\347\201\256\347\201\265\347\201\266\347\201\276\347\202\201\347\202\205\347\202\206\347\202\224\347\202\225\347\202\226\347\202\227\347\202\230\347\202\233\347\202\244\347\202\253\347\202\260\347\202\261\347\202\264\347\202\267\347\203\212\347\203\221\347\203\223\347\203\224\347\203\225\347\203\226\347\203\230\n0x8fc9e0: \347\203\244\347\203\272\347\204\203\347\204\204\347\204\205\347\204\206\347\204\207\347\204\213\347\204\214\347\204\217\347\204\236\347\204\240\347\204\253\347\204\255\347\204\257\347\204\260\347\204\261\347\204\270\347\205\201\347\205\205\347\205\206\347\205\207\347\205\212\347\205\213\347\205\220\347\205\222\347\205\227\347\205\232\347\205\234\347\205\236\347\205\240\n0x8fcaa0:   \347\205\250\347\205\271\347\206\200\347\206\205\347\206\207\347\206\214\347\206\222\347\206\232\347\206\233\347\206\240\347\206\242\347\206\257\347\206\260\347\206\262\347\206\263\347\206\272\347\206\277\347\207\200\347\207\201\347\207\204\347\207\213\347\207\214\347\207\223\347\207\226\347\207\231\347\207\232\347\207\234\347\207\270\347\207\276\347\210\200\n0x8fcac0: \347\210\210\347\210\211\347\210\223\347\210\227\347\210\232\347\210\235\347\210\237\347\210\244\347\210\253\347\210\257\347\210\264\347\210\270\347\210\271\347\211\201\347\211\202\347\211\203\347\211\205\347\211\216\347\211\217\347\211\220\347\211\223\347\211\225\347\211\226\347\211\232\347\211\234\347\211\236\347\211\240\347\211\243\347\211\250\347\211\253\347\211\256\n0x8fcae0: \347\211\261\347\211\267\347\211\270\347\211\273\347\211\274\347\211\277\347\212\204\347\212\211\347\212\215\347\212\216\347\212\223\347\212\233\347\212\250\347\212\255\347\212\256\347\212\261\347\212\264\347\212\276\347\213\201\347\213\207\347\213\211\347\213\214\347\213\225\347\213\226\347\213\230\347\213\237\347\213\245\347\213\263\347\213\264\347\213\272\347\213\273\n0x8fcba0:   \347\213\276\347\214\202\347\214\204\347\214\205\347\214\207\347\214\213\347\214\215\347\214\222\347\214\223\347\214\230\347\214\231\347\214\236\347\214\242\347\214\244\347\214\247\347\214\250\347\214\254\347\214\261\347\214\262\347\214\265\347\214\272\347\214\273\347\214\275\347\215\203\347\215\215\347\215\220\347\215\222\347\215\226\347\215\230\347\215\235\n0x8fcbc0: \347\215\237\347\215\240\347\215\246\347\215\247\347\215\251\347\215\253\347\215\254\347\215\256\347\215\257\347\215\261\347\215\267\347\215\271\347\215\274\347\216\200\347\216\201\347\216\203\347\216\205\347\216\206\347\216\216\347\216\220\347\216\223\347\216\225\347\216\227\347\216\230\347\216\234\347\216\236\347\216\237\347\216\240\347\216\242\347\216\245\347\216\246\n0x8fcbe0: \347\216\253\347\216\255\347\216\265\347\216\267\347\216\271\347\216\274\347\216\275\347\216\277\347\217\205\347\217\206\347\217\211\347\217\213\347\217\214\347\217\217\347\217\222\347\217\223\347\217\226\347\217\231\347\217\235\347\217\241\347\217\243\347\217\246\347\217\247\347\217\251\347\217\264\347\217\265\347\217\267\347\217\271\347\217\272\347\217\273\347\217\275\n0x8fcca0:   \347\217\277\347\220\200\347\220\201\347\220\204\347\220\207\347\220\212\347\220\221\347\220\232\347\220\233\347\220\244\347\220\246\347\220\250\347\220\251\347\220\252\347\220\253\347\220\254\347\220\255\347\220\256\347\220\257\347\220\260\347\220\261\347\220\271\347\221\200\347\221\203\347\221\204\347\221\206\347\221\207\347\221\213\347\221\215\347\221\221\n0x8fccc0: \347\221\227\347\221\235\347\221\242\347\221\246\347\221\247\347\221\250\347\221\253\347\221\255\347\221\256\347\221\261\347\221\262\347\222\200\347\222\201\347\222\205\347\222\206\347\222\207\347\222\211\347\222\217\347\222\220\347\222\221\347\222\222\347\222\230\347\222\231\347\222\232\347\222\234\347\222\237\347\222\240\347\222\241\347\222\243\347\222\246\347\222\250\n0x8fcce0: \347\222\252\347\222\253\347\222\256\347\222\257\347\222\261\347\222\262\347\222\265\347\222\271\347\222\273\347\222\277\347\223\210\347\223\211\347\223\214\347\223\220\347\223\223\347\223\230\347\223\232\347\223\233\347\223\236\347\223\237\347\223\244\347\223\250\347\223\252\347\223\253\347\223\257\347\223\264\347\223\272\347\223\273\347\223\274\347\223\277\347\224\206\n0x8fcda0:   \347\224\222\347\224\226\347\224\227\347\224\240\347\224\241\347\224\244\347\224\247\347\224\251\347\224\252\347\224\257\347\224\266\347\224\271\347\224\275\347\224\276\347\224\277\347\225\200\347\225\203\347\225\207\347\225\210\347\225\216\347\225\220\347\225\222\347\225\227\347\225\236\347\225\237\347\225\241\347\225\257\347\225\261\347\225\271\347\225\272\n0x8fcdc0: \347\225\274\347\225\275\347\225\276\347\226\201\347\226\205\347\226\220\347\226\222\347\226\223\347\226\225\347\226\231\347\226\234\347\226\242\347\226\244\347\226\264\347\226\272\347\226\277\347\227\200\347\227\201\347\227\204\347\227\206\347\227\214\347\227\216\347\227\217\347\227\227\347\227\234\347\227\237\347\227\240\347\227\241\347\227\244\347\227\247\347\227\254\n0x8fcde0: \347\227\257\347\227\261\347\227\271\347\230\200\347\230\202\347\230\203\347\230\204\347\230\207\347\230\210\347\230\212\347\230\214\347\230\217\347\230\222\347\230\223\347\230\225\347\230\226\347\230\231\347\230\233\347\230\234\347\230\235\347\230\236\347\230\243\347\230\245\347\230\246\347\230\251\347\230\255\347\230\262\347\230\263\347\230\265\347\230\270\347\230\271\n0x8fcea0:   \347\230\272\347\230\274\347\231\212\347\231\200\347\231\201\347\231\203\347\231\204\347\231\205\347\231\211\347\231\213\347\231\225\347\231\231\347\231\237\347\231\244\347\231\245\347\231\255\347\231\256\347\231\257\347\231\261\347\231\264\347\232\201\347\232\205\347\232\214\347\232\215\347\232\225\347\232\233\347\232\234\347\232\235\347\232\237\347\232\240\n0x8fcec0: \347\232\243\347\232\244\347\232\245\347\232\246\347\232\247\347\232\250\347\232\252\347\232\255\347\232\275\347\233\201\347\233\205\347\233\211\347\233\213\347\233\214\347\233\216\347\233\224\347\233\231\347\233\240\347\233\246\347\233\250\347\233\254\347\233\260\347\233\261\347\233\266\347\233\271\347\233\274\347\234\200\347\234\206\347\234\212\347\234\216\347\234\222\n0x8fcee0: \347\234\225\347\234\227\347\234\231\347\234\232\347\234\234\347\234\242\347\234\250\347\234\255\347\234\256\347\234\257\347\234\264\347\234\265\347\234\266\347\234\271\347\234\275\347\234\276\347\235\202\347\235\205\347\235\206\347\235\212\347\235\215\347\235\216\347\235\217\347\235\222\347\235\226\347\235\227\347\235\234\347\235\236\347\235\237\347\235\240\347\235\242\n0x8fcfa0:   \347\235\244\347\235\247\347\235\252\347\235\254\347\235\260\347\235\262\347\235\263\347\235\264\347\235\272\347\235\275\347\236\200\347\236\204\347\236\214\347\236\215\347\236\224\347\236\225\347\236\226\347\236\232\347\236\237\347\236\242\347\236\247\347\236\252\347\236\256\347\236\257\347\236\261\347\236\265\347\236\276\347\237\203\347\237\211\347\237\221\n0x8fcfc0: \347\237\225\347\237\231\347\237\236\347\237\237\347\237\240\347\237\244\347\237\246\347\237\252\347\237\254\347\237\260\347\237\261\347\237\264\347\237\270\347\237\273\347\240\205\347\240\206\347\240\211\347\240\215\347\240\216\347\240\221\347\240\235\347\240\241\347\240\242\347\240\243\347\240\255\347\240\256\347\240\260\347\240\265\347\240\267\347\241\203\347\241\204\n0x8fcfe0: \347\241\210\347\241\214\347\241\216\347\241\222\347\241\234\347\241\236\347\241\240\347\241\241\347\241\243\347\241\244\347\241\250\347\241\252\347\241\256\347\241\272\347\241\276\347\242\212\347\242\217\347\242\224\347\242\230\347\242\241\347\242\235\347\242\236\347\242\237\347\242\244\347\242\250\347\242\254\347\242\255\347\242\260\347\242\261\347\242\262\347\242\263\n0x8fd0a0:   \347\242\273\347\242\275\347\242\277\347\243\207\347\243\210\347\243\211\347\243\214\347\243\216\347\243\222\347\243\223\347\243\225\347\243\226\347\243\244\347\243\233\347\243\237\347\243\240\347\243\241\347\243\246\347\243\252\347\243\262\347\243\263\347\244\200\347\243\266\347\243\267\347\243\272\347\243\273\347\243\277\347\244\206\347\244\214\347\244\220\n0x8fd0c0: \347\244\234\347\244\236\347\244\237\347\244\240\347\244\245\347\244\247\347\244\251\347\244\255\347\244\261\347\244\264\347\244\265\347\244\273\347\244\275\347\244\277\347\245\204\347\245\205\347\245\206\347\245\212\347\245\213\347\245\217\347\245\221\347\245\224\347\245\230\347\245\233\347\245\234\347\245\247\347\245\251\347\245\253\347\245\262\347\245\271\347\245\273\n0x8fd0e0: \347\245\276\347\246\213\347\246\214\347\246\221\347\246\223\347\246\224\347\246\225\347\246\226\347\246\230\347\246\233\347\246\234\347\246\241\347\246\250\347\246\251\347\246\253\347\246\257\347\246\261\347\246\264\347\246\270\347\246\273\347\247\202\347\247\204\347\247\207\347\247\210\347\247\212\347\247\217\347\247\224\347\247\226\347\247\232\347\247\235\347\247\236\n0x8fd1a0:   \347\247\240\347\247\242\347\247\245\347\247\252\347\247\253\347\247\255\347\247\261\347\247\270\347\247\274\347\250\202\347\250\203\347\250\207\347\250\211\347\250\212\347\250\214\347\250\221\347\250\225\347\250\233\347\250\236\347\250\241\347\250\247\347\250\253\347\250\255\347\250\257\347\250\260\347\250\264\347\250\265\347\250\270\347\250\271\347\250\272\n0x8fd1c0: \347\251\205\347\251\207\347\251\210\347\251\214\347\251\225\347\251\226\347\251\231\347\251\234\347\251\235\347\251\237\347\251\240\347\251\245\347\251\247\347\251\252\347\251\255\347\251\265\347\251\270\347\251\276\347\252\200\347\252\202\347\252\205\347\252\206\347\252\212\347\252\213\347\252\220\347\252\221\347\252\224\347\252\236\347\252\240\347\252\243\347\252\254\n0x8fd1e0: \347\252\265\347\252\271\347\252\273\347\252\274\347\253\206\347\253\211\347\253\214\347\253\216\347\253\221\347\253\233\347\253\250\347\253\251\347\253\253\347\253\254\347\253\261\347\253\264\347\253\273\347\253\275\347\253\276\347\254\207\347\254\224\347\254\237\347\254\243\347\254\247\347\254\251\347\254\252\347\254\253\347\254\255\347\254\256\347\254\257\347\254\260\n0x8fd2a0:   \347\254\261\347\254\264\347\254\275\347\254\277\347\255\200\347\255\201\347\255\207\347\255\216\347\255\225\347\255\240\347\255\244\347\255\246\347\255\251\347\255\252\347\255\255\347\255\257\347\255\262\347\255\263\347\255\267\347\256\204\347\256\211\347\256\216\347\256\220\347\256\221\347\256\226\347\256\233\347\256\236\347\256\240\347\256\245\347\256\254\n0x8fd2c0: \347\256\260\347\256\262\347\256\265\347\256\266\347\256\272\347\256\273\347\256\274\347\256\275\347\257\202\347\257\205\347\257\210\347\257\212\347\257\224\347\257\226\347\257\227\347\257\231\347\257\232\347\257\233\347\257\250\347\257\252\347\257\262\347\257\264\347\257\265\347\257\270\347\257\271\347\257\272\347\257\274\347\257\276\347\260\201\347\260\202\347\260\203\n0x8fd2e0: \347\260\206\347\260\211\347\260\213\347\260\214\347\260\216\347\260\217\347\260\231\347\260\233\347\260\240\347\260\245\347\260\246\347\260\250\347\260\254\347\260\261\347\260\263\347\260\264\347\260\266\347\260\271\347\260\272\347\261\206\347\261\212\347\261\225\347\261\221\347\261\222\347\261\223\347\261\231\347\261\232\347\261\233\347\261\234\347\261\235\347\261\236\n0x8fd3a0:   \347\261\241\347\261\243\347\261\247\347\261\251\347\261\255\347\261\256\347\261\260\347\261\262\347\261\271\347\261\274\347\261\275\347\262\206\347\262\207\347\262\217\347\262\224\347\262\236\347\262\240\347\262\246\347\262\260\347\262\266\347\262\267\347\262\272\347\262\273\347\262\274\347\262\277\347\263\204\347\263\207\347\263\210\347\263\211\347\263\215\n0x8fd3c0: \347\263\223\347\263\224\347\263\225\347\263\227\347\263\231\347\263\232\347\263\235\347\263\246\347\263\251\347\263\253\347\263\265\347\264\203\347\264\207\347\264\210\347\264\211\347\264\217\347\264\221\347\264\222\347\264\223\347\264\226\347\264\235\347\264\236\347\264\243\347\264\246\347\264\252\347\264\255\347\264\261\347\264\274\347\264\275\347\264\276\347\265\200\n0x8fd3e0: \347\265\207\347\265\210\347\265\215\347\265\221\347\265\223\347\265\227\347\265\231\347\265\232\347\265\234\347\265\235\347\265\245\347\265\247\347\265\252\347\265\260\347\265\270\347\265\272\347\265\273\347\265\277\347\266\201\347\266\202\347\266\203\347\266\205\347\266\206\347\266\210\347\266\213\347\266\214\347\266\215\347\266\221\347\266\226\347\266\227\347\266\235\n0x8fd4a0:   \347\266\236\347\266\246\347\266\247\347\266\252\347\266\263\347\266\266\347\266\267\347\266\271\347\267\202\347\267\203\347\267\204\347\267\205\347\267\206\347\267\214\347\267\215\347\267\216\347\267\227\347\267\231\347\270\200\347\267\242\347\267\245\347\267\246\347\267\252\347\267\253\347\267\255\347\267\261\347\267\265\347\267\266\347\267\271\347\267\272\n0x8fd4c0: \347\270\220\347\270\221\347\270\225\347\270\227\347\270\234\347\270\235\347\270\240\347\270\247\347\270\250\347\270\254\347\270\255\347\270\257\347\270\263\347\270\266\347\270\277\347\271\204\347\271\205\347\271\207\347\271\216\347\271\220\347\271\222\347\271\230\347\271\237\347\271\241\347\271\242\347\271\245\347\271\253\347\271\256\347\271\257\347\271\263\347\271\270\n0x8fd4e0: \347\272\201\347\272\206\347\272\207\347\272\212\347\272\215\347\272\221\347\272\225\347\272\230\347\272\232\347\272\235\347\272\236\347\274\274\347\274\273\347\274\275\347\274\276\347\274\277\347\275\203\347\275\204\347\275\207\347\275\217\347\275\222\347\275\223\347\275\233\347\275\234\347\275\235\347\275\241\347\275\243\347\275\244\347\275\245\347\275\246\347\275\255\n0x8fd5a0:   \347\275\261\347\275\275\347\275\276\347\275\277\347\276\200\347\276\213\347\276\215\347\276\217\347\276\220\347\276\221\347\276\226\347\276\227\347\276\234\347\276\241\347\276\242\347\276\246\347\276\252\347\276\255\347\276\264\347\276\274\347\276\277\347\277\200\347\277\203\347\277\210\347\277\216\347\277\217\347\277\233\347\277\237\347\277\243\347\277\245\n0x8fd5c0: \347\277\254\347\277\256\347\277\257\347\277\262\347\277\272\347\277\275\347\277\276\347\277\277\350\200\207\350\200\210\350\200\212\350\200\215\350\200\216\350\200\217\350\200\221\350\200\223\350\200\224\350\200\226\350\200\235\350\200\236\350\200\237\350\200\240\350\200\244\350\200\246\350\200\254\350\200\256\350\200\260\350\200\264\350\200\265\350\200\267\350\200\271\n0x8fd5e0: \350\200\274\350\200\276\350\201\200\350\201\204\350\201\240\350\201\244\350\201\246\350\201\255\350\201\261\350\201\265\350\202\201\350\202\210\350\202\216\350\202\234\350\202\236\350\202\246\350\202\247\350\202\253\350\202\270\350\202\271\350\203\210\350\203\215\350\203\217\350\203\222\350\203\224\350\203\225\350\203\227\350\203\230\350\203\240\350\203\255\350\203\256\n0x8fd6a0:   \350\203\260\350\203\262\350\203\263\350\203\266\350\203\271\350\203\272\350\203\276\350\204\203\350\204\213\350\204\226\350\204\227\350\204\230\350\204\234\350\204\236\350\204\240\350\204\244\350\204\247\350\204\254\350\204\260\350\204\265\350\204\272\350\204\274\350\205\205\350\205\207\350\205\212\350\205\214\350\205\222\350\205\227\350\205\240\350\205\241\n0x8fd6c0: \350\205\250\350\205\251\350\205\255\350\205\257\350\205\267\350\206\201\350\206\220\350\206\204\350\206\205\350\206\206\350\206\213\350\206\216\350\206\226\350\206\230\350\206\233\350\206\236\350\206\242\350\206\256\350\206\262\350\206\264\350\206\273\350\207\213\350\207\203\350\207\205\350\207\212\350\207\216\350\207\217\350\207\225\350\207\227\350\207\233\350\207\235\n0x8fd6e0: \350\207\241\350\207\244\350\207\253\350\207\254\350\207\260\350\207\261\350\207\262\350\207\265\350\207\266\350\207\270\350\207\271\350\207\275\350\207\277\350\210\200\350\210\203\350\210\217\350\210\223\350\210\224\350\210\231\350\210\232\350\210\235\350\210\241\350\210\242\350\210\250\350\210\262\350\210\264\350\210\272\350\211\203\350\211\204\350\211\205\350\211\206\n0x8fd7a0:   \350\211\213\350\211\216\350\211\217\350\211\221\350\211\226\350\211\234\350\211\240\350\211\243\350\211\247\350\211\255\350\211\264\350\211\273\350\211\275\350\211\277\350\212\200\350\212\201\350\212\203\350\212\204\350\212\207\350\212\211\350\212\212\350\212\216\350\212\221\350\212\224\350\212\226\350\212\230\350\212\232\350\212\233\350\212\240\350\212\241\n0x8fd7c0: \350\212\244\350\212\247\350\212\250\350\212\251\350\212\252\350\212\256\350\212\260\350\212\262\350\212\264\350\212\267\350\212\272\350\212\274\350\212\276\350\212\277\350\213\206\350\213\220\350\213\225\350\213\232\350\213\240\350\213\242\350\213\244\350\213\250\350\213\252\350\213\255\350\213\257\350\213\266\350\213\267\350\213\275\350\213\276\350\214\200\350\214\201\n0x8fd7e0: \350\214\210\350\214\212\350\214\213\350\215\224\350\214\233\350\214\235\350\214\236\350\214\237\350\214\241\350\214\242\350\214\254\350\214\255\350\214\256\350\214\260\350\214\263\350\214\267\350\214\272\350\214\274\350\214\275\350\215\202\350\215\203\350\215\204\350\215\207\350\215\215\350\215\216\350\215\221\350\215\225\350\215\226\350\215\227\350\215\260\350\215\270\n0x8fd8a0:   \350\215\275\350\215\277\350\216\200\350\216\202\350\216\204\350\216\206\350\216\215\350\216\222\350\216\224\350\216\225\350\216\230\350\216\231\350\216\233\350\216\234\350\216\235\350\216\246\350\216\247\350\216\251\350\216\254\350\216\276\350\216\277\350\217\200\350\217\207\350\217\211\350\217\217\350\217\220\350\217\221\350\217\224\350\217\235\350\215\223\n0x8fd8c0: \350\217\252\350\217\266\350\217\270\350\217\271\350\217\274\350\220\201\350\220\206\350\220\212\350\220\217\350\220\221\350\220\225\350\220\231\350\216\255\350\220\257\350\220\271\350\221\205\350\221\207\350\221\210\350\221\212\350\221\215\350\221\217\350\221\221\350\221\222\350\221\226\350\221\230\350\221\231\350\221\232\350\221\234\350\221\240\350\221\244\350\221\245\n0x8fd8e0: \350\221\252\350\221\260\350\221\263\350\221\264\350\221\266\350\221\270\350\221\274\350\221\275\350\222\201\350\222\205\350\222\222\350\222\223\350\222\225\350\222\236\350\222\246\350\222\250\350\222\251\350\222\252\350\222\257\350\222\261\350\222\264\350\222\272\350\222\275\350\222\276\350\223\200\350\223\202\350\223\207\350\223\210\350\223\214\350\223\217\350\223\223\n0x8fd9a0:   \350\223\234\350\223\247\350\223\252\350\223\257\350\223\260\350\223\261\350\223\262\350\223\267\350\224\262\350\223\272\350\223\273\350\223\275\350\224\202\350\224\203\350\224\207\350\224\214\350\224\216\350\224\220\350\224\234\350\224\236\350\224\242\350\224\243\350\224\244\350\224\245\350\224\247\350\224\252\350\224\253\350\224\257\350\224\263\350\224\264\n0x8fd9c0: \350\224\277\350\225\206\350\225\217\350\225\220\350\225\221\350\225\222\350\225\223\350\225\226\350\225\231\350\225\234\350\225\235\350\225\236\350\225\237\350\225\240\350\225\241\350\225\242\350\225\244\350\225\253\350\225\257\350\225\271\350\225\272\350\225\273\350\225\275\350\225\277\350\226\201\350\226\205\350\226\206\350\226\211\350\226\213\350\226\214\350\226\217\n0x8fd9e0: \350\226\230\350\226\235\350\226\237\350\226\240\350\226\242\350\226\245\350\226\247\350\226\264\350\226\266\350\226\267\350\226\270\350\226\274\350\226\275\350\226\276\350\226\277\350\227\202\350\227\207\350\227\212\350\227\213\350\227\216\350\226\255\350\227\230\350\227\232\350\227\237\350\227\240\350\227\246\350\227\250\350\227\255\350\227\263\350\227\266\350\227\274\n0x8fdaa0:   \350\227\277\350\230\200\350\230\204\350\230\205\350\230\215\350\230\216\350\230\220\350\230\221\350\230\222\350\230\230\350\230\231\350\230\233\350\230\236\350\230\241\350\230\247\350\230\251\350\230\266\350\230\270\350\230\272\350\230\274\350\230\275\350\231\200\350\231\202\350\231\206\350\231\222\350\231\223\350\231\226\350\231\227\350\231\230\350\231\231\n0x8fdac0: \350\231\240\350\231\241\350\231\242\350\231\243\350\231\244\350\231\251\350\231\254\350\231\257\350\231\265\350\231\266\350\231\267\350\231\272\350\232\215\350\232\221\350\232\226\350\232\230\350\232\232\350\232\234\350\232\241\350\232\246\350\232\247\350\232\250\350\232\255\350\232\261\350\232\263\350\232\264\350\232\265\350\232\267\350\232\270\350\232\271\350\232\277\n0x8fdae0: \350\233\201\350\233\203\350\233\205\350\233\221\350\233\222\350\233\225\350\233\227\350\233\232\350\233\234\350\233\240\350\233\243\350\233\245\350\233\247\350\232\210\350\233\272\350\233\274\350\233\275\350\234\204\350\234\205\350\234\207\350\234\213\350\234\216\350\234\217\350\234\220\350\234\223\350\234\224\350\234\231\350\234\236\350\234\237\350\234\241\350\234\243\n0x8fdba0:   \350\234\250\350\234\256\350\234\257\350\234\261\350\234\262\350\234\271\350\234\272\350\234\274\350\234\275\350\234\276\350\235\200\350\235\203\350\235\205\350\235\215\350\235\230\350\235\235\350\235\241\350\235\244\350\235\245\350\235\257\350\235\261\350\235\262\350\235\273\350\236\203\350\236\204\350\236\205\350\236\206\350\236\207\350\236\210\350\236\211\n0x8fdbc0: \350\236\214\350\236\220\350\236\223\350\236\225\350\236\227\350\236\230\350\236\231\350\236\236\350\236\240\350\236\243\350\236\247\350\236\254\350\236\255\350\236\256\350\236\261\350\236\265\350\236\276\350\236\277\350\237\201\350\237\210\350\237\211\350\237\212\350\237\216\350\237\225\350\237\226\350\237\231\350\237\232\350\237\234\350\237\237\350\237\242\350\237\243\n0x8fdbe0: \350\237\252\350\237\253\350\237\255\350\237\261\350\237\263\350\237\270\350\237\272\350\237\277\350\240\201\350\240\203\350\240\206\350\240\211\350\240\212\350\240\213\350\240\220\350\240\231\350\240\222\350\240\223\350\240\224\350\240\230\350\240\232\350\240\233\350\240\234\350\240\236\350\240\237\350\240\250\350\240\255\350\240\256\350\240\260\350\240\262\350\240\265\n0x8fdca0:   \350\240\272\350\240\274\350\241\201\350\241\203\350\241\205\350\241\210\350\241\211\350\241\212\350\241\213\350\241\216\350\241\221\350\241\225\350\241\226\350\241\230\350\241\232\350\241\234\350\241\237\350\241\240\350\241\244\350\241\251\350\241\261\350\241\271\350\241\273\350\242\200\350\242\230\350\242\232\350\242\233\350\242\234\350\242\237\350\242\240\n0x8fdcc0: \350\242\252\350\242\272\350\242\275\350\242\276\350\243\200\350\243\212\350\243\213\350\243\214\350\243\215\350\243\216\350\243\221\350\243\222\350\243\223\350\243\233\350\243\236\350\243\247\350\243\257\350\243\260\350\243\261\350\243\265\350\243\267\350\244\201\350\244\206\350\244\215\350\244\216\350\244\217\350\244\225\350\244\226\350\244\230\350\244\231\350\244\232\n0x8fdce0: \350\244\240\350\244\246\350\244\247\350\244\250\350\244\260\350\244\261\350\244\262\350\244\265\350\244\271\350\244\272\350\244\276\350\245\200\350\245\202\350\245\205\350\245\206\350\245\211\350\245\217\350\245\222\350\245\227\350\245\232\350\245\233\350\245\234\350\245\241\350\245\242\350\245\243\350\245\253\350\245\256\350\245\260\350\245\263\350\245\265\350\245\272\n0x8fdda0:   \350\245\273\350\245\274\350\245\275\350\246\211\350\246\215\350\246\220\350\246\224\350\246\225\350\246\233\350\246\234\350\246\237\350\246\240\350\246\245\350\246\260\350\246\264\350\246\265\350\246\266\350\246\267\350\246\274\350\247\224\350\247\225\350\247\226\350\247\227\350\247\230\350\247\245\350\247\251\350\247\253\350\247\255\350\247\261\350\247\263\n0x8fddc0: \350\247\271\350\247\275\350\247\277\350\250\204\350\250\205\350\250\207\350\250\217\350\250\221\350\250\222\350\250\224\350\250\225\350\250\236\350\250\240\350\250\242\350\250\244\350\250\246\350\250\253\350\250\254\350\250\257\350\250\265\350\250\267\350\250\275\350\250\276\350\251\200\350\251\203\350\251\205\350\251\207\350\251\211\350\251\215\350\251\216\350\251\223\n0x8fdde0: \350\251\227\350\251\230\350\251\234\350\251\235\350\251\241\350\251\245\350\251\247\350\251\265\350\251\266\350\251\267\350\251\271\350\251\272\350\251\273\350\251\276\350\251\277\350\252\200\350\252\203\350\252\206\350\252\213\350\252\217\350\252\220\350\252\222\350\252\226\350\252\227\350\252\231\350\252\237\350\252\247\350\252\251\350\252\256\350\252\257\350\252\263\n0x8fdea0:   \350\252\266\350\252\267\350\252\273\350\252\276\350\253\203\350\253\206\350\253\210\350\253\211\350\253\212\350\253\221\350\253\223\350\253\224\350\253\225\350\253\227\350\253\235\350\253\237\350\253\254\350\253\260\350\253\264\350\253\265\350\253\266\350\253\274\350\253\277\350\254\205\350\254\206\350\254\213\350\254\221\350\254\234\350\254\236\350\254\237\n0x8fdec0: \350\254\255\350\254\260\350\254\267\350\254\274\350\255\202\350\255\203\350\255\204\350\255\205\350\255\206\350\255\210\350\255\222\350\255\223\350\255\224\350\255\231\350\255\215\350\255\236\350\255\243\350\255\255\350\255\266\350\255\270\350\255\271\350\255\274\350\255\276\350\256\201\350\256\204\350\256\205\350\256\213\350\256\215\350\256\217\350\256\224\350\256\225\n0x8fdee0: \350\256\236\350\256\237\350\260\270\350\260\271\350\260\275\350\260\276\350\261\205\350\261\207\350\261\211\350\261\213\350\261\217\350\261\221\350\261\223\350\261\224\350\261\227\350\261\230\350\261\233\350\261\235\350\261\231\350\261\243\350\261\244\350\261\246\350\261\250\350\261\251\350\261\255\350\261\263\350\261\265\350\261\266\350\261\273\350\261\276\350\262\206\n0x8fdfa0:   \350\262\207\350\262\213\350\262\220\350\262\222\350\262\223\350\262\231\350\262\233\350\262\234\350\262\244\350\262\271\350\262\272\350\263\205\350\263\206\350\263\211\350\263\213\350\263\217\350\263\226\350\263\225\350\263\231\350\263\235\350\263\241\350\263\250\350\263\254\350\263\257\350\263\260\350\263\262\350\263\265\350\263\267\350\263\270\350\263\276\n0x8fdfc0: \350\264\201\350\264\203\350\264\211\350\264\222\350\264\227\350\264\233\350\265\245\350\265\251\350\265\254\350\265\256\350\265\277\350\266\202\350\266\204\350\266\210\350\266\215\350\266\220\350\266\221\350\266\225\350\266\236\350\266\237\350\266\240\350\266\246\350\266\253\350\266\254\350\266\257\350\266\262\350\266\265\350\266\267\350\266\271\350\266\273\350\267\200\n0x8fdfe0: \350\267\206\350\267\207\350\267\210\350\267\212\350\267\216\350\267\221\350\267\224\350\267\225\350\267\227\350\267\231\350\267\244\350\267\245\350\267\247\350\267\254\350\267\260\350\266\274\350\267\261\350\267\262\350\267\264\350\267\275\350\270\201\350\270\204\350\270\205\350\270\206\350\270\213\350\270\221\350\270\224\350\270\226\350\270\240\350\270\241\350\270\242\n0x8fe0a0:   \350\270\243\350\270\246\350\270\247\350\270\261\350\270\263\350\270\266\350\270\267\350\270\270\350\270\271\350\270\275\350\271\200\350\271\201\350\271\213\350\271\215\350\271\216\350\271\217\350\271\224\350\271\233\350\271\234\350\271\235\350\271\236\350\271\241\350\271\242\350\271\251\350\271\254\350\271\255\350\271\257\350\271\260\350\271\261\350\271\271\n0x8fe0c0: \350\271\273\350\272\202\350\272\203\350\272\211\350\272\220\350\272\222\350\272\225\350\272\232\350\272\233\350\272\235\350\272\236\350\272\242\350\272\247\350\272\251\350\272\255\350\272\256\350\272\263\350\272\265\350\272\272\350\272\273\350\273\200\350\273\201\350\273\203\350\273\204\350\273\207\350\273\217\350\273\221\350\273\224\350\273\234\350\273\250\350\273\256\n0x8fe0e0: \350\273\261\350\273\267\350\273\271\350\273\272\350\273\255\350\274\200\350\274\202\350\274\207\350\274\210\350\274\217\350\274\220\350\274\226\350\274\227\350\274\230\350\274\236\350\274\240\350\274\241\350\274\243\350\274\245\350\274\247\350\274\250\350\274\254\350\274\255\350\274\256\350\274\264\350\274\265\350\274\266\350\274\267\350\274\272\350\275\200\350\275\201\n0x8fe1a0:   \350\275\203\350\275\207\350\275\217\350\275\221\350\275\222\350\275\223\350\275\224\350\275\225\350\275\230\350\275\235\350\275\236\350\275\245\350\276\235\350\276\240\350\276\241\350\276\244\350\276\245\350\276\246\350\276\265\350\276\266\350\276\270\350\276\276\350\277\200\350\277\201\350\277\206\350\277\212\350\277\213\350\277\215\350\277\220\350\277\222\n0x8fe1c0: \350\277\225\350\277\240\350\277\243\350\277\244\350\277\250\350\277\256\350\277\261\350\277\265\350\277\266\350\277\273\350\277\276\351\200\202\351\200\204\351\200\210\351\200\214\351\200\230\351\200\233\351\200\250\351\200\251\351\200\257\351\200\252\351\200\254\351\200\255\351\200\263\351\200\264\351\200\267\351\200\277\351\201\203\351\201\204\351\201\214\351\201\233\n0x8fe1e0: \351\201\242\351\201\246\351\201\247\351\201\254\351\201\260\351\201\264\351\201\271\351\202\205\351\202\210\351\202\213\351\202\214\351\202\216\351\202\220\351\202\225\351\202\227\351\202\230\351\202\231\351\202\233\351\202\240\351\202\241\351\202\242\351\202\245\351\202\260\351\202\262\351\202\263\351\202\264\351\202\266\351\202\275\351\203\214\351\202\276\351\203\203\n0x8fe2a0:   \351\203\204\351\203\205\351\203\207\351\203\210\351\203\225\351\203\227\351\203\230\351\203\231\351\203\234\351\203\235\351\203\237\351\203\245\351\203\222\351\203\266\351\203\253\351\203\257\351\203\260\351\203\264\351\203\276\351\203\277\351\204\200\351\204\204\351\204\205\351\204\206\351\204\210\351\204\215\351\204\220\351\204\224\351\204\226\351\204\227\n0x8fe2c0: \351\204\232\351\204\234\351\204\236\351\204\240\351\204\245\351\204\242\351\204\243\351\204\247\351\204\251\351\204\256\351\204\257\351\204\261\351\204\264\351\204\266\351\204\267\351\204\271\351\204\272\351\204\274\351\204\275\351\205\203\351\205\207\351\205\210\351\205\217\351\205\223\351\205\227\351\205\231\351\205\232\351\205\233\351\205\241\351\205\244\351\205\247\n0x8fe2e0: \351\205\264\351\205\271\351\205\272\351\205\273\351\206\201\351\206\203\351\206\205\351\206\206\351\206\212\351\206\216\351\206\221\351\206\223\351\206\224\351\206\225\351\206\230\351\206\236\351\206\241\351\206\246\351\206\250\351\206\254\351\206\255\351\206\256\351\206\260\351\206\261\351\206\262\351\206\263\351\206\266\351\206\273\351\206\274\351\206\275\351\206\277\n0x8fe3a0:   \351\207\202\351\207\203\351\207\205\351\207\223\351\207\224\351\207\227\351\207\231\351\207\232\351\207\236\351\207\244\351\207\245\351\207\251\351\207\252\351\207\254\351\207\255\351\207\256\351\207\257\351\207\260\351\207\261\351\207\267\351\207\271\351\207\273\351\207\275\351\210\200\351\210\201\351\210\204\351\210\205\351\210\206\351\210\207\351\210\211\n0x8fe3c0: \351\210\214\351\210\220\351\210\222\351\210\223\351\210\226\351\210\230\351\210\234\351\210\235\351\210\243\351\210\244\351\210\245\351\210\246\351\210\250\351\210\256\351\210\257\351\210\260\351\210\263\351\210\265\351\210\266\351\210\270\351\210\271\351\210\272\351\210\274\351\210\276\351\211\200\351\211\202\351\211\203\351\211\206\351\211\207\351\211\212\351\211\215\n0x8fe3e0: \351\211\217\351\211\221\351\211\230\351\211\231\351\211\234\351\211\235\351\211\240\351\211\241\351\211\245\351\211\247\351\211\250\351\211\251\351\211\256\351\211\257\351\211\260\351\211\265\351\211\266\351\211\267\351\211\270\351\211\271\351\211\273\351\211\274\351\211\275\351\211\277\351\212\210\351\212\211\351\212\212\351\212\215\351\212\216\351\212\222\351\212\227\n0x8fe4a0:   \351\212\231\351\212\237\351\212\240\351\212\244\351\212\245\351\212\247\351\212\250\351\212\253\351\212\257\351\212\262\351\212\266\351\212\270\351\212\272\351\212\273\351\212\274\351\212\275\351\212\277\351\213\200\351\213\201\351\213\202\351\213\203\351\213\205\351\213\206\351\213\207\351\213\210\351\213\213\351\213\214\351\213\215\351\213\216\351\213\220\n0x8fe4c0: \351\213\225\351\213\227\351\213\230\351\213\231\351\213\234\351\213\235\351\213\237\351\213\240\351\213\241\351\213\243\351\213\245\351\213\247\351\213\250\351\213\254\351\213\256\351\213\260\351\213\271\351\213\273\351\213\277\351\214\200\351\214\202\351\214\210\351\214\215\351\214\221\351\214\224\351\214\225\351\214\234\351\214\235\351\214\236\351\214\237\351\214\241\n0x8fe4e0: \351\214\245\351\214\247\351\214\251\351\214\252\351\214\263\351\214\264\351\214\266\351\214\267\351\215\207\351\215\210\351\215\211\351\215\220\351\215\221\351\215\222\351\215\225\351\215\227\351\215\230\351\215\232\351\215\236\351\215\244\351\215\245\351\215\247\351\215\251\351\215\252\351\215\255\351\215\257\351\215\260\351\215\261\351\215\263\351\215\264\351\215\266\n0x8fe5a0:   \351\215\272\351\215\275\351\215\277\351\216\200\351\216\201\351\216\202\351\216\210\351\216\212\351\216\213\351\216\215\351\216\217\351\216\222\351\216\225\351\216\230\351\216\233\351\216\236\351\216\241\351\216\243\351\216\244\351\216\246\351\216\250\351\216\253\351\216\264\351\216\265\351\216\266\351\216\272\351\216\251\351\217\201\351\217\204\351\217\205\n0x8fe5c0: \351\217\207\351\217\211\351\217\212\351\217\213\351\217\214\351\217\215\351\217\223\351\217\231\351\217\234\351\217\236\351\217\237\351\217\242\351\217\246\351\217\247\351\217\271\351\217\267\351\217\270\351\217\272\351\217\273\351\217\275\351\220\201\351\220\202\351\220\204\351\220\210\351\220\211\351\220\215\351\220\216\351\220\217\351\220\225\351\220\226\351\220\227\n0x8fe5e0: \351\220\256\351\220\257\351\220\261\351\220\262\351\220\263\351\220\264\351\220\273\351\220\277\351\220\275\351\221\203\351\221\205\351\221\210\351\221\212\351\221\214\351\221\225\351\221\231\351\221\234\351\221\237\351\221\241\351\221\243\351\221\250\351\221\253\351\221\255\351\221\256\351\221\257\351\221\261\351\221\262\351\222\204\351\222\203\351\225\270\351\225\271\n0x8fe6a0:   \351\225\276\351\226\204\351\226\210\351\226\214\351\226\215\351\226\216\351\226\235\351\226\236\351\226\237\351\226\241\351\226\246\351\226\251\351\226\253\351\226\254\351\226\264\351\226\266\351\226\272\351\226\275\351\226\277\351\227\206\351\227\210\351\227\211\351\227\213\351\227\220\351\227\221\351\227\222\351\227\223\351\227\231\351\227\232\351\227\235\n0x8fe6c0: \351\227\237\351\227\240\351\227\244\351\227\246\351\230\235\351\230\236\351\230\242\351\230\244\351\230\245\351\230\246\351\230\254\351\230\261\351\230\263\351\230\267\351\230\270\351\230\271\351\230\272\351\230\274\351\230\275\351\231\201\351\231\222\351\231\224\351\231\226\351\231\227\351\231\230\351\231\241\351\231\256\351\231\264\351\231\273\351\231\274\351\231\276\n0x8fe6e0: \351\232\201\351\232\202\351\232\203\351\232\204\351\232\211\351\232\221\351\232\226\351\232\232\351\232\235\351\232\237\351\232\244\351\232\245\351\232\246\351\232\251\351\232\256\351\232\257\351\232\263\351\232\272\351\233\212\351\233\222\345\266\262\351\233\230\351\233\232\351\233\235\351\233\236\351\233\237\351\233\251\351\233\257\351\233\261\351\233\272\351\234\202\n0x8fe7a0:   \351\234\203\351\234\205\351\234\211\351\234\232\351\234\233\351\234\235\351\234\241\351\234\242\351\234\243\351\234\250\351\234\261\351\234\263\351\235\201\351\235\203\351\235\212\351\235\216\351\235\217\351\235\225\351\235\227\351\235\230\351\235\232\351\235\233\351\235\243\351\235\247\351\235\252\351\235\256\351\235\263\351\235\266\351\235\267\351\235\270\n0x8fe7c0: \351\235\275\351\235\277\351\236\200\351\236\211\351\236\225\351\236\226\351\236\227\351\236\231\351\236\232\351\236\236\351\236\237\351\236\242\351\236\254\351\236\256\351\236\261\351\236\262\351\236\265\351\236\266\351\236\270\351\236\271\351\236\272\351\236\274\351\236\276\351\236\277\351\237\201\351\237\204\351\237\205\351\237\207\351\237\211\351\237\212\351\237\214\n0x8fe7e0: \351\237\216\351\237\220\351\237\221\351\237\224\351\237\227\351\237\230\351\237\231\351\237\235\351\237\236\351\237\240\351\237\233\351\237\241\351\237\244\351\237\257\351\237\261\351\237\264\351\237\267\351\237\270\351\237\272\351\240\207\351\240\212\351\240\231\351\240\215\351\240\216\351\240\224\351\240\226\351\240\234\351\240\236\351\240\240\351\240\243\351\240\246\n0x8fe8a0:   \351\240\253\351\240\256\351\240\257\351\240\260\351\240\262\351\240\263\351\240\265\351\240\245\351\240\276\351\241\204\351\241\207\351\241\212\351\241\221\351\241\222\351\241\223\351\241\226\351\241\227\351\241\231\351\241\232\351\241\242\351\241\243\351\241\245\351\241\246\351\241\252\351\241\254\351\242\253\351\242\255\351\242\256\351\242\260\351\242\264\n0x8fe8c0: \351\242\270\351\242\272\351\242\273\351\242\277\351\243\202\351\243\205\351\243\210\351\243\214\351\243\241\351\243\243\351\243\245\351\243\246\351\243\247\351\243\252\351\243\263\351\243\266\351\244\202\351\244\207\351\244\210\351\244\221\351\244\225\351\244\226\351\244\227\351\244\232\351\244\233\351\244\234\351\244\237\351\244\242\351\244\246\351\244\247\351\244\253\n0x8fe8e0: \351\244\262\351\244\263\351\244\264\351\244\265\351\244\271\351\244\272\351\244\273\351\244\274\351\245\200\351\245\201\351\245\206\351\245\207\351\245\210\351\245\215\351\245\216\351\245\224\351\245\230\351\245\231\351\245\233\351\245\234\351\245\236\351\245\237\351\245\240\351\246\233\351\246\235\351\246\237\351\246\246\351\246\260\351\246\261\351\246\262\351\246\265\n0x8fe9a0:   \351\246\271\351\246\272\351\246\275\351\246\277\351\247\203\351\247\211\351\247\223\351\247\224\351\247\231\351\247\232\351\247\234\351\247\236\351\247\247\351\247\252\351\247\253\351\247\254\351\247\260\351\247\264\351\247\265\351\247\271\351\247\275\351\247\276\351\250\202\351\250\203\351\250\204\351\250\213\351\250\214\351\250\220\351\250\221\351\250\226\n0x8fe9c0: \351\250\240\351\250\242\351\250\243\351\250\244\351\250\247\351\250\255\351\250\256\351\250\263\351\250\265\351\250\266\351\250\270\351\251\207\351\251\201\351\251\204\351\251\212\351\251\213\351\251\214\351\251\216\351\251\221\351\251\224\351\251\226\351\251\235\351\252\252\351\252\254\351\252\256\351\252\257\351\252\262\351\252\264\351\252\265\351\252\266\351\252\271\n0x8fe9e0: \351\252\276\351\252\277\351\253\201\351\253\203\351\253\206\351\253\210\351\253\216\351\253\220\351\253\222\351\253\225\351\253\226\351\253\227\351\253\233\351\253\234\351\253\240\351\253\244\351\253\245\351\253\247\351\253\251\351\253\254\351\253\262\351\253\263\351\253\265\351\253\271\351\253\272\351\253\275\351\253\277\351\254\200\351\254\201\351\254\202\351\254\203\n0x8feaa0:   \351\254\204\351\254\205\351\254\210\351\254\211\351\254\213\351\254\214\351\254\215\351\254\216\351\254\220\351\254\222\351\254\226\351\254\231\351\254\233\351\254\234\351\254\240\351\254\246\351\254\253\351\254\255\351\254\263\351\254\264\351\254\265\351\254\267\351\254\271\351\254\272\351\254\275\351\255\210\351\255\213\351\255\214\351\255\225\351\255\226\n0x8feac0: \351\255\233\351\255\236\351\255\241\351\255\243\351\255\245\351\255\246\351\255\250\351\255\252\351\255\253\351\255\254\351\255\255\351\255\256\351\255\263\351\255\265\351\255\267\351\255\270\351\255\271\351\255\277\351\256\200\351\256\204\351\256\205\351\256\206\351\256\207\351\256\211\351\256\212\351\256\213\351\256\215\351\256\217\351\256\220\351\256\224\351\256\232\n0x8feae0: \351\256\236\351\256\246\351\256\247\351\256\251\351\256\254\351\256\260\351\256\261\351\256\262\351\256\267\351\256\270\351\256\273\351\256\274\351\256\276\351\256\277\351\257\201\351\257\207\351\257\210\351\257\216\351\257\220\351\257\227\351\257\230\351\257\235\351\257\237\351\257\245\351\257\247\351\257\252\351\257\253\351\257\257\351\257\263\351\257\267\351\257\270\n0x8feba0:   \351\257\271\351\257\272\351\257\275\351\257\277\351\260\200\351\260\202\351\260\213\351\260\217\351\260\221\351\260\226\351\260\230\351\260\231\351\260\232\351\260\234\351\260\236\351\260\242\351\260\243\351\260\246\351\260\247\351\260\250\351\260\251\351\260\252\351\260\261\351\260\265\351\260\266\351\260\267\351\260\275\351\261\201\351\261\203\351\261\204\n0x8febc0: \351\261\211\351\261\212\351\261\216\351\261\217\351\261\220\351\261\223\351\261\224\351\261\226\351\261\230\351\261\233\351\261\235\351\261\236\351\261\237\351\261\243\351\261\251\351\261\252\351\261\234\351\261\253\351\261\250\351\261\256\351\261\260\351\261\262\351\261\265\351\261\267\351\261\273\351\263\246\351\263\262\351\263\267\351\263\271\351\264\213\351\264\202\n0x8febe0: \351\264\227\351\264\230\351\264\234\351\264\235\351\264\236\351\264\257\351\264\260\351\264\262\351\264\263\351\264\264\351\264\272\351\264\274\351\265\205\351\264\275\351\265\202\351\265\203\351\265\207\351\265\212\351\265\223\351\265\224\351\265\237\351\265\243\351\265\242\351\265\245\351\265\251\351\265\252\351\265\253\351\265\260\351\265\266\351\265\267\351\265\273\n0x8feca0:   \351\265\274\351\265\276\351\266\203\351\266\204\351\266\206\351\266\212\351\266\215\351\266\216\351\266\222\351\266\223\351\266\225\351\266\226\351\266\227\351\266\230\351\266\241\351\266\252\351\266\254\351\266\256\351\266\261\351\266\265\351\266\271\351\266\274\351\266\277\351\267\203\351\267\207\351\267\211\351\267\212\351\267\224\351\267\225\351\267\226\n0x8fecc0: \351\267\232\351\267\236\351\267\237\351\267\240\351\267\245\351\267\247\351\267\251\351\267\253\351\267\256\351\267\260\351\267\263\351\267\264\351\267\276\351\270\212\351\270\202\351\270\207\351\270\216\351\270\220\351\270\221\351\270\222\351\270\225\351\270\226\351\270\231\351\270\234\351\270\235\351\271\272\351\271\273\351\271\274\351\272\200\351\272\202\351\272\203\n0x8fece0: \351\272\205\351\272\207\351\272\216\351\272\217\351\272\226\351\272\230\351\272\233\351\272\236\351\272\244\351\272\250\351\272\254\351\272\256\351\272\257\351\272\260\351\272\263\351\272\264\351\272\265\351\273\206\351\273\210\351\273\213\351\273\225\351\273\237\351\273\244\351\273\247\351\273\254\351\273\255\351\273\256\351\273\260\351\273\261\351\273\262\351\273\265\n0x8feda0:   \351\273\270\351\273\277\351\274\202\351\274\203\351\274\211\351\274\217\351\274\220\351\274\221\351\274\222\351\274\224\351\274\226\351\274\227\351\274\231\351\274\232\351\274\233\351\274\237\351\274\242\351\274\246\351\274\252\351\274\253\351\274\257\351\274\261\351\274\262\351\274\264\351\274\267\351\274\271\351\274\272\351\274\274\351\274\275\351\274\277\n0x8fedc0: \351\275\203\351\275\204\351\275\205\351\275\206\351\275\207\351\275\223\351\275\225\351\275\226\351\275\227\351\275\230\351\275\232\351\275\235\351\275\236\351\275\250\351\275\251\351\275\255\351\275\256\351\275\257\351\275\260\351\275\261\351\275\263\351\275\265\351\275\272\351\275\275\351\276\217\351\276\220\351\276\221\351\276\222\351\276\224\351\276\226\351\276\227\n0x8fede0: \351\276\241\351\276\242\351\276\243\351\276\245                                                      \n0x8feea0:                                                               \n0x8feec0:                                                               \n0x8feee0:                                                               \n0x8fefa0:                                                               \n0x8fefc0:                                                               \n0x8fefe0:                                                               \n0x8ff0a0:                                                               \n0x8ff0c0:                                                               \n0x8ff0e0:                                                               \n0x8ff1a0:                                                               \n0x8ff1c0:                                                               \n0x8ff1e0:                                                               \n0x8ff2a0:                                                               \n0x8ff2c0:                                                               \n0x8ff2e0:                                                               \n0x8ff3a0:                                                               \n0x8ff3c0:                                                               \n0x8ff3e0:                                                               \n0x8ff4a0:                                                               \n0x8ff4c0:                                                               \n0x8ff4e0:                                                               \n0x8ff5a0:                                                               \n0x8ff5c0:                                                               \n0x8ff5e0:                                                               \n0x8ff6a0:                                                               \n0x8ff6c0:                                                               \n0x8ff6e0:                                                               \n0x8ff7a0:                                                               \n0x8ff7c0:                                                               \n0x8ff7e0:                                                               \n0x8ff8a0:                                                               \n0x8ff8c0:                                                               \n0x8ff8e0:                                                               \n0x8ff9a0:                                                               \n0x8ff9c0:                                                               \n0x8ff9e0:                                                               \n0x8ffaa0:                                                               \n0x8ffac0:                                                               \n0x8ffae0:                                                               \n0x8ffba0:                                                               \n0x8ffbc0:                                                               \n0x8ffbe0:                                                               \n0x8ffca0:                                                               \n0x8ffcc0:                                                               \n0x8ffce0:                                                               \n0x8ffda0:                                                               \n0x8ffdc0:                                                               \n0x8ffde0:                                                               \n0x8ffea0:                                                               \n0x8ffec0:                                                               \n0x8ffee0:                                                               \n0x8fffa0:                                                               \n0x8fffc0:                                                               \n0x8fffe0:                                                               \n",
 "f07b6eea8c8e76eb45715c122bda46c0" => "0x8fa0a0:                                                               \n0x8fa0c0:                                                               \n0x8fa0e0:                                                               \n0x8fa1a0:                                                               \n0x8fa1c0:                                                               \n0x8fa1e0:                                                               \n0x8fa2a0:                               \217\242\257\217\242\260\217\242\261\217\242\262\217\242\263\217\242\264\217\242\265\217\242\266~\217\242\270\217\242\271          \n0x8fa2c0:     \217\242\302\217\242\303\217\242\304                                                    \n0x8fa2e0:                       \217\242\353\217\242\354\217\242\355\217\242\356\217\242\357\217\242\360\217\242\361                          \n0x8fa3a0:                                                               \n0x8fa3c0:                                                               \n0x8fa3e0:                                                               \n0x8fa4a0:                                                               \n0x8fa4c0:                                                               \n0x8fa4e0:                                                               \n0x8fa5a0:                                                               \n0x8fa5c0:                                                               \n0x8fa5e0:                                                               \n0x8fa6a0:                                                               \n0x8fa6c0:                                                               \n0x8fa6e0:   \217\246\341\217\246\342\217\246\343\217\246\344\217\246\345  \217\246\347  \217\246\351\217\246\352  \217\246\354        \217\246\361\217\246\362\217\246\363\217\246\364\217\246\365\217\246\366\217\246\367\217\246\370\217\246\371\217\246\372\217\246\373\217\246\374    \n0x8fa7a0:                                                               \n0x8fa7c0:     \217\247\302\217\247\303\217\247\304\217\247\305\217\247\306\217\247\307\217\247\310\217\247\311\217\247\312\217\247\313\217\247\314\217\247\315\217\247\316                                \n0x8fa7e0:                                     \217\247\362\217\247\363\217\247\364\217\247\365\217\247\366\217\247\367\217\247\370\217\247\371\217\247\372\217\247\373\217\247\374\217\247\375\217\247\376\n0x8fa8a0:                                                               \n0x8fa8c0:                                                               \n0x8fa8e0:                                                               \n0x8fa9a0:   \217\251\241\217\251\242  \217\251\244  \217\251\246  \217\251\250\217\251\251  \217\251\253\217\251\254\217\251\255  \217\251\257\217\251\260                            \n0x8fa9c0:   \217\251\301\217\251\302\217\251\303\217\251\304\217\251\305\217\251\306\217\251\307\217\251\310\217\251\311\217\251\312\217\251\313\217\251\314\217\251\315\217\251\316\217\251\317\217\251\320                            \n0x8fa9e0:                                                               \n0x8faaa0:   \217\252\241\217\252\242\217\252\243\217\252\244\217\252\245\217\252\246\217\252\247\217\252\250\217\252\251\217\252\252\217\252\253\217\252\254\217\252\255\217\252\256\217\252\257\217\252\260\217\252\261\217\252\262\217\252\263\217\252\264\217\252\265\217\252\266\217\252\267\217\252\270  \217\252\272\217\252\273\217\252\274\217\252\275\217\252\276\n0x8faac0: \217\252\300\217\252\301\217\252\302\217\252\303\217\252\304\217\252\305\217\252\306\217\252\307\217\252\310\217\252\311\217\252\312\217\252\313\217\252\314\217\252\315\217\252\316\217\252\317\217\252\320\217\252\321\217\252\322\217\252\323\217\252\324\217\252\325\217\252\326\217\252\327\217\252\330\217\252\331\217\252\332\217\252\333\217\252\334\217\252\335\217\252\336\n0x8faae0: \217\252\340\217\252\341\217\252\342\217\252\343\217\252\344\217\252\345\217\252\346\217\252\347\217\252\350\217\252\351\217\252\352\217\252\353\217\252\354\217\252\355\217\252\356\217\252\357\217\252\360\217\252\361\217\252\362\217\252\363\217\252\364\217\252\365\217\252\366\217\252\367              \n0x8faba0:   \217\253\241\217\253\242\217\253\243\217\253\244\217\253\245\217\253\246\217\253\247\217\253\250\217\253\251\217\253\252\217\253\253\217\253\254\217\253\255\217\253\256\217\253\257\217\253\260\217\253\261\217\253\262\217\253\263\217\253\264\217\253\265\217\253\266\217\253\267\217\253\270\217\253\271\217\253\272\217\253\273  \217\253\275\217\253\276\n0x8fabc0: \217\253\300\217\253\301\217\253\302\217\253\303  \217\253\305\217\253\306\217\253\307\217\253\310\217\253\311\217\253\312\217\253\313\217\253\314\217\253\315\217\253\316\217\253\317\217\253\320\217\253\321\217\253\322\217\253\323\217\253\324\217\253\325\217\253\326\217\253\327\217\253\330\217\253\331\217\253\332\217\253\333\217\253\334\217\253\335\217\253\336\n0x8fabe0: \217\253\340\217\253\341\217\253\342\217\253\343\217\253\344\217\253\345\217\253\346\217\253\347\217\253\350\217\253\351\217\253\352\217\253\353\217\253\354\217\253\355\217\253\356\217\253\357\217\253\360\217\253\361\217\253\362\217\253\363\217\253\364\217\253\365\217\253\366\217\253\367              \n0x8faca0:                                                               \n0x8facc0:                                                               \n0x8face0:                                                               \n0x8fada0:                                                               \n0x8fadc0:                                                               \n0x8fade0:                                                               \n0x8faea0:                                                               \n0x8faec0:                                                               \n0x8faee0:                                                               \n0x8fafa0:                                                               \n0x8fafc0:                                                               \n0x8fafe0:                                                               \n0x8fb0a0:   \217\260\241\217\260\242\217\260\243\217\260\244\217\260\245\217\260\246\217\260\247\217\260\250\217\260\251\217\260\252\217\260\253\217\260\254\217\260\255\217\260\256\217\260\257\217\260\260\217\260\261\217\260\262\217\260\263\217\260\264\217\260\265\217\260\266\217\260\267\217\260\270\217\260\271\217\260\272\217\260\273\217\260\274\217\260\275\217\260\276\n0x8fb0c0: \217\260\300\217\260\301\217\260\302\217\260\303\217\260\304\217\260\305\217\260\306\217\260\307\217\260\310\217\260\311\217\260\312\217\260\313\217\260\314\217\260\315\217\260\316\217\260\317\217\260\320\217\260\321\217\260\322\217\260\323\217\260\324\217\260\325\217\260\326\217\260\327\217\260\330\217\260\331\217\260\332\217\260\333\217\260\334\217\260\335\217\260\336\n0x8fb0e0: \217\260\340\217\260\341\217\260\342\217\260\343\217\260\344\217\260\345\217\260\346\217\260\347\217\260\350\217\260\351\217\260\352\217\260\353\217\260\354\217\260\355\217\260\356\217\260\357\217\260\360\217\260\361\217\260\362\217\260\363\217\260\364\217\260\365\217\260\366\217\260\367\217\260\370\217\260\371\217\260\372\217\260\373\217\260\374\217\260\375\217\260\376\n0x8fb1a0:   \217\261\241\217\261\242\217\261\243\217\261\244\217\261\245\217\261\246\217\261\247\217\261\250\217\261\251\217\261\252\217\261\253\217\261\254\217\261\255\217\261\256\217\261\257\217\261\260\217\261\261\217\261\262\217\261\263\217\261\264\217\261\265\217\261\266\217\261\267\217\261\270\217\261\271\217\261\272\217\261\273\217\261\274\217\261\275\217\261\276\n0x8fb1c0: \217\261\300\217\261\301\217\261\302\217\261\303\217\261\304\217\261\305\217\261\306\217\261\307\217\261\310\217\261\311\217\261\312\217\261\313\217\261\314\217\261\315\217\261\316\217\261\317\217\261\320\217\261\321\217\261\322\217\261\323\217\261\324\217\261\325\217\261\326\217\261\327\217\261\330\217\261\331\217\261\332\217\261\333\217\261\334\217\261\335\217\261\336\n0x8fb1e0: \217\261\340\217\261\341\217\261\342\217\261\343\217\261\344\217\261\345\217\261\346\217\261\347\217\261\350\217\261\351\217\261\352\217\261\353\217\261\354\217\261\355\217\261\356\217\261\357\217\261\360\217\261\361\217\261\362\217\261\363\217\261\364\217\261\365\217\261\366\217\261\367\217\261\370\217\261\371\217\261\372\217\261\373\217\261\374\217\261\375\217\261\376\n0x8fb2a0:   \217\262\241\217\262\242\217\262\243\217\262\244\217\262\245\217\262\246\217\262\247\217\262\250\217\262\251\217\262\252\217\262\253\217\262\254\217\262\255\217\262\256\217\262\257\217\262\260\217\262\261\217\262\262\217\262\263\217\262\264\217\262\265\217\262\266\217\262\267\217\262\270\217\262\271\217\262\272\217\262\273\217\262\274\217\262\275\217\262\276\n0x8fb2c0: \217\262\300\217\262\301\217\262\302\217\262\303\217\262\304\217\262\305\217\262\306\217\262\307\217\262\310\217\262\311\217\262\312\217\262\313\217\262\314\217\262\315\217\262\316\217\262\317\217\262\320\217\262\321\217\262\322\217\262\323\217\262\324\217\262\325\217\262\326\217\262\327\217\262\330\217\262\331\217\262\332\217\262\333\217\262\334\217\262\335\217\262\336\n0x8fb2e0: \217\262\340\217\262\341\217\262\342\217\262\343\217\262\344\217\262\345\217\262\346\217\262\347\217\262\350\217\262\351\217\262\352\217\262\353\217\262\354\217\262\355\217\262\356\217\262\357\217\262\360\217\262\361\217\262\362\217\262\363\217\262\364\217\262\365\217\262\366\217\262\367\217\262\370\217\262\371\217\262\372\217\262\373\217\262\374\217\262\375\217\262\376\n0x8fb3a0:   \217\263\241\217\263\242\217\263\243\217\263\244\217\263\245\217\263\246\217\263\247\217\263\250\217\263\251\217\263\252\217\263\253\217\263\254\217\263\255\217\263\256\217\263\257\217\263\260\217\263\261\217\263\262\217\263\263\217\263\264\217\263\265\217\263\266\217\263\267\217\263\270\217\263\271\217\263\272\217\263\273\217\263\274\217\263\275\217\263\276\n0x8fb3c0: \217\263\300\217\263\301\217\263\302\217\263\303\217\263\304\217\263\305\217\263\306\217\263\307\217\263\310\217\263\311\217\263\312\217\263\313\217\263\314\217\263\315\217\263\316\217\263\317\217\263\320\217\263\321\217\263\322\217\263\323\217\263\324\217\263\325\217\263\326\217\263\327\217\263\330\217\263\331\217\263\332\217\263\333\217\263\334\217\263\335\217\263\336\n0x8fb3e0: \217\263\340\217\263\341\217\263\342\217\263\343\217\263\344\217\263\345\217\263\346\217\263\347\217\263\350\217\263\351\217\263\352\217\263\353\217\263\354\217\263\355\217\263\356\217\263\357\217\263\360\217\263\361\217\263\362\217\263\363\217\263\364\217\263\365\217\263\366\217\263\367\217\263\370\217\263\371\217\263\372\217\263\373\217\263\374\217\263\375\217\263\376\n0x8fb4a0:   \217\264\241\217\264\242\217\264\243\217\264\244\217\264\245\217\264\246\217\264\247\217\264\250\217\264\251\217\264\252\217\264\253\217\264\254\217\264\255\217\264\256\217\264\257\217\264\260\217\264\261\217\264\262\217\264\263\217\264\264\217\264\265\217\264\266\217\264\267\217\264\270\217\264\271\217\264\272\217\264\273\217\264\274\217\264\275\217\264\276\n0x8fb4c0: \217\264\300\217\264\301\217\264\302\217\264\303\217\264\304\217\264\305\217\264\306\217\264\307\217\264\310\217\264\311\217\264\312\217\264\313\217\264\314\217\264\315\217\264\316\217\264\317\217\264\320\217\264\321\217\264\322\217\264\323\217\264\324\217\264\325\217\264\326\217\264\327\217\264\330\217\264\331\217\264\332\217\264\333\217\264\334\217\264\335\217\264\336\n0x8fb4e0: \217\264\340\217\264\341\217\264\342\217\264\343\217\264\344\217\264\345\217\264\346\217\264\347\217\264\350\217\264\351\217\264\352\217\264\353\217\264\354\217\264\355\217\264\356\217\264\357\217\264\360\217\264\361\217\264\362\217\264\363\217\264\364\217\264\365\217\264\366\217\264\367\217\264\370\217\264\371\217\264\372\217\264\373\217\264\374\217\264\375\217\264\376\n0x8fb5a0:   \217\265\241\217\265\242\217\265\243\217\265\244\217\265\245\217\265\246\217\265\247\217\265\250\217\265\251\217\265\252\217\265\253\217\265\254\217\265\255\217\265\256\217\265\257\217\265\260\217\265\261\217\265\262\217\265\263\217\265\264\217\265\265\217\265\266\217\265\267\217\265\270\217\265\271\217\265\272\217\265\273\217\265\274\217\265\275\217\265\276\n0x8fb5c0: \217\265\300\217\265\301\217\265\302\217\265\303\217\265\304\217\265\305\217\265\306\217\265\307\217\265\310\217\265\311\217\265\312\217\265\313\217\265\314\217\265\315\217\265\316\217\265\317\217\265\320\217\265\321\217\265\322\217\265\323\217\265\324\217\265\325\217\265\326\217\265\327\217\265\330\217\265\331\217\265\332\217\265\333\217\265\334\217\265\335\217\265\336\n0x8fb5e0: \217\265\340\217\265\341\217\265\342\217\265\343\217\265\344\217\265\345\217\265\346\217\265\347\217\265\350\217\265\351\217\265\352\217\265\353\217\265\354\217\265\355\217\265\356\217\265\357\217\265\360\217\265\361\217\265\362\217\265\363\217\265\364\217\265\365\217\265\366\217\265\367\217\265\370\217\265\371\217\265\372\217\265\373\217\265\374\217\265\375\217\265\376\n0x8fb6a0:   \217\266\241\217\266\242\217\266\243\217\266\244\217\266\245\217\266\246\217\266\247\217\266\250\217\266\251\217\266\252\217\266\253\217\266\254\217\266\255\217\266\256\217\266\257\217\266\260\217\266\261\217\266\262\217\266\263\217\266\264\217\266\265\217\266\266\217\266\267\217\266\270\217\266\271\217\266\272\217\266\273\217\266\274\217\266\275\217\266\276\n0x8fb6c0: \217\266\300\217\266\301\217\266\302\217\266\303\217\266\304\217\266\305\217\266\306\217\266\307\217\266\310\217\266\311\217\266\312\217\266\313\217\266\314\217\266\315\217\266\316\217\266\317\217\266\320\217\266\321\217\266\322\217\266\323\217\266\324\217\266\325\217\266\326\217\266\327\217\266\330\217\266\331\217\266\332\217\266\333\217\266\334\217\266\335\217\266\336\n0x8fb6e0: \217\266\340\217\266\341\217\266\342\217\266\343\217\266\344\217\266\345\217\266\346\217\266\347\217\266\350\217\266\351\217\266\352\217\266\353\217\266\354\217\266\355\217\266\356\217\266\357\217\266\360\217\266\361\217\266\362\217\266\363\217\266\364\217\266\365\217\266\366\217\266\367\217\266\370\217\266\371\217\266\372\217\266\373\217\266\374\217\266\375\217\266\376\n0x8fb7a0:   \217\267\241\217\267\242\217\267\243\217\267\244\217\267\245\217\267\246\217\267\247\217\267\250\217\267\251\217\267\252\217\267\253\217\267\254\217\267\255\217\267\256\217\267\257\217\267\260\217\267\261\217\267\262\217\267\263\217\267\264\217\267\265\217\267\266\217\267\267\217\267\270\217\267\271\217\267\272\217\267\273\217\267\274\217\267\275\217\267\276\n0x8fb7c0: \217\267\300\217\267\301\217\267\302\217\267\303\217\267\304\217\267\305\217\267\306\217\267\307\217\267\310\217\267\311\217\267\312\217\267\313\217\267\314\217\267\315\217\267\316\217\267\317\217\267\320\217\267\321\217\267\322\217\267\323\217\267\324\217\267\325\217\267\326\217\267\327\217\267\330\217\267\331\217\267\332\217\267\333\217\267\334\217\267\335\217\267\336\n0x8fb7e0: \217\267\340\217\267\341\217\267\342\217\267\343\217\267\344\217\267\345\217\267\346\217\267\347\217\267\350\217\267\351\217\267\352\217\267\353\217\267\354\217\267\355\217\267\356\217\267\357\217\267\360\217\267\361\217\267\362\217\267\363\217\267\364\217\267\365\217\267\366\217\267\367\217\267\370\217\267\371\217\267\372\217\267\373\217\267\374\217\267\375\217\267\376\n0x8fb8a0:   \217\270\241\217\270\242\217\270\243\217\270\244\217\270\245\217\270\246\217\270\247\217\270\250\217\270\251\217\270\252\217\270\253\217\270\254\217\270\255\217\270\256\217\270\257\217\270\260\217\270\261\217\270\262\217\270\263\217\270\264\217\270\265\217\270\266\217\270\267\217\270\270\217\270\271\217\270\272\217\270\273\217\270\274\217\270\275\217\270\276\n0x8fb8c0: \217\270\300\217\270\301\217\270\302\217\270\303\217\270\304\217\270\305\217\270\306\217\270\307\217\270\310\217\270\311\217\270\312\217\270\313\217\270\314\217\270\315\217\270\316\217\270\317\217\270\320\217\270\321\217\270\322\217\270\323\217\270\324\217\270\325\217\270\326\217\270\327\217\270\330\217\270\331\217\270\332\217\270\333\217\270\334\217\270\335\217\270\336\n0x8fb8e0: \217\270\340\217\270\341\217\270\342\217\270\343\217\270\344\217\270\345\217\270\346\217\270\347\217\270\350\217\270\351\217\270\352\217\270\353\217\270\354\217\270\355\217\270\356\217\270\357\217\270\360\217\270\361\217\270\362\217\270\363\217\270\364\217\270\365\217\270\366\217\270\367\217\270\370\217\270\371\217\270\372\217\270\373\217\270\374\217\270\375\217\270\376\n0x8fb9a0:   \217\271\241\217\271\242\217\271\243\217\271\244\217\271\245\217\271\246\217\271\247\217\271\250\217\271\251\217\271\252\217\271\253\217\271\254\217\271\255\217\271\256\217\271\257\217\271\260\217\271\261\217\271\262\217\271\263\217\271\264\217\271\265\217\271\266\217\271\267\217\271\270\217\271\271\217\271\272\217\271\273\217\271\274\217\271\275\217\271\276\n0x8fb9c0: \217\271\300\217\271\301\217\271\302\217\271\303\217\271\304\217\271\305\217\271\306\217\271\307\217\271\310\217\271\311\217\271\312\217\271\313\217\271\314\217\271\315\217\271\316\217\271\317\217\271\320\217\271\321\217\271\322\217\271\323\217\271\324\217\271\325\217\271\326\217\271\327\217\271\330\217\271\331\217\271\332\217\271\333\217\271\334\217\271\335\217\271\336\n0x8fb9e0: \217\271\340\217\271\341\217\271\342\217\271\343\217\271\344\217\271\345\217\271\346\217\271\347\217\271\350\217\271\351\217\271\352\217\271\353\217\271\354\217\271\355\217\271\356\217\271\357\217\271\360\217\271\361\217\271\362\217\271\363\217\271\364\217\271\365\217\271\366\217\271\367\217\271\370\217\271\371\217\271\372\217\271\373\217\271\374\217\271\375\217\271\376\n0x8fbaa0:   \217\272\241\217\272\242\217\272\243\217\272\244\217\272\245\217\272\246\217\272\247\217\272\250\217\272\251\217\272\252\217\272\253\217\272\254\217\272\255\217\272\256\217\272\257\217\272\260\217\272\261\217\272\262\217\272\263\217\272\264\217\272\265\217\272\266\217\272\267\217\272\270\217\272\271\217\272\272\217\272\273\217\272\274\217\272\275\217\272\276\n0x8fbac0: \217\272\300\217\272\301\217\272\302\217\272\303\217\272\304\217\272\305\217\272\306\217\272\307\217\272\310\217\272\311\217\272\312\217\272\313\217\272\314\217\272\315\217\272\316\217\272\317\217\272\320\217\272\321\217\272\322\217\272\323\217\272\324\217\272\325\217\272\326\217\272\327\217\272\330\217\272\331\217\272\332\217\272\333\217\272\334\217\272\335\217\272\336\n0x8fbae0: \217\272\340\217\272\341\217\272\342\217\272\343\217\272\344\217\272\345\217\272\346\217\272\347\217\272\350\217\272\351\217\272\352\217\272\353\217\272\354\217\272\355\217\272\356\217\272\357\217\272\360\217\272\361\217\272\362\217\272\363\217\272\364\217\272\365\217\272\366\217\272\367\217\272\370\217\272\371\217\272\372\217\272\373\217\272\374\217\272\375\217\272\376\n0x8fbba0:   \217\273\241\217\273\242\217\273\243\217\273\244\217\273\245\217\273\246\217\273\247\217\273\250\217\273\251\217\273\252\217\273\253\217\273\254\217\273\255\217\273\256\217\273\257\217\273\260\217\273\261\217\273\262\217\273\263\217\273\264\217\273\265\217\273\266\217\273\267\217\273\270\217\273\271\217\273\272\217\273\273\217\273\274\217\273\275\217\273\276\n0x8fbbc0: \217\273\300\217\273\301\217\273\302\217\273\303\217\273\304\217\273\305\217\273\306\217\273\307\217\273\310\217\273\311\217\273\312\217\273\313\217\273\314\217\273\315\217\273\316\217\273\317\217\273\320\217\273\321\217\273\322\217\273\323\217\273\324\217\273\325\217\273\326\217\273\327\217\273\330\217\273\331\217\273\332\217\273\333\217\273\334\217\273\335\217\273\336\n0x8fbbe0: \217\273\340\217\273\341\217\273\342\217\273\343\217\273\344\217\273\345\217\273\346\217\273\347\217\273\350\217\273\351\217\273\352\217\273\353\217\273\354\217\273\355\217\273\356\217\273\357\217\273\360\217\273\361\217\273\362\217\273\363\217\273\364\217\273\365\217\273\366\217\273\367\217\273\370\217\273\371\217\273\372\217\273\373\217\273\374\217\273\375\217\273\376\n0x8fbca0:   \217\274\241\217\274\242\217\274\243\217\274\244\217\274\245\217\274\246\217\274\247\217\274\250\217\274\251\217\274\252\217\274\253\217\274\254\217\274\255\217\274\256\217\274\257\217\274\260\217\274\261\217\274\262\217\274\263\217\274\264\217\274\265\217\274\266\217\274\267\217\274\270\217\274\271\217\274\272\217\274\273\217\274\274\217\274\275\217\274\276\n0x8fbcc0: \217\274\300\217\274\301\217\274\302\217\274\303\217\274\304\217\274\305\217\274\306\217\274\307\217\274\310\217\274\311\217\274\312\217\274\313\217\274\314\217\274\315\217\274\316\217\274\317\217\274\320\217\274\321\217\274\322\217\274\323\217\274\324\217\274\325\217\274\326\217\274\327\217\274\330\217\274\331\217\274\332\217\274\333\217\274\334\217\274\335\217\274\336\n0x8fbce0: \217\274\340\217\274\341\217\274\342\217\274\343\217\274\344\217\274\345\217\274\346\217\274\347\217\274\350\217\274\351\217\274\352\217\274\353\217\274\354\217\274\355\217\274\356\217\274\357\217\274\360\217\274\361\217\274\362\217\274\363\217\274\364\217\274\365\217\274\366\217\274\367\217\274\370\217\274\371\217\274\372\217\274\373\217\274\374\217\274\375\217\274\376\n0x8fbda0:   \217\275\241\217\275\242\217\275\243\217\275\244\217\275\245\217\275\246\217\275\247\217\275\250\217\275\251\217\275\252\217\275\253\217\275\254\217\275\255\217\275\256\217\275\257\217\275\260\217\275\261\217\275\262\217\275\263\217\275\264\217\275\265\217\275\266\217\275\267\217\275\270\217\275\271\217\275\272\217\275\273\217\275\274\217\275\275\217\275\276\n0x8fbdc0: \217\275\300\217\275\301\217\275\302\217\275\303\217\275\304\217\275\305\217\275\306\217\275\307\217\275\310\217\275\311\217\275\312\217\275\313\217\275\314\217\275\315\217\275\316\217\275\317\217\275\320\217\275\321\217\275\322\217\275\323\217\275\324\217\275\325\217\275\326\217\275\327\217\275\330\217\275\331\217\275\332\217\275\333\217\275\334\217\275\335\217\275\336\n0x8fbde0: \217\275\340\217\275\341\217\275\342\217\275\343\217\275\344\217\275\345\217\275\346\217\275\347\217\275\350\217\275\351\217\275\352\217\275\353\217\275\354\217\275\355\217\275\356\217\275\357\217\275\360\217\275\361\217\275\362\217\275\363\217\275\364\217\275\365\217\275\366\217\275\367\217\275\370\217\275\371\217\275\372\217\275\373\217\275\374\217\275\375\217\275\376\n0x8fbea0:   \217\276\241\217\276\242\217\276\243\217\276\244\217\276\245\217\276\246\217\276\247\217\276\250\217\276\251\217\276\252\217\276\253\217\276\254\217\276\255\217\276\256\217\276\257\217\276\260\217\276\261\217\276\262\217\276\263\217\276\264\217\276\265\217\276\266\217\276\267\217\276\270\217\276\271\217\276\272\217\276\273\217\276\274\217\276\275\217\276\276\n0x8fbec0: \217\276\300\217\276\301\217\276\302\217\276\303\217\276\304\217\276\305\217\276\306\217\276\307\217\276\310\217\276\311\217\276\312\217\276\313\217\276\314\217\276\315\217\276\316\217\276\317\217\276\320\217\276\321\217\276\322\217\276\323\217\276\324\217\276\325\217\276\326\217\276\327\217\276\330\217\276\331\217\276\332\217\276\333\217\276\334\217\276\335\217\276\336\n0x8fbee0: \217\276\340\217\276\341\217\276\342\217\276\343\217\276\344\217\276\345\217\276\346\217\276\347\217\276\350\217\276\351\217\276\352\217\276\353\217\276\354\217\276\355\217\276\356\217\276\357\217\276\360\217\276\361\217\276\362\217\276\363\217\276\364\217\276\365\217\276\366\217\276\367\217\276\370\217\276\371\217\276\372\217\276\373\217\276\374\217\276\375\217\276\376\n0x8fbfa0:   \217\277\241\217\277\242\217\277\243\217\277\244\217\277\245\217\277\246\217\277\247\217\277\250\217\277\251\217\277\252\217\277\253\217\277\254\217\277\255\217\277\256\217\277\257\217\277\260\217\277\261\217\277\262\217\277\263\217\277\264\217\277\265\217\277\266\217\277\267\217\277\270\217\277\271\217\277\272\217\277\273\217\277\274\217\277\275\217\277\276\n0x8fbfc0: \217\277\300\217\277\301\217\277\302\217\277\303\217\277\304\217\277\305\217\277\306\217\277\307\217\277\310\217\277\311\217\277\312\217\277\313\217\277\314\217\277\315\217\277\316\217\277\317\217\277\320\217\277\321\217\277\322\217\277\323\217\277\324\217\277\325\217\277\326\217\277\327\217\277\330\217\277\331\217\277\332\217\277\333\217\277\334\217\277\335\217\277\336\n0x8fbfe0: \217\277\340\217\277\341\217\277\342\217\277\343\217\277\344\217\277\345\217\277\346\217\277\347\217\277\350\217\277\351\217\277\352\217\277\353\217\277\354\217\277\355\217\277\356\217\277\357\217\277\360\217\277\361\217\277\362\217\277\363\217\277\364\217\277\365\217\277\366\217\277\367\217\277\370\217\277\371\217\277\372\217\277\373\217\277\374\217\277\375\217\277\376\n0x8fc0a0:   \217\300\241\217\300\242\217\300\243\217\300\244\217\300\245\217\300\246\217\300\247\217\300\250\217\300\251\217\300\252\217\300\253\217\300\254\217\300\255\217\300\256\217\300\257\217\300\260\217\300\261\217\300\262\217\300\263\217\300\264\217\300\265\217\300\266\217\300\267\217\300\270\217\300\271\217\300\272\217\300\273\217\300\274\217\300\275\217\300\276\n0x8fc0c0: \217\300\300\217\300\301\217\300\302\217\300\303\217\300\304\217\300\305\217\300\306\217\300\307\217\300\310\217\300\311\217\300\312\217\300\313\217\300\314\217\300\315\217\300\316\217\300\317\217\300\320\217\300\321\217\300\322\217\300\323\217\300\324\217\300\325\217\300\326\217\300\327\217\300\330\217\300\331\217\300\332\217\300\333\217\300\334\217\300\335\217\300\336\n0x8fc0e0: \217\300\340\217\300\341\217\300\342\217\300\343\217\300\344\217\300\345\217\300\346\217\300\347\217\300\350\217\300\351\217\300\352\217\300\353\217\300\354\217\300\355\217\300\356\217\300\357\217\300\360\217\300\361\217\300\362\217\300\363\217\300\364\217\300\365\217\300\366\217\300\367\217\300\370\217\300\371\217\300\372\217\300\373\217\300\374\217\300\375\217\300\376\n0x8fc1a0:   \217\301\241\217\301\242\217\301\243\217\301\244\217\301\245\217\301\246\217\301\247\217\301\250\217\301\251\217\301\252\217\301\253\217\301\254\217\301\255\217\301\256\217\301\257\217\301\260\217\301\261\217\301\262\217\301\263\217\301\264\217\301\265\217\301\266\217\301\267\217\301\270\217\301\271\217\301\272\217\301\273\217\301\274\217\301\275\217\301\276\n0x8fc1c0: \217\301\300\217\301\301\217\301\302\217\301\303\217\301\304\217\301\305\217\301\306\217\301\307\217\301\310\217\301\311\217\301\312\217\301\313\217\301\314\217\301\315\217\301\316\217\301\317\217\301\320\217\301\321\217\301\322\217\301\323\217\301\324\217\301\325\217\301\326\217\301\327\217\301\330\217\301\331\217\301\332\217\301\333\217\301\334\217\301\335\217\301\336\n0x8fc1e0: \217\301\340\217\301\341\217\301\342\217\301\343\217\301\344\217\301\345\217\301\346\217\301\347\217\301\350\217\301\351\217\301\352\217\301\353\217\301\354\217\301\355\217\301\356\217\301\357\217\301\360\217\301\361\217\301\362\217\301\363\217\301\364\217\301\365\217\301\366\217\301\367\217\301\370\217\301\371\217\301\372\217\301\373\217\301\374\217\301\375\217\301\376\n0x8fc2a0:   \217\302\241\217\302\242\217\302\243\217\302\244\217\302\245\217\302\246\217\302\247\217\302\250\217\302\251\217\302\252\217\302\253\217\302\254\217\302\255\217\302\256\217\302\257\217\302\260\217\302\261\217\302\262\217\302\263\217\302\264\217\302\265\217\302\266\217\302\267\217\302\270\217\302\271\217\302\272\217\302\273\217\302\274\217\302\275\217\302\276\n0x8fc2c0: \217\302\300\217\302\301\217\302\302\217\302\303\217\302\304\217\302\305\217\302\306\217\302\307\217\302\310\217\302\311\217\302\312\217\302\313\217\302\314\217\302\315\217\302\316\217\302\317\217\302\320\217\302\321\217\302\322\217\302\323\217\302\324\217\302\325\217\302\326\217\302\327\217\302\330\217\302\331\217\302\332\217\302\333\217\302\334\217\302\335\217\302\336\n0x8fc2e0: \217\302\340\217\302\341\217\302\342\217\302\343\217\302\344\217\302\345\217\302\346\217\302\347\217\302\350\217\302\351\217\302\352\217\302\353\217\302\354\217\302\355\217\302\356\217\302\357\217\302\360\217\302\361\217\302\362\217\302\363\217\302\364\217\302\365\217\302\366\217\302\367\217\302\370\217\302\371\217\302\372\217\302\373\217\302\374\217\302\375\217\302\376\n0x8fc3a0:   \217\303\241\217\303\242\217\303\243\217\303\244\217\303\245\217\303\246\217\303\247\217\303\250\217\303\251\217\303\252\217\303\253\217\303\254\217\303\255\217\303\256\217\303\257\217\303\260\217\303\261\217\303\262\217\303\263\217\303\264\217\303\265\217\303\266\217\303\267\217\303\270\217\303\271\217\303\272\217\303\273\217\303\274\217\303\275\217\303\276\n0x8fc3c0: \217\303\300\217\303\301\217\303\302\217\303\303\217\303\304\217\303\305\217\303\306\217\303\307\217\303\310\217\303\311\217\303\312\217\303\313\217\303\314\217\303\315\217\303\316\217\303\317\217\303\320\217\303\321\217\303\322\217\303\323\217\303\324\217\303\325\217\303\326\217\303\327\217\303\330\217\303\331\217\303\332\217\303\333\217\303\334\217\303\335\217\303\336\n0x8fc3e0: \217\303\340\217\303\341\217\303\342\217\303\343\217\303\344\217\303\345\217\303\346\217\303\347\217\303\350\217\303\351\217\303\352\217\303\353\217\303\354\217\303\355\217\303\356\217\303\357\217\303\360\217\303\361\217\303\362\217\303\363\217\303\364\217\303\365\217\303\366\217\303\367\217\303\370\217\303\371\217\303\372\217\303\373\217\303\374\217\303\375\217\303\376\n0x8fc4a0:   \217\304\241\217\304\242\217\304\243\217\304\244\217\304\245\217\304\246\217\304\247\217\304\250\217\304\251\217\304\252\217\304\253\217\304\254\217\304\255\217\304\256\217\304\257\217\304\260\217\304\261\217\304\262\217\304\263\217\304\264\217\304\265\217\304\266\217\304\267\217\304\270\217\304\271\217\304\272\217\304\273\217\304\274\217\304\275\217\304\276\n0x8fc4c0: \217\304\300\217\304\301\217\304\302\217\304\303\217\304\304\217\304\305\217\304\306\217\304\307\217\304\310\217\304\311\217\304\312\217\304\313\217\304\314\217\304\315\217\304\316\217\304\317\217\304\320\217\304\321\217\304\322\217\304\323\217\304\324\217\304\325\217\304\326\217\304\327\217\304\330\217\304\331\217\304\332\217\304\333\217\304\334\217\304\335\217\304\336\n0x8fc4e0: \217\304\340\217\304\341\217\304\342\217\304\343\217\304\344\217\304\345\217\304\346\217\304\347\217\304\350\217\304\351\217\304\352\217\304\353\217\304\354\217\304\355\217\304\356\217\304\357\217\304\360\217\304\361\217\304\362\217\304\363\217\304\364\217\304\365\217\304\366\217\304\367\217\304\370\217\304\371\217\304\372\217\304\373\217\304\374\217\304\375\217\304\376\n0x8fc5a0:   \217\305\241\217\305\242\217\305\243\217\305\244\217\305\245\217\305\246\217\305\247\217\305\250\217\305\251\217\305\252\217\305\253\217\305\254\217\305\255\217\305\256\217\305\257\217\305\260\217\305\261\217\305\262\217\305\263\217\305\264\217\305\265\217\305\266\217\305\267\217\305\270\217\305\271\217\305\272\217\305\273\217\305\274\217\305\275\217\305\276\n0x8fc5c0: \217\305\300\217\305\301\217\305\302\217\305\303\217\305\304\217\305\305\217\305\306\217\305\307\217\305\310\217\305\311\217\305\312\217\305\313\217\305\314\217\305\315\217\305\316\217\305\317\217\305\320\217\305\321\217\305\322\217\305\323\217\305\324\217\305\325\217\305\326\217\305\327\217\305\330\217\305\331\217\305\332\217\305\333\217\305\334\217\305\335\217\305\336\n0x8fc5e0: \217\305\340\217\305\341\217\305\342\217\305\343\217\305\344\217\305\345\217\305\346\217\305\347\217\305\350\217\305\351\217\305\352\217\305\353\217\305\354\217\305\355\217\305\356\217\305\357\217\305\360\217\305\361\217\305\362\217\305\363\217\305\364\217\305\365\217\305\366\217\305\367\217\305\370\217\305\371\217\305\372\217\305\373\217\305\374\217\305\375\217\305\376\n0x8fc6a0:   \217\306\241\217\306\242\217\306\243\217\306\244\217\306\245\217\306\246\217\306\247\217\306\250\217\306\251\217\306\252\217\306\253\217\306\254\217\306\255\217\306\256\217\306\257\217\306\260\217\306\261\217\306\262\217\306\263\217\306\264\217\306\265\217\306\266\217\306\267\217\306\270\217\306\271\217\306\272\217\306\273\217\306\274\217\306\275\217\306\276\n0x8fc6c0: \217\306\300\217\306\301\217\306\302\217\306\303\217\306\304\217\306\305\217\306\306\217\306\307\217\306\310\217\306\311\217\306\312\217\306\313\217\306\314\217\306\315\217\306\316\217\306\317\217\306\320\217\306\321\217\306\322\217\306\323\217\306\324\217\306\325\217\306\326\217\306\327\217\306\330\217\306\331\217\306\332\217\306\333\217\306\334\217\306\335\217\306\336\n0x8fc6e0: \217\306\340\217\306\341\217\306\342\217\306\343\217\306\344\217\306\345\217\306\346\217\306\347\217\306\350\217\306\351\217\306\352\217\306\353\217\306\354\217\306\355\217\306\356\217\306\357\217\306\360\217\306\361\217\306\362\217\306\363\217\306\364\217\306\365\217\306\366\217\306\367\217\306\370\217\306\371\217\306\372\217\306\373\217\306\374\217\306\375\217\306\376\n0x8fc7a0:   \217\307\241\217\307\242\217\307\243\217\307\244\217\307\245\217\307\246\217\307\247\217\307\250\217\307\251\217\307\252\217\307\253\217\307\254\217\307\255\217\307\256\217\307\257\217\307\260\217\307\261\217\307\262\217\307\263\217\307\264\217\307\265\217\307\266\217\307\267\217\307\270\217\307\271\217\307\272\217\307\273\217\307\274\217\307\275\217\307\276\n0x8fc7c0: \217\307\300\217\307\301\217\307\302\217\307\303\217\307\304\217\307\305\217\307\306\217\307\307\217\307\310\217\307\311\217\307\312\217\307\313\217\307\314\217\307\315\217\307\316\217\307\317\217\307\320\217\307\321\217\307\322\217\307\323\217\307\324\217\307\325\217\307\326\217\307\327\217\307\330\217\307\331\217\307\332\217\307\333\217\307\334\217\307\335\217\307\336\n0x8fc7e0: \217\307\340\217\307\341\217\307\342\217\307\343\217\307\344\217\307\345\217\307\346\217\307\347\217\307\350\217\307\351\217\307\352\217\307\353\217\307\354\217\307\355\217\307\356\217\307\357\217\307\360\217\307\361\217\307\362\217\307\363\217\307\364\217\307\365\217\307\366\217\307\367\217\307\370\217\307\371\217\307\372\217\307\373\217\307\374\217\307\375\217\307\376\n0x8fc8a0:   \217\310\241\217\310\242\217\310\243\217\310\244\217\310\245\217\310\246\217\310\247\217\310\250\217\310\251\217\310\252\217\310\253\217\310\254\217\310\255\217\310\256\217\310\257\217\310\260\217\310\261\217\310\262\217\310\263\217\310\264\217\310\265\217\310\266\217\310\267\217\310\270\217\310\271\217\310\272\217\310\273\217\310\274\217\310\275\217\310\276\n0x8fc8c0: \217\310\300\217\310\301\217\310\302\217\310\303\217\310\304\217\310\305\217\310\306\217\310\307\217\310\310\217\310\311\217\310\312\217\310\313\217\310\314\217\310\315\217\310\316\217\310\317\217\310\320\217\310\321\217\310\322\217\310\323\217\310\324\217\310\325\217\310\326\217\310\327\217\310\330\217\310\331\217\310\332\217\310\333\217\310\334\217\310\335\217\310\336\n0x8fc8e0: \217\310\340\217\310\341\217\310\342\217\310\343\217\310\344\217\310\345\217\310\346\217\310\347\217\310\350\217\310\351\217\310\352\217\310\353\217\310\354\217\310\355\217\310\356\217\310\357\217\310\360\217\310\361\217\310\362\217\310\363\217\310\364\217\310\365\217\310\366\217\310\367\217\310\370\217\310\371\217\310\372\217\310\373\217\310\374\217\310\375\217\310\376\n0x8fc9a0:   \217\311\241\217\311\242\217\311\243\217\311\244\217\311\245\217\311\246\217\311\247\217\311\250\217\311\251\217\311\252\217\311\253\217\311\254\217\311\255\217\311\256\217\311\257\217\311\260\217\311\261\217\311\262\217\311\263\217\311\264\217\311\265\217\311\266\217\311\267\217\311\270\217\311\271\217\311\272\217\311\273\217\311\274\217\311\275\217\311\276\n0x8fc9c0: \217\311\300\217\311\301\217\311\302\217\311\303\217\311\304\217\311\305\217\311\306\217\311\307\217\311\310\217\311\311\217\311\312\217\311\313\217\311\314\217\311\315\217\311\316\217\311\317\217\311\320\217\311\321\217\311\322\217\311\323\217\311\324\217\311\325\217\311\326\217\311\327\217\311\330\217\311\331\217\311\332\217\311\333\217\311\334\217\311\335\217\311\336\n0x8fc9e0: \217\311\340\217\311\341\217\311\342\217\311\343\217\311\344\217\311\345\217\311\346\217\311\347\217\311\350\217\311\351\217\311\352\217\311\353\217\311\354\217\311\355\217\311\356\217\311\357\217\311\360\217\311\361\217\311\362\217\311\363\217\311\364\217\311\365\217\311\366\217\311\367\217\311\370\217\311\371\217\311\372\217\311\373\217\311\374\217\311\375\217\311\376\n0x8fcaa0:   \217\312\241\217\312\242\217\312\243\217\312\244\217\312\245\217\312\246\217\312\247\217\312\250\217\312\251\217\312\252\217\312\253\217\312\254\217\312\255\217\312\256\217\312\257\217\312\260\217\312\261\217\312\262\217\312\263\217\312\264\217\312\265\217\312\266\217\312\267\217\312\270\217\312\271\217\312\272\217\312\273\217\312\274\217\312\275\217\312\276\n0x8fcac0: \217\312\300\217\312\301\217\312\302\217\312\303\217\312\304\217\312\305\217\312\306\217\312\307\217\312\310\217\312\311\217\312\312\217\312\313\217\312\314\217\312\315\217\312\316\217\312\317\217\312\320\217\312\321\217\312\322\217\312\323\217\312\324\217\312\325\217\312\326\217\312\327\217\312\330\217\312\331\217\312\332\217\312\333\217\312\334\217\312\335\217\312\336\n0x8fcae0: \217\312\340\217\312\341\217\312\342\217\312\343\217\312\344\217\312\345\217\312\346\217\312\347\217\312\350\217\312\351\217\312\352\217\312\353\217\312\354\217\312\355\217\312\356\217\312\357\217\312\360\217\312\361\217\312\362\217\312\363\217\312\364\217\312\365\217\312\366\217\312\367\217\312\370\217\312\371\217\312\372\217\312\373\217\312\374\217\312\375\217\312\376\n0x8fcba0:   \217\313\241\217\313\242\217\313\243\217\313\244\217\313\245\217\313\246\217\313\247\217\313\250\217\313\251\217\313\252\217\313\253\217\313\254\217\313\255\217\313\256\217\313\257\217\313\260\217\313\261\217\313\262\217\313\263\217\313\264\217\313\265\217\313\266\217\313\267\217\313\270\217\313\271\217\313\272\217\313\273\217\313\274\217\313\275\217\313\276\n0x8fcbc0: \217\313\300\217\313\301\217\313\302\217\313\303\217\313\304\217\313\305\217\313\306\217\313\307\217\313\310\217\313\311\217\313\312\217\313\313\217\313\314\217\313\315\217\313\316\217\313\317\217\313\320\217\313\321\217\313\322\217\313\323\217\313\324\217\313\325\217\313\326\217\313\327\217\313\330\217\313\331\217\313\332\217\313\333\217\313\334\217\313\335\217\313\336\n0x8fcbe0: \217\313\340\217\313\341\217\313\342\217\313\343\217\313\344\217\313\345\217\313\346\217\313\347\217\313\350\217\313\351\217\313\352\217\313\353\217\313\354\217\313\355\217\313\356\217\313\357\217\313\360\217\313\361\217\313\362\217\313\363\217\313\364\217\313\365\217\313\366\217\313\367\217\313\370\217\313\371\217\313\372\217\313\373\217\313\374\217\313\375\217\313\376\n0x8fcca0:   \217\314\241\217\314\242\217\314\243\217\314\244\217\314\245\217\314\246\217\314\247\217\314\250\217\314\251\217\314\252\217\314\253\217\314\254\217\314\255\217\314\256\217\314\257\217\314\260\217\314\261\217\314\262\217\314\263\217\314\264\217\314\265\217\314\266\217\314\267\217\314\270\217\314\271\217\314\272\217\314\273\217\314\274\217\314\275\217\314\276\n0x8fccc0: \217\314\300\217\314\301\217\314\302\217\314\303\217\314\304\217\314\305\217\314\306\217\314\307\217\314\310\217\314\311\217\314\312\217\314\313\217\314\314\217\314\315\217\314\316\217\314\317\217\314\320\217\314\321\217\314\322\217\314\323\217\314\324\217\314\325\217\314\326\217\314\327\217\314\330\217\314\331\217\314\332\217\314\333\217\314\334\217\314\335\217\314\336\n0x8fcce0: \217\314\340\217\314\341\217\314\342\217\314\343\217\314\344\217\314\345\217\314\346\217\314\347\217\314\350\217\314\351\217\314\352\217\314\353\217\314\354\217\314\355\217\314\356\217\314\357\217\314\360\217\314\361\217\314\362\217\314\363\217\314\364\217\314\365\217\314\366\217\314\367\217\314\370\217\314\371\217\314\372\217\314\373\217\314\374\217\314\375\217\314\376\n0x8fcda0:   \217\315\241\217\315\242\217\315\243\217\315\244\217\315\245\217\315\246\217\315\247\217\315\250\217\315\251\217\315\252\217\315\253\217\315\254\217\315\255\217\315\256\217\315\257\217\315\260\217\315\261\217\315\262\217\315\263\217\315\264\217\315\265\217\315\266\217\315\267\217\315\270\217\315\271\217\315\272\217\315\273\217\315\274\217\315\275\217\315\276\n0x8fcdc0: \217\315\300\217\315\301\217\315\302\217\315\303\217\315\304\217\315\305\217\315\306\217\315\307\217\315\310\217\315\311\217\315\312\217\315\313\217\315\314\217\315\315\217\315\316\217\315\317\217\315\320\217\315\321\217\315\322\217\315\323\217\315\324\217\315\325\217\315\326\217\315\327\217\315\330\217\315\331\217\315\332\217\315\333\217\315\334\217\315\335\217\315\336\n0x8fcde0: \217\315\340\217\315\341\217\315\342\217\315\343\217\315\344\217\315\345\217\315\346\217\315\347\217\315\350\217\315\351\217\315\352\217\315\353\217\315\354\217\315\355\217\315\356\217\315\357\217\315\360\217\315\361\217\315\362\217\315\363\217\315\364\217\315\365\217\315\366\217\315\367\217\315\370\217\315\371\217\315\372\217\315\373\217\315\374\217\315\375\217\315\376\n0x8fcea0:   \217\316\241\217\316\242\217\316\243\217\316\244\217\316\245\217\316\246\217\316\247\217\316\250\217\316\251\217\316\252\217\316\253\217\316\254\217\316\255\217\316\256\217\316\257\217\316\260\217\316\261\217\316\262\217\316\263\217\316\264\217\316\265\217\316\266\217\316\267\217\316\270\217\316\271\217\316\272\217\316\273\217\316\274\217\316\275\217\316\276\n0x8fcec0: \217\316\300\217\316\301\217\316\302\217\316\303\217\316\304\217\316\305\217\316\306\217\316\307\217\316\310\217\316\311\217\316\312\217\316\313\217\316\314\217\316\315\217\316\316\217\316\317\217\316\320\217\316\321\217\316\322\217\316\323\217\316\324\217\316\325\217\316\326\217\316\327\217\316\330\217\316\331\217\316\332\217\316\333\217\316\334\217\316\335\217\316\336\n0x8fcee0: \217\316\340\217\316\341\217\316\342\217\316\343\217\316\344\217\316\345\217\316\346\217\316\347\217\316\350\217\316\351\217\316\352\217\316\353\217\316\354\217\316\355\217\316\356\217\316\357\217\316\360\217\316\361\217\316\362\217\316\363\217\316\364\217\316\365\217\316\366\217\316\367\217\316\370\217\316\371\217\316\372\217\316\373\217\316\374\217\316\375\217\316\376\n0x8fcfa0:   \217\317\241\217\317\242\217\317\243\217\317\244\217\317\245\217\317\246\217\317\247\217\317\250\217\317\251\217\317\252\217\317\253\217\317\254\217\317\255\217\317\256\217\317\257\217\317\260\217\317\261\217\317\262\217\317\263\217\317\264\217\317\265\217\317\266\217\317\267\217\317\270\217\317\271\217\317\272\217\317\273\217\317\274\217\317\275\217\317\276\n0x8fcfc0: \217\317\300\217\317\301\217\317\302\217\317\303\217\317\304\217\317\305\217\317\306\217\317\307\217\317\310\217\317\311\217\317\312\217\317\313\217\317\314\217\317\315\217\317\316\217\317\317\217\317\320\217\317\321\217\317\322\217\317\323\217\317\324\217\317\325\217\317\326\217\317\327\217\317\330\217\317\331\217\317\332\217\317\333\217\317\334\217\317\335\217\317\336\n0x8fcfe0: \217\317\340\217\317\341\217\317\342\217\317\343\217\317\344\217\317\345\217\317\346\217\317\347\217\317\350\217\317\351\217\317\352\217\317\353\217\317\354\217\317\355\217\317\356\217\317\357\217\317\360\217\317\361\217\317\362\217\317\363\217\317\364\217\317\365\217\317\366\217\317\367\217\317\370\217\317\371\217\317\372\217\317\373\217\317\374\217\317\375\217\317\376\n0x8fd0a0:   \217\320\241\217\320\242\217\320\243\217\320\244\217\320\245\217\320\246\217\320\247\217\320\250\217\320\251\217\320\252\217\320\253\217\320\254\217\320\255\217\320\256\217\320\257\217\320\260\217\320\261\217\320\262\217\320\263\217\320\264\217\320\265\217\320\266\217\320\267\217\320\270\217\320\271\217\320\272\217\320\273\217\320\274\217\320\275\217\320\276\n0x8fd0c0: \217\320\300\217\320\301\217\320\302\217\320\303\217\320\304\217\320\305\217\320\306\217\320\307\217\320\310\217\320\311\217\320\312\217\320\313\217\320\314\217\320\315\217\320\316\217\320\317\217\320\320\217\320\321\217\320\322\217\320\323\217\320\324\217\320\325\217\320\326\217\320\327\217\320\330\217\320\331\217\320\332\217\320\333\217\320\334\217\320\335\217\320\336\n0x8fd0e0: \217\320\340\217\320\341\217\320\342\217\320\343\217\320\344\217\320\345\217\320\346\217\320\347\217\320\350\217\320\351\217\320\352\217\320\353\217\320\354\217\320\355\217\320\356\217\320\357\217\320\360\217\320\361\217\320\362\217\320\363\217\320\364\217\320\365\217\320\366\217\320\367\217\320\370\217\320\371\217\320\372\217\320\373\217\320\374\217\320\375\217\320\376\n0x8fd1a0:   \217\321\241\217\321\242\217\321\243\217\321\244\217\321\245\217\321\246\217\321\247\217\321\250\217\321\251\217\321\252\217\321\253\217\321\254\217\321\255\217\321\256\217\321\257\217\321\260\217\321\261\217\321\262\217\321\263\217\321\264\217\321\265\217\321\266\217\321\267\217\321\270\217\321\271\217\321\272\217\321\273\217\321\274\217\321\275\217\321\276\n0x8fd1c0: \217\321\300\217\321\301\217\321\302\217\321\303\217\321\304\217\321\305\217\321\306\217\321\307\217\321\310\217\321\311\217\321\312\217\321\313\217\321\314\217\321\315\217\321\316\217\321\317\217\321\320\217\321\321\217\321\322\217\321\323\217\321\324\217\321\325\217\321\326\217\321\327\217\321\330\217\321\331\217\321\332\217\321\333\217\321\334\217\321\335\217\321\336\n0x8fd1e0: \217\321\340\217\321\341\217\321\342\217\321\343\217\321\344\217\321\345\217\321\346\217\321\347\217\321\350\217\321\351\217\321\352\217\321\353\217\321\354\217\321\355\217\321\356\217\321\357\217\321\360\217\321\361\217\321\362\217\321\363\217\321\364\217\321\365\217\321\366\217\321\367\217\321\370\217\321\371\217\321\372\217\321\373\217\321\374\217\321\375\217\321\376\n0x8fd2a0:   \217\322\241\217\322\242\217\322\243\217\322\244\217\322\245\217\322\246\217\322\247\217\322\250\217\322\251\217\322\252\217\322\253\217\322\254\217\322\255\217\322\256\217\322\257\217\322\260\217\322\261\217\322\262\217\322\263\217\322\264\217\322\265\217\322\266\217\322\267\217\322\270\217\322\271\217\322\272\217\322\273\217\322\274\217\322\275\217\322\276\n0x8fd2c0: \217\322\300\217\322\301\217\322\302\217\322\303\217\322\304\217\322\305\217\322\306\217\322\307\217\322\310\217\322\311\217\322\312\217\322\313\217\322\314\217\322\315\217\322\316\217\322\317\217\322\320\217\322\321\217\322\322\217\322\323\217\322\324\217\322\325\217\322\326\217\322\327\217\322\330\217\322\331\217\322\332\217\322\333\217\322\334\217\322\335\217\322\336\n0x8fd2e0: \217\322\340\217\322\341\217\322\342\217\322\343\217\322\344\217\322\345\217\322\346\217\322\347\217\322\350\217\322\351\217\322\352\217\322\353\217\322\354\217\322\355\217\322\356\217\322\357\217\322\360\217\322\361\217\322\362\217\322\363\217\322\364\217\322\365\217\322\366\217\322\367\217\322\370\217\322\371\217\322\372\217\322\373\217\322\374\217\322\375\217\322\376\n0x8fd3a0:   \217\323\241\217\323\242\217\323\243\217\323\244\217\323\245\217\323\246\217\323\247\217\323\250\217\323\251\217\323\252\217\323\253\217\323\254\217\323\255\217\323\256\217\323\257\217\323\260\217\323\261\217\323\262\217\323\263\217\323\264\217\323\265\217\323\266\217\323\267\217\323\270\217\323\271\217\323\272\217\323\273\217\323\274\217\323\275\217\323\276\n0x8fd3c0: \217\323\300\217\323\301\217\323\302\217\323\303\217\323\304\217\323\305\217\323\306\217\323\307\217\323\310\217\323\311\217\323\312\217\323\313\217\323\314\217\323\315\217\323\316\217\323\317\217\323\320\217\323\321\217\323\322\217\323\323\217\323\324\217\323\325\217\323\326\217\323\327\217\323\330\217\323\331\217\323\332\217\323\333\217\323\334\217\323\335\217\323\336\n0x8fd3e0: \217\323\340\217\323\341\217\323\342\217\323\343\217\323\344\217\323\345\217\323\346\217\323\347\217\323\350\217\323\351\217\323\352\217\323\353\217\323\354\217\323\355\217\323\356\217\323\357\217\323\360\217\323\361\217\323\362\217\323\363\217\323\364\217\323\365\217\323\366\217\323\367\217\323\370\217\323\371\217\323\372\217\323\373\217\323\374\217\323\375\217\323\376\n0x8fd4a0:   \217\324\241\217\324\242\217\324\243\217\324\244\217\324\245\217\324\246\217\324\247\217\324\250\217\324\251\217\324\252\217\324\253\217\324\254\217\324\255\217\324\256\217\324\257\217\324\260\217\324\261\217\324\262\217\324\263\217\324\264\217\324\265\217\324\266\217\324\267\217\324\270\217\324\271\217\324\272\217\324\273\217\324\274\217\324\275\217\324\276\n0x8fd4c0: \217\324\300\217\324\301\217\324\302\217\324\303\217\324\304\217\324\305\217\324\306\217\324\307\217\324\310\217\324\311\217\324\312\217\324\313\217\324\314\217\324\315\217\324\316\217\324\317\217\324\320\217\324\321\217\324\322\217\324\323\217\324\324\217\324\325\217\324\326\217\324\327\217\324\330\217\324\331\217\324\332\217\324\333\217\324\334\217\324\335\217\324\336\n0x8fd4e0: \217\324\340\217\324\341\217\324\342\217\324\343\217\324\344\217\324\345\217\324\346\217\324\347\217\324\350\217\324\351\217\324\352\217\324\353\217\324\354\217\324\355\217\324\356\217\324\357\217\324\360\217\324\361\217\324\362\217\324\363\217\324\364\217\324\365\217\324\366\217\324\367\217\324\370\217\324\371\217\324\372\217\324\373\217\324\374\217\324\375\217\324\376\n0x8fd5a0:   \217\325\241\217\325\242\217\325\243\217\325\244\217\325\245\217\325\246\217\325\247\217\325\250\217\325\251\217\325\252\217\325\253\217\325\254\217\325\255\217\325\256\217\325\257\217\325\260\217\325\261\217\325\262\217\325\263\217\325\264\217\325\265\217\325\266\217\325\267\217\325\270\217\325\271\217\325\272\217\325\273\217\325\274\217\325\275\217\325\276\n0x8fd5c0: \217\325\300\217\325\301\217\325\302\217\325\303\217\325\304\217\325\305\217\325\306\217\325\307\217\325\310\217\325\311\217\325\312\217\325\313\217\325\314\217\325\315\217\325\316\217\325\317\217\325\320\217\325\321\217\325\322\217\325\323\217\325\324\217\325\325\217\325\326\217\325\327\217\325\330\217\325\331\217\325\332\217\325\333\217\325\334\217\325\335\217\325\336\n0x8fd5e0: \217\325\340\217\325\341\217\325\342\217\325\343\217\325\344\217\325\345\217\325\346\217\325\347\217\325\350\217\325\351\217\325\352\217\325\353\217\325\354\217\325\355\217\325\356\217\325\357\217\325\360\217\325\361\217\325\362\217\325\363\217\325\364\217\325\365\217\325\366\217\325\367\217\325\370\217\325\371\217\325\372\217\325\373\217\325\374\217\325\375\217\325\376\n0x8fd6a0:   \217\326\241\217\326\242\217\326\243\217\326\244\217\326\245\217\326\246\217\326\247\217\326\250\217\326\251\217\326\252\217\326\253\217\326\254\217\326\255\217\326\256\217\326\257\217\326\260\217\326\261\217\326\262\217\326\263\217\326\264\217\326\265\217\326\266\217\326\267\217\326\270\217\326\271\217\326\272\217\326\273\217\326\274\217\326\275\217\326\276\n0x8fd6c0: \217\326\300\217\326\301\217\326\302\217\326\303\217\326\304\217\326\305\217\326\306\217\326\307\217\326\310\217\326\311\217\326\312\217\326\313\217\326\314\217\326\315\217\326\316\217\326\317\217\326\320\217\326\321\217\326\322\217\326\323\217\326\324\217\326\325\217\326\326\217\326\327\217\326\330\217\326\331\217\326\332\217\326\333\217\326\334\217\326\335\217\326\336\n0x8fd6e0: \217\326\340\217\326\341\217\326\342\217\326\343\217\326\344\217\326\345\217\326\346\217\326\347\217\326\350\217\326\351\217\326\352\217\326\353\217\326\354\217\326\355\217\326\356\217\326\357\217\326\360\217\326\361\217\326\362\217\326\363\217\326\364\217\326\365\217\326\366\217\326\367\217\326\370\217\326\371\217\326\372\217\326\373\217\326\374\217\326\375\217\326\376\n0x8fd7a0:   \217\327\241\217\327\242\217\327\243\217\327\244\217\327\245\217\327\246\217\327\247\217\327\250\217\327\251\217\327\252\217\327\253\217\327\254\217\327\255\217\327\256\217\327\257\217\327\260\217\327\261\217\327\262\217\327\263\217\327\264\217\327\265\217\327\266\217\327\267\217\327\270\217\327\271\217\327\272\217\327\273\217\327\274\217\327\275\217\327\276\n0x8fd7c0: \217\327\300\217\327\301\217\327\302\217\327\303\217\327\304\217\327\305\217\327\306\217\327\307\217\327\310\217\327\311\217\327\312\217\327\313\217\327\314\217\327\315\217\327\316\217\327\317\217\327\320\217\327\321\217\327\322\217\327\323\217\327\324\217\327\325\217\327\326\217\327\327\217\327\330\217\327\331\217\327\332\217\327\333\217\327\334\217\327\335\217\327\336\n0x8fd7e0: \217\327\340\217\327\341\217\327\342\217\327\343\217\327\344\217\327\345\217\327\346\217\327\347\217\327\350\217\327\351\217\327\352\217\327\353\217\327\354\217\327\355\217\327\356\217\327\357\217\327\360\217\327\361\217\327\362\217\327\363\217\327\364\217\327\365\217\327\366\217\327\367\217\327\370\217\327\371\217\327\372\217\327\373\217\327\374\217\327\375\217\327\376\n0x8fd8a0:   \217\330\241\217\330\242\217\330\243\217\330\244\217\330\245\217\330\246\217\330\247\217\330\250\217\330\251\217\330\252\217\330\253\217\330\254\217\330\255\217\330\256\217\330\257\217\330\260\217\330\261\217\330\262\217\330\263\217\330\264\217\330\265\217\330\266\217\330\267\217\330\270\217\330\271\217\330\272\217\330\273\217\330\274\217\330\275\217\330\276\n0x8fd8c0: \217\330\300\217\330\301\217\330\302\217\330\303\217\330\304\217\330\305\217\330\306\217\330\307\217\330\310\217\330\311\217\330\312\217\330\313\217\330\314\217\330\315\217\330\316\217\330\317\217\330\320\217\330\321\217\330\322\217\330\323\217\330\324\217\330\325\217\330\326\217\330\327\217\330\330\217\330\331\217\330\332\217\330\333\217\330\334\217\330\335\217\330\336\n0x8fd8e0: \217\330\340\217\330\341\217\330\342\217\330\343\217\330\344\217\330\345\217\330\346\217\330\347\217\330\350\217\330\351\217\330\352\217\330\353\217\330\354\217\330\355\217\330\356\217\330\357\217\330\360\217\330\361\217\330\362\217\330\363\217\330\364\217\330\365\217\330\366\217\330\367\217\330\370\217\330\371\217\330\372\217\330\373\217\330\374\217\330\375\217\330\376\n0x8fd9a0:   \217\331\241\217\331\242\217\331\243\217\331\244\217\331\245\217\331\246\217\331\247\217\331\250\217\331\251\217\331\252\217\331\253\217\331\254\217\331\255\217\331\256\217\331\257\217\331\260\217\331\261\217\331\262\217\331\263\217\331\264\217\331\265\217\331\266\217\331\267\217\331\270\217\331\271\217\331\272\217\331\273\217\331\274\217\331\275\217\331\276\n0x8fd9c0: \217\331\300\217\331\301\217\331\302\217\331\303\217\331\304\217\331\305\217\331\306\217\331\307\217\331\310\217\331\311\217\331\312\217\331\313\217\331\314\217\331\315\217\331\316\217\331\317\217\331\320\217\331\321\217\331\322\217\331\323\217\331\324\217\331\325\217\331\326\217\331\327\217\331\330\217\331\331\217\331\332\217\331\333\217\331\334\217\331\335\217\331\336\n0x8fd9e0: \217\331\340\217\331\341\217\331\342\217\331\343\217\331\344\217\331\345\217\331\346\217\331\347\217\331\350\217\331\351\217\331\352\217\331\353\217\331\354\217\331\355\217\331\356\217\331\357\217\331\360\217\331\361\217\331\362\217\331\363\217\331\364\217\331\365\217\331\366\217\331\367\217\331\370\217\331\371\217\331\372\217\331\373\217\331\374\217\331\375\217\331\376\n0x8fdaa0:   \217\332\241\217\332\242\217\332\243\217\332\244\217\332\245\217\332\246\217\332\247\217\332\250\217\332\251\217\332\252\217\332\253\217\332\254\217\332\255\217\332\256\217\332\257\217\332\260\217\332\261\217\332\262\217\332\263\217\332\264\217\332\265\217\332\266\217\332\267\217\332\270\217\332\271\217\332\272\217\332\273\217\332\274\217\332\275\217\332\276\n0x8fdac0: \217\332\300\217\332\301\217\332\302\217\332\303\217\332\304\217\332\305\217\332\306\217\332\307\217\332\310\217\332\311\217\332\312\217\332\313\217\332\314\217\332\315\217\332\316\217\332\317\217\332\320\217\332\321\217\332\322\217\332\323\217\332\324\217\332\325\217\332\326\217\332\327\217\332\330\217\332\331\217\332\332\217\332\333\217\332\334\217\332\335\217\332\336\n0x8fdae0: \217\332\340\217\332\341\217\332\342\217\332\343\217\332\344\217\332\345\217\332\346\217\332\347\217\332\350\217\332\351\217\332\352\217\332\353\217\332\354\217\332\355\217\332\356\217\332\357\217\332\360\217\332\361\217\332\362\217\332\363\217\332\364\217\332\365\217\332\366\217\332\367\217\332\370\217\332\371\217\332\372\217\332\373\217\332\374\217\332\375\217\332\376\n0x8fdba0:   \217\333\241\217\333\242\217\333\243\217\333\244\217\333\245\217\333\246\217\333\247\217\333\250\217\333\251\217\333\252\217\333\253\217\333\254\217\333\255\217\333\256\217\333\257\217\333\260\217\333\261\217\333\262\217\333\263\217\333\264\217\333\265\217\333\266\217\333\267\217\333\270\217\333\271\217\333\272\217\333\273\217\333\274\217\333\275\217\333\276\n0x8fdbc0: \217\333\300\217\333\301\217\333\302\217\333\303\217\333\304\217\333\305\217\333\306\217\333\307\217\333\310\217\333\311\217\333\312\217\333\313\217\333\314\217\333\315\217\333\316\217\333\317\217\333\320\217\333\321\217\333\322\217\333\323\217\333\324\217\333\325\217\333\326\217\333\327\217\333\330\217\333\331\217\333\332\217\333\333\217\333\334\217\333\335\217\333\336\n0x8fdbe0: \217\333\340\217\333\341\217\333\342\217\333\343\217\333\344\217\333\345\217\333\346\217\333\347\217\333\350\217\333\351\217\333\352\217\333\353\217\333\354\217\333\355\217\333\356\217\333\357\217\333\360\217\333\361\217\333\362\217\333\363\217\333\364\217\333\365\217\333\366\217\333\367\217\333\370\217\333\371\217\333\372\217\333\373\217\333\374\217\333\375\217\333\376\n0x8fdca0:   \217\334\241\217\334\242\217\334\243\217\334\244\217\334\245\217\334\246\217\334\247\217\334\250\217\334\251\217\334\252\217\334\253\217\334\254\217\334\255\217\334\256\217\334\257\217\334\260\217\334\261\217\334\262\217\334\263\217\334\264\217\334\265\217\334\266\217\334\267\217\334\270\217\334\271\217\334\272\217\334\273\217\334\274\217\334\275\217\334\276\n0x8fdcc0: \217\334\300\217\334\301\217\334\302\217\334\303\217\334\304\217\334\305\217\334\306\217\334\307\217\334\310\217\334\311\217\334\312\217\334\313\217\334\314\217\334\315\217\334\316\217\334\317\217\334\320\217\334\321\217\334\322\217\334\323\217\334\324\217\334\325\217\334\326\217\334\327\217\334\330\217\334\331\217\334\332\217\334\333\217\334\334\217\334\335\217\334\336\n0x8fdce0: \217\334\340\217\334\341\217\334\342\217\334\343\217\334\344\217\334\345\217\334\346\217\334\347\217\334\350\217\334\351\217\334\352\217\334\353\217\334\354\217\334\355\217\334\356\217\334\357\217\334\360\217\334\361\217\334\362\217\334\363\217\334\364\217\334\365\217\334\366\217\334\367\217\334\370\217\334\371\217\334\372\217\334\373\217\334\374\217\334\375\217\334\376\n0x8fdda0:   \217\335\241\217\335\242\217\335\243\217\335\244\217\335\245\217\335\246\217\335\247\217\335\250\217\335\251\217\335\252\217\335\253\217\335\254\217\335\255\217\335\256\217\335\257\217\335\260\217\335\261\217\335\262\217\335\263\217\335\264\217\335\265\217\335\266\217\335\267\217\335\270\217\335\271\217\335\272\217\335\273\217\335\274\217\335\275\217\335\276\n0x8fddc0: \217\335\300\217\335\301\217\335\302\217\335\303\217\335\304\217\335\305\217\335\306\217\335\307\217\335\310\217\335\311\217\335\312\217\335\313\217\335\314\217\335\315\217\335\316\217\335\317\217\335\320\217\335\321\217\335\322\217\335\323\217\335\324\217\335\325\217\335\326\217\335\327\217\335\330\217\335\331\217\335\332\217\335\333\217\335\334\217\335\335\217\335\336\n0x8fdde0: \217\335\340\217\335\341\217\335\342\217\335\343\217\335\344\217\335\345\217\335\346\217\335\347\217\335\350\217\335\351\217\335\352\217\335\353\217\335\354\217\335\355\217\335\356\217\335\357\217\335\360\217\335\361\217\335\362\217\335\363\217\335\364\217\335\365\217\335\366\217\335\367\217\335\370\217\335\371\217\335\372\217\335\373\217\335\374\217\335\375\217\335\376\n0x8fdea0:   \217\336\241\217\336\242\217\336\243\217\336\244\217\336\245\217\336\246\217\336\247\217\336\250\217\336\251\217\336\252\217\336\253\217\336\254\217\336\255\217\336\256\217\336\257\217\336\260\217\336\261\217\336\262\217\336\263\217\336\264\217\336\265\217\336\266\217\336\267\217\336\270\217\336\271\217\336\272\217\336\273\217\336\274\217\336\275\217\336\276\n0x8fdec0: \217\336\300\217\336\301\217\336\302\217\336\303\217\336\304\217\336\305\217\336\306\217\336\307\217\336\310\217\336\311\217\336\312\217\336\313\217\336\314\217\336\315\217\336\316\217\336\317\217\336\320\217\336\321\217\336\322\217\336\323\217\336\324\217\336\325\217\336\326\217\336\327\217\336\330\217\336\331\217\336\332\217\336\333\217\336\334\217\336\335\217\336\336\n0x8fdee0: \217\336\340\217\336\341\217\336\342\217\336\343\217\336\344\217\336\345\217\336\346\217\336\347\217\336\350\217\336\351\217\336\352\217\336\353\217\336\354\217\336\355\217\336\356\217\336\357\217\336\360\217\336\361\217\336\362\217\336\363\217\336\364\217\336\365\217\336\366\217\336\367\217\336\370\217\336\371\217\336\372\217\336\373\217\336\374\217\336\375\217\336\376\n0x8fdfa0:   \217\337\241\217\337\242\217\337\243\217\337\244\217\337\245\217\337\246\217\337\247\217\337\250\217\337\251\217\337\252\217\337\253\217\337\254\217\337\255\217\337\256\217\337\257\217\337\260\217\337\261\217\337\262\217\337\263\217\337\264\217\337\265\217\337\266\217\337\267\217\337\270\217\337\271\217\337\272\217\337\273\217\337\274\217\337\275\217\337\276\n0x8fdfc0: \217\337\300\217\337\301\217\337\302\217\337\303\217\337\304\217\337\305\217\337\306\217\337\307\217\337\310\217\337\311\217\337\312\217\337\313\217\337\314\217\337\315\217\337\316\217\337\317\217\337\320\217\337\321\217\337\322\217\337\323\217\337\324\217\337\325\217\337\326\217\337\327\217\337\330\217\337\331\217\337\332\217\337\333\217\337\334\217\337\335\217\337\336\n0x8fdfe0: \217\337\340\217\337\341\217\337\342\217\337\343\217\337\344\217\337\345\217\337\346\217\337\347\217\337\350\217\337\351\217\337\352\217\337\353\217\337\354\217\337\355\217\337\356\217\337\357\217\337\360\217\337\361\217\337\362\217\337\363\217\337\364\217\337\365\217\337\366\217\337\367\217\337\370\217\337\371\217\337\372\217\337\373\217\337\374\217\337\375\217\337\376\n0x8fe0a0:   \217\340\241\217\340\242\217\340\243\217\340\244\217\340\245\217\340\246\217\340\247\217\340\250\217\340\251\217\340\252\217\340\253\217\340\254\217\340\255\217\340\256\217\340\257\217\340\260\217\340\261\217\340\262\217\340\263\217\340\264\217\340\265\217\340\266\217\340\267\217\340\270\217\340\271\217\340\272\217\340\273\217\340\274\217\340\275\217\340\276\n0x8fe0c0: \217\340\300\217\340\301\217\340\302\217\340\303\217\340\304\217\340\305\217\340\306\217\340\307\217\340\310\217\340\311\217\340\312\217\340\313\217\340\314\217\340\315\217\340\316\217\340\317\217\340\320\217\340\321\217\340\322\217\340\323\217\340\324\217\340\325\217\340\326\217\340\327\217\340\330\217\340\331\217\340\332\217\340\333\217\340\334\217\340\335\217\340\336\n0x8fe0e0: \217\340\340\217\340\341\217\340\342\217\340\343\217\340\344\217\340\345\217\340\346\217\340\347\217\340\350\217\340\351\217\340\352\217\340\353\217\340\354\217\340\355\217\340\356\217\340\357\217\340\360\217\340\361\217\340\362\217\340\363\217\340\364\217\340\365\217\340\366\217\340\367\217\340\370\217\340\371\217\340\372\217\340\373\217\340\374\217\340\375\217\340\376\n0x8fe1a0:   \217\341\241\217\341\242\217\341\243\217\341\244\217\341\245\217\341\246\217\341\247\217\341\250\217\341\251\217\341\252\217\341\253\217\341\254\217\341\255\217\341\256\217\341\257\217\341\260\217\341\261\217\341\262\217\341\263\217\341\264\217\341\265\217\341\266\217\341\267\217\341\270\217\341\271\217\341\272\217\341\273\217\341\274\217\341\275\217\341\276\n0x8fe1c0: \217\341\300\217\341\301\217\341\302\217\341\303\217\341\304\217\341\305\217\341\306\217\341\307\217\341\310\217\341\311\217\341\312\217\341\313\217\341\314\217\341\315\217\341\316\217\341\317\217\341\320\217\341\321\217\341\322\217\341\323\217\341\324\217\341\325\217\341\326\217\341\327\217\341\330\217\341\331\217\341\332\217\341\333\217\341\334\217\341\335\217\341\336\n0x8fe1e0: \217\341\340\217\341\341\217\341\342\217\341\343\217\341\344\217\341\345\217\341\346\217\341\347\217\341\350\217\341\351\217\341\352\217\341\353\217\341\354\217\341\355\217\341\356\217\341\357\217\341\360\217\341\361\217\341\362\217\341\363\217\341\364\217\341\365\217\341\366\217\341\367\217\341\370\217\341\371\217\341\372\217\341\373\217\341\374\217\341\375\217\341\376\n0x8fe2a0:   \217\342\241\217\342\242\217\342\243\217\342\244\217\342\245\217\342\246\217\342\247\217\342\250\217\342\251\217\342\252\217\342\253\217\342\254\217\342\255\217\342\256\217\342\257\217\342\260\217\342\261\217\342\262\217\342\263\217\342\264\217\342\265\217\342\266\217\342\267\217\342\270\217\342\271\217\342\272\217\342\273\217\342\274\217\342\275\217\342\276\n0x8fe2c0: \217\342\300\217\342\301\217\342\302\217\342\303\217\342\304\217\342\305\217\342\306\217\342\307\217\342\310\217\342\311\217\342\312\217\342\313\217\342\314\217\342\315\217\342\316\217\342\317\217\342\320\217\342\321\217\342\322\217\342\323\217\342\324\217\342\325\217\342\326\217\342\327\217\342\330\217\342\331\217\342\332\217\342\333\217\342\334\217\342\335\217\342\336\n0x8fe2e0: \217\342\340\217\342\341\217\342\342\217\342\343\217\342\344\217\342\345\217\342\346\217\342\347\217\342\350\217\342\351\217\342\352\217\342\353\217\342\354\217\342\355\217\342\356\217\342\357\217\342\360\217\342\361\217\342\362\217\342\363\217\342\364\217\342\365\217\342\366\217\342\367\217\342\370\217\342\371\217\342\372\217\342\373\217\342\374\217\342\375\217\342\376\n0x8fe3a0:   \217\343\241\217\343\242\217\343\243\217\343\244\217\343\245\217\343\246\217\343\247\217\343\250\217\343\251\217\343\252\217\343\253\217\343\254\217\343\255\217\343\256\217\343\257\217\343\260\217\343\261\217\343\262\217\343\263\217\343\264\217\343\265\217\343\266\217\343\267\217\343\270\217\343\271\217\343\272\217\343\273\217\343\274\217\343\275\217\343\276\n0x8fe3c0: \217\343\300\217\343\301\217\343\302\217\343\303\217\343\304\217\343\305\217\343\306\217\343\307\217\343\310\217\343\311\217\343\312\217\343\313\217\343\314\217\343\315\217\343\316\217\343\317\217\343\320\217\343\321\217\343\322\217\343\323\217\343\324\217\343\325\217\343\326\217\343\327\217\343\330\217\343\331\217\343\332\217\343\333\217\343\334\217\343\335\217\343\336\n0x8fe3e0: \217\343\340\217\343\341\217\343\342\217\343\343\217\343\344\217\343\345\217\343\346\217\343\347\217\343\350\217\343\351\217\343\352\217\343\353\217\343\354\217\343\355\217\343\356\217\343\357\217\343\360\217\343\361\217\343\362\217\343\363\217\343\364\217\343\365\217\343\366\217\343\367\217\343\370\217\343\371\217\343\372\217\343\373\217\343\374\217\343\375\217\343\376\n0x8fe4a0:   \217\344\241\217\344\242\217\344\243\217\344\244\217\344\245\217\344\246\217\344\247\217\344\250\217\344\251\217\344\252\217\344\253\217\344\254\217\344\255\217\344\256\217\344\257\217\344\260\217\344\261\217\344\262\217\344\263\217\344\264\217\344\265\217\344\266\217\344\267\217\344\270\217\344\271\217\344\272\217\344\273\217\344\274\217\344\275\217\344\276\n0x8fe4c0: \217\344\300\217\344\301\217\344\302\217\344\303\217\344\304\217\344\305\217\344\306\217\344\307\217\344\310\217\344\311\217\344\312\217\344\313\217\344\314\217\344\315\217\344\316\217\344\317\217\344\320\217\344\321\217\344\322\217\344\323\217\344\324\217\344\325\217\344\326\217\344\327\217\344\330\217\344\331\217\344\332\217\344\333\217\344\334\217\344\335\217\344\336\n0x8fe4e0: \217\344\340\217\344\341\217\344\342\217\344\343\217\344\344\217\344\345\217\344\346\217\344\347\217\344\350\217\344\351\217\344\352\217\344\353\217\344\354\217\344\355\217\344\356\217\344\357\217\344\360\217\344\361\217\344\362\217\344\363\217\344\364\217\344\365\217\344\366\217\344\367\217\344\370\217\344\371\217\344\372\217\344\373\217\344\374\217\344\375\217\344\376\n0x8fe5a0:   \217\345\241\217\345\242\217\345\243\217\345\244\217\345\245\217\345\246\217\345\247\217\345\250\217\345\251\217\345\252\217\345\253\217\345\254\217\345\255\217\345\256\217\345\257\217\345\260\217\345\261\217\345\262\217\345\263\217\345\264\217\345\265\217\345\266\217\345\267\217\345\270\217\345\271\217\345\272\217\345\273\217\345\274\217\345\275\217\345\276\n0x8fe5c0: \217\345\300\217\345\301\217\345\302\217\345\303\217\345\304\217\345\305\217\345\306\217\345\307\217\345\310\217\345\311\217\345\312\217\345\313\217\345\314\217\345\315\217\345\316\217\345\317\217\345\320\217\345\321\217\345\322\217\345\323\217\345\324\217\345\325\217\345\326\217\345\327\217\345\330\217\345\331\217\345\332\217\345\333\217\345\334\217\345\335\217\345\336\n0x8fe5e0: \217\345\340\217\345\341\217\345\342\217\345\343\217\345\344\217\345\345\217\345\346\217\345\347\217\345\350\217\345\351\217\345\352\217\345\353\217\345\354\217\345\355\217\345\356\217\345\357\217\345\360\217\345\361\217\345\362\217\345\363\217\345\364\217\345\365\217\345\366\217\345\367\217\345\370\217\345\371\217\345\372\217\345\373\217\345\374\217\345\375\217\345\376\n0x8fe6a0:   \217\346\241\217\346\242\217\346\243\217\346\244\217\346\245\217\346\246\217\346\247\217\346\250\217\346\251\217\346\252\217\346\253\217\346\254\217\346\255\217\346\256\217\346\257\217\346\260\217\346\261\217\346\262\217\346\263\217\346\264\217\346\265\217\346\266\217\346\267\217\346\270\217\346\271\217\346\272\217\346\273\217\346\274\217\346\275\217\346\276\n0x8fe6c0: \217\346\300\217\346\301\217\346\302\217\346\303\217\346\304\217\346\305\217\346\306\217\346\307\217\346\310\217\346\311\217\346\312\217\346\313\217\346\314\217\346\315\217\346\316\217\346\317\217\346\320\217\346\321\217\346\322\217\346\323\217\346\324\217\346\325\217\346\326\217\346\327\217\346\330\217\346\331\217\346\332\217\346\333\217\346\334\217\346\335\217\346\336\n0x8fe6e0: \217\346\340\217\346\341\217\346\342\217\346\343\217\346\344\217\346\345\217\346\346\217\346\347\217\346\350\217\346\351\217\346\352\217\346\353\217\346\354\217\346\355\217\346\356\217\346\357\217\346\360\217\346\361\217\346\362\217\346\363\217\346\364\217\346\365\217\346\366\217\346\367\217\346\370\217\346\371\217\346\372\217\346\373\217\346\374\217\346\375\217\346\376\n0x8fe7a0:   \217\347\241\217\347\242\217\347\243\217\347\244\217\347\245\217\347\246\217\347\247\217\347\250\217\347\251\217\347\252\217\347\253\217\347\254\217\347\255\217\347\256\217\347\257\217\347\260\217\347\261\217\347\262\217\347\263\217\347\264\217\347\265\217\347\266\217\347\267\217\347\270\217\347\271\217\347\272\217\347\273\217\347\274\217\347\275\217\347\276\n0x8fe7c0: \217\347\300\217\347\301\217\347\302\217\347\303\217\347\304\217\347\305\217\347\306\217\347\307\217\347\310\217\347\311\217\347\312\217\347\313\217\347\314\217\347\315\217\347\316\217\347\317\217\347\320\217\347\321\217\347\322\217\347\323\217\347\324\217\347\325\217\347\326\217\347\327\217\347\330\217\347\331\217\347\332\217\347\333\217\347\334\217\347\335\217\347\336\n0x8fe7e0: \217\347\340\217\347\341\217\347\342\217\347\343\217\347\344\217\347\345\217\347\346\217\347\347\217\347\350\217\347\351\217\347\352\217\347\353\217\347\354\217\347\355\217\347\356\217\347\357\217\347\360\217\347\361\217\347\362\217\347\363\217\347\364\217\347\365\217\347\366\217\347\367\217\347\370\217\347\371\217\347\372\217\347\373\217\347\374\217\347\375\217\347\376\n0x8fe8a0:   \217\350\241\217\350\242\217\350\243\217\350\244\217\350\245\217\350\246\217\350\247\217\350\250\217\350\251\217\350\252\217\350\253\217\350\254\217\350\255\217\350\256\217\350\257\217\350\260\217\350\261\217\350\262\217\350\263\217\350\264\217\350\265\217\350\266\217\350\267\217\350\270\217\350\271\217\350\272\217\350\273\217\350\274\217\350\275\217\350\276\n0x8fe8c0: \217\350\300\217\350\301\217\350\302\217\350\303\217\350\304\217\350\305\217\350\306\217\350\307\217\350\310\217\350\311\217\350\312\217\350\313\217\350\314\217\350\315\217\350\316\217\350\317\217\350\320\217\350\321\217\350\322\217\350\323\217\350\324\217\350\325\217\350\326\217\350\327\217\350\330\217\350\331\217\350\332\217\350\333\217\350\334\217\350\335\217\350\336\n0x8fe8e0: \217\350\340\217\350\341\217\350\342\217\350\343\217\350\344\217\350\345\217\350\346\217\350\347\217\350\350\217\350\351\217\350\352\217\350\353\217\350\354\217\350\355\217\350\356\217\350\357\217\350\360\217\350\361\217\350\362\217\350\363\217\350\364\217\350\365\217\350\366\217\350\367\217\350\370\217\350\371\217\350\372\217\350\373\217\350\374\217\350\375\217\350\376\n0x8fe9a0:   \217\351\241\217\351\242\217\351\243\217\351\244\217\351\245\217\351\246\217\351\247\217\351\250\217\351\251\217\351\252\217\351\253\217\351\254\217\351\255\217\351\256\217\351\257\217\351\260\217\351\261\217\351\262\217\351\263\217\351\264\217\351\265\217\351\266\217\351\267\217\351\270\217\351\271\217\351\272\217\351\273\217\351\274\217\351\275\217\351\276\n0x8fe9c0: \217\351\300\217\351\301\217\351\302\217\351\303\217\351\304\217\351\305\217\351\306\217\351\307\217\351\310\217\351\311\217\351\312\217\351\313\217\351\314\217\351\315\217\351\316\217\351\317\217\351\320\217\351\321\217\351\322\217\351\323\217\351\324\217\351\325\217\351\326\217\351\327\217\351\330\217\351\331\217\351\332\217\351\333\217\351\334\217\351\335\217\351\336\n0x8fe9e0: \217\351\340\217\351\341\217\351\342\217\351\343\217\351\344\217\351\345\217\351\346\217\351\347\217\351\350\217\351\351\217\351\352\217\351\353\217\351\354\217\351\355\217\351\356\217\351\357\217\351\360\217\351\361\217\351\362\217\351\363\217\351\364\217\351\365\217\351\366\217\351\367\217\351\370\217\351\371\217\351\372\217\351\373\217\351\374\217\351\375\217\351\376\n0x8feaa0:   \217\352\241\217\352\242\217\352\243\217\352\244\217\352\245\217\352\246\217\352\247\217\352\250\217\352\251\217\352\252\217\352\253\217\352\254\217\352\255\217\352\256\217\352\257\217\352\260\217\352\261\217\352\262\217\352\263\217\352\264\217\352\265\217\352\266\217\352\267\217\352\270\217\352\271\217\352\272\217\352\273\217\352\274\217\352\275\217\352\276\n0x8feac0: \217\352\300\217\352\301\217\352\302\217\352\303\217\352\304\217\352\305\217\352\306\217\352\307\217\352\310\217\352\311\217\352\312\217\352\313\217\352\314\217\352\315\217\352\316\217\352\317\217\352\320\217\352\321\217\352\322\217\352\323\217\352\324\217\352\325\217\352\326\217\352\327\217\352\330\217\352\331\217\352\332\217\352\333\217\352\334\217\352\335\217\352\336\n0x8feae0: \217\352\340\217\352\341\217\352\342\217\352\343\217\352\344\217\352\345\217\352\346\217\352\347\217\352\350\217\352\351\217\352\352\217\352\353\217\352\354\217\352\355\217\352\356\217\352\357\217\352\360\217\352\361\217\352\362\217\352\363\217\352\364\217\352\365\217\352\366\217\352\367\217\352\370\217\352\371\217\352\372\217\352\373\217\352\374\217\352\375\217\352\376\n0x8feba0:   \217\353\241\217\353\242\217\353\243\217\353\244\217\353\245\217\353\246\217\353\247\217\353\250\217\353\251\217\353\252\217\353\253\217\353\254\217\353\255\217\353\256\217\353\257\217\353\260\217\353\261\217\353\262\217\353\263\217\353\264\217\353\265\217\353\266\217\353\267\217\353\270\217\353\271\217\353\272\217\353\273\217\353\274\217\353\275\217\353\276\n0x8febc0: \217\353\300\217\353\301\217\353\302\217\353\303\217\353\304\217\353\305\217\353\306\217\353\307\217\353\310\217\353\311\217\353\312\217\353\313\217\353\314\217\353\315\217\353\316\217\353\317\217\353\320\217\353\321\217\353\322\217\353\323\217\353\324\217\353\325\217\353\326\217\353\327\217\353\330\217\353\331\217\353\332\217\353\333\217\353\334\217\353\335\217\353\336\n0x8febe0: \217\353\340\217\353\341\217\353\342\217\353\343\217\353\344\217\353\345\217\353\346\217\353\347\217\353\350\217\353\351\217\353\352\217\353\353\217\353\354\217\353\355\217\353\356\217\353\357\217\353\360\217\353\361\217\353\362\217\353\363\217\353\364\217\353\365\217\353\366\217\353\367\217\353\370\217\353\371\217\353\372\217\353\373\217\353\374\217\353\375\217\353\376\n0x8feca0:   \217\354\241\217\354\242\217\354\243\217\354\244\217\354\245\217\354\246\217\354\247\217\354\250\217\354\251\217\354\252\217\354\253\217\354\254\217\354\255\217\354\256\217\354\257\217\354\260\217\354\261\217\354\262\217\354\263\217\354\264\217\354\265\217\354\266\217\354\267\217\354\270\217\354\271\217\354\272\217\354\273\217\354\274\217\354\275\217\354\276\n0x8fecc0: \217\354\300\217\354\301\217\354\302\217\354\303\217\354\304\217\354\305\217\354\306\217\354\307\217\354\310\217\354\311\217\354\312\217\354\313\217\354\314\217\354\315\217\354\316\217\354\317\217\354\320\217\354\321\217\354\322\217\354\323\217\354\324\217\354\325\217\354\326\217\354\327\217\354\330\217\354\331\217\354\332\217\354\333\217\354\334\217\354\335\217\354\336\n0x8fece0: \217\354\340\217\354\341\217\354\342\217\354\343\217\354\344\217\354\345\217\354\346\217\354\347\217\354\350\217\354\351\217\354\352\217\354\353\217\354\354\217\354\355\217\354\356\217\354\357\217\354\360\217\354\361\217\354\362\217\354\363\217\354\364\217\354\365\217\354\366\217\354\367\217\354\370\217\354\371\217\354\372\217\354\373\217\354\374\217\354\375\217\354\376\n0x8feda0:   \217\355\241\217\355\242\217\355\243\217\355\244\217\355\245\217\355\246\217\355\247\217\355\250\217\355\251\217\355\252\217\355\253\217\355\254\217\355\255\217\355\256\217\355\257\217\355\260\217\355\261\217\355\262\217\355\263\217\355\264\217\355\265\217\355\266\217\355\267\217\355\270\217\355\271\217\355\272\217\355\273\217\355\274\217\355\275\217\355\276\n0x8fedc0: \217\355\300\217\355\301\217\355\302\217\355\303\217\355\304\217\355\305\217\355\306\217\355\307\217\355\310\217\355\311\217\355\312\217\355\313\217\355\314\217\355\315\217\355\316\217\355\317\217\355\320\217\355\321\217\355\322\217\355\323\217\355\324\217\355\325\217\355\326\217\355\327\217\355\330\217\355\331\217\355\332\217\355\333\217\355\334\217\355\335\217\355\336\n0x8fede0: \217\355\340\217\355\341\217\355\342\217\355\343                                                      \n0x8feea0:                                                               \n0x8feec0:                                                               \n0x8feee0:                                                               \n0x8fefa0:                                                               \n0x8fefc0:                                                               \n0x8fefe0:                                                               \n0x8ff0a0:                                                               \n0x8ff0c0:                                                               \n0x8ff0e0:                                                               \n0x8ff1a0:                                                               \n0x8ff1c0:                                                               \n0x8ff1e0:                                                               \n0x8ff2a0:                                                               \n0x8ff2c0:                                                               \n0x8ff2e0:                                                               \n0x8ff3a0:                                                               \n0x8ff3c0:                                                               \n0x8ff3e0:                                                               \n0x8ff4a0:                                                               \n0x8ff4c0:                                                               \n0x8ff4e0:                                                               \n0x8ff5a0:                                                               \n0x8ff5c0:                                                               \n0x8ff5e0:                                                               \n0x8ff6a0:                                                               \n0x8ff6c0:                                                               \n0x8ff6e0:                                                               \n0x8ff7a0:                                                               \n0x8ff7c0:                                                               \n0x8ff7e0:                                                               \n0x8ff8a0:                                                               \n0x8ff8c0:                                                               \n0x8ff8e0:                                                               \n0x8ff9a0:                                                               \n0x8ff9c0:                                                               \n0x8ff9e0:                                                               \n0x8ffaa0:                                                               \n0x8ffac0:                                                               \n0x8ffae0:                                                               \n0x8ffba0:                                                               \n0x8ffbc0:                                                               \n0x8ffbe0:                                                               \n0x8ffca0:                                                               \n0x8ffcc0:                                                               \n0x8ffce0:                                                               \n0x8ffda0:                                                               \n0x8ffdc0:                                                               \n0x8ffde0:                                                               \n0x8ffea0:                                                               \n0x8ffec0:                                                               \n0x8ffee0:                                                               \n0x8fffa0:                                                               \n0x8fffc0:                                                               \n0x8fffe0:                                                               \n",

    }
};

sub mysystem (@);

LINE0: while (<>) {
    if (/^End of Patch\.$/) { $curpatch = $skip = 0 ; next }
    if (!$curpatch) {
	if (/^Change (\d+) by /) { # a new patch begins
	    if ($1 > $lastpatch) {
		$patchlog{$curpatch = $1} = $_;
	    } else {
		warn "Skipping patch #$1, already applied\n";
		next LINE0;
	    }
	} else {
            next LINE0;
        }
      LINE1: while (<>) { # Read log message and list of affected files
	    last if (/^Differences/);
	    $patchlog{$curpatch} .= $_;
	    if (m[
                  ^\.\.\.+\s//depot/
                  (
                   (?:maint-[^/]+/)?
                   perl
                   (?:-[^/]+)?              # sp.case "maint-5.6/perl-5.6.2"
                  )
                  /
                  (.*?)
                  \#\d+\s
                  (\w+)
                 ]x) {
                my $currentbranch = $1;
                my $localpath = $2;
                my $action = $3;
                next LINE1
                    unless $currentbranch eq $Opt{branch}; # e.g. patch 32
                                                           # also contains
                                                           # "mainline"
		if ($action eq 'edit' || $action eq 'integrate') {
		    $edited{$curpatch} = [] if !ref $edited{$curpatch};
		    push @{$edited{$curpatch}}, $localpath;
		} elsif ($action eq 'add' || $action eq 'branch') {
		    $added{$curpatch} = [] if !ref $added{$curpatch};
		    push @{$added{$curpatch}}, $localpath;
		} elsif ($action eq 'delete') {
		    $deleted{$curpatch} = [] if !ref $deleted{$curpatch};
		    push @{$deleted{$curpatch}}, $localpath;
		}
	    }
	}
	$patchlog{$curpatch} =~ s/\n+\z//;
	# XXX svn cannot process these control characters (as of 3953):
	$patchlog{$curpatch} =~
            s{([\000-\010\013-\037])}{"^".pack("c",ord($1)^64)}eg;
	$patches{$curpatch} = '';
        next LINE0;
    } else {
        if (m[==== //depot/.+#\d+ \(.*?\) ====]) {
            if (m[====\s(//depot/          # $repopath (full path incl. #N)
                         (                 # $curbranch ("perl" or
                                           # "maint-5.8/perl")
                          (?:maint-[^/]+/)?
                          perl
                          (?:-[^/]+)?      # sp.case "maint-5.6/perl-5.6.2"
                         )
                         /
                         (                 # $f (filename)
                          [^\#]+
                         )
                         \#\d+
                        )
                        \s\(
                        (                  # $type
                         .*?
                        )
                        \)
                  ]x) {
                my $repopath = $1;
                if ($SKIP->{$curpatch} && $SKIP->{$curpatch}{$repopath}){
                    $skip = 1;
                    next LINE0;
                } else {
                    $skip = 0;
                }
                $curbranch = $2;
                # warn "curbranch[$curbranch]Opt{branch}[$Opt{branch}]";
                my $f = $3;
                my $type = $4;
                if ($type !~ /text/ || $type =~ /binary|ktext/) {
                    if (my $md5 = $BINARY->{repo}{$repopath}) {
                        warn "Info: inserting our own $repopath\n";
                        $binary{$curpatch}{$f} = $BINARY->{content}{$md5};
                    } else {
                        warn "***WARNING*** patch #$curpatch contains"
                            ." file $f (type $type), skipped\n";
                        @{$added{$curpatch}}  = grep $_ ne $f, @{$added{$curpatch}};
                        @{$edited{$curpatch}} = grep $_ ne $f, @{$edited{$curpatch}};
                    }
                }
            } else {
                chomp;
                warn "skipping change [$_] in patch #$curpatch: unknown branch";
                $skip = 1; # e.g.: //depot/cfgperl/pod/perlref.pod#4 (text)
            }
        }
	# Only take into account the patches to files in the requested branch
	$patches{$curpatch} .= $_ if $curbranch eq $Opt{branch} && !$skip;
    }
}

# Apply the patches

my @sorted = sort { $a <=> $b } keys %patches;
PATCH: for my $patch (@sorted) {
    print "About to import patch #$patch...\n";
    $0 = "perlpatch2svn: branch $Opt{branch} ".
        "range $sorted[0]-$sorted[-1] patch $patch";
    my @targets = ();
    if (ref($deleted{$patch}) && @{ $deleted{$patch} }) {
	# Delete only things that exist
	@{ $deleted{$patch} } = grep -e, @{ $deleted{$patch} };
	push @targets, @{ $deleted{$patch} };
	# there may be additionnal directories to delete
    }
    if (ref($added{$patch}) && @{ $added{$patch} }) {
	unshift @{ $added{$patch} }, get_dirs_to_add( @{ $added{$patch} } );
	push @targets, @{ $added{$patch} };
    }
    if (ref($edited{$patch}) && @{ $edited{$patch} }) {
	push @targets, @{ $edited{$patch} };
    }
    my $binary = 0;
    if ($binary{$patch}) {
	$binary++;
	for my $f (keys %{$binary{$patch}}) {
	    require File::Path;
	    require File::Basename;
	    my $dir = File::Basename::dirname($f);
	    File::Path::mkpath($dir);
	    open F, ">", $f or die "Could not open >$f: $!";
	    my $content = $binary{$patch}{$f};
	    print F $content;
	    close F;
	}
    }
    if (@targets == 0 && !$binary) {
	warn "***WARNING*** Skipping patch #$patch, is empty\n";
	next PATCH;
    }
    open my $logfh, ">$TMPLOGFILE"
	or die "Can't write to $TMPLOGFILE: $!\n";
    print $logfh $patchlog{$patch};
    close $logfh;
    open my $patchfh, "| $PATCH"
	or die "Can't fork patch: $!\n";
    print $patchfh $patches{$patch};
    close $patchfh
	or warn "Error closing patch: \$?=$?\n";
    if (ref($added{$patch}) && @{ $added{$patch} }) {
	for (@{ $added{$patch} }) {
	    if (! -f and open my $touch, ">$_") {
		# Create files that are added empty
		close $touch;
	    }
	}
	mysystem(svn => 'add', '-N', @{ $added{$patch} })
	    or die "Error executing svn add : $!,$?\n";
    }
    if (ref($deleted{$patch}) && @{ $deleted{$patch} }) {
	mysystem(svn => 'rm', @{ $deleted{$patch} })
	    or die "Error executing svn rm : $!,$?\n";
        my %seen = map { $_ => 1 } @targets;
	push @targets, grep !$seen{$_}++, delete_empty_dirs(@{ $deleted{$patch} });
    }

    # The following hoops were necessary because we had
    # spurious/inconsistent "Transaction out of date" errors when svn
    # rm deleted directories. From a mail to John Peacock which I
    # wrote while on revision 114:

## I believe that delete_empty_dirs is just doing the right thing. The
## recursive approach is a good one. It tells subversion about the deeper
## empty subdirectories and retrieves that same information from
## subversion on the less deep subdirectories. Very solid approach. I
## don't know if it worked in all cases when I was testing the stuff or
## if a later version of svn broke it.
##
## I grepped through the sources of svn and found an interesting note in
## contrib/client-side/vc-svn.el:
##
## ;;; vc-svn ought to handle more gracefully an attempted commit that
## ;;; fails with "Transaction is out of date".  Probably the best
## ;;; approach is to ask "file is not up-to-date; do you want to merge
## ;;; now?"  I think vc-cvs does this.
##
## I think I'll follow this advice and just do an "svn up" when commit
## fails with this error and retry the commit.
##
## I think it's a bug in subversion, but I still cannot write a recipe to
## reproduce it, except by running apc2svn for over an hour. The
## principle is easy to describe:
##
## Do an "snv rm" that removes all files in a directory. Then do an "svn
## rm" on that directory. Then do a "svn commit" on both all the files
## and the directory. Whenever I do that, it just works. When apc2svn
## does it, it fails with "Transaction out of date". Maybe it has to do
## with attributes, with removing of the tree and checking it in again,
## with the calls to "svn info" that are done in between or all these
## things together. I'm trying to write an t/svn.t, but it is sooo time
## consuming.
##

    my($wtr,$rdr,$fail_trans,$fail_any);
    our $DEBUG;
    warn "DEBUG: Trying to commit #$patch" if $DEBUG;
    my $pid = open3($wtr,$rdr,0,
                    svn => 'commit',
                    '--encoding=latin1', '-F', $TMPLOGFILE, @targets);
    close $wtr;
    {
        local  $/;
        my $out = <$rdr>;
        # do not match ^ or $ because they have buffered STDOUT, so we
        # receive STDERR mixed into stdout
        $fail_any++ if $out =~ /svn: Commit failed/;
        $fail_trans++ if $out =~ /svn: Transaction is out of date/;
        warn "DEBUG: commit returned STDOUT+STDERR[$out]" if $DEBUG;
    }
    waitpid $pid, 0;
    if ($fail_any) {
        if ($fail_any) {
            mysystem(svn => "up");
            mysystem(svn => 'commit', '--encoding=latin1', '-F', $TMPLOGFILE, @targets)
                or die "Error executing svn commit : $!,$?\n";
        } else {
            die "Error executing svn commit";
        }
    } else {
        warn "DEBUG: Successfully committed targets[@targets]" if $DEBUG;
    }
}

END { unlink $TMPLOGFILE; }

sub mysystem (@) {
  my @system = @_;
  warn sprintf("%s: Running (%s)\n",
               scalar(localtime),
               join(",",map {"\"$_\""} @system),
              ) unless $Opt{"q"};
  system(@system)==0;
}


__END__