3v4l.org

run code in 300+ PHP versions simultaneously
<?php function extract_docblocks($data) { $inBlock = false; $forceNewItem = true; $currentBlock = array(); $blocks = array(); foreach (preg_split('/[\r\n]+/', $data) as $line) { $line = trim($line); if (!$inBlock) { if ($line === '/**') { $inBlock = true; } continue; } if ($line[0] !== '*') { $inBlock = false; $forceNewItem = true; $currentBlock = array(); continue; } if ($line === '*/') { $inBlock = false; $forceNewItem = true; $blocks[] = $currentBlock; $currentBlock = array(); continue; } $line = trim(substr($line, 1)); if ($line[0] === '@' || $forceNewItem) { $forceNewItem = false; $currentBlock[] = $line; } else if ($line === '') { $forceNewItem = true; } else { $currentBlock[count($currentBlock) - 1] .= "\n" . $line; } } return $blocks; } $str = <<<'CLASS' <?php /** * Class EventLoop * * This is not the fastest event loop implementation in the world, at least * partially because it's been stupidified for PHP4. It's not really for high * performance asyncSaucezOMG though, so it shouldn't matter. */ class EventLoop { /** * @var EventLoopConfig */ var $config; /** * @var EventLoopLogger * @access private */ var $_logger; /** * @var WorkerPoolFactory */ var $_workerPoolFactory; /** * @var array * @access private */ var $_streamWatchers = array( 'read' => array( 'streams' => array(), 'callbacks' => array(), ), 'write' => array( 'streams' => array(), 'callbacks' => array(), ), 'except' => array( 'streams' => array(), 'callbacks' => array(), ), ); /** * @var int * @access private */ var $_streamWatcherCount = 0; /** * @var Scheduler * @access private */ var $_scheduler; /** * @var WorkerPool * @access private */ var $_dynamicWorkerPool; /** * @var WorkerPool * @access private */ var $_dnsWorkerPool; /** * @var StreamHandler[] * @access private */ var $_streamHandlers = array(); /** * @var bool * @access private */ var $_running = false; /** * Constructor * * @param WorkerPoolFactory $workerPoolFactory * @param EventLoopConfig $config * @param EventLoopLogger $logger * @param SchedulerFactory $schedulerFactory * @param StreamHandler $socketStreamHandler */ function EventLoop(&$workerPoolFactory, &$config, &$logger, &$schedulerFactory, &$socketStreamHandler) { $this->config = &$config; $this->_logger = &$logger; $this->_workerPoolFactory = &$workerPoolFactory; $this->_scheduler = &$schedulerFactory->create($this->_logger); $this->registerStreamHandler($socketStreamHandler, array('tcp', 'udp', 'unix')); $this->_dynamicWorkerPool = &$workerPoolFactory->create($this, $this->config->workers, $this->_logger, 'Dynamic'); $config->dns->normalizeInheritableProperties($this->config->workers); $this->_dnsWorkerPool = &$workerPoolFactory->create($this, $this->config->dns, $this->_logger, 'DNS'); } /** * Get the current time as a float * * @return float * @access private */ function _now() { list($usec, $sec) = explode(' ', microtime()); return ((float)$usec + (float)$sec); } /** * Check whether at least one client socket or scheduled item is active * * @return bool * @access private */ function _isActive() { return $this->_streamWatcherCount || $this->_scheduler->isActive(); } /** * Get the time until there is something to do * * @return float|null * @access private */ function _getNextActivityTime() { $candidates = array(); if (null !== $time = $this->_scheduler->getNextActivityTime()) { $candidates[] = $time; } if (null !== $time = $this->_dynamicWorkerPool->getNextActivityTime()) { $candidates[] = $time; } if (null !== $time = $this->_dnsWorkerPool->getNextActivityTime()) { $candidates[] = $time; } return $candidates ? max(min($candidates), 0) : null; } /** * Sleep until the next scheduled item is due to be executed * * @access private */ function _awaitNextActivity($timeout) { if ($timeout) { $this->_logger->debug(null, 'Waiting until next scheduled activity, timeout: %f', $timeout); usleep(floor($timeout * 1000000)); } } /** * Process I/O on all active streams * * @access private */ function _processStreams($timeout) { $streams = array( 'read' => $this->_streamWatchers['read']['streams'], 'write' => $this->_streamWatchers['write']['streams'], 'except' => $this->_streamWatchers['except']['streams'], ); if ($timeout !== null) { $secs = floor($timeout); $usecs = floor(($timeout - $secs) * 1000000); } else { $secs = $usecs = null; } $this->_logger->debug( null, 'select() watching %d streams for activity (read: %d, write: %d, except: %d), timeout: %s', count($streams['read']) + count($streams['write']) + count($streams['except']), count($streams['read']), count($streams['write']), count($streams['except']), $secs === null ? 'NULL' : "{$secs}s {$usecs}u" ); $count = stream_select($streams['read'], $streams['write'], $streams['except'], $secs, $usecs); if ($count === false) { $this->_logger->error(null, 'select() operation failed!'); exit(1); } else if ($count === 0) { $this->_logger->debug(null, 'select() returned 0 streams with activity'); return; } $this->_logger->debug( null, 'select() returned %d streams with activity (read: %d, write: %d, except: %d)', $count, count($streams['read']), count($streams['write']), count($streams['except']) ); foreach (array('read', 'write', 'except') as $op) { foreach ($streams[$op] as $stream) { $id = (int) $stream; if (isset($this->_streamWatchers[$op]['callbacks'][$id])) { call_user_func($this->_streamWatchers[$op]['callbacks'][$id], $stream); } } } } /** * Add a watcher for a stream * * @param string $op * @param resource $stream * @param callable $callback * @return bool * @access module */ function _addStreamWatcher($op, $stream, $callback) { $id = (int) $stream; $op = strtolower($op); if (!isset($this->_streamWatchers[$op])) { $this->_logger->debug(null, 'Failed to add %s watcher on stream #%d: unknown op', $op, $id); return false; } else if (!is_resource($stream)) { $this->_logger->debug(null, 'Failed to add %s watcher on stream #%d: not a valid stream resource', $op, $id); return false; } else if (!is_callable($callback)) { $this->_logger->debug(null, 'Failed to add %s watcher on stream #%d: invalid callback', $op, $id); return false; } if (!isset($this->_streamWatchers[$op]['streams'][$id])) { $this->_streamWatchers[$op]['streams'][$id] = $stream; $this->_streamWatcherCount++; } else { $this->_logger->debug(null, 'Overwrote %s watcher on stream #%d', $op, $id); } $this->_streamWatchers[$op]['callbacks'][$id] = $callback; $this->_logger->debug(null, 'Added %s watcher on stream #%d, watchers: %d', $op, $id, $this->_streamWatcherCount); return true; } /** * Remove a watcher for a stream or stream ID * * @param string $op * @param resource|int $stream * @access module */ function _removeStreamWatcher($op, $stream) { $id = (int) $stream; $op = strtolower($op); if (isset($this->_streamWatchers[$op]['streams'][$id])) { unset($this->_streamWatchers[$op]['streams'][$id], $this->_streamWatchers[$op]['callbacks'][$id]); $this->_streamWatcherCount--; $this->_logger->debug(null, 'Removed %s watcher on stream #%d, watchers: %d', $op, $id, $this->_streamWatcherCount); } else { $this->_logger->debug(null, 'Could not remove %s watcher on stream #%d: not registered', $op, $id); } } /** * Clean up and shut down the event loop */ function _shutdown() { $this->_logger->info(null, 'Shutting down event loop'); // Remove all stream watchers apart from workers foreach (array('read', 'write', 'except') as $op) { foreach ($this->_streamWatchers[$op]['callbacks'] as $id => $callback) { if (!is_array($callback) || !is_a($callback[0], 'WorkerParentEndpoint')) { $this->_removeStreamWatcher($op, $id); } } } // Empty the schedule $this->_scheduler->shutdown(); // Send all workers a terminate signal $this->_dynamicWorkerPool->shutdown(); $this->_dnsWorkerPool->shutdown(); // Let workers terminate gracefully while ($this->_streamWatcherCount > 0) { $this->_processStreams($this->_getNextActivityTime()); $this->_scheduler->processActivity(); } } /** * Register a handler for a stream wrapper or set of wrappers * * @param StreamHandler $handler * @param array $schemes * @return bool */ function registerStreamHandler(&$handler, $schemes) { if (!is_a($handler, 'StreamHandler')) { return false; } foreach ($schemes as $scheme) { $this->_streamHandlers[strtolower($scheme)] = &$handler; } return true; } /** * Create a new stream * * @param string $address * @return SocketStream */ function &openStream($address) { if (!$url = parse_url($address)) { $this->_logger->warn(null, 'Unable to parse stream URL %s: Parse failed', $address); return null; } else if (!isset($url['scheme'])) { $this->_logger->warn(null, 'Unable to parse stream URL %s: Missing scheme', $address); return null; } $scheme = strtolower($url['scheme']); if (!isset($this->_streamHandlers[$scheme])) { $this->_logger->warn(null, 'No stream handler registered for URI scheme: %s', $scheme); return null; } $stream = &$this->_streamHandlers[$scheme]->createStream($this, $url); return $stream; } /** * Schedule a job to be run asynchronously in a worker * * @param string $method * @param mixed ...$args * @return AsyncJob */ function &async($method) { $args = func_get_args(); $job = &new AsyncJob($method, array_slice($args, 1)); $this->_dynamicWorkerPool->pushJob($job); $this->_logger->info(null, 'Queued async job, method: %s', $method); return $job; } /** * Resolve a host name to an IP address asynchronously * * @param string $host * @param callable $callback * @param bool $returnHost */ function resolveHost($host, $callback, $returnHost = false) { if ($host === '255.255.255.255' || ip2long($host) !== -1) { $this->in(0, $callback, $returnHost ? array($host, $host) : array($host)); } else { $job = &new AsyncJob('DNSWorker::resolve', array($host)); $this->_dnsWorkerPool->pushJob($job); $job->on('complete', $callback, $returnHost ? array($host) : array()); $job->on('error', $callback, $returnHost ? array($host, null) : array(null)); } } /** * Schedule a callback to be execute after a specified number of microseconds * * @param int $usecs * @param callable $callback * @param array $args * @return int */ function in($usecs, $callback, $args = array()) { return $this->_scheduler->createItem($this->_now() + ($usecs / 1000000), $callback, $args); } /** * Schedule a callback to execute at a specified timestamp * * @param float $timestamp * @param callable $callback * @param array $args * @return int */ function at($timestamp, $callback, $args = array()) { return $this->_scheduler->createItem($timestamp, $callback, $args); } /** * Schedule a recurring callback to execute after a specified number of microseconds * * @param int $usecs * @param callable $callback * @param array $args * @return int */ function every($usecs, $callback, $args = array()) { $secs = $usecs / 1000000; return $this->_scheduler->createItem($this->_now() + $secs, $callback, $args, $secs); } /** * Cancel a scheduled callback * * @param int $id * @return bool */ function cancel($id) { return $this->_scheduler->removeItem($id); } /** * Execute the event loop */ function run() { $this->_logger->info(null, 'Starting event loop'); $this->_running = true; // Main loop while ($this->_running && $this->_isActive()) { $timeout = $this->_getNextActivityTime(); if ($this->_streamWatcherCount > 0) { $this->_processStreams($timeout); } else { $this->_awaitNextActivity($timeout); } $this->_dynamicWorkerPool->processActivity(); $this->_dnsWorkerPool->processActivity(); $this->_scheduler->processActivity(); } $this->_running = false; $this->_shutdown(); $this->_logger->info(null, 'Event loop terminated'); } /** * Check whether the event loop is running * * @return bool */ function isRunning() { return $this->_running; } /** * Stop the event loop after the current iteration */ function stop() { $this->_logger->debug(null, 'Stopping event loop'); $this->_running = false; } } CLASS; print_r(extract_docblocks($str));

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.0100.00718.56
8.3.50.0130.00822.17
8.3.40.0000.01519.30
8.3.30.0120.00319.21
8.3.20.0040.00420.39
8.3.10.0080.00021.92
8.3.00.0110.00722.15
8.2.180.0090.00916.88
8.2.170.0090.00622.96
8.2.160.0030.01321.02
8.2.150.0030.00624.18
8.2.140.0050.00324.66
8.2.130.0050.00226.16
8.2.120.0030.00717.88
8.2.110.0000.00922.17
8.2.100.0060.00619.55
8.2.90.0090.00019.48
8.2.80.0030.00517.97
8.2.70.0060.00317.88
8.2.60.0050.00318.05
8.2.50.0000.00818.13
8.2.40.0040.00418.41
8.2.30.0050.00318.26
8.2.20.0000.00817.91
8.2.10.0000.00919.64
8.2.00.0040.00417.96
8.1.280.0140.00425.92
8.1.270.0040.00422.18
8.1.260.0080.00026.35
8.1.250.0040.00428.09
8.1.240.0030.00623.91
8.1.230.0080.00419.20
8.1.220.0030.00617.89
8.1.210.0030.00518.77
8.1.200.0120.00517.34
8.1.190.0080.00017.66
8.1.180.0040.00418.86
8.1.170.0040.00418.75
8.1.160.0040.00422.06
8.1.150.0000.00818.96
8.1.140.0040.00417.67
8.1.130.0000.00817.98
8.1.120.0040.00417.69
8.1.110.0040.00417.57
8.1.100.0040.00417.70
8.1.90.0070.00017.66
8.1.80.0000.00717.60
8.1.70.0050.00317.64
8.1.60.0030.00617.69
8.1.50.0050.00317.67
8.1.40.0060.00317.67
8.1.30.0000.00917.79
8.1.20.0080.00017.85
8.1.10.0030.00517.70
8.1.00.0000.00917.58
8.0.300.0080.00018.77
8.0.290.0080.00017.18
8.0.280.0070.00018.59
8.0.270.0000.00817.27
8.0.260.0040.00417.09
8.0.250.0070.00017.24
8.0.240.0040.00417.18
8.0.230.0030.00317.21
8.0.220.0030.00317.21
8.0.210.0030.00317.19
8.0.200.0000.00717.22
8.0.190.0060.00617.04
8.0.180.0040.00417.15
8.0.170.0090.00017.14
8.0.160.0050.00317.16
8.0.150.0050.00217.13
8.0.140.0000.00716.98
8.0.130.0030.00313.64
8.0.120.0030.00517.14
8.0.110.0040.00417.29
8.0.100.0000.00717.20
8.0.90.0040.00417.26
8.0.80.0000.01517.20
8.0.70.0000.00817.21
8.0.60.0020.00517.18
8.0.50.0030.00517.26
8.0.30.0090.01017.27
8.0.20.0090.01117.40
8.0.10.0040.00417.25
8.0.00.0120.01017.14
7.4.330.0050.00015.00
7.4.320.0000.00616.84
7.4.300.0030.00316.83
7.4.290.0000.00716.91
7.4.280.0030.00316.74
7.4.270.0000.00716.84
7.4.260.0030.00616.70
7.4.250.0040.00416.82
7.4.240.0070.00216.78
7.4.230.0040.00417.02
7.4.220.0160.00316.85
7.4.210.0050.00916.92
7.4.200.0040.00416.59
7.4.190.0000.00716.73
7.4.160.0100.00716.73
7.4.150.0120.00617.40
7.4.140.0120.00717.86
7.4.130.0100.00816.90
7.4.120.0120.00616.80
7.4.110.0030.01516.79
7.4.100.0140.00316.71
7.4.90.0180.00616.85
7.4.80.0090.01219.39
7.4.70.0120.00916.86
7.4.60.0090.00816.79
7.4.50.0060.00316.73
7.4.40.0070.00722.77
7.4.30.0090.00916.92
7.4.10.0100.00715.37
7.4.00.0120.00515.29
7.3.330.0050.00013.52
7.3.320.0000.00613.66
7.3.310.0050.00316.55
7.3.300.0070.00016.70
7.3.290.0040.01116.67
7.3.280.0090.01016.65
7.3.270.0100.00717.40
7.3.260.0050.01316.68
7.3.250.0070.01116.82
7.3.240.0080.01316.99
7.3.230.0090.00916.80
7.3.210.0090.00916.66
7.3.200.0170.00019.39
7.3.190.0110.00716.65
7.3.180.0080.01916.93
7.3.170.0060.01016.87
7.3.160.0090.00916.63
7.3.130.0150.00415.31
7.3.120.0040.01215.20
7.3.110.0100.00815.23
7.3.100.0020.01014.98
7.3.90.0090.00514.96
7.3.80.0030.01015.19
7.3.70.0070.00515.00
7.3.60.0080.00615.21
7.3.50.0040.01115.16
7.3.40.0070.01015.06
7.3.30.0100.00715.04
7.3.20.0040.00916.99
7.3.10.0070.00816.90
7.3.00.0040.01216.96
7.2.330.0030.01416.84
7.2.320.0070.01116.93
7.2.310.0100.01316.86
7.2.300.0040.01616.83
7.2.290.0000.01717.00
7.2.260.0030.01315.30
7.2.250.0060.00915.29
7.2.240.0040.01315.54
7.2.230.0140.00015.29
7.2.220.0050.00915.18
7.2.210.0080.00515.46
7.2.200.0120.00315.26
7.2.190.0080.00715.35
7.2.180.0050.01015.33
7.2.170.0100.00815.22
7.2.160.0060.01015.20
7.2.150.0000.01517.22
7.2.140.0060.00617.15
7.2.130.0070.00717.24
7.2.120.0030.00616.97
7.2.110.0080.00417.13
7.2.100.0070.00716.90
7.2.90.0040.01117.34
7.2.80.0090.00017.16
7.2.70.0060.01216.93
7.2.60.0120.00617.29
7.2.50.0060.00616.97
7.2.40.0030.00917.27
7.2.30.0100.00317.20
7.2.20.0090.00617.06
7.2.10.0060.00617.15
7.2.00.0050.00818.33
7.1.330.0040.01215.99
7.1.320.0030.01216.01
7.1.310.0070.00315.84
7.1.300.0060.00715.81
7.1.290.0000.01415.83
7.1.280.0060.01015.99
7.1.270.0030.00815.97
7.1.260.0090.00515.81
7.1.250.0060.00916.14
7.1.240.0030.00915.97
7.1.230.0040.01116.06
7.1.220.0030.01016.01
7.1.210.0040.01116.11
7.1.200.0030.00715.81
7.1.190.0120.00416.11
7.1.180.0070.01016.21
7.1.170.0040.00816.00
7.1.160.0100.00715.76
7.1.150.0040.01116.11
7.1.140.0040.01115.91
7.1.130.0090.00315.86
7.1.120.0030.01215.98
7.1.110.0060.00915.96
7.1.100.0060.00717.29
7.1.90.0060.00615.98
7.1.80.0030.01015.86
7.1.70.0050.00816.74
7.1.60.0060.00516.67
7.1.50.0110.00916.57
7.1.40.0000.01615.88
7.1.30.0170.00016.06
7.1.20.0070.00715.72
7.1.10.0040.01115.61
7.1.00.0050.04219.27
7.0.330.0130.00915.38
7.0.320.0130.00615.57
7.0.310.0140.00315.63
7.0.300.0060.00915.42
7.0.290.0100.00715.38
7.0.280.0070.01115.70
7.0.270.0070.01115.68
7.0.260.0080.00315.71
7.0.250.0070.00715.79
7.0.240.0160.00615.57
7.0.230.0090.00615.74
7.0.220.0060.01315.80
7.0.210.0030.01015.61
7.0.200.0070.00916.13
7.0.190.0070.01815.66
7.0.180.0120.00815.74
7.0.170.0080.00815.66
7.0.160.0100.00715.76
7.0.150.0100.00715.53
7.0.140.0090.03618.78
7.0.130.0110.00415.61
7.0.120.0170.00015.60
7.0.110.0140.01015.38
7.0.100.0030.01415.60
7.0.90.0030.01015.80
7.0.80.0150.03917.88
7.0.70.0270.03717.83
7.0.60.0060.04117.75
7.0.50.0310.04018.10
7.0.40.0100.04116.93
7.0.30.0100.02716.91
7.0.20.0060.03816.86
7.0.10.0110.03116.86
7.0.00.0060.04816.73
5.6.400.0100.00714.65
5.6.390.0000.01214.56
5.6.380.0090.00614.93
5.6.370.0100.01014.90
5.6.360.0030.01314.38
5.6.350.0040.01514.44
5.6.340.0110.00414.84
5.6.330.0000.02014.29
5.6.320.0140.00714.33
5.6.310.0070.00714.10
5.6.300.0030.01714.68
5.6.290.0070.01314.70
5.6.280.0140.03317.84
5.6.270.0130.00714.66
5.6.260.0070.00714.83
5.6.250.0030.01014.68
5.6.240.0070.01114.52
5.6.230.0070.02917.73
5.6.220.0080.04217.48
5.6.210.0050.05117.54
5.6.200.0100.04017.84
5.6.190.0080.02817.79
5.6.180.0080.04717.79
5.6.170.0060.04817.88
5.6.160.0050.05017.74
5.6.150.0120.02917.82
5.6.140.0130.04417.64
5.6.130.0090.03917.81
5.6.120.0070.04518.02
5.6.110.0050.03617.90
5.6.100.0100.02517.98
5.6.90.0070.03917.88
5.6.80.0140.03017.63
5.6.70.0040.02917.61
5.6.60.0030.03617.52
5.6.50.0210.03617.52
5.6.40.0080.03517.50
5.6.30.0090.04017.48
5.6.20.0110.02517.44
5.6.10.0130.03817.47
5.6.00.0080.04317.54
5.5.380.0080.00614.66
5.5.370.0050.04917.65
5.5.360.0050.02817.41
5.5.350.0100.02317.64
5.5.340.0050.02817.55
5.5.330.0080.02817.75
5.5.320.0090.03117.77
5.5.310.0160.04217.77
5.5.300.0050.04217.75
5.5.290.0080.03017.67
5.5.280.0150.04017.61
5.5.270.0070.04917.72
5.5.260.0040.03717.81
5.5.250.0120.04517.54
5.5.240.0120.03517.26
5.5.230.0080.03817.28
5.5.220.0050.04917.34
5.5.210.0150.03317.21
5.5.200.0090.04117.48
5.5.190.0090.03017.40
5.5.180.0060.04117.37
5.5.170.0170.00314.53
5.5.160.0070.03817.39
5.5.150.0070.04417.33
5.5.140.0150.02317.40
5.5.130.0070.04817.36
5.5.120.0100.02417.35
5.5.110.0050.03817.36
5.5.100.0100.02617.36
5.5.90.0080.02817.37
5.5.80.0100.03917.42
5.5.70.0080.02617.11
5.5.60.0070.04517.31
5.5.50.0070.04417.36
5.5.40.0080.03817.20
5.5.30.0030.04817.24
5.5.20.0170.02517.38
5.5.10.0130.02717.40
5.5.00.0030.03817.09
5.4.450.0100.04215.42
5.4.440.0070.02815.55
5.4.430.0050.03415.40
5.4.420.0090.03915.30
5.4.410.0070.02615.23
5.4.400.0100.02315.15
5.4.390.0120.03515.09
5.4.380.0050.04215.24
5.4.370.0090.03115.18
5.4.360.0050.03215.12
5.4.350.0080.02315.30
5.4.340.0050.04415.20
5.4.330.0070.00311.45
5.4.320.0100.04015.11
5.4.310.0090.04315.06
5.4.300.0080.03815.08
5.4.290.0070.03315.27
5.4.280.0030.04015.11
5.4.270.0100.03815.24
5.4.260.0170.02515.06
5.4.250.0060.03315.27
5.4.240.0120.03715.27
5.4.230.0030.04715.13
5.4.220.0070.04315.17
5.4.210.0110.03615.21
5.4.200.0130.03315.22
5.4.190.0050.04115.00
5.4.180.0080.04615.23
5.4.170.0070.03215.24
5.4.160.0170.03415.25
5.4.150.0070.04415.15
5.4.140.0120.04213.73
5.4.130.0060.02814.03
5.4.120.0090.03813.78
5.4.110.0050.04213.89
5.4.100.0060.04513.91
5.4.90.0090.04113.94
5.4.80.0090.03813.88
5.4.70.0080.02713.85
5.4.60.0100.03513.72
5.4.50.0050.02413.71
5.4.40.0020.05013.83
5.4.30.0060.04113.83
5.4.20.0060.02613.91
5.4.10.0140.03713.95
5.4.00.0080.03013.56
5.3.290.0140.03312.83
5.3.280.0050.04312.81
5.3.270.0080.03012.87
5.3.260.0120.04212.88
5.3.250.0080.04012.84
5.3.240.0070.03712.74
5.3.230.0080.03912.81
5.3.220.0070.04412.77
5.3.210.0100.04012.86
5.3.200.0030.04612.76
5.3.190.0070.04412.87
5.3.180.0080.04012.83
5.3.170.0100.03512.79
5.3.160.0070.03212.89
5.3.150.0050.02612.71
5.3.140.0080.03812.90
5.3.130.0090.04312.80
5.3.120.0070.02312.83
5.3.110.0050.04012.78
5.3.100.0070.04012.46
5.3.90.0080.03912.54
5.3.80.0140.02012.53
5.3.70.0080.04212.42
5.3.60.0070.03012.52
5.3.50.0070.04212.34
5.3.40.0070.04112.50
5.3.30.0090.04012.37
5.3.20.0050.04112.19
5.3.10.0050.03912.22
5.3.00.0110.03011.99
5.2.170.0000.04012.30
5.2.160.0000.04012.30
5.2.150.0030.06312.30
5.2.140.0000.04312.30
5.2.130.0100.05712.30
5.2.120.0030.06712.30
5.2.110.0070.03012.30
5.2.100.0030.04312.30
5.2.90.0070.06012.30
5.2.80.0030.06312.30
5.2.70.0100.05712.30
5.2.60.0030.06712.30
5.2.50.0030.03712.30
5.2.40.0030.06012.30
5.2.30.0030.05012.30
5.2.20.0000.06312.30
5.2.10.0030.05712.30
5.2.00.0070.04712.30
5.1.60.0000.03712.30
5.1.50.0030.05312.30
5.1.40.0100.05312.30
5.1.30.0030.05312.30
5.1.20.0070.04312.30
5.1.10.0070.05012.30
5.1.00.0100.05012.30
5.0.50.0030.03012.30
5.0.40.0000.03012.30
5.0.30.0000.06312.30
5.0.20.0000.03712.30
5.0.10.0030.03012.30
5.0.00.0070.05312.30
4.4.90.0100.03012.30
4.4.80.0070.02012.30
4.4.70.0030.03712.30
4.4.60.0070.03312.30
4.4.50.0030.02712.30
4.4.40.0030.03012.30
4.4.30.0000.02712.30
4.4.20.0000.03712.30
4.4.10.0030.03312.30
4.4.00.0030.05312.30
4.3.110.0030.03312.30
4.3.100.0000.03012.30
4.3.90.0030.02712.30
4.3.80.0100.02712.30
4.3.70.0000.02312.30
4.3.60.0000.02312.30
4.3.50.0070.01312.30
4.3.40.0070.04712.30
4.3.30.0000.03712.30
4.3.20.0030.03712.30
4.3.10.0000.03712.30
4.3.00.0030.03312.30

preferences:
47.5 ms | 400 KiB | 5 Q