3v4l.org

run code in 300+ PHP versions simultaneously
<?php require(INCLUDE_URL.SEP.'phpmailer/class.phpmailer.php'); include_once("popup.php"); if(!xml2php("workorder")) { $smarty->assign('error_msg',"Error in language file"); } $login_id = $_SESSION['login_id']; $smarty->assign('login_id', $login_id); $wo_id = $VAR['wo_id']; $smarty->assign('wo_id', $wo_id); $company = $VAR['company']; $smarty->assign('company', $company); $customer_id = $VAR['customer_id']; $smarty->assign('customer_id', $customer_id); //pass message type from url $msg_type = $VAR['msg_type']; $smarty->assign('msg_type', $msg_type); $smarty->assign('msg_id', $VAR['msg_id']); $rep_date=date('D, d M Y - h:i A'); //set template for individual messages $eml_template=<<<EOF <table align="center" cellpadding="0" cellspacing="0" style="margin: 0px auto; text-align: left; color: rgb(153, 153, 153); line-height: 15pt; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; border-collapse: collapse;" width="100%"> <tbody> <tr> <td bgcolor="#ffffff" valign="top">&nbsp;</td> </tr> <tr> <td bgcolor="#ffffff" style="padding: 15px 20px; color: rgb(102, 102, 102); line-height: 15pt;"> <hr style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; border:1px solid #f3f3f3"/> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;"><input alt="" src="[[employee_pic]]" style="width: 50px; height: 50px; float: left; margin: 0px 10px; border-width: 1px; border-style: solid;" type="image" /><span style="font-family:lucida sans unicode,lucida grande,sans-serif;"><span style="font-size:14px;">[[fname]] [[lname]] - [[date]] @ [[time]]</span></span></p> <div> <div style="border: 0px solid rgb(255, 255, 255); padding: 5px 10px; margin-left: 70px; margin-top: -10px; background-image: initial; background-attachment: initial; background-color: rgb(255, 255, 255); background-size: initial; background-origin: initial; background-clip: initial; background-position: initial; background-repeat: initial;"> <p><span style="font-family: 'lucida sans unicode', 'lucida grande', sans-serif; font-size: 14px; color: rgb(102, 102, 102); line-height: 15px; background-color: rgb(255, 255, 255);"></span><span style="color: rgb(102, 102, 102); line-height: 15px; background-color: rgb(255, 255, 255);"><font face="arial, helvetica, sans-serif">[[msg]]</font></span></p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;">&nbsp;</p> </div> </div> <hr style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; border:1px solid #f3f3f3"/> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px;">&nbsp;</p> </td> </tr> <tr> <td height="20" style="line-height: 2px; font-size: 2px;"><img alt="" border="0" height="20" src="http://computergeeksrus.com/email/images/shadow620.gif" style="display: block;" width="100%" /></td> </tr> </tbody> </table> EOF; /* Get Ticket info*/ $q = "SELECT ".PRFX."TABLE_WORK_ORDER.*, ".PRFX."TABLE_CUSTOMER.* FROM ".PRFX."TABLE_WORK_ORDER LEFT JOIN ".PRFX."TABLE_CUSTOMER ON ".PRFX."TABLE_WORK_ORDER.CUSTOMER_ID = ".PRFX."TABLE_CUSTOMER.CUSTOMER_ID WHERE WORK_ORDER_ID=".$db->qstr($wo_id); if(!$rs = $db->execute($q)){ force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } else { $email_info = $rs->GetArray(); } $smarty->assign('email_info', $email_info); /* Get Company Email Address*/ $q = "SELECT COMPANY_EMAIL FROM ".PRFX."TABLE_COMPANY"; if(!$rs = $db->execute($q)) { force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } $company_email = $rs->fields['COMPANY_EMAIL']; $smarty->assign('company_email', $company_email); if($VAR['msg_type']!='new' && ($VAR['msg_type']=='reply' || $VAR['msg_type']=='forward')){ if(ctype_digit($VAR['msg_id'])){ $q = "SELECT MSG FROM ".PRFX."TABLE_WORK_ORDER_MESSAGE WHERE MSG_WORK_ORDER_ID='$wo_id' AND MSG_ID='".$VAR['msg_id']."' LIMIT 1"; } else { $q = "SELECT MSG FROM ".PRFX."TABLE_WORK_ORDER_MESSAGE WHERE MSG_WORK_ORDER_ID='$wo_id' ORDER BY MSG_ID DESC"; } if(!$rs = $db->execute($q)){ force_page('core', 'error&error_msg=Could not get Messages'); exit; } else { //$ticket_message= $rs->fields['MSG']; $ticket_message = $rs->GetArray(); } $all_messages=NULL; //loop messages foreach ($ticket_message as $m) { $this_msg=str_replace('[[msg]]', $m['MSG'], $eml_template); $this_msg=str_replace('[[employee_pic]]', get_employee_profile_pic($login_id), $this_msg); $this_msg=str_replace('[[date]]', strtotime($m['MSG_CREATED_ON']), $this_msg); $this_msg=str_replace('@ [[time]]', '', $this_msg); $all_messages.=$this_msg; } } elseif($VAR['msg_type']=='new'){ $all_messages=str_replace('[[msg]]', $VAR['ticket_msg'], $eml_template); $all_messages=str_replace('[[employee_pic]]', get_employee_profile_pic($login_id), $all_messages); $all_messages=str_replace('[[date]]', str_replace(" - ", " @ ", $rep_date), $all_messages); } if($VAR['msg_type']=='forward'){ $smarty->assign('message_content', "<br/><br/><br/><div style='text-align:center;color:#999;'>----FORWARDED EMAIL----</div><br/>".$all_messages); } /*Update Ticket message*/ if(isset($_POST['send_email'])) { //Remove Extra Slashes caused by Magic Quotes $msg = $VAR['ticket_msg']; $clean_msg = preg_replace("/<p[^>]*?>/", "", $msg); $clean_msg = str_replace("</p>", "<br />", $clean_msg); //$description_string2=("<br/><hr><u>Replied On $rep_date by $login </u><br/>$description_string"); $sql = "INSERT INTO ".PRFX."TABLE_WORK_ORDER_MESSAGE SET MSG_WORK_ORDER_ID =".$db->qstr($wo_id).", MSG_CUSTOMER_ID =".$db->qstr($customer_id).", MSG_SOURCE =". $db->qstr('System').", MSG =". $db->qstr($clean_msg).", MSG_EMPLOYEE_ID =". $db->qstr($login_id); if(!$result = $db->Execute($sql)) { force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } /*Get Full Description to send to Email*/ /*$sql = mysql_query("SELECT MSG FROM ".PRFX."TABLE_WORK_ORDER_MESSAGE WHERE MSG_WORK_ORDER_ID='$wo_id' ORDER BY MSG_ID DESC"); $sql=mysql_fetch_array($sql); //$ticket_message=$sql['MSG']; */ /*Send the email*/ $emailto=$VAR["email_to"]; $email_from="$company_email"; $email_subject=$VAR["email_subject"]; $html=$all_messages; $email_priority=$VAR["email_priority"]; $email_cc=$VAR["email_cc"]; $subject = "$email_subject"; $mailer = "$email_from"; $headers = "From: $mailer \r\n"; $headers .= "Reply-To: $mailer\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-Type: text/html; charset=ISO-8859-1\r\n"; $headers .= "Importance: $email_priority\r\n"; $message = '<html><head> tyle type="text/css">body { margin:0; padding:0; background-color:#eeeeee; color:#999999; font-family:Arial, Helvetica, sans-serif; font-size:12px; -webkit-text-size-adjust: none; } h1, h2, h3, h4, h5, h6 { color:#39434d !important; margin-bottom:10px !important; } a, a:link, a:visited { color:#777777; text-decoration:none; border-bottom:1px #777777 dotted; } a:hover, a:active { text-decoration:none; color:#0f79aa !important; border-bottom:1px #0f79aa dotted !important; } p { line-height:15px; } img { border:0; } /*Hotmail and Yahoo specific code*/ .ReadMsgBody { width: 100%;} .ExternalClass {width: 100%;} .yshortcuts { color: #999999 } .yshortcuts a span { color: #777777 } </style> </head> <body style="background:#ffffff"> <table align="center" cellpadding="0" cellspacing="0" id="container" style="margin: 0px; padding: 0px; width: 100%; background-color: rgb(238, 238, 238);"><!-- Start of main container --> <tbody> <tr> <td style="padding: 0px 20px;"> '; $message .= $html; $message .= ' <tr> <td bgcolor="#ffffff" style="padding: 15px 20px; color: rgb(51, 51, 51); line-height: 15pt; font-family: Arial, Helvetica, sans-serif; font-size: 13px; border-top-color: rgb(235, 235, 235); border-top-width: 1px; border-top-style: solid;"> <p style="text-align: center;"><span style="color: rgb(169, 169, 169);"><span style="font-family: comic sans ms,cursive;">Thank you for choosing ComputerGeeksrus. Trust, Integrity and your best Interest first!&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></p> </td> </tr> <!--Start of footer container--> <table align="center" cellpadding="0" cellspacing="0" style="margin: 0px auto; text-align: left; color: rgb(153, 153, 153); line-height: 15pt; font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; border-collapse: collapse;" width="100%"> <tbody> <tr> </tr> <tr> </tr> </tbody> </table> </td> </tr> </tbody> </table> </body></html>'; $headers .= "Cc: $email_cc \r\n"; /* mail($emailto, $subject, $message, $headers); */ $email = new PHPMailer(); $email->From = $email_from; $email->FromName = $mailer; $email->addReplyTo($email_from); $email->addCC($email_cc); $email->Subject = $subject; $email->Body = $message; $email->AddAddress( $emailto ); $email->isHTML(true); if($email_priority=="Medium") $email->Priority = 3; if($email_priority=="High") $email->Priority = 1; if($email_priority=="Low") $email->Priority = 5; $email->AddCustomHeader("X-MSMail-Priority: $email_priority"); $email->AddCustomHeader("Importance: $email_priority"); if(count($VAR['add_attachments'])>0){ $attachments_select="('".implode("', '", $VAR['add_attachments'])."')"; //select all attachments $q = "SELECT * FROM ".PRFX."TABLE_WORK_ORDER_ATTACHMENTS WHERE `WO_ID`=".$db->qstr($wo_id)." AND `ATTACHMENT_ID` IN $attachments_select ORDER BY `ATTACHMENT_ID` DESC"; if(!$rs = $db->execute($q)) { force_page('core', 'error&error_msg=MySQL Error: '.$db->ErrorMsg().'&menu=1&type=database'); exit; } $attachments = $rs->GetArray(); foreach($attachments as $a){ $file=$a['WO_ID']."_".$a['ATTACHMENT_NUMBER']."_".$a['ATTACHMENT_FILE']; $email->addAttachment(FILE_ROOT.'upload/message_store/'.$file, $file); } } if(!$email->send()) { force_page('core', 'error&error_msg=Mail error: '.$email->ErrorInfo.'&menu=1'); exit(); } else { force_page('workorder', 'view&wo_id='.$wo_id.'&customer_id='.$customer_id.'&company_id='.$company_id.'&page_title=Ticket# '.$wo_id.''); exit(); } } $add_attachments=NULL; foreach ($VAR['add_attachments'] as $a){ $add_attachments.="<input type='hidden' name='add_attachments[]' value='$a'/>"; } $smarty->assign('add_attachments', $add_attachments); $smarty->display('workorder'.SEP.'send_email.tpl'); ?>

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.0150.00418.95
8.3.30.0120.00318.98
8.3.20.0030.00620.37
8.3.10.0030.00623.39
8.3.00.0000.01117.75
8.2.170.0110.00422.96
8.2.160.0100.00320.47
8.2.150.0030.00524.18
8.2.140.0030.00524.66
8.2.130.0070.00026.16
8.2.120.0040.00422.11
8.2.110.0030.00620.71
8.2.100.0060.00618.22
8.2.90.0000.00819.39
8.2.80.0030.00617.97
8.2.70.0040.00417.88
8.2.60.0000.01018.03
8.2.50.0060.00618.07
8.2.40.0030.00620.07
8.2.30.0030.00518.28
8.2.20.0020.00517.89
8.2.10.0050.00318.10
8.2.00.0050.00317.96
8.1.270.0000.00823.89
8.1.260.0080.00026.35
8.1.250.0000.00828.09
8.1.240.0090.00023.80
8.1.230.0060.00619.11
8.1.220.0050.00317.78
8.1.210.0000.00818.77
8.1.200.0030.00617.35
8.1.190.0000.00817.25
8.1.180.0040.00418.10
8.1.170.0080.00018.77
8.1.160.0040.00422.12
8.1.150.0030.00618.89
8.1.140.0040.00417.50
8.1.130.0000.00717.91
8.1.120.0040.00417.58
8.1.110.0040.00417.51
8.1.100.0070.00017.55
8.1.90.0040.00417.49
8.1.80.0070.00017.56
8.1.70.0070.00017.43
8.1.60.0000.00917.61
8.1.50.0060.00317.65
8.1.40.0040.00417.61
8.1.30.0030.00617.67
8.1.20.0030.00517.74
8.1.10.0000.00917.69
8.1.00.0000.00817.61
8.0.300.0000.00818.77
8.0.290.0050.00216.88
8.0.280.0000.00718.47
8.0.270.0060.00317.43
8.0.260.0000.00718.52
8.0.250.0030.00317.15
8.0.240.0000.00717.10
8.0.230.0030.00317.16
8.0.220.0050.00317.12
8.0.210.0050.00217.14
8.0.200.0030.00617.06
8.0.190.0030.00617.15
8.0.180.0040.00417.19
8.0.170.0030.00517.06
8.0.160.0000.00817.07
8.0.150.0040.00416.91
8.0.140.0000.00816.95
8.0.130.0030.00313.57
8.0.120.0000.00817.02
8.0.110.0000.00817.09
8.0.100.0040.00417.15
8.0.90.0040.00417.00
8.0.80.0080.00917.21
8.0.70.0000.00816.93
8.0.60.0000.00717.16
8.0.50.0030.00517.20
8.0.30.0140.00517.24
8.0.20.0090.01217.40
8.0.10.0000.00717.13
8.0.00.0090.00817.01
7.4.330.0060.00015.09
7.4.320.0000.00716.64
7.4.300.0040.00216.69
7.4.290.0070.00016.59
7.4.280.0030.00616.76
7.4.270.0030.00516.70
7.4.260.0030.00616.75
7.4.250.0030.00516.68
7.4.240.0040.00416.72
7.4.230.0070.00016.84
7.4.220.0090.00916.77
7.4.210.0120.00916.86
7.4.200.0080.00016.69
7.4.160.0070.01016.75
7.4.150.0100.01017.40
7.4.140.0150.00517.86
7.4.130.0070.01016.59
7.4.120.0090.00916.81
7.4.110.0160.00716.48
7.4.100.0060.01616.75
7.4.90.0100.00716.83
7.4.80.0070.01119.39
7.4.70.0060.01116.51
7.4.60.0120.00616.72
7.4.50.0000.00816.49
7.4.40.0080.00816.57
7.4.30.0060.01616.63
7.4.00.0060.01115.29
7.3.330.0000.00613.24
7.3.320.0030.00313.38
7.3.310.0040.00416.59
7.3.300.0030.00516.43
7.3.290.0080.00616.46
7.3.280.0090.00916.46
7.3.270.0080.01217.40
7.3.260.0190.00316.61
7.3.250.0090.00816.61
7.3.240.0040.01316.69
7.3.230.0070.01016.65
7.3.210.0200.00716.56
7.3.200.0130.01219.39
7.3.190.0080.01616.64
7.3.180.0130.00316.55
7.3.170.0150.00316.70
7.3.160.0060.01016.63
7.3.120.0090.00814.96
7.3.110.0050.01414.95
7.3.100.0100.00814.75
7.3.90.0100.00315.10
7.3.80.0030.01215.05
7.3.70.0060.00714.79
7.3.60.0120.00214.92
7.3.50.0030.01014.99
7.3.40.0030.01414.77
7.3.30.0050.01014.93
7.3.20.0050.00716.57
7.3.10.0030.00616.61
7.3.00.0030.00916.60
7.2.330.0070.01016.74
7.2.320.0120.00616.55
7.2.310.0070.01116.73
7.2.300.0070.01016.76
7.2.290.0060.01616.45
7.2.250.0160.00315.07
7.2.240.0100.00915.30
7.2.230.0080.00715.03
7.2.220.0100.00714.79
7.2.210.0100.00715.18
7.2.200.0030.01115.06
7.2.190.0100.00315.01
7.2.180.0050.01015.16
7.2.170.0070.00715.12
7.2.160.0070.00715.10
7.2.150.0050.00516.73
7.2.140.0100.00516.80
7.2.130.0090.00516.91
7.2.120.0050.00816.90
7.2.110.0060.00816.75
7.2.100.0050.00916.93
7.2.90.0090.00516.76
7.2.80.0050.00717.06
7.2.70.0050.01016.82
7.2.60.0030.01116.73
7.2.50.0040.01216.71
7.2.40.0050.01116.85
7.2.30.0060.00616.88
7.2.20.0020.01016.83
7.2.10.0040.01016.81
7.2.00.0040.00917.33
7.1.330.0060.00815.69
7.1.320.0050.01115.58
7.1.310.0080.00715.76
7.1.300.0030.01115.76
7.1.290.0070.00815.76
7.1.280.0080.00715.73
7.1.270.0080.00815.73
7.1.260.0090.00515.66
7.1.250.0060.00615.53
7.1.240.0030.01015.68
7.1.230.0030.00815.76
7.1.220.0080.00815.53
7.1.210.0040.00915.64
7.1.200.0080.00515.65
7.1.190.0050.01115.75
7.1.180.0060.00815.63
7.1.170.0030.01015.68
7.1.160.0020.00715.71
7.1.150.0050.01015.43
7.1.140.0060.00715.65
7.1.130.0100.00315.75
7.1.120.0060.00615.65
7.1.110.0040.00615.68
7.1.100.0040.00916.46
7.1.90.0060.00815.69
7.1.80.0080.00615.67
7.1.70.0040.00916.12
7.1.60.0080.00916.83
7.1.50.0090.00816.06
7.1.40.0020.01115.67
7.1.30.0080.00715.70
7.1.20.0030.01015.71
7.1.10.0090.00415.44
7.1.00.0050.03117.80
7.0.330.0120.00415.16
7.0.320.0020.01115.22
7.0.310.0050.01015.24
7.0.300.0070.00215.13
7.0.290.0070.00515.21
7.0.280.0070.00615.16
7.0.270.0060.00515.41
7.0.260.0060.00715.08
7.0.250.0090.00415.47
7.0.240.0030.01115.34
7.0.230.0080.00515.31
7.0.220.0070.00715.42
7.0.210.0050.01115.24
7.0.200.0040.00815.71
7.0.190.0030.01015.35
7.0.180.0040.00915.42
7.0.170.0000.01515.26
7.0.160.0040.01315.31
7.0.150.0100.00615.19
7.0.140.0060.02817.56
7.0.130.0030.01015.42
7.0.120.0090.00215.28
7.0.110.0020.01215.41
7.0.100.0020.01015.37
7.0.90.0100.02917.45
7.0.80.0090.03017.38
7.0.70.0040.03117.53
7.0.60.0020.03217.37
7.0.50.0040.03417.61
7.0.40.0030.03615.60
7.0.30.0060.03215.51
7.0.20.0060.03215.71
7.0.10.0020.03515.71
7.0.00.0040.03315.54
5.6.400.0010.01014.36
5.6.390.0060.00814.28
5.6.380.0080.00314.45
5.6.370.0050.00914.46
5.6.360.0070.01214.39
5.6.350.0050.00714.47
5.6.340.0030.01314.39
5.6.330.0050.00514.29
5.6.320.0030.01114.30
5.6.310.0070.00314.07
5.6.300.0080.00514.33
5.6.290.0100.00514.15
5.6.280.0050.03116.66
5.6.270.0080.00614.29
5.6.260.0090.00514.46
5.6.250.0060.00914.47
5.6.240.0050.03316.61
5.6.230.0050.02916.46
5.6.220.0090.01516.51
5.6.210.0060.02116.52
5.6.200.0030.02416.63
5.6.190.0030.03216.68
5.6.180.0070.02416.53
5.6.170.0080.03216.53
5.6.160.0070.02016.59
5.6.150.0040.02616.56
5.6.140.0060.03116.52
5.6.130.0070.01916.74
5.6.120.0090.03016.63
5.6.110.0060.03216.47
5.6.100.0070.02716.48
5.6.90.0090.03116.51
5.6.80.0040.02716.29
5.6.70.0040.03316.24
5.6.60.0060.02816.31
5.6.50.0100.02716.20
5.6.40.0070.02316.35
5.6.30.0070.03016.46
5.6.20.0110.01816.33
5.6.10.0060.03016.29
5.6.00.0060.03116.34
5.5.380.0090.03116.32
5.5.370.0030.02216.21
5.5.360.0070.03216.33
5.5.350.0070.02316.36
5.5.340.0030.02016.43
5.5.330.0050.03016.30
5.5.320.0030.02116.54
5.5.310.0060.03316.42
5.5.300.0020.03516.44
5.5.290.0040.03416.39
5.5.280.0050.03216.49
5.5.270.0060.03116.53
5.5.260.0070.03116.48
5.5.250.0040.03016.34
5.5.240.0080.03216.17
5.5.230.0090.03016.15
5.5.220.0060.03316.24
5.5.210.0050.03116.28
5.5.200.0050.03116.36
5.5.190.0080.03116.10
5.5.180.0040.03216.18
5.5.170.0030.01014.22
5.5.160.0100.02816.23
5.5.150.0070.02916.24
5.5.140.0070.03116.14
5.5.130.0100.01715.98
5.5.120.0030.01916.10
5.5.110.0040.03516.24
5.5.100.0080.02416.20
5.5.90.0050.03116.17
5.5.80.0060.01916.10
5.5.70.0060.01616.11
5.5.60.0050.01815.97
5.5.50.0060.02616.28
5.5.40.0050.03016.28
5.5.30.0050.03316.00
5.5.20.0070.02916.15
5.5.10.0060.03015.97
5.5.00.0070.02916.12
5.4.450.0060.02214.13
5.4.440.0040.03113.88
5.4.430.0040.03114.05
5.4.420.0060.02814.04
5.4.410.0060.03014.08
5.4.400.0080.02713.92
5.4.390.0080.02613.89
5.4.380.0010.02913.92
5.4.370.0090.02613.96
5.4.360.0040.03113.95
5.4.350.0030.02613.93
5.4.340.0080.02613.90
5.4.330.0020.01011.39
5.4.320.0060.02913.99
5.4.310.0030.02513.91
5.4.300.0040.02513.93
5.4.290.0050.03013.84
5.4.280.0030.02013.94
5.4.270.0030.02613.85
5.4.260.0020.02914.00
5.4.250.0030.02013.86
5.4.240.0040.01814.06
5.4.230.0020.02913.87
5.4.220.0080.02813.91
5.4.210.0080.02713.87
5.4.200.0060.01913.85
5.4.190.0020.02213.96
5.4.180.0070.02413.97
5.4.170.0070.01713.98
5.4.160.0050.02713.98
5.4.150.0050.02013.83
5.4.140.0030.02713.08
5.4.130.0020.02712.93
5.4.120.0010.03213.00
5.4.110.0040.03413.03
5.4.100.0050.02213.04
5.4.90.0030.03513.11
5.4.80.0090.01913.03
5.4.70.0070.02713.01
5.4.60.0040.02612.98
5.4.50.0020.03013.05
5.4.40.0070.02112.99
5.4.30.0060.02513.04
5.4.20.0060.02713.09
5.4.10.0060.02713.11
5.4.00.0040.02512.83

preferences:
39.92 ms | 400 KiB | 5 Q