3v4l.org

run code in 300+ PHP versions simultaneously
<?php class EAHashor { private $right32; public function __construct() { $this->right32 = ~((~0 << 16) << 16); } public function eaEncode($string){ $a = "67452301"; $b = "EFCDAB89"; $c = "98BADCFE"; $d = "10325476"; $words = $this->init($string); for($i = 0, $l = count($words) / 16 - 1; $i <= $l; $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 */ private 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; } private 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 */ private 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; } private 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 */ private function F($X, $Y, $Z){ $X = $this->binarySafeHexDec($X); $Y = $this->binarysafehexdec($Y); $Z = $this->binarysafehexdec($Z); $calc = (($X & $Y) | ((~ $X) & $Z)); // X AND Y OR NOT X AND Z return $calc; } private function G($X, $Y, $Z){ $X = $this->binarysafehexdec($X); $Y = $this->binarysafehexdec($Y); $Z = $this->binarysafehexdec($Z); $calc = (($X & $Z) | ($Y & (~ $Z))); // X AND Z OR Y AND NOT Z return $calc; } private function H($X, $Y, $Z){ $X = $this->binarysafehexdec($X); $Y = $this->binarysafehexdec($Y); $Z = $this->binarysafehexdec($Z); $calc = ($X ^ $Y ^ $Z); // X XOR Y XOR Z return $calc; } private function I($X, $Y, $Z){ $X = $this->binarysafehexdec($X); $Y = $this->binarysafehexdec($Y); $Z = $this->binarysafehexdec($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 */ private function FF(&$A, $B, $C, $D, $M, $s, $t){ $A = $this->binarysafehexdec($A); $t = $this->binarysafehexdec($t); $M = $this->binarysafebindec($M); $A = $this->add($A, $this->F($B, $C, $D), $M, $t) & $this->right32; //decimal $A = $this->rotate($A, $s); $A = dechex($this->add($this->binarysafehexdec($B), $this->binarysafehexdec($A)) & $this->right32); } private function GG(&$A, $B, $C, $D, $M, $s, $t){ $A = $this->binarysafehexdec($A); $t = $this->binarysafehexdec($t); $M = $this->binarysafebindec($M); $A = $this->add($A, $this->G($B, $C, $D), $M, $t) & $this->right32; //decimal $A = $this->rotate($A, $s); $A = dechex($this->add($this->binarysafehexdec($B), $this->binarysafehexdec($A)) & $this->right32); } private function HH(&$A, $B, $C, $D, $M, $s, $t){ $A = $this->binarysafehexdec($A); $t = $this->binarysafehexdec($t); $M = $this->binarysafebindec($M); $A = $this->add($A, $this->H($B, $C, $D), $M, $t) & $this->right32; //decimal $A = $this->rotate($A, $s); $A = dechex($this->add($this->binarysafehexdec($B), $this->binarysafehexdec($A)) & $this->right32); } private function II(&$A, $B, $C, $D, $M, $s, $t){ $A = $this->binarysafehexdec($A); $t = $this->binarysafehexdec($t); $M = $this->binarysafebindec($M); $A = $this->add($A, $this->I($B, $C, $D), $M, $t) & $this->right32; //decimal $A = $this->rotate($A, $s); $A = dechex($this->add($this->binarysafehexdec($B), $this->binarysafehexdec($A)) & $this->right32); } private function rotate ($decimal, $bits) { return dechex(($decimal << $bits) | (($decimal >> (32 - $bits)) & (~(~0 << $bits) & $this->right32))); } private function addVars(&$a, &$b, &$c, &$d, $A, $B, $C, $D){ $A = $this->binarysafehexdec($A); $B = $this->binarysafehexdec($B); $C = $this->binarysafehexdec($C); $D = $this->binarysafehexdec($D); $aa = $this->binarysafehexdec($a); $bb = $this->binarysafehexdec($b); $cc = $this->binarysafehexdec($c); $dd = $this->binarysafehexdec($d); $aa = $this->add($aa, $A) & $this->right32; $bb = $this->add($bb, $B) & $this->right32; $cc = $this->add($cc, $C) & $this->right32; $dd = $this->add($dd, $D) & $this->right32; $a = dechex($aa); $b = dechex($bb); $c = dechex($cc); $d = dechex($dd); } private 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; } private function binarySafeBinDec($bin) { $bits = array_reverse(str_split($bin, 1)); $result = 0; foreach ($bits as $position => $bit) { $result |= ((int) $bit) << $position; } return $result; } private function binarySafeHexDec($hex) { $h = str_split(str_pad($hex, 8, '0', STR_PAD_LEFT), 2); return (hexdec($h[0]) << 24) | (hexdec($h[1]) << 16) | (hexdec($h[2]) << 8) | hexdec($h[3]); } private function leftShiftByOne($intAsStr) { $p = unpack('N2', $intAsStr); return pack('N2', ($p[1] << 1) | (($p[2] >> 31) & 0x00000001), $p[2] << 1); } private function binarySafeAddition($a, $b) { // NB: we don't actually need 64 bits, but 40 bit integers are confusing $a = "\x00\x00\x00\x00" . pack('N', $a); $b = "\x00\x00\x00\x00" . pack('N', $b); $carry = $a & $b; $result = $a ^ $b; while ($carry != "\x00\x00\x00\x00\x00\x00\x00\x00") { $shiftedcarry = $this->leftShiftByOne($carry); $carry = $result & $shiftedcarry; $result ^= $shiftedcarry; } return current(unpack('N', substr($result, 4))); } private function add() { $result = 0; foreach (func_get_args() as $int) { $result = $this->binarySafeAddition($result, $int); } return $result; } } $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.0060.01617.00
8.3.50.0280.00416.80
8.3.40.0100.00719.04
8.3.30.0070.01019.05
8.3.20.0060.00319.11
8.3.10.0060.00320.48
8.3.00.0060.00319.38
8.2.180.0110.01117.13
8.2.170.0100.00622.96
8.2.160.0130.00320.64
8.2.150.0040.00424.18
8.2.140.0040.00424.66
8.2.130.0080.00026.16
8.2.120.0030.00620.89
8.2.110.0080.00320.70
8.2.100.0070.00718.16
8.2.90.0110.00019.36
8.2.80.0030.00719.66
8.2.70.0060.00317.88
8.2.60.0030.00618.05
8.2.50.0040.00818.07
8.2.40.0060.00318.41
8.2.30.0090.00018.38
8.2.20.0030.00718.07
8.2.10.0030.00618.14
8.2.00.0040.00417.95
8.1.280.0160.00325.92
8.1.270.0090.00024.66
8.1.260.0060.00326.35
8.1.250.0040.00428.09
8.1.240.0030.00622.48
8.1.230.0060.00621.21
8.1.220.0030.00618.04
8.1.210.0030.00719.14
8.1.200.0000.01017.60
8.1.190.0060.00317.77
8.1.180.0030.00718.10
8.1.170.0030.00619.23
8.1.160.0030.00619.20
8.1.150.0060.00318.97
8.1.140.0000.00917.73
8.1.130.0030.00518.07
8.1.120.0040.00717.73
8.1.110.0030.00617.76
8.1.100.0040.00417.71
8.1.90.0000.00817.77
8.1.80.0060.00317.77
8.1.70.0030.00517.59
8.1.60.0030.00717.86
8.1.50.0090.00017.64
8.1.40.0030.00717.79
8.1.30.0000.00917.92
8.1.20.0000.01017.87
8.1.10.0000.00917.77
8.1.00.0000.00917.75
8.0.300.0030.00620.11
8.0.290.0030.00717.00
8.0.280.0000.01018.77
8.0.270.0050.00517.52
8.0.260.0000.00917.13
8.0.250.0070.00317.24
8.0.240.0060.00317.24
8.0.230.0060.00317.27
8.0.220.0050.00317.19
8.0.210.0040.00417.04
8.0.200.0040.00417.21
8.0.190.0080.00017.18
8.0.180.0060.00317.04
8.0.170.0000.01017.23
8.0.160.0000.00917.22
8.0.150.0030.00917.01
8.0.140.0110.00317.14
8.0.130.0000.00713.52
8.0.120.0060.00317.15
8.0.110.0030.00616.94
8.0.100.0040.00417.15
8.0.90.0000.00917.05
8.0.80.0090.01117.23
8.0.70.0000.00917.07
8.0.60.0030.00617.19
8.0.50.0060.00317.07
8.0.30.0120.01017.29
8.0.20.0090.01417.39
8.0.10.0030.00617.25
8.0.00.0110.01017.06
7.4.330.0000.00613.29
7.4.320.0000.00816.80
7.4.300.0000.00816.79
7.4.290.0040.00416.88
7.4.280.0060.00316.69
7.4.270.0060.00316.88
7.4.260.0070.00013.58
7.4.250.0000.01016.70
7.4.240.0030.00616.68
7.4.230.0040.00416.87
7.4.220.0140.01016.75
7.4.210.0090.00816.83
7.4.200.0040.00416.85
7.4.190.0030.00616.74
7.4.160.0090.01616.85
7.4.150.0150.00616.75
7.4.140.0150.00716.95
7.4.130.0130.01116.83
7.4.120.0120.01116.72
7.4.110.0160.00316.66
7.4.100.0170.00416.83
7.4.90.0070.01716.84
7.4.80.0040.02116.66
7.4.70.0090.00916.77
7.4.60.0100.01016.97
7.4.50.0100.00516.66
7.4.40.0120.00616.79
7.4.30.0060.01416.94
7.4.10.0040.01515.20
7.4.00.0040.01415.31
7.3.330.0040.00413.57
7.3.320.0070.00013.69
7.3.310.0000.00916.57
7.3.300.0040.00416.63
7.3.290.0070.01716.61
7.3.280.0080.01216.65
7.3.270.0100.01616.64
7.3.260.0090.01316.70
7.3.250.0110.00916.66
7.3.240.0060.01316.68
7.3.230.0130.00716.61
7.3.210.0050.01816.60
7.3.200.0070.01319.39
7.3.190.0170.00316.54
7.3.180.0100.01016.78
7.3.170.0110.01116.66
7.3.160.0070.01116.59
7.3.130.0120.00915.02
7.3.120.0050.01415.25
7.3.110.0110.01115.19
7.3.100.0060.01115.06
7.3.90.0070.00715.04
7.3.80.0090.00515.07
7.3.70.0050.01115.07
7.3.60.0040.01215.17
7.3.50.0050.00715.06
7.3.40.0070.01015.16
7.3.30.0020.00915.17
7.3.20.0020.01316.73
7.3.10.0010.01316.68
7.3.00.0080.00816.72
7.2.330.0140.00717.13
7.2.320.0120.01217.05
7.2.310.0090.01216.90
7.2.300.0110.01117.14
7.2.290.0110.01416.61
7.2.260.0070.01414.98
7.2.250.0080.01315.28
7.2.240.0110.00815.41
7.2.230.0080.00815.45
7.2.220.0050.01015.34
7.2.210.0060.01015.28
7.2.200.0020.01315.17
7.2.190.0040.01315.43
7.2.180.0070.00915.24
7.2.170.0030.01115.35
7.2.160.0070.01015.35
7.2.150.0030.01217.20
7.2.140.0030.00916.77
7.2.130.0070.01316.96
7.2.120.0000.01417.11
7.2.110.0060.01517.00
7.2.100.0100.00716.91
7.2.90.0030.01617.13
7.2.80.0060.01316.85
7.2.70.0070.00716.75
7.2.60.0040.01116.99
7.2.50.0060.00917.13
7.2.40.0100.01016.88
7.2.30.0030.01317.00
7.2.20.0040.01517.00
7.2.10.0060.00916.97
7.2.00.0020.01218.25
7.1.330.0030.01515.81
7.1.320.0050.01315.90
7.1.310.0090.00915.89
7.1.300.0070.00915.72
7.1.290.0050.01415.89
7.1.280.0020.01315.90
7.1.270.0030.01215.89
7.1.260.0050.01015.72
7.1.250.0090.00615.67
7.1.240.0080.00615.60
7.1.230.0000.01715.76
7.1.220.0100.01015.78
7.1.210.0000.01415.95
7.1.200.0060.00815.86
7.1.190.0030.01415.61
7.1.180.0040.00815.71
7.1.170.0060.01115.72
7.1.160.0070.01015.97
7.1.150.0000.01315.71
7.1.140.0000.01715.83
7.1.130.0120.00915.82
7.1.120.0040.01115.91
7.1.110.0070.01115.93
7.1.100.0070.00716.90
7.1.90.0070.01115.66
7.1.80.0090.00915.64
7.1.70.0070.01016.38
7.1.60.0050.01317.65
7.1.50.0020.01116.41
7.1.40.0030.01015.77
7.1.30.0070.01115.68
7.1.20.0000.01515.46
7.1.10.0070.01015.69
7.1.00.0020.02519.12
7.0.330.0030.00915.49
7.0.320.0060.00915.62
7.0.310.0000.01415.15
7.0.300.0060.01015.43
7.0.290.0070.01015.60
7.0.280.0040.00815.24
7.0.270.0070.01315.57
7.0.260.0000.01415.47
7.0.250.0100.00715.12
7.0.240.0030.00915.34
7.0.230.0100.01415.52
7.0.220.0000.01315.25
7.0.210.0000.01515.24
7.0.200.0690.01115.25
7.0.190.0030.01315.42
7.0.180.0070.00715.58
7.0.170.0040.01515.39
7.0.160.0000.01115.54
7.0.150.0030.01215.48
7.0.140.0030.04618.80
7.0.130.0060.01015.42
7.0.120.0050.03418.72
7.0.110.0030.01315.62
7.0.100.0070.02817.65
7.0.90.0050.03017.88
7.0.80.0050.02717.77
7.0.70.0070.02217.84
7.0.60.0070.02317.78
7.0.50.0030.03017.98
7.0.40.0100.02216.81
7.0.30.0040.02416.76
7.0.20.0070.03016.80
7.0.10.0060.02616.72
7.0.00.0050.02916.76
5.6.400.0070.01414.48
5.6.390.0040.01714.07
5.6.380.0100.00714.59
5.6.370.0070.01014.72
5.6.360.0080.01114.57
5.6.350.0060.01214.70
5.6.340.0060.01314.71
5.6.330.0150.00614.53
5.6.320.0090.00614.86
5.6.310.0090.00914.57
5.6.300.0000.01714.32
5.6.290.0030.01614.47
5.6.280.0060.04517.71
5.6.270.0040.01414.67
5.6.260.0030.02014.56
5.6.250.0080.03017.50
5.6.240.0050.03317.56
5.6.230.0060.03117.54
5.6.220.0030.03117.65
5.6.210.0050.03117.55
5.6.200.0020.03017.85
5.6.190.0040.03017.74
5.6.180.0030.03217.79
5.6.170.0010.02918.01
5.6.160.0110.04017.69
5.6.150.0050.04017.90
5.6.140.0050.03117.84
5.6.130.0090.02717.75
5.6.120.0070.02817.96
5.6.110.0030.03217.81
5.6.100.0030.03017.98
5.6.90.0020.03217.65
5.6.80.0000.03017.52
5.6.70.0030.05217.58
5.6.60.0080.04517.54
5.6.50.0070.04717.56
5.6.40.0070.04517.54
5.6.30.0050.05017.42
5.6.20.0050.02617.59
5.6.10.0080.04817.58
5.6.00.0140.04217.44
5.5.380.0050.02517.51
5.5.370.0050.02517.54
5.5.360.0030.03917.33
5.5.350.0070.03017.52
5.5.340.0070.02517.59
5.5.330.0060.02817.75
5.5.320.0040.02917.69
5.5.310.0020.03017.73
5.5.300.0020.03217.67
5.5.290.0070.03017.61
5.5.280.0080.02617.57
5.5.270.0030.03117.81
5.5.260.0030.03117.62
5.5.250.0020.02917.43
5.5.240.0080.02217.29
5.5.230.0060.04817.39
5.5.220.0130.04217.45
5.5.210.0000.05017.37
5.5.200.0070.04417.39
5.5.190.0020.05217.46
5.5.180.0050.04717.36
5.5.170.0030.01814.40
5.5.160.0060.03117.25
5.5.150.0140.02617.51
5.5.140.0100.04717.42
5.5.130.0020.04617.44
5.5.120.0080.04317.49
5.5.110.0100.04117.21
5.5.100.0070.04617.33
5.5.90.0020.03117.39
5.5.80.0030.03817.15
5.5.70.0070.03617.34
5.5.60.0090.03317.19
5.5.50.0030.03317.31
5.5.40.0060.04117.29
5.5.30.0080.04817.11
5.5.20.0100.04317.29
5.5.10.0080.04717.28
5.5.00.0060.04817.32
5.4.450.0020.03015.16
5.4.440.0040.02715.33
5.4.430.0030.02515.41
5.4.420.0020.03115.25
5.4.410.0020.04815.27
5.4.400.0050.03215.18
5.4.390.0100.03815.01
5.4.380.0070.04215.16
5.4.370.0080.04315.12
5.4.360.0030.03614.97
5.4.350.0020.03515.21
5.4.340.0070.02615.04
5.4.330.0070.01111.41
5.4.320.0030.05015.10
5.4.310.0100.04515.12
5.4.300.0050.03615.06
5.4.290.0030.04715.14
5.4.280.0030.04915.13
5.4.270.0040.04115.03
5.4.260.0050.03315.15
5.4.250.0030.04815.33
5.4.240.0020.04315.23
5.4.230.0050.05115.11
5.4.220.0050.03515.15
5.4.210.0030.04615.11
5.4.200.0030.05215.22
5.4.190.0020.03515.13
5.4.180.0100.04214.91
5.4.170.0040.03615.14
5.4.160.0120.03615.02
5.4.150.0100.04215.02
5.4.140.0080.03613.77
5.4.130.0070.04313.67
5.4.120.0000.05013.65
5.4.110.0020.04813.83
5.4.100.0050.03213.77
5.4.90.0050.04713.83
5.4.80.0000.04413.73
5.4.70.0030.04613.81
5.4.60.0050.04613.74
5.4.50.0030.04513.79
5.4.40.0050.04513.94
5.4.30.0020.04813.73
5.4.20.0080.04013.77
5.4.10.0050.02813.68
5.4.00.0080.04713.31
5.3.290.0050.04412.96
5.3.280.0050.05312.86
5.3.270.0050.04612.75
5.3.260.0080.04112.82
5.3.250.0100.02712.76
5.3.240.0020.04412.84
5.3.230.0030.04312.88
5.3.220.0030.04712.84
5.3.210.0020.05012.79
5.3.200.0080.03812.83
5.3.190.0050.04712.68
5.3.180.0060.03912.84
5.3.170.0050.04512.73
5.3.160.0070.04412.91
5.3.150.0100.04412.77
5.3.140.0070.04212.78
5.3.130.0050.03512.88
5.3.120.0070.04312.84
5.3.110.0060.02812.73
5.3.100.0090.04312.55
5.3.90.0090.03712.57
5.3.80.0050.03912.41
5.3.70.0070.04812.59
5.3.60.0080.04312.55
5.3.50.0030.04712.50
5.3.40.0050.04412.52
5.3.30.0020.04912.45
5.3.20.0030.03012.27
5.3.10.0050.04312.21
5.3.00.0070.02412.16

preferences:
39.33 ms | 401 KiB | 5 Q