3v4l.org

run code in 300+ PHP versions simultaneously
<?php require_once('config.php'); require_once('login.php'); if($_SESSION['admin']!=='true'){ header("Location: members.php?msg=Ehm, ehm. You are not admin or you logged out (if so, please log in again)."); echo "You are not admin so please behave yourself :)"; } elseif($_SESSION['admin']=='true'){ if($_GET['action']=='addresult'){ if($_GET['user']){ $user = mysql_real_escape_string($_GET['user']); if($_POST){ if($_POST['subject1']){ $subject=$_POST['subject1']; $marks=$_POST['marks1']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } if($_POST['subject2']){ $subject=$_POST['subject2']; $marks=$_POST['marks2']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } if($_POST['subject3']){ $subject=$_POST['subject3']; $marks=$_POST['marks3']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } if($_POST['subject4']){ $subject=$_POST['subject4']; $marks=$_POST['marks4']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } if($_POST['subject5']){ $subject=$_POST['subject5']; $marks=$_POST['marks5']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } if($_POST['subject6']){ $subject=$_POST['subject6']; $marks=$_POST['marks6']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } if($_POST['subject7']){ $subject=$_POST['subject7']; $marks=$_POST['marks7']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } if($_POST['subject8']){ $subject=$_POST['subject8']; $marks=$_POST['marks8']; mysql_query("INERT INTO $tbl2 (user, subject, marks) VALUES ('$user', '$subject', '$marks'") or die(mysql_error()); } echo "Subject and marks added. Add more if you want!"; } echo "<style>.admin { display:none; } .back { display: block !important; }</style><br />"; echo '<form method="POST" action="">'; for ($i = 1; $i <= 8; $i++) { echo '<div style="border:1px solid #666;">Subject: <input type="text" name="subject'.$i.'" id="subject'.$i.'" placeholder="Subject name" /><br /> Marks: <input type="text" name="marks'.$i.'" id="marks'.$i.'" placeholder="Marks gained" /></div>'; } echo '<input type="submit" value="Add" /></form>'; } } elseif($_GET['action']=='updateresult'){ if($_GET['user']){ if($_POST){ foreach ($_POST as $name => $val){ if($name=='submit'){ break; } //echo htmlspecialchars($name . ': ' . $val) . "\n"; mysql_query("UPDATE $tbl2 SET marks='$val' WHERE subject='$name'") or die(mysql_error()); } echo "<style>.admin { display:none; } .back { display: block !important; }</style> <br /> Record Updated!"; } else { $user = $_GET['user']; // profile name. $user = mysql_real_escape_string($user); $qr = mysql_query("SELECT * FROM $tbl2 WHERE user_name='$user'"); $rr = mysql_num_rows($qr); if($rr=='0'){ echo "<style>.admin { display:none; } .back { display: block !important; }</style> <br /> No subjects added. You may need to add subjects first so <a href='?action=addresult&user=".$user."'>click here to do so</a>"; } else { echo 'Total subjects: '.$rr; echo '<br /> <form method="POST" action="" name="form21">'; while($s=mysql_fetch_array($qr)){ $subject=$s['subject']; $marks=$s['marks']; echo "<div style='border:1px solid #666;'> Subject: ".$subject."<br/> Marks: <input name='".$subject."' type='text' id='".$subject."' value='".$marks."' /></div><br/>"; } echo '<input type="submit" value="Update" /></form>'; } } } } elseif($_GET['action']=='updateuser'){ if($_GET['user']){ $user = $_GET['user']; // profile name. $user = mysql_real_escape_string($user); if($_POST){ $pwd = mysql_real_escape_string($_POST['upassword']); $fullname = mysql_real_escape_string($_POST['ufullname']); $session = mysql_real_escape_string($_POST['usession']); $class = mysql_real_escape_string($_POST['uclass']); $campus = mysql_real_escape_string($_POST['ucampus']); $fine = mysql_real_escape_string($_POST['ufine']); $fee = mysql_real_escape_string($_POST['ufee']); $attendance = mysql_real_escape_string($_POST['uattendance']); $result_last = mysql_real_escape_string($_POST['uresult_last']); $fone = mysql_real_escape_string($_POST['ufone']); $addr = mysql_real_escape_string($_POST['uaddr']); $email = mysql_real_escape_string($_POST['uemail']); mysql_query("UPDATE $tbl_name SET fone='$fone', addr='$addr', email='$email', password='$pwd', fullname='$fullname', session='$session', class='$class', campus='$campus', fine='$fine', fee='$fee', attendance='$attendance', resul_last='$result_last' WHERE user_name='$user'") or die(mysql_error()); echo "<style>.admin { display:none; } .back { display: block !important; }</style> <br /> User has been updated!"; } else { $sql22="SELECT * FROM $tbl_name WHERE user_name='$user'"; $result22=mysql_query($sql22) or die(mysql_error()); $user22=mysql_fetch_array($result22); ?> <style>.admin { display:none; } .back { display: block !important; }</style> <form name="form3" method="post" action=""> <strong>Edit a user </strong><br/><br/> Fullname: <input name="ufullname" type="text" id="ufullname" value="<?=$user22['fullname']?>" /><br/> Password: <input name="upassword" type="password" id="upassword" value="<?=$user22['password']?>" /><br/> <strong> If student:</strong><br/> Session: <input name="usession" type="text" id="usession" value="<?=$user22['session']?>" /><br/> Class: <input name="uclass" type="text" id="uclass" value="<?=$user22['class']?>" /><br/> Campus: <input name="ucampus" type="text" id="ucampus" value="<?=$user22['campus']?>" /><br/> Fine: <input name="ufine" type="text" id="ufine" value="<?=$user22['fine']?>" /><br/> Fee status: <input name="ufee" type="text" id="ufee" value="<?=$user22['fee']?>" /><br/> Attendance: <input name="uattendance" type="text" id="uattendance" value="<?=$user22['attendance']?>" /><br/> Last month result: <input name="uresult_last" type="text" id="uresult_last" value="<?=$user22['resul_last']?>" /><br/> Phone: <input name="ufone" type="text" id="ufone" value="<?=$user22['fone']?>" /><br/> Address: <input name="uaddr" type="text" id="uaddr" value="<?=$user22['addr']?>" /><br/> Email: <input name="uemail" type="text" id="uemail" value="<?=$user22['email']?>" /><br/> <br/><input type="submit" name="Submit" value="Update" /></form> <?php } } } elseif($_GET['action']=='logout'){ unset($_SESSION['admin']); header("Location: index.php?msg_gr=You have been logged out of the admin panel!"); } elseif($_GET['action']=='adduser'){ if($_POST['user_name_add']){ $user_name = mysql_real_escape_string($_POST['user_name_add']); $pwd = mysql_real_escape_string($_POST['password']); $fullname = mysql_real_escape_string($_POST['fullname']); $rank = mysql_real_escape_string($_POST['rank']); $session = mysql_real_escape_string($_POST['session']); $class = mysql_real_escape_string($_POST['class']); $campus = mysql_real_escape_string($_POST['campus']); $fine = mysql_real_escape_string($_POST['fine']); $fee = mysql_real_escape_string($_POST['fee']); $attendance = mysql_real_escape_string($_POST['attendance']); $result_last = mysql_real_escape_string($_POST['result_last']); if($rank=='1'){ $rank='teacher'; } else { $rank='student'; } $insert_query = "INSERT INTO $tbl_name (user_name, fullname, password, session, class, campus, fine, fee, attendance, resul_last) VALUES ('$user_name', '$fullname', '$pwd', '$rank','$session', '$class', '$campus', '$fine', '$fee', '$attendance', '$result_last')"; $insert_result = mysql_query($insert_query) or die(mysql_error()); $responsemsg = "User has been added!"; echo '<style>.admin { display:none; } .back { display: block !important; }</style>'; } else { ?> <style>.admin { display:none; } .back { display: block !important; }</style> <form name="form2" method="post" action="admin.php?action=adduser"> <strong>Add a user </strong><br/><br/> Fullname: <input name="fullname" type="text" id="fullname" /><br/> Username: <input name="user_name_add" type="text" id="user_name_add" /><br/> Password: <input name="password" type="password" id="password" /><br/> Rank: <input type="radio" value="2" name="rank" id="rank" /> Student <input type="radio" value="1" name="rank" id="rank" /> Teacher<br /> <strong> If student:</strong><br/> Session: <input name="session" type="text" id="session" /><br/> Class: <input name="class" type="text" id="class" /><br/> Campus: <input name="campus" type="text" id="campus" /><br/> Fine: <input name="fine" type="text" id="fine" /><br/> Fee status: <input name="fee" type="text" id="fee" /><br/> Attendance: <input name="attendance" type="text" id="attendance" /><br/> Last month result: <input name="result_last" type="text" id="result_last" /><br/> <br/><input type="submit" name="Submit" value="Add" /></form> <?php } } elseif($_GET['action']=='deleteuser'){ if($_GET['user']){ $user = $_GET['user']; // profile name. $user = mysql_real_escape_string($user); $query5 = "DELETE FROM $tbl_name WHERE user_name = '$user'"; $result = mysql_query( $query5 ) or die(mysql_error()); $responsemsg = "User has been deleted!"; } else { $qfo = "SELECT * FROM $tbl_name WHERE (rank = 'teacher' OR rank = 'student')"; $fo = mysql_query($qfo) or die(mysql_error()); $rowfo = mysql_num_rows($fo); echo "<style>.admin { display:none; } .back { display: block !important; }</style>"; if ($rowfo == 0 ) { // no user echo "No users."; } else { while($users = mysql_fetch_array($fo)){ $user_name = $users['user_name']; $fullname = $users['fullname']; $rank = $users['rank']; $uid = $users['id']; $session = $users['session']; $class = $users['class']; echo "<div> ".$uid." ~ ".$fullname." (".$user_name.") of Class ".$class." and session ".$session." - ".$rank." | <a href='?action=deleteuser&user=".$user_name."'>Delete</a> - <a href='?action=viewpwd&user=".$user_name."'>View password</a> - <a href='?action=updateuser&user=".$user_name."'>Update profile</a> - <a href='?action=updateresult&user=".$user_name."'>Update result</a></div>"; } } } } elseif($_GET['action']=='viewpwd') { echo '<style>.admin { display:none; } .back { display: block !important; }</style>'; if($_GET['user']){ $user = $_GET['user']; // profile name. $user = mysql_real_escape_string($user); $qfo = "SELECT * FROM $tbl_name WHERE user_name = '$user' AND (rank = 'teacher' OR rank = 'student')"; $fo = mysql_query($qfo) or die(mysql_error()); $foundu = mysql_num_rows($fo); if($foundu=='0'){ echo "No such user found!"; } else { $userinfo = mysql_fetch_array($fo); $pwd = $userinfo['password']; echo "Password is: <b>".$pwd."</b>"; } } } ?> <?php if (isSet($_GET['msg'])){ echo "<span id='postmsg'>".htmlentities($_GET['msg'])."</span><br/>"; } ?> <?php if (isSet($responsemsg)){ echo "<span id='postmsg'>".htmlentities($responsemsg)."</span><br/>"; } ?> <div class="admin"> Welcome, <?=$_SESSION['fullname']?><br /> What you want to do? <br /><br /> <a href="?action=adduser&noredirect=1">Add a user</a><br /> <a href="?action=deleteuser&noredirect=1">View a user</a><br /> <a href="?action=logout&noredirect=1">Logout from admin panel</a><br /> </div> <div class="back" style="display:none"> <a href="admin.php" >Go back</a><br /> </div> <?php } ?>

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.0130.00916.88
8.3.50.0130.00522.01
8.3.40.0100.00619.39
8.3.30.0070.00719.17
8.3.20.0090.00020.46
8.3.10.0080.00023.43
8.3.00.0060.00319.30
8.2.180.0030.01316.88
8.2.170.0060.00922.96
8.2.160.0140.00020.60
8.2.150.0000.00824.18
8.2.140.0040.00424.66
8.2.130.0000.00826.16
8.2.120.0000.00820.82
8.2.110.0060.00322.25
8.2.100.0130.00318.16
8.2.90.0080.00018.22
8.2.80.0040.00418.00
8.2.70.0090.00018.00
8.2.60.0060.00318.18
8.2.50.0000.00918.07
8.2.40.0000.00821.00
8.2.30.0000.00818.36
8.2.20.0050.00317.86
8.2.10.0080.00018.25
8.2.00.0080.00018.04
8.1.280.0100.01025.92
8.1.270.0050.00323.91
8.1.260.0050.00326.35
8.1.250.0040.00428.09
8.1.240.0050.00522.50
8.1.230.0090.00322.59
8.1.220.0000.00817.93
8.1.210.0040.00419.16
8.1.200.0060.00317.48
8.1.190.0000.00817.60
8.1.180.0070.00318.10
8.1.170.0060.00318.71
8.1.160.0040.00422.30
8.1.150.0040.00418.77
8.1.140.0060.00317.68
8.1.130.0000.00717.88
8.1.120.0030.00517.54
8.1.110.0000.00817.52
8.1.100.0050.00217.67
8.1.90.0080.00017.54
8.1.80.0000.00817.53
8.1.70.0000.00717.54
8.1.60.0000.00817.82
8.1.50.0000.00817.77
8.1.40.0060.00317.72
8.1.30.0000.00817.77
8.1.20.0050.00317.71
8.1.10.0000.00817.81
8.1.00.0040.00417.81
8.0.300.0050.00320.23
8.0.290.0040.00417.13
8.0.280.0040.00418.74
8.0.270.0000.00717.53
8.0.260.0000.00717.56
8.0.250.0030.00317.33
8.0.240.0000.00817.32
8.0.230.0030.00617.25
8.0.220.0000.00817.25
8.0.210.0000.00817.15
8.0.200.0040.00417.30
8.0.190.0000.00817.29
8.0.180.0040.00417.25
8.0.170.0080.00017.34
8.0.160.0040.00417.14
8.0.150.0050.00317.13
8.0.140.0040.00417.21
8.0.130.0060.00313.76
8.0.120.0030.00517.26
8.0.110.0050.00317.28
8.0.100.0000.00817.15
8.0.90.0080.00017.16
8.0.80.0070.01117.23
8.0.70.0050.00317.20
8.0.60.0000.00817.23
8.0.50.0040.00417.21
8.0.30.0090.01017.34
8.0.20.0060.01317.47
8.0.10.0040.00417.21
8.0.00.0100.01116.86
7.4.330.0000.00515.10
7.4.320.0030.00316.73
7.4.300.0030.00316.73
7.4.290.0040.00416.60
7.4.280.0070.00016.77
7.4.270.0040.00416.65
7.4.260.0070.00316.82
7.4.250.0040.00416.72
7.4.240.0030.00516.67
7.4.230.0040.00416.87
7.4.220.0090.00916.80
7.4.210.0070.00716.91
7.4.200.0000.00716.59
7.4.190.0040.00416.76
7.4.160.0000.01616.64
7.4.150.0120.00617.40
7.4.140.0110.01517.86
7.4.130.0090.00816.77
7.4.120.0100.00916.78
7.4.110.0110.00716.67
7.4.100.0150.00416.78
7.4.90.0030.01616.78
7.4.80.0090.00919.39
7.4.70.0000.01716.67
7.4.60.0110.00716.51
7.4.50.0000.00916.63
7.4.40.0080.00816.46
7.4.30.0060.01616.69
7.4.00.0020.01115.14
7.3.330.0000.00613.22
7.3.320.0040.00413.41
7.3.310.0040.00416.50
7.3.300.0000.00716.35
7.3.290.0040.01016.53
7.3.280.0070.01216.43
7.3.270.0030.01417.40
7.3.260.0100.01016.52
7.3.250.0130.00616.68
7.3.240.0150.00316.50
7.3.230.0100.00716.47
7.3.210.0130.00716.76
7.3.200.0190.00619.39
7.3.190.0110.00716.68
7.3.180.0070.01016.51
7.3.170.0000.01616.51
7.3.160.0110.00516.66
7.3.120.0080.01014.90
7.3.110.0070.01115.08
7.3.100.0030.00615.14
7.3.90.0070.00715.08
7.3.80.0030.01314.97
7.3.70.0060.00614.95
7.3.60.0000.01115.14
7.3.50.0000.01614.99
7.3.40.0120.00314.75
7.3.30.0040.01115.04
7.3.20.0050.00516.26
7.3.10.0090.00616.27
7.3.00.0040.01316.53
7.2.330.0120.00916.74
7.2.320.0060.01216.71
7.2.310.0070.01116.64
7.2.300.0100.00716.79
7.2.290.0090.00916.89
7.2.250.0070.01015.04
7.2.240.0030.01615.05
7.2.230.0070.00715.08
7.2.220.0100.00615.28
7.2.210.0100.00715.09
7.2.200.0030.01215.27
7.2.190.0100.00314.95
7.2.180.0090.00915.18
7.2.170.0000.01214.90
7.2.130.0060.00916.84
7.2.120.0040.00816.64
7.2.110.0000.00916.54
7.2.100.0080.00616.68
7.2.90.0030.01316.84
7.2.80.0060.00916.73
7.2.70.0030.00716.77
7.2.60.0110.00316.68
7.2.50.0030.01016.56
7.2.40.0090.00316.87
7.2.30.0030.01016.84
7.2.20.0040.00816.93
7.2.10.0120.00616.46
7.2.00.0050.00817.87
7.1.330.0030.00915.68
7.1.320.0040.00415.51
7.1.310.0090.00615.32
7.1.300.0090.00315.54
7.1.290.0090.00615.54
7.1.280.0000.01715.33
7.1.270.0040.01115.44
7.1.260.0040.01115.85
7.1.250.0000.01315.67
7.1.240.0050.00515.74
7.1.230.0120.00315.65
7.1.220.0030.00915.53
7.1.210.0090.00615.69
7.1.200.0080.00915.68
7.1.190.0060.00615.54
7.1.180.0030.00715.79
7.1.170.0000.01515.59
7.1.160.0030.00915.38
7.1.150.0060.00315.83
7.1.140.0040.00815.57
7.1.130.0040.00715.82
7.1.120.0040.00915.49
7.1.110.0050.00515.64
7.1.100.0060.00616.75
7.1.90.0060.00315.73
7.1.80.0000.01615.57
7.1.70.0080.00116.29
7.1.60.0090.00917.41
7.1.50.0050.01015.99
7.1.40.0040.01115.84
7.1.30.0030.00715.70
7.1.20.0030.00715.52
7.1.10.0030.00915.62
7.1.00.0020.04419.13
7.0.330.0110.00815.05
7.0.320.0000.01114.99
7.0.310.0000.01215.04
7.0.300.0080.00315.38
7.0.290.0050.00515.02
7.0.280.0070.00314.97
7.0.270.0090.00615.04
7.0.260.0100.00014.93
7.0.250.0090.00014.98
7.0.240.0040.01115.23
7.0.230.0070.00715.38
7.0.220.0040.00714.91
7.0.210.0000.00815.09
7.0.200.0020.00815.99
7.0.190.0030.00715.34
7.0.180.0090.00615.31
7.0.170.0070.00715.22
7.0.160.0030.00615.00
7.0.150.0000.01115.26
7.0.140.0040.04218.58
7.0.130.0040.00815.26
7.0.120.0060.00615.17
7.0.110.0070.00715.24
7.0.100.0110.03917.58
7.0.90.0080.02317.63
7.0.80.0060.03617.70
7.0.70.0060.04517.63
7.0.60.0050.02217.52
7.0.50.0050.02617.88
7.0.40.0020.03016.71
7.0.30.0040.02916.79
7.0.20.0040.02516.70
7.0.10.0090.02816.67
7.0.00.0070.02216.68
5.6.380.0060.00614.21
5.6.370.0030.00614.51
5.6.360.0000.00914.03
5.6.350.0060.00614.20
5.6.340.0030.00714.03
5.6.330.0040.00814.38
5.6.320.0040.00814.08
5.6.310.0100.00314.23
5.6.300.0080.00313.78
5.6.290.0030.01014.22
5.6.280.0050.03817.60
5.6.270.0100.00714.36
5.6.260.0030.00713.86
5.6.250.0050.02617.45
5.6.240.0050.02517.60
5.6.230.0020.02817.40
5.6.220.0090.02017.51
5.6.210.0030.02617.44
5.6.200.0050.02317.61
5.6.190.0080.02017.48
5.6.180.0100.02017.73
5.6.170.0050.02317.63
5.6.160.0070.02517.64
5.6.150.0090.02117.49
5.6.140.0090.02317.69
5.6.130.0050.04017.62
5.6.120.0080.02417.63
5.6.110.0030.02217.60
5.6.100.0070.01717.73
5.6.90.0150.03317.71
5.6.80.0110.02117.11
5.6.70.0070.04117.22
5.6.60.0090.03817.26
5.6.50.0050.04417.45
5.6.40.0150.03717.25
5.6.30.0060.04317.39
5.6.20.0050.04417.29
5.6.10.0090.03517.22
5.6.00.0070.03817.34
5.5.380.0020.02415.69
5.5.370.0070.02715.76
5.5.360.0000.03015.70
5.5.350.0030.02215.71
5.5.340.0020.05015.98
5.5.330.0050.03215.97
5.5.320.0050.02015.92
5.5.310.0030.02415.90
5.5.300.0050.03915.94
5.5.290.0050.02515.90
5.5.280.0050.02515.82
5.5.270.0050.02015.94
5.5.260.0060.02015.90
5.5.250.0080.02115.79
5.5.240.0030.02115.61
5.5.230.0030.04915.64
5.5.220.0040.04115.63
5.5.210.0070.04115.64
5.5.200.0080.04215.61
5.5.190.0050.04415.57
5.5.180.0080.04015.62
5.5.170.0000.00810.90
5.5.160.0030.04215.50
5.5.150.0030.03815.68
5.5.140.0070.02215.54
5.5.130.0090.02315.57
5.5.120.0150.03715.54
5.5.110.0060.03315.59
5.5.100.0100.04015.54
5.5.90.0050.03415.54
5.5.80.0100.04015.56
5.5.70.0080.03915.53
5.5.60.0070.04015.53
5.5.50.0030.04215.55
5.5.40.0070.03715.54
5.5.30.0080.03315.57
5.5.20.0070.02515.46
5.5.10.0060.04115.52
5.5.00.0050.04215.47
5.4.450.0030.02315.10
5.4.440.0050.02015.14
5.4.430.0040.03115.20
5.4.420.0020.02115.20
5.4.410.0040.02915.07
5.4.400.0050.03914.95
5.4.390.0100.03215.04
5.4.380.0050.03714.99
5.4.370.0080.03814.94
5.4.360.0050.04014.99
5.4.350.0070.02814.98
5.4.340.0080.02514.91
5.4.330.0030.00610.95
5.4.320.0090.02314.91
5.4.310.0090.03714.99
5.4.300.0050.03515.02
5.4.290.0000.03014.95
5.4.280.0070.04114.88
5.4.270.0100.03314.94
5.4.260.0100.04014.96
5.4.250.0060.03814.87
5.4.240.0050.04014.88
5.4.230.0080.03514.91
5.4.220.0020.02814.91
5.4.210.0050.04314.95
5.4.200.0080.02614.99
5.4.190.0080.03314.96
5.4.180.0050.03814.98
5.4.170.0030.02715.02
5.4.160.0070.04014.93
5.4.150.0030.04714.93
5.4.140.0110.03513.64
5.4.130.0080.03513.59
5.4.120.0060.03513.63
5.4.110.0050.02413.66
5.4.100.0030.04213.71
5.4.90.0130.03513.66
5.4.80.0120.03313.60
5.4.70.0050.03213.65
5.4.60.0050.04213.59
5.4.50.0070.03813.59
5.4.40.0070.03713.57
5.4.30.0050.04013.63
5.4.20.0080.03513.60
5.4.10.0070.03713.65
5.4.00.0110.03513.36
5.3.290.0100.03512.76
5.3.280.0030.04312.80
5.3.270.0060.04212.81
5.3.260.0030.04512.80
5.3.250.0080.03612.81
5.3.240.0070.03912.72
5.3.230.0100.03512.74
5.3.220.0050.04012.72
5.3.210.0050.04012.70
5.3.200.0110.03512.72
5.3.190.0110.03512.76
5.3.180.0090.03912.79
5.3.170.0020.04312.77
5.3.160.0020.04112.76
5.3.150.0030.04012.78
5.3.140.0030.04212.77
5.3.130.0050.04212.78
5.3.120.0080.03012.78
5.3.110.0050.04012.74
5.3.100.0020.03912.48
5.3.90.0050.04012.51
5.3.80.0030.04212.52
5.3.70.0050.02612.51
5.3.60.0070.03812.49
5.3.50.0070.03512.41
5.3.40.0080.03012.36
5.3.30.0030.03112.39
5.3.20.0080.03712.34
5.3.10.0170.03112.34
5.3.00.0050.03812.34

preferences:
48.79 ms | 401 KiB | 5 Q