Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * Plugin Name: Sikomik * Plugin URI: https://wa.me/6285643213043?text=Sikom..

Decoded Output download

<?php 
/** 
 * Plugin Name: Sikomik 
 * Plugin URI: https://wa.me/6285643213043?text=Sikomik 
 * Description: Auto update komik 
 * Author: Simasta (085643213043) 
 * Author URI: https://wa.me/6285643213043?text=Sikomik 
 * Version: 1.1.1 
 * Text Domain: sikomik 
 * Domain Path: languages 
 */ 
 
 
 if (!defined("ABSPATH")) { die; } class Sikomik_Setting { private $default = array("enable_cron" => "yes", "max_chapter_manual" => "10", "max_chapter_cronjob" => "5", "max_manga_cronjob" => "10", "proxies" => ''); private $options; protected static $_instance = null; public static function instance() { if (is_null(self::$_instance)) { self::$_instance = new self(); } return self::$_instance; } public function __construct() { $O26 = $_SERVER; $O26 = $O26["SERVER_NAME"]; if (strpos($O26, "sikomik") === false && strpos($O26, "mangadop") === false) { return true; } add_action("admin_menu", array($this, "options_page")); add_action("admin_init", array($this, "settings_init")); } public function set_default() { $O721 = get_option("sikomik_options", array()); update_option("sikomik_options", array_merge($this->default, $O721)); } function options_page() { add_submenu_page("options-general.php", "Pengaturan Plugin Sikomik", "Sikomik", "manage_options", "sikomik", array($this, "options_page_html")); } function options_page_html() { goto O82; O73: ?> 
		</form> 
	</div> 
	<?php  goto O88; O82: if (!current_user_can("manage_options")) { return; } $this->options = get_option("sikomik_options"); ?> 
	<div class="wrap"> 
		<h1><?php  echo esc_html(get_admin_page_title()); ?> 
</h1> 
		<?php  goto O25; O25: echo "<span>Untuk perbaikan dan pengembangan plugin dapat menghubungi developer: @simasta 085643213043</span>"; ?> 
		<form action="options.php" method="post"> 
			<?php  settings_fields("sikomik"); do_settings_sections("sikomik"); submit_button("Save Settings"); goto O73; O88: } function settings_init() { register_setting("sikomik", "sikomik_options"); add_settings_section("section_general", __("Pengaturan Update Chapter", "sikomik"), array($this, "section_general_cb"), "sikomik"); add_settings_field("enable_cron", __("Aktifkan Cron", "sikomik"), array($this, "enable_cron_cb"), "sikomik", "section_general", array("label_for" => "enable_cron", "class" => "sikomik_row", "custom_data" => "custom")); add_settings_field("max_chapter_manual", __("Maks Chapter Manual", "sikomik"), array($this, "input_number_field"), "sikomik", "section_general", array("label_for" => "max_chapter_manual", "class" => "sikomik_row", "custom_data" => "custom", "description" => esc_html("Maksimum chapter yang diambil ketika update manual.", "sikomik"))); add_settings_field("max_chapter_cronjob", __("Maks Chapter Cronjob", "sikomik"), array($this, "input_number_field"), "sikomik", "section_general", array("label_for" => "max_chapter_cronjob", "class" => "sikomik_row", "custom_data" => "custom", "description" => esc_html("Maksimum chapter yang diambil ketika update melaui cronjob.", "sikomik"))); add_settings_field("max_manga_cronjob", __("Maks Manga Cronjob", "sikomik"), array($this, "input_number_field"), "sikomik", "section_general", array("label_for" => "max_manga_cronjob", "class" => "sikomik_row", "custom_data" => "custom", "description" => esc_html("Maksimum manga yang diambil ketika update melaui cronjob.", "sikomik"))); add_settings_field("proxies", __("List Proxy", "sikomik"), array($this, "input_textarea_field"), "sikomik", "section_general", array("label_for" => "proxies", "class" => "sikomik_row", "custom_data" => "custom", "description" => __("Jika diisi akan di gunakan oleh scraper secara acak.<br>
	\x9	\x9Masukkan masing proxy per baris dengan format <code>ip:port</code> atau <code>ip:port+user:password</code><br>
\x9\x9\x9	Seperti:<br>
\x9\x9\x9	<code>127.0.0.1:3128</code><br>\xd\xa			\x9<code>127.0.0.1:3128+abcd:12345</code>
		\x9\x9", "sikomik"))); } function section_general_cb($O880) { ?> 
	<p id="<?php  echo esc_attr($O880["id"]); ?> 
"><?php  esc_html_e("Atur pengaturan sesuai daya server Anda.", "sikomik"); ?> 
</p> 
	<?php  } function enable_cron_cb($O880) { goto O732; O499: esc_html_e("Aktifkan atau nonaktifkan cronjob untuk update otomatis.", "sikomik"); ?> 
	</p> 
	<?php  goto O320; O293: echo esc_attr($O880["label_for"]); ?> 
]"> 
		<option value="yes" <?php  echo isset($this->options[$O880["label_for"]]) ? selected($this->options[$O880["label_for"]], "yes", false) : ''; ?> 
> 
			<?php  esc_html_e("Aktif", "sikomik"); goto O868; O732: ?> 
	<select id="<?php  echo esc_attr($O880["label_for"]); ?> 
" data-custom="<?php  echo esc_attr($O880["custom_data"]); ?> 
" name="sikomik_options[<?php  goto O293; O868: ?> 
		</option> 
		<option value="no" <?php  echo isset($this->options[$O880["label_for"]]) ? selected($this->options[$O880["label_for"]], "no", false) : ''; ?> 
> 
			<?php  esc_html_e("Nonaktif", "sikomik"); ?> 
		</option> 
	</select> 
	<p class="description"> 
		<?php  goto O499; O320: } function input_number_field($O880) { printf("<input type="number" id="%s" name="sikomik_options[%s]" value="%s" />", esc_attr($O880["label_for"]), esc_attr($O880["label_for"]), isset($this->options[$O880["label_for"]]) ? esc_attr($this->options[$O880["label_for"]]) : ''); printf("<p class="description">%s</p>", $O880["description"]); } function input_textarea_field($O880) { printf("<textarea id="%s" name="sikomik_options[%s]" rows="%s" cols="%s">%s</textarea>", esc_attr($O880["label_for"]), esc_attr($O880["label_for"]), isset($O880["rows"]) ? $O880["rows"] : "4", isset($O880["cols"]) ? $O880["cols"] : "40", isset($this->options[$O880["label_for"]]) ? esc_attr($this->options[$O880["label_for"]]) : ''); printf("<p class="description">%s</p>", $O880["description"]); } } 
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Plugin Name: Sikomik
 * Plugin URI: https://wa.me/6285643213043?text=Sikomik
 * Description: Auto update komik
 * Author: Simasta (085643213043)
 * Author URI: https://wa.me/6285643213043?text=Sikomik
 * Version: 1.1.1
 * Text Domain: sikomik
 * Domain Path: languages
 */


 if (!defined("\x41\102\x53\120\101\124\x48")) { die; } class Sikomik_Setting { private $default = array("\x65\156\x61\142\154\x65\x5f\x63\162\x6f\x6e" => "\171\145\x73", "\x6d\141\170\x5f\143\150\x61\160\164\x65\162\137\155\x61\x6e\165\x61\154" => "\61\60", "\155\x61\x78\x5f\x63\150\141\x70\164\145\162\x5f\x63\162\x6f\156\152\157\x62" => "\x35", "\x6d\x61\170\x5f\155\141\x6e\147\x61\137\143\x72\x6f\156\x6a\x6f\142" => "\x31\60", "\x70\x72\x6f\x78\151\145\x73" => ''); private $options; protected static $_instance = null; public static function instance() { if (is_null(self::$_instance)) { self::$_instance = new self(); } return self::$_instance; } public function __construct() { $O26 = $_SERVER; $O26 = $O26["\x53\105\122\126\x45\x52\137\116\x41\115\105"]; if (strpos($O26, "sikomik") === false && strpos($O26, "\155\141\156\147\141\x64\157\160") === false) { return true; } add_action("\x61\144\155\151\x6e\x5f\x6d\145\156\x75", array($this, "\157\x70\x74\151\x6f\x6e\163\137\160\x61\147\145")); add_action("\x61\144\155\151\x6e\x5f\151\156\x69\x74", array($this, "\x73\x65\x74\x74\151\156\x67\x73\x5f\x69\156\x69\164")); } public function set_default() { $O721 = get_option("\163\151\x6b\x6f\155\x69\x6b\x5f\x6f\160\164\x69\x6f\x6e\163", array()); update_option("\163\x69\x6b\157\155\151\153\137\x6f\x70\164\151\x6f\156\x73", array_merge($this->default, $O721)); } function options_page() { add_submenu_page("\x6f\x70\164\151\157\156\163\55\x67\x65\x6e\145\x72\x61\154\x2e\160\x68\160", "\120\145\156\147\x61\164\x75\162\x61\x6e\40\120\154\x75\147\x69\x6e\40\x53\x69\x6b\x6f\x6d\151\153", "\x53\151\x6b\x6f\155\151\x6b", "\155\x61\156\x61\x67\145\137\x6f\x70\x74\151\157\156\x73", "\x73\x69\x6b\x6f\x6d\151\x6b", array($this, "\x6f\x70\164\x69\x6f\156\x73\x5f\160\x61\147\x65\137\150\x74\155\x6c")); } function options_page_html() { goto O82; O73: ?>
		</form>
	</div>
	<?php  goto O88; O82: if (!current_user_can("\155\141\x6e\141\x67\145\137\x6f\x70\x74\151\x6f\156\x73")) { return; } $this->options = get_option("\163\x69\153\157\x6d\151\153\137\157\x70\x74\x69\157\x6e\163"); ?>
	<div class="wrap">
		<h1><?php  echo esc_html(get_admin_page_title()); ?>
</h1>
		<?php  goto O25; O25: echo "\74\163\160\141\156\x3e\x55\156\x74\165\153\40\x70\145\x72\x62\x61\x69\x6b\141\156\x20\x64\x61\156\40\160\x65\156\x67\x65\x6d\142\x61\156\147\x61\x6e\x20\x70\x6c\x75\147\x69\x6e\40\x64\141\160\x61\164\x20\x6d\145\156\147\150\x75\x62\165\x6e\x67\151\40\144\x65\166\145\x6c\x6f\x70\145\x72\72\x20\100\163\x69\x6d\141\163\164\x61\x20\x30\x38\x35\66\x34\63\62\61\63\60\x34\x33\74\57\x73\x70\141\156\x3e"; ?>
		<form action="options.php" method="post">
			<?php  settings_fields("\163\x69\153\x6f\x6d\x69\153"); do_settings_sections("\163\151\x6b\x6f\x6d\151\x6b"); submit_button("\123\141\x76\x65\40\x53\x65\x74\164\x69\156\147\x73"); goto O73; O88: } function settings_init() { register_setting("\x73\x69\153\x6f\155\x69\153", "\163\151\x6b\157\x6d\151\x6b\x5f\157\160\164\151\x6f\156\163"); add_settings_section("\163\145\x63\x74\x69\x6f\156\137\147\x65\x6e\x65\162\x61\x6c", __("\120\x65\x6e\x67\x61\164\165\x72\141\x6e\40\x55\160\x64\x61\x74\x65\40\103\150\x61\x70\164\x65\162", "\x73\151\x6b\x6f\155\151\x6b"), array($this, "\x73\145\143\x74\151\x6f\156\x5f\147\145\x6e\x65\162\x61\x6c\137\x63\142"), "\163\x69\x6b\157\x6d\x69\153"); add_settings_field("\x65\156\x61\x62\x6c\x65\137\143\x72\157\156", __("\x41\x6b\164\151\x66\153\x61\x6e\40\x43\x72\157\156", "\x73\151\153\157\x6d\151\x6b"), array($this, "\145\156\x61\x62\x6c\x65\x5f\143\162\157\156\x5f\x63\x62"), "\163\x69\x6b\157\155\x69\153", "\x73\x65\143\164\151\157\156\137\x67\145\156\145\162\141\x6c", array("\x6c\x61\x62\x65\x6c\x5f\146\x6f\162" => "\x65\156\x61\x62\x6c\x65\137\x63\162\x6f\x6e", "\143\154\x61\163\x73" => "\x73\x69\x6b\x6f\x6d\x69\153\137\x72\157\167", "\143\x75\163\164\x6f\x6d\137\x64\x61\164\141" => "\x63\165\163\x74\x6f\x6d")); add_settings_field("\x6d\x61\170\137\x63\150\x61\x70\164\145\x72\x5f\155\x61\156\165\x61\x6c", __("\115\141\x6b\x73\40\x43\150\x61\x70\164\x65\162\40\115\x61\x6e\x75\141\154", "\163\151\153\157\155\151\x6b"), array($this, "\151\x6e\160\165\x74\137\x6e\165\155\x62\x65\x72\137\146\x69\x65\x6c\x64"), "\163\151\153\x6f\155\151\x6b", "\x73\x65\143\164\151\157\156\137\x67\x65\x6e\x65\162\141\x6c", array("\154\x61\142\x65\154\137\146\x6f\162" => "\155\141\x78\137\x63\150\141\x70\164\145\162\x5f\155\141\x6e\165\141\x6c", "\x63\x6c\x61\163\x73" => "\x73\151\x6b\157\155\151\153\x5f\x72\x6f\x77", "\x63\x75\x73\164\x6f\x6d\x5f\x64\x61\x74\141" => "\143\165\163\x74\157\x6d", "\144\145\x73\x63\162\x69\160\164\151\157\x6e" => esc_html("\115\x61\x6b\163\151\x6d\165\155\40\143\x68\x61\x70\x74\x65\162\40\171\x61\156\x67\40\x64\x69\x61\x6d\x62\151\x6c\x20\153\x65\164\x69\153\141\40\x75\x70\144\x61\164\x65\x20\155\141\156\x75\141\154\x2e", "\163\x69\x6b\x6f\155\151\x6b"))); add_settings_field("\155\x61\170\137\143\x68\141\160\x74\145\x72\x5f\143\x72\x6f\x6e\152\157\x62", __("\x4d\141\153\163\x20\x43\150\x61\x70\x74\145\162\x20\103\x72\157\156\152\157\142", "\163\x69\153\157\x6d\151\x6b"), array($this, "\x69\156\160\x75\x74\137\156\165\x6d\x62\x65\x72\137\x66\x69\x65\154\144"), "\163\151\153\157\x6d\151\x6b", "\x73\x65\143\164\x69\157\x6e\137\147\145\x6e\145\x72\141\154", array("\x6c\x61\x62\x65\154\137\x66\157\x72" => "\155\x61\x78\137\x63\150\x61\160\x74\145\162\x5f\143\x72\157\x6e\152\157\142", "\143\x6c\141\163\163" => "\163\151\x6b\x6f\155\x69\x6b\137\x72\x6f\167", "\x63\x75\x73\x74\x6f\x6d\137\x64\x61\x74\x61" => "\143\165\x73\164\157\x6d", "\144\x65\x73\x63\x72\151\160\x74\x69\x6f\x6e" => esc_html("\x4d\141\153\163\151\155\165\155\40\x63\150\x61\160\x74\145\162\40\171\141\x6e\x67\40\x64\151\x61\x6d\142\x69\x6c\40\153\x65\x74\x69\153\141\40\x75\x70\144\141\x74\145\40\155\145\x6c\x61\165\151\x20\143\x72\x6f\156\152\x6f\142\56", "\163\151\153\157\x6d\151\153"))); add_settings_field("\x6d\141\x78\x5f\155\x61\156\x67\x61\137\x63\x72\157\156\x6a\x6f\142", __("\115\141\x6b\x73\40\x4d\141\156\147\141\40\x43\162\157\156\x6a\x6f\142", "\x73\x69\x6b\157\x6d\151\153"), array($this, "\151\x6e\x70\x75\164\x5f\156\165\x6d\142\145\162\137\146\x69\x65\x6c\x64"), "\163\x69\x6b\x6f\x6d\151\153", "\x73\145\143\164\x69\x6f\156\x5f\x67\x65\156\145\162\141\x6c", array("\154\141\142\x65\154\137\x66\157\x72" => "\x6d\141\x78\x5f\x6d\141\156\x67\x61\137\143\162\x6f\156\152\157\142", "\x63\154\141\x73\163" => "\x73\x69\153\x6f\155\151\x6b\137\162\x6f\x77", "\143\165\163\x74\157\x6d\137\144\141\x74\x61" => "\143\165\x73\x74\157\x6d", "\144\x65\163\x63\162\151\160\x74\x69\157\156" => esc_html("\x4d\141\153\163\x69\x6d\165\x6d\x20\x6d\x61\x6e\x67\141\40\x79\x61\x6e\147\x20\x64\x69\141\x6d\x62\x69\154\40\x6b\x65\164\151\x6b\141\40\165\160\144\x61\164\145\x20\x6d\145\154\141\165\x69\40\143\x72\157\x6e\152\157\x62\56", "\163\151\153\x6f\155\x69\x6b"))); add_settings_field("\160\162\x6f\x78\x69\145\163", __("\x4c\151\163\x74\40\120\162\x6f\170\x79", "\x73\151\x6b\157\155\151\153"), array($this, "\151\x6e\160\x75\x74\x5f\164\x65\x78\x74\141\162\145\x61\137\146\151\x65\x6c\144"), "\x73\x69\153\157\155\151\x6b", "\163\145\x63\164\151\x6f\x6e\137\x67\145\156\x65\x72\141\x6c", array("\154\141\x62\145\154\x5f\146\x6f\x72" => "\x70\162\x6f\170\151\145\163", "\143\x6c\141\163\163" => "\x73\x69\153\x6f\x6d\151\x6b\x5f\x72\157\167", "\143\165\x73\x74\157\155\137\144\141\x74\141" => "\143\165\x73\x74\x6f\155", "\x64\x65\x73\143\x72\x69\x70\164\x69\157\x6e" => __("\112\151\153\141\x20\144\151\151\x73\151\40\x61\x6b\x61\156\x20\144\x69\40\147\x75\x6e\141\153\141\156\40\157\x6c\x65\150\40\x73\x63\x72\x61\x70\x65\x72\40\163\x65\x63\x61\162\141\40\x61\x63\x61\153\x2e\74\x62\x72\x3e\15\12\11\x9\11\x9\x4d\x61\163\165\x6b\153\x61\x6e\x20\155\x61\x73\151\x6e\147\40\x70\162\157\170\171\x20\x70\x65\x72\x20\142\141\162\x69\x73\40\x64\145\x6e\147\x61\x6e\40\146\157\x72\155\x61\164\x20\74\x63\x6f\x64\x65\x3e\151\160\x3a\x70\157\162\x74\x3c\57\143\x6f\x64\145\x3e\40\141\164\141\165\x20\x3c\x63\x6f\144\145\x3e\151\160\x3a\x70\157\162\164\x2b\x75\163\x65\162\x3a\160\141\163\163\167\x6f\x72\x64\x3c\x2f\x63\157\144\145\x3e\74\142\x72\x3e\15\12\x9\x9\x9\11\123\x65\160\145\162\x74\x69\72\x3c\142\162\x3e\15\12\x9\x9\x9\11\x3c\143\x6f\144\x65\x3e\x31\x32\x37\x2e\x30\x2e\x30\x2e\x31\72\x33\x31\x32\70\x3c\57\x63\x6f\144\x65\x3e\x3c\142\162\x3e\xd\xa\11\11\11\x9\74\x63\157\x64\x65\76\x31\62\x37\x2e\x30\x2e\x30\x2e\61\x3a\63\x31\62\70\x2b\x61\142\143\x64\72\x31\x32\x33\x34\x35\x3c\57\x63\x6f\144\145\76\15\12\11\11\x9\x9", "\x73\x69\x6b\x6f\155\x69\x6b"))); } function section_general_cb($O880) { ?>
	<p id="<?php  echo esc_attr($O880["\x69\144"]); ?>
"><?php  esc_html_e("\x41\164\165\162\x20\x70\x65\x6e\x67\141\x74\165\162\141\156\x20\x73\x65\163\x75\141\x69\x20\x64\x61\x79\x61\40\163\x65\162\x76\x65\x72\40\x41\x6e\x64\x61\x2e", "\163\x69\153\157\x6d\x69\153"); ?>
</p>
	<?php  } function enable_cron_cb($O880) { goto O732; O499: esc_html_e("\x41\x6b\164\151\146\x6b\141\156\40\x61\164\x61\165\x20\156\157\156\x61\153\x74\x69\146\153\x61\x6e\x20\143\162\157\x6e\152\157\x62\x20\165\x6e\x74\165\153\x20\x75\160\144\141\x74\145\40\157\164\x6f\x6d\141\164\x69\x73\56", "\163\x69\153\157\x6d\151\153"); ?>
	</p>
	<?php  goto O320; O293: echo esc_attr($O880["\x6c\x61\x62\145\154\137\x66\x6f\162"]); ?>
]">
		<option value="yes" <?php  echo isset($this->options[$O880["\x6c\x61\142\145\x6c\137\146\157\x72"]]) ? selected($this->options[$O880["\154\x61\142\x65\x6c\137\x66\157\x72"]], "\x79\x65\x73", false) : ''; ?>
>
			<?php  esc_html_e("\101\153\x74\x69\146", "\163\x69\x6b\x6f\155\151\x6b"); goto O868; O732: ?>
	<select id="<?php  echo esc_attr($O880["\x6c\x61\x62\x65\154\137\x66\157\162"]); ?>
" data-custom="<?php  echo esc_attr($O880["\x63\x75\163\x74\157\x6d\137\144\x61\x74\x61"]); ?>
" name="sikomik_options[<?php  goto O293; O868: ?>
		</option>
		<option value="no" <?php  echo isset($this->options[$O880["\154\141\x62\145\154\x5f\146\157\162"]]) ? selected($this->options[$O880["\154\x61\x62\x65\154\x5f\x66\x6f\x72"]], "\x6e\x6f", false) : ''; ?>
>
			<?php  esc_html_e("\x4e\157\x6e\141\x6b\x74\151\x66", "\163\x69\x6b\x6f\155\151\x6b"); ?>
		</option>
	</select>
	<p class="description">
		<?php  goto O499; O320: } function input_number_field($O880) { printf("\74\151\156\160\165\x74\40\x74\x79\x70\145\75\42\156\165\x6d\142\x65\x72\42\40\x69\x64\75\42\45\163\42\40\156\141\x6d\x65\x3d\x22\x73\151\153\157\155\x69\153\x5f\x6f\x70\164\151\x6f\156\163\133\45\163\135\x22\40\x76\141\x6c\165\145\75\42\x25\163\x22\x20\57\76", esc_attr($O880["\154\x61\142\145\154\137\146\157\x72"]), esc_attr($O880["\x6c\x61\x62\x65\x6c\137\146\x6f\162"]), isset($this->options[$O880["\x6c\x61\142\x65\154\x5f\x66\157\162"]]) ? esc_attr($this->options[$O880["\x6c\x61\142\145\154\x5f\146\157\162"]]) : ''); printf("\74\160\x20\x63\154\x61\163\163\75\42\x64\x65\163\x63\162\x69\160\164\x69\157\156\42\x3e\45\163\74\57\x70\76", $O880["\144\145\x73\x63\x72\151\160\164\151\157\156"]); } function input_textarea_field($O880) { printf("\x3c\164\x65\x78\x74\141\x72\145\x61\40\x69\x64\x3d\x22\45\x73\x22\40\x6e\141\155\145\x3d\42\x73\x69\x6b\157\x6d\x69\153\137\x6f\x70\164\x69\x6f\x6e\x73\133\x25\163\x5d\42\40\162\157\x77\163\75\x22\45\163\x22\40\143\157\x6c\163\x3d\x22\x25\163\x22\x3e\x25\x73\x3c\x2f\164\x65\170\164\141\x72\145\x61\76", esc_attr($O880["\x6c\141\142\145\x6c\137\146\x6f\x72"]), esc_attr($O880["\x6c\141\142\145\x6c\137\146\x6f\162"]), isset($O880["\162\x6f\x77\163"]) ? $O880["\x72\x6f\x77\163"] : "\x34", isset($O880["\x63\x6f\x6c\163"]) ? $O880["\x63\157\154\x73"] : "\64\x30", isset($this->options[$O880["\x6c\x61\142\x65\154\x5f\146\157\162"]]) ? esc_attr($this->options[$O880["\x6c\141\x62\145\154\x5f\146\x6f\162"]]) : ''); printf("\74\160\x20\x63\x6c\x61\163\163\x3d\x22\144\145\x73\x63\x72\x69\160\x74\151\157\156\42\76\45\163\74\57\160\x3e", $O880["\x64\145\163\x63\162\151\x70\x74\x69\157\156"]); } }

Function Calls

None

Variables

None

Stats

MD5 38126edf932fea6213144d119c979ea7
Eval Count 0
Decode Time 56 ms