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 require_once "\160\141\x67\145\x2d\x72\x65\x73\x74\x72\x69\x63\164\151\157\x6e\..
Decoded Output download
<?php
require_once "page-restriction-menu-settings.php";
require_once "page-restriction-save.php";
require_once "page-restriction-utility.php";
function papr_page_access()
{
$D9 = get_option("papr_results_per_page") != '' ? get_option("papr_results_per_page") : 10;
$bd = maybe_unserialize(get_option("papr_allowed_roles_for_pages")) != '' ? maybe_unserialize(get_option("papr_allowed_roles_for_pages")) : array();
$zg = maybe_unserialize(get_option("papr_allowed_redirect_for_pages")) != '' ? maybe_unserialize(get_option("papr_allowed_redirect_for_pages")) : array();
$ug = maybe_unserialize(get_option("papr_default_role_parent")) != '' ? maybe_unserialize(get_option("papr_default_role_parent")) : array();
$cV = maybe_unserialize(get_option("papr_login_unrestricted_pages")) ? maybe_unserialize(get_option("papr_login_unrestricted_pages")) : array();
$FS = get_option("papr_access_for_only_loggedin") != '' ? get_option("papr_access_for_only_loggedin") : '';
$ed = get_option("papr_page_search_value") != '' ? get_option("papr_page_search_value") : '';
echo " <div class="rounded bg-white papr-shadow p-4 ms-4 mt-4" style="";
echo papr_disable_div_elements();
echo "">\xd\xa <h4 class="papr-form-head">Give Access to Pages based on Roles and Login Status</h4>
\xa
\xa ";
papr_toggle_all_pages();
echo " ";
papr_restriction_behaviour_pages();
echo " <hr class="mt-4"/>\xd\xa
<h5 class="papr-form-head papr-form-head-bar mt-5">Page Restrictions\xd
<div class="papr-info-global ms-2">\xd
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-info-circle-fill" viewBox="0 0 16 16">\xd
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/>
</svg>
\xa <p class="papr-info-text-global">
Specify which pages would be <b>accessible to only Logged In users</b> OR which <b>user roles should be able to access</b> the page in the table below.
</p>
</div>\xd\xa </h5>\xd\xa
<div class="tablenav top mt-4">\xd\xa ";
papr_dropdown($D9, "page");
echo " ";
papr_search_box("page", $ed);
echo " <form name="f" method="post" action="" id="blockedpagesform" class="mt-4">
";
wp_nonce_field("papr_restrict_pages_roles_login");
echo " <input type="hidden" name="option" value="papr_restrict_pages_roles_login" form="blockedpagesform" />
\xa <input type="submit" class="papr-btn-cstm rounded" value="Save Configuration" form="blockedpagesform">
";
$fi = papr_get_page_post_count($ed, "page");
$bT = ceil($fi / $D9);
$El = papr_get_current_page($bT);
$rc = papr_get_paginated_pages_post($ed, $D9, $El, "page");
$ct = "admin.php?page=page_restriction&curr=";
papr_pagination_button($bT, $fi, $El, $ct, "top");
echo " </div>
\xd
<table id="reports_table" class="wp-list-table widefat fixed table-view-list pages">\xd
<thead> ";
papr_display_head_foot_of_table("Page");
echo "</thead>
\xa <tbody>
";
if (count($rc) == 0 && $ed != '') {
goto Zs;
}
papr_display_filtered_pages($ed, $rc, $El, $bd, $zg, $ug, $cV, $FS);
goto SJ;
Zs:
echo "<tr><td><b>No Results</b></td><td></td><td></td><td></td></tr>";
SJ:
echo " </tbody>
\xa <tfoot> ";
papr_display_head_foot_of_table("Page");
echo " </tfoot>
\xa </table>
\xa <div class="tablenav bottom mt-3 pb-5">
<input type="submit" class="papr-btn-cstm rounded mt-2" value="Save Configuration" form="blockedpagesform">
\xa ";
papr_pagination_button($bT, $fi, $El, $ct, "bottom");
echo " </div>\xd
</form>
";
$i_ = array();
global $wp_roles;
$X9 = $wp_roles->roles;
foreach ($X9 as $s6 => $rI) {
$i_[] = $rI["name"];
mL:
}
jy:
echo " <script>
\xa var closebtns = document.getElementsByClassName("close");\xd\xa var i;
for (var i = 0; i < closebtns.length; i++) {
\xa closebtns[i].addEventListener("click", function() {
\xa this.parentElement.style.display = 'none';\xd\xa });
\xa }\xd
\xd\xa function hide_show_child(x) {
\xa var valid = "child_list_" + x;
var value = document.getElementById(valid).value;
\xa
var valid1 = "child_list_toggle_" + x;
\xa var value1 = document.getElementById(valid1).value;
\xd\xa
text = value.slice(1, -1);\xd
var myArray = text.split(",");\xd
for (var i = 0; i < myArray.length; i++) {
\xa
\xa child_img_id = "toggle_image_" + myArray[i];
var myElement = document.getElementById(child_img_id);\xd
\xa if (value1 == 'show') {
\xa document.getElementById(myArray[i]).style.display = 'none';
\xa if (myElement) {\xd\xa myElement.style.transform = 'rotate(-90deg)';
\xa }
} else {\xd
document.getElementById(myArray[i]).style.display = '';
\xa if (myElement) {
myElement.style.transform = 'rotate(0deg)';
}\xd
}\xd
}
\xd
img_id = "toggle_image_" + x;
var img = document.getElementById(img_id);
\xa\xd
if (value1 == 'show') {
\xa document.getElementById(valid1).value = "hide";\xd
img.style.transform = 'rotate(-90deg)';\xd\xa } else {\xd
document.getElementById(valid1).value = "show";
\xa img.style.transform = 'rotate(0deg)';
\xa }
\xa }
\xa jQuery(function() {\xd
function split(val) {\xd\xa return val.split(/;\s*/);\xd
}\xd
\xd\xa function extractLast(term) {\xd
return split(term).pop();\xd\xa }\xd
\xa var mo_roles = ";
echo json_encode($i_);
echo ";
\xd
jQuery(".mo_roles_suggest")\xd
.on("keydown", function(event) {\xd\xa if (event.keyCode === jQuery.ui.keyCode.TAB && jQuery(this).autocomplete("instance").menu.active) {\xd\xa event.preventDefault();\xd
}
})\xd
.autocomplete({\xd\xa minLength: 0,
\xa source: function(request, response) {\xd
response(jQuery.ui.autocomplete.filter(mo_roles, extractLast(request.term)));\xd
},
focus: function() {\xd\xa return false;\xd
},
\xa select: function(event, ui) {
\xa var terms = split(this.value);
terms.pop();
terms.push(ui.item.value);\xd\xa terms.push("");\xd
this.value = terms.join(";");\xd
return false;
}
\xa });\xd
});\xd\xa
var input = document.getElementById("current-page-selector");\xd\xa var input_1 = document.getElementById("current-page-selector-1");
var link = 'admin.php?page=page_restriction&curr=';
\xa input.addEventListener("keyup", function(event) {\xd
if (event.keyCode === 13) {
\xa input_value = document.getElementById("current-page-selector").value;
\xa var page_link = link.concat(input_value);\xd\xa window.open(page_link, "_self");
}
});
\xa\xd\xa input_1.addEventListener("keyup", function(event) {\xd
if (event.keyCode === 13) {\xd
input_1_value = document.getElementById("current-page-selector-1").value;
\xa var page_link = link.concat(input_1_value);
\xa window.open(page_link, "_self");
}
});
</script>
</div>
";
}
function papr_display_filtered_pages($ed, $rc, $El, $bd, $zg, $ug, $cV, $FS)
{
$HA = 1;
if (!($El == 1 && $ed == '')) {
goto OK;
}
$Pp = "#f1f6ff";
papr_display_pages($ed, 0, $Pp, $bd, $zg, $ug, $cV, $FS);
$HA = 2;
OK:
foreach ($rc as $w0) {
$Pp = "#f1f6ff";
if (!($HA % 2 == 0)) {
goto ZT;
}
$Pp = "#fff";
ZT:
papr_display_pages($ed, $w0, $Pp, $bd, $zg, $ug, $cV, $FS);
if (!($ed == '')) {
goto qj;
}
$et = get_pages(array("child_of" => $w0->ID));
if (!(count($et) > 0)) {
goto cr;
}
foreach ($et as $AX) {
papr_display_pages($ed, $AX, $Pp, $bd, $zg, $ug, $cV, $FS);
gb:
}
f3:
cr:
qj:
$HA++;
kZ:
}
P2:
}
?>
Did this file decode correctly?
Original Code
<?php
require_once "\160\141\x67\145\x2d\x72\x65\x73\x74\x72\x69\x63\164\151\157\x6e\55\x6d\x65\x6e\x75\55\163\x65\164\164\151\x6e\147\163\56\160\150\160";
require_once "\x70\x61\147\x65\55\x72\x65\x73\164\162\x69\143\x74\151\x6f\156\55\x73\141\x76\145\56\x70\x68\160";
require_once "\x70\x61\147\145\x2d\162\145\x73\164\162\x69\143\x74\151\157\156\55\x75\x74\x69\154\x69\x74\x79\x2e\x70\x68\160";
function papr_page_access()
{
$D9 = get_option("\160\x61\x70\x72\137\x72\145\163\x75\x6c\x74\x73\137\160\145\162\137\160\x61\147\145") != '' ? get_option("\x70\141\x70\x72\137\x72\145\x73\165\x6c\x74\x73\137\x70\145\162\137\160\141\x67\145") : 10;
$bd = maybe_unserialize(get_option("\160\141\160\x72\137\141\x6c\x6c\157\167\145\x64\x5f\162\157\154\x65\x73\x5f\x66\157\x72\137\160\141\x67\x65\163")) != '' ? maybe_unserialize(get_option("\160\141\x70\162\137\x61\x6c\154\x6f\x77\145\144\x5f\x72\157\x6c\x65\163\137\146\157\x72\137\160\x61\x67\x65\x73")) : array();
$zg = maybe_unserialize(get_option("\160\x61\x70\x72\x5f\x61\154\154\157\x77\145\x64\x5f\x72\x65\144\151\162\x65\x63\x74\137\146\157\x72\137\x70\141\x67\145\163")) != '' ? maybe_unserialize(get_option("\x70\x61\160\162\x5f\x61\154\154\157\x77\145\144\x5f\x72\145\144\151\x72\145\x63\x74\x5f\x66\157\162\137\160\x61\147\x65\163")) : array();
$ug = maybe_unserialize(get_option("\160\141\x70\162\137\x64\145\x66\141\165\x6c\x74\x5f\x72\157\154\145\137\x70\x61\162\x65\x6e\164")) != '' ? maybe_unserialize(get_option("\x70\x61\x70\162\137\x64\x65\146\141\x75\154\x74\137\x72\157\154\x65\x5f\x70\141\x72\145\x6e\x74")) : array();
$cV = maybe_unserialize(get_option("\160\141\x70\x72\x5f\x6c\x6f\147\151\156\x5f\165\x6e\x72\145\163\164\162\151\143\x74\145\x64\x5f\x70\141\147\145\x73")) ? maybe_unserialize(get_option("\160\x61\160\x72\137\x6c\157\147\x69\156\x5f\x75\x6e\162\145\163\x74\162\x69\x63\164\145\144\x5f\160\141\x67\x65\163")) : array();
$FS = get_option("\160\141\x70\x72\x5f\x61\143\143\x65\163\163\x5f\x66\157\x72\x5f\157\x6e\x6c\x79\x5f\154\157\147\147\145\x64\151\x6e") != '' ? get_option("\160\141\160\x72\x5f\141\143\143\145\163\163\137\x66\157\162\137\157\156\x6c\x79\x5f\154\x6f\147\147\x65\144\151\x6e") : '';
$ed = get_option("\160\141\x70\x72\x5f\160\141\x67\145\x5f\163\145\x61\x72\143\x68\137\x76\x61\154\x75\x65") != '' ? get_option("\160\x61\x70\x72\x5f\x70\x61\147\145\137\163\145\141\162\143\x68\137\x76\141\154\x75\145") : '';
echo "\x20\40\x20\40\x3c\x64\x69\166\x20\143\154\x61\x73\x73\75\42\162\157\x75\x6e\144\x65\x64\x20\x62\147\55\167\150\151\x74\145\x20\160\141\x70\162\x2d\163\x68\x61\144\x6f\167\x20\x70\x2d\64\40\x6d\x73\55\x34\40\x6d\x74\x2d\x34\x22\x20\163\x74\x79\x6c\145\x3d\42";
echo papr_disable_div_elements();
echo "\x22\76\xd\xa\40\x20\x20\x20\x20\x20\40\40\74\150\x34\x20\x63\154\141\x73\x73\x3d\42\x70\x61\160\x72\x2d\x66\x6f\x72\155\x2d\150\x65\141\x64\x22\76\x47\x69\x76\x65\40\101\143\x63\145\x73\163\x20\164\x6f\40\x50\x61\x67\145\163\x20\x62\141\x73\145\144\x20\x6f\156\40\122\x6f\154\x65\x73\40\x61\156\x64\40\114\x6f\147\151\156\x20\x53\164\x61\x74\165\163\74\57\150\64\x3e\15\xa\x20\x20\40\40\40\x20\40\40\15\xa\x20\40\x20\40\40\40\40\40";
papr_toggle_all_pages();
echo "\40\40\x20\40\40\x20\x20\40";
papr_restriction_behaviour_pages();
echo "\x20\40\x20\40\40\40\x20\40\x3c\150\162\x20\x63\x6c\x61\163\x73\75\42\x6d\164\x2d\x34\x22\x2f\x3e\xd\xa\40\x20\40\40\40\40\40\x20\15\12\x20\40\40\x20\x20\x20\x20\x20\74\x68\65\40\143\x6c\x61\163\163\75\x22\160\x61\x70\162\55\146\x6f\162\x6d\x2d\150\x65\141\x64\x20\x70\141\160\162\x2d\146\157\x72\x6d\x2d\150\145\141\x64\x2d\142\141\x72\x20\x6d\x74\55\x35\42\x3e\x50\x61\147\x65\40\122\x65\x73\x74\x72\x69\143\x74\x69\157\156\x73\xd\12\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\74\144\151\166\x20\x63\x6c\141\163\x73\x3d\42\160\141\160\162\x2d\x69\x6e\146\x6f\55\147\x6c\x6f\142\141\x6c\40\x6d\x73\55\62\42\76\xd\12\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\40\x20\x3c\x73\166\x67\x20\x78\155\154\x6e\x73\75\x22\150\x74\x74\160\x3a\57\x2f\167\x77\167\x2e\167\x33\x2e\157\162\x67\57\x32\60\60\x30\57\163\x76\x67\42\x20\167\151\x64\164\x68\x3d\42\x31\x36\42\40\150\145\151\x67\150\x74\x3d\x22\61\66\x22\x20\x66\x69\154\154\75\42\x63\x75\x72\x72\145\x6e\x74\103\x6f\154\x6f\162\42\x20\x63\154\141\x73\x73\x3d\x22\x62\151\x20\142\151\55\x69\x6e\x66\x6f\x2d\x63\151\162\143\x6c\145\55\146\x69\x6c\x6c\42\x20\x76\151\x65\167\x42\x6f\x78\x3d\42\x30\x20\60\x20\x31\x36\x20\x31\66\x22\76\xd\12\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x3c\160\x61\x74\x68\x20\x64\75\x22\x4d\70\40\x31\66\x41\x38\40\x38\40\60\x20\x31\x20\x30\x20\x38\40\60\x61\70\40\x38\40\x30\40\60\40\x30\x20\60\40\61\x36\172\x6d\x2e\71\63\55\71\x2e\64\x31\x32\x2d\61\x20\x34\56\67\x30\x35\143\x2d\x2e\x30\x37\x2e\63\64\56\x30\x32\71\56\x35\63\x33\56\x33\x30\64\x2e\65\x33\x33\56\61\71\64\x20\x30\x20\56\x34\x38\x37\x2d\56\x30\x37\x2e\x36\x38\66\x2d\x2e\62\x34\66\154\55\56\x30\x38\x38\x2e\x34\61\x36\x63\55\x2e\62\70\67\x2e\x33\x34\66\55\x2e\x39\62\56\65\71\x38\55\61\x2e\64\x36\65\x2e\65\71\70\55\56\67\60\63\40\60\55\x31\56\x30\x30\x32\x2d\x2e\x34\x32\x32\x2d\x2e\70\60\70\55\61\x2e\x33\x31\x39\x6c\x2e\x37\x33\x38\55\x33\x2e\x34\x36\70\143\x2e\x30\x36\x34\55\56\62\71\x33\56\x30\60\x36\x2d\x2e\x33\71\71\x2d\56\x32\x38\67\x2d\x2e\64\67\154\55\56\64\65\61\55\56\x30\x38\61\x2e\x30\x38\62\55\x2e\x33\x38\x31\x20\x32\x2e\62\71\x2d\56\62\70\x37\x7a\x4d\70\x20\65\x2e\65\141\x31\x20\61\x20\60\40\x31\40\61\x20\60\x2d\62\x20\x31\40\61\40\60\x20\x30\40\x31\x20\x30\x20\x32\172\x22\57\76\15\12\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\40\40\74\57\163\x76\x67\76\15\xa\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x3c\x70\x20\x63\154\141\x73\163\75\42\x70\x61\160\162\55\x69\x6e\146\157\55\164\x65\x78\164\x2d\x67\154\x6f\x62\x61\154\42\x3e\15\12\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\40\40\123\x70\x65\143\x69\x66\x79\40\167\x68\x69\143\x68\x20\x70\141\147\x65\x73\40\x77\x6f\165\x6c\x64\40\x62\x65\x20\74\x62\76\x61\x63\x63\145\x73\x73\x69\142\154\145\40\164\157\x20\x6f\x6e\x6c\171\x20\x4c\x6f\x67\147\145\144\x20\x49\x6e\x20\x75\x73\x65\162\163\74\x2f\142\76\x20\x4f\122\x20\167\150\x69\143\x68\x20\x3c\142\x3e\x75\x73\145\162\40\162\x6f\x6c\x65\x73\40\163\x68\x6f\x75\154\144\40\142\x65\x20\141\142\x6c\145\x20\164\157\40\x61\143\143\145\163\x73\74\57\x62\x3e\x20\x74\150\x65\x20\x70\141\x67\x65\40\x69\x6e\x20\164\150\145\x20\164\141\142\154\145\x20\x62\145\x6c\x6f\x77\x2e\15\12\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\74\57\x70\x3e\15\12\40\x20\40\40\x20\40\x20\40\40\40\40\x20\74\57\144\x69\x76\76\xd\xa\40\x20\40\x20\40\x20\x20\40\x3c\57\150\x35\x3e\xd\xa\40\x20\40\x20\40\40\x20\x20\15\12\x20\x20\40\x20\40\40\40\40\x3c\x64\151\x76\40\143\154\141\x73\x73\x3d\42\x74\141\x62\x6c\145\x6e\141\x76\40\164\x6f\160\40\155\x74\x2d\x34\42\x3e\xd\xa\x20\40\40\40\x20\40\40\x20\40\40\40\40";
papr_dropdown($D9, "\x70\141\x67\x65");
echo "\40\x20\40\40\40\40\40\40\x20\x20\x20\40";
papr_search_box("\x70\x61\x67\x65", $ed);
echo "\x20\x20\x20\x20\40\40\40\x20\40\x20\40\40\74\x66\x6f\162\155\x20\x6e\x61\155\145\x3d\42\146\42\40\155\145\164\150\x6f\x64\75\x22\x70\x6f\163\164\42\40\x61\143\x74\151\x6f\156\75\x22\x22\40\x69\144\x3d\42\142\x6c\x6f\x63\153\145\144\x70\x61\147\145\x73\146\x6f\x72\x6d\x22\x20\143\x6c\x61\x73\x73\x3d\42\x6d\164\x2d\64\x22\76\15\12\11\11\40\40\x20\x20\x20\x20\40\40";
wp_nonce_field("\x70\x61\160\x72\137\162\145\x73\x74\162\151\143\x74\x5f\160\x61\x67\145\163\x5f\x72\x6f\154\x65\163\137\154\157\147\151\x6e");
echo "\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\74\x69\x6e\x70\165\164\x20\x74\x79\x70\x65\75\x22\150\151\144\x64\x65\x6e\x22\x20\156\141\155\x65\x3d\42\x6f\x70\164\x69\x6f\x6e\42\40\x76\x61\154\165\145\75\x22\x70\141\x70\162\x5f\x72\145\x73\164\162\x69\x63\x74\137\x70\141\x67\145\x73\x5f\x72\x6f\x6c\145\x73\x5f\154\157\147\x69\x6e\x22\x20\x66\x6f\x72\x6d\75\x22\x62\154\157\x63\x6b\145\x64\160\x61\147\x65\x73\x66\157\162\155\42\x20\57\76\15\xa\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\74\x69\156\160\x75\164\40\x74\x79\160\145\x3d\42\x73\x75\142\155\151\164\x22\x20\x63\x6c\x61\x73\x73\75\x22\160\x61\x70\162\55\x62\x74\x6e\x2d\143\x73\x74\155\x20\x72\157\165\156\x64\x65\144\42\40\x76\x61\x6c\165\x65\x3d\42\x53\141\x76\x65\x20\x43\157\x6e\x66\x69\147\165\x72\x61\x74\x69\x6f\156\x22\40\146\157\x72\155\75\42\142\x6c\157\143\x6b\x65\x64\160\x61\147\145\163\x66\x6f\x72\x6d\42\x3e\15\12\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\40";
$fi = papr_get_page_post_count($ed, "\160\141\147\145");
$bT = ceil($fi / $D9);
$El = papr_get_current_page($bT);
$rc = papr_get_paginated_pages_post($ed, $D9, $El, "\x70\141\147\x65");
$ct = "\141\144\155\151\x6e\x2e\x70\x68\160\x3f\160\x61\x67\x65\75\x70\141\x67\x65\137\162\145\x73\x74\x72\x69\143\x74\151\x6f\x6e\46\143\x75\x72\x72\x3d";
papr_pagination_button($bT, $fi, $El, $ct, "\164\157\160");
echo "\x20\x20\x20\x20\40\x20\x20\x20\x3c\x2f\x64\x69\166\x3e\15\12\xd\12\x20\40\x20\x20\40\x20\x20\40\74\164\141\142\x6c\145\40\x69\x64\x3d\42\x72\x65\x70\x6f\162\164\163\137\x74\x61\x62\154\x65\x22\40\143\x6c\x61\x73\x73\75\x22\167\160\x2d\154\151\163\x74\55\x74\141\x62\x6c\145\40\167\x69\x64\x65\146\141\164\x20\x66\151\x78\145\144\x20\164\x61\142\x6c\x65\x2d\x76\151\145\x77\55\x6c\x69\163\x74\40\160\141\x67\x65\163\42\x3e\xd\12\40\x20\40\40\40\40\x20\40\40\x20\x20\40\40\40\x20\40\x3c\x74\x68\145\141\x64\x3e\x20";
papr_display_head_foot_of_table("\120\141\147\145");
echo "\x3c\57\164\x68\145\141\x64\x3e\15\xa\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x3c\x74\x62\157\x64\x79\76\15\12\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20";
if (count($rc) == 0 && $ed != '') {
goto Zs;
}
papr_display_filtered_pages($ed, $rc, $El, $bd, $zg, $ug, $cV, $FS);
goto SJ;
Zs:
echo "\x3c\164\162\76\74\x74\144\76\x3c\142\x3e\x4e\157\x20\122\x65\163\x75\154\164\163\x3c\57\x62\76\74\x2f\x74\x64\x3e\74\164\x64\76\74\57\164\144\x3e\74\x74\x64\x3e\74\57\x74\144\76\74\164\144\x3e\74\57\164\144\76\74\x2f\x74\162\76";
SJ:
echo "\40\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\74\57\164\142\x6f\144\x79\76\15\xa\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x3c\x74\x66\157\x6f\164\x3e\x20";
papr_display_head_foot_of_table("\x50\x61\147\x65");
echo "\x20\74\57\164\146\157\157\x74\x3e\15\xa\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\x3c\x2f\164\x61\142\154\x65\76\15\12\15\xa\40\x20\40\x20\40\40\40\40\74\144\x69\166\40\143\x6c\141\163\163\75\x22\x74\141\142\154\x65\x6e\141\x76\x20\x62\157\164\x74\157\155\x20\x6d\x74\55\x33\x20\160\142\x2d\65\42\x3e\15\12\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x3c\x69\156\x70\x75\164\40\x74\171\160\145\x3d\x22\x73\165\x62\x6d\x69\164\x22\40\143\x6c\x61\163\163\x3d\42\160\x61\160\162\55\x62\x74\156\55\143\163\x74\x6d\40\x72\x6f\165\x6e\x64\x65\144\x20\x6d\x74\x2d\62\x22\40\x76\x61\x6c\x75\x65\75\42\123\x61\x76\145\x20\x43\x6f\x6e\146\x69\x67\x75\162\x61\164\151\157\156\42\40\146\x6f\162\155\75\42\x62\154\x6f\x63\x6b\145\x64\x70\x61\147\145\x73\x66\x6f\162\155\x22\x3e\15\xa\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40";
papr_pagination_button($bT, $fi, $El, $ct, "\142\157\164\x74\157\x6d");
echo "\x20\x20\x20\40\40\40\x20\x20\x3c\57\x64\151\x76\x3e\xd\12\40\x20\x20\x20\x20\x20\x20\40\x3c\x2f\146\x6f\x72\x6d\x3e\15\12\15\12\40\40\40\40\40\x20\40\40";
$i_ = array();
global $wp_roles;
$X9 = $wp_roles->roles;
foreach ($X9 as $s6 => $rI) {
$i_[] = $rI["\156\141\x6d\145"];
mL:
}
jy:
echo "\40\x20\x20\x20\x20\x20\40\40\x3c\x73\x63\162\x69\160\x74\x3e\15\xa\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\166\x61\162\40\143\154\157\x73\x65\x62\164\156\163\x20\75\40\144\x6f\143\x75\x6d\145\x6e\164\x2e\147\145\164\x45\154\145\155\x65\156\x74\x73\102\x79\x43\154\x61\x73\x73\116\x61\x6d\145\x28\x22\x63\154\157\163\x65\42\x29\73\xd\xa\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\166\x61\162\x20\151\x3b\15\12\15\12\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x66\157\x72\x20\x28\x76\141\162\40\x69\x20\75\40\60\73\40\x69\x20\x3c\40\143\154\x6f\x73\145\142\164\x6e\163\x2e\x6c\x65\x6e\147\164\150\x3b\x20\x69\x2b\x2b\51\40\173\15\xa\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\143\x6c\157\163\145\x62\x74\156\163\x5b\151\x5d\x2e\x61\x64\x64\x45\166\x65\x6e\x74\x4c\151\x73\164\x65\156\x65\162\x28\x22\x63\154\x69\143\153\42\54\x20\146\x75\156\x63\164\x69\157\156\50\x29\x20\173\15\xa\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\164\x68\x69\x73\56\x70\141\x72\145\156\164\x45\154\145\155\145\x6e\x74\56\x73\164\171\x6c\x65\x2e\x64\x69\163\x70\154\x61\x79\40\75\40\x27\x6e\x6f\156\x65\47\73\xd\xa\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\175\51\73\15\xa\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x7d\xd\12\xd\xa\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\146\x75\x6e\x63\x74\151\157\x6e\40\x68\x69\x64\145\137\163\150\157\x77\x5f\x63\x68\x69\x6c\144\x28\x78\51\40\173\15\xa\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\x20\40\x76\x61\x72\40\166\141\154\151\x64\x20\75\x20\x22\143\150\151\x6c\x64\x5f\x6c\x69\163\164\x5f\42\40\53\x20\170\73\15\12\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\166\141\162\x20\x76\141\154\x75\145\40\75\40\144\157\143\x75\155\145\156\x74\x2e\x67\x65\164\105\x6c\x65\155\x65\156\164\102\171\x49\x64\x28\166\141\x6c\x69\144\51\x2e\x76\141\154\x75\x65\73\15\xa\15\12\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\40\x76\141\162\x20\x76\x61\154\151\144\x31\40\x3d\40\x22\143\x68\151\154\x64\137\154\151\163\x74\x5f\164\157\147\147\x6c\x65\137\42\40\53\40\170\73\15\xa\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x76\141\x72\40\166\141\x6c\x75\x65\61\x20\75\40\144\157\x63\x75\155\x65\156\164\x2e\147\x65\x74\105\x6c\x65\155\x65\156\x74\102\171\111\x64\x28\166\x61\x6c\151\144\61\x29\56\x76\141\x6c\x75\145\73\15\12\xd\xa\15\12\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\164\x65\x78\x74\x20\x3d\40\x76\141\154\165\x65\x2e\163\154\x69\143\x65\50\61\54\x20\x2d\61\x29\x3b\xd\12\40\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x76\141\162\x20\x6d\x79\x41\x72\162\x61\171\x20\75\x20\164\145\170\164\56\163\160\154\151\164\50\42\x2c\42\x29\x3b\xd\12\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\146\157\162\40\50\x76\x61\x72\x20\151\40\x3d\40\60\x3b\40\151\40\74\40\155\171\x41\162\162\141\x79\56\x6c\x65\x6e\x67\164\x68\73\x20\151\53\x2b\x29\x20\x7b\15\xa\15\xa\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\40\x63\x68\x69\x6c\144\137\151\x6d\147\137\151\x64\40\75\40\x22\x74\157\x67\x67\154\x65\137\x69\x6d\x61\147\145\137\x22\x20\53\x20\155\171\x41\x72\162\141\x79\133\x69\135\x3b\15\12\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x76\x61\x72\40\155\x79\105\154\145\x6d\x65\x6e\164\x20\x3d\40\144\x6f\x63\x75\155\145\156\164\x2e\147\x65\x74\x45\x6c\145\155\145\156\x74\x42\x79\111\x64\x28\143\150\x69\x6c\144\137\151\155\x67\x5f\151\144\51\x3b\xd\12\15\xa\40\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\x69\x66\x20\50\166\141\154\x75\145\x31\40\75\x3d\x20\47\x73\150\157\x77\x27\x29\40\173\15\xa\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x64\157\x63\165\155\145\156\x74\x2e\147\145\164\105\154\145\x6d\145\x6e\164\x42\171\x49\144\50\155\171\x41\x72\162\x61\x79\x5b\x69\x5d\x29\56\163\164\171\154\145\56\x64\x69\x73\x70\x6c\141\x79\40\x3d\40\47\156\157\x6e\145\47\73\15\xa\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\151\x66\x20\50\x6d\171\x45\x6c\x65\155\145\156\x74\51\x20\x7b\xd\xa\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\40\40\40\x6d\x79\x45\154\145\x6d\x65\x6e\x74\x2e\163\x74\171\x6c\145\x2e\x74\x72\x61\156\x73\x66\x6f\162\155\x20\75\40\x27\x72\x6f\164\141\x74\x65\x28\55\x39\x30\144\145\147\51\47\x3b\15\xa\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\175\15\12\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x7d\40\145\x6c\x73\145\40\173\xd\12\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x64\x6f\143\165\x6d\145\156\164\x2e\147\x65\164\105\x6c\x65\155\x65\156\164\x42\171\111\144\x28\155\171\101\x72\162\141\x79\x5b\x69\135\51\x2e\x73\x74\x79\x6c\x65\x2e\144\x69\x73\x70\x6c\141\x79\40\75\40\x27\47\73\15\xa\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\151\146\x20\50\x6d\x79\105\x6c\x65\155\145\x6e\x74\51\40\173\15\12\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\x6d\171\x45\x6c\145\x6d\145\156\x74\x2e\163\164\171\x6c\145\56\x74\x72\x61\x6e\x73\x66\157\x72\155\40\75\x20\x27\x72\x6f\x74\141\164\x65\x28\60\144\145\147\51\47\x3b\15\12\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\175\xd\12\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x7d\xd\12\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\175\15\12\xd\12\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\x69\155\147\137\x69\x64\x20\x3d\40\x22\x74\157\147\x67\x6c\x65\137\151\x6d\141\147\x65\x5f\x22\x20\x2b\x20\x78\x3b\15\12\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\166\x61\162\40\151\155\147\x20\75\40\144\x6f\143\165\155\x65\156\x74\56\147\145\x74\x45\x6c\x65\x6d\145\156\164\102\x79\x49\144\x28\151\x6d\x67\x5f\x69\144\x29\x3b\15\xa\xd\12\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\151\146\40\x28\x76\x61\x6c\165\x65\61\x20\x3d\x3d\40\x27\163\x68\x6f\167\x27\51\40\x7b\15\xa\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\144\157\x63\x75\155\145\156\x74\56\147\x65\164\x45\x6c\145\155\x65\156\164\x42\171\x49\x64\50\166\x61\154\151\x64\61\x29\56\x76\141\154\165\x65\40\x3d\40\42\x68\151\x64\x65\x22\73\xd\12\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\151\155\147\56\163\x74\171\x6c\x65\x2e\164\162\x61\156\x73\x66\x6f\162\x6d\x20\x3d\x20\x27\162\157\x74\141\164\145\x28\x2d\71\60\x64\x65\147\x29\x27\x3b\xd\xa\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\175\x20\x65\x6c\163\x65\40\173\xd\12\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\x20\40\40\40\40\144\x6f\143\165\155\145\156\164\x2e\147\x65\164\105\x6c\145\x6d\145\x6e\164\102\x79\111\144\x28\x76\x61\x6c\x69\144\61\51\x2e\x76\x61\154\165\x65\x20\x3d\40\x22\x73\150\157\x77\x22\73\15\xa\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x69\155\147\56\x73\164\x79\x6c\145\x2e\x74\x72\141\156\x73\146\x6f\162\x6d\40\x3d\x20\x27\x72\x6f\x74\141\164\145\x28\60\144\x65\x67\51\47\x3b\15\xa\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x7d\15\xa\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x7d\15\12\15\xa\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x6a\x51\165\x65\162\x79\50\x66\165\156\143\x74\151\157\x6e\x28\51\x20\x7b\xd\12\15\12\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x66\165\156\143\164\x69\x6f\x6e\40\x73\160\154\x69\164\50\x76\141\x6c\x29\x20\173\xd\xa\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\162\x65\x74\x75\162\x6e\40\x76\141\x6c\x2e\x73\160\x6c\x69\x74\50\57\x3b\134\163\52\57\51\x3b\xd\12\40\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x7d\xd\12\xd\xa\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\146\165\156\143\164\151\x6f\x6e\x20\145\170\164\162\x61\143\x74\114\141\x73\164\50\164\145\162\x6d\x29\40\173\xd\12\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\162\x65\x74\165\162\156\x20\x73\160\154\x69\x74\50\164\145\162\155\x29\x2e\160\157\160\x28\51\x3b\xd\xa\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\175\xd\12\15\xa\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x76\141\162\x20\x6d\x6f\x5f\x72\157\x6c\145\x73\40\75\40";
echo json_encode($i_);
echo "\x3b\15\12\xd\12\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x6a\121\x75\x65\x72\171\x28\x22\x2e\x6d\157\x5f\162\157\x6c\145\x73\x5f\x73\165\x67\147\145\163\x74\42\51\xd\12\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\56\x6f\x6e\x28\42\153\x65\171\x64\x6f\x77\x6e\x22\54\x20\146\x75\x6e\x63\x74\151\x6f\156\x28\145\166\145\x6e\164\51\x20\x7b\xd\xa\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x69\146\x20\x28\145\x76\145\x6e\x74\56\153\145\x79\x43\x6f\144\x65\40\x3d\x3d\x3d\40\152\x51\165\145\x72\x79\x2e\x75\151\56\153\x65\171\x43\157\144\x65\56\x54\101\x42\40\x26\x26\x20\x6a\121\165\x65\x72\171\50\x74\150\x69\163\x29\x2e\x61\165\164\157\143\x6f\x6d\x70\154\x65\164\x65\x28\x22\x69\x6e\x73\164\141\x6e\143\145\42\x29\x2e\155\x65\x6e\x75\56\x61\x63\164\x69\166\x65\51\x20\173\xd\xa\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\145\x76\x65\156\x74\56\x70\162\x65\166\x65\156\x74\104\145\x66\141\x75\x6c\164\50\x29\x3b\xd\12\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x7d\15\12\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\x7d\x29\xd\12\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x2e\141\165\164\157\x63\x6f\x6d\x70\154\x65\164\145\50\173\xd\xa\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x6d\x69\156\114\145\x6e\x67\x74\x68\72\40\60\x2c\15\xa\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\163\157\165\x72\x63\x65\x3a\40\x66\x75\x6e\x63\x74\151\157\x6e\x28\x72\145\161\165\145\163\x74\54\40\162\x65\163\x70\157\x6e\163\x65\x29\x20\x7b\xd\12\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\162\145\163\160\157\x6e\x73\x65\x28\x6a\121\x75\x65\x72\171\56\165\x69\56\x61\x75\x74\x6f\143\x6f\x6d\160\x6c\x65\164\145\x2e\x66\151\154\164\x65\x72\x28\x6d\157\x5f\162\x6f\x6c\x65\x73\54\x20\145\x78\164\x72\141\143\x74\114\141\x73\x74\x28\x72\145\x71\165\145\163\x74\56\164\x65\162\x6d\x29\51\51\73\xd\12\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x7d\x2c\15\12\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x66\x6f\143\165\x73\x3a\x20\x66\165\x6e\143\x74\151\157\x6e\x28\51\40\173\xd\xa\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x72\x65\x74\165\x72\x6e\40\x66\141\x6c\x73\145\x3b\xd\12\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\175\54\15\xa\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x73\145\154\x65\143\x74\x3a\40\x66\x75\156\x63\164\151\157\156\x28\x65\x76\145\x6e\x74\x2c\40\x75\x69\51\x20\x7b\15\xa\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\40\166\141\x72\40\164\145\162\155\x73\40\75\x20\163\160\154\151\x74\x28\164\x68\151\163\56\x76\x61\154\165\145\51\x3b\15\12\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x74\145\162\155\x73\x2e\x70\x6f\x70\50\51\73\15\12\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\164\x65\x72\x6d\163\x2e\160\165\163\x68\50\x75\x69\x2e\151\164\145\x6d\56\166\141\154\x75\x65\x29\x3b\xd\xa\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\164\145\x72\x6d\x73\x2e\x70\x75\163\x68\x28\42\x22\51\x3b\xd\12\40\40\40\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x74\150\x69\x73\x2e\166\141\x6c\x75\145\x20\x3d\x20\x74\145\x72\155\x73\56\152\x6f\151\156\50\x22\x3b\x22\x29\73\xd\12\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\162\145\164\x75\162\x6e\x20\146\x61\x6c\x73\145\x3b\15\12\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x7d\15\xa\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\175\x29\x3b\xd\12\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\175\x29\73\xd\xa\15\12\40\x20\40\40\x20\40\40\x20\x20\40\x20\x20\166\x61\x72\40\x69\x6e\160\x75\164\40\x3d\40\x64\x6f\143\165\x6d\x65\156\x74\56\147\x65\164\x45\x6c\145\x6d\145\x6e\x74\x42\171\x49\x64\50\42\x63\165\x72\x72\145\156\x74\55\160\141\x67\145\x2d\163\x65\154\x65\143\x74\157\x72\42\51\x3b\xd\xa\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\166\141\x72\x20\151\156\x70\165\x74\x5f\x31\x20\75\x20\144\x6f\x63\165\x6d\x65\156\x74\x2e\x67\x65\164\105\154\x65\x6d\145\156\164\102\x79\111\144\50\x22\x63\x75\162\x72\145\156\x74\55\x70\141\147\145\x2d\x73\145\x6c\x65\x63\x74\x6f\162\x2d\x31\x22\51\73\15\12\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\166\141\x72\x20\154\x69\156\x6b\40\75\40\47\x61\144\x6d\151\156\x2e\x70\150\x70\x3f\160\141\x67\x65\75\160\141\147\145\x5f\x72\x65\x73\x74\162\151\143\164\x69\157\x6e\46\x63\165\162\162\75\47\x3b\15\12\15\xa\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\151\156\x70\x75\164\56\141\144\x64\105\166\x65\156\x74\114\x69\x73\x74\x65\x6e\x65\162\x28\x22\x6b\x65\x79\x75\160\x22\x2c\x20\x66\165\156\143\x74\151\x6f\156\x28\145\166\145\156\x74\x29\40\x7b\xd\12\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\151\x66\x20\x28\x65\166\145\x6e\164\56\153\145\171\103\157\x64\x65\x20\x3d\75\x3d\40\x31\x33\x29\x20\173\15\xa\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\151\156\160\x75\164\137\166\x61\x6c\x75\145\40\x3d\x20\144\157\x63\x75\155\145\x6e\164\56\x67\145\164\105\x6c\145\x6d\x65\156\x74\x42\171\x49\x64\50\x22\x63\x75\162\162\145\156\164\x2d\160\141\x67\x65\55\x73\145\154\145\x63\164\157\x72\x22\x29\56\x76\141\154\x75\x65\73\15\xa\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\166\x61\162\40\160\141\147\x65\x5f\154\151\x6e\153\x20\75\x20\x6c\151\156\x6b\56\143\x6f\156\x63\141\x74\50\151\156\x70\x75\x74\x5f\166\x61\154\165\145\51\x3b\xd\xa\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x77\x69\156\x64\x6f\167\56\157\x70\145\156\x28\x70\141\x67\145\x5f\x6c\x69\156\153\x2c\x20\x22\137\163\x65\x6c\x66\x22\x29\73\15\12\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x7d\15\12\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x7d\51\x3b\15\xa\xd\xa\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\151\156\x70\x75\164\x5f\61\x2e\x61\144\144\x45\x76\x65\156\x74\114\151\163\164\145\156\145\x72\x28\42\x6b\145\171\x75\160\42\54\40\146\165\156\143\x74\x69\x6f\x6e\50\145\x76\145\x6e\x74\51\40\x7b\xd\12\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x69\x66\40\x28\x65\166\145\156\x74\56\153\x65\x79\x43\x6f\144\145\40\75\75\x3d\40\x31\x33\51\40\173\xd\12\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x69\156\x70\165\x74\x5f\x31\x5f\x76\x61\x6c\x75\145\x20\x3d\40\144\x6f\x63\165\155\145\x6e\x74\x2e\147\145\x74\x45\154\145\155\x65\156\164\x42\171\111\x64\50\x22\x63\165\x72\x72\145\x6e\164\55\160\141\x67\145\55\x73\x65\x6c\x65\x63\x74\157\x72\55\x31\42\x29\56\x76\x61\154\x75\145\x3b\15\xa\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\166\x61\162\x20\160\x61\147\x65\x5f\154\151\x6e\153\x20\x3d\x20\x6c\x69\156\153\56\143\x6f\156\143\x61\164\50\151\156\x70\165\x74\137\x31\137\166\x61\154\165\x65\51\x3b\15\xa\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x77\x69\x6e\144\157\167\56\x6f\x70\145\x6e\50\x70\141\x67\x65\137\154\x69\x6e\153\54\x20\42\x5f\x73\x65\x6c\x66\42\x29\x3b\15\12\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\175\15\12\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\175\51\73\15\12\x20\40\x20\40\40\40\x20\x20\x3c\57\163\x63\x72\151\160\164\x3e\15\12\40\x20\40\40\74\57\144\151\x76\x3e\15\12";
}
function papr_display_filtered_pages($ed, $rc, $El, $bd, $zg, $ug, $cV, $FS)
{
$HA = 1;
if (!($El == 1 && $ed == '')) {
goto OK;
}
$Pp = "\x23\x66\x31\x66\66\146\x66";
papr_display_pages($ed, 0, $Pp, $bd, $zg, $ug, $cV, $FS);
$HA = 2;
OK:
foreach ($rc as $w0) {
$Pp = "\x23\x66\61\146\66\146\146";
if (!($HA % 2 == 0)) {
goto ZT;
}
$Pp = "\x23\146\146\146";
ZT:
papr_display_pages($ed, $w0, $Pp, $bd, $zg, $ug, $cV, $FS);
if (!($ed == '')) {
goto qj;
}
$et = get_pages(array("\143\150\151\x6c\x64\x5f\157\x66" => $w0->ID));
if (!(count($et) > 0)) {
goto cr;
}
foreach ($et as $AX) {
papr_display_pages($ed, $AX, $Pp, $bd, $zg, $ug, $cV, $FS);
gb:
}
f3:
cr:
qj:
$HA++;
kZ:
}
P2:
}
Function Calls
None |
Stats
MD5 | a8dade968181338039b442e943d97e95 |
Eval Count | 0 |
Decode Time | 82 ms |