Advertisement
Tuurlijk

Remove Duplicates For Insertion

Jan 21st, 2014
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 21.33 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. /*****************************************************************************
  26.  *                    Tiny TYPO3 Test Suite v 1.0.0
  27.  *                           by: Michiel Roos
  28.  *                          _______
  29.  *                         /_  __(_)___  __  __
  30.  *                          / / / / __ \/ / / /
  31.  *                         / / / / / / / /_/ /
  32.  *                        /_/ /_/_/ /_/\__, /
  33.  *                                  /____/
  34.  *                   ________  ______  ____ _____
  35.  *                  /_  __/\ \/ / __ \/ __ \__  /
  36.  *                   / /    \  / /_/ / / / //_ <
  37.  *                  / /     / / ____/ /_/ /__/ /
  38.  *                 /_/     /_/_/    \____/____/
  39.  *             ______          __     _____       _ __
  40.  *            /_  __/__  _____/ /_   / ___/__  __(_) /____
  41.  *             / / / _ \/ ___/ __/   \__ \/ / / / / __/ _ \
  42.  *            / / /  __(__  ) /_    ___/ / /_/ / / /_/  __/
  43.  *           /_/  \___/____/\__/   /____/\__,_/_/\__/\___/
  44.  *
  45.  *           https://github.com/Tuurlijk/TinyTypo3TestSuite
  46.  *
  47.  ****************************************************************************/
  48.  
  49. /*****************************************************************************
  50.  * Setup
  51.  *
  52.  * - testname: Displayed in the page title and page header
  53.  * - runs    : The default number of runs
  54.  * - skipSets: An array of setNames to skip
  55.  ****************************************************************************/
  56. $testName = '\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::removeDuplicatesForInsertion()';
  57. $runs = 100;
  58. $skipSets = array();
  59.  
  60. /*****************************************************************************
  61.  * Parameter Sets
  62.  *
  63.  * Define multiple parameter sets here so you can excersise the method well.
  64.  * Each method needs a description. The other parameters must match the
  65.  * parameter names of the method.
  66.  ****************************************************************************/
  67. $parameterSets = array(
  68.     'set1' => array (
  69.         'description' => 'Normal use',
  70.         'insertionList' => 'field_b, field_d, field_c;;;4-4-4',
  71.         'list' => 'field_a, field_b;;;;2-2-2, field_c;;;;3-3-3'
  72.     ),
  73.     'set2' => array (
  74.         'description' => 'Normal use 2',
  75.         'insertionList' => 'newA, newB, fieldA',
  76.         'list' => 'fieldA, fieldB, fieldC;labelC;paletteC;specialC, fieldD'
  77.     ),
  78.     'set3' => array (
  79.         'description' => 'Double value in $insertionList and empty $list',
  80.         'insertionList' => 'newA, newB, newB, fieldA',
  81.         'list' => ''
  82.     )
  83. );
  84.  
  85. /*****************************************************************************
  86.  * Test Methods:
  87.  *
  88.  * Define your test methods here. Name them version1 - version[n].
  89.  * version1 must be the baseline implementation.
  90.  ****************************************************************************/
  91.  
  92. $descriptions['version1'] = 'Baseline';
  93. function version1($insertionList, $list = '') {
  94.         $pattern = '/(?:^|,)\\s*\\b([^;,]+)\\b[^,]*/';
  95.         $listItems = array();
  96.         if ($list && preg_match_all($pattern, $list, $listMatches)) {
  97.             $listItems = $listMatches[1];
  98.         }
  99.         if ($insertionList && preg_match_all($pattern, $insertionList, $insertionListMatches)) {
  100.             $insertionItems = array();
  101.             $insertionDuplicates = FALSE;
  102.             foreach ($insertionListMatches[1] as $insertionIndex => $insertionItem) {
  103.                 if (!isset($insertionItems[$insertionItem]) && !in_array($insertionItem, $listItems)) {
  104.                     $insertionItems[$insertionItem] = TRUE;
  105.                 } else {
  106.                     unset($insertionListMatches[0][$insertionIndex]);
  107.                     $insertionDuplicates = TRUE;
  108.                 }
  109.             }
  110.             if ($insertionDuplicates) {
  111.                 $insertionList = implode('', $insertionListMatches[0]);
  112.             }
  113.         }
  114.         return $insertionList;
  115. }
  116.  
  117. $descriptions['version2'] = 'Optimized baseline';
  118. function version2($insertionList, $list = '') {
  119.         if ($list === '') {
  120.             return $insertionList;
  121.         }
  122.         // Get a list of fieldNames that are present in the list.
  123.         preg_match_all('/(?:^|,)\\s*\\b([^;,]+)\\b[^,]*/', $list, $listMatches);
  124.         // Remove the field names form the insertionlist.
  125.         $fieldReplacePatterns = array();
  126.         foreach ($listMatches[1] as $fieldName) {
  127.             $fieldReplacePatterns[] = '/(?:^|,)\\s*\\b' . $fieldName . '\\b[^,$]*/';
  128.         }
  129.         return preg_replace($fieldReplacePatterns, '', $insertionList);
  130. }
  131.  
  132. $descriptions['version3'] = 'Optimized baseline with remove input duplicates';
  133. function version3($insertionList, $list = '') {
  134.         $insertionListParts = preg_split('/\\s*,\\s*/', $insertionList);
  135.         $insertionList = implode(', ', array_unique($insertionListParts));
  136.         if ($list === '') {
  137.             return $insertionList;
  138.         }
  139.         // Get a list of fieldNames that are present in the list.
  140.         preg_match_all('/(?:^|,)\\s*\\b([^;,]+)\\b[^,]*/', $list, $listMatches);
  141.         // Remove the field names form the insertionlist.
  142.         $fieldReplacePatterns = array();
  143.         foreach ($listMatches[1] as $fieldName) {
  144.             $fieldReplacePatterns[] = '/(?:^|,)\\s*\\b' . $fieldName . '\\b[^,$]*/';
  145.         }
  146.         return preg_replace($fieldReplacePatterns, '', $insertionList);
  147. }
  148.  
  149. /*****************************************************************************
  150.  * Helper Methods:
  151.  *
  152.  * Add any methods that are needed by any of the test methods here.
  153.  ****************************************************************************/
  154.  
  155.  
  156. /*****************************************************************************
  157.  * System (look, but don't touch ;-) . . . only touch if you must.
  158.  ****************************************************************************/
  159. $v = '1.0.0';
  160. $reverseExecutionOrder = 0;
  161. if (isset($_GET['source']) && $_GET['source']) {
  162.     show_source(__FILE__);
  163.     exit;
  164. }
  165. if (isset($_GET['runs'])) $runs = preg_replace('/[^0-9]/', '', $_GET['runs']);
  166. if (isset($_GET['reverseExecutionOrder'])) $reverseExecutionOrder = intval($_GET['reverseExecutionOrder']);
  167.  
  168. // Prepare
  169. $baselineTimes = $functionsToCall = $times = array();
  170. $allFunctions = get_defined_functions();
  171. $functions = array_filter($allFunctions['user'], create_function('$a','return strpos($a, "version") === 0;'));
  172. if ($reverseExecutionOrder) arsort($functions);
  173. foreach ($functions as $function) {
  174.     $xAxis[] = $function;
  175.     $functionsToCall[$function] = new ReflectionFunction($function);
  176. }
  177.  
  178. // Execute
  179. foreach ($parameterSets as $setName => $parameters) {
  180.     if (in_array($setName, $skipSets)) continue;
  181.     // Description is used later on, so clone the parameters
  182.     $functionParameters = $parameters;
  183.     unset($functionParameters['description']);
  184.     for ($i = 0; $i < $runs; $i++) {
  185.         foreach ($functions as $function) {
  186.             $start = microtime(TRUE);
  187.             $result = $functionsToCall[$function]->invokeArgs($functionParameters);
  188.             $time = microtime(TRUE) - $start;
  189.             if ($function === 'version1') {
  190.                 $baselineTimes[$setName] += $time * 1000;
  191.             }
  192.             if (is_array($result)) {
  193.                 $resultObjects[$setName][$function] = array_slice($result, 0, 20, TRUE);
  194.             } else {
  195.                 $resultObjects[$setName][$function] = $result;
  196.             }
  197.             $times[$setName][$function] += $time * 1000;
  198.         }
  199.     }
  200. }
  201.  
  202. function findFastestTimes($times) {
  203.     $fastestTimes = array();
  204.     foreach ($times as $setName => $timeData) {
  205.         foreach ($timeData as $functionName => $time) {
  206.             if (isset($fastestTimes[$functionName])) {
  207.                 $fastestTimes['overall'][$functionName] += $time;
  208.                 $fastestTimes[$setName][$functionName] += $time;
  209.             } else {
  210.                 $fastestTimes['overall'][$functionName] = $time;
  211.                 $fastestTimes[$setName][$functionName] = $time;
  212.             }
  213.         }
  214.     }
  215.     $fastestTimes = array_filter($fastestTimes, 'asort');
  216.     return $fastestTimes;
  217. }
  218.  
  219. function findWinner($times) {
  220.     $averagedTimes = array();
  221.     foreach ($times as $timeData) {
  222.         foreach ($timeData as $functionName => $time) {
  223.             $averagedTimes[$functionName] += $time;
  224.         }
  225.     }
  226.     asort($averagedTimes);
  227.     return $averagedTimes;
  228. }
  229.  
  230. $averagedTimes = findWinner($times);
  231. $fastestTimes = findFastestTimes($times);
  232.  
  233. /**
  234.  * Format an integer as a time value
  235.  *
  236.  * @param integer $time The value to format
  237.  *
  238.  * @return string
  239.  */
  240. function printSeconds($time) {
  241.     $prefix = '';
  242.     $suffix = 'μs';
  243.     if ($time < 0) {
  244.         $time = abs($time);
  245.         $prefix = '-';
  246.     }
  247.     if ($time === 0) {
  248.         $suffix = '';
  249.     }
  250.     if ($time >= 1000) {
  251.         $time = $time / 1000;
  252.         $suffix = 'ms';
  253.     }
  254.     if ($time >= 1000) {
  255.         $time = $time / 1000;
  256.         $suffix = ' s';
  257.     }
  258.     if ($time >= 60 && $suffix === ' s') {
  259.         $time = $time / 60;
  260.         $suffix = 'min!';
  261.     }
  262.     return $prefix . sprintf("%.2f {$suffix}", $time);
  263. }
  264.  
  265. ?>
  266. <html>
  267. <head>
  268.     <title><?php  echo $testName ?> | Tiny TYPO3 Test Suite v<?php echo $v ?></title>
  269.     <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;*" />
  270.     <style type="text/css">
  271.         h3 {
  272.             border-bottom: 1px solid #dedede;
  273.         }
  274.         h4 {
  275.             font-family: Share;
  276.             font-weight: normal;
  277.         }
  278.     </style>
  279.     <script src="http://code.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script>
  280.     <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js" type="text/javascript"></script>
  281.     <script src="http://code.highcharts.com/highcharts.js" type="text/javascript"></script>
  282.     <script src="http://code.highcharts.com/modules/exporting.js" type="text/javascript"></script>
  283. </head>
  284. <body>
  285. <div id="content" class="mw-body">
  286.     <h1 id="top"><?php echo $testName ?></h1>
  287.     <form action="<?php echo $_SERVER['SCRIPT_NAME'] ?>">
  288.         <label for="runs">Run the tests how many times?</label>
  289.         <input name="runs" id="runs" value="<?php echo $runs ?>"/>
  290.         <label for="runs"><a href="#help">Reverse execution order?</a></label>
  291.         <input type="checkbox" name="reverseExecutionOrder" id="reverseExecutionOrder" value="1" <?php echo ($reverseExecutionOrder) ? 'checked="checked"' : '' ?>/>
  292.         <input class="submit" type="submit" value="Go!"/>
  293.     </form>
  294.     <div class="timeAveraged" style="float: left;">
  295.         <p>Winner using averaged times over all sets: <strong><?php
  296.             $winner = array_slice($averagedTimes, 0, 1);
  297.             echo key($winner) ?></strong> <?php echo printSeconds(current($winner) / count($times)) ?>.</p>
  298.     <?php
  299.         if (count($parameterSets) > 1) {
  300.             echo '<ul>';
  301.             foreach ($averagedTimes as $function => $time) {
  302.                 echo '<li><b>' . $function . '</b>: ',
  303.                     ' ' . printSeconds($time / count($times)) . '</li>';
  304.             }
  305.             echo '</ul>';
  306.         }
  307.     ?>
  308.     </div>
  309.     <div class="timeFastest" style="margin-left: 50%;">
  310.         <p>The fastest function in any set is <strong><?php
  311.             $winner = array_slice($fastestTimes['overall'], 0, 1);
  312.             echo key($winner) ?></strong> <?php echo printSeconds(current($winner)) ?>.</p>
  313.     <?php
  314.         if (count($parameterSets) > 1) {
  315.             echo '<ul>';
  316.             foreach ($fastestTimes as $set => $functions) {
  317.                 if ($set !== 'overall') {
  318.                     echo '<li><b>' . $set . '</b>: ';
  319.                     $setWinner = array_slice($functions, 0, 1);
  320.                     echo key($setWinner) . ' ' . printSeconds(current($setWinner)) . '</li>';
  321.                 }
  322.             }
  323.             echo '</ul>';
  324.         }
  325.     ?>
  326.     </div>
  327.     <div id="resultGraph" style="min-width: 310px; min-height: 400px; margin: 0 auto"></div>
  328.     <h2>Parameter Sets</h2>
  329.     <?php
  330.         foreach ($times as $setName => $functionData) {
  331.             echo '<h3>' , ucfirst($setName) , '</h3>',
  332.                 '<p>' , $parameterSets[$setName]['description'] , '</p>',
  333.                 '<ul>';
  334.             foreach ($functionData as $function => $time) {
  335.                 $identifier = $setName . '-' . $function;
  336.                 echo '<li><a style="text-decoration: none" href="#', $identifier, '">',
  337.                     ucfirst($function),
  338.                     '</a> ',
  339.                     ': ',
  340.                     sprintf('<span style="min-width: 33px; display: inline-block; text-align: right; font-weight: bold;">%1.2d%%</span> ', $time * 100 / $baselineTimes[$setName]),
  341.                     sprintf('<span style="min-width: 50px; display: inline-block; text-align: right; margin: 0 10px;">%s</span> ', printSeconds($time)),
  342.                     $descriptions[$function],
  343.                     '</li>';
  344.             }
  345.             echo '</ul><h4>Parameters</h4><ul>';
  346.             foreach ($parameterSets[$setName] as $key => $value) {
  347.                 if ($key !== 'description') {
  348.                     if (is_array($value)) {
  349.                         echo '<li>' , $key , ':', '</li>'; var_dump($value);
  350.                     } else {
  351.                         echo '<li>' . $key . ' = ' . (string) $value . '</li>';
  352.                     }
  353.                 } else {
  354.                     $setDescriptions[] = $value;
  355.                 }
  356.             }
  357.             echo '</ul>';
  358.         }
  359.     ?>
  360.     <script>
  361.         /**
  362.          * Format an integer as a time value
  363.          *
  364.          * @param {String} time The value to format in microseconds.
  365.          * @param {Number} decimals The amount of decimals
  366.          *
  367.          * @return string
  368.          */
  369.         function printSeconds(time, decimals) {
  370.            decimals = typeof decimals !== 'undefined' ? decimals : 2;
  371.             var prefix = '',
  372.                 suffix = 'μs';
  373.             if (time < 0) {
  374.                 time = Math.abs(time);
  375.                 prefix = '-';
  376.             }
  377.             if (time == 0) {
  378.                 suffix = '';
  379.             }
  380.             if (time >= 1000) {
  381.                 time = time / 1000;
  382.                 suffix = 'ms';
  383.             }
  384.             if (time >= 1000) {
  385.                 time = time / 1000;
  386.                 suffix = ' s';
  387.             }
  388.             if (time >= 60 && suffix == ' s') {
  389.                 time = time / 60;
  390.                 suffix = 'min!';
  391.             }
  392.             return prefix + Highcharts.numberFormat(time, decimals) + ' ' + suffix;
  393.         }
  394.  
  395.         var baseLineTimes = [<?php echo implode(',', $baselineTimes) ?>];
  396.         var descriptions = ['<?php echo implode("','", array_map('addslashes', $descriptions)) ?>'];
  397.         var setDescriptions = ['<?php echo implode("','", array_map('addslashes', $setDescriptions)) ?>'];
  398.         jQuery(document).ready(function($) {
  399.             $('#resultGraph').highcharts({
  400.                 chart: {
  401.                     zoomType: 'y'
  402.                 },
  403.                 title: {
  404.                     text: '<?php echo $testName ?>'
  405.                 },
  406.                 xAxis: {
  407.                     categories: ['<?php echo implode("','", $xAxis)  ?>'],
  408.                     title: {
  409.                         text: null
  410.                     }
  411.                 },
  412.                 yAxis: {
  413.                     min: 0,
  414.                     title: {
  415.                         text: 'Time (milliseconds)',
  416.                         align: 'high'
  417.                     },
  418.                     labels: {
  419.                         overflow: 'justify',
  420.                         formatter: function() {
  421.                             return printSeconds(this.value);
  422.                         }
  423.                     }
  424.                 },
  425.                 tooltip: {
  426.                     useHTML: true,
  427.                     formatter: function() {
  428.                         return '<strong><a style="text-decoration: none" href="#' + this.point.series.name + '-' + this.point.category + '">' + this.point.series.name + ', ' + descriptions[this.point.x] + '</a></strong><br/>' +
  429.                             setDescriptions[this.series.index] + '<br/>' +
  430.                             printSeconds(this.point.y) +
  431.                             ' (' + Math.ceil(this.point.y * 100 / baseLineTimes[this.point.series.index]) + '%)';
  432.                     }
  433.                 },
  434.                 legend: {
  435.                     enabled: true
  436.                 },
  437.                 credits: {
  438.                     enabled: false
  439.                 },
  440.                 series: [
  441.                     <?php
  442.                     foreach ($times as $setName => $setTimes) {
  443.                         $series[] = "{
  444.                             name: '" . $setName . "',
  445.                             data: [" . implode(',', $setTimes) . "]
  446.                         }";
  447.                     }
  448.                     echo implode(',', $series);
  449.                     ?>
  450.                 ]
  451.             });
  452.             $('#showSourceLink').on('click', function(e) {
  453.                 e.preventDefault();
  454.                 $.ajax({
  455.                     url: '<?php echo $_SERVER['SCRIPT_NAME'] ?>?source=1',
  456.                     cache: false
  457.                 })
  458.                 .done(function(html) {
  459.                     $('.loading').hide();
  460.                     $('#sourceCode').html(html);
  461.                     $('html, body').animate({
  462.                         scrollTop: $("#source").offset().top
  463.                     }, {
  464.                         duration: 2000,
  465.                         easing: 'easeOutBounce'
  466.                     });
  467.                 });
  468.             });
  469.             $('.top').on('click', function(e) {
  470.                 e.preventDefault();
  471.                 $('html, body').animate({
  472.                     scrollTop: $("#top").offset().top
  473.                 }, {
  474.                     duration: 2000,
  475.                     easing: 'easeOutBounce'
  476.                 });
  477.             });
  478.         });
  479.     </script>
  480.     <h2>Data results</h2>
  481.     <?php
  482.         foreach ($times as $setName => $functionData) {
  483.             echo '<h3>' . ucfirst($setName) . '</h3>';
  484.             echo '<p>' . $parameterSets[$setName]['description'] . '</p>';
  485.             echo '<ul>';
  486.             foreach ($parameterSets[$setName] as $key => $value) {
  487.                 if ($key !== 'description') {
  488.                     if (is_array($value)) {
  489.                         echo '<li>' , $key , ':', '</li>'; var_dump($value);
  490.                     } else {
  491.                         echo '<li>' . $key . ' = ' . (string) $value . '</li>';
  492.                     }
  493.                 }
  494.             }
  495.             echo '</ul>';
  496.             foreach ($functionData as $function => $time) {
  497.                 echo '<h4 id="', $setName . '-' . $function, '">', ucfirst($function), '</h4>',
  498.                     '<p>', $descriptions[$function], '</p>';
  499.                 var_dump($resultObjects[$setName][$function]);
  500.             }
  501.         }
  502.     ?>
  503.     <div id="p-personal" role="navigation" class="">
  504.         <ul>
  505.     <?php
  506.     foreach ($resultObjects as $setName => $functionData) {
  507.         foreach ($functionData as $function => $data) {
  508.             echo '<li><a href="#' . $setName . '-' . $function . '">' . ucfirst($setName) . ' - ' . ucfirst($function)  . '</a></h3>';
  509.         }
  510.     }
  511.     ?>
  512.             <li><a href="#about">About - v<?php echo $v ?></a></li>
  513.             <li><a href="#help">Help</a></li>
  514.             <li><a href="#source">Source Code</a></li>
  515.         </ul>
  516.     </div>
  517.     <div id="help">
  518.     <div id="about">
  519.         <h2>About</h2>
  520.         <p>Tiny TYPO3 Test Suite v<?php echo $v ?> is a script that helps you test different method implementations. Get the latest version from github:
  521.             <a href="https://github.com/Tuurlijk/TinyTypo3TestSuite">https://github.com/Tuurlijk/TinyTypo3TestSuite</a></p>
  522.     </div>
  523.         <h2>Help</h2>
  524.         <h3>Execution Order</h3>
  525.         <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>
  526.     </div>
  527.     <div id="source">
  528.         <h2>Source Code</h2>
  529.         <pre id="sourceCode"><a href="#source" id="showSourceLink">Show the sourcecode of this file.</a></pre>
  530.     </div>
  531.     <a href="#top" class="top" style="position: fixed; bottom: 10px; left: 25px; text-decoration: none;">^ top</a>
  532.     <a href="https://github.com/Tuurlijk/TinyTypo3TestSuite"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
  533.     <div id="logo" style="position: absolute; top: 60px; left: 60px;"><img alt="" src="data:image/png;base64,
  534. iVBORw0KGgoAAAANSUhEUgAAAHYAAAAiCAYAAACKuC3wAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ
  535. bWFnZVJlYWR5ccllPAAABzJJREFUeNrsWwlsFUUYHh4VkEMEKaACHmAV0KTENFxaiIqK1sQDNYIS
  536. UTQRDSlH1DSIBqSgAQVijGIEjdYDREXEIEo4LSiKgFgUMKCAIK1KFQoUSv1++y/v7zCzZ1/bkP2T
  537. Lztv59jd+Wb+a/c1qKysVLGcftLAb8PKfNUQh8sYRxrkqUWGNpNweBhoI06XAiXALuBnoBBYgv77
  538. 4umvA2JBEtVlATcA13K5KVf3ADEbtPadcdju87rHgY+BURhnd0xDzUuagdAMHIYDg4HzDX3+1kll
  539. 6RjwuoOAnrje5Rjvn5iKFBGLCSYV+yxwu4eKtpFwIMT1aTHcCMyNqUgBsSB1NA75QGMffc6xnP89
  540. 1XY+Fv+SAKmP4DjNJ6kkzdGnwyns5Kn9OISxl3/FNKSAWODREP36Wc5/FWKsXTENqSG2W4h+11jO
  541. Lwo4zkFga0xDamxsGBt3PYVDUL96duMToBxo5HOc7zHGCUtda2B8iHtbAXzEjmBzseC+8Og3Asgw
  542. tD8TmAq04nCvMZ+juSsD9gLLOHzz40CeAdxGcwhczOORQ7qZnch1Ln3p+rdQuAlcAqQL/2Y58BZw
  543. 6H/TCIIogXBWiAnsC1IKDeHSh3zjfuQJjPG8pe5CYEeI+5oB5DIZY/jcFqA73Z6lTyfgFyarAqCY
  544. /FeuO5tCPJ++wgPAApc2GbwAurq0IXIeAo4a6jJpM7j03QYMoHtPhJw8kiEuE+tXFqZQG01j7aF4
  545. InNc2o4Wod/bglSTlPAEbgQ2iGuQhvkA6GXp14q1gCSVHM4iNkmO3AfM8vF8tNh+4gXpCO3i2Y6N
  546. LQo5cXdidzYyeMekCtf76L8Obbe41JOHfZEBss89hvoJXEcqco7UDi4qf7ijcIApHvedzjsvk1Ui
  547. JXFWC9M23dLvKdYMzuIgP6Uda5J07f6GAlcZxvhNVWUC2/J90yLpwmq9Qvg/3YjYNSGJTefskUny
  548. fPR/2aOe0o47DSgXbfYZ6mX4NFU8cF+GLhQVNOPyXN4FQaSEiXB8hZ7CVjtCdvRB8fsxtsuOHAHI
  549. JL2v3ZdJ3S8BirXzpAnmi9/ZROzKCOou15hxyFOf47DYpR+tvHdqwTmk3PU8l11LTtBI8XtKyOvs
  550. YLXsiK6Os4QfU8wq22uxXxfwHr4W5S5E7KYIWaMsqOM+Ll7mQUvdOJBfXkue/2RRztHCu2Eq+SZq
  551. oUZOUNmqOX5Semtee4VLHuAYl9uwmg2T6GmR4JAlihMzzrJrd7AjoIczi9lBqS3ZJOJrCu3GCns4
  552. VrTLj3gdObEttbpLRflHlzEqNFOQEeD6zUW5PMGFeREeaCB2bbaFXHLt71JV72QV3/RQQ/ybapGk
  553. 3csOzx3sbJF8CayNeI2GoqyHKvItmZd23CPKHQJcXy6e3Q6xyyOoY1fbBBLJqF/ANuNK/C6ug0RM
  554. ofAlKEEwSrO3k2rgGvLjgkNaXVvLzvba+e18XrsZL1RHViV48iu00CCo9MauHeJCbimwFCirwyzb
  555. ZM3p68HlNbywo0qmxd6SNBHlfz3GKdOyVCZpz3a8M4c65KyeK+x0YUI0ft0lM+NHpoPc9qr+ymKR
  556. tZFqc0INjN2PJ9mRtYYdZVPTusjdbssIvsee+HYmta/wjO92EhTS2VkQURUVgNy0ekzuZO33Bp6Y
  557. sELzR58NFYhzpPLr6o1Ve8cDT2gVL0QcmLIec/jDt/oo87XgfkYILXVAoJwdL8c5olBlTA3er+0F
  558. yUvsJxCeFjEs+TLvUkiXptnCVSBlhbK/b/Uj5HV2wjjjeeUexbh76gmxJzQbFuZznpaW8/Ss9BLg
  559. W0NdqZaF8nKEHLF9hqQnOCaqqjdrORzGjTCpzWe0dFcYyWaHhB6oqzq95E1RPqyqEvmFPGe2pIs8
  560. 38Jj/KaWfm5CWmemSr7o6J9m8GCXY7d9huJNNTAJuRhv72lG7P0h+vwhyq092sr6IN9e/yDKXRKW
  561. RhTjHY9qz0DqGyoWPSlxnkdbmcwIsimqqfuEJe6kt/kvRniQnSr5KiyW6mnC7i7tyOnMsPTzkiO6
  562. u24TsrXbQjwExWG3YnEciPk8Kd+I8tUu895LOFclKthHEDL9WJpwyRaVsYd7LKDXOQR9N8ZcVpPv
  563. hIdLacKBlnbDRHlpwGsMEOVtbjuWyKWVNjIAqZTgXxDzeIoc5vjSkekGW3uz5pjNNoxDb3CaGM53
  564. ZA17MkmS8LojEPUKDs95NDvGpBbEHFplooib6T0rpQPpw79XgVXApyqZ6qRs2BLDGIPY1FHflRzP
  565. Ejar5H+nyOl9zVf6D4Q9iRCojFeF/rkqfZs0mJIbMXeuQkka+l8UvcqkHDB9vWH6mnM9m0Cb0Gbs
  566. rKrnpqU8Tk5Xwu9dgThKllPKcDUHxOTC0+u6K2qZVPqP7UbGwRD9i0T/Uh/tK0T7qL7DMvaKSRVv
  567. VcmUIanqNWz2+rDjZLPVs7jtfpVMh/6pqjJP/Z1o5j8BBgADhL1q2hRfzwAAAABJRU5ErkJggg==" /></div>
  568. </div>
  569. </body>
  570. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement