Tuurlijk

getDirs Test

Jan 13th, 2014
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 17.87 KB | None | 0 0
  1. <?php
  2. error_reporting(E_ALL & ~E_NOTICE);
  3. /*****************************************************************************
  4.  *  Copyright notice
  5.  *
  6.  *  ⓒ 2013 Michiel Roos <michiel@maxserv.nl>
  7.  *  All rights reserved
  8.  *
  9.  *  This script is part of the TYPO3 project. The TYPO3 project is free
  10.  *  software; you can redistribute it and/or modify it under the terms of the
  11.  *  GNU General Public License as published by the Free Software Foundation;
  12.  *  either version 2 of the License, or (at your option) any later version.
  13.  *
  14.  *  The GNU General Public License can be found at
  15.  *  http://www.gnu.org/copyleft/gpl.html.
  16.  *
  17.  *  This script is distributed in the hope that it will be useful, but
  18.  *  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  19.  *  or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  20.  *  more details.
  21.  *
  22.  *  This copyright notice MUST APPEAR in all copies of the script!
  23.  ****************************************************************************/
  24.  
  25. // Setup
  26. $testName = 'GeneralUtility::get_dirs() test';
  27. $reverseExecutionOrder = 0;
  28. $runs = 100;
  29.  
  30. // Parameter Sets
  31. $parameterSets = array(
  32.     'set1' => array (
  33.         'description' => 'Normal usage',
  34.         'path' => __DIR__ . '/../typo3temp/'
  35.     )
  36. );
  37.  
  38. /*****************************************************************************
  39.  * Tests:
  40.  ****************************************************************************/
  41.  
  42. $descriptions['version1'] = 'Baseline';
  43. function version1($path) {
  44.     if ($path) {
  45.         if (is_dir($path)) {
  46.             $dir = scandir($path);
  47.             $dirs = array();
  48.             foreach ($dir as $entry) {
  49.                 if (is_dir($path . '/' . $entry) && $entry != '..' && $entry != '.') {
  50.                     $dirs[] = $entry;
  51.                 }
  52.             }
  53.         } else {
  54.             $dirs = 'error';
  55.         }
  56.     }
  57.     return $dirs;
  58. }
  59.  
  60. /****************************************************************************/
  61. $descriptions['version2'] = 'glob() GLOB_ONLYDIR';
  62. function version2($path) {
  63.     if (@is_dir($path)) {
  64.         $path = rtrim($path, '/');
  65.         $directories = glob("$path/*", GLOB_NOSORT | GLOB_ONLYDIR);
  66.         foreach ($directories as $key => $directory) {
  67.             $directories[$key] = basename($directory);
  68.         }
  69.     } else {
  70.         $directories = 'error';
  71.     }
  72.     return $directories;
  73. }
  74.  
  75. /****************************************************************************/
  76. $descriptions['version3'] = 'glob() GLOB_ONLYDIR + extra scan for hidden dirs';
  77. function version3($path) {
  78.     if (@is_dir($path)) {
  79.         $path = rtrim($path, '/');
  80.         $basenameDirectories = array();
  81.         $directories = array_merge(
  82.             glob($path . '/*', GLOB_NOSORT | GLOB_ONLYDIR),
  83.             glob($path . '/.*', GLOB_NOSORT | GLOB_ONLYDIR)
  84.         );
  85.         foreach ($directories as $directory) {
  86.             $baseDirectory = basename($directory);
  87.             if (!in_array($baseDirectory, array('.', '..'))) {
  88.                 $basenameDirectories[] = $baseDirectory;
  89.             }
  90.         }
  91.     } else {
  92.         $basenameDirectories = 'error';
  93.     }
  94.     return $basenameDirectories;
  95. }
  96.  
  97. /****************************************************************************/
  98. $descriptions['version4'] = 'glob() GLOB_ONLYDIR + extra scan for hidden dirs, filter dotfiles last';
  99. function version4($path) {
  100.     if (@is_dir($path)) {
  101.         $path = rtrim($path, '/');
  102.         $basenameDirectories = array();
  103.         $directories = array_merge(
  104.             glob($path . '/*', GLOB_NOSORT | GLOB_ONLYDIR),
  105.             glob($path . '/.*', GLOB_NOSORT | GLOB_ONLYDIR)
  106.         );
  107.         foreach ($directories as $directory) {
  108.             $basenameDirectories[] = basename($directory);
  109.         }
  110.         $basenameDirectories = array_diff($basenameDirectories, array('.', '..'));
  111.     } else {
  112.         $basenameDirectories = 'error';
  113.     }
  114.     return $basenameDirectories;
  115. }
  116.  
  117. /****************************************************************************/
  118. $descriptions['version5'] = 'scandir() + array_filter() + is_dir()';
  119. function version5($path) {
  120.     return array_filter(
  121.         array_diff(scandir($path), array('.', '..')),
  122.         create_function('$a','return is_dir("' . $path . '" . \'/\' . $a);')
  123.     );
  124. }
  125.  
  126. /*****************************************************************************
  127.  * Helper functions needed for test:
  128.  ****************************************************************************/
  129.  
  130. /*****************************************************************************
  131.  * System (look, but don't touch ;-) . . . only touch if you must.
  132.  ****************************************************************************/
  133.  
  134. // Show source?
  135. if (isset($_GET['source']) && $_GET['source']) {
  136.     show_source(__FILE__);
  137.     exit;
  138. }
  139.  
  140. // How many runs?
  141. if (isset($_GET['runs'])) $runs = preg_replace('/[^0-9]/', '', $_GET['runs']);
  142.  
  143. // Execution order?
  144. if (isset($_GET['reverseExecutionOrder'])) $reverseExecutionOrder = intval($_GET['reverseExecutionOrder']);
  145.  
  146. // Prepare
  147. $baselineTimes = $functionsToCall = $times = array();
  148. $allFunctions = get_defined_functions();
  149. $functions = array_filter($allFunctions['user'], create_function('$a','return strpos($a, "version") === 0;'));
  150. if ($reverseExecutionOrder) arsort($functions);
  151. foreach ($functions as $function) {
  152.     $xAxis[] = $function;
  153.     $functionsToCall[$function] = new ReflectionFunction($function);
  154. }
  155.  
  156. // Execute
  157. foreach ($parameterSets as $setName => $parameters) {
  158.     // Description is used later on, so clone the parameters
  159.     $functionParameters = $parameters;
  160.     unset($functionParameters['description']);
  161.     for ($i = 0; $i < $runs; $i++) {
  162.         foreach ($functions as $function) {
  163.             $start = microtime(TRUE);
  164.             $result = $functionsToCall[$function]->invokeArgs($functionParameters);
  165.             $time = microtime(TRUE) - $start;
  166.             if ($function === 'version1') {
  167.                 $baselineTimes[$setName] += $time * 1000;
  168.             }
  169.             if (is_array($result)) {
  170.                 $resultObjects[$setName][$function] = array_slice($result, 0, 20, TRUE);
  171.             } else {
  172.                 $resultObjects[$setName][$function] = $result;
  173.             }
  174.             $times[$setName][$function] += $time * 1000;
  175.         }
  176.     }
  177. }
  178.  
  179. function findWinner($times) {
  180.     $cumulativeTimes = array();
  181.     foreach ($times as $setName => $timeData) {
  182.         foreach ($timeData as $functionName => $time) {
  183.             if (isset($cumulativeTimes[$functionName])) {
  184.                 $cumulativeTimes['overall'][$functionName] += $time;
  185.                 $cumulativeTimes[$setName][$functionName] += $time;
  186.             } else {
  187.                 $cumulativeTimes['overall'][$functionName] = $time;
  188.                 $cumulativeTimes[$setName][$functionName] = $time;
  189.             }
  190.         }
  191.     }
  192.     $cumulativeTimes = array_filter($cumulativeTimes, 'asort');
  193.     return $cumulativeTimes;
  194. }
  195.  
  196. $cumulativeTimes = (findWinner($times));
  197.  
  198. /**
  199.  * Format an integer as a time value
  200.  *
  201.  * @param integer $time The value to format
  202.  *
  203.  * @return string
  204.  */
  205. function printSeconds($time) {
  206.     $prefix = '';
  207.     $suffix = 'μs';
  208.     if ($time < 0) {
  209.         $time = abs($time);
  210.         $prefix = '-';
  211.     }
  212.     if ($time === 0) {
  213.         $suffix = '';
  214.     }
  215.     if ($time >= 1000) {
  216.         $time = $time / 1000;
  217.         $suffix = 'ms';
  218.     }
  219.     if ($time >= 1000) {
  220.         $time = $time / 1000;
  221.         $suffix = ' s';
  222.     }
  223.     if ($time >= 60 && $suffix === ' s') {
  224.         $time = $time / 60;
  225.         $suffix = 'min!';
  226.     }
  227.     return $prefix . sprintf("%.2f {$suffix}", $time);
  228. }
  229.  
  230. ?>
  231. <html>
  232. <head>
  233.     <title><?php  echo $testName ?> | TYPO3 Tiny Test Suite</title>
  234.     <link rel="stylesheet" href="http://wiki.typo3.org/wiki/load.php?debug=false&amp;lang=en&amp;modules=mediawiki.legacy.commonPrint%2Cshared%7Cskins.typo3vector&amp;only=styles&amp;skin=typo3vector&amp;*" />
  235.     <script src="http://code.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script>
  236.     <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>
  237.     <script src="http://code.highcharts.com/highcharts.js" type="text/javascript"></script>
  238.     <script src="http://code.highcharts.com/modules/exporting.js" type="text/javascript"></script>
  239. </head>
  240. <body>
  241. <div id="content" class="mw-body">
  242.     <h1 id="top"><?php echo $testName ?></h1>
  243.     <form action="<?php echo $_SERVER['SCRIPT_NAME'] ?>">
  244.         <label for="runs">Run the tests how many times?</label>
  245.         <input name="runs" id="runs" style="width: 60px;" value="<?php echo $runs ?>"/>
  246.         <label for="runs"><a href="#help">Reverse execution order?</a></label>
  247.         <input type="checkbox" name="reverseExecutionOrder" id="reverseExecutionOrder" value="1" <?php echo ($reverseExecutionOrder) ? 'checked="checked"' : '' ?>/>
  248.         <input class="submit" type="submit" value="Go!"/>
  249.     </form>
  250.     <p>The overall winning function is <strong><?php
  251.             $winner = array_slice($cumulativeTimes['overall'], 0, 1);
  252.             echo key($winner) ?></strong> <?php echo printSeconds(current($winner)) ?>.</p>
  253.     <?php
  254.         if (count($parameterSets) > 1) {
  255.             echo '<ul>';
  256.             foreach ($cumulativeTimes as $set => $functions) {
  257.                 if ($set !== 'overall') {
  258.                     echo '<li><b>' . $set . '</b>: ';
  259.                     $setWinner = array_slice($functions, 0, 1);
  260.                     echo key($setWinner) . ' ' . printSeconds(current($setWinner)) . '</li>';
  261.                 }
  262.             }
  263.             echo '</ul>';
  264.         }
  265.     ?>
  266.     <div id="resultGraph" style="min-width: 310px; min-height: 400px; margin: 0 auto"></div>
  267.     <?php
  268.         foreach ($times as $setName => $functionData) {
  269.             echo '<h2>' , ucfirst($setName) , '</h2>',
  270.                 '<p>' , $parameterSets[$setName]['description'] , '</p>',
  271.                 '<ul>';
  272.             foreach ($functionData as $function => $time) {
  273.                 $identifier = $setName . '-' . $function;
  274.                 echo '<li><a style="text-decoration: none" href="#', $identifier, '">',
  275.                     ucfirst($function),
  276.                     '</a> ',
  277.                     ': ',
  278.                     sprintf('<span style="min-width: 33px; display: inline-block; text-align: right; font-weight: bold;">%1.2d%%</span> ', $time * 100 / $baselineTimes[$setName]),
  279.                     sprintf('<span style="min-width: 50px; display: inline-block; text-align: right; margin: 0 10px;">%s</span> ', printSeconds($time)),
  280.                     $descriptions[$function],
  281.                     '</li>';
  282.             }
  283.             echo '</ul><h3>Parameters</h3><ul>';
  284.             foreach ($parameterSets[$setName] as $key => $value) {
  285.                 if ($key !== 'description') {
  286.                     if (is_array($value)) {
  287.                         echo '<li>' , $key , ':', '</li>'; var_dump($value);
  288.                     } else {
  289.                         echo '<li>' . $key . ' = "' . (string) $value . '"</li>';
  290.                     }
  291.                 } else {
  292.                     $setDescriptions[] = $value;
  293.                 }
  294.             }
  295.             echo '</ul>';
  296.         }
  297.     ?>
  298.     <script>
  299.         /**
  300.          * Format an integer as a time value
  301.          *
  302.          * @param {String} time The value to format in microseconds.
  303.          * @param {Number} decimals The amount of decimals
  304.          *
  305.          * @return string
  306.          */
  307.         function printSeconds(time, decimals) {
  308.            decimals = typeof decimals !== 'undefined' ? decimals : 2;
  309.             var prefix = '',
  310.                 suffix = 'μs';
  311.             if (time < 0) {
  312.                 time = Math.abs(time);
  313.                 prefix = '-';
  314.             }
  315.             if (time == 0) {
  316.                 suffix = '';
  317.             }
  318.             if (time >= 1000) {
  319.                 time = time / 1000;
  320.                 suffix = 'ms';
  321.             }
  322.             if (time >= 1000) {
  323.                 time = time / 1000;
  324.                 suffix = ' s';
  325.             }
  326.             if (time >= 60 && suffix == ' s') {
  327.                 time = time / 60;
  328.                 suffix = 'min!';
  329.             }
  330.             return prefix + Highcharts.numberFormat(time, decimals) + ' ' + suffix;
  331.         }
  332.  
  333.         var baseLineTimes = [<?php echo implode(',', $baselineTimes) ?>];
  334.         var descriptions = ['<?php echo implode("','", array_map('addslashes', $descriptions)) ?>'];
  335.         var setDescriptions = ['<?php echo implode("','", array_map('addslashes', $setDescriptions)) ?>'];
  336.         Highcharts.setOptions({
  337.             colors: ['#f58006', '#f50806', '#067bf5', '#f5bc06', '#8006f5']
  338.         });
  339.         jQuery(document).ready(function($) {
  340.             $('#resultGraph').highcharts({
  341.                 chart: {
  342. //                  type: 'bar'
  343.                     zoomType: 'y'
  344.                 },
  345.                 title: {
  346.                     text: '<?php echo $testName ?>'
  347.                 },
  348.                 xAxis: {
  349.                     categories: ['<?php echo implode("','", $xAxis)  ?>'],
  350.                     title: {
  351.                         text: null
  352.                     }
  353.                 },
  354.                 yAxis: {
  355.                     min: 0,
  356.                     title: {
  357.                         text: 'Time (milliseconds)',
  358.                         align: 'high'
  359.                     },
  360.                     labels: {
  361.                         overflow: 'justify',
  362.                         formatter: function() {
  363.                             return printSeconds(this.value);
  364.                         }
  365.                     }
  366.                 },
  367.                 tooltip: {
  368.                     useHTML: true,
  369.                     formatter: function() {
  370.                         return '<strong><a style="text-decoration: none" href="#' + this.point.series.name + '-' + this.point.category + '">' + descriptions[this.point.x] + '</a></strong><br/>' +
  371.                             setDescriptions[this.series.index] + '<br/>' +
  372.                             printSeconds(this.point.y) +
  373.                             ' (' + Math.ceil(this.point.y * 100 / baseLineTimes[this.point.series.index]) + '%)';
  374.                     }
  375.                 },
  376.                 legend: {
  377.                     enabled: true
  378.                 },
  379.                 credits: {
  380.                     enabled: false
  381.                 },
  382.                 series: [
  383.                     <?php
  384.                     foreach ($times as $setName => $setTimes) {
  385.                         $series[] = "{
  386.                             name: '" . $setName . "',
  387.                             data: [" . implode(',', $setTimes) . "]
  388.                         }";
  389.                     }
  390.                     echo implode(',', $series);
  391.                     ?>
  392.                 ]
  393.             });
  394.             $('#showSourceLink').on('click', function(e) {
  395.                 e.preventDefault();
  396.                 $.ajax({
  397.                     url: '<?php echo $_SERVER['SCRIPT_NAME'] ?>?source=1',
  398.                     cache: false
  399.                 })
  400.                 .done(function(html) {
  401.                     $('.loading').hide();
  402.                     $('#sourceCode').html(html);
  403.                     $('html, body').animate({
  404.                         scrollTop: $("#source").offset().top
  405.                     }, {
  406.                         duration: 2000,
  407.                         easing: 'easeOutBounce'
  408.                     });
  409.                 });
  410.             });
  411.             $('.top').on('click', function(e) {
  412.                 e.preventDefault();
  413.                 $('html, body').animate({
  414.                     scrollTop: $("#top").offset().top
  415.                 }, {
  416.                     duration: 2000,
  417.                     easing: 'easeOutBounce'
  418.                 });
  419.             });
  420.         });
  421.     </script>
  422.     <h2>Data results</h2>
  423.     <?php
  424.         foreach ($times as $setName => $functionData) {
  425.             echo '<h3>' . ucfirst($setName) . '</h3>';
  426.             echo '<p>' . $parameterSets[$setName]['description'] . '</p>';
  427.             echo '<ul>';
  428.             foreach ($parameterSets[$setName] as $key => $value) {
  429.                 if ($key !== 'description') {
  430.                     if (is_array($value)) {
  431.                         echo '<li>' , $key , ':', '</li>'; var_dump($value);
  432.                     } else {
  433.                         echo '<li>' . $key . ' = "' . (string) $value . '"</li>';
  434.                     }
  435.                 }
  436.             }
  437.             echo '</ul>';
  438.             foreach ($functionData as $function => $time) {
  439.                 echo '<h4 id="', $setName . '-' . $function, '">', ucfirst($function), '</h4>',
  440.                     '<p>', $descriptions[$function], '</p>';
  441.                 var_dump($resultObjects[$setName][$function]);
  442.                 echo '<a href="#top" class="top" style="color: #ddd; text-decoration: none;">^ top</a>';
  443.             }
  444.         }
  445.     ?>
  446.     <div id="p-personal" role="navigation" class="">
  447.         <ul>
  448.     <?php
  449.     foreach ($resultObjects as $setName => $functionData) {
  450.         foreach ($functionData as $function => $data) {
  451.             echo '<li><a href="#' . $setName . '-' . $function . '">' . ucfirst($setName) . ' ' . ucfirst($function)  . '</a></h3>';
  452.         }
  453.     }
  454.     ?>
  455.             <li><a href="#help">Help</a></li>
  456.             <li><a href="#source">Source Code</a></li>
  457.         </ul>
  458.     </div>
  459.     <div id="help">
  460.         <h2>Help</h2>
  461.         <h3>Execution Order</h3>
  462.         <p>In some cases, the second function (non baseline) always runs faster than the baseline. Even when switching the code around. This toggle enables you to reverse the running order to check for this behaviour. Your winning function should still win whatever the execution order. If that is not the case, then this test has failed to determine what code runs faster.</p>
  463.         <a href="#top" class="top" style="color: #ddd; text-decoration: none;">^ top</a>
  464.     </div>
  465.     <div id="source">
  466.         <h2>Source Code</h2>
  467.         <pre id="sourceCode"><a href="#source" id="showSourceLink">Show the sourcecode of this file.</a></pre>
  468.         <a href="#top" class="top" style="color: #ddd; text-decoration: none;">^ top</a>
  469.     </div>
  470.     <div id="logo" style="position: absolute; top: 60px; left: 60px;"><img alt="" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHYAAAAiCAYAAACKuC3wAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ
  471. bWFnZVJlYWR5ccllPAAABzJJREFUeNrsWwlsFUUYHh4VkEMEKaACHmAV0KTENFxaiIqK1sQDNYIS
  472. UTQRDSlH1DSIBqSgAQVijGIEjdYDREXEIEo4LSiKgFgUMKCAIK1KFQoUSv1++y/v7zCzZ1/bkP2T
  473. Lztv59jd+Wb+a/c1qKysVLGcftLAb8PKfNUQh8sYRxrkqUWGNpNweBhoI06XAiXALuBnoBBYgv77
  474. 4umvA2JBEtVlATcA13K5KVf3ADEbtPadcdju87rHgY+BURhnd0xDzUuagdAMHIYDg4HzDX3+1kll
  475. 6RjwuoOAnrje5Rjvn5iKFBGLCSYV+yxwu4eKtpFwIMT1aTHcCMyNqUgBsSB1NA75QGMffc6xnP89
  476. 1XY+Fv+SAKmP4DjNJ6kkzdGnwyns5Kn9OISxl3/FNKSAWODREP36Wc5/FWKsXTENqSG2W4h+11jO
  477. Lwo4zkFga0xDamxsGBt3PYVDUL96duMToBxo5HOc7zHGCUtda2B8iHtbAXzEjmBzseC+8Og3Asgw
  478. tD8TmAq04nCvMZ+juSsD9gLLOHzz40CeAdxGcwhczOORQ7qZnch1Ln3p+rdQuAlcAqQL/2Y58BZw
  479. 6H/TCIIogXBWiAnsC1IKDeHSh3zjfuQJjPG8pe5CYEeI+5oB5DIZY/jcFqA73Z6lTyfgFyarAqCY
  480. /FeuO5tCPJ++wgPAApc2GbwAurq0IXIeAo4a6jJpM7j03QYMoHtPhJw8kiEuE+tXFqZQG01j7aF4
  481. InNc2o4Wod/bglSTlPAEbgQ2iGuQhvkA6GXp14q1gCSVHM4iNkmO3AfM8vF8tNh+4gXpCO3i2Y6N
  482. LQo5cXdidzYyeMekCtf76L8Obbe41JOHfZEBss89hvoJXEcqco7UDi4qf7ijcIApHvedzjsvk1Ui
  483. JXFWC9M23dLvKdYMzuIgP6Uda5J07f6GAlcZxvhNVWUC2/J90yLpwmq9Qvg/3YjYNSGJTefskUny
  484. fPR/2aOe0o47DSgXbfYZ6mX4NFU8cF+GLhQVNOPyXN4FQaSEiXB8hZ7CVjtCdvRB8fsxtsuOHAHI
  485. JL2v3ZdJ3S8BirXzpAnmi9/ZROzKCOou15hxyFOf47DYpR+tvHdqwTmk3PU8l11LTtBI8XtKyOvs
  486. YLXsiK6Os4QfU8wq22uxXxfwHr4W5S5E7KYIWaMsqOM+Ll7mQUvdOJBfXkue/2RRztHCu2Eq+SZq
  487. oUZOUNmqOX5Semtee4VLHuAYl9uwmg2T6GmR4JAlihMzzrJrd7AjoIczi9lBqS3ZJOJrCu3GCns4
  488. VrTLj3gdObEttbpLRflHlzEqNFOQEeD6zUW5PMGFeREeaCB2bbaFXHLt71JV72QV3/RQQ/ybapGk
  489. 3csOzx3sbJF8CayNeI2GoqyHKvItmZd23CPKHQJcXy6e3Q6xyyOoY1fbBBLJqF/ANuNK/C6ug0RM
  490. ofAlKEEwSrO3k2rgGvLjgkNaXVvLzvba+e18XrsZL1RHViV48iu00CCo9MauHeJCbimwFCirwyzb
  491. ZM3p68HlNbywo0qmxd6SNBHlfz3GKdOyVCZpz3a8M4c65KyeK+x0YUI0ft0lM+NHpoPc9qr+ymKR
  492. tZFqc0INjN2PJ9mRtYYdZVPTusjdbssIvsee+HYmta/wjO92EhTS2VkQURUVgNy0ekzuZO33Bp6Y
  493. sELzR58NFYhzpPLr6o1Ve8cDT2gVL0QcmLIec/jDt/oo87XgfkYILXVAoJwdL8c5olBlTA3er+0F
  494. yUvsJxCeFjEs+TLvUkiXptnCVSBlhbK/b/Uj5HV2wjjjeeUexbh76gmxJzQbFuZznpaW8/Ss9BLg
  495. W0NdqZaF8nKEHLF9hqQnOCaqqjdrORzGjTCpzWe0dFcYyWaHhB6oqzq95E1RPqyqEvmFPGe2pIs8
  496. 38Jj/KaWfm5CWmemSr7o6J9m8GCXY7d9huJNNTAJuRhv72lG7P0h+vwhyq092sr6IN9e/yDKXRKW
  497. RhTjHY9qz0DqGyoWPSlxnkdbmcwIsimqqfuEJe6kt/kvRniQnSr5KiyW6mnC7i7tyOnMsPTzkiO6
  498. u24TsrXbQjwExWG3YnEciPk8Kd+I8tUu895LOFclKthHEDL9WJpwyRaVsYd7LKDXOQR9N8ZcVpPv
  499. hIdLacKBlnbDRHlpwGsMEOVtbjuWyKWVNjIAqZTgXxDzeIoc5vjSkekGW3uz5pjNNoxDb3CaGM53
  500. ZA17MkmS8LojEPUKDs95NDvGpBbEHFplooib6T0rpQPpw79XgVXApyqZ6qRs2BLDGIPY1FHflRzP
  501. Ejar5H+nyOl9zVf6D4Q9iRCojFeF/rkqfZs0mJIbMXeuQkka+l8UvcqkHDB9vWH6mnM9m0Cb0Gbs
  502. rKrnpqU8Tk5Xwu9dgThKllPKcDUHxOTC0+u6K2qZVPqP7UbGwRD9i0T/Uh/tK0T7qL7DMvaKSRVv
  503. VcmUIanqNWz2+rDjZLPVs7jtfpVMh/6pqjJP/Z1o5j8BBgADhL1q2hRfzwAAAABJRU5ErkJggg==" /></div>
  504. </div>
  505. </body>
  506. </html>
Add Comment
Please, Sign In to add comment