3v4l.org

run code in 300+ PHP versions simultaneously
<?php // обеспечение включение файла включен в родительский файл defined('_VALID_MOS') or die('Direct Access to this location is not allowed.'); // обеспечение пользователя доступом к этой функции if (!($acl->acl_check('administration', 'edit', 'users', $my->usertype, 'components', 'all') || $acl->acl_check('administration', 'edit', 'users', $my->usertype, 'components', 'com_dailymessage'))) { mosRedirect('index2.php', _NOT_AUTH); } require_once($mainframe->getPath('admin_html')); mosCommonHTML::loadOverlib(); HTML_catalog::Stylesheet(); global $database; function ExchangeItems($itemtype, $idname, $itemid,$itemid1) { global $database, $mainframe; $database->setQuery("SELECT prio FROM #__".$itemtype." WHERE ".$idname." = ".$itemid); $result = $database->loadObjectList(); $prio = $result[0]->prio; $database->setQuery("SELECT prio FROM #__".$itemtype." WHERE ".$idname." = ".$itemid1); $result = $database->loadObjectList(); $prio1 = $result[0]->prio; $database->doSQL("UPDATE #__".$itemtype." SET prio=".$prio1." WHERE ".$idname." =".$itemid); $database->doSQL("UPDATE #__".$itemtype." SET prio=".$prio." WHERE ".$idname." =".$itemid1); } function ISNULL($var) { if (empty($var)) return 0; else return $var; } function DelTree($id) { global $database; $database->setQuery ('SELECT * from #__catalog where parentid='.$id); $result=$database->loadObjectList(); if (sizeof($result)) foreach ($result as $row) DelTree($row->id); $database->setQuery('SELECT * from #__items where sectionid='.$id); $result=$database->loadObjectList(); if (sizeof($result)) foreach ($result as $row) { $database->doSQL('DELETE from #__itemdetails where itemid = '.$row->itemid); $database->doSQL('DELETE from #__items where itemid='.$row->itemid); } $database->doSQL('DELETE from #__catalog where id='.$id); } switch($act) { case 'managecatalog': { switch ($task) { case 'move': ExchangeItems($itemtype,$idname,$itemid,$itemid1); break; case 'delete': switch ($itemtype) { case 'catalog': DelTree($itemid); break; case 'item': $database->doSQL('DELETE from #__itemdetails where itemid = '.$itemid); $database->doSQL('DELETE from #__items where itemid='.$itemid); break; case 'itemdetail': $database->doSQL('DELETE from #__itemdetails where id='.$itemdetailsid); mosRedirect('index2.php?option='.$option.'&act='.$act.'&itemid='.$itemid.'&parentid='.$parentid.'&task=edit&itemtype=item'); break; } break; case 'edit': switch ($itemtype) { case 'item': switch ($task2) { case 'move': ExchangeItems('itemdetails','id',$moveid,$moveid1); break; default: break; } HTML_catalog::DrawPath($parentid); $database->setQuery("SELECT #__items.itemid as itemid, #__itemdetails.id as itemdetailsid, naim, img, foto, drawing, shema, description, article, pricefor, code, size, color, price1, price2, price3, price4, price5 from #__items left join #__itemdetails on #__items.itemid=#__itemdetails.itemid where #__items.itemid=".$itemid." ORDER by #__itemdetails.prio"); $result=$database->loadObjectList(); HTML_catalog::ShowItemEditForm($result, 'edit'); break; case 'catalog': HTML_catalog::DrawPath($parentid); $database->setQuery("SELECT * from #__catalog where id=".$catalogid); $result=$database->loadObjectList(); HTML_catalog::ShowCatalogEditForm($result, 'edit'); break; } break; case 'new': switch ($itemtype) { case 'catalog': HTML_catalog::DrawPath($parentid); HTML_catalog::ShowCatalogEditForm(null, 'new'); break; case 'item': HTML_catalog::DrawPath($parentid); HTML_catalog::ShowItemEditForm(null, 'new'); break; case 'itemdetail': $database->setQuery('SELECT * from #__items where itemid='.$itemid); $result=$database->loadObjectList(); $itemname=$result[0]->naim; HTML_catalog::DrawPath($parentid,'','/<a href="index2.php?option=com_catalog&act=managecatalog&task=edit&itemtype=item&parentid='.$parentid.'&itemid='.$itemid.'">'.$itemname.'</a>'); HTML_catalog::ShowItemdetailEditForm('new'); break; } break; case 'save': switch ($itemtype) { case 'item': $vars = get_defined_vars(); $deleteimg = 'Не использовать изображение'; $itemimgfile =''; if ((isset($HTTP_POST_FILES['itemimg']['name']))&&(!empty($HTTP_POST_FILES['itemimg']['name']))) { copy($HTTP_POST_FILES['itemimg']['tmp_name'],"./../UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemimg']['name'])); $itemimgfile = "./UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemimg']['name']); } else if ($selectimg != $deleteimg) $itemimgfile = "./UserFiles/Image/catalog/".$selectimg; $itemfotofile=''; if ((isset($HTTP_POST_FILES['itemfoto']['name']))&&(!empty($HTTP_POST_FILES['itemfoto']['name']))) { copy($HTTP_POST_FILES['itemfoto']['tmp_name'],"./../UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemfoto']['name'])); $itemfotofile = "./UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemfoto']['name']); } else if ($selectfoto != $deleteimg) $itemfotofile = "./UserFiles/Image/catalog/".$selectfoto; $itemdrawingfile =''; if ((isset($HTTP_POST_FILES['itemdrawing']['name']))&&(!empty($HTTP_POST_FILES['itemdrawing']['name']))) { copy($HTTP_POST_FILES['itemdrawing']['tmp_name'],"./../UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemdrawing']['name'])); $itemdrawingfile = "./UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemdrawing']['name']); } else if ($selectdrawing != $deleteimg) $itemdrawingfile = "./UserFiles/Image/catalog/".$selectdrawing; $itemshemafile=''; if ((isset($HTTP_POST_FILES['itemshema']['name']))&&(!empty($HTTP_POST_FILES['itemshema']['name']))) { copy($HTTP_POST_FILES['itemshema']['tmp_name'],"./../UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemshema']['name'])); $itemshemafile = "./UserFiles/Image/catalog/".basename($HTTP_POST_FILES['itemshema']['name']); } else if ($selectshema != $deleteimg) $itemshemafile = "./UserFiles/Image/catalog/".$selectshema; switch ($savetype) { case 'new': $database->setQuery('SELECT MAX(itemid)+1 as itemid from #__items'); $result=$database->loadObjectList(); $itemid=$result[0]->itemid; $database->setQuery('SELECT MAX(prio)+1 as prio from #__items'); $result=$database->loadObjectList(); $prio=$result[0]->prio; $sqlquery='INSERT into #__items (itemid, prio, sectionid, naim, img, foto, drawing, shema, description, article, pricefor) VALUES ('. $itemid.','.$prio.','.$parentid.',"'.addslashes($itemname).'","'.addslashes($itemimgfile).'","'.addslashes($itemfotofile).'","'. addslashes($itemdrawingfile).'","'.addslashes($itemshemafile).'","'.addslashes($itemdescript).'","'.addslashes($itemarticle).'","'.addslashes($itempricefor).'")'; $database->doSQL($sqlquery); echo 'Элемент успешно добавлен'; break; case 'edit': if ($itemdetailscount) for ($i=0; $i<$itemdetailscount; $i++) $database->doSQL('UPDATE #__itemdetails SET code='.ISNULL($vars['itemcode'.$i]).', size="'.addslashes($vars['itemsize'.$i]).'", color="'.addslashes($vars['itemcolor'.$i]).'", price1='.str_replace(',','.',ISNULL($vars['itemprice1'.$i])).', price2='.str_replace(',','.',ISNULL($vars['itemprice2'.$i])).', price3='.str_replace(',','.',ISNULL($vars['itemprice3'.$i])).', price4='.str_replace(',','.',ISNULL($vars['itemprice4'.$i]))./*', price5='.str_replace(',','.',ISNULL($vars['itemprice5'.$i])).*/' WHERE id = '.$vars['itemdetailsid'.$i]); $sqlquery = 'UPDATE #__items SET naim="'.addslashes($itemname).'", description="'.addslashes($itemdescript).'", article="'.addslashes($itemarticle). '", pricefor="'.addslashes($itempricefor).'", img="'.$itemimgfile.'", foto="'.$itemfotofile.'", drawing="'.$itemdrawingfile.'", shema="'.$itemshemafile.'" WHERE itemid='.$itemid; $database->doSQL($sqlquery); echo 'Элемент успешно обновлен<br>'; break; } break; case 'catalog': //if (empty($deleteimg)) $deleteimg = 'Не использовать изображение'; $catalogimgfile=''; if ((isset($HTTP_POST_FILES['catalogimg']['name']))&&(!empty($HTTP_POST_FILES['catalogimg']['name']))) { copy($HTTP_POST_FILES['catalogimg']['tmp_name'],"./../UserFiles/Image/catalog/".basename($HTTP_POST_FILES['catalogimg']['name'])); $catalogimgfile = "./UserFiles/Image/catalog/".basename($HTTP_POST_FILES['catalogimg']['name']); } else if ($selectimg != $deleteimg) $catalogimgfile = "./UserFiles/Image/catalog/".$selectimg; switch ($savetype) { case 'new': $database->setQuery('SELECT MAX(id)+1 as id from #__catalog'); $result=$database->loadObjectList(); $catalogid=$result[0]->id; $database->setQuery('SELECT MAX(prio)+1 as prio from #__catalog'); $result=$database->loadObjectList(); $prio=$result[0]->prio; $sqlquery='INSERT into #__catalog (id, prio, siteid, parentid, caption, img, article, article1, checked_out, checked_out_time, published) VALUES ('. $catalogid.','.$prio.',"",'.$parentid.',"'.addslashes($catalogcaption).'","'.addslashes($catalogimgfile).'","'.addslashes($catalogarticle).'","'. addslashes($catalogarticle1).'", 0, "00000000", '.(int)(!empty($catalogpublished)).')'; $database->doSQL($sqlquery); echo 'Элемент успешно добавлен'; break; case 'edit': $sqlquery = 'UPDATE #__catalog SET caption="'.addslashes($catalogcaption).'", article="'.addslashes($catalogarticle). '", article1="'.addslashes($catalogarticle1).'", published='.(int)(!empty($catalogpublished)).', img="'.$catalogimgfile.'" WHERE id='.$catalogid; $database->doSQL($sqlquery); echo 'Элемент успешно обновлен<br>'; break; } break; case 'itemdetail': $database->setQuery('SELECT * from #__itemdetails where code='.$itemcode); $result=$database->loadObjectList(); if (!sizeof($result)) { $database->setQuery('SELECT MAX(prio) as maxprio from #__itemdetails where itemid='.$itemid); $maxprio=$database->loadObjectList(); $maxprio=$maxprio[0]->maxprio+1; $database->doSQL('INSERT into #__itemdetails (itemid, prio, code, size, color, price1, price2, price3, price4) VALUES ('.$itemid.', '.$maxprio.', '.ISNULL($itemcode).', "'.addslashes($itemsize).'", "'.addslashes($itemcolor).'", '.str_replace(',','.',ISNULL($itemprice1)).', '.str_replace(',','.',ISNULL($itemprice2)).', '.str_replace(',','.',ISNULL($itemprice3)).', '.str_replace(',','.',ISNULL($itemprice4))./*', '.str_replace(',','.',ISNULL($itemprice5)).*/')'); } else { $saveerror = '&saveerror=1'; } mosRedirect('index2.php?option='.$option.'&act='.$act.'&itemid='.$itemid.'&parentid='.$parentid.'&task=edit&itemtype=item'.$saveerror); break; } break; default: break; } if (($task == 'edit')||($task == 'new')||(($task=='new')&&($itemtype=='itemdetail'))) exit; if (!isset($parentid)) $parentid=0; HTML_catalog::DrawPath($parentid); $database->setQuery("SELECT * FROM #__catalog WHERE parentid=".$parentid." order by prio"); $catalog = $database->loadObjectList(); $database->setQuery("SELECT * FROM #__items WHERE sectionid=".$parentid." order by prio"); $items = $database->loadObjectList(); HTML_catalog::ShowList($catalog, $items, $parentid); break; } case 'updateprice': switch ($task) { case 'update': { if(isset($HTTP_POST_FILES['filename']['name'])) { echo "<h3>Uploading: ".$HTTP_POST_FILES['filename']['name']."</h3><br>"; $handle=fopen($HTTP_POST_FILES['filename']['tmp_name'],"r"); if ($handle) { if (!feof($handle)) $buffer = fgets($handle); while (!feof($handle)&&!stristr(iconv("WINDOWS-1251","UTF-8",$buffer),'Код')) { $buffer = fgets($handle); } if(!stristr(iconv("WINDOWS-1251","UTF-8",$buffer),'Код')) { echo "<h3>Incorrect file<h3>"; exit; } else { $columns=explode("\t",$buffer); $i=0; foreach ($columns as $column) { $column=iconv("WINDOWS-1251","UTF-8",$column); if ($column=="Розница") $price1=$i; if ($column=="Опт1") $price2=$i; if ($column=="Опт2") $price3=$i; if ($column=="Опт3") $price4=$i; if ($column=="Код") $code=$i; $i++; } } echo $database->doSQL("DROP TABLE IF EXISTS #__import"); echo $database->doSQL("CREATE TABLE IF NOT EXISTS #__import ( `code` bigint(20) unsigned NOT NULL, `price1` float NOT NULL default '0', `price2` float NOT NULL default '0', `price3` float NOT NULL default '0', `price4` float NOT NULL default '0', KEY `code` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1"); $buffer = fgets($handle); while (!feof($handle)) { $buffer = fgets($handle); $row = explode("\t",$buffer); if (array_key_exists(9,$row)) { $out=array("'"," руб."); $row[$price1] = str_replace($out,"",$row[$price1]); $row[$price2] = str_replace($out,"",$row[$price2]); $row[$price3] = str_replace($out,"",$row[$price3]); $row[$price4] = str_replace($out,"",$row[$price4]); $sql = "INSERT INTO #__import (`code`, `price1`, `price2`, `price3`, `price4`) VALUES ('$row[$code]', '$row[$price1]', '$row[$price2]', '$row[$price3]', '$row[$price4]');"; $result = $database->doSQL($sql); } } fclose($handle); } echo "<h3>Import completed</h3><br />"; $database->doSQL("UPDATE #__itemdetails SET `price1` = 0, `price2` = 0, `price3` = 0, `price4` = 0"); echo '<h3>Old prices was nulled</h3><br>'; $sql=""; $database->setQuery('select * from #__itemdetails'); $rows = $database->loadObjectList(); foreach ($rows as $row) { $database->setQuery("select * from #__import where code=$row->code"); $rows1=$database->loadObjectList(); if (!sizeof($rows1)) $errors.=$row->code.', '; else { $database->doSQL("UPDATE #__itemdetails SET `price1` = '".$rows1[0]->price1."', `price2` = '".$rows1[0]->price2."', `price3` = '".$rows1[0]->price3."', `price4` = '".$rows1[0]->price4."' WHERE `code` = ".$row->code); $completed.=$row->code.', '; } } echo '<div align=left><b>The following goods were updated:</b> '.substr($completed,0,strlen($completed)-2).'</div>'; if (isset($errors)) echo '<br><br><div align=left><b><font color=red>The following goods were not found:</b></font> '.substr($errors,0,strlen($errors)-2).'</div>'; exit; } } default: HTML_catalog::ShowUploadPriceForm(); break; } break; } ?>

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.60.0000.01818.43
8.3.50.0100.00721.15
8.3.40.0090.00618.99
8.3.30.0110.00420.45
8.3.20.0040.00418.85
8.3.10.0060.00320.88
8.3.00.0000.00823.65
8.2.180.0100.01316.75
8.2.170.0110.00422.96
8.2.160.0040.01120.60
8.2.150.0080.00024.18
8.2.140.0050.00324.66
8.2.130.0040.00426.16
8.2.120.0040.00419.35
8.2.110.0000.01021.12
8.2.100.0040.00818.16
8.2.90.0060.00319.47
8.2.80.0040.00417.97
8.2.70.0030.00618.00
8.2.60.0030.00618.18
8.2.50.0040.00418.47
8.2.40.0030.00620.70
8.2.30.0040.00419.59
8.2.20.0060.00317.99
8.2.10.0080.00018.09
8.2.00.0040.00418.04
8.1.280.0140.00725.92
8.1.270.0030.00523.99
8.1.260.0000.00826.35
8.1.250.0080.00028.09
8.1.240.0070.01122.68
8.1.230.0080.00422.40
8.1.220.0000.00818.03
8.1.210.0000.00818.77
8.1.200.0030.00717.50
8.1.190.0030.00617.48
8.1.180.0060.00318.10
8.1.170.0060.00318.82
8.1.160.0000.00819.11
8.1.150.0000.00720.46
8.1.140.0000.00817.73
8.1.130.0000.00817.92
8.1.120.0000.01117.59
8.1.110.0030.00617.66
8.1.100.0030.00517.58
8.1.90.0000.00917.71
8.1.80.0040.00417.66
8.1.70.0040.00417.63
8.1.60.0090.00017.82
8.1.50.0000.00917.71
8.1.40.0030.00517.77
8.1.30.0030.00517.88
8.1.20.0000.00917.86
8.1.10.0000.00917.68
8.1.00.0060.00317.61
8.0.300.0000.00818.77
8.0.290.0040.00416.75
8.0.280.0050.00218.57
8.0.270.0000.00717.54
8.0.260.0030.00317.10
8.0.250.0000.00917.14
8.0.240.0040.00417.27
8.0.230.0070.00017.13
8.0.220.0030.00517.08
8.0.210.0000.00817.22
8.0.200.0070.00017.13
8.0.190.0000.00817.18
8.0.180.0030.00617.21
8.0.170.0030.00517.07
8.0.160.0050.00317.05
8.0.150.0000.00817.11
8.0.140.0000.00817.16
8.0.130.0000.00613.67
8.0.120.0000.00817.07
8.0.110.0060.00317.12
8.0.100.0060.00317.23
8.0.90.0040.00417.01
8.0.80.0090.00717.23
8.0.70.0050.00317.24
8.0.60.0050.00316.97
8.0.50.0090.00017.07
8.0.30.0070.01217.36
8.0.20.0080.01117.40
8.0.10.0000.00817.36
8.0.00.0080.01116.93
7.4.330.0050.00015.18
7.4.320.0040.00416.74
7.4.300.0050.00216.66
7.4.290.0000.00816.83
7.4.280.0030.00416.86
7.4.270.0040.00416.65
7.4.260.0060.00013.56
7.4.250.0040.00416.58
7.4.240.0000.00716.70
7.4.230.0000.00716.92
7.4.220.0090.00916.80
7.4.210.0050.01116.74
7.4.200.0030.00516.86
7.4.190.0050.00216.73
7.4.160.0160.00616.77
7.4.150.0060.01217.40
7.4.140.0080.01017.86
7.4.130.0100.01316.70
7.4.120.0170.00316.76
7.4.110.0080.01216.62
7.4.100.0030.01416.84
7.4.90.0100.01016.59
7.4.80.0130.01019.39
7.4.70.0070.01016.67
7.4.60.0250.02316.89
7.4.50.0030.00616.22
7.4.40.0060.01222.77
7.4.30.0120.00616.84
7.4.10.0030.01014.98
7.4.00.0110.00715.07
7.3.330.0070.00013.36
7.3.320.0000.00613.48
7.3.310.0040.00416.48
7.3.300.0000.00716.55
7.3.290.0090.00616.55
7.3.280.0100.00916.53
7.3.270.0150.00317.40
7.3.260.0110.00818.24
7.3.250.0140.00916.66
7.3.240.0130.00716.61
7.3.230.0150.00316.85
7.3.210.0130.00616.70
7.3.200.0090.01519.39
7.3.190.0040.01916.64
7.3.180.0130.00416.69
7.3.170.0080.01416.76
7.3.160.0090.00916.66
7.3.130.0100.01014.77
7.3.120.0020.01414.93
7.3.110.0080.01214.81
7.3.100.0090.00614.93
7.3.90.0040.00615.07
7.3.80.0060.00314.88
7.3.70.0080.00414.91
7.3.60.0040.01114.96
7.3.50.0050.01015.00
7.3.40.0080.00614.85
7.3.30.0030.01014.91
7.3.20.0050.00616.46
7.3.10.0090.00516.59
7.3.00.0040.00716.54
7.2.330.0060.01316.71
7.2.320.0090.00916.89
7.2.310.0120.00816.97
7.2.300.0130.00316.63
7.2.290.0070.01616.94
7.2.260.0060.01315.21
7.2.250.0050.01315.29
7.2.240.0100.00915.22
7.2.230.0020.01315.35
7.2.220.0050.00815.06
7.2.210.0000.01415.19
7.2.200.0030.01015.16
7.2.190.0020.01115.25
7.2.180.0030.01415.14
7.2.170.0040.00914.91
7.2.160.0070.01115.13
7.2.150.0090.00616.71
7.2.140.0070.00716.60
7.2.130.0070.00616.85
7.2.120.0050.00716.63
7.2.110.0080.00516.59
7.2.100.0030.00916.72
7.2.90.0030.01016.58
7.2.80.0040.00716.64
7.2.70.0060.00716.84
7.2.60.0030.00916.72
7.2.50.0040.00916.92
7.2.40.0060.00816.85
7.2.30.0040.00816.92
7.2.20.0090.00416.71
7.2.10.0060.00616.68
7.2.00.0100.00717.34
7.1.330.0070.00715.80
7.1.320.0030.01315.62
7.1.310.0060.00815.74
7.1.300.0030.00715.54
7.1.290.0020.01215.72
7.1.280.0030.01115.73
7.1.270.0070.00615.52
7.1.260.0080.00615.65
7.1.250.0060.00615.63
7.1.240.0030.01015.74
7.1.230.0050.00615.56
7.1.220.0050.00815.45
7.1.210.0050.00815.45
7.1.200.0050.00815.58
7.1.190.0050.00915.73
7.1.180.0070.00715.42
7.1.170.0000.01115.62
7.1.160.0060.00815.55
7.1.150.0180.00215.46
7.1.140.0030.01015.66
7.1.130.0020.00915.43
7.1.120.0050.01015.62
7.1.110.0070.00715.65
7.1.100.0040.00916.29
7.1.90.0040.00815.59
7.1.80.0130.00315.60
7.1.70.0060.00916.07
7.1.60.0070.00916.82
7.1.50.0060.00916.17
7.1.40.0090.00515.87
7.1.30.0030.00715.67
7.1.20.0070.00815.69
7.1.10.0000.01215.56
7.1.00.0050.03017.80
7.0.330.0050.00815.27
7.0.320.0070.00515.19
7.0.310.0010.00815.05
7.0.300.0060.00715.18
7.0.290.0050.00915.29
7.0.280.0060.00715.18
7.0.270.0030.01215.18
7.0.260.0080.00715.31
7.0.250.0070.00615.32
7.0.240.0050.00715.43
7.0.230.0060.00615.28
7.0.220.0050.00915.31
7.0.210.0060.00314.99
7.0.200.0060.00515.78
7.0.190.0080.00615.33
7.0.180.0070.00815.36
7.0.170.0060.00715.38
7.0.160.0030.00915.30
7.0.150.0030.00815.22
7.0.140.0050.03217.63
7.0.130.0000.01115.18
7.0.120.0090.00515.35
7.0.110.0110.00715.31
7.0.100.0070.03017.05
7.0.90.0090.03016.89
7.0.80.0030.02716.91
7.0.70.0090.02917.04
7.0.60.0090.03216.88
7.0.50.0070.03417.13
7.0.40.0070.02915.67
7.0.30.0050.03215.52
7.0.20.0080.03215.56
7.0.10.0080.03015.48
7.0.00.0090.02915.57
5.6.400.0060.00914.40
5.6.390.0030.01214.36
5.6.380.0050.00814.66
5.6.370.0020.01314.18
5.6.360.0100.00214.42
5.6.350.0070.00814.31
5.6.340.0030.01014.46
5.6.330.0080.00614.33
5.6.320.0070.00614.08
5.6.310.0060.00814.06
5.6.300.0060.00814.24
5.6.290.0050.01014.31
5.6.280.0040.03116.65
5.6.270.0100.00714.32
5.6.260.0070.00714.48
5.6.250.0070.02216.44
5.6.240.0080.02816.34
5.6.230.0090.02816.54
5.6.220.0080.03116.39
5.6.210.0070.03216.42
5.6.200.0060.02116.52
5.6.190.0070.03316.72
5.6.180.0080.02116.59
5.6.170.0130.02316.64
5.6.160.0060.03616.67
5.6.150.0100.02916.54
5.6.140.0060.02316.56
5.6.130.0130.02816.68
5.6.120.0070.03216.62
5.6.110.0110.02716.42
5.6.100.0080.03016.63
5.6.90.0130.02916.49
5.6.80.0070.02016.40
5.6.70.0050.03116.27
5.6.60.0050.03316.34
5.6.50.0060.01716.38
5.6.40.0070.02916.33
5.6.30.0160.02416.43
5.6.20.0080.01916.38
5.6.10.0090.01616.33
5.6.00.0070.02016.33
5.5.380.0050.02915.18
5.5.370.0080.03015.36
5.5.360.0070.02915.18
5.5.350.0020.03515.34
5.5.340.0040.02715.28
5.5.330.0090.02415.44
5.5.320.0040.03415.57
5.5.310.0030.02915.34
5.5.300.0110.02515.51
5.5.290.0080.02215.40
5.5.280.0070.03115.43
5.5.270.0070.03015.49
5.5.260.0080.03115.38
5.5.250.0070.02615.35
5.5.240.0060.03115.10
5.5.230.0090.02515.17
5.5.220.0090.02715.19
5.5.210.0030.03015.15
5.5.200.0080.02915.15
5.5.190.0090.02815.16
5.5.180.0010.02815.25
5.5.170.0050.00712.65
5.5.160.0050.02015.17
5.5.150.0060.01815.26
5.5.140.0050.01915.10
5.5.130.0080.01515.21
5.5.120.0040.02515.24
5.5.110.0040.02115.22
5.5.100.0060.03015.17
5.5.90.0030.01915.00
5.5.80.0040.02615.03
5.5.70.0010.02115.15
5.5.60.0070.02714.94
5.5.50.0070.01815.13
5.5.40.0050.02914.97
5.5.30.0060.01615.07
5.5.20.0050.02415.20
5.5.10.0060.01814.93
5.5.00.0040.01815.11
5.4.450.0050.03213.88
5.4.440.0030.03213.80
5.4.430.0110.02913.79
5.4.420.0060.03113.89
5.4.410.0100.02813.88
5.4.400.0090.02813.79
5.4.390.0020.03013.77
5.4.380.0030.02813.82
5.4.370.0050.02913.72
5.4.360.0020.03113.71
5.4.350.0090.02413.81
5.4.340.0060.01713.78
5.4.330.0050.00511.03
5.4.320.0030.01813.75
5.4.310.0020.01813.78
5.4.300.0040.02113.84
5.4.290.0000.02113.82
5.4.280.0060.01513.70
5.4.270.0040.01513.71
5.4.260.0020.02613.69
5.4.250.0060.03113.77
5.4.240.0070.02213.83
5.4.230.0060.02013.67
5.4.220.0030.03113.68
5.4.210.0030.02113.74
5.4.200.0060.01513.79
5.4.190.0060.01813.79
5.4.180.0070.01313.65
5.4.170.0060.01813.84
5.4.160.0030.01813.86
5.4.150.0030.01813.75
5.4.140.0000.02012.87
5.4.130.0030.01612.82
5.4.120.0010.01912.92
5.4.110.0070.01212.91
5.4.100.0010.01713.03
5.4.90.0030.01612.92
5.4.80.0040.01812.87
5.4.70.0070.02013.00
5.4.60.0080.01412.93
5.4.50.0040.01512.88
5.4.40.0030.01712.90
5.4.30.0050.01512.84
5.4.20.0030.01712.81
5.4.10.0040.01812.89
5.4.00.0050.01612.65
5.3.290.0030.01612.26
5.3.280.0050.02712.24
5.3.270.0020.01912.26
5.3.260.0020.02412.29
5.3.250.0040.01712.16
5.3.240.0020.01812.16
5.3.230.0040.01812.21
5.3.220.0020.01912.13
5.3.210.0010.02012.13
5.3.200.0060.01412.17
5.3.190.0060.01212.14
5.3.180.0030.01612.24
5.3.170.0040.01512.20
5.3.160.0060.01512.25
5.3.150.0000.01812.20
5.3.140.0040.01712.20
5.3.130.0030.02612.23
5.3.120.0020.01812.22
5.3.110.0040.01712.23
5.3.100.0040.01612.01
5.3.90.0060.01511.92
5.3.80.0030.01611.91
5.3.70.0020.01911.98
5.3.60.0020.01611.92
5.3.50.0030.01711.93
5.3.40.0070.01611.94
5.3.30.0010.01611.98
5.3.20.0030.01611.81
5.3.10.0050.01711.84
5.3.00.0040.01511.84

preferences:
48.72 ms | 401 KiB | 5 Q