3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * EC2InstancePrices * * The EC2InstancePrices class exposes the 'get_ec2_reserved_instances_prices' and the 'get_ec2_ondemand_instances_prices' methods * which return the price data from Amazom AWS in an easy to use format * * It also exposes the 'get_ec2_data' method which prints out the modified-data as JSON * * @author Sathvik P, Doers' Guild * Based on the python version by Eran Sandler * */ class EC2InstancePrices { private $EC2_REGIONS = array("us-east-1", "us-west-1", "us-west-2", "eu-west-1", "ap-southeast-1", "ap-southeast-2", "ap-northeast-1", "sa-east-1"); private $EC2_INSTANCE_TYPES = array("t1.micro", "m1.small", "m1.medium", "m1.large", "m1.xlarge", "m2.xlarge", "m2.2xlarge", "m3.xlarge", "m3.2xlarge", "m2.4xlarge", "c1.medium", "c1.xlarge", "cc1.4xlarge", "cc2.8xlarge", "cg1.4xlarge"); private $EC2_OS_TYPES = array("linux", "mswin"); private $JSON_NAME_TO_EC2_REGIONS_API = array("us-east" => "us-east-1", "us-east-1" => "us-east-1", "us-west" => "us-west-1", "us-west-1" => "us-west-1", "us-west-2" => "us-west-2", "eu-ireland" => "eu-west-1", "eu-west-1" => "eu-west-1", "apac-sin" => "ap-southeast-1", "ap-southeast-1" => "ap-southeast-1", "ap-southeast-2" => "ap-southeast-2", "apac-syd" => "ap-southeast-2", "apac-tokyo" => "ap-northeast-1", "ap-northeast-1" => "ap-northeast-1", "sa-east-1" => "sa-east-1"); private $EC2_REGIONS_API_TO_JSON_NAME = array("us-east-1" => "us-east", "us-west-1" => "us-west", "us-west-2" => "us-west-2", "eu-west-1" => "eu-ireland", "ap-southeast-1" => "apac-sin", "ap-southeast-2" => "apac-syd", "ap-northeast-1" => "apac-tokyo", "sa-east-1" => "sa-east-1"); private $INSTANCES_ON_DEMAND_URL = "http://aws.amazon.com/ec2/pricing/pricing-on-demand-instances.json"; private $INSTANCES_RESERVED_LIGHT_UTILIZATION_LINUX_URL = "http://aws.amazon.com/ec2/pricing/ri-light-linux.json"; private $INSTANCES_RESERVED_LIGHT_UTILIZATION_WINDOWS_URL = "http://aws.amazon.com/ec2/pricing/ri-light-mswin.json"; private $INSTNACES_RESERVED_MEDIUM_UTILIZATION_LINUX_URL = "http://aws.amazon.com/ec2/pricing/ri-medium-linux.json"; private $INSTANCES_RESERVED_MEDIUM_UTILIZATION_WINDOWS_URL = "http://aws.amazon.com/ec2/pricing/ri-medium-mswin.json"; private $INSTANCES_RESERVED_HEAVY_UTILIZATION_LINUX_URL = "http://aws.amazon.com/ec2/pricing/ri-heavy-linux.json"; private $INSTANCES_RESERVED_HEAVY_UTILIZATION_WINDOWS_URL = "http://aws.amazon.com/ec2/pricing/ri-heavy-mswin.json"; private $INSTANCES_RESERVED_OS_TYPE_BY_URL = array(); private $INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL = array(); private $DEFAULT_CURRENCY = "USD"; private $INSTANCE_TYPE_MAPPING = array("stdODI" => "m1", "uODI" => "t1", "hiMemODI" => "m2", "hiCPUODI" => "c1", "clusterComputeI" => "cc1", "hiIoODI" => "hi1", "stdResI" => "m1", "uResI" => "t1", "hiMemResI" => "m2", "hiCPUResI" => "c1", "clusterCompResI" => "cc1", "hiIoResI" => "hi1", "clusterGPUResI" => "cg1", "clusterGPUI" => "cg1", "secgenstdResI" => "m3", "secgenstdODI" => "m3"); private $INSTANCE_SIZE_MAPPING = array("u" => "micro", "sm" => "small", "med" => "medium", "lg" => "large", "xl" => "xlarge", "xxl" => "2xlarge", "xxxxl" => "4xlarge", "xxxxxxxxl" => "8xlarge"); private $EC2_USER_OS = array("linux" => "Linux/Unix", "mswin" => "Windows"); function __construct() { $this -> INSTANCES_RESERVED_OS_TYPE_BY_URL[$this -> INSTANCES_RESERVED_LIGHT_UTILIZATION_LINUX_URL] = "linux"; $this -> INSTANCES_RESERVED_OS_TYPE_BY_URL[$this -> INSTANCES_RESERVED_LIGHT_UTILIZATION_WINDOWS_URL] = "mswin"; $this -> INSTANCES_RESERVED_OS_TYPE_BY_URL[$this -> INSTNACES_RESERVED_MEDIUM_UTILIZATION_LINUX_URL] = "linux"; $this -> INSTANCES_RESERVED_OS_TYPE_BY_URL[$this -> INSTANCES_RESERVED_MEDIUM_UTILIZATION_WINDOWS_URL] = "mswin"; $this -> INSTANCES_RESERVED_OS_TYPE_BY_URL[$this -> INSTANCES_RESERVED_HEAVY_UTILIZATION_LINUX_URL] = "linux"; $this -> INSTANCES_RESERVED_OS_TYPE_BY_URL[$this -> INSTANCES_RESERVED_HEAVY_UTILIZATION_WINDOWS_URL] = "mswin"; $this -> INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL[$this -> INSTANCES_RESERVED_LIGHT_UTILIZATION_LINUX_URL] = "light"; $this -> INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL[$this -> INSTANCES_RESERVED_LIGHT_UTILIZATION_WINDOWS_URL] = "light"; $this -> INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL[$this -> INSTNACES_RESERVED_MEDIUM_UTILIZATION_LINUX_URL] = "medium"; $this -> INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL[$this -> INSTANCES_RESERVED_MEDIUM_UTILIZATION_WINDOWS_URL] = "medium"; $this -> INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL[$this -> INSTANCES_RESERVED_HEAVY_UTILIZATION_LINUX_URL] = "heavy"; $this -> INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL[$this -> INSTANCES_RESERVED_HEAVY_UTILIZATION_WINDOWS_URL] = "heavy"; } function _load_data($url) { return json_decode(file_get_contents($url), TRUE); } function get_ec2_reserved_instances_prices($filter_region = NULL, $filter_instance_type = NULL, $filter_os_type = NULL) { ### Get EC2 reserved instances prices. Results can be filtered by region $get_specific_region = $filter_region; if ($get_specific_region) { $filter_region = $this -> EC2_REGIONS_API_TO_JSON_NAME[$filter_region]; } $get_specific_instance_type = $filter_instance_type; $get_specific_os_type = $filter_os_type; $currency = $this -> DEFAULT_CURRENCY; $urls = array($this -> INSTANCES_RESERVED_LIGHT_UTILIZATION_LINUX_URL, $this -> INSTANCES_RESERVED_LIGHT_UTILIZATION_WINDOWS_URL, $this -> INSTNACES_RESERVED_MEDIUM_UTILIZATION_LINUX_URL, $this -> INSTANCES_RESERVED_MEDIUM_UTILIZATION_WINDOWS_URL, $this -> INSTANCES_RESERVED_HEAVY_UTILIZATION_LINUX_URL, $this -> INSTANCES_RESERVED_HEAVY_UTILIZATION_WINDOWS_URL); $result_regions_index = array(); $result_indices = array(); $result = array("config" => array("currency" => $currency, ), "regions" => array()); foreach ($urls as $u) { $os_type = $this -> INSTANCES_RESERVED_OS_TYPE_BY_URL[$u]; $utilization_type = $this -> INSTANCES_RESERVED_UTILIZATION_TYPE_BY_URL[$u]; $data = $this -> _load_data($u); if ($data["config"] && $data["config"]["regions"]) { foreach ($data["config"]["regions"] as $r) { if ($r["region"]) { if ($get_specific_region and $filter_region != $r["region"]) { continue; } } $region_name = $this -> JSON_NAME_TO_EC2_REGIONS_API[$r["region"]]; if (array_key_exists($region_name, $result_regions_index)) { $instance_types = $result["regions"][$result_indices[$region_name]]["instanceTypes"]; } else { $instance_types = array(); $result_indices[$region_name] = array_push($result["regions"], array("region" => $region_name, "instanceTypes" => $instance_types)) - 1; $result_regions_index[$region_name] = $result["regions"][count($result["regions"]) - 1]["region"]; } if (array_key_exists("instanceTypes", $r)) { foreach ($r["instanceTypes"] as $it) { $instance_type = $this -> INSTANCE_TYPE_MAPPING[$it["type"]]; if (array_key_exists("sizes", $it)) { foreach ($it["sizes"] as $s) { $instance_size = $this -> INSTANCE_SIZE_MAPPING[$s["size"]]; $prices = array("1year" => array("hourly" => NULL, "upfront" => NULL), "3year" => array("hourly" => NULL, "upfront" => NULL)); $_type = $instance_type . "." . $instance_size; if ($_type == "cc1.8xlarge") { //Fix conflict where cc1 and cc2 share the same type $_type = "cc2.8xlarge"; } if ($get_specific_instance_type and $_type != $filter_instance_type) { continue; } if ($get_specific_os_type and $os_type != $filter_os_type) { continue; } array_push($result["regions"][$result_indices[$region_name]]["instanceTypes"], array("type" => $_type, "os" => $os_type, "utilization" => $utilization_type, "prices" => $prices)); foreach ($s["valueColumns"] as $price_data) { $price = floatval($price_data["prices"][$currency]); if ($price_data["name"] == "yrTerm1") $prices["1year"]["upfront"] = $price; elseif ($price_data["name"] == "yrTerm1Hourly") $prices["1year"]["hourly"] = $price; elseif ($price_data["name"] == "yrTerm3") $prices["3year"]["upfront"] = $price; elseif ($price_data["name"] == "yrTerm3Hourly") $prices["3year"]["hourly"] = $price; } } } } } } } } return $result; } function get_ec2_ondemand_instances_prices($filter_region = NULL, $filter_instance_type = NULL, $filter_os_type = NULL) { ### Get EC2 on-demand instances prices. Results can be filtered by region $get_specific_region = $filter_region; if ($get_specific_region) { $filter_region = $this -> EC2_REGIONS_API_TO_JSON_NAME[$filter_region]; } $get_specific_instance_type = $filter_instance_type; $get_specific_os_type = $filter_os_type; $currency = $this -> DEFAULT_CURRENCY; $result = array("config" => array("currency" => $currency, "unit" => "perhr"), "regions" => array()); $data = $this -> _load_data($this -> INSTANCES_ON_DEMAND_URL); if ($data["config"] and $data["config"]["regions"]) { foreach ($data["config"]["regions"] as $r) { if ($r["region"]) { if ($get_specific_region and $filter_region != $r["region"]) { continue; } $region_name = $this -> JSON_NAME_TO_EC2_REGIONS_API[$r["region"]]; $instance_types = array(); if (array_key_exists("instanceTypes", $r)) { foreach ($r["instanceTypes"] as $it) { $instance_type = $this -> INSTANCE_TYPE_MAPPING[$it["type"]]; if (array_key_exists("sizes", $it)) { foreach ($it["sizes"] as $s) { $instance_size = $this -> INSTANCE_SIZE_MAPPING[$s["size"]]; foreach ($s["valueColumns"] as $price_data) { $price = NULL; $price = floatval($price_data["prices"][$currency]); $_type = $instance_type . "." . $instance_size; if ($_type == "cc1.8xlarge") { //Fix conflict where cc1 and cc2 share the same type $_type = "cc2.8xlarge"; } if ($get_specific_instance_type and $_type != $filter_instance_type) { continue; } if ($get_specific_os_type and $price_data["name"] != $filter_os_type) { continue; } array_push($instance_types, array("type" => $_type, "os" => $price_data["name"], "price" => $price)); } } } } array_push($result["regions"], array("region" => $region_name, "instanceTypes" => $instance_types)); } } } return $result; } return NULL; } function get_ec2_data() { $ret = array("reserved_instances" => $this -> get_ec2_reserved_instances_prices(), "ondemand" => $this -> get_ec2_ondemand_instances_prices()); header('Content-type: application/json'); print json_encode($ret); } } ?> <?php /* Sample usage:*/ $ec2 = new EC2InstancePrices(); print_r($ec2 -> get_ec2_reserved_instances_prices()); echo "\n<br/>=================================================\n<br/>"; print_r($ec2 -> get_ec2_ondemand_instances_prices()); echo "\n<br/>=================================================\n<br/>"; //$ec2 -> get_ec2_data(); ?>

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.40.0160.00019.47
8.3.30.0120.00319.54
8.3.20.0070.00720.80
8.3.10.0040.00423.91
8.3.00.0030.00719.63
8.2.170.0060.00922.96
8.2.160.0140.00320.77
8.2.150.0040.00424.18
8.2.140.0040.00424.66
8.2.130.0040.00426.16
8.2.120.0050.01021.17
8.2.110.0130.00619.66
8.2.100.0060.00618.28
8.2.90.0080.00019.59
8.2.80.0030.00717.97
8.2.70.0030.00617.88
8.2.60.0050.00318.41
8.2.50.0030.00618.47
8.2.40.0000.00820.79
8.2.30.0000.00821.23
8.2.20.0000.00818.06
8.2.10.0090.00018.47
8.2.00.0040.00417.96
8.1.270.0060.00324.14
8.1.260.0060.00326.35
8.1.250.0000.00828.09
8.1.240.0070.00422.74
8.1.230.0040.00821.16
8.1.220.0090.00018.16
8.1.210.0000.00918.77
8.1.200.0070.00317.60
8.1.190.0000.00817.48
8.1.180.0000.00818.10
8.1.170.0030.00518.96
8.1.160.0080.00019.25
8.1.150.0030.00519.20
8.1.140.0030.00617.68
8.1.130.0040.00418.13
8.1.120.0040.00417.68
8.1.110.0080.00017.68
8.1.100.0000.00917.73
8.1.90.0000.00817.61
8.1.80.0040.00417.70
8.1.70.0040.00417.64
8.1.60.0070.00317.79
8.1.50.0000.00917.75
8.1.40.0040.00417.66
8.1.30.0000.00917.80
8.1.20.0050.00317.75
8.1.10.0080.00017.82
8.1.00.0040.00417.68
8.0.300.0050.00318.77
8.0.290.0100.00017.00
8.0.280.0000.00718.80
8.0.270.0000.00717.65
8.0.260.0030.00317.67
8.0.250.0050.00217.37
8.0.240.0000.00717.25
8.0.230.0000.00717.33
8.0.220.0070.00017.15
8.0.210.0070.00017.17
8.0.200.0030.00317.32
8.0.190.0060.00317.31
8.0.180.0000.00817.26
8.0.170.0060.00317.32
8.0.160.0040.00417.31
8.0.150.0030.00917.24
8.0.140.0030.00617.23
8.0.130.0000.00613.79
8.0.120.0030.00617.33
8.0.110.0080.00017.36
8.0.100.0040.00417.40
8.0.90.0030.00617.36
8.0.80.0030.01517.34
8.0.70.0030.00517.18
8.0.60.0040.00417.36
8.0.50.0030.00517.35
8.0.30.0110.01117.48
8.0.20.0110.01117.48
8.0.10.0030.00517.32
8.0.00.0100.01217.31
7.4.330.0000.00515.48
7.4.320.0030.00516.74
7.4.300.0030.00316.83
7.4.290.0060.00316.74
7.4.280.0000.00916.64
7.4.270.0000.00816.87
7.4.260.0040.00416.70
7.4.250.0060.00316.89
7.4.240.0030.00516.96
7.4.230.0080.00016.73
7.4.220.0190.00016.98
7.4.210.0040.01417.02
7.4.200.0060.00316.93
7.4.160.0080.01217.02
7.4.150.0090.01217.40
7.4.140.0140.00717.86
7.4.130.0050.01616.99
7.4.120.0140.01116.86
7.4.110.0120.01616.88
7.4.100.0090.01216.96
7.4.90.0160.00816.90
7.4.80.0120.00919.39
7.4.70.0130.00616.89
7.4.60.0090.00916.95
7.4.50.0090.00016.98
7.4.40.0070.01116.97
7.4.30.0110.00816.83
7.4.10.0130.01015.43
7.4.00.0090.00615.19
7.3.330.0070.00013.60
7.3.320.0030.00313.59
7.3.310.0040.00416.89
7.3.300.0030.00516.87
7.3.290.0000.01716.80
7.3.280.0110.00916.82
7.3.270.0110.01117.40
7.3.260.0110.01117.04
7.3.250.0150.00916.73
7.3.240.0180.00916.99
7.3.230.0100.01016.68
7.3.210.0160.00617.01
7.3.200.0160.00819.39
7.3.190.0140.00616.89
7.3.180.0150.00316.68
7.3.170.0110.01516.91
7.3.160.0150.00316.84
7.3.130.0060.01315.24
7.3.120.0120.00915.49
7.3.110.0000.02215.40
7.3.100.0060.00915.24
7.3.90.0110.00415.08
7.3.80.0070.01015.43
7.3.70.0100.00714.97
7.3.60.0060.01415.05
7.3.50.0040.01014.98
7.3.40.0080.00315.32
7.3.30.0000.01715.28
7.3.20.0100.00317.17
7.3.10.0090.00416.82
7.3.00.0100.00716.58
7.2.330.0100.01017.18
7.2.320.0130.00717.12
7.2.310.0140.00716.88
7.2.300.0130.00716.96
7.2.290.0080.01616.97
7.2.260.0060.00915.16
7.2.250.0120.00915.37
7.2.240.0120.00315.15
7.2.230.0060.01215.33
7.2.220.0070.01015.78
7.2.210.0100.00715.62
7.2.200.0000.01415.31
7.2.190.0030.01015.18
7.2.180.0080.00815.45
7.2.170.0030.01015.53
7.2.160.0060.01015.31
7.2.150.0030.01317.22
7.2.140.0070.01017.42
7.2.130.0070.00917.10
7.2.120.0140.00417.03
7.2.110.0070.01117.08
7.2.100.0070.00917.05
7.2.90.0080.00817.06
7.2.80.0070.00817.07
7.2.70.0080.00917.08
7.2.60.0090.00717.01
7.2.50.0070.00617.04
7.2.40.0080.00717.14
7.2.30.0090.00717.26
7.2.20.0080.00717.11
7.2.10.0100.00717.18
7.2.00.0060.00817.19
7.1.330.0100.00615.96
7.1.320.0060.00916.29
7.1.310.0100.00616.38
7.1.300.0140.00416.17
7.1.290.0100.00316.09
7.1.280.0060.01016.17
7.1.270.0030.00716.12
7.1.260.0070.00316.24
7.1.250.0050.01116.01
7.1.240.0060.00615.94
7.1.230.0080.00516.00
7.1.220.0050.00816.03
7.1.210.0030.01216.05
7.1.200.0030.00915.97
7.1.190.0040.00915.94
7.1.180.0090.00316.06
7.1.170.0060.00716.00
7.1.160.0070.00615.98
7.1.150.0060.00816.08
7.1.140.0110.00316.04
7.1.130.0080.00716.09
7.1.120.0060.00515.94
7.1.110.0100.00516.11
7.1.100.0050.00916.61
7.1.90.0080.00516.03
7.1.80.0080.00515.97
7.1.70.0050.00616.29
7.1.60.0070.01216.90
7.1.50.0080.00816.52
7.1.40.0090.01016.02
7.1.30.0080.00816.06
7.1.20.0070.01116.07
7.1.10.0090.00516.09
7.1.00.0040.02617.88
7.0.330.0090.00515.44
7.0.320.0040.00915.58
7.0.310.0030.00915.73
7.0.300.0080.00715.65
7.0.290.0060.00915.65
7.0.280.0010.01115.68
7.0.270.0080.00515.62
7.0.260.0050.01015.66
7.0.250.0070.00515.65
7.0.240.0080.00615.86
7.0.230.0070.00715.49
7.0.220.0040.00715.76
7.0.210.0070.00815.52
7.0.200.0030.01116.00
7.0.190.0130.00515.65
7.0.180.0050.01015.74
7.0.170.0070.00815.74
7.0.160.0030.01115.61
7.0.150.0070.00715.68
7.0.140.0070.02417.37
7.0.130.0100.00615.68
7.0.120.0050.00915.70
7.0.110.0080.00515.60
7.0.100.0100.02416.93
7.0.90.0080.02516.97
7.0.80.0050.03016.95
7.0.70.0090.02516.81
7.0.60.0110.02416.85
7.0.50.0070.02917.00
7.0.40.0070.02615.45
7.0.30.0080.01815.34
7.0.20.0060.02715.33
7.0.10.0090.02515.41
7.0.00.0070.02015.34
5.6.400.0070.00714.77
5.6.390.0090.00614.65
5.6.380.0050.00814.78
5.6.370.0070.00814.71
5.6.360.0080.00314.88
5.6.350.0060.00714.65
5.6.340.0100.00614.86
5.6.330.0040.01114.80
5.6.320.0090.00714.71
5.6.310.0050.01114.78
5.6.300.0050.01114.74
5.6.290.0070.00414.71
5.6.280.0070.02516.56
5.6.270.0070.00714.82
5.6.260.0050.01014.84
5.6.250.0040.03016.28
5.6.240.0080.02616.34
5.6.230.0090.02916.43
5.6.220.0080.02616.38
5.6.210.0080.01816.27
5.6.200.0110.02416.37
5.6.190.0070.03016.46
5.6.180.0040.03116.54
5.6.170.0090.02516.53
5.6.160.0070.02616.46
5.6.150.0120.02416.38
5.6.140.0060.02816.52
5.6.130.0090.02316.58
5.6.120.0080.02716.45
5.6.110.0060.02916.48
5.6.100.0070.02616.39
5.6.90.0060.02916.39
5.6.80.0070.02616.32
5.6.70.0070.02616.34
5.6.60.0070.01816.15
5.6.50.0040.02916.18
5.6.40.0050.02816.29
5.6.30.0080.01816.04
5.6.20.0080.02416.12
5.6.10.0090.02416.24
5.6.00.0080.02316.08
5.5.380.0090.01514.96
5.5.370.0070.02714.91
5.5.360.0040.02614.92
5.5.350.0070.02414.88
5.5.340.0040.02814.99
5.5.330.0090.02315.11
5.5.320.0090.02315.14
5.5.310.0060.01615.13
5.5.300.0070.01715.18
5.5.290.0090.02315.04
5.5.280.0060.01815.02
5.5.270.0080.01615.13
5.5.260.0080.02515.19
5.5.250.0090.02215.08
5.5.240.0030.02914.93
5.5.230.0060.02614.91
5.5.220.0070.02414.74
5.5.210.0090.01614.90
5.5.200.0040.02414.88
5.5.190.0080.01614.91
5.5.180.0070.02714.90
5.5.170.0070.00613.52
5.5.160.0100.02114.92
5.5.150.0080.02614.88
5.5.140.0080.01414.75
5.5.130.0070.02214.83
5.5.120.0080.02214.88
5.5.110.0050.02614.80
5.5.100.0070.01914.96
5.5.90.0060.02614.92
5.5.80.0070.01814.81
5.5.70.0060.02614.84
5.5.60.0050.02714.88
5.5.50.0060.02514.74
5.5.40.0100.02314.83
5.5.30.0080.02414.81
5.5.20.0070.02314.86
5.5.10.0060.02614.90
5.5.00.0060.02614.79
5.4.450.0050.02614.14
5.4.440.0050.02614.16
5.4.430.0080.02314.07
5.4.420.0050.02714.14
5.4.410.0050.02214.07
5.4.400.0060.02313.98
5.4.390.0040.02714.00
5.4.380.0050.02314.05
5.4.370.0080.02313.99
5.4.360.0040.02514.02
5.4.350.0070.02113.98
5.4.340.0020.02814.05
5.4.330.0040.00712.29
5.4.320.0050.02514.07
5.4.310.0070.02214.07
5.4.300.0040.02614.10
5.4.290.0110.02013.99
5.4.280.0070.02214.13
5.4.270.0030.01714.07
5.4.260.0040.02313.98
5.4.250.0090.02314.00
5.4.240.0060.02413.96
5.4.230.0060.02314.00
5.4.220.0070.02014.09
5.4.210.0060.02614.04
5.4.200.0070.02413.93
5.4.190.0090.01813.95
5.4.180.0060.02414.08
5.4.170.0090.02014.02
5.4.160.0110.02013.96
5.4.150.0080.02214.08
5.4.140.0090.02113.38
5.4.130.0060.02313.37
5.4.120.0070.02213.32
5.4.110.0070.02413.39
5.4.100.0100.02213.32
5.4.90.0050.02313.32
5.4.80.0060.02713.34
5.4.70.0090.01413.38
5.4.60.0070.02413.40
5.4.50.0120.02113.31
5.4.40.0100.02013.42
5.4.30.0090.02213.32
5.4.20.0080.02313.29
5.4.10.0060.02613.47
5.4.00.0040.02313.28

preferences:
98.68 ms | 400 KiB | 5 Q