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 // Before trying to crack the plugin, please consider buying a pro license at https:..

Decoded Output download

<?php // Before trying to crack the plugin, please consider buying a pro license at https://www.mapsmarker.com/order - we have put hundreds of hours into the development of our plugin and without honest customers we will not be able to continue the development and support. Thanks for your understanding and your honesty! 
namespace MMP; use MMP\Maps_Marker_Pro as MMP; class Menu_License extends Menu { public function init() { add_action("admin_enqueue_scripts",array($this,"load_resources")); add_action("wp_ajax_mmp_register_personal_trial",array($this,"register_personal_trial")); add_action("wp_ajax_mmp_register_anonymous_trial",array($this,"register_anonymous_trial")); add_action("wp_ajax_mmp_update_license",array($this,"update_license")); } public function load_resources($hook) { if (substr($hook,-strlen("mapsmarkerpro_license")) !== "mapsmarkerpro_license") { return; } $this->load_global_resources($hook); wp_enqueue_script("mmp-admin"); wp_add_inline_script("mmp-admin","licenseActions();"); } public function register_personal_trial() { $spbas=mmp::get_instance("MMP\SPBAS"); $Oz=mmp::get_instance("MMP\Notice"); if (! isset ($_POST["nonce"]) || wp_verify_nonce($_POST["nonce"],"mmp-register-personal-trial") === FALSE) { wp_send_json(array("success" => FALSE,"response" => esc_html__("Security check failed","mmp"))); } if (! isset ($_POST["first_name"]) || !$_POST["first_name"]) { wp_send_json(array("success" => FALSE,"response" => esc_html__("Please enter your first name","mmp"))); } if (! isset ($_POST["last_name"]) || !$_POST["last_name"]) { wp_send_json(array("success" => FALSE,"response" => esc_html__("Please enter your last name","mmp"))); } if (! isset ($_POST["email"]) || !filter_var($_POST["email"],FILTER_VALIDATE_EMAIL)) { wp_send_json(array("success" => FALSE,"response" => esc_html__("Please enter a valid email address (or get an anonymous trial license key)","mmp"))); } if (! isset ($_POST["tos"]) || !$_POST["tos"]) { wp_send_json(array("success" => FALSE,"response" => esc_html__("You must agree to the ToS","mmp"))); } $l10=array("mod" => "3rd_party","task" => "api","api_key" => "50a2094314fbc82e712b3f9b21f00745","email" => urlencode($_POST["email"]),"first_name" => urlencode($_POST["first_name"]),"last_name" => urlencode($_POST["last_name"]),"company_name" => urlencode($_POST["first_name"]." ".$_POST["last_name"]),"username" => urlencode(strtolower(sanitize_user($_POST["last_name"].substr($_POST["first_name"],0,1),TRUE)))); $O10=$spbas->Op("https://www.mapsmarker.com/store/api/index.php",http_build_query($l10)); if (strtolower(substr($O10,0,020)) === "connection error" || strtolower(substr($O10,0,5)) === "error") { wp_send_json(array("success" => FALSE,"response" => esc_html($O10))); } $O10=json_decode($O10); if (!$O10) { wp_send_json(array("success" => FALSE,"response" => esc_html__("An unknown error has occured","mmp"))); } update_option("mapsmarkerpro_key",$O10[0]); update_option("mapsmarkerpro_key_trial",$O10[0]); update_option("mapsmarkerpro_key_local",NULL); $Oz->add_admin_notice("new_install"); $Oz->remove_admin_notice("finish_install"); wp_send_json(array("success" => TRUE)); } public function register_anonymous_trial() { $spbas=mmp::get_instance("MMP\SPBAS"); $Oz=mmp::get_instance("MMP\Notice"); if (! isset ($_POST["nonce"]) || wp_verify_nonce($_POST["nonce"],"mmp-register-anonymous-trial") === FALSE) { wp_send_json(array("success" => FALSE,"response" => esc_html__("Security check failed","mmp"))); } if (! isset ($_POST["tos"]) || !$_POST["tos"]) { wp_send_json(array("success" => FALSE,"response" => esc_html__("You must agree to the ToS","mmp"))); } $l10=array("mod" => "3rd_party","task" => "api","api_key" => "f8b3782fef25c3f68e809f621d193063"); $O10=$spbas->Op("https://www.mapsmarker.com/store/api/index.php",http_build_query($l10)); if (strtolower(substr($O10,0,020)) === "connection error" || strtolower(substr($O10,0,5)) === "error") { wp_send_json(array("success" => FALSE,"response" => esc_html($O10))); } $O10=json_decode($O10); if (!$O10) { wp_send_json(array("success" => FALSE,"response" => esc_html__("An unknown error has occured","mmp"))); } update_option("mapsmarkerpro_key",$O10[0]); update_option("mapsmarkerpro_key_trial",$O10[0]); update_option("mapsmarkerpro_key_local",NULL); $Oz->add_admin_notice("new_install"); $Oz->remove_admin_notice("finish_install"); wp_send_json(array("success" => TRUE)); } public function update_license() { global $wpdb; $spbas=mmp::get_instance("MMP\SPBAS"); $Oz=mmp::get_instance("MMP\Notice"); if (! isset ($_POST["nonce"]) || wp_verify_nonce($_POST["nonce"],"mmp-update-license") === FALSE) { wp_send_json(array("success" => FALSE,"response" => esc_html__("Security check failed","mmp"))); } $l11=( isset ($_POST["key"]) && $_POST["key"]) ? $_POST["key"]: ""; $O11=get_option("mapsmarkerpro_key"); if (!$l11 && !$O11) { wp_send_json(array("success" => FALSE,"response" => esc_html__("License key missing","mmp"))); } if ($l11 && substr($l11,0,012) !== "MapsMarker") { wp_send_json(array("success" => FALSE,"response" => sprintf(esc_html__("Invalid license key. The license key must start with %1$s","mmp"),"<code>MapsMarker</code>"))); } if (is_multisite() && isset ($_POST["distribute_multisite"]) && $_POST["distribute_multisite"]) { $blogs=$wpdb->get_col($wpdb->prepare( "SELECT blog_id
				FROM {$wpdb->blogs}
				WHERE site_id = %d" ,$wpdb->l12)); foreach ($blogs as $blog_id) { switch_to_blog($blog_id); update_option("mapsmarkerpro_key",$l11); update_option("mapsmarkerpro_key_local",NULL); restore_current_blog(); } } else { update_option("mapsmarkerpro_key",$l11); update_option("mapsmarkerpro_key_local",NULL); } if ($l11 && $spbas->Ov(TRUE) && $O11 === NULL) { $Oz->add_admin_notice("new_install"); } $Oz->remove_admin_notice("finish_install"); wp_send_json(array("success" => TRUE)); } protected function show() { $spbas=mmp::get_instance("MMP\SPBAS"); $O12=mmp::get_instance("MMP\L10n"); $spbas->Ov(TRUE); $l13=($spbas->O0) ? "mmp-license-invalid": "mmp-license-valid"; $O1=get_option("mapsmarkerpro_key"); $O13=get_option("mapsmarkerpro_key_trial"); $l14=get_transient("mapsmarkerpro_latest"); $current_user=wp_get_current_user(); $O14= isset ($spbas->l8["customer"]["name"]) ? $spbas->l8["customer"]["name"]: NULL; $l15= isset ($spbas->l8["user"][0]["email"]) ? $spbas->l8["user"][0]["email"]: NULL; ?><?php echo "
		<div class="wrap mmp-wrap">
			<h1>"; ?><?= esc_html__("License","mmp"); ?><?php echo "</h1>
			"; ?><?php if ($spbas->O0):; ?><?php echo "
				<div class="notice notice-error">
					<p>"; ?><?= $spbas->O0; ?><?php echo "</p>
				</div>
			"; ?><?php endif; ?><?php echo "
			"; ?><?php if ($O1):; ?><?php echo "
				<div class="mmp-main mmp-license-section "; ?><?= $l13; ?><?php echo "">
					<label for="license_key" class="mmp-label"><strong>"; ?><?= esc_html__("License Key","mmp"); ?><?php echo "</strong></label>
					<input type="text" id="license_key" value=""; ?><?= $O1; ?><?php echo "" />
					<button type="button" id="update_license" class="butto button-primary" data-nonce=""; ?><?= wp_create_nonce("mmp-update-license"); ?><?php echo "">"; ?><?= esc_html__("Update","mmp"); ?><?php echo "</button>
					"; ?><?php if (is_multisite() && is_super_admin()):; ?><?php echo "
						<label>
							<input type="checkbox" id="distribute_multisite" />
							"; ?><?= esc_html__("Distribute the license key to all subsites","mmp"); ?><?php echo "
						</label>
					"; ?><?php endif; ?><?php echo "
					"; ?><?php if ($l15 && $l15 !== "[email protected]"):; ?><?php echo "
						<p>
							"; ?><?= sprintf($O12->kses__("Please note that a license is bound to the domain it was activated on. If you want to use your license on another domain, please follow <a href="%1$s" target="_blank">this tutorial</a>.","mmp"),"https://www.mapsmarker.com/transfer/"); ?><?php echo "<br />
							"; ?><?= sprintf($O12->kses__("If you have any issues with your license, please <a href="%1$s" target="_blank">open a support ticket</a>.","mmp"),"https://www.mapsmarker.com/helpdesk/"); ?><?php echo "
						</p>
					"; ?><?php endif; ?><?php echo "
					<p>
						"; ?><?php if ($spbas->Ow(TRUE,FALSE)) { if ($O14) {; ?><?php echo "
								<strong>"; ?><?= esc_html__("License registered to","mmp"); ?><?php echo ":</strong> "; ?><?= $O14; ?><?php echo "<br />
								"; ?><?php } if ($spbas->Ow(FALSE,TRUE) && $spbas->Ow()) { if ($spbas->Ox()) { $O15=$spbas->l8["download_access_expires"]; $l16=abs(floor((time()-$O15)/(074*074*030))); ?><?php echo "
									<strong>"; ?><?= esc_html__("Access to updates and support valid until","mmp"); ?><?php echo ":</strong> "; ?><?= date("d/m/Y",$O15); ?><?php echo " ("; ?><?= $l16; ?><?php echo " "; ?><?= esc_html__("days left","mmp"); ?><?php echo ") &rarr; <a href="https://www.mapsmarker.com/renew/" target="_blank">"; ?><?= esc_html__("Renew your access to updates and support","mmp"); ?><?php echo "</a>
									"; ?><?php } else { $O15=$spbas->l8["license_expires"]; $l16=abs(floor((time()-$O15)/(074*074*030))); ?><?php echo "
									<strong>"; ?><?= esc_html__("Free trial license valid until","mmp"); ?><?php echo ":</strong> "; ?><?= date("d/m/Y",$O15); ?><?php echo " ("; ?><?= $l16; ?><?php echo " "; ?><?= esc_html__("days left","mmp"); ?><?php echo ") &rarr; <a href="https://www.mapsmarker.com/order/" target="_blank">"; ?><?= esc_html__("Get a non-expiring license key","mmp"); ?><?php echo "</a>
									"; ?><?php } } else if ($spbas->Ow(FALSE,TRUE) && !$spbas->Ow()) {; ?><?php echo "
								<strong>"; ?><?= esc_html__("Warning: your access to updates and support for Maps Marker Pro has expired!","mmp"); ?><?php echo "</strong><br />
								"; ?><?php if ($l14 !== FALSE && version_compare($l14,mmp::$version,">")):; ?><?php echo "
									"; ?><?= esc_html__("Latest available version:","mmp"); ?><?php echo " <a href="https://www.mapsmarker.com/v"; ?><?= $l14; ?><?php echo "" target="_blank" title=""; ?><?= esc_attr__("Show release notes","mmp"); ?><?php echo "">"; ?><?= $l14; ?><?php echo "</a> (<a href="www.mapsmarker.com/changelog/pro/" target="_blank">"; ?><?= esc_html__("show all available changelogs","mmp"); ?><?php echo "</a>)<br />
								"; ?><?php endif; ?><?php echo "
								"; ?><?= sprintf(esc_html__("You can continue using version %1$s without any limitations. However, you will not be able access the support system or get updates including bugfixes, new features and optimizations.","mmp"),mmp::$version); ?><?php echo "<br />
								<a href="https://www.mapsmarker.com/renew/" target="_blank">&raquo; "; ?><?= esc_html__("Please click here to renew your access to updates and support","mmp"); ?><?php echo " &laquo;</a><br />
								"; ?><?= esc_html__("Important: please click the update button next to the license key after purchasing a renewal to finish your order.","mmp"); ?><?php echo "
								"; ?><?php } } else if ($spbas->Ow(FALSE,TRUE) && !$spbas->Ow(TRUE,FALSE)) {; ?><?php echo "
							<strong>"; ?><?= sprintf($O12->kses__("Error: This version of the plugin was released after your download access expired. Please <a href="%1$s" target="_blank">renew your download and support access</a> or <a href="%2$s" target="_blank">downgrade to your previous valid version</a>.","mmp"),"https://www.mapsmarker.com/renew/","https://www.mapsmarker.com/updates-pro/archive/"); ?><?php echo "</strong>
							"; ?><?php } ?><?php echo "
					</p>
				</div>
			"; ?><?php else :; ?><?php echo "
				<div class="mmp-main mmp-license-section">
					<h2>
						<img class="mmp-license-icon" src=""; ?><?= plugins_url("images/icons/license-option-a.svg",__DIR__); ?><?php echo "" />
						"; ?><?= esc_html__("Option A: activate an unexpiring license key","mmp"); ?><?php echo "
					</h2>
					<p>
						"; ?><?= sprintf(esc_html__("Get an unexpiring license key at %1$s and activate the license key below.","mmp"),"<a href="https://www.mapsmarker.com/order/" target="_blank">mapsmarker.com/order/</a>"); ?><?php echo "
					</p>
					<label for="license_key" class="mmp-label">"; ?><?= esc_html__("License Key","mmp"); ?><?php echo "</label>
					<input type="text" id="license_key" />
					<button type="button" id="update_license" class="butto button-primary" data-nonce=""; ?><?= wp_create_nonce("mmp-update-license"); ?><?php echo "">"; ?><?= esc_html__("Activate","mmp"); ?><?php echo "</button>
					"; ?><?php if (is_multisite() && is_super_admin()):; ?><?php echo "
						<label>
							<input type="checkbox" id="distribute_multisite" />
							"; ?><?= esc_html__("Distribute the license key to all subsites","mmp"); ?><?php echo "
						</label>
					"; ?><?php endif; ?><?php echo "
				</div>
				<div class="mmp-main mmp-license-section">
					<h2>
						<img class="mmp-license-icon" src=""; ?><?= plugins_url("images/icons/license-option-b.svg",__DIR__); ?><?php echo "" />
						"; ?><?= esc_html__("Option B: get a personalized trial license key","mmp"); ?><?php echo "
					</h2>
					"; ?><?php if ($O13):; ?><?php echo "
						<p>
							"; ?><?= sprintf(esc_html__("You already started a free 30-day-trial for this site - free trial license key: %1$s","mmp"),"<code>$O13</code>"); ?><?php echo "
						</p>
					"; ?><?php else :; ?><?php echo "
						<p>
							"; ?><?= esc_html__("You can test Maps Marker Pro for 30 days for free without any obligations.","mmp"); ?><?php echo "
						</p>
						<label for="personal_trial_first_name" class="mmp-label">"; ?><?= esc_html__("First name","mmp"); ?><?php echo "</label>
						<input type="text" id="personal_trial_first_name" value=""; ?><?= $current_user->user_firstname; ?><?php echo "" /><br />
						<label for="personal_trial_last_name" class="mmp-label">"; ?><?= esc_html__("Last name","mmp"); ?><?php echo "</label>
						<input type="text" id="personal_trial_last_name" value=""; ?><?= $current_user->user_lastname; ?><?php echo "" /><br />
						<label for="personal_trial_email" class="mmp-label">"; ?><?= esc_html__("Email","mmp"); ?><?php echo "</label>
						<input type="text" id="personal_trial_email" value=""; ?><?= $current_user->user_email; ?><?php echo "" /><br />
						<p>
							<label>
								<input type="checkbox" id="personal_trial_tos" />
								"; ?><?= sprintf($O12->kses__("I have read the <a href="%1$s" target="_blank">Terms of Service</a> and <a href="%2$s" target="_blank">Privacy Policy</a>.","mmp"),"https://www.mapsmarker.com/terms-of-services/","https://www.mapsmarker.com/privacy-policy/"); ?><?php echo "
							</label>
						</p>
						<button type="button" id="personal_trial_submit" class="button button-secondary" data-nonce=""; ?><?= wp_create_nonce("mmp-register-personal-trial"); ?><?php echo "">"; ?><?= esc_html__("Start personalized free 30-day trial period","mmp"); ?><?php echo "</button>
					"; ?><?php endif; ?><?php echo "
				</div>
				<div class="mmp-main mmp-license-section">
					<h2>
						<img class="mmp-license-icon" src=""; ?><?= plugins_url("images/icons/license-option-c.svg",__DIR__); ?><?php echo "" />
						"; ?><?= esc_html__("Option C: get an anonymous trial license key","mmp"); ?><?php echo "
					</h2>
					"; ?><?php if ($O13):; ?><?php echo "
						<p>
							"; ?><?= sprintf(esc_html__("You already started a free 30-day-trial for this site - free trial license key: %1$s","mmp"),"<code>$O13</code>"); ?><?php echo "
						</p>
					"; ?><?php else :; ?><?php echo "
						<p>
							"; ?><?= sprintf($O12->kses__("Please note that in contrast to a personalized trial license, you will not be able to <a href="%1s" target="_blank">open support tickets</a> or get a reminder when your trial license has expired.","mmp"),"https://www.mapsmarker.com/helpdesk/"); ?><?php echo "
						</p>
						<p>
							<label>
								<input type="checkbox" id="anonymous_trial_tos" />
								"; ?><?= sprintf($O12->kses__("I have read the <a href="%1$s" target="_blank">Terms of Service</a> and <a href="%2$s" target="_blank">Privacy Policy</a>.","mmp"),"https://www.mapsmarker.com/terms-of-services/","https://www.mapsmarker.com/privacy-policy/"); ?><?php echo "
							</label>
						</p>
						<button type="button" id="anonymous_trial_submit" class="button button-secondary" data-nonce=""; ?><?= wp_create_nonce("mmp-register-anonymous-trial"); ?><?php echo "">"; ?><?= esc_html__("Start anonymous free 30-day trial period","mmp"); ?><?php echo "</button>
					"; ?><?php endif; ?><?php echo "
				</div>
			"; ?><?php endif; ?><?php echo "
		</div>
		"; ?><?php } } ?>

Did this file decode correctly?

Original Code

<?php // Before trying to crack the plugin, please consider buying a pro license at https://www.mapsmarker.com/order - we have put hundreds of hours into the development of our plugin and without honest customers we will not be able to continue the development and support. Thanks for your understanding and your honesty!
namespace MMP; use MMP\Maps_Marker_Pro as MMP; class Menu_License extends Menu { public function init() { add_action("admi\156_enqueu\145\137\163\143ripts",array($this,"\154oad_re\163\157\165\162ces")); add_action("wp_aja\170\137\155\155\160_register\137\160\145\162\163onal_tri\141\154",array($this,"\162\145gister_pe\162\163\157\156\141l_trial")); add_action("\167\160_ajax_mmp\137\162\145\147\151ster_anony\155\157\165\163_trial",array($this,"registe\162\137\141\156\157nymous_tr\151\141\154")); add_action("\167\160\137\141\152ax_mmp_u\160\144\141\164\145_license",array($this,"up\144\141\164\145\137license")); } public function load_resources($hook) { if (substr($hook,-strlen("mapsmar\153\145\162\160ro_license")) !== "\155\141\160smarkerp\162\157\137\154\151cense") { return; } $this->load_global_resources($hook); wp_enqueue_script("mmp-admin"); wp_add_inline_script("\155\155\160-admin","\154icense\101\143\164ions();"); } public function register_personal_trial() { $spbas=mmp::get_instance("\115MP\134\123\120\102\101S"); $Oz=mmp::get_instance("\115\115P\134Noti\143\145"); if (! isset ($_POST["nonce"]) || wp_verify_nonce($_POST["nonce"],"\155\155\160\055regi\163\164\145\162-perso\156\141\154\055trial") === FALSE) { wp_send_json(array("\163ucces\163" => FALSE,"respons\145" => esc_html__("Se\143\165\162ity ch\145\143\153\040failed","\155\155p"))); } if (! isset ($_POST["first_\156\141\155\145"]) || !$_POST["first_\156\141\155\145"]) { wp_send_json(array("suc\143\145\163\163" => FALSE,"respons\145" => esc_html__("Pl\145\141\163\145 enter y\157\165\162\040first \156\141\155\145","mmp"))); } if (! isset ($_POST["\154\141st_name"]) || !$_POST["las\164\137\156\141me"]) { wp_send_json(array("suc\143\145\163\163" => FALSE,"res\160\157\156\163e" => esc_html__("\120\154ease ent\145\162\040your las\164\040\156\141me","mmp"))); } if (! isset ($_POST["\145\155\141il"]) || !filter_var($_POST["email"],FILTER_VALIDATE_EMAIL)) { wp_send_json(array("\163\165\143cess" => FALSE,"res\160\157\156\163e" => esc_html__("P\154\145\141\163\145 enter a\040\166\141\154id email \141\144\144\162ess (or \147\145\164\040an anony\155\157\165\163 trial l\151\143\145nse key\051","mmp"))); } if (! isset ($_POST["\164os"]) || !$_POST["tos"]) { wp_send_json(array("\163\165\143\143\145ss" => FALSE,"resp\157\156\163\145" => esc_html__("Yo\165\040\155\165st agree to\040\164\150\145 ToS","\155\155\160"))); } $l10=array("mod" => "3rd_\160\141\162\164\171","\164\141\163\153" => "api","\141\160\151_key" => "50\141\062\060\0714314fbc82e\067\061\062\1423f9b21f0\060\067\064\065","\145mail" => urlencode($_POST["email"]),"\146irst_nam\145" => urlencode($_POST["first_n\141\155\145"]),"\154ast_name" => urlencode($_POST["\154ast_name"]),"\143\157\155\160\141ny_name" => urlencode($_POST["\146\151\162\163\164_name"]."\040".$_POST["las\164\137\156\141\155e"]),"\165\163\145\162\156ame" => urlencode(strtolower(sanitize_user($_POST["\154\141st_name"].substr($_POST["\146irst_name"],0,1),TRUE)))); $O10=$spbas->Op("h\164\164\160\163://www.ma\160\163\155\141\162ker.com/\163\164\157\162e/api/inde\170\056\160\150p",http_build_query($l10)); if (strtolower(substr($O10,0,020)) === "\143\157nnection\040\145\162ror" || strtolower(substr($O10,0,5)) === "error") { wp_send_json(array("\163uccess" => FALSE,"\162\145\163ponse" => esc_html($O10))); } $O10=json_decode($O10); if (!$O10) { wp_send_json(array("su\143\143\145\163\163" => FALSE,"\162\145\163\160\157nse" => esc_html__("\101\156 unknown \145\162\162\157r has occu\162\145\144","m\155\160"))); } update_option("\155\141psmarkerpr\157\137\153\145y",$O10[0]); update_option("mapsmark\145\162\160\162\157_key_tri\141\154",$O10[0]); update_option("map\163\155\141\162kerpro_key_\154\157\143\141l",NULL); $Oz->add_admin_notice("new\137\151\156\163tall"); $Oz->remove_admin_notice("finish\137\151\156\163\164all"); wp_send_json(array("success" => TRUE)); } public function register_anonymous_trial() { $spbas=mmp::get_instance("MMP\134\123\120\102\101S"); $Oz=mmp::get_instance("MMP\134N\157\164\151\143e"); if (! isset ($_POST["\156\157\156\143e"]) || wp_verify_nonce($_POST["nonc\145"],"mmp-regi\163\164\145\162\055anonymou\163\055\164\162ial") === FALSE) { wp_send_json(array("\163\165ccess" => FALSE,"re\163\160\157\156\163e" => esc_html__("\123\145\143\165rity che\143\153\040\146ailed","\155\155\160"))); } if (! isset ($_POST["tos"]) || !$_POST["\164os"]) { wp_send_json(array("\163\165\143\143ess" => FALSE,"respo\156\163\145" => esc_html__("You mu\163\164\040\141gree to th\145\040\124\157S","\155\155\160"))); } $l10=array("\155\157\144" => "3rd\137\160\141\162\164y","\164ask" => "api","\141\160i_key" => "\146\070\142\063782fef25c\063\146\066\070e809f621\144\061\071\063063"); $O10=$spbas->Op("\150\164\164\160s://www.m\141\160\163\155arker.com/\163\164\157\162e/api/inde\170\056\160\150p",http_build_query($l10)); if (strtolower(substr($O10,0,020)) === "connection\040\145\162\162or" || strtolower(substr($O10,0,5)) === "\145\162\162\157r") { wp_send_json(array("success" => FALSE,"\162\145\163\160\157nse" => esc_html($O10))); } $O10=json_decode($O10); if (!$O10) { wp_send_json(array("\163\165ccess" => FALSE,"re\163\160\157\156\163e" => esc_html__("\101\156\040\165nknown e\162\162\157\162\040has occu\162\145\144","m\155\160"))); } update_option("\155\141\160\163markerpro_\153\145\171",$O10[0]); update_option("\155\141\160\163markerpro_\153\145\171\137trial",$O10[0]); update_option("\155apsmarkerpr\157\137\153\145\171_local",NULL); $Oz->add_admin_notice("new\137\151\156\163\164all"); $Oz->remove_admin_notice("finish\137\151\156\163\164all"); wp_send_json(array("\163uccess" => TRUE)); } public function update_license() { global $wpdb; $spbas=mmp::get_instance("MMP\134\123\120\102\101S"); $Oz=mmp::get_instance("MMP\134Noti\143\145"); if (! isset ($_POST["nonce"]) || wp_verify_nonce($_POST["no\156\143\145"],"mmp-\165\160\144\141\164e-\154\151cense") === FALSE) { wp_send_json(array("\163\165\143cess" => FALSE,"re\163\160\157\156\163e" => esc_html__("\123\145\143\165rity check\040\146\141\151led","\155\155\160"))); } $l11=( isset ($_POST["\153ey"]) && $_POST["\153\145\171"]) ? $_POST["\153\145y"]: ""; $O11=get_option("\155\141\160smarkerp\162\157\137\153\145y"); if (!$l11 && !$O11) { wp_send_json(array("succ\145\163\163" => FALSE,"\162esponse" => esc_html__("\114\151\143ense key\040\155\151\163sing","\155\155\160"))); } if ($l11 && substr($l11,0,012) !== "MapsMarker") { wp_send_json(array("\163\165\143\143ess" => FALSE,"re\163\160\157\156\163e" => sprintf(esc_html__("Invalid l\151\143\145\156\163e key. T\150\145\040\154\151cense ke\171\040\155\165st start\040\167\151\164h %1\044s","\155\155\160"),"<\143\157\144\145\076MapsMark\145\162\074\057code>"))); } if (is_multisite() && isset ($_POST["\144\151\163\164ribute_m\165\154\164\151\163ite"]) && $_POST["\144istribute_\155\165\154\164isite"]) { $blogs=$wpdb->get_col($wpdb->prepare( "\123\105\114ECT blog_\151\144\012\011\011\011\011FRO\115\040{$wpdb->blogs}\012\011\011\011\011\127HERE site_\151\144\040\075 %d" ,$wpdb->l12)); foreach ($blogs as $blog_id) { switch_to_blog($blog_id); update_option("mapsma\162\153\145\162\160ro_key",$l11); update_option("\155apsmarker\160\162\157\137\153ey_local",NULL); restore_current_blog(); } } else { update_option("\155apsmarkerp\162\157\137\153\145y",$l11); update_option("\155\141\160\163markerpro\137\153\145\171\137local",NULL); } if ($l11 && $spbas->Ov(TRUE) && $O11 === NULL) { $Oz->add_admin_notice("new_\151\156\163\164\141ll"); } $Oz->remove_admin_notice("f\151\156\151\163\150_install"); wp_send_json(array("s\165\143\143\145\163s" => TRUE)); } protected function show() { $spbas=mmp::get_instance("\115\115P\134SPB\101\123"); $O12=mmp::get_instance("\115\115P\134L10n"); $spbas->Ov(TRUE); $l13=($spbas->O0) ? "mmp-lice\156\163\145\055\151nvalid": "mm\160\055\154\151\143ense-vali\144"; $O1=get_option("\155\141\160smarkerpro\137\153\145\171"); $O13=get_option("\155\141\160smarkerp\162\157\137\153\145y_trial"); $l14=get_transient("ma\160\163\155\141\162kerpro_la\164\145\163\164"); $current_user=wp_get_current_user(); $O14= isset ($spbas->l8["customer"]["\156\141me"]) ? $spbas->l8["\143\165\163tomer"]["\156\141\155\145"]: NULL; $l15= isset ($spbas->l8["\165ser"][0]["e\155\141\151\154"]) ? $spbas->l8["\165\163er"][0]["email"]: NULL; ?><?php echo "\015\012\011\011\074div class=\042\167\162\141\160 mmp-wra\160\042\076\015\012\011\011\011\074\150\061>"; ?><?= esc_html__("\114\151\143\145\156se","mm\160"); ?><?php echo "\074/h1>\015\012\011\011\011"; ?><?php if ($spbas->O0):; ?><?php echo "\015\012\011\011\011\011\074\144\151\166 class=\042\156\157\164\151ce notic\145\055\145\162ror\042>\015\012\011\011\011\011\011\074\160\076"; ?><?= $spbas->O0; ?><?php echo "</p>\015\012\011\011\011\011</div>\015\012\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011\011"; ?><?php if ($O1):; ?><?php echo "\015\012\011\011\011\011\074\144\151v class=\042\155\155\160\055main mm\160\055\154\151cense-se\143\164\151\157n "; ?><?= $l13; ?><?php echo "\042>\015\012\011\011\011\011\011<la\142\145\154\040for=\042li\143\145\156\163\145_key\042 \143\154\141\163s=\042mm\160\055\154\141bel\042>\074\163\164\162ong>"; ?><?= esc_html__("Licen\163\145\040\113ey","\155\155\160"); ?><?php echo "</stron\147\076\074\057label>\015\012\011\011\011\011\011<inpu\164\040\164\171pe=\042tex\164\042\040\151d=\042li\143\145\156\163e_key\042\040\166\141\154ue=\042"; ?><?= $O1; ?><?php echo "\042\040\057>\015\012\011\011\011\011\011<button t\171\160\145\075\042button\042\040\151\144=\042upda\164\145\137\154icense\042\040\143\154ass=\042b\165\164\164\157 button\055\160\162imary\042 \144\141\164\141-nonce\075\042"; ?><?= wp_create_nonce("mmp-upd\141\164\145\055license"); ?><?php echo "\042>"; ?><?= esc_html__("\125\160\144\141te","mm\160"); ?><?php echo "\074/button>\015\012\011\011\011\011\011"; ?><?php if (is_multisite() && is_super_admin()):; ?><?php echo "\015\012\011\011\011\011\011\011\074\154abel>\015\012\011\011\011\011\011\011\011\074\151\156\160ut type=\042\143\150\145ckbox\042\040\151\144=\042dist\162\151\142\165te_mult\151\163\151\164e\042 />\015\012\011\011\011\011\011\011\011"; ?><?= esc_html__("\104istribute\040\164\150\145\040license \153\145\171\040to all su\142\163\151\164\145s","\155mp"); ?><?php echo "\015\012\011\011\011\011\011\011</\154\141\142\145l>\015\012\011\011\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011\011\011\011"; ?><?php if ($l15 && $l15 !== "anon\171\155\100\155\141psmarker.\143\157\155"):; ?><?php echo "\015\012\011\011\011\011\011\011<p>\015\012\011\011\011\011\011\011\011"; ?><?= sprintf($O12->kses__("\120\154\145ase note t\150\141\164\040a license \151\163\040\142ound to th\145\040\144\157main it \167\141\163\040activate\144\040\157n. If y\157\165\040\167ant to \165\163\145\040your l\151\143\145\156se on a\156\157\164\150er domai\156\054\040please f\157\154\154ow <a hr\145\146\075\042%1\044s\042\040\164\141rget=\042\137\142\154ank\042>t\150\151\163\040tutori\141\154\074/a>.","\155\155\160"),"\150\164\164\160\163://www.map\163\155\141\162ker.com/tr\141\156\163\146er/"); ?><?php echo "<br />\015\012\011\011\011\011\011\011\011"; ?><?= sprintf($O12->kses__("\111\146 you hav\145\040\141\156\171 issues \167\151\164\150\040your li\143\145\156\163e, please\040\074\141\040href=\042\045\061\044s\042 tar\147\145\164\075\042_bla\156\153\042\076open a\040\163\165\160port ti\143\153\145\164</a>.","\155\155\160"),"htt\160\163\072\057/www.mapsm\141\162\153\145\162.com/hel\160\144\145\163\153/"); ?><?php echo "\015\012\011\011\011\011\011\011\074/p>\015\012\011\011\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011\011\011\011<p>\015\012\011\011\011\011\011\011"; ?><?php if ($spbas->Ow(TRUE,FALSE)) { if ($O14) {; ?><?php echo "\015\012\011\011\011\011\011\011\011\011<\163\164\162\157ng>"; ?><?= esc_html__("\114icense re\147\151\163\164\145red to","\155\155\160"); ?><?php echo ":</s\164\162\157\156g> "; ?><?= $O14; ?><?php echo "\074\142\162\040/>\015\012\011\011\011\011\011\011\011\011"; ?><?php } if ($spbas->Ow(FALSE,TRUE) && $spbas->Ow()) { if ($spbas->Ox()) { $O15=$spbas->l8["down\154\157\141\144_access_ex\160\151\162\145\163"]; $l16=abs(floor((time()-$O15)/(074*074*030))); ?><?php echo "\015\012\011\011\011\011\011\011\011\011\011<stro\156\147\076"; ?><?= esc_html__("\101\143cess to up\144\141\164\145\163 and supp\157\162\164\040valid unt\151\154","mm\160"); ?><?php echo "\072</strong>\040"; ?><?= date("\144/m/Y",$O15); ?><?php echo " ("; ?><?= $l16; ?><?php echo "\040"; ?><?= esc_html__("days l\145\146\164","\155\155\160"); ?><?php echo "\051\040\046rarr; <\141\040\150ref=\042h\164\164\160\163://www.map\163\155\141rker.com\057\162\145\156ew/\042 t\141\162\147et=\042_bl\141\156\153\042>"; ?><?= esc_html__("Renew\040\171\157\165r acces\163\040\164\157 updat\145\163\040and supp\157\162\164","mmp"); ?><?php echo "\074\057a>\015\012\011\011\011\011\011\011\011\011\011"; ?><?php } else { $O15=$spbas->l8["\154icense_exp\151\162\145\163"]; $l16=abs(floor((time()-$O15)/(074*074*030))); ?><?php echo "\015\012\011\011\011\011\011\011\011\011\011\074strong>"; ?><?= esc_html__("Free\040\164\162\151\141l license\040\166\141\154id until","\155mp"); ?><?php echo ":</\163\164\162\157\156g> "; ?><?= date("\144\057\155\057Y",$O15); ?><?php echo "\040("; ?><?= $l16; ?><?php echo " "; ?><?= esc_html__("\144\141\171s left","\155\155\160"); ?><?php echo ") &rarr\073\040\074\141 href=\042\150\164\164\160\163://www.m\141\160\163\155arker.com\057\157\162\144er/\042 t\141\162\147\145t=\042_b\154\141\156\153\042>"; ?><?= esc_html__("\107\145t a non-e\170\160\151\162\151ng licens\145\040\153\145y","\155\155\160"); ?><?php echo "</a>\015\012\011\011\011\011\011\011\011\011\011"; ?><?php } } else if ($spbas->Ow(FALSE,TRUE) && !$spbas->Ow()) {; ?><?php echo "\015\012\011\011\011\011\011\011\011\011<stron\147\076"; ?><?= esc_html__("\127\141\162\156ing: your \141\143\143\145\163s to upd\141\164\145\163 and suppo\162\164\040\146or Maps \115\141\162\153er Pro \150\141\163\040expired\041","mmp"); ?><?php echo "</st\162\157\156\147\076<br />\015\012\011\011\011\011\011\011\011\011"; ?><?php if ($l14 !== FALSE && version_compare($l14,mmp::$version,">")):; ?><?php echo "\015\012\011\011\011\011\011\011\011\011\011"; ?><?= esc_html__("\114atest avai\154\141\142\154\145 version:","\155mp"); ?><?php echo " <a \150\162\145\146\075\042https\072\057\057\167ww.mapsm\141\162\153\145r.com/v"; ?><?= $l14; ?><?php echo "\042 \164\141\162\147\145t=\042_bla\156\153\042\040title=\042"; ?><?= esc_attr__("\123\150\157\167\040release n\157\164\145\163","m\155\160"); ?><?php echo "\042>"; ?><?= $l14; ?><?php echo "\074\057\141\076 (<a href\075\042\167\167w.mapsmar\153\145\162\056com/chang\145log\057\160\162\157/\042 tar\147\145\164\075\042_bla\156\153\042\076"; ?><?= esc_html__("show all \141\166\141\151\154able chan\147\145\154\157\147s","\155\155\160"); ?><?php echo "</a>)<b\162\040\057\076\015\012\011\011\011\011\011\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011\011\011\011\011\011\011"; ?><?= sprintf(esc_html__("\131\157\165 can conti\156\165\145\040using vers\151\157\156\040%1\044s wi\164\150\157\165t any lim\151\164\141\164ions. Ho\167\145\166\145r, you \167\151\154\154 not be\040\141\142\154e acce\163\163\040\164he sup\160\157\162\164 system\040\157\162\040get u\160\144\141\164es incl\165\144\151\156g bugf\151\170\145\163, new f\145\141\164\165res an\144\040\157\160timiza\164\151\157\156s.","mm\160"),mmp::$version); ?><?php echo "\074\142r />\015\012\011\011\011\011\011\011\011\011<\141\040\150\162ef=\042htt\160\163\072\057/www.map\163\155\141\162ker.com\057\162\145\156ew/\042 \164\141\162\147et=\042_\142\154\141\156k\042>&r\141\161\165\157; "; ?><?= esc_html__("Please \143\154\151\143\153 here to \162\145\156\145\167 your ac\143\145\163\163 to update\163\040\141\156d suppo\162\164","\155\155\160"); ?><?php echo " &la\161\165\157\073\074/a><br /\076\015\012\011\011\011\011\011\011\011\011"; ?><?= esc_html__("\111\155portant:\040\160\154\145ase click \164\150\145\040update but\164\157\156\040next to \164\150\145\040license \153\145\171\040after p\165\162\143\150asing a\040\162\145newal to\040\146\151\156ish you\162\040\157rder.","mmp"); ?><?php echo "\015\012\011\011\011\011\011\011\011\011"; ?><?php } } else if ($spbas->Ow(FALSE,TRUE) && !$spbas->Ow(TRUE,FALSE)) {; ?><?php echo "\015\012\011\011\011\011\011\011\011<strong\076"; ?><?= sprintf($O12->kses__("Error: Th\151\163\040\166ersion of \164\150\145\040plugin was\040\162\145\154eased af\164\145\162\040your dow\156\154\157\141d access\040\145\170\160ired. \120\154\145\141se <a h\162\145\146\075\042%1\044\163\042\040target=\042\137\142\154ank\042>\162\145\156\145w you\162\040\144\157wnload\040\141\156\144 suppo\162\164\040\141ccess<\057\141\076 or <a h\162\145\146\075\042%2\044\163\042\040target\075\042\137blank\042\076\144\157\167ngrade\040\164\157 your pr\145\166\151ous vali\144\040\166ersion</\141\076\056","mm\160"),"https:\057\057\167\167w.mapsmark\145\162\056\143om/renew/","https://w\167\167\056\155\141psmarker\056\143\157\155\057updates\055\160\162\157/archive/"); ?><?php echo "</s\164\162\157\156\147>\015\012\011\011\011\011\011\011\011"; ?><?php } ?><?php echo "\015\012\011\011\011\011\011</p>\015\012\011\011\011\011</div>\015\012\011\011\011"; ?><?php else :; ?><?php echo "\015\012\011\011\011\011\074\144\151\166 class=\042\155\155\160\055main mmp\055\154\151\143ense-sec\164\151\157\156\042>\015\012\011\011\011\011\011<h2\076\015\012\011\011\011\011\011\011\074img cl\141\163\163\075\042mmp-\154\151\143\145nse-ic\157\156\042\040src=\042"; ?><?= plugins_url("images\057\151\143\157\156s/license\055\157\160\164ion-a.svg",__DIR__); ?><?php echo "\042\040\057\076\015\012\011\011\011\011\011\011"; ?><?= esc_html__("\117\160\164\151on A: act\151\166\141\164\145 an unexp\151\162\151\156g license\040\153\145\171","\155\155p"); ?><?php echo "\015\012\011\011\011\011\011</h2\076\015\012\011\011\011\011\011\074\160\076\015\012\011\011\011\011\011\011"; ?><?= sprintf(esc_html__("\107\145\164\040an unexpi\162\151\156\147\040license \153\145\171\040at %1\044s\040\141\156\144 activat\145\040\164\150e licen\163\145\040\153ey belo\167\056","mmp"),"\074\141 href=\042h\164\164\160\163\072//www.map\163\155\141\162ker.com/o\162\144\145\162\057\042 tar\147\145\164\075\042_blan\153\042\076mapsmark\145\162\056\143om/orde\162\057\074/a>"); ?><?php echo "\015\012\011\011\011\011\011\074\057p>\015\012\011\011\011\011\011<label \146\157\162\075\042licen\163\145\137\153ey\042 cl\141\163\163\075\042mmp-\154\141\142\145l\042>"; ?><?= esc_html__("License \113\145\171","mmp"); ?><?php echo "</l\141\142\145\154>\015\012\011\011\011\011\011\074input ty\160\145\075\042text\042 i\144\075\042\154icense_\153\145\171\042 />\015\012\011\011\011\011\011\074\142\165\164ton ty\160\145\075\042button\042\040\151\144=\042upd\141\164\145\137license\042\040\143lass=\042\142\165tto but\164\157\156-prim\141\162\171\042 dat\141\055\156once=\042"; ?><?= wp_create_nonce("\155mp-updat\145\055\154\151\143ense"); ?><?php echo "\042\076"; ?><?= esc_html__("Act\151\166\141\164e","mmp"); ?><?php echo "\074\057\142\165tton>\015\012\011\011\011\011\011"; ?><?php if (is_multisite() && is_super_admin()):; ?><?php echo "\015\012\011\011\011\011\011\011\074label>\015\012\011\011\011\011\011\011\011\074\151\156\160ut type=\042\143\150\145ckbox\042\040\151\144\075\042dist\162\151\142\165te_mult\151\163\151\164e\042 />\015\012\011\011\011\011\011\011\011"; ?><?= esc_html__("Distribute\040\164\150\145\040license \153\145\171\040to all sub\163\151\164\145s","\155\155p"); ?><?php echo "\015\012\011\011\011\011\011\011</lab\145\154\076\015\012\011\011\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011\011\011\074/div>\015\012\011\011\011\011<div cla\163\163\075\042mmp-main\040\155\155\160-license\055\163\145ction\042>\015\012\011\011\011\011\011\074\150\062>\015\012\011\011\011\011\011\011<im\147\040\143\154ass=\042\155\155\160-license\055\151\143\157n\042 sr\143\075\042"; ?><?= plugins_url("\151mages/icon\163\057\154\151cense-optio\156\055\142\056svg",__DIR__); ?><?php echo "\042\040\057>\015\012\011\011\011\011\011\011"; ?><?= esc_html__("\117ption B: g\145\164\040\141 personali\172\145\144\040trial lic\145\156\163\145\040key","mmp"); ?><?php echo "\015\012\011\011\011\011\011</h2>\015\012\011\011\011\011\011"; ?><?php if ($O13):; ?><?php echo "\015\012\011\011\011\011\011\011\074p>\015\012\011\011\011\011\011\011\011"; ?><?= sprintf(esc_html__("You \141\154\162\145\141dy starte\144\040\141\040free 30-d\141\171\055\164rial for \164\150\151\163 site - f\162\145\145\040trial \154\151\143\145nse key:\040\045\061\044s","\155\155p"),"\074\143\157\144e>$O13\074\057code>"); ?><?php echo "\015\012\011\011\011\011\011\011\074\057\160>\015\012\011\011\011\011\011"; ?><?php else :; ?><?php echo "\015\012\011\011\011\011\011\011<p>\015\012\011\011\011\011\011\011\011"; ?><?= esc_html__("Yo\165\040\143\141n test Map\163\040\115\141rker Pro f\157\162\040\0630 days fo\162\040\146\162ee witho\165\164\040\141ny obli\147\141\164\151ons.","\155\155\160"); ?><?php echo "\015\012\011\011\011\011\011\011</p>\015\012\011\011\011\011\011\011<\154\141\142\145l for=\042\160\145\162\163onal_tr\151\141\154\137first_n\141\155\145\042 class=\042\155\155\160-label\042\076"; ?><?= esc_html__("\106\151\162st name","\155\155\160"); ?><?php echo "</lab\145\154\076\015\012\011\011\011\011\011\011\074input typ\145\075\042\164ext\042 i\144\075\042\160ersonal_\164\162\151\141l_first\137\156\141\155e\042 va\154\165\145\075\042"; ?><?= $current_user->user_firstname; ?><?php echo "\042 /\076\074\142\162 />\015\012\011\011\011\011\011\011<label\040\146\157\162=\042perso\156\141\154\137trial_la\163\164\137\156ame\042 class\075\042\155\155p-labe\154\042\076"; ?><?= esc_html__("La\163\164\040name","\155\155p"); ?><?php echo "\074\057\154abel>\015\012\011\011\011\011\011\011<i\156\160\165\164\040type=\042\164\145\170\164\042 id=\042\160\145\162sonal_tr\151\141\154\137last_na\155\145\042\040value=\042"; ?><?= $current_user->user_lastname; ?><?php echo "\042 /><\142\162\040\057>\015\012\011\011\011\011\011\011<label \146\157\162\075\042person\141\154\137\164rial_ema\151\154\042\040class=\042\155\155\160-label\042\076"; ?><?= esc_html__("Em\141\151\154","mmp"); ?><?php echo "</la\142\145\154\076\015\012\011\011\011\011\011\011<input typ\145\075\042\164ext\042 i\144\075\042\160ersonal_\164\162\151\141l_email\042\040\166\141lue=\042"; ?><?= $current_user->user_email; ?><?php echo "\042 /\076\074\142\162 />\015\012\011\011\011\011\011\011<p>\015\012\011\011\011\011\011\011\011\074\154\141bel>\015\012\011\011\011\011\011\011\011\011\074\151nput typ\145\075\042\143heckbo\170\042\040\151d=\042pe\162\163\157\156al_tria\154\137\164os\042 />\015\012\011\011\011\011\011\011\011\011"; ?><?= sprintf($O12->kses__("\111\040\150ave read t\150\145\040\074a href=\042\045\061\044\163\042 targe\164\075\042\137blank\042>\124\145\162\155s of Ser\166\151\143\145</a> an\144\040\074a href=\042\045\062\044s\042 ta\162\147\145\164=\042_bl\141\156\153\042>Privac\171\040\120\157licy</\141\076\056","m\155\160"),"http\163\072\057\057www.mapsma\162\153\145\162.com/terms\055\157\146\055services/","https\072\057\057\167ww.mapsmar\153\145\162\056com/privac\171\055\160\157licy/"); ?><?php echo "\015\012\011\011\011\011\011\011\011</lab\145\154\076\015\012\011\011\011\011\011\011</p>\015\012\011\011\011\011\011\011<b\165\164\164\157n type=\042\142\165\164ton\042 i\144\075\042\160ersona\154\137\164\162ial_sub\155\151\164\042 class\075\042\142\165tton b\165\164\164\157n-secon\144\141\162\171\042 dat\141\055\156once=\042"; ?><?= wp_create_nonce("mm\160\055\162\145gister-pers\157\156\141\154\055trial"); ?><?php echo "\042>"; ?><?= esc_html__("\123tart person\141\154\151\172\145d free 30\055\144\141\171 trial pe\162\151\157\144","\155\155\160"); ?><?php echo "</but\164\157\156\076\015\012\011\011\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011\011\011\074\057\144\151v>\015\012\011\011\011\011\074div class\075\042\155\155p-main \155\155\160\055license\055\163\145\143tion\042\076\015\012\011\011\011\011\011\074\1502>\015\012\011\011\011\011\011\011<\151\155\147\040class=\042\155\155\160-licen\163\145\055\151con\042 \163\162\143\075\042"; ?><?= plugins_url("imag\145\163\057\151\143ons/lice\156\163\145\055\157ption-c.\163\166\147",__DIR__); ?><?php echo "\042\040\057\076\015\012\011\011\011\011\011\011"; ?><?= esc_html__("\117\160tion C: ge\164\040\141\156 anonymous\040\164\162\151al license\040\153\145\171","\155mp"); ?><?php echo "\015\012\011\011\011\011\011</h2>\015\012\011\011\011\011\011"; ?><?php if ($O13):; ?><?php echo "\015\012\011\011\011\011\011\011<p>\015\012\011\011\011\011\011\011\011"; ?><?= sprintf(esc_html__("\131\157\165 already\040\163\164\141\162ted a fr\145\145\040\0630-day-tri\141\154\040\146or this \163\151\164\145 - free \164\162\151\141l licen\163\145\040\153ey: %1\044\163","mmp"),"\074\143ode>$O13\074\057code>"); ?><?php echo "\015\012\011\011\011\011\011\011\074\057\160\076\015\012\011\011\011\011\011"; ?><?php else :; ?><?php echo "\015\012\011\011\011\011\011\011<p>\015\012\011\011\011\011\011\011\011"; ?><?= sprintf($O12->kses__("\120\154\145\141se note t\150\141\164\040in contras\164\040\164\157 a person\141\154\151\172ed trial \154\151\143\145nse, you\040\167\151\154l not b\145\040\141ble to <\141\040\150\162ef=\042%\061\163\042 target=\042\137\142\154ank\042>\157\160\145\156 suppor\164\040\164ickets</\141\076\040or get a\040\162\145minder w\150\145\156\040your t\162\151\141\154 licens\145\040\150as expir\145\144\056","mm\160"),"https://w\167\167\056\155\141psmarker\056\143\157\155\057helpdes\153\057"); ?><?php echo "\015\012\011\011\011\011\011\011\074\057\160\076\015\012\011\011\011\011\011\011<p>\015\012\011\011\011\011\011\011\011\074\154\141bel>\015\012\011\011\011\011\011\011\011\011\074\151nput ty\160\145\075\042checkb\157\170\042\040id=\042a\156\157\156\171mous_t\162\151\141\154_tos\042\040\057\076\015\012\011\011\011\011\011\011\011\011"; ?><?= sprintf($O12->kses__("\111\040\150ave read \164\150\145\040<a href=\042\045\061\044\163\042 targe\164\075\042\137blank\042\076\124\145\162ms of Se\162\166\151\143e</a> a\156\144\040\074a href\075\042\045\062\044s\042\040\164\141\162get=\042\137\142\154\141nk\042>P\162\151\166\141cy Poli\143\171\074/a>.","\155\155\160"),"\150\164\164\160\163://www.ma\160\163\155\141\162ker.com/\164\145\162\155s-of-servi\143\145\163\057","\150ttps://ww\167\056\155\141\160smarker.\143\157\155\057\160rivacy-p\157\154\151\143y/"); ?><?php echo "\015\012\011\011\011\011\011\011\011</label\076\015\012\011\011\011\011\011\011\074\057p>\015\012\011\011\011\011\011\011<bu\164\164\157\156 type=\042\142\165\164ton\042 i\144\075\042\141nonymo\165\163\137\164rial_su\142\155\151\164\042 cla\163\163\075\042button\040\142\165\164ton-se\143\157\156\144ary\042 d\141\164\141\055nonce\075\042"; ?><?= wp_create_nonce("\155\155p-registe\162\055\141\156\157nymous-tr\151\141\154"); ?><?php echo "\042\076"; ?><?= esc_html__("Start an\157\156\171\155\157us free 3\060\055\144\141y trial pe\162\151\157\144","\155\155\160"); ?><?php echo "</butto\156\076\015\012\011\011\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011\011\011</\144\151\166\076\015\012\011\011\011"; ?><?php endif; ?><?php echo "\015\012\011\011</div>\015\012\011\011"; ?><?php } }

Function Calls

None

Variables

None

Stats

MD5 9180fb9c32c7c7c758091b519533643b
Eval Count 0
Decode Time 141 ms