3v4l.org

run code in 300+ PHP versions simultaneously
<?php class EAHashor { //initialise the class public function __construct() { } public function eaEncode($string){ $a = "67452301"; $b = "EFCDAB89"; $c = "98BADCFE"; $d = "10325476"; $words = $this->init($string); for($i = 0; $i <= count($words)/16-1; $i++){ $A = $a; $B = $b; $C = $c; $D = $d; /* ROUND 1 */ $this->FF ($A, $B, $C, $D, $words[0 + ($i * 16)], 7, "d76aa478"); $this->FF ($D, $A, $B, $C, $words[1 + ($i * 16)], 12, "e8c7b756"); $this->FF ($C, $D, $A, $B, $words[2 + ($i * 16)], 17, "242070db"); $this->FF ($B, $C, $D, $A, $words[3 + ($i * 16)], 22, "c1bdceee"); $this->FF ($A, $B, $C, $D, $words[4 + ($i * 16)], 7, "f57c0faf"); $this->FF ($D, $A, $B, $C, $words[5 + ($i * 16)], 12, "4787c62a"); $this->FF ($C, $D, $A, $B, $words[6 + ($i * 16)], 17, "a8304613"); $this->FF ($B, $C, $D, $A, $words[7 + ($i * 16)], 22, "fd469501"); $this->FF ($A, $B, $C, $D, $words[8 + ($i * 16)], 7, "698098d8"); $this->FF ($D, $A, $B, $C, $words[9 + ($i * 16)], 12, "8b44f7af"); $this->FF ($C, $D, $A, $B, $words[10 + ($i * 16)], 17, "ffff5bb1"); $this->FF ($B, $C, $D, $A, $words[11 + ($i * 16)], 22, "895cd7be"); $this->FF ($A, $B, $C, $D, $words[12 + ($i * 16)], 7, "6b901122"); $this->FF ($D, $A, $B, $C, $words[13 + ($i * 16)], 12, "fd987193"); $this->FF ($C, $D, $A, $B, $words[14 + ($i * 16)], 17, "a679438e"); $this->FF ($B, $C, $D, $A, $words[15 + ($i * 16)], 22, "49b40821"); /* ROUND 2 */ $this->GG ($A, $B, $C, $D, $words[1 + ($i * 16)], 5, "f61e2562"); $this->GG ($D, $A, $B, $C, $words[6 + ($i * 16)], 9, "c040b340"); $this->GG ($C, $D, $A, $B, $words[11 + ($i * 16)], 14, "265e5a51"); $this->GG ($B, $C, $D, $A, $words[0 + ($i * 16)], 20, "e9b6c7aa"); $this->GG ($A, $B, $C, $D, $words[5 + ($i * 16)], 5, "d62f105d"); $this->GG ($D, $A, $B, $C, $words[10 + ($i * 16)], 9, "02441453"); $this->GG ($C, $D, $A, $B, $words[15 + ($i * 16)], 14, "d8a1e681"); $this->GG ($B, $C, $D, $A, $words[4 + ($i * 16)], 20, "e7d3fbc8"); $this->GG ($A, $B, $C, $D, $words[9 + ($i * 16)], 5, "21e1cde6"); $this->GG ($D, $A, $B, $C, $words[14 + ($i * 16)], 9, "c33707d6"); $this->GG ($C, $D, $A, $B, $words[3 + ($i * 16)], 14, "f4d50d87"); $this->GG ($B, $C, $D, $A, $words[8 + ($i * 16)], 20, "455a14ed"); $this->GG ($A, $B, $C, $D, $words[13 + ($i * 16)], 5, "a9e3e905"); $this->GG ($D, $A, $B, $C, $words[2 + ($i * 16)], 9, "fcefa3f8"); $this->GG ($C, $D, $A, $B, $words[7 + ($i * 16)], 14, "676f02d9"); $this->GG ($B, $C, $D, $A, $words[12 + ($i * 16)], 20, "8d2a4c8a"); /* ROUND 3 */ $this->HH ($A, $B, $C, $D, $words[5 + ($i * 16)], 4, "fffa3942"); $this->HH ($D, $A, $B, $C, $words[8 + ($i * 16)], 11, "8771f681"); //HH ($C, $D, $A, $B, $words[11 + ($i * 16)], 16, "6d9d6122"); //the line below has been changed to use 14 rather than 16 as seen in the commented line $this->HH ($C, $D, $A, $B, $words[11 + ($i * 16)], 14, "6d9d6122"); $this->HH ($B, $C, $D, $A, $words[14 + ($i * 16)], 23, "fde5380c"); $this->HH ($A, $B, $C, $D, $words[1 + ($i * 16)], 4, "a4beea44"); $this->HH ($D, $A, $B, $C, $words[4 + ($i * 16)], 11, "4bdecfa9"); $this->HH ($C, $D, $A, $B, $words[7 + ($i * 16)], 16, "f6bb4b60"); $this->HH ($B, $C, $D, $A, $words[10 + ($i * 16)], 23, "bebfbc70"); $this->HH ($A, $B, $C, $D, $words[13 + ($i * 16)], 4, "289b7ec6"); $this->HH ($D, $A, $B, $C, $words[0 + ($i * 16)], 11, "eaa127fa"); $this->HH ($C, $D, $A, $B, $words[3 + ($i * 16)], 16, "d4ef3085"); $this->HH ($B, $C, $D, $A, $words[6 + ($i * 16)], 23, "04881d05"); $this->HH ($A, $B, $C, $D, $words[9 + ($i * 16)], 4, "d9d4d039"); $this->HH ($D, $A, $B, $C, $words[12 + ($i * 16)], 11, "e6db99e5"); $this->HH ($C, $D, $A, $B, $words[15 + ($i * 16)], 16, "1fa27cf8"); $this->HH ($B, $C, $D, $A, $words[2 + ($i * 16)], 23, "c4ac5665"); /* ROUND 4 */ $this->II ($A, $B, $C, $D, $words[0 + ($i * 16)], 6, "f4292244"); $this->II ($D, $A, $B, $C, $words[7 + ($i * 16)], 10, "432aff97"); $this->II ($C, $D, $A, $B, $words[14 + ($i * 16)], 15, "ab9423a7"); $this->II ($B, $C, $D, $A, $words[5 + ($i * 16)], 21, "fc93a039"); $this->II ($A, $B, $C, $D, $words[12 + ($i * 16)], 6, "655b59c3"); $this->II ($D, $A, $B, $C, $words[3 + ($i * 16)], 10, "8f0ccc92"); $this->II ($C, $D, $A, $B, $words[10 + ($i * 16)], 15, "ffeff47d"); $this->II ($B, $C, $D, $A, $words[1 + ($i * 16)], 21, "85845dd1"); $this->II ($A, $B, $C, $D, $words[8 + ($i * 16)], 6, "6fa87e4f"); $this->II ($D, $A, $B, $C, $words[15 + ($i * 16)], 10, "fe2ce6e0"); $this->II ($C, $D, $A, $B, $words[6 + ($i * 16)], 15, "a3014314"); $this->II ($B, $C, $D, $A, $words[13 + ($i * 16)], 21, "4e0811a1"); $this->II ($A, $B, $C, $D, $words[4 + ($i * 16)], 6, "f7537e82"); $this->II ($D, $A, $B, $C, $words[11 + ($i * 16)], 10, "bd3af235"); $this->II ($C, $D, $A, $B, $words[2 + ($i * 16)], 15, "2ad7d2bb"); $this->II ($B, $C, $D, $A, $words[9 + ($i * 16)], 21, "eb86d391"); //this last line is used twice $this->II ($B, $C, $D, $A, $words[9 + ($i * 16)], 21, "eb86d391"); $this->addVars($a, $b, $c, $d, $A, $B, $C, $D); } $MD5 = ''; foreach (array($a, $b, $c, $d) as $x) { $MD5 .= implode('', array_reverse(str_split($this->leftpad($x, 8), 2))); } return $MD5; } /* General functions */ function hexbin($str){ $hexbinmap = array( "0" => "0000", "1" => "0001", "2" => "0010", "3" => "0011" , "4" => "0100" , "5" => "0101" , "6" => "0110" , "7" => "0111" , "8" => "1000" , "9" => "1001" , "A" => "1010" , "a" => "1010" , "B" => "1011" , "b" => "1011" , "C" => "1100" , "c" => "1100" , "D" => "1101" , "d" => "1101" , "E" => "1110" , "e" => "1110" , "F" => "1111" , "f" => "1111"); $bin = ""; for ($i = 0; $i < strlen($str); $i++){ $bin .= $hexbinmap[$str[$i]]; } $bin = ltrim($bin, '0'); // echo "Original: ".$str." New: ".$bin."<br />"; return $bin; } function strhex($str){ $hex = ""; for ($i = 0; $i < strlen($str); $i++){ $hex = $hex.$this->leftpad(dechex(ord($str[$i])), 2); } return $hex; } /* MD5-specific functions */ function init($string){ $len = strlen($string) * 8; $hex = $this->strhex($string); // convert ascii string to hex $bin = $this->leftpad($this->hexbin($hex), $len); // convert hex string to bin $padded = $this->pad($bin); $padded = $this->pad($padded, 1, $len); $block = str_split($padded, 32); foreach ($block as &$b) { $b = implode('', array_reverse(str_split($b, 8))); } return $block; } function pad($bin, $type=0, $len = 0){ if($type == 0){ $bin = $bin."1"; $buff = strlen($bin) % 512; if($buff != 448){ while(strlen($bin) % 512 != 448){ $bin = $bin."0"; } } } // append length (b) of string to latter 64 bits elseif($type == 1){ $bLen = $this->leftpad(decbin($len), 64); $bin .= implode('', array_reverse(str_split($bLen, 8))); } return $bin; } /* MD5 base functions */ function F($X, $Y, $Z){ $X = hexdec($X); $Y = hexdec($Y); $Z = hexdec($Z); $calc = (($X & $Y) | ((~ $X) & $Z)); // X AND Y OR NOT X AND Z return $calc; } function G($X, $Y, $Z){ $X = hexdec($X); $Y = hexdec($Y); $Z = hexdec($Z); $calc = (($X & $Z) | ($Y & (~ $Z))); // X AND Z OR Y AND NOT Z return $calc; } function H($X, $Y, $Z){ $X = hexdec($X); $Y = hexdec($Y); $Z = hexdec($Z); $calc = ($X ^ $Y ^ $Z); // X XOR Y XOR Z return $calc; } function I($X, $Y, $Z){ $X = hexdec($X); $Y = hexdec($Y); $Z = hexdec($Z); $calc = ($Y ^ ($X | (~ $Z))) ; // Y XOR (X OR NOT Z) return $calc; } /* MD5 round functions */ /* $A - hex, $B - hex, $C - hex, $D - hex (F - dec) $M - binary $s - decimal $t - hex */ function FF(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = ($A + $this->F($B, $C, $D) + $M + $t) & 0xffffffff; //decimal $A = $this->rotate($A, $s); $A = dechex((hexdec($B) + hexdec($A)) & 0xffffffff); } function GG(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = ($A + $this->G($B, $C, $D) + $M + $t) & 0xffffffff; //decimal $A = $this->rotate($A, $s); $A = dechex((hexdec($B) + hexdec($A)) & 0xffffffff); } function HH(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = ($A + $this->H($B, $C, $D) + $M + $t) & 0xffffffff; //decimal $A = $this->rotate($A, $s); $A = dechex((hexdec($B) + hexdec($A)) & 0xffffffff); } function II(&$A, $B, $C, $D, $M, $s, $t){ $A = hexdec($A); $t = hexdec($t); $M = bindec($M); $A = ($A + $this->I($B, $C, $D) + $M + $t) & 0xffffffff; //decimal $A = $this->rotate($A, $s); $A = dechex((hexdec($B) + hexdec($A)) & 0xffffffff); } // shift function rotate ($decimal, $bits) { //returns hex return dechex((($decimal << $bits) | ($decimal >> (32 - $bits))) & 0xffffffff); } function addVars(&$a, &$b, &$c, &$d, $A, $B, $C, $D){ $A = hexdec($A); $B = hexdec($B); $C = hexdec($C); $D = hexdec($D); $aa = hexdec($a); $bb = hexdec($b); $cc = hexdec($c); $dd = hexdec($d); $aa = ($aa + $A) & 0xffffffff; $bb = ($bb + $B) & 0xffffffff; $cc = ($cc + $C) & 0xffffffff; $dd = ($dd + $D) & 0xffffffff; $a = dechex($aa); $b = dechex($bb); $c = dechex($cc); $d = dechex($dd); } function leftpad($needs_padding, $alignment) { if (strlen($needs_padding) % $alignment) { $pad_amount = $alignment - strlen($needs_padding) % $alignment; $left_pad = implode('', array_fill(0, $pad_amount, '0')); $needs_padding = $left_pad . $needs_padding; } return $needs_padding; } } $eahashor = new EAHashor(); $hash = $eahashor->eaEncode('test'); echo $hash; ?>

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.0040.01217.13
8.3.50.0090.01122.02
8.3.40.0100.00619.22
8.3.30.0150.00719.38
8.3.20.0040.00420.38
8.3.10.0090.00923.60
8.3.00.0080.00019.31
8.2.180.0120.00316.50
8.2.170.0070.01422.96
8.2.160.0100.00720.35
8.2.150.0050.00324.18
8.2.140.0090.00024.66
8.2.130.0080.00026.16
8.2.120.0000.00820.77
8.2.110.0090.00022.10
8.2.100.0110.00419.70
8.2.90.0030.00519.55
8.2.80.0060.00318.13
8.2.70.0000.00917.88
8.2.60.0060.00318.28
8.2.50.0000.00818.07
8.2.40.0040.00418.53
8.2.30.0070.00318.47
8.2.20.0090.00018.06
8.2.10.0040.00418.37
8.2.00.0050.00318.09
8.1.280.0190.00325.92
8.1.270.0030.00623.97
8.1.260.0050.00326.35
8.1.250.0040.00428.09
8.1.240.0030.00624.02
8.1.230.0040.00719.40
8.1.220.0000.00917.77
8.1.210.0030.00618.77
8.1.200.0140.00017.73
8.1.190.0060.00317.60
8.1.180.0050.00318.10
8.1.170.0000.00818.90
8.1.160.0000.00822.20
8.1.150.0030.00518.94
8.1.140.0000.01017.62
8.1.130.0000.00718.09
8.1.120.0040.00417.77
8.1.110.0050.00317.66
8.1.100.0030.00517.73
8.1.90.0050.00317.66
8.1.80.0040.00417.73
8.1.70.0080.00017.59
8.1.60.0050.00317.72
8.1.50.0060.00317.80
8.1.40.0070.00417.74
8.1.30.0080.00418.00
8.1.20.0120.00017.88
8.1.10.0050.00317.86
8.1.00.0040.00417.78
8.0.300.0040.00418.77
8.0.290.0050.00317.43
8.0.280.0040.00418.68
8.0.270.0080.00017.45
8.0.260.0000.00717.36
8.0.250.0040.00417.28
8.0.240.0070.00017.20
8.0.230.0030.00617.31
8.0.220.0000.00717.18
8.0.210.0030.00517.14
8.0.200.0000.00717.16
8.0.190.0000.00817.29
8.0.180.0040.00417.22
8.0.170.0030.00617.24
8.0.160.0000.00817.19
8.0.150.0060.00317.04
8.0.140.0070.00317.12
8.0.130.0050.00313.61
8.0.120.0030.00617.18
8.0.110.0000.00817.25
8.0.100.0000.00817.14
8.0.90.0000.00817.05
8.0.80.0080.00817.16
8.0.70.0060.00317.21
8.0.60.0080.00017.02
8.0.50.0040.00417.19
8.0.30.0100.01017.25
8.0.20.0100.00917.40
8.0.10.0030.00517.39
8.0.00.0160.00817.06
7.4.330.0030.00315.05
7.4.320.0030.00316.75
7.4.300.0070.00016.78
7.4.290.0000.00916.85
7.4.280.0000.00716.84
7.4.270.0080.00016.80
7.4.260.0080.00016.76
7.4.250.0030.00516.63
7.4.240.0000.00716.81
7.4.230.0000.00816.94
7.4.220.0140.01416.86
7.4.210.0070.00816.81
7.4.200.0000.00716.84
7.4.190.0040.00416.76
7.4.160.0090.00916.80
7.4.150.0060.01317.40
7.4.140.0100.00917.86
7.4.130.0070.01116.74
7.4.120.0120.00616.75
7.4.110.0110.00816.76
7.4.100.0150.00416.82
7.4.90.0080.01216.84
7.4.80.0080.01219.39
7.4.70.0150.00616.78
7.4.60.0100.01016.60
7.4.50.0000.00916.78
7.4.40.0040.01316.76
7.4.30.0080.00816.80
7.4.10.0080.00815.48
7.4.00.0100.00815.38
7.3.330.0000.00613.52
7.3.320.0000.00613.68
7.3.310.0040.00416.65
7.3.300.0000.00816.48
7.3.290.0040.01416.60
7.3.280.0060.01316.62
7.3.270.0090.00917.40
7.3.260.0030.02016.73
7.3.250.0080.01016.72
7.3.240.0110.00716.85
7.3.230.0180.00316.61
7.3.210.0130.00416.88
7.3.200.0120.01219.39
7.3.190.0040.01416.86
7.3.180.0030.01316.77
7.3.170.0070.01016.89
7.3.160.0000.01716.82
7.3.130.0030.01015.08
7.3.120.0080.01015.16
7.3.110.0140.00715.21
7.3.100.0040.01414.97
7.3.90.0030.01414.94
7.3.80.0000.01314.70
7.3.70.0040.01114.89
7.3.60.0040.01115.01
7.3.50.0070.00414.86
7.3.40.0030.01215.10
7.3.30.0130.00015.18
7.3.20.0060.00616.71
7.3.10.0080.00816.54
7.3.00.0000.01416.55
7.2.330.0090.01216.94
7.2.320.0030.01716.98
7.2.310.0140.01016.68
7.2.300.0000.01917.09
7.2.290.0060.01316.83
7.2.260.0070.01315.39
7.2.250.0030.01715.42
7.2.240.0030.01315.30
7.2.230.0000.01715.36
7.2.220.0150.00315.13
7.2.210.0090.00615.32
7.2.200.0060.00915.31
7.2.190.0060.01015.41
7.2.180.0040.00715.19
7.2.170.0120.00315.52
7.2.160.0040.01115.36
7.2.150.0030.01317.13
7.2.140.0000.01616.70
7.2.130.0000.01616.92
7.2.120.0070.00716.70
7.2.110.0030.01216.75
7.2.100.0100.01017.07
7.2.90.0030.00817.12
7.2.80.0070.00716.94
7.2.70.0140.00316.87
7.2.60.0050.00916.89
7.2.50.0040.01116.83
7.2.40.0090.00916.95
7.2.30.0000.01416.88
7.2.20.0040.01116.93
7.2.10.0110.00416.82
7.2.00.0030.01318.06
7.1.330.0130.00015.73
7.1.320.0030.01315.94
7.1.310.0100.00315.85
7.1.300.0040.01415.62
7.1.290.0040.00815.88
7.1.280.0000.00915.91
7.1.270.0030.01315.81
7.1.260.0060.00615.91
7.1.250.0130.00315.85
7.1.240.0030.01015.77
7.1.230.0090.00615.58
7.1.220.0000.01615.65
7.1.210.0030.00915.83
7.1.200.0060.00715.68
7.1.190.0000.01515.98
7.1.180.0000.01215.78
7.1.170.0040.01215.93
7.1.160.0040.01115.74
7.1.150.0030.01016.02
7.1.140.0030.00715.78
7.1.130.0050.00515.66
7.1.120.0000.01015.84
7.1.110.0060.01015.80
7.1.100.0050.00617.12
7.1.90.0040.01116.06
7.1.80.0000.01815.80
7.1.70.0030.00716.71
7.1.60.0050.00816.60
7.1.50.0030.01216.49
7.1.40.0070.00715.47
7.1.30.0040.00415.75
7.1.20.0060.00615.96
7.1.10.0000.01515.73
7.1.00.0020.04319.08
7.0.330.0040.00715.23
7.0.320.0040.01115.47
7.0.310.0000.00915.43
7.0.300.0070.00715.32
7.0.290.0080.00415.48
7.0.280.0030.01015.11
7.0.270.0070.00715.18
7.0.260.0030.00915.36
7.0.250.0050.00515.57
7.0.240.0090.00315.49
7.0.230.0040.00415.44
7.0.220.0000.01215.52
7.0.210.0090.00015.27
7.0.200.0020.01115.90
7.0.190.0070.00415.46
7.0.180.0030.00615.50
7.0.170.0060.00915.66
7.0.160.0040.00415.58
7.0.150.0060.00615.27
7.0.140.0080.03918.68
7.0.130.0040.00815.29
7.0.120.0060.00615.53
7.0.110.0060.00915.56
7.0.100.0100.02217.85
7.0.90.0000.03117.81
7.0.80.0030.03817.82
7.0.70.0050.02417.84
7.0.60.0070.02217.87
7.0.50.0050.02518.11
7.0.40.0030.02716.86
7.0.30.0080.02616.80
7.0.20.0060.02616.68
7.0.10.0070.02416.79
7.0.00.0090.03816.84
5.6.400.0060.00914.93
5.6.390.0000.01414.79
5.6.380.0090.00614.55
5.6.370.0000.01114.24
5.6.360.0030.01314.82
5.6.350.0040.00714.36
5.6.340.0060.00914.51
5.6.330.0030.01014.58
5.6.320.0070.00414.48
5.6.310.0030.00614.99
5.6.300.0060.00914.55
5.6.290.0050.00514.48
5.6.280.0050.04217.92
5.6.270.0080.00314.82
5.6.260.0040.00414.67
5.6.250.0030.02517.67
5.6.240.0120.02517.76
5.6.230.0070.04117.69
5.6.220.0020.03217.53
5.6.210.0030.03517.63
5.6.200.0100.04217.93
5.6.190.0030.03317.77
5.6.180.0060.02517.83
5.6.170.0030.02717.80
5.6.160.0070.02617.87
5.6.150.0080.04217.79
5.6.140.0100.02317.99
5.6.130.0080.04817.79
5.6.120.0080.04717.87
5.6.110.0060.03817.88
5.6.100.0070.03817.87
5.6.90.0060.03117.80
5.6.80.0090.04617.36
5.6.70.0080.03917.43
5.6.60.0150.03017.39
5.6.50.0070.04417.57
5.6.40.0150.03717.43
5.6.30.0070.04517.67
5.6.20.0020.05017.39
5.6.10.0100.03717.45
5.6.00.0070.03917.50
5.5.380.0070.03417.44
5.5.370.0080.02017.54
5.5.360.0070.02717.54
5.5.350.0080.03317.41
5.5.340.0110.02317.69
5.5.330.0060.02317.75
5.5.320.0040.02417.66
5.5.310.0050.02417.64
5.5.300.0060.03117.65
5.5.290.0050.02717.58
5.5.280.0070.03517.56
5.5.270.0080.04317.68
5.5.260.0130.02317.68
5.5.250.0030.04717.75
5.5.240.0090.03617.30
5.5.230.0080.04217.23
5.5.220.0080.04117.26
5.5.210.0070.02717.40
5.5.200.0110.03517.30
5.5.190.0080.03717.19
5.5.180.0020.04417.39
5.5.170.0060.00614.47
5.5.160.0070.04417.47
5.5.150.0130.02317.34
5.5.140.0070.04017.38
5.5.130.0080.04017.49
5.5.120.0000.05117.26
5.5.110.0100.04317.42
5.5.100.0130.03817.13
5.5.90.0100.03817.30
5.5.80.0080.03817.25
5.5.70.0080.02817.16
5.5.60.0050.03517.23
5.5.50.0030.04617.11
5.5.40.0100.03617.43
5.5.30.0050.04217.25
5.5.20.0070.04317.14
5.5.10.0080.04617.36
5.5.00.0050.04217.13
5.4.450.0050.04515.53
5.4.440.0050.02815.53
5.4.430.0080.03915.52
5.4.420.0030.03615.62
5.4.410.0050.03615.47
5.4.400.0100.03815.37
5.4.390.0030.04315.41
5.4.380.0030.02715.41
5.4.370.0050.02315.39
5.4.360.0050.04315.36
5.4.350.0120.02415.40
5.4.340.0040.02915.40
5.4.330.0000.01011.64
5.4.320.0030.03615.44
5.4.310.0100.03415.28
5.4.300.0070.03015.46
5.4.290.0070.03415.41
5.4.280.0020.04915.39
5.4.270.0100.03615.29
5.4.260.0070.03515.44
5.4.250.0070.02315.28
5.4.240.0080.03715.37
5.4.230.0080.02515.32
5.4.220.0050.02815.37
5.4.210.0030.04315.35
5.4.200.0080.03915.46
5.4.190.0110.03315.35
5.4.180.0070.04015.36
5.4.170.0070.02915.43
5.4.160.0020.03715.29
5.4.150.0100.03915.36
5.4.140.0040.02414.08
5.4.130.0080.03514.02
5.4.120.0070.04314.09
5.4.110.0070.03714.01
5.4.100.0070.03814.11
5.4.90.0090.03914.09
5.4.80.0070.03914.04
5.4.70.0080.04014.05
5.4.60.0100.03814.11
5.4.50.0030.04314.09
5.4.40.0050.04014.06
5.4.30.0060.03714.02
5.4.20.0020.04414.11
5.4.10.0030.03814.01
5.4.00.0120.03813.81
5.3.290.0100.04113.26
5.3.280.0050.04213.24
5.3.270.0050.04213.26
5.3.260.0040.03413.30
5.3.250.0020.02913.19
5.3.240.0020.04413.24
5.3.230.0120.03513.25
5.3.220.0070.04013.24
5.3.210.0100.04013.24
5.3.200.0020.04313.22
5.3.190.0080.04013.21
5.3.180.0050.03813.21
5.3.170.0050.04013.22
5.3.160.0020.04413.17
5.3.150.0100.03613.21
5.3.140.0050.04113.28
5.3.130.0050.04113.26
5.3.120.0070.03313.25
5.3.110.0000.04413.27
5.3.100.0070.03013.00
5.3.90.0070.03812.99
5.3.80.0060.03912.89
5.3.70.0070.03412.94
5.3.60.0050.02912.93
5.3.50.0060.03912.96
5.3.40.0080.03312.86
5.3.30.0050.03312.82
5.3.20.0050.03912.83
5.3.10.0030.04012.71
5.3.00.0070.02312.71

preferences:
64.11 ms | 401 KiB | 5 Q